about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAge
* chore(version): v1.3.3 v1.3.3 primeBenedikt Peetz12 days
|
* build(treewide): Update dependenciesBenedikt Peetz12 days
|
* fix(yt/select/add): Avoid crash on adding a videoBenedikt Peetz2024-11-08
| | | | | | Currently, it expects the video to be already added to the database, as it requires looking up it's hash from it. Re-ordering the statements is not the cleanest solution, but it works.
* chore(version): v1.3.2 v1.3.2Benedikt Peetz2024-11-04
|
* chore(tree-sitter-yts): Add copyright headersBenedikt Peetz2024-11-04
|
* build(update.sh): Improve recursivenessBenedikt Peetz2024-11-04
|
* fix(yt/select/cmds): Fix future incompatibilityBenedikt Peetz2024-11-04
| | | | In rust edition 2024 this type can no longer be auto-injected.
* build(treewide): UpdateBenedikt Peetz2024-11-04
|
* fix(tree-sitter-yts/grammar.js): Add missing commandsBenedikt Peetz2024-11-04
|
* build(tree-sitter-yts): Include in buildsBenedikt Peetz2024-11-04
|
* refactor(tree-sitter-yts): Move in treeBenedikt Peetz2024-11-04
|
* style(yt/main): Use consistent use qualificationsBenedikt Peetz2024-11-04
|
* build(cog.toml): Format *before* checking the formattingBenedikt Peetz2024-11-04
| | | | | Otherwise, the formatting step would always be useless, as everything should already be formatted.
* fix(yt_dlp/progress_hook): Mark estimates as suchBenedikt Peetz2024-11-04
| | | | | Currently, the wildly changing estimate numbers are not differentiated from the valid numbers.
* fix(yt/download): Only print changed bytes sizes, on changed stringBenedikt Peetz2024-11-04
| | | | | | 2_000_000_000 and 2_000_000_001 cache sizes are not the same, but will both print out "1.86 GiB". Obviously, notifying the user about this change is rather counter-productive.
* fix(yt/download): Don't trust the `cache_path` attributeBenedikt Peetz2024-11-02
|
* chore(version): v1.3.1 v1.3.1Benedikt Peetz2024-10-29
|
* style(treewide): FormatBenedikt Peetz2024-10-29
|
* fix(yt/videos/display): Also replace '“' in titlesBenedikt Peetz2024-10-29
|
* chore(yt_dlp/wrapper/info_json): Add further structure fieldsBenedikt Peetz2024-10-29
|
* fix(yt/watch): Refine the warning on empty queueBenedikt Peetz2024-10-29
| | | | | This avoids spamming the terminal with "Queue is empty" messages, when one warning would have been enough.
* fix(yt_dlp/lib/progress_hook): Avoid overriding previous messagesBenedikt Peetz2024-10-29
| | | | Otherwise, the hook would simply cancel the already printed line.
* fix(yt_dlp/lib/progress_hook): Estimate `total_byte_size` betterBenedikt Peetz2024-10-19
| | | | | | 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.
* fix(yt/cache): Don't try to delete video cache paths that don't exist anymoreBenedikt Peetz2024-10-19
| | | | | | | | 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.
* fix(yt/download): Create the download dir, if it does not existBenedikt Peetz2024-10-19
|
* chore(version): v1.3.0 v1.3.0Benedikt Peetz2024-10-14
|
* refactor(libmpv2): Include in the workspaceBenedikt Peetz2024-10-14
|
* chore(treewide): Add missing copyright headerBenedikt Peetz2024-10-14
|
* test(treewide): Fix, so they compile and ignoreBenedikt Peetz2024-10-14
| | | | | 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?
* build(scripts/mkdb.sh): Update to use new sql schema pathBenedikt Peetz2024-10-14
|
* style(treewide): FormatBenedikt Peetz2024-10-14
|
* build(.envrc): Set `sqlx`'s `DATABASE_URL` variableBenedikt Peetz2024-10-14
|
* refactor(treewide): Conform to the clippy and rust lintsBenedikt Peetz2024-10-14
|
* feat(unreachable): Init traitBenedikt Peetz2024-10-14
|
* refactor(treewide): Combine the separate crates in one workspaceBenedikt Peetz2024-10-14
|
* build(Cargo.toml): Add further lintsBenedikt Peetz2024-10-14
|
* feat(videos): Provide a consistent display for the `Video` structBenedikt Peetz2024-10-14
| | | | | Before, `Video`s where colourized differently, just because the colourization was not standardized. It now is.
* fix(downloader): Don't display changed cache size on first runBenedikt Peetz2024-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): FormatBenedikt Peetz2024-10-07
|
* feat(cli): Add a `add` commandBenedikt Peetz2024-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` commandBenedikt Peetz2024-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 dashesBenedikt Peetz2024-10-07
| | | | Otherwise the `sedowa` command would be `se-do-wa`
* fix(crates/yt_dlp/wrappers/info_json): Add further info.json fieldsBenedikt Peetz2024-10-07
|
* feat(crates/yt_dlp): Make saving the downloaded info.json configurableBenedikt Peetz2024-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 pathsBenedikt Peetz2024-10-07
|
* chore(version): v1.2.1 v1.2.1Benedikt Peetz2024-09-11
|
* build(treewide): UpdateBenedikt Peetz2024-09-11
|
* chore(version): v1.2.0 v1.2.0Benedikt Peetz2024-08-25
|
* style(treewide): ReformatBenedikt Peetz2024-08-25
|
* refactor(treewide): Conform to `cargo clippy`Benedikt Peetz2024-08-25
|