- 28 May, 2019 2 commits
-
-
Jonah Williams authored
This reverts commit faec4ca3.
-
Emmanuel Garcia authored
-
- 06 May, 2019 1 commit
-
-
Zachary Anderson authored
-
- 01 May, 2019 1 commit
-
-
Dan Field authored
-
- 29 Apr, 2019 1 commit
-
-
Jonah Williams authored
-
- 25 Apr, 2019 1 commit
-
-
Jonah Williams authored
-
- 22 Apr, 2019 1 commit
-
-
Keerti Parthasarathy authored
* Add track-widget-creation flag to attach command * use the flag
-
- 19 Apr, 2019 2 commits
-
-
Ben Konyi authored
-
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.
-
- 16 Apr, 2019 1 commit
-
-
Alexander Aprelev authored
* Support release/debug flavors of flutter_patched_sdk * Use [anyNamed] instead of [any] for mocking named arguments * Fix use of local engine in release mode
-
- 21 Mar, 2019 1 commit
-
-
Alexander Aprelev authored
* Use source list from the compiler to track invalidated files. * Revert accidental change * Fix first-time-seen-the-file logic * Fix/simplify invalidate logic now that we can rely on compiler to let us know what is the cut-off point for invalidation. * Update devfs mock to accommodate for new fields * Fix deleted files case * Analyzer found missing final
-
- 15 Mar, 2019 1 commit
-
-
Jonah Williams authored
-
- 09 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 07 Mar, 2019 1 commit
-
-
Jonah Williams authored
-
- 21 Feb, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 16 Feb, 2019 1 commit
-
-
Dan Field authored
* Discover port over mDNS * Update BUILD.gn for tools
-
- 12 Feb, 2019 1 commit
-
-
Jonah Williams authored
-
- 28 Jan, 2019 1 commit
-
- 25 Jan, 2019 1 commit
-
-
Dan Field authored
* Discover port over mDNS * opt in, only for iOS for now
-
- 19 Jan, 2019 1 commit
-
-
Ian Hickson authored
These are essentially self-inflicted race conditions. Instead of timeouts we're going to try a more verbose logging mechanism that points out when things are taking a long time.
-
- 18 Jan, 2019 1 commit
-
-
Jonah Williams authored
-
- 09 Jan, 2019 1 commit
-
-
Jonah Williams authored
-
- 21 Dec, 2018 2 commits
-
-
Ian Hickson authored
This reverts commit 76f70810.
-
Ian Hickson authored
* Remove many timeouts. These are essentially self-inflicted race conditions. Instead of timeouts we're going to try a more verbose logging mechanism that points out when things are taking a long time. * Get the attach tests to pass. * Apply review comments from Todd * More review comment fixes * Put back the extended timeouts here now that I know why we have them...
-
- 14 Dec, 2018 1 commit
-
-
David Shuckerow authored
* Add ipv6 and observatory port support to the attach command. * Remove whitespace * Explain why a name change is useful here * Refactor common flags out into the parent * Add an additional test case for when observatory port is provided but debug port is not * Remove whitespace * Fix flag validation
-
- 12 Dec, 2018 2 commits
-
-
David Shuckerow authored
* Revert "e5195ee47 Remove unnecessary includes of Ganesh headers (flutter/engine#7189) (#25282)" This reverts commit f198d663. * Revert "Validate style in TextField (#24587)" This reverts commit 9a8e2f0c. * Revert "Allow snippets tool to be run from arbitrary CWDs (#25243)" This reverts commit 4a110b62. * Revert "Make doctor output consistent between VS Code/IntelliJ/Android Studio when plugins are missing (#25269)" This reverts commit e29b023a. * Revert "Add ipv6 and observatory port support to the attach command. (#24537)" This reverts commit 9150b3f0.
-
David Shuckerow authored
-
- 01 Dec, 2018 1 commit
-
-
Jonah Williams authored
-
- 09 Nov, 2018 1 commit
-
-
Jonah Williams authored
-
- 06 Nov, 2018 2 commits
-
-
Jonah Williams authored
-
-
- 02 Nov, 2018 1 commit
-
-
Jonah Williams authored
-
- 24 Oct, 2018 1 commit
-
-
Danny Tuppeny authored
* Fix --pid-file not working for --machine + add to attach Fixes #23201. * Add tests for --pid-file in run+attach
-
- 17 Oct, 2018 1 commit
-
-
Michael Klimushyn authored
`FlutterDevice.views` is limited by a filter. Pipe this filter up as an option for the commands that instantiate `FlutterDevice`s. This is the first change necessary for the CLI tooling to target specific isolates (#22009). More work needs to be done after this patch. * Isolate names are dynamically generated and change every restart. * This just filters views, not background isolates (`VMService.isolates`).
-
- 11 Oct, 2018 1 commit
-
-
Greg Spencer authored
This attempts to re-land #22656. There are two changes from the original: I turned off wrapping completely when not sending output to a terminal. Previously I had defaulted to wrapping at and arbitrary 100 chars in that case, just to keep long messages from being too long, but that turns out the be a bad idea because there are tests that are relying on the specific form of the output. It's also pretty arbitrary, and mostly people sending output to a non-terminal will want unwrapped text. I found a better way to terminate ANSI color/bold sequences, so that they can be embedded within each other without needed quite as complex a dance with removing redundant sequences. As part of these changes, I removed the Logger.supportsColor setter so that the one source of truth for color support is in AnsiTerminal.supportsColor. * Turn on line wrapping again in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656) This turns on text wrapping for usage messages and status messages. When on a terminal, wraps to the width of the terminal. When writing to a non-terminal, wrap lines at a default column width (currently defined to be 100 chars). If --no-wrap is specified, then no wrapping occurs. If --wrap-column is specified, wraps to that column (if --wrap is on). Adds ANSI color to the doctor and analysis output on terminals. This is in this PR with the wrapping, since wrapping needs to know how to count visible characters in the presence of ANSI sequences. (This is just one more step towards re-implementing all of Curses for Flutter. :-)) Will not print ANSI sequences when sent to a non-terminal, or of --no-color is specified. Fixes ANSI color and bold sequences so that they can be combined (bold, colored text), and a small bug in indentation calculation for wrapping. Since wrapping is now turned on, also removed many redundant '\n's in the code.
-
- 06 Oct, 2018 2 commits
-
-
Greg Spencer authored
Revert "Turn on line wrapping in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656)" (#22759) This reverts commit e4386321 because it breaks 160 benchmarks, and several devicelab tests, due to changing the format of the output.
-
Greg Spencer authored
Turn on line wrapping in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656) This turns on text wrapping for usage messages and status messages. When on a terminal, wraps to the width of the terminal. When writing to a non-terminal, wrap lines at a default column width (currently defined to be 100 chars). If --no-wrap is specified, then no wrapping occurs. If --wrap-column is specified, wraps to that column (if --wrap is on). Adds ANSI color to the doctor and analysis output on terminals. This is in this PR with the wrapping, since wrapping needs to know how to count visible characters in the presence of ANSI sequences. (This is just one more step towards re-implementing all of Curses for Flutter. :-)) Will not print ANSI sequences when sent to a non-terminal, or of --no-color is specified. Fixes ANSI color and bold sequences so that they can be combined (bold, colored text), and a small bug in indentation calculation for wrapping. Since wrapping is now turned on, also removed many redundant '\n's in the code.
-
- 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
-
- 04 Sep, 2018 1 commit
-
-
Chris Bracken authored
-