Skip to content

Commit

Permalink
⬆️ Allows extended_image: ^9.0.0 (#659)
Browse files Browse the repository at this point in the history
Resolves #652
  • Loading branch information
AlexV525 authored Nov 8, 2024
1 parent c6720cd commit 2d51c42
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ that can be found in the LICENSE file. -->
## Unreleased

**None.**

## 9.4.0

### Improvements

- Allows `extended_image: ^9.0.0`.

### Fixes

- Allows assets changing when no path previously.
Expand Down
2 changes: 2 additions & 0 deletions example/lib/l10n/gen/app_localizations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import 'package:intl/intl.dart' as intl;
import 'app_localizations_en.dart';
import 'app_localizations_zh.dart';

// ignore_for_file: type=lint

/// Callers can lookup localized strings with an instance of AppLocalizations
/// returned by `AppLocalizations.of(context)`.
///
Expand Down
2 changes: 2 additions & 0 deletions example/lib/l10n/gen/app_localizations_en.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import 'app_localizations.dart';

// ignore_for_file: type=lint

/// The translations for English (`en`).
class AppLocalizationsEn extends AppLocalizations {
AppLocalizationsEn([String locale = 'en']) : super(locale);
Expand Down
2 changes: 2 additions & 0 deletions example/lib/l10n/gen/app_localizations_zh.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import 'app_localizations.dart';

// ignore_for_file: type=lint

/// The translations for Chinese (`zh`).
class AppLocalizationsZh extends AppLocalizations {
AppLocalizationsZh([String locale = 'zh']) : super(locale);
Expand Down
6 changes: 3 additions & 3 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: wechat_assets_picker_demo
description: The demo project for the wechat_assets_picker package.
version: 9.3.3+61
version: 9.4.0+62
publish_to: none

environment:
Expand All @@ -17,11 +17,11 @@ dependencies:
path: ../
wechat_camera_picker: ^4.2.0

extended_image: ^8.3.0
extended_image: any
package_info_plus: '>=5.0.0 <9.0.0'
path: ^1.8.0
path_provider: ^2.0.15
provider: ^6.0.2
provider: any

dev_dependencies:
flutter_lints: any
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: wechat_assets_picker
version: 9.3.3
version: 9.4.0
description: |
An image picker (also with videos and audio)
for Flutter projects based on WeChat's UI,
Expand All @@ -24,7 +24,7 @@ dependencies:

wechat_picker_library: ^1.0.5

extended_image: ^8.3.0
extended_image: '>=8.3.0 <10.0.0'
photo_manager: ^3.5.0
photo_manager_image_provider: ^2.2.0
provider: ^6.0.5
Expand Down

0 comments on commit 2d51c42

Please sign in to comment.