aboutsummaryrefslogtreecommitdiffstats
path: root/src/watch (unfollow)
Commit message (Collapse)Author
2024-10-14refactor(treewide): Combine the separate crates in one workspaceBenedikt Peetz
2024-08-25style(treewide): ReformatBenedikt Peetz
2024-08-25refactor(treewide): Conform to `cargo clippy`Benedikt 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-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-24feat(watch/handlers): Add status messages to the script handlersBenedikt Peetz
2024-08-23feat(watch/events): Add further understood script-messagesBenedikt Peetz
They make it possible to force check for new available videos and to remove the currently playing video from the playlist to free cache space (otherwise you would have to quit the whole playlist).
2024-08-23feat(treewide): Use a configuration fileBenedikt Peetz
This allows use to avoid duplication of default values in the codebase and obviously also facilitates changing these without having to re-compile.
2024-08-22fix(watch/events): Also mark a video inactive on the stop eventBenedikt Peetz