Skip to content

Commit c4e1147

Browse files
committed
upgrade version name(0.1.0 -> 0.1.1) code (3 -> 4)
1 parent f4d1b6d commit c4e1147

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change log
22

3+
### Version 0.1.1
4+
5+
- event线程区分敏捷线程池与其他线程池,减少资源冗余强制、内部稳定性以及消化能力与性能,
6+
- 添加自动重试接口,新增用户指定如果失败自动重试的次数
7+
38
### Version 0.1.0
49

510
- FileDownloadStatus 由`int`改为`byte`,该参数会频繁的在IPC时被拷贝

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,12 @@ Android 文件下载引擎,稳定、高效、简单易用
4848
在项目中引用:
4949

5050
```
51-
compile 'com.liulishuo.filedownloader:library:0.1.0'
51+
compile 'com.liulishuo.filedownloader:library:0.1.1'
5252
```
5353

54-
> 假如发现IDE没有自动绑定源码到拉下来的`.class`,请下载[library-0.1.0-sources.jar][library_last_source_jar],然后主动`Choose Sources...`进行绑定,这样方便阅读与debug。有任何问题,提issue即可。
55-
5654
#### 全局初始化在`Application.onCreate`
5755

5856
```
59-
6057
public XXApplication extends Application{
6158
6259
...
@@ -68,13 +65,11 @@ public XXApplication extends Application{
6865
6966
...
7067
}
71-
7268
```
7369

7470
#### 启动单任务下载
7571

7672
```
77-
7873
FileDownloader.getImpl().create(url)
7974
.setPath(path)
8075
.setListener(new FileDownloadListener() {
@@ -119,7 +114,6 @@ FileDownloader.getImpl().create(url)
119114
#### 启动多任务下载
120115

121116
```
122-
123117
final FileDownloadListener queueTarget = new FileDownloadListener() {
124118
@Override
125119
protected void pending(BaseDownloadTask task, int soFarBytes, int totalBytes) {
@@ -287,4 +281,3 @@ limitations under the License.
287281
[single_gif]: https://github.com/lingochamp/FileDownloader/raw/master/art/single.gif
288282
[bintray_svg]: https://api.bintray.com/packages/jacksgong/maven/FileDownloader/images/download.svg
289283
[bintray_url]: https://bintray.com/jacksgong/maven/FileDownloader/_latestVersion
290-
[library_last_source_jar]: https://bintray.com/artifact/download/jacksgong/maven/com/liulishuo/filedownloader/library/0.1.0/library-0.1.0-sources.jar

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=0.1.0
2-
VERSION_CODE=3
1+
VERSION_NAME=0.1.1
2+
VERSION_CODE=4
33
BUILD_TOOLS_VERSION=23.0.1
44
COMPILE_SDK_VERSION=23
55

0 commit comments

Comments
 (0)