1. 18 May, 2020 1 commit
  2. 14 May, 2020 1 commit
  3. 12 May, 2020 1 commit
  4. 11 May, 2020 1 commit
  5. 08 May, 2020 1 commit
  6. 01 May, 2020 1 commit
  7. 30 Apr, 2020 1 commit
  8. 29 Apr, 2020 1 commit
  9. 22 Apr, 2020 2 commits
  10. 17 Apr, 2020 2 commits
  11. 16 Apr, 2020 1 commit
  12. 15 Apr, 2020 1 commit
  13. 13 Apr, 2020 1 commit
  14. 08 Apr, 2020 1 commit
  15. 25 Mar, 2020 1 commit
  16. 23 Mar, 2020 1 commit
    • stuartmorgan's avatar
      Add pre-stable support for create on Windows (#51895) · 685e9d1e
      stuartmorgan authored
      Adds initial support for flutter create of apps and plugins. This is derived from the current FDE example app and sample plugin, adding template values where relevant.
      
      Since the APIs/tooling/template aren't stable yet, the app template includes a version marker, which will be updated each time there's a breaking change. The build now checks that the template version matches the version known by that version of the tool, and gives a specific error message when there's a mismatch, which improves over the current breaking change experience of hitting whatever build failure the breaking change causes and having to figure out that the problem is that the runner is out of date. It also adds a warning to the create output about the fact that it won't be stable.
      
      Plugins don't currently have a version marker since in practice this is not a significant problem for plugins yet the way it is for runners; we can add it later if that changes.
      
      Fixes #30704
      685e9d1e
  17. 18 Mar, 2020 1 commit
  18. 12 Mar, 2020 1 commit
  19. 10 Mar, 2020 1 commit
  20. 06 Mar, 2020 2 commits
  21. 05 Mar, 2020 2 commits
  22. 27 Feb, 2020 1 commit
  23. 23 Feb, 2020 1 commit
  24. 20 Feb, 2020 1 commit
  25. 14 Feb, 2020 1 commit
  26. 11 Feb, 2020 1 commit
  27. 10 Feb, 2020 1 commit
  28. 06 Feb, 2020 1 commit
  29. 05 Feb, 2020 1 commit
  30. 28 Jan, 2020 2 commits
  31. 22 Jan, 2020 1 commit
  32. 10 Jan, 2020 1 commit
  33. 07 Jan, 2020 1 commit
  34. 06 Jan, 2020 1 commit
  35. 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