Browse Source

update version

cjl_macbook 6 years ago
parent
commit
9c8c72e488
3 changed files with 24 additions and 6 deletions
  1. 4
    0
      CHANGELOG.md
  2. 19
    5
      README.md
  3. 1
    1
      pubspec.yaml

+ 4
- 0
CHANGELOG.md View File

1
 # CHANGELOG
1
 # CHANGELOG
2
 
2
 
3
+## [0.1.7]
4
+
5
+add a badge delegate for asset
6
+
3
 ## [0.1.6] rollback photo_manager version
7
 ## [0.1.6] rollback photo_manager version
4
 
8
 
5
 sort asset by date
9
 sort asset by date

+ 19
- 5
README.md View File

12
 
12
 
13
 use flutter as ui
13
 use flutter as ui
14
 
14
 
15
-if you want to build custom ui, you just need api to make custom ui. to use [photo_manager](https://github.com/CaiJingLong/flutter_photo_manager)
15
+if you want to build custom ui, you just need api to make custom ui. to use [photo_manager](https://github.com/CaiJingLong/flutter_photo_manager) or fork the library to custom ui.
16
 
16
 
17
 ## screenshot
17
 ## screenshot
18
 
18
 
30
 
30
 
31
 ```yaml
31
 ```yaml
32
 dependencies:
32
 dependencies:
33
-  photo: ^0.1.6
33
+  photo: ^0.1.7
34
 ```
34
 ```
35
 
35
 
36
 ## import
36
 ## import
89
 
89
 
90
 ### glide
90
 ### glide
91
 
91
 
92
-android use glide to create image thumb, version is 4.8.0
92
+Android native use glide to create image thumb bytes, version is 4.8.0.
93
 
93
 
94
-if you other android library use the library, and version is not same, then you need edit your android project's build.gradle
94
+If your other android library use the library, and version is not same, then you need edit your android project's build.gradle.
95
 
95
 
96
-```gradle
96
+```groovy
97
 rootProject.allprojects {
97
 rootProject.allprojects {
98
 
98
 
99
     subprojects {
99
     subprojects {
131
 ### build error
131
 ### build error
132
 
132
 
133
 if you build error like include of non-modular header inside framework module, see [#10](https://github.com/CaiJingLong/flutter_photo/issues/10) or [so](https://stackoverflow.com/questions/27776497/include-of-non-modular-header-inside-framework-module)
133
 if you build error like include of non-modular header inside framework module, see [#10](https://github.com/CaiJingLong/flutter_photo/issues/10) or [so](https://stackoverflow.com/questions/27776497/include-of-non-modular-header-inside-framework-module)
134
+
135
+## thanks
136
+
137
+Part of the Android code comes from [debuggerx01](https://github.com/debuggerx01).
138
+
139
+## donate
140
+
141
+If my code helps you, and you're willing to buy me a cup of coffee.
142
+
143
+you can use [paypal](https://paypal.me/caijinglong)
144
+
145
+or scan my alipay
146
+
147
+<img width="200px"  src="https://raw.githubusercontent.com/CaiJingLong/asset_for_picgo/master/20181228213953.png"/>

+ 1
- 1
pubspec.yaml View File

1
 name: photo
1
 name: photo
2
 description: image picker, multi picker support video / icloud asset ,use flutter as ui, if you want to build custom ui,you just use photo_manager.
2
 description: image picker, multi picker support video / icloud asset ,use flutter as ui, if you want to build custom ui,you just use photo_manager.
3
-version: 0.1.6
3
+version: 0.1.7
4
 author: caijinglong<cjl_spy@163.com>
4
 author: caijinglong<cjl_spy@163.com>
5
 homepage: https://github.com/CaiJingLong/flutter_photo
5
 homepage: https://github.com/CaiJingLong/flutter_photo
6
 
6