about summary refs log tree commit diff stats
path: root/crates (follow)
Commit message (Collapse)AuthorAge
* chore(treewide): Add/Update the license headersBenedikt Peetz2025-02-22
|
* fix(crates/libmpv2/mpv): Log the setting of propertiesBenedikt Peetz2025-02-21
|
* chore(crates/yt_dlp/wrappers/info_json): Add further fieldsBenedikt Peetz2025-02-21
|
* chore(crates/libmpv2): Make `cargo clippy` happyBenedikt Peetz2025-02-21
|
* style(treewide): Re-formatBenedikt Peetz2025-02-16
|
* build(rustfmt.toml): AddBenedikt Peetz2025-02-16
|
* fix(crates/termsize): Remove all of `clippy`'s warningsBenedikt Peetz2025-02-16
|
* refactor(crates/fmt): Init forked `uu_fmt` libraryBenedikt Peetz2025-02-16
|
* chore(crates/termsize): VendorBenedikt Peetz2025-02-16
|
* fix(crates/yt_dlp/wrappers/info_json): Serialize the `InfoType`s with their ↵Benedikt Peetz2025-02-16
| | | | correct name
* fix(crates/yt_dlp/wrappers/info_json): Don't serialize `None` valuesBenedikt Peetz2025-02-16
| | | | This keeps the jsons, which we internally parse, shorter.
* feat(crates/yt_dlp/lib): Wrap `process_ie_result` functionBenedikt Peetz2025-02-16
|
* fix(crates/yt_dlp/lib): Actually resolve the `entries` generator objectBenedikt Peetz2025-02-16
| | | | Previously, we just ignored it.
* fix(crates/yt_dlp/lib): Swallow all error logs from yt_dlpBenedikt Peetz2025-02-16
| | | | | | These are already returned as `PythonError`s and thus often printed twice. As such, removing the python print gives the consumer more liberty of how to handle the error.
* fix(crates/yt_dlp/progress_hook): Print the progress to stderrBenedikt Peetz2025-02-16
|
* fix(crates/yt_dlp/error::PythonError): Add the python type as `kind`Benedikt Peetz2025-02-16
|
* fix(crates/libmpv2/Mpv::command): Correctly escape argumentsBenedikt Peetz2025-02-14
| | | | | This allows us to avoid all these ad-hoc command escaping `format!` invocations.
* chore(crates/yt_dlp/wrappers/info_json): Add further fieldsBenedikt Peetz2025-02-14
|
* test(crates/yt_dlp): Ignore tests that hang foreverBenedikt Peetz2025-02-14
|
* fix(crates/yt_dlp): Actually return errors instead of panicingBenedikt Peetz2025-02-14
|
* fix(crates/yt_dlp): Avoid printing the file extension in the progress displayBenedikt Peetz2025-02-14
| | | | The file extension should not be relevant for a user.
* fix(crates/libmpv2): Improve the error message for the `RawError`Benedikt Peetz2025-02-14
| | | | | Additionally, this commits migrates the error away from `thiserror`, simply because the crate is not needed at this scale.
* build(treewide): UpdateBenedikt Peetz2025-02-14
|
* fix(yt_dlp/wrappers/info_json): Add further fields to `RequestedDownloads`Benedikt Peetz2024-12-14
|
* build(treewide): UpdateBenedikt Peetz2024-12-14
|
* fix(yt_dlp/wrappers/info_json): Add missing fields to `Subtitle`Benedikt Peetz2024-12-14
|
* fix(yt_dlp/wrappers/info_json): Treat `Extractor` and `ExtractorKey` as StringsBenedikt Peetz2024-12-14
| | | | | There are too many possible extractors to mandate hard-coding them in a enumeration.
* build(treewide): Update dependenciesBenedikt Peetz2024-11-16
|
* build(treewide): UpdateBenedikt Peetz2024-11-04
|
* 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.
* style(treewide): FormatBenedikt Peetz2024-10-29
|
* chore(yt_dlp/wrapper/info_json): Add further structure fieldsBenedikt Peetz2024-10-29
|
* 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.
* refactor(libmpv2): Include in the workspaceBenedikt 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?
* refactor(treewide): Conform to the clippy and rust lintsBenedikt Peetz2024-10-14
|
* refactor(treewide): Combine the separate crates in one workspaceBenedikt Peetz2024-10-14
|
* 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
|
* build(treewide): UpdateBenedikt Peetz2024-09-11
|
* style(treewide): ReformatBenedikt Peetz2024-08-25
|
* refactor(treewide): Conform to `cargo clippy`Benedikt Peetz2024-08-25
|
* docs(yt_dlp/progress_hook): Add a note about the possibility to calculate ↵Benedikt Peetz2024-08-25
| | | | video sizes
* fix(yt_dlp/info_json): Accept further missing fields in the info_jsonBenedikt Peetz2024-08-25
|
* fix(yt_dlp/lib/hook): Don't print download progress, when debug is loggedBenedikt Peetz2024-08-25
| | | | This makes interpreting the debug output easier.
* build(update.sh): Correct path specifications and upgrade incompatible depsBenedikt Peetz2024-08-25
|
* feat(crates/bytes): Support decimal number inputBenedikt Peetz2024-08-25
|