| Commit message (Collapse) | Author | ||
|---|---|---|---|
| 2025-06-13 | feat({yt_dlp,yt}): Migrate from pyo3 to rustpython | Benedikt Peetz | |
| That allows us to avoid cpython's GIL and gives us full ability to leverage async/concurrent code to speed up python operations. I have also taken the opportunity to change the `InfoJson` struct to an untyped json value, as that is what it actually is. | |||
| 2025-03-21 | chore(yt_dlp/wrappers/info_json): Add additional missing field | Benedikt Peetz | |
| 2025-03-21 | refactor(yt_dlp): Remove the unneeded `async` from the public functions | Benedikt Peetz | |
| 2025-02-22 | chore(treewide): Add/Update the license headers | Benedikt Peetz | |
| 2025-02-21 | chore(crates/yt_dlp/wrappers/info_json): Add further fields | Benedikt Peetz | |
| 2025-02-16 | style(treewide): Re-format | Benedikt Peetz | |
| 2025-02-16 | fix(crates/yt_dlp/wrappers/info_json): Serialize the `InfoType`s with their ↵ | Benedikt Peetz | |
| correct name | |||
| 2025-02-16 | fix(crates/yt_dlp/wrappers/info_json): Don't serialize `None` values | Benedikt Peetz | |
| This keeps the jsons, which we internally parse, shorter. | |||
| 2025-02-16 | feat(crates/yt_dlp/lib): Wrap `process_ie_result` function | Benedikt Peetz | |
| 2025-02-16 | fix(crates/yt_dlp/lib): Actually resolve the `entries` generator object | Benedikt Peetz | |
| Previously, we just ignored it. | |||
| 2025-02-16 | fix(crates/yt_dlp/lib): Swallow all error logs from yt_dlp | Benedikt Peetz | |
| 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. | |||
| 2025-02-16 | fix(crates/yt_dlp/progress_hook): Print the progress to stderr | Benedikt Peetz | |
| 2025-02-16 | fix(crates/yt_dlp/error::PythonError): Add the python type as `kind` | Benedikt Peetz | |
| 2025-02-14 | chore(crates/yt_dlp/wrappers/info_json): Add further fields | Benedikt Peetz | |
| 2025-02-14 | test(crates/yt_dlp): Ignore tests that hang forever | Benedikt Peetz | |
| 2025-02-14 | fix(crates/yt_dlp): Actually return errors instead of panicing | Benedikt Peetz | |
| 2025-02-14 | fix(crates/yt_dlp): Avoid printing the file extension in the progress display | Benedikt Peetz | |
| The file extension should not be relevant for a user. | |||
| 2024-12-14 | fix(yt_dlp/wrappers/info_json): Add further fields to `RequestedDownloads` | Benedikt Peetz | |
| 2024-12-14 | fix(yt_dlp/wrappers/info_json): Add missing fields to `Subtitle` | Benedikt Peetz | |
| 2024-12-14 | fix(yt_dlp/wrappers/info_json): Treat `Extractor` and `ExtractorKey` as Strings | Benedikt Peetz | |
| There are too many possible extractors to mandate hard-coding them in a enumeration. | |||
| 2024-11-16 | build(treewide): Update dependencies | Benedikt Peetz | |
| 2024-11-04 | fix(yt_dlp/progress_hook): Mark estimates as such | Benedikt Peetz | |
| Currently, the wildly changing estimate numbers are not differentiated from the valid numbers. | |||
| 2024-10-29 | style(treewide): Format | Benedikt Peetz | |
| 2024-10-29 | chore(yt_dlp/wrapper/info_json): Add further structure fields | Benedikt Peetz | |
| 2024-10-29 | fix(yt_dlp/lib/progress_hook): Avoid overriding previous messages | Benedikt Peetz | |
| Otherwise, the hook would simply cancel the already printed line. | |||
| 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-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 | refactor(treewide): Conform to the clippy and rust lints | Benedikt Peetz | |
| 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-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 | 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-23 | refactor(yt_dlp): Also move the `crates` subdirectory | Benedikt Peetz | |
