forked from fluttercandies/flutter_wechat_assets_picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/fluttercandies/flutter_wech…
…at_assets_picker * 'main' of https://github.com/fluttercandies/flutter_wechat_assets_picker: docs: add Gasol as a contributor for translation (fluttercandies#669) Add Traditional Chinese localization (fluttercandies#667) 🚀 Support matching script and country code of locales with the text delegate (fluttercandies#668) 💡 Refreshes tests copyright 🔖 9.4.1 🔖 9.4.1 Fix selecting when reached the max asset limit in the preview (fluttercandies#648) 🚸 Improves the default sort conditions (fluttercandies#662) ⬆️ Allows `extended_image: ^9.0.0` (fluttercandies#659) 🐛 Allows assets changing when no path previously (fluttercandies#656) 👷 Try to run on minimum SDK requirement (fluttercandies#643) 🔖 9.3.2 🚀 Adapt the image provider file type getter (fluttercandies#638) 🔖 9.3.1 🐛 Fix UI layouts (fluttercandies#634)
- Loading branch information
Showing
26 changed files
with
385 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,13 +12,17 @@ on: | |
paths-ignore: | ||
- "**.md" | ||
|
||
env: | ||
MINIMUM_FLUTTER_VERSION: '3.16.0' | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze on ${{ matrix.os }} | ||
name: Analyze on ${{ matrix.os }} with ${{ matrix.flutter-version }} Flutter | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
flutter-version: [ min, latest ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
|
@@ -28,6 +32,7 @@ jobs: | |
- uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
flutter-version: ${{ matrix.flutter-version == 'min' && env.MINIMUM_FLUTTER_VERSION || '' }} | ||
- name: Log Dart/Flutter versions | ||
run: | | ||
dart --version | ||
|
@@ -47,8 +52,11 @@ jobs: | |
test_iOS: | ||
needs: analyze | ||
name: Test iOS | ||
name: Test iOS with ${{ matrix.flutter-version }} Flutter | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
flutter-version: [ min, latest ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
|
@@ -58,15 +66,19 @@ jobs: | |
- uses: subosito/[email protected] | ||
with: | ||
channel: stable | ||
flutter-version: ${{ matrix.flutter-version == 'min' && env.MINIMUM_FLUTTER_VERSION || '' }} | ||
- run: dart --version | ||
- run: flutter --version | ||
- run: flutter pub get | ||
- run: cd example; flutter build ios --no-codesign | ||
|
||
test_android: | ||
needs: analyze | ||
name: Test Android | ||
name: Test Android with ${{ matrix.flutter-version }} Flutter | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
flutter-version: [ min, latest ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
|
@@ -76,6 +88,7 @@ jobs: | |
- uses: subosito/[email protected] | ||
with: | ||
channel: stable | ||
flutter-version: ${{ matrix.flutter-version == 'min' && env.MINIMUM_FLUTTER_VERSION || '' }} | ||
- run: dart --version | ||
- run: flutter --version | ||
- run: flutter pub get | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.