Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix(downloader): Don't display changed cache size on first run | Benedikt Peetz | 2024-10-07 |
| | | | | | | | 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. | ||
* | style(python_update/raw_update.py): Format | Benedikt Peetz | 2024-10-07 |
| | |||
* | feat(cli): Add a `add` command | Benedikt Peetz | 2024-10-07 |
| | | | | | | This command allows adding URLs directly. Otherwise, the process would be: `yt subs add <URL>` -> `yt update` -> `yt subs remove <URL>` | ||
* | feat(cli): Also add a `dowa` command | Benedikt Peetz | 2024-10-07 |
| | | | | | This is the same as the `sedowa` command, with the difference that the `dowa` command does not include the select part. | ||
* | fix(cli): Avoid having to interleave `sedowa` with dashes | Benedikt Peetz | 2024-10-07 |
| | | | | Otherwise the `sedowa` command would be `se-do-wa` | ||
* | 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 | 2024-10-07 |
| | | | | | This avoids having to recompile the application to save the downloaded info.json, and simply requires setting an environment variable. | ||
* | build(crates/libmpv2/update.sh): Correctly specify child update paths | Benedikt Peetz | 2024-10-07 |
| | |||
* | chore(version): v1.2.1 v1.2.1 | Benedikt Peetz | 2024-09-11 |
| | |||
* | build(treewide): Update | Benedikt Peetz | 2024-09-11 |
| | |||
* | 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 | 2024-08-25 |
| | | | | video sizes | ||
* | feat(cli): Support the common select -> download -> watch workflow | Benedikt Peetz | 2024-08-25 |
| | |||
* | refactor(watch/playlist_handler): Init | Benedikt Peetz | 2024-08-25 |
| | | | | | | | 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. | ||
* | 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 | 2024-08-25 |
| | | | | hardcoded value | ||
* | 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 | 2024-08-25 |
| | | | | This makes interpreting the debug output easier. | ||
* | 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-25 |
| | |||
* | 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 | 2024-08-24 |
| | | | | | This avoids a spurious failure, when the processed dict contains values, that can't be serialized as JSON (e.g. a LazyList). | ||
* | 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 | 2024-08-24 |
| | |||
* | feat(cli/selectCommand/file): Allow re-use of the previous selection file | Benedikt Peetz | 2024-08-24 |
| | |||
* | fix(cli/selectCommand): Explicitly set the aliases | Benedikt Peetz | 2024-08-24 |
| | | | | | Otherwise the `w` alias for `watch` would conflict with `watched` and thus not work. | ||
* | feat(cli/config): Show the currently active configuration | Benedikt Peetz | 2024-08-24 |
| | |||
* | fix(config): Check for wrong keys in the config file | Benedikt Peetz | 2024-08-24 |
| | |||
* | feat(videos): Allow limiting the number of videos to show | Benedikt Peetz | 2024-08-24 |
| | |||
* | fix(contrib/config.toml): Correct typo in config key | Benedikt Peetz | 2024-08-24 |
| | |||
* | feat(bytes): Add implementation for serde's `Serialize` | Benedikt Peetz | 2024-08-24 |
| | |||
* | feat(status): Also show the cache usage | Benedikt Peetz | 2024-08-24 |
| | |||
* | feat(downloader): Display the sizes, when waiting for a cache size reduction | Benedikt Peetz | 2024-08-24 |
| | |||
* | feat(watch/handlers): Add status messages to the script handlers | Benedikt Peetz | 2024-08-24 |
| | |||
* | test(storage/setters): Assert the video status in `set_video_watched` | Benedikt Peetz | 2024-08-24 |
| | |||
* | feat(select/cmds): Add a `watched` command | Benedikt Peetz | 2024-08-24 |
| | | | | | Otherwise, running `yt select file --done` would mark all your already wached stuff to be watched again. | ||
* | feat(select/display): Also show the video hash when color displaying it | Benedikt Peetz | 2024-08-24 |
| | | | | The hash can now be used on the commandline to access video information. | ||
* | fix(select/cmds): Accept the watch flags for every command | Benedikt Peetz | 2024-08-23 |
| | | | | | This makes it easier to change the status of a video, without having to painstakingly remove the flags too. | ||
* | feat(videos): Init | Benedikt Peetz | 2024-08-23 |
| |