Skip to content

Commit

Permalink
chore: release 1.7.5 for support non-utf-8 encoding for 'Content-Disp…
Browse files Browse the repository at this point in the history
…osition', cover the case of wrong response code from aliyun and fix on Android O background-start-service issue
  • Loading branch information
Jacksgong committed Aug 3, 2018
1 parent 2c89c86 commit bf334a4
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

> [ Change log in english](https://github.com/lingochamp/FileDownloader/blob/master/CHANGELOG.md)
## Version 1.7.5

_2018-08-03_

#### 修复

- 修复: 修复在Android O的系统上,当应用不在前台,并且不在白名单的时候,由于下载服务无法通过`JobScheduler`来执行下载事务,只能通过`startService`,引起 "Not allowed to start service Intent..." 的问题。 closes #1078

#### Enhance

- 提升实用性: 支持`Content-Disposition`中的非UTF-8编码。 closes #1057
- 提高实用性: 处理了阿里云服务错误反馈`416`的情况`。 closes #1050

## Version 1.7.4

_2018-05-19_
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

> [中文迭代日志](https://github.com/lingochamp/FileDownloader/blob/master/CHANGELOG-ZH.md)
## Version 1.7.5

_2018-08-03_

#### Fix

- Fix: fix raise "Not allowed to start service Intent..." issue when starting DownloadService on Android O and the application isn't on the foreground and also not on the whitelist, because we can't use `JobScheduler` to handle the download affair. closes #1078

#### Enhance

- Improve Practicability: support character set and the launguage encoding for `Content-Disposition`. closes #1057
- Improve Practicability: cover the error response code 416 from aliyun repo. closes #1050

## Version 1.7.4

_2018-05-19_
Expand Down
2 changes: 1 addition & 1 deletion README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Android 文件下载引擎,稳定、高效、灵活、简单易用
在项目中引用:

```groovy
implementation 'com.liulishuo.filedownloader:library:1.7.4'
implementation 'com.liulishuo.filedownloader:library:1.7.5'
```

> 如果是eclipse引入jar包参考: [这里](https://github.com/lingochamp/FileDownloader/issues/212#issuecomment-232240415)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FileDownloader is installed by adding the following dependency to your `build.gr

```groovy
dependencies {
implementation 'com.liulishuo.filedownloader:library:1.7.4'
implementation 'com.liulishuo.filedownloader:library:1.7.5'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1.7.5-SNAPSHOT
VERSION_NAME=1.7.5
BUILD_TOOLS_VERSION=27.0.3
COMPILE_SDK_VERSION=27

Expand Down

0 comments on commit bf334a4

Please sign in to comment.