upgraded flutter to beta v2.2.0-10.2.pre

This commit is contained in:
Thibault Deckers 2021-05-03 10:36:02 +09:00
parent e54513c652
commit d68ff5861a
12 changed files with 21 additions and 18 deletions

View file

@ -15,7 +15,7 @@ jobs:
- uses: subosito/flutter-action@v1
with:
channel: beta
flutter-version: '2.2.0-10.1.pre'
flutter-version: '2.2.0-10.2.pre'
- name: Clone the repository.
uses: actions/checkout@v2

View file

@ -17,7 +17,7 @@ jobs:
- uses: subosito/flutter-action@v1
with:
channel: beta
flutter-version: '2.2.0-10.1.pre'
flutter-version: '2.2.0-10.2.pre'
# Workaround for this Android Gradle Plugin issue (supposedly fixed in AGP 4.1):
# https://issuetracker.google.com/issues/144111441
@ -50,8 +50,8 @@ jobs:
echo "${{ secrets.KEY_JKS }}" > release.keystore.asc
gpg -d --passphrase "${{ secrets.KEY_JKS_PASSPHRASE }}" --batch release.keystore.asc > $AVES_STORE_FILE
rm release.keystore.asc
flutter build apk --bundle-sksl-path shaders_2.2.0-10.1.pre.sksl.json
flutter build appbundle --bundle-sksl-path shaders_2.2.0-10.1.pre.sksl.json
flutter build apk --bundle-sksl-path shaders_2.2.0-10.2.pre.sksl.json
flutter build appbundle --bundle-sksl-path shaders_2.2.0-10.2.pre.sksl.json
rm $AVES_STORE_FILE
env:
AVES_STORE_FILE: ${{ github.workspace }}/key.jks

View file

@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file.
## [Unreleased]
### Changed
- Upgraded Flutter to beta v2.2.0-10.2.pre
## [v1.4.1] - 2021-04-29
### Added

View file

@ -140,6 +140,7 @@ class _AppDrawerState extends State<AppDrawer> {
runSpacing: 8,
children: [
OutlinedButton.icon(
key: Key('drawer-about-button'),
onPressed: () => goTo(AboutPage.routeName, (_) => AboutPage()),
icon: Icon(AIcons.info),
label: Row(
@ -175,6 +176,7 @@ class _AppDrawerState extends State<AppDrawer> {
),
),
OutlinedButton.icon(
key: Key('drawer-settings-button'),
onPressed: () => goTo(SettingsPage.routeName, (_) => SettingsPage()),
icon: Icon(AIcons.settings),
label: Text(context.l10n.settingsPageTitle),

View file

@ -57,8 +57,7 @@ class XmpNamespace {
Map<String, String> get buildProps => rawProps;
List<Widget> buildNamespaceSection() {
final props = buildProps
.entries
final props = buildProps.entries
.map((kv) {
final prop = XmpProp(kv.key, kv.value);
return extractData(prop) ? null : prop;

View file

@ -312,7 +312,7 @@ packages:
description:
path: "."
ref: "issues/829-nullsafety"
resolved-ref: "622d7e894034681c46470a4e4c94964d0ccd6454"
resolved-ref: "09b306afdfc5d748cdaf3307084e70fcb6a21c6d"
url: "git://github.com/fleaflet/flutter_map.git"
source: git
version: "0.12.0"
@ -365,7 +365,7 @@ packages:
name: get_it
url: "https://pub.dartlang.org"
source: hosted
version: "6.1.1"
version: "7.0.0"
github:
dependency: "direct main"
description:
@ -414,7 +414,7 @@ packages:
name: http
url: "https://pub.dartlang.org"
source: hosted
version: "0.13.1"
version: "0.13.2"
http_multi_server:
dependency: transitive
description:
@ -652,7 +652,7 @@ packages:
name: permission_handler
url: "https://pub.dartlang.org"
source: hosted
version: "7.0.0"
version: "7.1.0"
permission_handler_platform_interface:
dependency: transitive
description:

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -68,7 +68,7 @@ void visitAbout() {
await driver.tap(find.byValueKey('appbar-leading-button'));
await driver.waitUntilNoTransientCallbacks();
await driver.tap(find.byValueKey('About-tile'));
await driver.tap(find.byValueKey('drawer-about-button'));
await driver.waitUntilNoTransientCallbacks();
await pressDeviceBackButton();
@ -81,7 +81,7 @@ void visitSettings() {
await driver.tap(find.byValueKey('appbar-leading-button'));
await driver.waitUntilNoTransientCallbacks();
await driver.tap(find.byValueKey('Settings-tile'));
await driver.tap(find.byValueKey('drawer-settings-button'));
await driver.waitUntilNoTransientCallbacks();
await pressDeviceBackButton();