From e207eb3f06d8d48afcbeb27a7621d4ac9a7af8c0 Mon Sep 17 00:00:00 2001 From: FliegendeWurst <2012gdwu+github@posteo.de> Date: Mon, 1 Nov 2021 17:46:12 +0100 Subject: [PATCH] Version 0.2.24 --- CHANGELOG.md | 11 ++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- src/ilias/video.rs | 2 +- src/main.rs | 4 ++-- 5 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01ad8c4..21dd360 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## [0.2.24] - 2021-11-01 +### Added +- `--combine-videos` option to merge multiple video streams of the same lecture +- `--save-ilias-pages` option to also save the ILIAS overview pages of courses/folders + +### Fixed +- Downloading of lectures that consist of multiple streams + ## [0.2.23] - 2021-06-14 ### Added - Logging output of saved forum post attachments @@ -145,7 +153,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). [@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.23...HEAD +[Unreleased]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.24...HEAD +[0.2.23]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.23...v0.2.24 [0.2.23]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.22...v0.2.23 [0.2.22]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.21...v0.2.22 [0.2.21]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.20...v0.2.21 diff --git a/Cargo.lock b/Cargo.lock index 21d7e04..1a5949e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "KIT-ILIAS-downloader" -version = "0.2.23" +version = "0.2.24" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index 6fb97bd..39ee808 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "KIT-ILIAS-downloader" -version = "0.2.23" +version = "0.2.24" authors = ["FliegendeWurst <2012gdwu@posteo.de>"] license = "GPL-3.0-or-later" edition = "2018" diff --git a/src/ilias/video.rs b/src/ilias/video.rs index ca604a1..2437ddc 100644 --- a/src/ilias/video.rs +++ b/src/ilias/video.rs @@ -1,6 +1,6 @@ use std::{ path::{Path, PathBuf}, - process::{ExitStatus, Stdio}, + process::Stdio, sync::Arc, }; diff --git a/src/main.rs b/src/main.rs index 262d57b..1504428 100644 --- a/src/main.rs +++ b/src/main.rs @@ -70,7 +70,7 @@ async fn login(opt: Opt, ignore: Gitignore, course_names: HashMap Result<()> { while let Either::Left((task, _)) = future::select(rx.next(), future::ready(())).await { if let Some(task) = task { if let Err(e) = task.await { - error!(e) + error!(e); } } else { break; // channel is empty => all tasks are completed