1. 20 Feb, 2018 1 commit
  2. 14 Feb, 2018 1 commit
  3. 31 Jan, 2018 1 commit
    • jensjoha's avatar
      [kernel/flutter] Improve speed of first hot reload (#13699) · 5ccd5a1e
      jensjoha authored
      * [kernel/flutter] Improve speed of first hot reload
      
      * [kernel/flutter] Improve speed of first hot reload
      
      * Revert "[kernel/flutter] Improve speed of first hot reload"
      
      This reverts commit f3dc133878ec7405a8efb5715f1cfe720f4ea05f.
      
      * Revert "[kernel/flutter] Improve speed of first hot reload"
      
      This reverts commit f7bcb082b01cf9cf48f02c6aad9e5c79705def8f.
      
      * Revert "Revert "[kernel/flutter] Improve speed of first hot reload""
      
      This reverts commit 73c7a1a8e85a4c0397984d8b65a98b2f71bf84f3.
      
      * [kernel/flutter] Improve speed of first hot reload
      
      Do so by not evicting unnecessary paths (while still evicting paths
      that was changed between the generation of the package file and the
      initial upload).
      
      * Fix grammar in method name
      
      * Fix bad merge
      
      * Add method to super class
      5ccd5a1e
  4. 10 Nov, 2017 1 commit
  5. 25 Oct, 2017 1 commit
  6. 22 Oct, 2017 1 commit
  7. 19 Oct, 2017 1 commit
  8. 13 Oct, 2017 1 commit
  9. 12 Oct, 2017 2 commits
    • Ryan Macnak's avatar
      Reapply "When parts of the program are changed in a hot reload, but not... · 07a4b4c4
      Ryan Macnak authored
      Reapply "When parts of the program are changed in a hot reload, but not executed during the reassemble, warn that a restart may be needed." (#12490)
      
      This reverts commit 5e7bcbac.
      
      `flutter run --benchmark` was triggering a different quick bailout path in the VM than `flutter run`. The failure has been fixed upstream.
      07a4b4c4
    • Alexander Aprelev's avatar
      Fix restart flow for preview-dart-2 mode. (#12496) · 85e4f052
      Alexander Aprelev authored
      * Fix restart flow for preview-dart-2 mode.
      
      Restart in preview-dart-2 needs to use kernel file and it has to be complete, rather than incremental kernel file.
      
      * Add curly braces
      
      * Do full compile on restart
      
      * Roll engine to pick up changes to hot reload for preview-dart-2
      85e4f052
  10. 05 Oct, 2017 1 commit
    • Ryan Macnak's avatar
      Revert "When parts of the program are changed in a hot reload, but not... · 5e7bcbac
      Ryan Macnak authored
      Revert "When parts of the program are changed in a hot reload, but not executed during the reassemble, warn that a restart may be needed. (#12304)" (#12406)
      
      This reverts commit 90028813.
      
      This change caused a few bots to fail with 'JSON-RPC error 110: Extension error', which is odd because _getUnusedChangesInLastReload is not an extension.
      5e7bcbac
  11. 04 Oct, 2017 1 commit
  12. 27 Sep, 2017 1 commit
  13. 21 Sep, 2017 1 commit
  14. 13 Sep, 2017 1 commit
  15. 31 Aug, 2017 1 commit
  16. 17 Jul, 2017 1 commit
  17. 22 Jun, 2017 1 commit
  18. 15 Jun, 2017 1 commit
  19. 25 Apr, 2017 1 commit
  20. 17 Apr, 2017 2 commits
    • John McCutchan's avatar
      Improve flutter_tools handling of the device being unplugged while syncing DevFS (#9431) · acd75c0a
      John McCutchan authored
      - [x] Catch SocketErrors and handle them gracefully.
      - [x] Print 'Lost connection to device' when the service protocol connection is severed unexpectedly.
      - [x] Print 'Application finished' when the application exits otherwise.
      
      After this PR:
      
      ```
      Launching lib/main.dart on Nexus 7 in debug mode...
      Running 'gradle assembleDebug'...                     1.2s
      Built build/app/outputs/apk/app-debug.apk (21.7MB).
      Syncing files to device...
      Application finished.
      DevFS sync failed. Lost connection to device: SocketException: OS Error: Connection refused, errno = 111, address = 127.0.0.1, port = 53062
      Could not perform initial file synchronization.
      ```
      
      Fixes #6705
      acd75c0a
    • John McCutchan's avatar
      Do less file system crawling when we have the Dart dependency set (#9424) · 2c1bb355
      John McCutchan authored
      - [x] Skip scanning the file system if we already have the Dart dependency set.
      
      Fixes #9376
      
      ```
      Performing hot reload...
      Reloaded 1 of 418 libraries in 888ms.
      
      Performing hot reload...
      Reloaded 1 of 418 libraries in 871ms.
      
      ** UNTAR dragontail under project root **
      Performing hot reload...
      Reloaded 0 of 418 libraries in 443ms.
      
      ** UNTAR dragontail under lib/ **
      Performing hot reload...
      Reloaded 0 of 418 libraries in 385ms.
      ```
      2c1bb355
  21. 30 Mar, 2017 1 commit
  22. 27 Mar, 2017 1 commit
  23. 23 Mar, 2017 1 commit
  24. 22 Mar, 2017 1 commit
  25. 15 Mar, 2017 1 commit
  26. 10 Mar, 2017 2 commits
  27. 08 Mar, 2017 1 commit
  28. 04 Mar, 2017 2 commits
  29. 02 Mar, 2017 1 commit
  30. 01 Mar, 2017 2 commits
    • Michael Goderbauer's avatar
      [devFS] Use URI to represent paths on device (#8446) · 17057bb4
      Michael Goderbauer authored
      * [devFS] Use URI to represent paths on device
      
      Previosuly, regular file paths in the format of the host platform were used to represent paths on device. That works when host and device share the same (POSIX) file path format. With a Windows host, this breaks. URIs are the solution as they are platform independent and the VM service on the device already interpreted the file paths as URIs anyways.
      
      * review comments
      
      * switch to file paths
      
      * fix tests on Windows
      
      * review comments
      17057bb4
    • Michael Goderbauer's avatar
      Roll forward #8467 (#8477) · 65835af4
      Michael Goderbauer authored
      * Revert "Revert "Simplify path handling logic in dependency checker and devFS (#8414)" (#8467)"
      
      This reverts commit 96ba7f76.
      
      * Intentionally use a self-package URI in flutter_gallery
      
      * tests to catch problems with self-package imports
      65835af4
  31. 28 Feb, 2017 1 commit
  32. 27 Feb, 2017 1 commit
  33. 23 Feb, 2017 1 commit
  34. 14 Feb, 2017 2 commits