1. 16 Sep, 2020 1 commit
  2. 12 Aug, 2020 1 commit
  3. 15 Jul, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] generate a synthetic flutter_gen package on pub get (#61261) · d8b6fa15
      Jonah Williams authored
      Allow configuring the flutter_manifest to support a synthetic package, this is done through flutter: generate: true.
      
      When running pub get, insert a flutter_gen entry into the packages if it does not already exist. This points to .dart_tool/flutter_gen, which can be updated to contain the generated intl sources (But doesn't currently)
      
      Adds an integration test that verifies this code can be run and imported when enabled.
      
      Part of #60914
      d8b6fa15
  4. 14 May, 2020 1 commit
  5. 06 May, 2020 1 commit
  6. 22 Apr, 2020 1 commit
  7. 06 Mar, 2020 2 commits
  8. 05 Mar, 2020 1 commit
  9. 04 Mar, 2020 2 commits
  10. 28 Feb, 2020 2 commits
  11. 27 Feb, 2020 2 commits
  12. 12 Feb, 2020 2 commits
  13. 11 Feb, 2020 1 commit
  14. 27 Jan, 2020 1 commit
  15. 17 Jan, 2020 1 commit
  16. 16 Jan, 2020 1 commit
  17. 13 Jan, 2020 1 commit
  18. 06 Jan, 2020 1 commit
  19. 03 Jan, 2020 1 commit
  20. 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
  21. 24 Nov, 2019 1 commit
  22. 01 Nov, 2019 1 commit
  23. 23 Oct, 2019 1 commit
  24. 22 Oct, 2019 2 commits
  25. 11 Oct, 2019 2 commits
  26. 08 Oct, 2019 1 commit
  27. 07 Oct, 2019 1 commit
  28. 05 Oct, 2019 3 commits
  29. 03 Oct, 2019 1 commit
  30. 16 Jul, 2019 2 commits
    • Christopher Fujino's avatar
    • sjindel-google's avatar
      Keep LLDB connection to iOS device alive while running from CLI. (#36194) · 5501a1c1
      sjindel-google authored
      ## Description
      
      Instead of detaching from the spawned App process on the device immediately, keep the LLDB client connection open (in autopilot mode) until the App quits or the server connection is lost.
      
      This replicates the behavior of Xcode, which also keeps a debugger attached to the App after launching it.
      
      ## Tests
      
      This change will be covered by all running benchmarks (which are launched via "flutter run"/"flutter drive"), and probably be covered by all tests as well.
      
      I also tested the workflow locally -- including cases where the App or Flutter CLI is terminated first.
      
      ## Breaking Change
      
      I don't believe this should introduce any breaking changes. The LLDB client automatically exits when the app dies or the device is disconnected, so there shouldn't even be any user-visible changes to the behavior of the tool (besides the output of "-v").
      5501a1c1