1. 18 Jan, 2018 9 commits
  2. 17 Jan, 2018 12 commits
  3. 16 Jan, 2018 7 commits
  4. 15 Jan, 2018 2 commits
  5. 13 Jan, 2018 5 commits
  6. 12 Jan, 2018 5 commits
    • amirh's avatar
      Add a PhysicalShape widget and a render object for it. (#13682) · 0230a874
      amirh authored
      This CL also refactors common logic for RenderPhysicalModel and
      RenderPhysicalShape into a base class _RenderPhysicalModelBase.
      0230a874
    • Chris Bracken's avatar
      Decode syslog-encoded iOS logs (#14075) · 6a42ed3f
      Chris Bracken authored
      Apple encodes syslog entries using a 7-bit encoding where input UTF-8 bytes
      are encoded as follows:
      1. 0x00 to 0x19: non-printing range. Some ignored, some encoded as <...>.
      2. 0x20 to 0x7f: as-is, with the exception of 0x5c (backslash).
      3. 0x5c (backslash): octal representation \134.
      4. 0x80 to 0x9f: \M^x (using control-character notation for range 0x00 to 0x40).
      5. 0xa0: octal representation \240.
      6. 0xa1 to 0xf7: \M-x (where x is the input byte stripped of its high-order bit).
      7. 0xf8 to 0xff: unused in 4-byte UTF-8.
      
      As there doesn't appear to be a system tool to decode these strings, we
      implement here in Dart. If we're unable to decode a string (e.g.
      decoding results in an invalid UTF-8 string), we fall back to emitting
      the log line as-is.
      6a42ed3f
    • Michael Goderbauer's avatar
      Add Flutter Console for Windows (#14030) · 1b91582d
      Michael Goderbauer authored
      Just download a Flutter ZIP bundle, unzip, and double-click on `flutter_console.bat` to get started. No PATH modifications required.
      1b91582d
    • Ian Hickson's avatar
      Fix ShapeDecoration (#14009) · 80d6095d
      Ian Hickson authored
      And add a test that catches these problems.
      80d6095d
    • Sam Rawlins's avatar
      e8b66624