File tree 6 files changed +31
-23
lines changed
6 files changed +31
-23
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ that can be found in the LICENSE file. -->
6
6
7
7
See the [ Migration Guide] ( guides/migration_guide.md ) for the details of breaking changes between versions.
8
8
9
+ ## 8.7.0
10
+
11
+ ### Breaking changes
12
+
13
+ - Migrate to Flutter 3.13, and drop supports for previous Flutter versions.
14
+
9
15
## 8.6.3
10
16
11
17
### Improvements
Original file line number Diff line number Diff line change @@ -133,12 +133,13 @@ Language: [English](README.md) | 中文
133
133
该插件仅保证能与 ** stable 渠道的 Flutter SDK** 配合使用。
134
134
我们不会为其他渠道的 Flutter SDK 做实时支持。
135
135
136
- | | 3.0.0 | 3.3.0 | 3.7.0 | 3.10.0 |
137
- | --------| :-----:| :-----:| :-----:| :------:|
138
- | 8.5.0+ | ❌ | ❌ | ❌ | ✅ |
139
- | 8.4.0+ | ❌ | ❌ | ✅ | ❌ |
140
- | 8.0.0+ | ✅ | ✅ | ❌ | ❌ |
141
- | 7.3.0+ | ✅ | ✅ | ❌ | ❌ |
136
+ | | 3.0 | 3.3 | 3.7 | 3.10 | ** 3.13** |
137
+ | --------| :---:| :---:| :---:| :----:| :--------:|
138
+ | 8.7.0+ | ❌ | ❌ | ❌ | ❌ | ✅ |
139
+ | 8.5.0+ | ❌ | ❌ | ❌ | ✅ | ❌ |
140
+ | 8.4.0+ | ❌ | ❌ | ✅ | ❌ | ❌ |
141
+ | 8.0.0+ | ✅ | ✅ | ❌ | ❌ | ❌ |
142
+ | 7.3.0+ | ✅ | ✅ | ❌ | ❌ | ❌ |
142
143
143
144
如果在 ` flutter pub get ` 时遇到了 ` resolve conflict ` 失败问题,
144
145
请使用 ` dependency_overrides ` 解决。
Original file line number Diff line number Diff line change @@ -140,12 +140,13 @@ before you have any questions.
140
140
The package only guarantees to be working on ** the stable version of Flutter** .
141
141
We won't update it in real-time to align with other channels of Flutter.
142
142
143
- | | 3.0.0 | 3.3.0 | 3.7.0 | 3.10.0 |
144
- | --------| :-----:| :-----:| :-----:| :------:|
145
- | 8.5.0+ | ❌ | ❌ | ❌ | ✅ |
146
- | 8.4.0+ | ❌ | ❌ | ✅ | ❌ |
147
- | 8.0.0+ | ✅ | ✅ | ❌ | ❌ |
148
- | 7.3.0+ | ✅ | ✅ | ❌ | ❌ |
143
+ | | 3.0 | 3.3 | 3.7 | 3.10 | ** 3.13** |
144
+ | --------| :---:| :---:| :---:| :----:| :--------:|
145
+ | 8.7.0+ | ❌ | ❌ | ❌ | ❌ | ✅ |
146
+ | 8.5.0+ | ❌ | ❌ | ❌ | ✅ | ❌ |
147
+ | 8.4.0+ | ❌ | ❌ | ✅ | ❌ | ❌ |
148
+ | 8.0.0+ | ✅ | ✅ | ❌ | ❌ | ❌ |
149
+ | 7.3.0+ | ✅ | ✅ | ❌ | ❌ | ❌ |
149
150
150
151
If you got a ` resolve conflict ` error when running ` flutter pub get ` ,
151
152
please use ` dependency_overrides ` to fix it.
Original file line number Diff line number Diff line change 1
1
name : wechat_assets_picker_demo
2
2
description : The demo project for the wechat_assets_picker package.
3
- version : 8.6.3+43
3
+ version : 8.7.0+44
4
4
publish_to : none
5
5
6
6
environment :
7
- sdk : ' >=3.0 .0'
8
- flutter : ' >=3.10 .0'
7
+ sdk : ' >=3.1 .0'
8
+ flutter : ' >=3.13 .0'
9
9
10
10
dependencies :
11
11
flutter :
@@ -15,9 +15,9 @@ dependencies:
15
15
16
16
wechat_assets_picker :
17
17
path : ../
18
- wechat_camera_picker : ^3.6 .0
18
+ wechat_camera_picker : ^4.0 .0
19
19
20
- extended_image : ^8.0 .0
20
+ extended_image : ^8.1 .0
21
21
package_info_plus : ^4.0.0
22
22
path : ^1.8.0
23
23
path_provider : ^2.0.15
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ class _VideoPageBuilderState extends State<VideoPageBuilder> {
195
195
child: DecoratedBox (
196
196
decoration: const BoxDecoration (
197
197
boxShadow: < BoxShadow > [
198
- BoxShadow (color: Colors .black12)
198
+ BoxShadow (color: Colors .black12),
199
199
],
200
200
shape: BoxShape .circle,
201
201
),
Original file line number Diff line number Diff line change 1
1
name : wechat_assets_picker
2
- version : 8.6.3
2
+ version : 8.7.0
3
3
description : |
4
4
An image picker (also with videos and audio)
5
5
for Flutter projects based on WeChat's UI,
@@ -9,15 +9,15 @@ repository: https://github.com/fluttercandies/flutter_wechat_assets_picker
9
9
issue_tracker : https://github.com/fluttercandies/flutter_wechat_assets_picker/issues
10
10
11
11
environment :
12
- sdk : ^3.0 .0
13
- flutter : ' >=3.10 .0'
12
+ sdk : ^3.1 .0
13
+ flutter : ' >=3.13 .0'
14
14
15
15
dependencies :
16
16
flutter :
17
17
sdk : flutter
18
18
19
- extended_image : ^8.0 .0
20
- photo_manager : ^2.6 .0
19
+ extended_image : ^8.1 .0
20
+ photo_manager : ^2.7 .0
21
21
provider : ^6.0.5
22
22
video_player : ^2.7.0
23
23
You can’t perform that action at this time.
0 commit comments