upgraded flutter to dev v2.1.0-12.1.pre

This commit is contained in:
Thibault Deckers 2021-03-13 12:39:59 +09:00
parent d89907bbc5
commit d16fb5eb82
9 changed files with 22 additions and 32 deletions

View file

@ -14,8 +14,8 @@ jobs:
steps:
- uses: subosito/flutter-action@v1
with:
channel: stable
flutter-version: '2.0.1'
channel: dev
flutter-version: '2.1.0-12.1.pre'
- name: Clone the repository.
uses: actions/checkout@v2
@ -27,9 +27,8 @@ jobs:
working-directory: ${{ github.workspace }}/scripts
run: ./update_flutter_version.sh
# TODO TLAD uncomment when no longer on master channel
# - name: Static analysis.
# run: flutter analyze
#
# - name: Unit tests.
# run: flutter test
- name: Static analysis.
run: flutter analyze
- name: Unit tests.
run: flutter test

View file

@ -16,8 +16,8 @@ jobs:
- uses: subosito/flutter-action@v1
with:
channel: stable
flutter-version: '2.0.1'
channel: dev
flutter-version: '2.1.0-12.1.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.0.1.sksl.json
flutter build appbundle --bundle-sksl-path shaders_2.0.1.sksl.json
flutter build apk --bundle-sksl-path shaders_2.1.0-12.1.pre.sksl.json
flutter build appbundle --bundle-sksl-path shaders_2.1.0-12.1.pre.sksl.json
rm $AVES_STORE_FILE
env:
AVES_STORE_FILE: ${{ github.workspace }}/key.jks

View file

@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file.
- Korean translation
### Changed
- Upgraded Flutter to stable v2.0.1
- Upgraded Flutter to dev v2.1.0-12.1.pre
### Fixed
- various TIFF decoding fixes

View file

@ -238,9 +238,7 @@ class AvesEntry {
bool get supportTiling => _supportedByBitmapRegionDecoder || mimeType == MimeTypes.tiff;
// as of panorama v0.3.1, the `Panorama` widget throws on initialization when the image is already resolved
// so we use tiles for panoramas as a workaround to not collide with the `panorama` package resolution
bool get useTiles => supportTiling && (width > 4096 || height > 4096 || is360);
bool get useTiles => supportTiling && (width > 4096 || height > 4096);
bool get isRaw => MimeTypes.rawImages.contains(mimeType);

View file

@ -84,12 +84,6 @@ class Constants {
licenseUrl: 'https://github.com/CaiJingLong/flutter_ijkplayer/blob/master/LICENSE',
sourceUrl: 'https://github.com/CaiJingLong/flutter_ijkplayer',
),
Dependency(
name: 'Geocoder',
license: 'MIT',
licenseUrl: 'https://github.com/aloisdeniel/flutter_geocoder/blob/master/LICENSE',
sourceUrl: 'https://github.com/aloisdeniel/flutter_geocoder',
),
Dependency(
name: 'Google API Availability',
license: 'MIT',

View file

@ -147,7 +147,7 @@ packages:
name: country_code
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.1"
version: "1.0.0"
coverage:
dependency: transitive
description:
@ -587,7 +587,7 @@ packages:
name: panorama
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.1"
version: "0.3.2"
path:
dependency: transitive
description:
@ -657,14 +657,14 @@ packages:
name: permission_handler
url: "https://pub.dartlang.org"
source: hosted
version: "6.0.1+1"
version: "6.1.0"
permission_handler_platform_interface:
dependency: transitive
description:
name: permission_handler_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.0+1"
version: "3.1.0"
petitparser:
dependency: transitive
description:
@ -858,7 +858,7 @@ packages:
name: sqflite_common
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0+1"
version: "2.0.0+2"
stack_trace:
dependency: transitive
description:
@ -1068,7 +1068,7 @@ packages:
name: win32
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.0.3"
wkt_parser:
dependency: transitive
description:

View file

@ -9,7 +9,7 @@ environment:
# TODO TLAD remove explicit `overlay_support` version when 1.2.0 is stable (1.0.5 uses deprecated `ancestorWidgetOfExactType`)
# TODO TLAD switch to Flutter dev/beta when possible, currently on master because of the following mess:
# TODO TLAD switch to Flutter stable when possible, currently on dev/beta because of the following mess:
# printing >=5.0.1 depends on pdf ^3.0.1, pdf >=3.0.1 depends on crypto ^3.0.0 and archive ^3.1.0
# but `flutter_driver` (shipped with Flutter) dependencies are too old in stable v2.0.1
# bump `crypto` and others - 2021/02/05 https://github.com/flutter/flutter/commit/bc1cf4945841ba5874f5262b8146d52750e7c11f
@ -17,12 +17,11 @@ environment:
# not null safe, as of 2021/03/09
# `charts_flutter` - https://github.com/google/charts/issues/579
# `country_code` - unmaintained?
# `decorated_icon` - https://github.com/benPesso/flutter_decorated_icon/issues/2
# `flutter_ijkplayer` - unmaintained?
# `flutter_map` - https://github.com/fleaflet/flutter_map/issues/829
# `latlong` - archived - migrate to maps_toolkit? cf https://github.com/fleaflet/flutter_map/pull/750
# `panorama` - no issue/PR
# `panorama` - https://github.com/zesage/panorama/issues/19
# `streams_channel` - unmaintained? - no issue/PR
dependencies:

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long