1. 16 Sep, 2020 1 commit
  2. 10 Jul, 2020 1 commit
  3. 07 Jul, 2020 1 commit
  4. 06 May, 2020 1 commit
  5. 20 Apr, 2020 1 commit
  6. 16 Mar, 2020 1 commit
  7. 05 Feb, 2020 1 commit
  8. 27 Jan, 2020 1 commit
  9. 17 Jan, 2020 1 commit
  10. 16 Jan, 2020 1 commit
  11. 06 Jan, 2020 1 commit
  12. 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
  13. 23 Oct, 2019 1 commit
  14. 22 Oct, 2019 2 commits
  15. 18 Oct, 2019 1 commit
  16. 14 Oct, 2019 1 commit
  17. 11 Oct, 2019 1 commit
  18. 04 Oct, 2019 1 commit
  19. 27 Sep, 2019 1 commit
  20. 27 Jul, 2019 1 commit
  21. 13 Jul, 2019 1 commit
  22. 21 Mar, 2019 1 commit
  23. 20 Mar, 2019 1 commit
  24. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      Alexandre Ardhuin authored
      * add trailing commas on list/map/parameters
      
      * add trailing commas on Invocation with nb of arg>1
      
      * add commas for widget containing widgets
      
      * add trailing commas if instantiation contains trailing comma
      
      * revert bad change
      387f8854
  25. 15 Feb, 2019 1 commit
  26. 30 Jan, 2019 1 commit
  27. 01 Oct, 2018 2 commits
    • Jonah Williams's avatar
      224f91e3
    • Chris Bracken's avatar
      Eliminate snapshot, depfile opts from bundle cmd (#22495) · b07d986f
      Chris Bracken authored
      Eliminates the --snapshot and --depfile parameters from the flutter
      bundle command. The snapshot parameter is unused in Dart 2 -- code is
      built to kernel .dill files and for profile/release builds, then AOT
      compiled.
      
      While depfiles are still used in Dart 2 (e.g. by the kernel compiler),
      there are enough assumptions in the code that they lie in the default
      location (e.g. in the Gradle build) and no reasons to support
      user-cusomisation that it makes sense to eliminate the --depfile option
      as well, and always use the default location.
      
      This commit also renames 'depFilePath' to 'depfilePath' for consistency
      across the codebase.
      b07d986f
  28. 12 Sep, 2018 1 commit
  29. 07 Sep, 2018 2 commits
    • Chris Bracken's avatar
      Revert "Eliminate snapshot/depfile options to build bundle (#21507)" (#21563) · 5ab9e707
      Chris Bracken authored
      This tickled a bug in KernelCompiler.compile() where the fingerprinter
      doesn't include the outputFilePath in its list of dependencies. As such,
      if the output .dill file is missing or corrupted, the fingerprint still
      matches and re-compile is skipped, even though it shouldn't be. I'll fix
      that in a followup, then look at how this triggered that issue. My
      hypothesis is that that it's due to the aot kernel compile and bundle
      kernel compile have separate output directories for the .dill files
      (build/ vs build/aot) but the same output directory for the associated
      depfiles (due to this patch).
      
      This reverts commit 43a106e9.
      5ab9e707
    • Chris Bracken's avatar
      Eliminate snapshot/depfile options to build bundle (#21507) · 43a106e9
      Chris Bracken authored
      The --snapshot argument was only necessary in Dart 1. The --depfile
      argument was only used in Dart 2 mode to pass to the kernel compiler,
      but was inconsistent with the 'build aot' command, where the depfile was
      always set to build/kernel_compile.d.
      
      This patch updates 'build bundle' to emit the depfile to a location
      consistent with the 'build aot' command; since it's not intended to be
      user-configurable and flutter.gradle hardcodes the location to
      build/kernel_compile.d either way, this patch also eliminates the
      ability to configure the filename altogether.
      43a106e9
  30. 04 Sep, 2018 1 commit
  31. 31 Aug, 2018 1 commit
  32. 15 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Shim package:test to avoid matcher issues (#20602) · 686d8f8a
      Ian Hickson authored
      * Upgrade everything except matcher.
      * Roll matcher (and test)
      * Adjust tests that depend on flutter:test directly to depend on a shim
      * Require use of package:test shim and remove other references to package:test
      686d8f8a
  33. 20 Jul, 2018 1 commit
  34. 19 Jul, 2018 1 commit
    • Danny Tuppeny's avatar
      Add `--machine` support for `flutter attach` (#19077) · ed9afbbc
      Danny Tuppeny authored
      * Extract some of startApp into a reusable method
      
      * Get basic attach --machine working
      
      * Attach --machine tweaks
      
      Move validation to validate method and create daemon early so we get the startup event before trying to get a connection.
      
      * Bump daemon version so we know whether it's valid to flutter attach
      
      * Tweak output text
      
      * Swap package imports for relative
      
      * Review tweaks (naming, formatting, typedefs)
      
      * Separate arguments from process spawning
      
      This will make calling attach easier
      
      * Add a basic test for flutter attach --machine
      
      * Fix crash if port unforward modifies the list of forwarded ports
      
      * Add a no-op port forwarder for flutter-tester
      
      * Switch to using BasicProject instead of our own inline code
      
      * Fix expectation in test now we have a portForwarder
      
      * Remove stale TODO (this is done)
      
      * Tweak formatting
      
      * Change some Completers to void to fix Dart 2 issues
      ed9afbbc
  35. 16 Jul, 2018 2 commits
  36. 20 Jun, 2018 1 commit