1. 17 Oct, 2018 1 commit
  2. 04 Oct, 2018 3 commits
    • Greg Spencer's avatar
      Rename module --> application in flutter create command. (#22565) · 9f23866a
      Greg Spencer authored
      This renames the "module" template to the "application" template, and makes "application" the default. The existing "app" template is now deprecated.
      
      flutter create also now recognizes the type of project in an existing directory, and is able to recreate it without having the template type explicitly specified (although you can still do that). It does this now by first looking in the .metadata file for the new project_type field, and if it doesn't find that, then it looks at the directory structure. Also, the .metadata file is now overwritten even on an existing directory so that 1) the project_type can be added to legacy projects, and 2) the version of Flutter that updated the project last is updated.
      
      I also cleaned up a bunch of things in create_test.dart, added many more tests, and added an example test to the test/ directory in the generated output of the application template.
      
      Fixes #22530
      Fixes #22344
      9f23866a
    • Alexandre Ardhuin's avatar
      d340e2f2
    • Alexandre Ardhuin's avatar
      sort_constructors_first (#22575) · 2ea1d81c
      Alexandre Ardhuin authored
      2ea1d81c
  3. 02 Oct, 2018 1 commit
  4. 01 Oct, 2018 1 commit
  5. 14 Sep, 2018 1 commit
  6. 12 Sep, 2018 1 commit
  7. 28 Aug, 2018 1 commit
  8. 21 Aug, 2018 2 commits
  9. 17 Aug, 2018 2 commits
    • Ian Hickson's avatar
      Performance test cleanup (#20652) · 1993a673
      Ian Hickson authored
      * Fix TODO syntax.
      * Clarify messages for some timeouts, to aid debugging.
      * Increase some other timeouts that were a needlessly short, to reduce sources of flakes.
      * Remove some more timeouts that were mostly redundant, to remove complexity.
      * Minor style cleanup.
      * Remove some dangerous traps (specifically, hide the explicit start/end times in TimedEvent since they shouldn't matter).
      1993a673
    • Ian Hickson's avatar
      Clean up usage of temporary directories (#20682) · 3dec6a69
      Ian Hickson authored
      All temporary directory start with `flutter_` and have their random component separated from the name by a period, as in `flutter_test_bundle.YFYQMY`.
      
      I've tried to find some of the places where we didn't cleanly delete temporary directories, too. This greatly reduces, though it does not entirely eliminate, the directories we leave behind when running tests, especially `flutter_tools` tests.
      
      While I was at it I standardized on `tempDir` as the variable name for temporary directories, since it was the most common, removing occurrences of `temp` and `tmp`, among others.
      
      Also I factored out some common code that used to catch exceptions that happen on Windows, and made more places use that pattern.
      3dec6a69
  10. 06 Aug, 2018 1 commit
  11. 02 Aug, 2018 3 commits
  12. 27 Jul, 2018 1 commit
  13. 23 Jul, 2018 1 commit
  14. 20 Jul, 2018 1 commit
  15. 16 Jul, 2018 2 commits
  16. 12 Jul, 2018 3 commits
  17. 11 Jul, 2018 2 commits
  18. 27 Jun, 2018 1 commit
  19. 26 Jun, 2018 1 commit
  20. 25 Jun, 2018 1 commit
    • Florian Loitsch's avatar
      Flutter attach (#18677) · d248725e
      Florian Loitsch authored
      Add `flutter attach` command.
      
      This command allows Flutter to connect to applications that haven't been launched using `flutter run`.
      d248725e
  21. 15 Jun, 2018 2 commits
  22. 14 Jun, 2018 1 commit
  23. 13 Jun, 2018 1 commit
    • Chris Bracken's avatar
      Revert elimination of Dart 1 (#18460) · 2ae48845
      Chris Bracken authored
      fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly
      from source, flutter_platform.dart automatically runs a kernel compile when
      operating in Dart 2 mode, but this assumes a functional Dart SDK is available
      in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts
      directory with an empty temp dir.
      
      Remaining work is:
      1. Get the frontend server building as a dependency on Fuchsia.
      2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server.
      
      This also reverts migration to Dart 2 typedef syntax.
      
      This reverts commit 6c56bb24. (#18362)
      This reverts commit 3daebd05. (#18316)
      2ae48845
  24. 11 Jun, 2018 1 commit
    • Greg Spencer's avatar
      Update typedef syntax to use Function notation and turn on lint for old notation. (#18362) · 6c56bb24
      Greg Spencer authored
      Now that Dart 1 is turned off, reapplying my change to turn on the prefer_generic_function_type_aliases analysis option, and fix all the typedefs to Dart 2 preferred syntax.
      
      Also eliminated the unused analysis_options_repo.yaml file and turned on public_member_api_docs in analysys_options.yaml.
      
      No logic changes, just changing the typedef syntax for all typedefs, and updating analysis options.
      6c56bb24
  25. 05 Jun, 2018 1 commit
  26. 04 Jun, 2018 2 commits
  27. 30 May, 2018 2 commits