Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6218f2f

Browse files
committedMar 13, 2018
chore: upgrade version name(1.7.1->1.7.2) code(62->63)
1 parent 37d54d3 commit 6218f2f

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed
 

‎CHANGELOG-ZH.md

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

33
> [ Change log in english](https://github.com/lingochamp/FileDownloader/blob/master/CHANGELOG.md)
44
5+
## Version 1.7.2
6+
7+
_2018-03-14_
8+
9+
#### 修复
10+
11+
- 修复: 将原本所需要下载的文件大小为`0`的时候,回调错误,修改为直接回调完成。closes #789
12+
- 修复: 修复当存在另外一个正在下载的相同临时文件路径的任务时,数据库中存在数据未被删除的问题。closes #953
13+
- 修复: 修复在重试后重试之前下载的进度丢失的问题。closes #958
14+
- 修复: 修复当试探连接没有提供`Content-Range`字段,但是提供`Content-Length`字段时,计算出的总长度始终是`1`的问题。
15+
16+
#### 性能与提高
17+
18+
- 提高实用性: 当在响应头中不存在`Content-Length`字段时,使用隐藏在`Content-Range`中的内容大小数据。 cloese #968
19+
520
## Version 1.7.1
621

722
_2018-02-05_

‎CHANGELOG.md

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

33
> [中文迭代日志](https://github.com/lingochamp/FileDownloader/blob/master/CHANGELOG-ZH.md)
44
5+
## Version 1.7.2
6+
7+
_2018-03-14_
8+
9+
#### Fix
10+
11+
- Fix: do not download callback error when the instance length of the task is zero, callback complete directly instead. close #789
12+
- Fix: fix the temp duplicate data on the database isn't removed when there are another running task with the same temp file path. closes #953
13+
- Fix: the data lost when retry. cloese #958
14+
- Fix: fix the instance length is always `1` when the `Content-Range` isn't provided but the `Content-Length` is provided on the trial connection.
15+
16+
#### Enhancement
17+
18+
- Improve Practicability: using the content length value on the `Content-Range` field when there isn't `Content-Length` field found on the response header. closes #968
19+
520
## Version 1.7.1
621

722
_2018-02-05_

‎README-zh.md

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

6161
```groovy
62-
compile 'com.liulishuo.filedownloader:library:1.7.1'
62+
compile 'com.liulishuo.filedownloader:library:1.7.2'
6363
```
6464

6565
> 如果是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.7.1'
29+
compile 'com.liulishuo.filedownloader:library:1.7.2'
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.7.1
2-
VERSION_CODE=62
1+
VERSION_NAME=1.7.2
2+
VERSION_CODE=63
33
BUILD_TOOLS_VERSION=26.0.2
44
COMPILE_SDK_VERSION=26
55

0 commit comments

Comments
 (0)
Failed to load comments.