1. 20 Mar, 2018 1 commit
  2. 15 Feb, 2018 1 commit
  3. 15 Aug, 2017 1 commit
  4. 20 Jul, 2017 1 commit
  5. 19 Jul, 2017 1 commit
    • Dan Rubel's avatar
      Flutter analyze watch improvements (#11143) · e13e7806
      Dan Rubel authored
      * flutter analyze --watch auto detect if in flutter repo
      * move isFlutterLibrary from AnalyzeOnce into AnalyzeBase for use by AnalyzeContinuously
      * pass --flutter-repo to analysis server when analyzing the flutter repository
      * enhance flutter analyze --watch to summarize public members lacking documentation
      e13e7806
  6. 14 Jun, 2017 1 commit
  7. 08 Jun, 2017 1 commit
  8. 19 May, 2017 1 commit
  9. 18 Apr, 2017 1 commit
  10. 28 Mar, 2017 1 commit
  11. 04 Mar, 2017 1 commit
  12. 14 Feb, 2017 1 commit
  13. 13 Feb, 2017 1 commit
  14. 02 Feb, 2017 1 commit
  15. 23 Jan, 2017 1 commit
  16. 22 Jan, 2017 1 commit
  17. 07 Jan, 2017 1 commit
    • Todd Volkert's avatar
      Update flutter_tools to use package:file throughout (#7385) · 8bb27034
      Todd Volkert authored
      This removes direct file access from within flutter_tools
      in favor of using `package:file` via a `FileSystem` that's
      accessed via the `ApplicationContext`.
      
      This lays the groundwork for us to be able to easily swap
      out the underlying file system when running Flutter tools,
      which will be used to provide a record/replay file system,
      analogous to what we have for process invocations.
      8bb27034
  18. 14 Nov, 2016 1 commit
    • Dan Rubel's avatar
      Refactor flutter command exit code - part 3 of 3 (#6838) · 34e466f1
      Dan Rubel authored
      * Remove the workaround that pinned args to v0.13.6
      This reverts most of the changes in commit 6331b6c8
      * throw exception if exit code is not an integer
      * rework command infrastructure to throw ToolExit when non-zero exitCode
      * convert commands to return Future<Null>
      * cleanup remaining commands to use throwToolExit for non-zero exit code
      * remove isUnusual exception message
      * add type annotations for updated args package
      34e466f1
  19. 11 Nov, 2016 1 commit
  20. 04 Oct, 2016 1 commit
  21. 23 Sep, 2016 1 commit
  22. 22 Sep, 2016 1 commit
  23. 21 Sep, 2016 1 commit
    • James Robinson's avatar
      Isolate imports of generated Dart code from generated path (#5960) · a95c9fdb
      James Robinson authored
      This rewrites imports of various mojom.dart files from the Flutter
      engine repo to instead import normal-looking dart files from the
      (new) flutter_services package. This package handles exporting the
      correct symbols from generated code wherever that may live.
      
      Includes an engine roll to 3551e7a48e2e336777b15c7637af92fd7605b6c5
      which contains the new flutter_services package.
      a95c9fdb
  24. 16 Sep, 2016 2 commits
    • Phil Quitslund's avatar
      Update tools to use `analyzer` from vended Dart SDK. (#5900) · fffde14f
      Phil Quitslund authored
      * Update tools to use `analyzer` from vended Dart SDK.
      
      * updates `flutter_tools` and `flutter_test` to use the SDK-vended `analyzer` package
      * tweaks dependency tracking logic to only record the SDK-vended `analyzer` so as not to crash on spurious conflicts (due to transitive dependencies)
      
      * Review fixes.
      fffde14f
    • Dan Rubel's avatar
      Refactor flutter command execution (#5892) · 18212382
      Dan Rubel authored
      * refactor _run to runCmd
      
      * replace requiresProjectRoot getter with call to commandValidator
      
      * replace requiresDevice getter with call to findTargetDevice
      
      * trace command requires a debug connection, not a device
      
      * inline androidOnly getter
      
      * rename command methods to verifyTheRunCmd and runCmd
      
      * move common verification into BuildSubCommand
      
      * rename deviceForCommand to device
      
      * rename methods to verifyThenRunCommand and runCommand
      18212382
  25. 15 Sep, 2016 1 commit
    • Dan Rubel's avatar
      move all analysis options to repo root (#5882) · cc1755aa
      Dan Rubel authored
      This moves all of the various .analysis_options* files to the flutter repo root so that it's easier to
      * remember to keep them all in sync, and
      * easily refer customers to them
      cc1755aa
  26. 13 Sep, 2016 1 commit
  27. 08 Sep, 2016 1 commit
    • Dan Rubel's avatar
      flutter analyze repo analysis options (#5707) · 3ed3390d
      Dan Rubel authored
      This updates the flutter analyze command to use the .analysis_options_flutter_analyze in the repo root when either the --flutter-repo flag is supplied or the sources being analyzed reside in the flutter repo.
      3ed3390d
  28. 22 Jun, 2016 1 commit
  29. 21 Jun, 2016 1 commit
    • Ian Hickson's avatar
      ImageIcon (#4649) · e502e9c8
      Ian Hickson authored
      Anywhere that accepted IconData now accepts either an Icon or an
      ImageIcon.
      
      Places that used to take an IconData in an `icon` argument, notably
      IconButton and DrawerItem, now take a Widget in that slot. You can wrap
      the value that used to be passed in in an Icon constructor to get the
      same result.
      
      Icon itself now takes the icon as a positional argument, for brevity.
      
      ThemeData now has an iconTheme as well as a primaryIconTheme, the same
      way it has had a textTheme and primaryTextTheme for a while.
      
      IconTheme.of() always returns a value now (though that value itself may
      have nulls in it). It defaults to the ThemeData.iconTheme.
      
      IconThemeData.fallback() is a new method that returns an icon theme data
      structure with all fields filled in.
      
      IconTheme.merge() is a new constructor that takes a context and creates
      a widget that mixes in the new values with the inherited values.
      
      Most places that introduced an IconTheme widget now use IconTheme.merge.
      
      IconThemeData.merge and IconThemeData.copyWith act in a way analogous to
      the similarly-named members of TextStyle.
      
      ImageIcon is introduced. It acts like Icon but takes an ImageProvider
      instead of an IconData.
      
      Also: Fix the analyzer to actually check the stocks app.
      e502e9c8
  30. 14 Jun, 2016 1 commit
    • Ian Hickson's avatar
      Lock flutter tool while updating artifacts (#4476) · f92f71fe
      Ian Hickson authored
      This prevents multiple simultaneous runs of the analyzer from stomping
      over each other (e.g. multiple runs of 'update-packages'). Certain
      long-lived commands (like analyze, run, logs) are exempted once they've
      done enough work to be safe from most stomping action.
      
      This still doesn't make us entirely safe from craziness, e.g. if you're
      half way through an 'update-packages' run and you call 'git pull', who
      knows what state you'll end up in. But there's only so much one can do.
      
      Fixes https://github.com/flutter/flutter/issues/2762
      f92f71fe
  31. 13 Jun, 2016 2 commits
  32. 10 Jun, 2016 2 commits
  33. 03 Jun, 2016 2 commits
  34. 26 May, 2016 1 commit
    • Devon Carew's avatar
      Flutter run restart (#4105) · ec751776
      Devon Carew authored
      * working on making a faster flutter run restart
      
      * clean up todos; fire events on isolate changes
      
      * use the Flutter.FrameworkInitialization event
      
      * review comments
      ec751776
  35. 23 May, 2016 1 commit
  36. 20 May, 2016 1 commit