upgraded flutter to beta v2.2.0-10.2.pre
This commit is contained in:
parent
e54513c652
commit
d68ff5861a
12 changed files with 21 additions and 18 deletions
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
||||||
- uses: subosito/flutter-action@v1
|
- uses: subosito/flutter-action@v1
|
||||||
with:
|
with:
|
||||||
channel: beta
|
channel: beta
|
||||||
flutter-version: '2.2.0-10.1.pre'
|
flutter-version: '2.2.0-10.2.pre'
|
||||||
|
|
||||||
- name: Clone the repository.
|
- name: Clone the repository.
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- uses: subosito/flutter-action@v1
|
- uses: subosito/flutter-action@v1
|
||||||
with:
|
with:
|
||||||
channel: beta
|
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):
|
# Workaround for this Android Gradle Plugin issue (supposedly fixed in AGP 4.1):
|
||||||
# https://issuetracker.google.com/issues/144111441
|
# https://issuetracker.google.com/issues/144111441
|
||||||
|
@ -50,8 +50,8 @@ jobs:
|
||||||
echo "${{ secrets.KEY_JKS }}" > release.keystore.asc
|
echo "${{ secrets.KEY_JKS }}" > release.keystore.asc
|
||||||
gpg -d --passphrase "${{ secrets.KEY_JKS_PASSPHRASE }}" --batch release.keystore.asc > $AVES_STORE_FILE
|
gpg -d --passphrase "${{ secrets.KEY_JKS_PASSPHRASE }}" --batch release.keystore.asc > $AVES_STORE_FILE
|
||||||
rm release.keystore.asc
|
rm release.keystore.asc
|
||||||
flutter build apk --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.1.pre.sksl.json
|
flutter build appbundle --bundle-sksl-path shaders_2.2.0-10.2.pre.sksl.json
|
||||||
rm $AVES_STORE_FILE
|
rm $AVES_STORE_FILE
|
||||||
env:
|
env:
|
||||||
AVES_STORE_FILE: ${{ github.workspace }}/key.jks
|
AVES_STORE_FILE: ${{ github.workspace }}/key.jks
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Changed
|
||||||
|
- Upgraded Flutter to beta v2.2.0-10.2.pre
|
||||||
|
|
||||||
## [v1.4.1] - 2021-04-29
|
## [v1.4.1] - 2021-04-29
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -555,9 +555,9 @@
|
||||||
"@settingsVideoEnableHardwareAcceleration": {},
|
"@settingsVideoEnableHardwareAcceleration": {},
|
||||||
"settingsVideoEnableAutoPlay": "Auto play",
|
"settingsVideoEnableAutoPlay": "Auto play",
|
||||||
"@settingsVideoEnableAutoPlay": {},
|
"@settingsVideoEnableAutoPlay": {},
|
||||||
"settingsVideoLoopModeTile": "Loop mode",
|
"settingsVideoLoopModeTile": "Loop mode",
|
||||||
"@settingsVideoLoopModeTile": {},
|
"@settingsVideoLoopModeTile": {},
|
||||||
"settingsVideoLoopModeTitle": "Loop Mode",
|
"settingsVideoLoopModeTitle": "Loop Mode",
|
||||||
"@settingsVideoLoopModeTitle": {},
|
"@settingsVideoLoopModeTitle": {},
|
||||||
|
|
||||||
"settingsSectionPrivacy": "Privacy",
|
"settingsSectionPrivacy": "Privacy",
|
||||||
|
|
|
@ -259,8 +259,8 @@
|
||||||
"settingsVideoShowVideos": "미디어에 동영상 표시",
|
"settingsVideoShowVideos": "미디어에 동영상 표시",
|
||||||
"settingsVideoEnableHardwareAcceleration": "하드웨어 가속",
|
"settingsVideoEnableHardwareAcceleration": "하드웨어 가속",
|
||||||
"settingsVideoEnableAutoPlay": "자동 재생",
|
"settingsVideoEnableAutoPlay": "자동 재생",
|
||||||
"settingsVideoLoopModeTile": "반복 모드",
|
"settingsVideoLoopModeTile": "반복 모드",
|
||||||
"settingsVideoLoopModeTitle": "반복 모드",
|
"settingsVideoLoopModeTitle": "반복 모드",
|
||||||
|
|
||||||
"settingsSectionPrivacy": "개인정보 보호",
|
"settingsSectionPrivacy": "개인정보 보호",
|
||||||
"settingsEnableAnalytics": "진단 데이터 보내기",
|
"settingsEnableAnalytics": "진단 데이터 보내기",
|
||||||
|
|
|
@ -20,7 +20,7 @@ class AvesExpansionTile extends StatelessWidget {
|
||||||
this.initiallyExpanded = false,
|
this.initiallyExpanded = false,
|
||||||
this.showHighlight = true,
|
this.showHighlight = true,
|
||||||
@required this.children,
|
@required this.children,
|
||||||
}): value = value ?? title;
|
}) : value = value ?? title;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
|
|
@ -140,6 +140,7 @@ class _AppDrawerState extends State<AppDrawer> {
|
||||||
runSpacing: 8,
|
runSpacing: 8,
|
||||||
children: [
|
children: [
|
||||||
OutlinedButton.icon(
|
OutlinedButton.icon(
|
||||||
|
key: Key('drawer-about-button'),
|
||||||
onPressed: () => goTo(AboutPage.routeName, (_) => AboutPage()),
|
onPressed: () => goTo(AboutPage.routeName, (_) => AboutPage()),
|
||||||
icon: Icon(AIcons.info),
|
icon: Icon(AIcons.info),
|
||||||
label: Row(
|
label: Row(
|
||||||
|
@ -175,6 +176,7 @@ class _AppDrawerState extends State<AppDrawer> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
OutlinedButton.icon(
|
OutlinedButton.icon(
|
||||||
|
key: Key('drawer-settings-button'),
|
||||||
onPressed: () => goTo(SettingsPage.routeName, (_) => SettingsPage()),
|
onPressed: () => goTo(SettingsPage.routeName, (_) => SettingsPage()),
|
||||||
icon: Icon(AIcons.settings),
|
icon: Icon(AIcons.settings),
|
||||||
label: Text(context.l10n.settingsPageTitle),
|
label: Text(context.l10n.settingsPageTitle),
|
||||||
|
|
|
@ -57,8 +57,7 @@ class XmpNamespace {
|
||||||
Map<String, String> get buildProps => rawProps;
|
Map<String, String> get buildProps => rawProps;
|
||||||
|
|
||||||
List<Widget> buildNamespaceSection() {
|
List<Widget> buildNamespaceSection() {
|
||||||
final props = buildProps
|
final props = buildProps.entries
|
||||||
.entries
|
|
||||||
.map((kv) {
|
.map((kv) {
|
||||||
final prop = XmpProp(kv.key, kv.value);
|
final prop = XmpProp(kv.key, kv.value);
|
||||||
return extractData(prop) ? null : prop;
|
return extractData(prop) ? null : prop;
|
||||||
|
|
|
@ -312,7 +312,7 @@ packages:
|
||||||
description:
|
description:
|
||||||
path: "."
|
path: "."
|
||||||
ref: "issues/829-nullsafety"
|
ref: "issues/829-nullsafety"
|
||||||
resolved-ref: "622d7e894034681c46470a4e4c94964d0ccd6454"
|
resolved-ref: "09b306afdfc5d748cdaf3307084e70fcb6a21c6d"
|
||||||
url: "git://github.com/fleaflet/flutter_map.git"
|
url: "git://github.com/fleaflet/flutter_map.git"
|
||||||
source: git
|
source: git
|
||||||
version: "0.12.0"
|
version: "0.12.0"
|
||||||
|
@ -365,7 +365,7 @@ packages:
|
||||||
name: get_it
|
name: get_it
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.1.1"
|
version: "7.0.0"
|
||||||
github:
|
github:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
@ -414,7 +414,7 @@ packages:
|
||||||
name: http
|
name: http
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.13.1"
|
version: "0.13.2"
|
||||||
http_multi_server:
|
http_multi_server:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -652,7 +652,7 @@ packages:
|
||||||
name: permission_handler
|
name: permission_handler
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "7.0.0"
|
version: "7.1.0"
|
||||||
permission_handler_platform_interface:
|
permission_handler_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
File diff suppressed because one or more lines are too long
1
shaders_2.2.0-10.2.pre.sksl.json
Normal file
1
shaders_2.2.0-10.2.pre.sksl.json
Normal file
File diff suppressed because one or more lines are too long
|
@ -68,7 +68,7 @@ void visitAbout() {
|
||||||
await driver.tap(find.byValueKey('appbar-leading-button'));
|
await driver.tap(find.byValueKey('appbar-leading-button'));
|
||||||
await driver.waitUntilNoTransientCallbacks();
|
await driver.waitUntilNoTransientCallbacks();
|
||||||
|
|
||||||
await driver.tap(find.byValueKey('About-tile'));
|
await driver.tap(find.byValueKey('drawer-about-button'));
|
||||||
await driver.waitUntilNoTransientCallbacks();
|
await driver.waitUntilNoTransientCallbacks();
|
||||||
|
|
||||||
await pressDeviceBackButton();
|
await pressDeviceBackButton();
|
||||||
|
@ -81,7 +81,7 @@ void visitSettings() {
|
||||||
await driver.tap(find.byValueKey('appbar-leading-button'));
|
await driver.tap(find.byValueKey('appbar-leading-button'));
|
||||||
await driver.waitUntilNoTransientCallbacks();
|
await driver.waitUntilNoTransientCallbacks();
|
||||||
|
|
||||||
await driver.tap(find.byValueKey('Settings-tile'));
|
await driver.tap(find.byValueKey('drawer-settings-button'));
|
||||||
await driver.waitUntilNoTransientCallbacks();
|
await driver.waitUntilNoTransientCallbacks();
|
||||||
|
|
||||||
await pressDeviceBackButton();
|
await pressDeviceBackButton();
|
||||||
|
|
Loading…
Reference in a new issue