1. 14 Mar, 2017 1 commit
  2. 04 Mar, 2017 1 commit
  3. 02 Mar, 2017 1 commit
  4. 14 Feb, 2017 1 commit
  5. 27 Jan, 2017 1 commit
  6. 26 Jan, 2017 1 commit
  7. 09 Jan, 2017 1 commit
  8. 08 Dec, 2016 1 commit
    • Todd Volkert's avatar
      Fix context.dart to properly handle nested zones (#7189) · a4f2ad98
      Todd Volkert authored
      This fixes an infinite loop in the code that walks the parent
      context chain looking for a variable.
      
      This also includes a fix in build_info.dart whereby if the context
      is set but the config is not yet set, we were trying to dereference
      null.
      a4f2ad98
  9. 29 Nov, 2016 1 commit
  10. 25 Aug, 2016 1 commit
    • Chris Bracken's avatar
      Support a configurable build directory (#5601) · b5f763b4
      Chris Bracken authored
      This change adds a top-level getBuildDirectory func and funcs for
      android, aot, asset, ios build products.
      
      Developers may now add a "build-dir" mapping to their
      ~/.flutter_settings (JSON format) config file. Output directory is
      relative to the main flutter application directory.
      
      This change also changes the default build directory for iOS builds to a
      subdirectory of the configured build directory, 'build/ios' by default.
      b5f763b4
  11. 14 Jun, 2016 2 commits
    • pq's avatar
      Added asserts. · f5a4e632
      pq authored
      f5a4e632
    • pq's avatar
      Add missing returns. · 7a955487
      pq authored
      As of `1.18.0-dev-0`, these cases will get flagged.  In the meantime, the
      7a955487
  12. 07 Jun, 2016 1 commit
    • Devon Carew's avatar
      add a restart command to the daemon protocol (#4385) · 3ba17136
      Devon Carew authored
      * refactor the --resident run option into a separate file
      
      * update daemon to run --resident apps
      
      * re-plumbing daemon start
      
      * send app logs
      
      * update tests
      
      * review changes
      
      * fix test runner
      
      * remove PackageMap.createGlobalInstance; rely on the ctor
      
      * review comments
      3ba17136
  13. 26 May, 2016 1 commit
  14. 24 May, 2016 1 commit
  15. 23 May, 2016 1 commit
  16. 14 May, 2016 1 commit
  17. 12 May, 2016 2 commits
  18. 11 May, 2016 1 commit
  19. 05 May, 2016 1 commit
  20. 02 May, 2016 1 commit
  21. 25 Apr, 2016 1 commit
  22. 19 Apr, 2016 1 commit
  23. 18 Apr, 2016 1 commit
  24. 16 Apr, 2016 1 commit
  25. 12 Apr, 2016 1 commit
    • Devon Carew's avatar
      add a --deploy flag to build apk (#3249) · 8849cd6b
      Devon Carew authored
      * add a --deploy flag to build apk
      
      * update command description
      
      * use an enum instead of a bool param for build variants
      
      * rename buildForDeploy flag to buildVariant
      
      * review comments
      8849cd6b
  26. 08 Apr, 2016 1 commit
  27. 21 Mar, 2016 1 commit
  28. 12 Mar, 2016 1 commit
  29. 17 Feb, 2016 1 commit
  30. 10 Feb, 2016 1 commit
  31. 28 Jan, 2016 1 commit
  32. 03 Dec, 2015 1 commit
  33. 29 Nov, 2015 1 commit
    • Adam Barth's avatar
      Clean up code organization in flutter_tools · 9662d49e
      Adam Barth authored
      1) Moved basic utility code into base/ directory to make it clear which code
         doesn't depend on Flutter-specific knowldge.
      2) Move the CommandRunner subclasses into a runner/ directory because these
         aren't commands themselves.
      9662d49e
  34. 10 Nov, 2015 1 commit
  35. 09 Nov, 2015 1 commit
  36. 05 Nov, 2015 1 commit
  37. 31 Oct, 2015 1 commit
  38. 12 Oct, 2015 1 commit
    • Adam Barth's avatar
      Teach sky_tools about prebuilt artifacts · bdd20661
      Adam Barth authored
      This patch makes `flutter start` work without a clone of the engine git
      repository. Making this work pulled a relatively large refactor of how the
      commands interact with application packages and devices. Now commands that want
      to interact with application packages or devices inherit from a common base
      class that holds stores of those objects as members.
      
      In production, the commands download and connect to devices based on the build
      configuration stored on the FlutterCommandRunner. In testing, these fields are
      used to mock out the real application package and devices.
      bdd20661