1. 11 Jan, 2020 1 commit
  2. 09 Jan, 2020 1 commit
  3. 07 Jan, 2020 3 commits
  4. 06 Jan, 2020 1 commit
  5. 17 Dec, 2019 1 commit
  6. 10 Dec, 2019 2 commits
  7. 05 Dec, 2019 3 commits
  8. 27 Nov, 2019 2 commits
    • 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
    • Jonah Williams's avatar
  9. 22 Nov, 2019 2 commits
  10. 21 Nov, 2019 1 commit
  11. 20 Nov, 2019 3 commits
  12. 19 Nov, 2019 2 commits
  13. 06 Nov, 2019 1 commit
  14. 23 Oct, 2019 1 commit
    • James D. Lin's avatar
      Make `ProjectFileInvalidator.findInvalidated` able to use the async `FileStat.stat` (#42028) · 83704b1d
      James D. Lin authored
      Empirical measurements indicate on the network file system we use
      internally, using `FileStat.stat` on thousands of files is much
      faster than using `FileStat.statSync`. (It can be slower for files
      on a local SSD, however.)
      
      Add a flag to `ProjectFileInvalidator.findInvalidated` to let it
      use `FileStat.stat` instead of `FileStat.statSync` when scanning for
      modified files.  This can be enabled by overriding `HotRunnerConfig`.
      
      I considered creating a separate, asynchronous version of
      `findInvalidated`, but that led to more code duplication than I
      liked, and it would be harder to avoid drift between the versions.
      83704b1d
  15. 15 Oct, 2019 1 commit
  16. 11 Oct, 2019 1 commit
  17. 09 Oct, 2019 1 commit
  18. 05 Oct, 2019 1 commit
    • James D. Lin's avatar
      Restructure ProjectFileInvalidator.findInvalidated a bit (#42008) · fcbe8f44
      James D. Lin authored
      Restructure ProjectFileInvalidator.findInvalidated a bit
      
      I plan to modify `ProjectFileInvalidator.findInvalidated` to allow
      it to use `FileStat.stat` instead of `FileStat.statSync`.
      Restructure `findInvalidated` a bit so that `FileStat.statSync` is
      called in only one place.
      
      Note that this change now always counts the `.packages` file as one
      of the files scanned, even if it does not exist.  I think that this
      is okay since it more accurately reflects the number of times that we
      hit the filesystem with `stat()`, and it is consistent with how other
      files are counted.
      fcbe8f44
  19. 04 Oct, 2019 1 commit
    • James D. Lin's avatar
      Clean up ProjectFileInvalidator.findInvalidated a bit (#41889) · 14c5c6e1
      James D. Lin authored
      In preparation for some refactoring that I will be doing to
      `ProjectFileInvalidator.findInvalidated`, make its code a bit
      clearer:
      * Indicate which arguments may be null.
      * Don't bother calling `FileStat.statSync` on the `.packages` file
        for the initial load.  This makes the checks for the `.packages`
        file consistent with those for other files.
      * Use `DateTime.isAfter()` instead of comparing microseconds
        ourselves.
      
      While I was touching this file, I also removed some unnecessary
      comparisons to `false`. (`_ManifestAssetBundle.wasBuiltOnce()` is the
      only implementation I can find of `AssetBundle.wasBuiltOnce()`, and
      it never returns `null`.)
      14c5c6e1
  20. 30 Sep, 2019 1 commit
  21. 24 Sep, 2019 1 commit
  22. 17 Sep, 2019 1 commit
  23. 13 Sep, 2019 1 commit
  24. 11 Sep, 2019 1 commit
  25. 27 Aug, 2019 1 commit
  26. 15 Aug, 2019 1 commit
  27. 08 Aug, 2019 1 commit
  28. 07 Aug, 2019 1 commit
  29. 02 Aug, 2019 1 commit
  30. 31 Jul, 2019 1 commit