- 07 Feb, 2020 1 commit
-
-
Alexandre Ardhuin authored
* unnecessary escapes fixes * replace some strings with raw strings * update regexp * address review comments
-
- 07 Jan, 2020 1 commit
-
-
Alexandre Ardhuin authored
-
- 06 Jan, 2020 1 commit
-
-
Jonah Williams authored
-
- 23 Dec, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 27 Nov, 2019 1 commit
-
-
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
-
- 22 Nov, 2019 1 commit
-
-
Greg Spencer authored
No code changes, just comments: I spell-checked all the comments in the repo.
-
- 21 Nov, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 20 Nov, 2019 3 commits
-
-
Emmanuel Garcia authored
This reverts commit 2135e9fb.
-
Emmanuel Garcia authored
-
Emmanuel Garcia authored
This reverts commit 6d77996d.
-
- 19 Nov, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 14 Nov, 2019 1 commit
-
-
Jonah Williams authored
-
- 13 Nov, 2019 2 commits
-
-
Jonah Williams authored
This reverts commit c0af77bf.
-
Jonah Williams authored
-
- 09 Oct, 2019 1 commit
-
-
Christopher Fujino authored
-
- 15 Aug, 2019 1 commit
-
-
Zachary Anderson authored
-
- 19 Apr, 2019 1 commit
-
-
Ben Konyi authored
* Added support for authentication codes for the VM service. Previously, a valid web socket connection would use the following URI: `ws://127.0.0.1/ws` Now, by default, the VM service requires a connection to be made with a URI similar to the following: `ws://127.0.0.1:8181/Ug_U0QVsqFs=/ws` where `Ug_U0QVsqFs` is an authentication code generated and shared by the service. This behavior can be disabled with the `--disable-service-auth-codes` flag.
-
- 05 Oct, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 12 Sep, 2018 1 commit
-
-
Alexandre Ardhuin authored
* enable lint unnecessary_new * fix tests * fix tests * fix tests
-
- 05 Sep, 2018 1 commit
-
-
Matteo Crippa authored
-
- 04 Aug, 2018 1 commit
-
-
Matteo Crippa authored
A different approach to get the url from the string and avoid any interference by extra chars not allowed in url Fixes #19618
-
- 27 Jun, 2018 1 commit
-
-
Ian Hickson authored
This is an attempt to reland #18488 with less breakage on macOS.
-
- 15 Jun, 2018 2 commits
-
-
Ian Hickson authored
This reverts commit 77508722.
-
Ian Hickson authored
-
- 05 Jun, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 04 May, 2018 2 commits
-
-
Todd Volkert authored
The new values are not ready for use yet inside Google
-
Yegor authored
* Roll engine to e976be13c51448f89107d082ec81e2b6731671fa * move away from deprecated constants
-
- 22 Nov, 2017 1 commit
-
-
Todd Volkert authored
This allows `flutter run` to work on hosts that are IPv6-only.
-
- 08 Nov, 2017 1 commit
-
-
Alexandre Ardhuin authored
* enable lint prefer_asserts_in_initializer_lists * enable --assert-initializer
-
- 30 Oct, 2017 1 commit
-
-
Jason Simmons authored
-
- 29 Jun, 2017 1 commit
-
-
Devon Carew authored
* increase the timeout for service discovery * remove the timeout for discovering service ports
-
- 16 May, 2017 2 commits
-
-
Ian Hickson authored
Rather than complain about these in a code review I figured I'd just fix them. :-)
-
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
-
- 14 Mar, 2017 1 commit
-
-
Todd Volkert authored
1. Add `PortScanner` abstraction so that we don't do actual port scanning in tests. 2. Don't change the real `cwd` of the isolate during tests, as it affects all tests, not just the current running test. Fixes #8761
-
- 04 Mar, 2017 1 commit
-
-
Chris Bracken authored
-
- 27 Jan, 2017 1 commit
-
-
Ian Hickson authored
...and add --diagnostic-port. ...and document port 0.
-
- 06 Dec, 2016 1 commit
-
-
Dan Rubel authored
This moves the various copies of port forwarding code in the Device subclasses into the ProtocolDiscovery class. * move port forwarding to a common location * throw exception if protocol Uri is not discovered or port forwarding fails * cancel discovery protocol subscriptions on iOS launches (wasn't happening before) * fix iOS port forwarding to match other implementations * add tests
-
- 01 Dec, 2016 1 commit
-
-
Dan Rubel authored
* reapply handle new Observatory URL changes Fixes https://github.com/flutter/flutter/issues/6843 * allow non numeric IPv4 addresses Fixes https://github.com/flutter/flutter/issues/7051
-
- 28 Nov, 2016 2 commits
-
-
Dan Rubel authored