1. 26 May, 2021 1 commit
  2. 28 Apr, 2021 1 commit
  3. 31 Mar, 2021 1 commit
  4. 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
  5. 27 Jan, 2021 1 commit
  6. 17 Dec, 2020 1 commit
  7. 23 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] Reland: simplify pub cache logic (#67589) · cb67513f
      Jonah Williams authored
      There have been some more additional reports of a missing 'package:characters' import after upgrading flutter. This has me concerned that our pub caching logic is incorrect. Instead of the tool attempting to guess when pub should be run, always delegate to pub.
      
      Also takes an opportunity to fix the kernel snapshot depending on the .packages or package_config. Due to the generated: date field this causes extra rebuilds. Instead when pub get is run, write out an additional file with just the package contents and version.
      
      Fixes #66777
      Fixes #65723
      cb67513f
  8. 25 Aug, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] support code size tooling on iOS, linux, windows, macOS, and... · 059de153
      Jonah Williams authored
      [flutter_tools] support code size tooling on iOS, linux, windows, macOS, and Android on Windows (#63610)
      
      Adds support for size analysis on iOS, macOS, linux, and Windows - using an uncompressed directory based approach. The output format is not currently specified.
      
      Adds support for size analysis on android on windows, switching to package:archive
      
      Updates the console format to display as a tree, allowing longer paths. Increases the number of dart libraries shown (to avoid only ever printing the flutter/dart:ui libraries, which dominate the size)
      059de153
  9. 24 Jun, 2020 1 commit
  10. 23 Jun, 2020 1 commit
  11. 09 Jun, 2020 1 commit
  12. 08 Jun, 2020 1 commit
  13. 04 Jun, 2020 1 commit
  14. 30 Apr, 2020 1 commit
  15. 22 Apr, 2020 2 commits
  16. 09 Apr, 2020 1 commit
  17. 03 Apr, 2020 2 commits
  18. 31 Mar, 2020 1 commit
  19. 19 Mar, 2020 3 commits
  20. 06 Mar, 2020 1 commit
  21. 04 Mar, 2020 2 commits
  22. 28 Feb, 2020 2 commits
  23. 27 Feb, 2020 3 commits
  24. 13 Feb, 2020 1 commit
  25. 06 Feb, 2020 1 commit
  26. 05 Feb, 2020 1 commit
  27. 25 Jan, 2020 1 commit
  28. 06 Jan, 2020 1 commit
  29. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      Ian Hickson authored
      * Update project.pbxproj files to say Flutter rather than Chromium
      
      Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright.
      
      * Update the copyright notice checker to require a standard notice on all files
      
      * Update copyrights on Dart files. (This was a mechanical commit.)
      
      * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine.
      
      Some were already marked "The Flutter Authors", not clear why. Their
      dates have been normalized. Some were missing the blank line after the
      license. Some were randomly different in trivial ways for no apparent
      reason (e.g. missing the trailing period).
      
      * Clean up the copyrights in non-Dart files. (Manual edits.)
      
      Also, make sure templates don't have copyrights.
      
      * Fix some more ORGANIZATIONNAMEs
      449f4a66
  30. 18 Nov, 2019 1 commit
  31. 05 Nov, 2019 1 commit
  32. 01 Oct, 2019 1 commit
    • Jonah Williams's avatar
      Reland: Switch to assemble API for dart2js (#41659) · b2f38396
      Jonah Williams authored
      * Stop using build_runner for dart2js
      
      * fixes to yield when computing hashes and to imports
      
      * add missing await
      
      * Update filecache_test.dart
      
      * Fix paths in filecache test
      
      * use file uri for import
      
      * add test cases and configurable override
      
      * remove test dep
      
      * fix filepaths for windows
      
      * test no longer failing
      
      * fix paths for test cases
      
      * fix typo
      
      * address comments
      
      * make a constant
      
      * make filehash async and use constant
      
      * fix silly logic error
      b2f38396