1. 05 Oct, 2018 1 commit
  2. 01 Oct, 2018 1 commit
  3. 12 Sep, 2018 1 commit
  4. 18 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Fixes resulting from audit of issues links (#20772) · 8c79f40d
      Ian Hickson authored
      * Fixes resulting from audit of issues links
      
      I looked at every link to GitHub in our repo. For cases where we had a TODO that was waiting for a bug to be fixed, and the bug has now been fixed, I applied the pending change. For cases where the link was out of date, I updated the link.
      
      * Update run_test.dart
      
      skip this test again since it failed on linux and macos bots
      8c79f40d
  5. 02 Aug, 2018 1 commit
  6. 27 Jul, 2018 1 commit
  7. 23 Jul, 2018 1 commit
  8. 16 Jul, 2018 2 commits
  9. 28 Jun, 2018 1 commit
    • Danny Tuppeny's avatar
      Remove the 'app' domain from flutter daemon (#18873) · 108da013
      Danny Tuppeny authored
      * Remove the 'app' domain from flutter daemon
      
      By default the daemon won't register the "app" domain, you need to opt-in (which the 'run' command does, as well as the tests for the app functionality).
      
      Fixes #6658.
      
      * Tweak text
      
      * Put restart/callServiceExtension/stop back into daemon mode
      
      * Add a comment about removing discoverApps
      108da013
  10. 27 Jun, 2018 1 commit
  11. 15 Jun, 2018 2 commits
  12. 12 Jun, 2018 1 commit
  13. 05 Jun, 2018 1 commit
  14. 10 Apr, 2018 1 commit
  15. 08 Mar, 2018 1 commit
  16. 21 Feb, 2018 1 commit
  17. 07 Dec, 2017 1 commit
  18. 22 Nov, 2017 1 commit
  19. 17 Nov, 2017 1 commit
    • Greg Spencer's avatar
      Fix spelling errors in all the dartdocs. (#13061) · 0259be90
      Greg Spencer authored
      I got tired of drive-by spelling fixes, so I figured I'd just take care of them all at once.
      
      This only corrects errors in the dartdocs, not regular comments, and I skipped any sample code in the dartdocs. It doesn't touch any identifiers in the dartdocs either. No code changes, just comments.
      0259be90
  20. 11 Nov, 2017 1 commit
  21. 30 Oct, 2017 1 commit
  22. 22 Oct, 2017 1 commit
  23. 13 Sep, 2017 1 commit
    • Carlo Bernaschina's avatar
      Add --trace-skia parameter to flutter run (#12070) · ba36008a
      Carlo Bernaschina authored
      * Add --trace-skia parameter to flutter run
      
      Skia tracing is extremely useful for internal debug, but reduces the
      amount of space available in the Dart Timeline buffers.
      Disable skia tracing by default and expose them via the --trace-skia
      flag.
      
      * Roll Engine to 57a1445a45964d386500c39f5e8d06db060abadb
      ba36008a
  24. 31 Aug, 2017 1 commit
  25. 23 Aug, 2017 1 commit
  26. 22 Aug, 2017 2 commits
  27. 01 Aug, 2017 1 commit
  28. 13 Jul, 2017 1 commit
  29. 28 Jun, 2017 1 commit
  30. 19 Jun, 2017 1 commit
    • Chris Bracken's avatar
      Re-enable use of instruments for iOS device lookup (#10838) · 1d9f0095
      Chris Bracken authored
      This reverts commit b2909a24.
      
      This resubmits the following patches:
      
      1. Use Xcode instruments to list devices (#10801)
      Eliminates the dependency on idevice_id from libimobiledevice. Instead,
      uses Xcode built-in functionality.
      
      2. Make device discovery asynchronous (#10803)
      Migrates DeviceDiscovery.devices and all device-specific lookup to be
      asynchronous.
      1d9f0095
  31. 17 Jun, 2017 2 commits
    • Chris Bracken's avatar
      Revert use of Xcode instruments for device lookup (#10806) · b2909a24
      Chris Bracken authored
      * Revert "Make device discovery asynchronous (#10803)"
      This reverts commit 972be9c8.
      
      * Revert "Use Xcode instruments to list devices (#10801)"
      This reverts commit 37bb5f13.
      
      This is to resolve a failure that looks related to a bad install of Xcode 8.0
      on our build bots and should be reinstated when the infra issue is diagnosed
      and resolved.
      
      Instruments worked well when this was originally landed, and on the
      following commit, but started failing two commits after this originally
      landed. Manual invocation of instruments on the build host currently
      results in:
      
      ```
      dyld: Library not loaded: @rpath/InstrumentsAnalysisCore.framework/Versions/A/InstrumentsAnalysisCore
        Referenced from: /Applications/Xcode8.0.app/Contents/Developer/usr/bin/instruments
        Reason: image not found
      Abort trap: 6
      ```
      
      It appears the /Applications/Xcode8.0.app/Contents/Applications
      directory (which contains Instruments) is missing on the host.
      b2909a24
    • Chris Bracken's avatar
      Make device discovery asynchronous (#10803) · 972be9c8
      Chris Bracken authored
      Migrates DeviceDiscovery.devices and all device-specific lookup to be
      asynchronous.
      972be9c8
  32. 02 Jun, 2017 1 commit
  33. 03 May, 2017 1 commit
  34. 27 Apr, 2017 2 commits
  35. 26 Apr, 2017 1 commit
    • Todd Volkert's avatar
      Switch many `Device` methods to be async (#9587) · 60c5ffc1
      Todd Volkert authored
      `adb` can sometimes hang, which will in turn hang the Dart isolate if
      we're using `Process.runSync()`. This changes many of the `Device` methods
      to return `Future<T>` in order to allow them to use the async process
      methods. A future change will add timeouts to the associated calls so
      that we can properly alert the user to the hung `adb` process.
      
      This is work towards #7102, #9567
      60c5ffc1