1. 06 May, 2021 1 commit
  2. 22 Apr, 2021 1 commit
  3. 21 Apr, 2021 1 commit
  4. 09 Apr, 2021 1 commit
  5. 07 Apr, 2021 1 commit
  6. 06 Apr, 2021 1 commit
  7. 03 Apr, 2021 1 commit
  8. 19 Mar, 2021 1 commit
  9. 13 Mar, 2021 1 commit
  10. 26 Feb, 2021 1 commit
  11. 16 Feb, 2021 1 commit
  12. 08 Feb, 2021 1 commit
  13. 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
  14. 02 Feb, 2021 1 commit
    • Jonah Williams's avatar
      [flutter_tools] switch dart defines to base64 to avoid windows control characters (#75027) · 44d5950d
      Jonah Williams authored
      = gets escaped into %3D which seems to be tripping up cmake on windows since % is a control character. Switch to base64 encoding, since this does not have % nor , in the output character set.
      
      This change is not trivially cherry pickable, and isn't tested on windows aside from my local, manual tests due to the planned CI work not being complete yet.
      
      Fixes #75017
      Fixes #74705
      44d5950d
  15. 28 Jan, 2021 1 commit
  16. 27 Jan, 2021 1 commit
  17. 22 Dec, 2020 1 commit
  18. 15 Dec, 2020 1 commit
  19. 03 Dec, 2020 1 commit
  20. 15 Oct, 2020 1 commit
  21. 13 Oct, 2020 1 commit
  22. 12 Oct, 2020 1 commit
  23. 08 Oct, 2020 1 commit
  24. 05 Oct, 2020 1 commit
  25. 17 Sep, 2020 1 commit
  26. 27 Aug, 2020 1 commit
  27. 14 Aug, 2020 1 commit
  28. 06 Jul, 2020 1 commit
    • stuartmorgan's avatar
      Switch Windows to CMake (#60629) · 4b120501
      stuartmorgan authored
      * First pass at CMake files; untested
      
      * First pass of adding CMake generation logic on Windows
      
      * Misc fixes
      
      * Get bundling working, start incoprorating CMake build into tool
      
      * Fix debug, exe name.
      
      * Add resources
      
      * Move cmake.dart
      
      * Rip out all the vcxproj/solution plumbing
      
      * Fix plugin cmake generation
      
      * Build with cmake rather than calling VS directly
      
      * Adjust Windows plugin template to match standard header directory structure
      
      * Pass config selection when building
      
      * Partially fix multi-config handling
      
      * Rev template version
      
      * Share the CMake generation instead of splitting it out
      
      * VS build/run cycle works, with slightly awkward requirement to always build all
      
      * Update manifest
      
      * Plugin template fixes
      
      * Minor adjustments
      
      * Build install as part of build command, instead of separately
      
      * Test cleanup
      
      * Update Linux test for adjusted generated CMake approach
      
      * Plugin test typo fix
      
      * Add missing stub file for project test
      
      * Add a constant for VS generator
      4b120501
  29. 09 Jun, 2020 1 commit
  30. 04 Jun, 2020 1 commit
  31. 28 May, 2020 1 commit
  32. 27 May, 2020 1 commit
  33. 06 May, 2020 1 commit
  34. 23 Apr, 2020 1 commit
  35. 23 Mar, 2020 1 commit
    • stuartmorgan's avatar
      Add pre-stable support for create on Windows (#51895) · 685e9d1e
      stuartmorgan authored
      Adds initial support for flutter create of apps and plugins. This is derived from the current FDE example app and sample plugin, adding template values where relevant.
      
      Since the APIs/tooling/template aren't stable yet, the app template includes a version marker, which will be updated each time there's a breaking change. The build now checks that the template version matches the version known by that version of the tool, and gives a specific error message when there's a mismatch, which improves over the current breaking change experience of hitting whatever build failure the breaking change causes and having to figure out that the problem is that the runner is out of date. It also adds a warning to the create output about the fact that it won't be stable.
      
      Plugins don't currently have a version marker since in practice this is not a significant problem for plugins yet the way it is for runners; we can add it later if that changes.
      
      Fixes #30704
      685e9d1e
  36. 10 Mar, 2020 1 commit
  37. 27 Jan, 2020 1 commit
  38. 17 Jan, 2020 1 commit
  39. 16 Jan, 2020 1 commit
  40. 08 Jan, 2020 1 commit
    • stuartmorgan's avatar
      Check for desktop project files before building (#48350) · 58d6c425
      stuartmorgan authored
      Moves the checks that projects have been configured for desktop to a lower level, where they will cover more codepaths (e.g., 'run'), and improves them to check for native build projects, rather than just directories, to catch cases where the directory exists (e.g., due to accidental creation of generated files).
      
      Also adds links to the error messages pointing to instructions on adding desktop support to a project.
      
      Fixes #47145
      58d6c425