Skip to content

Commit 2d51c42

Browse files
authored
⬆️ Allows extended_image: ^9.0.0 (#659)
Resolves #652
1 parent c6720cd commit 2d51c42

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ that can be found in the LICENSE file. -->
99
1010
## Unreleased
1111

12+
**None.**
13+
14+
## 9.4.0
15+
16+
### Improvements
17+
18+
- Allows `extended_image: ^9.0.0`.
19+
1220
### Fixes
1321

1422
- Allows assets changing when no path previously.

example/lib/l10n/gen/app_localizations.dart

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import 'package:intl/intl.dart' as intl;
88
import 'app_localizations_en.dart';
99
import 'app_localizations_zh.dart';
1010

11+
// ignore_for_file: type=lint
12+
1113
/// Callers can lookup localized strings with an instance of AppLocalizations
1214
/// returned by `AppLocalizations.of(context)`.
1315
///

example/lib/l10n/gen/app_localizations_en.dart

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import 'app_localizations.dart';
22

3+
// ignore_for_file: type=lint
4+
35
/// The translations for English (`en`).
46
class AppLocalizationsEn extends AppLocalizations {
57
AppLocalizationsEn([String locale = 'en']) : super(locale);

example/lib/l10n/gen/app_localizations_zh.dart

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import 'app_localizations.dart';
22

3+
// ignore_for_file: type=lint
4+
35
/// The translations for Chinese (`zh`).
46
class AppLocalizationsZh extends AppLocalizations {
57
AppLocalizationsZh([String locale = 'zh']) : super(locale);

example/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: wechat_assets_picker_demo
22
description: The demo project for the wechat_assets_picker package.
3-
version: 9.3.3+61
3+
version: 9.4.0+62
44
publish_to: none
55

66
environment:
@@ -17,11 +17,11 @@ dependencies:
1717
path: ../
1818
wechat_camera_picker: ^4.2.0
1919

20-
extended_image: ^8.3.0
20+
extended_image: any
2121
package_info_plus: '>=5.0.0 <9.0.0'
2222
path: ^1.8.0
2323
path_provider: ^2.0.15
24-
provider: ^6.0.2
24+
provider: any
2525

2626
dev_dependencies:
2727
flutter_lints: any

pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: wechat_assets_picker
2-
version: 9.3.3
2+
version: 9.4.0
33
description: |
44
An image picker (also with videos and audio)
55
for Flutter projects based on WeChat's UI,
@@ -24,7 +24,7 @@ dependencies:
2424

2525
wechat_picker_library: ^1.0.5
2626

27-
extended_image: ^8.3.0
27+
extended_image: '>=8.3.0 <10.0.0'
2828
photo_manager: ^3.5.0
2929
photo_manager_image_provider: ^2.2.0
3030
provider: ^6.0.5

0 commit comments

Comments
 (0)