Skip to content

Tags: yassssser/flutter

Tags

v0.10.2

Toggle v0.10.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Roll engine a6e816b..6c2ade9 (4 commits) (flutter#23532)

flutter/engine@a6e816b...6c2ade9

git log a6e816b..6c2ade9 --no-merges --oneline
6c2ade9 Update contributing.md for xcode_backend refactor notes (flutter/engine#6642)
69dced9 Dart SDK roll for 2018-10-25
3edf5fa Roll src/third_party/skia dfca8f6adb6b..a2272ef92640 (4 commits) (flutter/engine#6659)
cf75289 TextField is only a live region when it has input focus (flutter/engine#6649)


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&flutter#39;d on the roll, and stop the roller if necessary.

v0.10.1

Toggle v0.10.1's commit message
Roll engine 104f057..3860a43 (5 commits) (flutter#23271)

flutter/engine@104f057...3860a43

git log 104f057..3860a43 --no-merges --oneline
3860a43 Re-revert wrong line_heights implementation (flutter/engine#6598)
09dcc3d Gate locale.getScript() behind version check for android  API < 21 (flutter/engine#6592)
c176244 Provide an estimate of EngineLayer memory usage to the Dart GC (flutter/engine#6589)
2511dec Roll src/third_party/skia a64e4eeaa357..b4ae49937d83 (14 commits) (flutter/engine#6590)
0887dd5 Roll buildroot to 4ee3892 (flutter/engine#6586)

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&flutter#39;d on the roll, and stop the roller if necessary.

v0.10.0

Toggle v0.10.0's commit message
Roll engine 289c6b1..bf37789 (2 commits) (flutter#22878)

flutter/engine@289c6b1...bf37789

git log 289c6b1..bf37789 --no-merges --oneline
bf37789 Revert height (flutter/engine#6477)
ec103ad Roll src/third_party/skia a41a74ac7994..ef85d19100b1 (11 commits) (flutter/engine#6476)

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&flutter#39;d on the roll, and stop the roller if necessary.

v0.9.6

Toggle v0.9.6's commit message
use RadioListTile in expansion panels demo (flutter#20240)

* use RadioListTile in expansion panels demo

Fixes flutter#6048.
- expose `_Location`
- appease analyzer

v0.9.5

Toggle v0.9.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prevent dropdown menu's scroll offset from going negative (flutter#22235

)

In long lists this resulted in the dropdown scrolling to the very last
item in its list. Now clamping the value at `0.0`. Added a test to
verify that the selected item aligns with the button to test the offset.

Fixes flutter#15346

v0.9.4

Toggle v0.9.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[Material] Add TabBarTheme (flutter#22012)

* Add tab bar theme.

* Add tab bar theme.

* Add tests, pass context to getters.

* update goldens from linux box

* update goldens from linux box

* Added new golden test, addressed comments

* override hashCode and == in TabBarTheme

* Fix comment typos

* Addressed Hans' comments.

* Formatting changes

* [TabBarTheme] Fixed spacing

* [TabBarTheme] Update goldens version to latest commit

v0.9.3

Toggle v0.9.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix the run_release_test devicelab test after changing output. (flutt…

…er#22104)

v0.9.2

Toggle v0.9.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Revert "Implement Double Tap Handling in TextField and Editable" (flu…

…tter#22051)

* Revert "Revert "Add RichText support to find.text" (flutter#22046)"

This reverts commit 8e70421.

* Revert "Implement Double Tap Handling in TextField and Editable (flutter#21264)"

This reverts commit 02e8733.

v0.9.1

Toggle v0.9.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Make helper and error text separate widgets, make error and counter l…

…ive region (flutter#21752)

v0.9.0

Toggle v0.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use Xcode legacy build system for iOS builds (flutter#21901) (flutter…

…#21994)

Xcode 10 introduces a new build system which includes stricter checks on
duplicate build outputs.

When plugins are in use, there are two competing build actions that copy
Flutter.framework into the build application Frameworks directory:

  1. The Embed Frameworks build phase for the Runner project
  2. The [CP] Embed Pods Frameworks build phase that pod install creates
     in the project.

Item (1) is there to ensure the framework is copied into the built app
in the case where there are no plugins (and therefore no CocoaPods
integration in the Xcode project). Item (2) is there because Flutter's
podspec declares Flutter.framework as a vended_framework, and CocoaPods
automatically adds a copy step for each such vended_framework in the
transitive closure of CocoaPods dependencies.

As an immediate fix, we opt back into the build system used by Xcode 9
and earlier. Longer term, we need to update our templates and
flutter_tools to correctly handle this situation.

See: flutter#20685