1. 19 Oct, 2018 12 commits
  2. 18 Oct, 2018 19 commits
  3. 17 Oct, 2018 9 commits
    • engine-flutter-autoroll's avatar
      Roll engine 08272ee6aa33..04c860fa1dba (19 commits) (#23219) · 44c0080a
      engine-flutter-autoroll authored
      
      https://github.com/flutter/engine/compare/08272ee6aa33...04c860fa1dba
      
      git log 08272ee6aa33..04c860fa1dba --no-merges --oneline
      04c860fa1 Revert "Roll Dart to ac6d4f7e653deba11d4836768376537893a9e9d6. (#6549)" (flutter/engine#6568)
      ef2ea1213 Roll src/third_party/skia 5b90b84085cf..cb65ce7f77c9 (8 commits) (flutter/engine#6567)
      065246eed Roll src/third_party/skia 483536c242f3..5b90b84085cf (3 commits) (flutter/engine#6566)
      b0008ca39 Roll src/third_party/skia 583161c09a3b..483536c242f3 (2 commits) (flutter/engine#6565)
      e22da7c70 Roll src/third_party/skia 0a8faf3f557d..583161c09a3b (1 commits) (flutter/engine#6564)
      915f5e01a Roll src/third_party/skia f831b64ed40e..0a8faf3f557d (5 commits) (flutter/engine#6563)
      ad0fbd5d4 Roll src/third_party/skia c9092eb46754..f831b64ed40e (14 commits) (flutter/engine#6561)
      6697d9dde Update @animation dartdoc directives to current api (flutter/engine#6552)
      10f9cab4c Ensure that the platform view is created and destroyed when running the shell unittests. (flutter/engine#6560)
      df5f4207a Roll src/third_party/skia 3d99b1e347be..c9092eb46754 (10 commits) (flutter/engine#6559)
      215c14694 Roll src/third_party/skia 1349ec4de78c..3d99b1e347be (3 commits) (flutter/engine#6556)
      fc376dd53 Roll src/third_party/skia a583a06f831e..1349ec4de78c (1 commits) (flutter/engine#6555)
      2dbbb2a9a Roll src/third_party/skia 198b87e5be20..a583a06f831e (5 commits) (flutter/engine#6554)
      126e61d34 Roll src/third_party/skia b3067e8e1b6e..198b87e5be20 (2 commits) (flutter/engine#6553)
      2cd79d14a Roll src/third_party/skia 4b7b2ceb4ad9..b3067e8e1b6e (1 commits) (flutter/engine#6551)
      62cd86c5a Advertise iOS Observatory port over mDNS/Bonjour (flutter/engine#6533)
      26f437f37 Fix crash when removeViewImmediate invoked from platform view (flutter/engine#6266)
      aed6b8c46 Roll Dart to ac6d4f7e653deba11d4836768376537893a9e9d6. (flutter/engine#6549)
      3ba6270b2 Roll src/third_party/skia 921ec976556c..4b7b2ceb4ad9 (14 commits) (flutter/engine#6550)
      
      
      The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll
      
      Documentation for the AutoRoller is here:
      https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
      
      If the roll is causing failures, please contact the current sheriff, who should
      be CC'd on the roll, and stop the roller if necessary.
      
      44c0080a
    • Yegor's avatar
      Use new `mixin` syntax for super-mixins (#22870) · 3fbd140e
      Yegor authored
      This re-lands 3c56e6c7 on top of a new Dart SDK that contains new mixin syntax fixes.
      3fbd140e
    • Sebastian Roth's avatar
      allow command line option "--project-name" in flutter create (#22022) · b95b67a6
      Sebastian Roth authored
      Simple convenience function if users create flutter projects in custom folder structures and but want to specify a custom project name.
      b95b67a6
    • 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
    • Jacob Richman's avatar
      Dispatch a Flutter.Navigation event each time navigation occurs. (#23126) · e4c2c978
      Jacob Richman authored
      Dispatch a Flutter.Navigation event each time navigation occurs.
      e4c2c978
    • Jacob Richman's avatar
      Fix bug where gradle build rule would rerun on switching from (#23183) · f86bdf1a
      Jacob Richman authored
      --track-widget-creation=false to
      --track-widget-creation=true
      but not when switching from
      --track-widget-creation=true
      to
      --track-widget-creation=false
      
      due to the surprising behavior of Gradle @Optional inputs.
      f86bdf1a
    • Alexandre Ardhuin's avatar
    • Dwayne Slater's avatar
      Fix out of range spring simulation in ClampingScrollSimulation (#22394) · cab7ecb8
      Dwayne Slater authored
      If the scroll is out of range for any reason (for instance, changing scroll physics or manually messing with scroll position), the spring simulation causes the scroll position to slingshot towards the end. Also, before this change, `end` was unused.
      cab7ecb8
    • Alexandre Ardhuin's avatar
      enable lint prefer_void_to_null (#23174) · 936dea28
      Alexandre Ardhuin authored
      * enable lint prefer_void_to_null
      
      * replace last Null by void
      936dea28