1. 29 Apr, 2019 1 commit
  2. 25 Apr, 2019 2 commits
  3. 23 Apr, 2019 1 commit
  4. 22 Apr, 2019 2 commits
  5. 08 Apr, 2019 2 commits
  6. 30 Mar, 2019 2 commits
  7. 27 Mar, 2019 1 commit
  8. 26 Mar, 2019 2 commits
  9. 20 Mar, 2019 1 commit
  10. 08 Mar, 2019 2 commits
  11. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      Alexandre Ardhuin authored
      * add trailing commas on list/map/parameters
      
      * add trailing commas on Invocation with nb of arg>1
      
      * add commas for widget containing widgets
      
      * add trailing commas if instantiation contains trailing comma
      
      * revert bad change
      387f8854
  12. 21 Feb, 2019 2 commits
  13. 13 Feb, 2019 3 commits
  14. 09 Feb, 2019 1 commit
  15. 08 Feb, 2019 2 commits
  16. 19 Jan, 2019 1 commit
    • Ian Hickson's avatar
      [O] Removing all timeouts (mark II) (#26736) · 31a9626c
      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.
      31a9626c
  17. 18 Jan, 2019 1 commit
  18. 15 Jan, 2019 1 commit
  19. 07 Jan, 2019 1 commit
  20. 27 Dec, 2018 1 commit
  21. 21 Dec, 2018 3 commits
  22. 20 Dec, 2018 1 commit
  23. 14 Dec, 2018 1 commit
    • David Shuckerow's avatar
      Add ipv6 and observatory port support to the attach command (#25303) · 1a60b166
      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
      1a60b166
  24. 11 Nov, 2018 1 commit
  25. 06 Nov, 2018 1 commit
  26. 17 Oct, 2018 1 commit
    • Michael Klimushyn's avatar
      Set `FlutterDevice.viewFilter` by CLI flag (#23026) · 4f8acd84
      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`).
      4f8acd84
  27. 11 Oct, 2018 1 commit
    • Greg Spencer's avatar
      Re-land text wrapping/color PR (#22831) · 081d2a7a
      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.
      081d2a7a
  28. 06 Oct, 2018 1 commit