File tree Expand file tree Collapse file tree 5 files changed +19
-3
lines changed Expand file tree Collapse file tree 5 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
> [ Change log in english] ( https://github.com/lingochamp/FileDownloader/blob/master/CHANGELOG.md )
4
4
5
+ ## Version 1.7.7
6
+
7
+ - 修复: FileDownloadThreadPool 可能会抛出 ArrayIndexOutOfBoundsException 和 ClassCastException。 closes #1258
8
+ - 修复: 从 1.6.x 升级到 1.7.x 后恢复之前的下载任务时出现 416 错误。
9
+ - 修复: Demo 中下载通知示例无法显示通知。closes #1224
10
+ - 修复: blockComplete 可能会在主线程中回调。closes #1069
11
+ - 修复: NoDatabaseImpl 中 SparseArray 非线程安全问题。closes #1225
12
+
5
13
## Version 1.7.6
6
14
7
15
_ 2019-02-20_
Original file line number Diff line number Diff line change 2
2
3
3
> [ 中文迭代日志] ( https://github.com/lingochamp/FileDownloader/blob/master/CHANGELOG-ZH.md )
4
4
5
+ ## Version 1.7.7
6
+
7
+ - Fix: FileDownloadThreadPool may throw ArrayIndexOutOfBoundsException & ClassCastException. closes #1258
8
+ - Fix: Resume a task may occur 416 problem after upgrading from 1.6.x to 1.7.x.
9
+ - Fix: Cannot show notification in demo. closes #1224
10
+ - Fix: The callback blockComplete may be invoked in main thread.closes #1069
11
+ - Fix: The thread unsafe problem of SparseArray in NoDatabaseImpl. closes #1225
12
+
5
13
## Version 1.7.6
6
14
7
15
_ 2019-02-20_
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ FileDownloader 1.7.6 已经在 demo 中处理了此问题。
86
86
在项目中引用:
87
87
88
88
``` groovy
89
- implementation 'com.liulishuo.filedownloader:library:1.7.6 '
89
+ implementation 'com.liulishuo.filedownloader:library:1.7.7 '
90
90
```
91
91
92
92
> 如果是eclipse引入jar包参考: [ 这里] ( https://github.com/lingochamp/FileDownloader/issues/212#issuecomment-232240415 )
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ FileDownloader is installed by adding the following dependency to your `build.gr
32
32
33
33
``` groovy
34
34
dependencies {
35
- implementation 'com.liulishuo.filedownloader:library:1.7.6 '
35
+ implementation 'com.liulishuo.filedownloader:library:1.7.7 '
36
36
}
37
37
```
38
38
Original file line number Diff line number Diff line change 1
- VERSION_NAME =1.7.7-SNAPSHOT
1
+ VERSION_NAME =1.7.7
2
2
BUILD_TOOLS_VERSION =28.0.3
3
3
COMPILE_SDK_VERSION =28
4
4
You can’t perform that action at this time.
0 commit comments