diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-08-15 20:46:59 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-08-15 20:53:44 +0200 |
commit | b31bbdf6cf133f16752a7b0f78cbe9ae2fa667e2 (patch) | |
tree | 1b2c3a7b7cf02d3f48b64e8fb40f1f4e129592f0 /include | |
parent | 169057193c664f52267b818b2ff8bdcf73f21747 (diff) |
Add youtube recommendations based on unwatched related videos
Diffstat (limited to 'include')
-rw-r--r-- | include/QuickMedia.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/QuickMedia.hpp b/include/QuickMedia.hpp index 9bf2d0f..d055c1a 100644 --- a/include/QuickMedia.hpp +++ b/include/QuickMedia.hpp @@ -59,6 +59,7 @@ namespace QuickMedia { void plugin_get_watch_history(Plugin *plugin, BodyItems &history_items); Json::Value load_video_history_json(Plugin *plugin); + Json::Value load_recommended_json(Plugin *plugin); private: Display *disp; sf::RenderWindow window; @@ -96,5 +97,6 @@ namespace QuickMedia { bool use_system_mpv_config = false; // TODO: Save this to config file when switching modes ImageViewMode image_view_mode = ImageViewMode::SINGLE; + BodyItems related_media; }; }
\ No newline at end of file |