1. 13 Jan, 2022 1 commit
  2. 11 Nov, 2021 1 commit
  3. 07 Nov, 2021 1 commit
  4. 02 Nov, 2021 1 commit
  5. 22 Oct, 2021 1 commit
  6. 20 Oct, 2021 1 commit
  7. 01 Oct, 2021 1 commit
  8. 04 Sep, 2021 1 commit
  9. 26 Aug, 2021 1 commit
  10. 12 Aug, 2021 1 commit
  11. 28 Jun, 2021 1 commit
  12. 25 Jun, 2021 1 commit
  13. 14 Jun, 2021 1 commit
  14. 09 Jun, 2021 1 commit
  15. 04 Jun, 2021 2 commits
  16. 02 Jun, 2021 1 commit
  17. 01 Jun, 2021 1 commit
  18. 22 May, 2021 1 commit
  19. 17 May, 2021 2 commits
    • Chris Bracken's avatar
      [tool] Prefer installing multi-arch Win32 binaries (#82668) · e364e30c
      Chris Bracken authored
      Depending on the user's build configuration, we may output
      multi-architecture or single-architecture binaries. Prefer to install
      the multi-architecture binary if built, otherwise fall back to the
      single-architecture binary.
      e364e30c
    • Chris Bracken's avatar
      [tool] Improve Windows install process (#82659) · 7c5857d3
      Chris Bracken authored
      This eliminates the use of the Install.ps1 script during Windows app
      installation and instead uses uwptool install. Install.ps1 was the
      slowest part of app install, and had resource contention issues that
      frequently caused it to fail.
      7c5857d3
  20. 13 May, 2021 2 commits
    • Chris Bracken's avatar
      Support uninstall, install status query for UWP (#82481) · 14546bfa
      Chris Bracken authored
      Adds UwpTool.install and UwpTool.uninstall methods. Refactors the
      PowerShell-based install code to move the powershell-related bits out of
      the Device class and into UwpTool so that when we swap out the
      PowerShell-based install for the uwptool-based install, it's transparent
      to the WindowsUWPDevice class.
      
      Adds implementations for:
      * WindowsUWPDevice.isAppInstalled
      * WindowsUWPDevice.uninstallApp
      
      Refactors:
      * WindowsUWPDevice.installApp
      14546bfa
    • Chris Bracken's avatar
      [flutter_tools] support flutter run -d winuwp (#82373) · 53c2f708
      Chris Bracken authored
      Allow flutter run to work end-to-end with a UWP device.
      
      Uses win32/ffi for the actual launch of the application, injected via
      the native API class. This is structured to avoid a g3 dependency.
      
      Install and amuid require powershell scripts for now.
      
      Actually connecting to the observatory requires running a command in an
      elevated prompt. Instructions are presented to the user if a terminal is
      attached.
      
      This is a rebased version of https://github.com/flutter/flutter/pull/79684
      by @jonahwilliams, updated to remove `NativeApi` and replace is with calls
      to `uwptool`.
      
      Part of https://github.com/flutter/flutter/issues/82085
      53c2f708
  21. 01 May, 2021 1 commit
  22. 22 Apr, 2021 2 commits
  23. 21 Apr, 2021 1 commit
  24. 13 Apr, 2021 1 commit
  25. 09 Apr, 2021 1 commit
  26. 06 Apr, 2021 1 commit
  27. 05 Apr, 2021 2 commits
  28. 03 Apr, 2021 1 commit
  29. 31 Mar, 2021 1 commit
  30. 25 Mar, 2021 1 commit
  31. 19 Mar, 2021 1 commit
  32. 08 Mar, 2021 1 commit
  33. 16 Feb, 2021 1 commit
  34. 08 Feb, 2021 1 commit
  35. 04 Feb, 2021 1 commit
    • Jonah Williams's avatar
      [flutter_tools] move process manager into tool (#75350) · 8b6baae4
      Jonah Williams authored
      Our current top crasher is an unclear error when ProcessManager fails to resolve an executable path. To fix this, we'd like to being adjusting the process resolution logic and adding more instrumentation to track failures. In order to begin the process, the ProcessManager has been folded back into the flutter tool
      8b6baae4