Commit message (Collapse) | Author | ||
---|---|---|---|
2024-10-19 | fix(yt_dlp/lib/progress_hook): Estimate `total_byte_size` better | Benedikt Peetz | |
This still is sort of weird, because the total byte size changes whilst downloading, but it is still immensely better than just putting a `0` there. | |||
2024-10-19 | fix(yt/cache): Don't try to delete video cache paths that don't exist anymore | Benedikt Peetz | |
This is a quite common problem, because the download dir (residing on `/tmp/yt` by default) is cleared with every reboot, leaving the stale `cache_path` entries in the database. If a user would than run `yt download --force` these already deleted `cache_paths` should not be deleted again. | |||
2024-10-19 | fix(yt/download): Create the download dir, if it does not exist | Benedikt Peetz | |
2024-10-14 | chore(version): v1.3.0 v1.3.0 | Benedikt Peetz | |
2024-10-14 | refactor(libmpv2): Include in the workspace | Benedikt Peetz | |
2024-10-14 | chore(treewide): Add missing copyright header | Benedikt Peetz | |
2024-10-14 | test(treewide): Fix, so they compile and ignore | Benedikt Peetz | |
The tests are just not in an ideal state right now. Running them via `cargo test` still works, but the `yt_dlp` test simply seem to deadlock? | |||
2024-10-14 | build(scripts/mkdb.sh): Update to use new sql schema path | Benedikt Peetz | |
2024-10-14 | style(treewide): Format | Benedikt Peetz | |
2024-10-14 | build(.envrc): Set `sqlx`'s `DATABASE_URL` variable | Benedikt Peetz | |
2024-10-14 | refactor(treewide): Conform to the clippy and rust lints | Benedikt Peetz | |
2024-10-14 | feat(unreachable): Init trait | Benedikt Peetz | |
2024-10-14 | refactor(treewide): Combine the separate crates in one workspace | Benedikt Peetz | |
2024-10-14 | build(Cargo.toml): Add further lints | Benedikt Peetz | |
2024-10-14 | feat(videos): Provide a consistent display for the `Video` struct | Benedikt Peetz | |
Before, `Video`s where colourized differently, just because the colourization was not standardized. It now is. | |||
2024-10-07 | fix(downloader): Don't display changed cache size on first run | Benedikt Peetz | |
Currently, the "Can't download video ..." message is directly followed by the "Current cache size has changed ...", when a full cache was hit before. This avoids this duplicated message, by update the cached cache size. | |||
2024-10-07 | style(python_update/raw_update.py): Format | Benedikt Peetz | |
2024-10-07 | feat(cli): Add a `add` command | Benedikt Peetz | |
This command allows adding URLs directly. Otherwise, the process would be: `yt subs add <URL>` -> `yt update` -> `yt subs remove <URL>` | |||
2024-10-07 | feat(cli): Also add a `dowa` command | Benedikt Peetz | |
This is the same as the `sedowa` command, with the difference that the `dowa` command does not include the select part. | |||
2024-10-07 | fix(cli): Avoid having to interleave `sedowa` with dashes | Benedikt Peetz | |
Otherwise the `sedowa` command would be `se-do-wa` | |||
2024-10-07 | fix(crates/yt_dlp/wrappers/info_json): Add further info.json fields | Benedikt Peetz | |
2024-10-07 | feat(crates/yt_dlp): Make saving the downloaded info.json configurable | Benedikt Peetz | |
This avoids having to recompile the application to save the downloaded info.json, and simply requires setting an environment variable. | |||
2024-10-07 | build(crates/libmpv2/update.sh): Correctly specify child update paths | Benedikt Peetz | |
2024-09-11 | chore(version): v1.2.1 v1.2.1 | Benedikt Peetz | |
2024-09-11 | build(treewide): Update | Benedikt Peetz | |
2024-08-25 | chore(version): v1.2.0 v1.2.0 | Benedikt Peetz | |
2024-08-25 | style(treewide): Reformat | Benedikt Peetz | |
2024-08-25 | refactor(treewide): Conform to `cargo clippy` | Benedikt Peetz | |
2024-08-25 | docs(yt_dlp/progress_hook): Add a note about the possibility to calculate ↵ | Benedikt Peetz | |
video sizes | |||
2024-08-25 | feat(cli): Support the common select -> download -> watch workflow | Benedikt Peetz | |
2024-08-25 | refactor(watch/playlist_handler): Init | Benedikt Peetz | |
This facilitates outsourcing the mpv playlist operations and overlaying them with an cache that provides the facility to convert for `playlist_entry_id`s to `ExtractorHash`es even after their corresponding video has been removed from the playlist. | |||
2024-08-25 | fix(storage/extractor_hash): Remove useless logs | Benedikt Peetz | |
2024-08-25 | fix(select/duration): Report parse errors, as the input is user specified | Benedikt Peetz | |
2024-08-25 | fix(downloader): Fallback to calculating the video size, before using ↵ | Benedikt Peetz | |
hardcoded value | |||
2024-08-25 | fix(downloader): Remove useless logs | Benedikt Peetz | |
2024-08-25 | fix(downloader): Be smarter, when checking for available cache | Benedikt Peetz | |
2024-08-25 | docs(cache): Add context to the cache_path deletion error | Benedikt Peetz | |
2024-08-25 | fix(yt_dlp/info_json): Accept further missing fields in the info_json | Benedikt Peetz | |
2024-08-25 | fix(yt_dlp/lib/hook): Don't print download progress, when debug is logged | Benedikt Peetz | |
This makes interpreting the debug output easier. | |||
2024-08-25 | build(update.sh): Correct path specifications and upgrade incompatible deps | Benedikt Peetz | |
2024-08-25 | feat(crates/bytes): Support decimal number input | Benedikt Peetz | |
2024-08-25 | build(treewide): Update | Benedikt Peetz | |
2024-08-24 | refactor(comments): Remove dead code | Benedikt Peetz | |
2024-08-24 | refactor(watch): Don't track the playlist, use the properties of `mpv` instead | Benedikt Peetz | |
2024-08-24 | feat(watch): Idle until new videos are available instead of exiting | Benedikt Peetz | |
2024-08-24 | fix(update_raw.py): Only return the needed fields to rust | Benedikt Peetz | |
This avoids a spurious failure, when the processed dict contains values, that can't be serialized as JSON (e.g. a LazyList). | |||
2024-08-24 | fix(storage/database): Already borrow the `VideoStatus::ALL` constant | Benedikt Peetz | |
2024-08-24 | fix(download): Don't fail hard, when a video file size can't be approximated | Benedikt Peetz | |
2024-08-24 | fix(select/display): Only align the status commands in color_display | Benedikt Peetz | |
2024-08-24 | fix(treewide): Always display bytes in a formatted way through `Bytes` | Benedikt Peetz | |