1. 15 Dec, 2022 1 commit
  2. 07 Sep, 2022 1 commit
  3. 15 Jun, 2022 1 commit
  4. 07 May, 2022 1 commit
  5. 08 Oct, 2021 3 commits
  6. 04 Oct, 2021 1 commit
  7. 12 May, 2021 1 commit
  8. 10 May, 2021 1 commit
  9. 21 Apr, 2021 1 commit
  10. 17 Apr, 2021 1 commit
  11. 16 Apr, 2021 1 commit
  12. 10 Apr, 2021 1 commit
  13. 06 Apr, 2021 1 commit
  14. 08 Mar, 2021 1 commit
  15. 06 Mar, 2021 1 commit
  16. 26 Feb, 2021 1 commit
  17. 18 Feb, 2021 1 commit
  18. 11 Feb, 2021 2 commits
  19. 27 Jan, 2021 1 commit
  20. 09 Oct, 2020 1 commit
    • James D. Lin's avatar
      [flutter tools] Add a DelegatingLogger class (#67581) · e4206ac5
      James D. Lin authored
      [flutter tools] Add a DelegatingLogger class
      
      Move most of `DelegateLogger` `from test/src/testbed.dart` to
      `lib/src/base/logger.dart` to better formalize the common practice of
      chaining `Logger`s together.  I renamed the class since it isn't
      itself the delegate and to better match the `Delegating...` classes
      from `package:collection`.
      
      Additionally, add a freestanding `asLogger<T>` function to "cast" a
      `Logger` into a matching delegate if possible.  This will allow
      `Logger` chains to be ordered a *bit* more freely (e.g.
      `NotifyingLogger` and `AppRunLogger` will no longer required to be
      at the end of the chain, an unwritten rule that has led to breakage in
      google3).  Chain order still matters since lack of virtual dispatch
      means that parent `Logger`s can never invoke child methods, however.
      
      I made `asLogger<T>` a freestanding function because I didn't want to
      make it part of the `Logger` interface (and I thought that making it
      an extension method might be weird).
      
      Bonus cleanup:
      There no longer appears to be a way to construct an `AppRunLogger`
      with a null parent, so remove all of code paths for that case and
      make the `parent` construction parameter required.
      e4206ac5
  21. 30 Sep, 2020 1 commit
  22. 30 Jun, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] ensure flutter daemon can exit correctly when app fails to start (#60615) · 21881961
      Jonah Williams authored
      The flutter daemon unconditionally waits for the appFinished signal, even if startup failed. Ensure this future is correctly completed if there is a failure in ResidentRunner.run and not just ResidentRunner.attach. Adds regression tests for run release, debug, debug web, and release web. Adds missing try catch in cold runner startup.
      
      Manually tested with release/debug on Android and release/debug on web.
      
      Fixes #60613
      21881961
  23. 06 May, 2020 1 commit
  24. 22 Apr, 2020 1 commit
  25. 20 Mar, 2020 1 commit
  26. 06 Mar, 2020 1 commit
  27. 05 Mar, 2020 2 commits
  28. 14 Feb, 2020 1 commit
  29. 11 Feb, 2020 1 commit
  30. 06 Feb, 2020 1 commit
  31. 08 Jan, 2020 1 commit
  32. 06 Jan, 2020 1 commit
  33. 12 Dec, 2019 1 commit
    • Danny Tuppeny's avatar
      Support URL tunnelling (pass dwds UrlEncoder through to editors via daemon) (#44271) · 4944622b
      Danny Tuppeny authored
      * Prposal for supporting URL tunnelling
      
      * Update daemon.md
      
      * Add the ability for daemon to call clients to expose URLs
      
      * Fix dwds mock in web_fs tests
      
      * Fix type error
      
      * Remove build_runner import from run
      
      * Move appStartedTime back to after the app has started
      
      * Remove nested DI scope and pass urlTunneller down
      
      * Fix import
      
      * Tweak TODO
      
      * Fix existing tests
      
      * Fix spec to use result instead of params for response object
      
      * Fix exposeUrl to use a url field, as spec'd
      
      * Test that the daemon's exposeUrl sends a request and handles the response
      4944622b
  34. 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
  35. 24 Nov, 2019 1 commit
  36. 10 Nov, 2019 1 commit