File tree 8 files changed +21
-16
lines changed
8 files changed +21
-16
lines changed Original file line number Diff line number Diff line change 46
46
- name : Run tests
47
47
run : flutter test
48
48
- name : Generate docs
49
- run : |
50
- dart pub global activate dartdoc
51
- dart pub global run dartdoc .
49
+ run : dart doc --dry-run .
52
50
53
51
test_iOS :
54
52
needs : analyze
Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ that can be found in the LICENSE file. -->
11
11
12
12
* None.*
13
13
14
+ ## 9.4.2
15
+
16
+ ### Improvements
17
+
18
+ - Add Traditional Chinese language text delegate. (Thanks to @Gasol )
19
+ - Improves the default sort conditions on Android.
20
+
14
21
## 9.4.1
15
22
16
23
### Improvements
@@ -169,7 +176,7 @@ that can be found in the LICENSE file. -->
169
176
170
177
### New features
171
178
172
- - Add Korean language support. (# 494 )
179
+ - Add Korean language support. (Thanks to @ LIMMIHEE )
173
180
174
181
### Improvements
175
182
@@ -223,7 +230,7 @@ that can be found in the LICENSE file. -->
223
230
### New features
224
231
225
232
- Sync all UI details from WeChat 8.3.x. (#458 )
226
- - Add Turkish language text delegate. (# 331 ).
233
+ - Add Turkish language text delegate. (Thanks to @ cevheri ).
227
234
- Allow to confirm 0 assets if there are selected assets previously. (#461 )
228
235
229
236
### Improvements
@@ -245,7 +252,7 @@ that can be found in the LICENSE file. -->
245
252
246
253
### New features
247
254
248
- - Add Vietnamese language text delegate. (# 424 ).
255
+ - Add Vietnamese language text delegate. (Thanks to @ nploi ).
249
256
250
257
### Improvements
251
258
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
3
zipStoreBase =GRADLE_USER_HOME
4
4
zipStorePath =wrapper/dists
5
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.2.1 -bin.zip
5
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.3 -bin.zip
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ pluginManagement {
20
20
plugins {
21
21
id " dev.flutter.flutter-plugin-loader" version " 1.0.0"
22
22
id " com.android.application" version " 8.2.2" apply false
23
- id " org.jetbrains.kotlin.android" version " 1.9.20 " apply false
23
+ id " org.jetbrains.kotlin.android" version " 1.9.21 " apply false
24
24
}
25
25
26
26
include " :app"
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 : 9.4.1+63
3
+ version : 9.4.2+64
4
4
publish_to : none
5
5
6
6
environment :
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ import 'package:provider/provider.dart';
13
13
typedef CNP <T extends ChangeNotifier ?> = ChangeNotifierProvider <T >;
14
14
15
15
/// {@template wechat_assets_picker.LoadingIndicatorBuilder}
16
- /// Build the loading indicator with the given [ isAssetsEmpty] .
17
- /// 根据给定的 [ isAssetsEmpty] 构建加载指示器。
16
+ /// Build the loading indicator with the given ` isAssetsEmpty` .
17
+ /// 根据给定的 ` isAssetsEmpty` 构建加载指示器。
18
18
/// {@endtemplate}
19
19
typedef LoadingIndicatorBuilder = Widget Function (
20
20
BuildContext context,
@@ -66,9 +66,9 @@ typedef AssetsChangeCallback<Path> = void Function(
66
66
);
67
67
68
68
/// {@template wechat_assets_picker.AssetsChangeRefreshPredicate}
69
- /// Whether assets changing should call refresh with the given [ call]
70
- /// and the current selected [ path] .
71
- /// 判断资源变化是否根据 [ call] 和当前选中的 [ path] 进行更新。
69
+ /// Whether assets changing should call refresh with the given ` call`
70
+ /// and the current selected ` path` .
71
+ /// 判断资源变化是否根据 ` call` 和当前选中的 ` path` 进行更新。
72
72
/// {@endtemplate}
73
73
typedef AssetsChangeRefreshPredicate <Path > = bool Function (
74
74
PermissionState permission,
Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ class DefaultAssetPickerProvider
352
352
)..merge (fog);
353
353
} else if (fog == null && Platform .isAndroid) {
354
354
options = AdvancedCustomFilter (
355
- orderBy: [OrderByItem .desc (CustomColumns .android.dateTaken )],
355
+ orderBy: [OrderByItem .desc (CustomColumns .android.modifiedDate )],
356
356
);
357
357
} else {
358
358
options = fog;
Original file line number Diff line number Diff line change 1
1
name : wechat_assets_picker
2
- version : 9.4.1
2
+ version : 9.4.2
3
3
description : |
4
4
An image picker (also with videos and audio)
5
5
for Flutter projects based on WeChat's UI,
You can’t perform that action at this time.
0 commit comments