1. 27 Jan, 2020 1 commit
  2. 17 Jan, 2020 1 commit
  3. 16 Jan, 2020 1 commit
  4. 06 Jan, 2020 1 commit
  5. 17 Dec, 2019 1 commit
  6. 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
  7. 14 Nov, 2019 1 commit
  8. 18 Oct, 2019 3 commits
  9. 11 Oct, 2019 1 commit
  10. 13 Sep, 2019 1 commit
  11. 11 Sep, 2019 1 commit
  12. 29 Jul, 2019 1 commit
  13. 22 Jul, 2019 3 commits
  14. 19 Jul, 2019 1 commit
  15. 27 Jun, 2019 1 commit
  16. 26 Jun, 2019 1 commit
  17. 19 Jun, 2019 1 commit
  18. 21 Feb, 2019 1 commit
  19. 06 Nov, 2018 3 commits
  20. 05 Oct, 2018 1 commit
  21. 04 Oct, 2018 1 commit
  22. 18 Sep, 2018 1 commit
  23. 12 Sep, 2018 1 commit
  24. 17 Aug, 2018 1 commit
    • 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
  25. 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
  26. 02 Aug, 2018 1 commit
  27. 27 Jul, 2018 1 commit
  28. 23 Jul, 2018 1 commit
  29. 16 Jul, 2018 2 commits
  30. 20 Jun, 2018 1 commit
  31. 19 Jun, 2018 1 commit
  32. 17 Feb, 2018 1 commit
  33. 10 Feb, 2018 1 commit
    • Chris Bracken's avatar
      flutter_tools: URI-decode data: URI content (#14627) · 2fe364fb
      Chris Bracken authored
      In getFlutterRoot(), scripts loaded via data: URIs are URI encoded.
      getFlutterRoot() scans the contents of the data for the file:// URI path
      of the Flutter SDK, which itself is URI-encoded. The end result is that
      if the SDK path contains a space, the embedded file:// URI will contain
      a %20. When this is encoded in a data: URI, the contents are
      URI-encoded, resulting in %2520, since the % is encoded to %25.
      
      This patch decodes the data: URI before extracting the SDK file:// URI.
      2fe364fb