1. 02 Jun, 2017 1 commit
  2. 26 May, 2017 1 commit
  3. 25 May, 2017 1 commit
  4. 24 May, 2017 3 commits
  5. 22 May, 2017 3 commits
    • Chris Bracken's avatar
      Make most ios_workflow host tool calls async (#10260) · dd1456ff
      Chris Bracken authored
      Does not yet migrate hasIdeviceId since that results in a cascade of
      breaking interface changes that's significant enough for a separate
      patch.
      dd1456ff
    • Chris Bracken's avatar
      Test installation status when ideviceid is not installed (#10254) · 0e5d4a87
      Chris Bracken authored
      Ensure that flutter doctor returns a partial installation status when
      ideviceid is not installed.
      0e5d4a87
    • Todd Volkert's avatar
      Add initial list of known Android hardware (#10249) · aa9c7826
      Todd Volkert authored
      Our emulator detection was based on a simple heuristic that was
      failing for the Samsung Galaxy S8. Any heuristic is flawed since
      Android devices can report whatever they want to adb, but this
      change attempts to tighten the detection by listing known models
      (by their ro.hardware property). Again, these values could be
      spoofed by emulator system images, but it's less likely to be
      an issue than with our previous (and fall-back) heuristic.
      
      Fixes #10203
      Related: #10248
      aa9c7826
  6. 21 May, 2017 1 commit
    • Alexander Aprelev's avatar
      Filter out '\n' from terminal input. (#10220) · 5b1e9729
      Alexander Aprelev authored
      * Remove '\n' from terminal input.
      
      * Use trim instead of replaceAll
      
      * Add unit test
      
      * Cleanup the test
      
      * Fixed lint
      
      * Style adjustments
      
      * Forgotten @override
      
      * Revert "Forgotten @override"
      
      Accidently added extra files.
      
      This reverts commit 0aba24fc8ea321b3a4d0cd8aed7f589378393d96.
      
      * Just @override change
      5b1e9729
  7. 19 May, 2017 3 commits
  8. 18 May, 2017 1 commit
  9. 16 May, 2017 1 commit
    • Todd Volkert's avatar
      Fix race condition in protocol_discovery.dart (#10092) · 10decc7c
      Todd Volkert authored
      For some reaosn, when we discovered our URI, we were re-instantiating
      the `Completer` instance variable whose future we listen to in `nextUri()`.
      This led to a race between a caller calling `nextUri()` and us discovering
      the URI. If we happened to discover our URI before a caller called
      `nextUri()`, then they would be left waiting on a future from the newly
      allocated `Completer` (which would never complete).
      
      Fixes #10064
      10decc7c
  10. 15 May, 2017 1 commit
  11. 12 May, 2017 3 commits
  12. 09 May, 2017 2 commits
  13. 08 May, 2017 4 commits
  14. 03 May, 2017 2 commits
  15. 02 May, 2017 1 commit
  16. 27 Apr, 2017 3 commits
  17. 26 Apr, 2017 3 commits
  18. 25 Apr, 2017 1 commit
  19. 24 Apr, 2017 1 commit
  20. 20 Apr, 2017 1 commit
  21. 18 Apr, 2017 2 commits
  22. 17 Apr, 2017 1 commit
    • 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