Skip to content

Commit 2264967

Browse files
committed
chore: upgrade version name(1.6.7->1.6.8) code(58->59)
1 parent 9720747 commit 2264967

5 files changed

Lines changed: 28 additions & 4 deletions

File tree

CHANGELOG-ZH.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
> [ Change log in english](https://github.com/lingochamp/FileDownloader/blob/master/CHANGELOG.md)
44
5+
## Version 1.6.8
6+
7+
_2017-10-13_
8+
9+
#### 修复
10+
11+
- 修复: 修复断点续传失败, 由于Network线程中的`isAlive`不可靠导致的问题。 this closes #793
12+
- 修复: 修复断点续传失败,由于多个线程频繁的更新`status`并且`DownloadStatusCallback``sendMessage`无法保证有序性,导致下一次启动时最终状态是`process`无法断点续传(具体原因参看[这里](https://github.com/lingochamp/FileDownloader/issues/793#issuecomment-336370126))。 this refs #793, #764, #721, #769, #763, #761, #716
13+
- 修复: 不再由于任务已经结束依然存在需要派发的信息而让用户程序奔溃,因为这个对用户并不会照成影响。 this closes #562
14+
- 修复: 修复当用户频繁调用`pause`时,有可能出现`it can't take a snapshot for the task xxx`错误的问题。
15+
- 修复: 修复由于内部存储的任务对象大小存在问题,导致这样的对象任务每一次启动都必然会`416`的问题。
16+
517
## Version 1.6.7
618

719
_2017-10-12_

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
> [中文迭代日志](https://github.com/lingochamp/FileDownloader/blob/master/CHANGELOG-ZH.md)
44
5+
## Version 1.6.8
6+
7+
_2017-10-13_
8+
9+
#### Fix
10+
11+
- Fix: fix resume from breakpoint failed because of `isAlive` not guarantee on Network-thread. this closes #793
12+
- Fix: fix resume from breakpoint failed, because of multi-thread update status very frequently and Messenger can't guarantee order. this refs #793, #764, #721, #769, #763, #761, #716
13+
- Fix: do not crash user when a task has finished but the messenger still has messages, because it's fine for the user. this closes #562
14+
- Fix: fix the callback error of 'it can't take a snapshot for the task xxx' when a user invokes pause very frequently.
15+
- Fix: fix the case of process on the model is wrong which raise 416 each time when restarting it.
16+
517
## Version 1.6.7
618

719
_2017-10-12_

README-zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Android 文件下载引擎,稳定、高效、灵活、简单易用
6060
在项目中引用:
6161

6262
```groovy
63-
compile 'com.liulishuo.filedownloader:library:1.6.7'
63+
compile 'com.liulishuo.filedownloader:library:1.6.8'
6464
```
6565

6666
> 如果是eclipse引入jar包参考: [这里](https://github.com/lingochamp/FileDownloader/issues/212#issuecomment-232240415)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ FileDownloader is installed by adding the following dependency to your `build.gr
2626

2727
```groovy
2828
dependencies {
29-
compile 'com.liulishuo.filedownloader:library:1.6.7'
29+
compile 'com.liulishuo.filedownloader:library:1.6.8'
3030
}
3131
```
3232

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.6.7
2-
VERSION_CODE=58
1+
VERSION_NAME=1.6.8
2+
VERSION_CODE=59
33
BUILD_TOOLS_VERSION=25.0.0
44
COMPILE_SDK_VERSION=25
55

0 commit comments

Comments
 (0)