1. 08 Oct, 2021 3 commits
  2. 02 Jun, 2021 1 commit
  3. 08 Apr, 2021 1 commit
  4. 13 Mar, 2021 1 commit
  5. 28 Jan, 2021 1 commit
  6. 27 Jan, 2021 1 commit
  7. 30 Sep, 2020 1 commit
  8. 27 Jan, 2020 1 commit
  9. 17 Jan, 2020 1 commit
  10. 16 Jan, 2020 1 commit
  11. 06 Jan, 2020 1 commit
  12. 03 Jan, 2020 1 commit
  13. 16 Dec, 2019 1 commit
  14. 11 Dec, 2019 1 commit
  15. 10 Dec, 2019 1 commit
  16. 09 Dec, 2019 2 commits
  17. 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
  18. 30 Sep, 2019 1 commit
  19. 13 Jul, 2019 1 commit
  20. 12 Sep, 2018 1 commit
  21. 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
  22. 20 Jul, 2018 1 commit
  23. 04 May, 2018 2 commits
  24. 19 Dec, 2017 1 commit
    • Alan Russian's avatar
      Change async stubbing to use thenAnswer. (#13521) · 30720bd1
      Alan Russian authored
      * Change async stubbing to use thenAnswer.
      
      Mockito now prohibits calling thenReturn with Futures and Streams. dart-lang/mockito#79
      
      * Update all Mockito deps to 3.0.0.
      
      * Revert "Update all Mockito deps to 3.0.0."
      
      This reverts commit e8ab9d37c33d3d7fe384abde64ea5b4d72623c75.
      
      I did not correctly update the mockito dep, and there's no easy way to update to 3.0 alpha right now.
      
      * Change thenAnswer((_) => to thenAnswer((invocation) =>
      
      * Add Invocation type to thenAnswer lambdas
      30720bd1
  25. 12 May, 2017 1 commit
  26. 15 Mar, 2017 1 commit
    • Michael Goderbauer's avatar
      Make ProcessSignals portable (#8779) · 15330ffb
      Michael Goderbauer authored
      * Make ProcessSignals portable
      
      This removes the need to wrap unsupported signals with in `if (!platform.isWindows) ..`.
      
      It also allows us to implement a work around for breaking the Windows console when flutter is exited with Ctrl+C.
      
      * review comments
      
      * adding tests
      
      * add license header
      15330ffb