about summary refs log tree commit diff stats
path: root/yt_dlp/.gitignore (unfollow)
Commit message (Collapse)Author
2024-10-14refactor(libmpv2): Include in the workspaceBenedikt Peetz
2024-10-14chore(treewide): Add missing copyright headerBenedikt Peetz
2024-10-14test(treewide): Fix, so they compile and ignoreBenedikt 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-14build(scripts/mkdb.sh): Update to use new sql schema pathBenedikt Peetz
2024-10-14style(treewide): FormatBenedikt Peetz
2024-10-14build(.envrc): Set `sqlx`'s `DATABASE_URL` variableBenedikt Peetz
2024-10-14refactor(treewide): Conform to the clippy and rust lintsBenedikt Peetz
2024-10-14feat(unreachable): Init traitBenedikt Peetz
2024-10-14refactor(treewide): Combine the separate crates in one workspaceBenedikt Peetz
2024-10-14build(Cargo.toml): Add further lintsBenedikt Peetz
2024-10-14feat(videos): Provide a consistent display for the `Video` structBenedikt Peetz
Before, `Video`s where colourized differently, just because the colourization was not standardized. It now is.
2024-10-07fix(downloader): Don't display changed cache size on first runBenedikt 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-07style(python_update/raw_update.py): FormatBenedikt Peetz
2024-10-07feat(cli): Add a `add` commandBenedikt Peetz
This command allows adding URLs directly. Otherwise, the process would be: `yt subs add <URL>` -> `yt update` -> `yt subs remove <URL>`
2024-10-07feat(cli): Also add a `dowa` commandBenedikt Peetz
This is the same as the `sedowa` command, with the difference that the `dowa` command does not include the select part.
2024-10-07fix(cli): Avoid having to interleave `sedowa` with dashesBenedikt Peetz
Otherwise the `sedowa` command would be `se-do-wa`
2024-10-07fix(crates/yt_dlp/wrappers/info_json): Add further info.json fieldsBenedikt Peetz
2024-10-07feat(crates/yt_dlp): Make saving the downloaded info.json configurableBenedikt Peetz
This avoids having to recompile the application to save the downloaded info.json, and simply requires setting an environment variable.
2024-10-07build(crates/libmpv2/update.sh): Correctly specify child update pathsBenedikt Peetz
2024-09-11chore(version): v1.2.1 v1.2.1Benedikt Peetz
2024-09-11build(treewide): UpdateBenedikt Peetz
2024-08-25chore(version): v1.2.0 v1.2.0Benedikt Peetz
2024-08-25style(treewide): ReformatBenedikt Peetz
2024-08-25refactor(treewide): Conform to `cargo clippy`Benedikt Peetz
2024-08-25docs(yt_dlp/progress_hook): Add a note about the possibility to calculate ↵Benedikt Peetz
video sizes
2024-08-25feat(cli): Support the common select -> download -> watch workflowBenedikt Peetz
2024-08-25refactor(watch/playlist_handler): InitBenedikt 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-25fix(storage/extractor_hash): Remove useless logsBenedikt Peetz
2024-08-25fix(select/duration): Report parse errors, as the input is user specifiedBenedikt Peetz
2024-08-25fix(downloader): Fallback to calculating the video size, before using ↵Benedikt Peetz
hardcoded value
2024-08-25fix(downloader): Remove useless logsBenedikt Peetz
2024-08-25fix(downloader): Be smarter, when checking for available cacheBenedikt Peetz
2024-08-25docs(cache): Add context to the cache_path deletion errorBenedikt Peetz
2024-08-25fix(yt_dlp/info_json): Accept further missing fields in the info_jsonBenedikt Peetz
2024-08-25fix(yt_dlp/lib/hook): Don't print download progress, when debug is loggedBenedikt Peetz
This makes interpreting the debug output easier.
2024-08-25build(update.sh): Correct path specifications and upgrade incompatible depsBenedikt Peetz
2024-08-25feat(crates/bytes): Support decimal number inputBenedikt Peetz
2024-08-25build(treewide): UpdateBenedikt Peetz
2024-08-24refactor(comments): Remove dead codeBenedikt Peetz
2024-08-24refactor(watch): Don't track the playlist, use the properties of `mpv` insteadBenedikt Peetz
2024-08-24feat(watch): Idle until new videos are available instead of exitingBenedikt Peetz
2024-08-24fix(update_raw.py): Only return the needed fields to rustBenedikt 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-24fix(storage/database): Already borrow the `VideoStatus::ALL` constantBenedikt Peetz
2024-08-24fix(download): Don't fail hard, when a video file size can't be approximatedBenedikt Peetz
2024-08-24fix(select/display): Only align the status commands in color_displayBenedikt Peetz
2024-08-24fix(treewide): Always display bytes in a formatted way through `Bytes`Benedikt Peetz
2024-08-24feat(cli/selectCommand/file): Allow re-use of the previous selection fileBenedikt Peetz
2024-08-24fix(cli/selectCommand): Explicitly set the aliasesBenedikt Peetz
Otherwise the `w` alias for `watch` would conflict with `watched` and thus not work.
2024-08-24feat(cli/config): Show the currently active configurationBenedikt Peetz
2024-08-24fix(config): Check for wrong keys in the config fileBenedikt Peetz