Version 0.2.20

This commit is contained in:
FliegendeWurst 2021-05-13 13:30:05 +02:00
parent 29262ea188
commit 20b3b94327
4 changed files with 11 additions and 4 deletions

View File

@ -6,6 +6,11 @@ and this project loosely adheres to [Semantic Versioning](https://semver.org/spe
## [Unreleased]
## [0.2.20] - 2021-05-13
### Fixed
- HTTP/2 [`NO_ERROR`](https://docs.rs/h2/0.3.3/h2/struct.Reason.html#associatedconstant.NO_ERROR) handling (issue [#15])
- Status display no longer prints every path when running in a small terminal
## [0.2.19] - 2021-05-11
### Fixed
- Status display on Windows (issue [#14])
@ -103,6 +108,7 @@ and this project loosely adheres to [Semantic Versioning](https://semver.org/spe
## [0.1.0] - 2020-04-21
(undocumented)
[#15]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/issues/15
[#14]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/issues/14
[#13]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/issues/13
[#11]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/pull/11
@ -119,7 +125,8 @@ and this project loosely adheres to [Semantic Versioning](https://semver.org/spe
[@Craeckie]: https://github.com/Craeckie
[@funnym0nk3y]: https://github.com/funnym0nk3y
[@Ma27]: https://github.com/Ma27
[Unreleased]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.19...HEAD
[Unreleased]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.20...HEAD
[0.2.20]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.19...v0.2.20
[0.2.19]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.18...v0.2.19
[0.2.18]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.17...v0.2.18
[0.2.17]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.16...v0.2.17

2
Cargo.lock generated
View File

@ -4,7 +4,7 @@ version = 3
[[package]]
name = "KIT-ILIAS-downloader"
version = "0.2.19"
version = "0.2.20"
dependencies = [
"anyhow",
"atty",

View File

@ -1,6 +1,6 @@
[package]
name = "KIT-ILIAS-downloader"
version = "0.2.19"
version = "0.2.20"
authors = ["FliegendeWurst <2012gdwu@posteo.de>"]
license = "GPL-2.0-or-later"
edition = "2018"

View File

@ -1017,7 +1017,7 @@ impl ILIAS {
match result {
Ok(x) => return Ok(x),
Err(e) if attempt <= 3 && error_is_http2(&e) => {
warning!("encountered HTTP/2 NO_ERROR, retrying download..");
warning!("encountered HTTP/2 NO_ERROR, retrying HEAD request..");
continue
},
Err(e) => return Err(e)