From f9a7d35c6d6ea27e4f6482a0866094d0defa70a2 Mon Sep 17 00:00:00 2001 From: 0x5f3 <104367919+0x5f3@users.noreply.github.com> Date: Sun, 18 Feb 2024 00:07:12 +0000 Subject: [PATCH 1/2] =?UTF-8?q?split=20Suggested=20collection=20into=20sep?= =?UTF-8?q?arate=20suggested|unwatched|watched=20=E2=80=A6=20(#622)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * split Suggested collection into separate suggested|unwatched|watched collections; add documentary genre to Genre popular|top collections; Genre top|popular now filter documentary genre from genres; refactor code; various bug fixes * Update 010_suggested.yml --- 0x5f3/MOVIES.md | 42 +- 0x5f3/README.md | 19 +- 0x5f3/SHOWS.md | 26 +- 0x5f3/_debug.yml | 2 +- 0x5f3/_maintenance.yml | 150 ++ 0x5f3/{movie.yml => _movie.yml} | 56 +- 0x5f3/{show.yml => _show.yml} | 56 +- .../movie/010_suggested.yml} | 243 +-- 0x5f3/collections/movie/020_unwatched.yml | 83 + 0x5f3/collections/movie/030_watched.yml | 118 ++ .../movie/040_seasonal.yml} | 61 +- .../movie/050_parental.yml} | 28 +- .../movie/050_parental_sync.yml} | 12 +- .../movie/060_documentary.yml} | 32 +- .../movie/070_standup.yml} | 38 +- .../movie/080_year_top.yml} | 123 +- .../movie/090_decades_top.yml} | 196 +-- .../movie/100_awards.yml} | 110 +- .../movie/110_genre_popular.yml} | 210 ++- .../movie/120_genre_top.yml} | 238 +-- .../movie/130_subgenre_top.yml} | 1486 +++++++++-------- .../movie/140_studio.yml} | 156 +- .../movie/200_collections.yml} | 10 +- 0x5f3/collections/movie/_debug.yml | 1 + 0x5f3/collections/movie/_maintenance.yml | 18 + .../movie/_radarr.yml} | 6 +- .../show/010_suggested.yml} | 241 +-- 0x5f3/collections/show/020_unwatched.yml | 84 + 0x5f3/collections/show/030_watched.yml | 118 ++ .../show/040_parental.yml} | 20 +- .../show/040_parental_sync.yml} | 12 +- .../show/050_documentary.yml} | 30 +- .../show/060_year_top.yml} | 122 +- .../show/070_decades_top.yml} | 249 ++- .../show/080_awards.yml} | 58 +- .../show/090_genre_popular.yml} | 198 ++- .../show/100_genre_top.yml} | 234 +-- .../show/110_network.yml} | 96 +- 0x5f3/collections/show/_debug.yml | 1 + 0x5f3/collections/show/_maintenance.yml | 18 + .../show/_sonarr.yml} | 6 +- 0x5f3/config.yml | 132 +- 0x5f3/metadata/movie/0_debug.yml | 1 - 0x5f3/metadata/show/0_debug.yml | 1 - 44 files changed, 2865 insertions(+), 2276 deletions(-) create mode 100644 0x5f3/_maintenance.yml rename 0x5f3/{movie.yml => _movie.yml} (55%) rename 0x5f3/{show.yml => _show.yml} (56%) rename 0x5f3/{metadata/movie/1_suggested.yml => collections/movie/010_suggested.yml} (54%) create mode 100644 0x5f3/collections/movie/020_unwatched.yml create mode 100644 0x5f3/collections/movie/030_watched.yml rename 0x5f3/{metadata/movie/1_seasonal.yml => collections/movie/040_seasonal.yml} (60%) rename 0x5f3/{metadata/movie/1_parental.yml => collections/movie/050_parental.yml} (77%) rename 0x5f3/{metadata/movie/1_parental_sync.yml => collections/movie/050_parental_sync.yml} (79%) rename 0x5f3/{metadata/movie/1_documentary.yml => collections/movie/060_documentary.yml} (75%) rename 0x5f3/{metadata/movie/1_standup.yml => collections/movie/070_standup.yml} (77%) rename 0x5f3/{metadata/movie/2_year_top.yml => collections/movie/080_year_top.yml} (77%) rename 0x5f3/{metadata/movie/3_decades_top.yml => collections/movie/090_decades_top.yml} (73%) rename 0x5f3/{metadata/movie/4_awards.yml => collections/movie/100_awards.yml} (71%) rename 0x5f3/{metadata/movie/5_genre_popular.yml => collections/movie/110_genre_popular.yml} (59%) rename 0x5f3/{metadata/movie/6_genre_top.yml => collections/movie/120_genre_top.yml} (63%) rename 0x5f3/{metadata/movie/7_subgenre_top.yml => collections/movie/130_subgenre_top.yml} (73%) rename 0x5f3/{metadata/movie/8_studio.yml => collections/movie/140_studio.yml} (67%) rename 0x5f3/{metadata/movie/9_collections.yml => collections/movie/200_collections.yml} (53%) create mode 100644 0x5f3/collections/movie/_debug.yml create mode 100644 0x5f3/collections/movie/_maintenance.yml rename 0x5f3/{metadata/movie/0_radarr.yml => collections/movie/_radarr.yml} (64%) rename 0x5f3/{metadata/show/1_suggested.yml => collections/show/010_suggested.yml} (53%) create mode 100644 0x5f3/collections/show/020_unwatched.yml create mode 100644 0x5f3/collections/show/030_watched.yml rename 0x5f3/{metadata/show/1_parental.yml => collections/show/040_parental.yml} (79%) rename 0x5f3/{metadata/show/1_parental_sync.yml => collections/show/040_parental_sync.yml} (79%) rename 0x5f3/{metadata/show/1_documentary.yml => collections/show/050_documentary.yml} (76%) rename 0x5f3/{metadata/show/2_year_top.yml => collections/show/060_year_top.yml} (77%) rename 0x5f3/{metadata/show/3_decades_top.yml => collections/show/070_decades_top.yml} (74%) rename 0x5f3/{metadata/show/4_awards.yml => collections/show/080_awards.yml} (68%) rename 0x5f3/{metadata/show/5_genre_popular.yml => collections/show/090_genre_popular.yml} (57%) rename 0x5f3/{metadata/show/6_genre_top.yml => collections/show/100_genre_top.yml} (65%) rename 0x5f3/{metadata/show/7_network.yml => collections/show/110_network.yml} (85%) create mode 100644 0x5f3/collections/show/_debug.yml create mode 100644 0x5f3/collections/show/_maintenance.yml rename 0x5f3/{metadata/show/0_sonarr.yml => collections/show/_sonarr.yml} (65%) delete mode 100644 0x5f3/metadata/movie/0_debug.yml delete mode 100644 0x5f3/metadata/show/0_debug.yml diff --git a/0x5f3/MOVIES.md b/0x5f3/MOVIES.md index ddd7fe8..8140c4b 100644 --- a/0x5f3/MOVIES.md +++ b/0x5f3/MOVIES.md @@ -1,5 +1,5 @@ ``` -- 1_suggested.yml +- _suggested.yml - Random Movies (English) - Recently Added Movies (English) - Recently Released Movies (English) @@ -8,17 +8,21 @@ - Trending Movies (https://mdblist.com/lists/archivist/movie-trending) - Popular Movies (https://mdblist.com/lists/archivist/movie-popular) - Top Rated Movies (https://mdblist.com/lists/archivist/movie-top-rated) + +- _unwatched.yml - Unwatched: Random Movies - Unwatched: Recommended Movies - Unwatched: Suggested Movies - Unwatched: Popular Movies - Unwatched: Top Rated Movies + +- _watched.yml - Most Watched Daily (https://trakt.tv/movies/watched/daily) - Most Watched Weekly (https://trakt.tv/movies/watched/weekly) - Most Watched Monthly (https://trakt.tv/movies/watched/monthly) - Most Watched Yearly (https://trakt.tv/movies/watched/yearly) -- 1_seasonal.yml +- _seasonal.yml - Valentine's Day Movies (02/13-02/15) - St. Patrick's Day Movies (03/16-03-18) - Easter Moviews (03/22-04/25) @@ -27,28 +31,28 @@ - Christmas Movies (12/01-12/31) - New Year's Eve Movies (12/26-01-02) -- 1_parental.yml +- _parental.yml - Parental: All (https://mdblist.com/lists/archivist/list-parental) - Parental: Random - Parental: Recently Added - Parental: Recently Released - Parental: Top Rated -- 1_documentary.yml +- _documentary.yml - Documentaries: All - Documentaries: Random - Documentaries: Recently Added - Documentaries: Recently Released - Documentaries: Top Rated -- 1_standup.yml +- _standup.yml - Stand-up: All (https://mdblist.com/lists/archivist/list-standup) - Stand-up: Random - Stand-up: Recently Added - Stand-up: Recently Released - Stand-up: Top Rated -- 2_year_top.yml +- _year_top.yml - Top Rated of 2024 - Top Rated of 2023 - Top Rated of 2022 @@ -65,7 +69,7 @@ - Top Rated of 2011 - Top Rated of 2010 -- 3_decades_top.yml +- _decades_top.yml - Top Rated of the 2020s - Top Rated of the 2010s - Top Rated of the 2000s @@ -76,7 +80,7 @@ - Top Rated of the 1950s - Top Rated of the 1940s -- 4_awards.yml +- _awards.yml - Oscar Winners - Oscar Nominees - Golden Globes Winners @@ -91,12 +95,13 @@ - Spirit Awards Winners - Razzie Winners -- 5_genre_popular.yml +- _genre_popular.yml - Popular in Action - Popular in Adventure - Popular in Animation - Popular in Biography - Popular in Comedy + - Popular in Documentary - Popular in Drama - Popular in Family - Popular in Fantasy @@ -112,12 +117,13 @@ - Popular in War - Popular in Western -- 6_genre_top.yml +- _genre_top.yml - Top Rated in Action - Top Rated in Adventure - Top Rated in Animation - Top Rated in Biography - Top Rated in Comedy + - Top Rated in Documentary - Top Rated in Drama - Top Rated in Family - Top Rated in Fantasy @@ -140,7 +146,7 @@ - Top Rated in Anti-Hero - Top Rated in Apocalypse - Top Rated in Artifical Intelligence - - Top Rated in Assasins + - Top Rated in Assassins - Top Rated in Betrayal - Top Rated in Black Comedy - Top Rated in Boxing @@ -150,14 +156,17 @@ - Top Rated in Chick-Flick - Top Rated in Comics - Top Rated in Coming Of Age + - Top Rated in Conspiracy - Top Rated in Con-Artists - Top Rated in Cop - Top Rated in Costume Drama - Top Rated in Courtroom - Top Rated in Cyberpunk - Top Rated in Dark Fantasy + - Top Rated in Demonic - Top Rated in Detective - - Top Rated in Distaster + - Top Rated in Dinosaurs + - Top Rated in Disaster - Top Rated in Dragons - Top Rated in Dystopian - Top Rated in Epics @@ -192,6 +201,7 @@ - Top Rated in Pandemic - Top Rated in Paranormal - Top Rated in Period Drama + - Top Rated in Petrolhead - Top Rated in Philosophical - Top Rated in Political - Top Rated in Post-Apocalyptic @@ -228,12 +238,12 @@ - Top Rated in Vampires - Top Rated in Video Game - Top Rated in Werewolves - - Top Rated in Whodunit + - Top Rated in Whodunit? - Top Rated in Wizardry & Witchcraft - Top Rated in World War - Top Rated in Zombies -- 8_studio.yml +- _studio.yml - Columbia - Criterion - DC Entertainment @@ -254,6 +264,6 @@ - Walt Disney - Warner Bros -- 9_collections.yml +- _collections.yml - TMDb Collections -``` +``` \ No newline at end of file diff --git a/0x5f3/README.md b/0x5f3/README.md index 310648f..10c61ed 100644 --- a/0x5f3/README.md +++ b/0x5f3/README.md @@ -1,6 +1,8 @@ #### This config will populate the following: ``` -- !Suggested (random, recently added|released, recommended, suggested, trending, popular, top-rated, unwatched, most watched) +- !Suggested (random, recently added|released, recommended, suggested, trending, popular, top-rated) +- Unwatched (random, recommended, suggested, popular, top-rated) +- !Watched (most watched daily|weekly|monthly|yearly) - !Seasonal * - Parental - Documentaries @@ -26,19 +28,24 @@ ``` #### Install: ``` -git clone -b remote https://github.com/0x5f3/pmm.config config +git clone https://github.com/0x5f3/pmm.config config ``` #### Usage: ###### The initial process for populating collections: ``` -docker run --rm -it -v ./config:/config meisnate12/plex-meta-manager --config config/config.yml --collection-only --run --ignore-schedules +docker run --rm -it -v ./config:/config meisnate12/plex-meta-manager:nightly --config config/config.yml --run --ignore-schedules ``` - ###### Following a successful initial run: ``` -docker run --rm -it -v ./config:/config meisnate12/plex-meta-manager --config config/config.yml --collection-only --run +docker run --rm -it -v ./config:/config meisnate12/plex-meta-manager:nightly --config config/config.yml --run ``` +###### Notes: +`` +The parental configuration adds a 'Parental' label to their collections and all items included. The label is capable of being used with 'Allow Only Labels' in a user's restriction settings. +`` +# +# ###### A successful run will result in something similar to this: ![movies](https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/_/_movies.png) -![shows](https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/_/_shows.png) \ No newline at end of file +![shows](https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/_/_shows.png) diff --git a/0x5f3/SHOWS.md b/0x5f3/SHOWS.md index d6d38da..baded74 100644 --- a/0x5f3/SHOWS.md +++ b/0x5f3/SHOWS.md @@ -1,5 +1,5 @@ ``` -- 1_suggested.yml +- _suggested.yml - Random TV shows (English) - Recently Added TV shows (English) - Recently Released TV shows (English) @@ -8,31 +8,35 @@ - Trending TV shows (https://mdblist.com/lists/archivist/tv-trending) - Popular TV shows (https://mdblist.com/lists/archivist/tv-popular) - Top Rated TV shows (https://mdblist.com/lists/archivist/tv-top-rated) + +- _unwatched.yml - Unwatched: Random TV shows - Unwatched: Recommended TV shows - Unwatched: Suggested TV shows - Unwatched: Popular TV shows - Unwatched: Top Rated TV shows + +- _watched.yml - Most Watched Daily (https://trakt.tv/shows/watched/daily) - Most Watched Weekly (https://trakt.tv/shows/watched/weekly) - Most Watched Monthly (https://trakt.tv/shows/watched/monthly) - Most Watched Yearly (https://trakt.tv/shows/watched/yearly) -- 1_parental.yml +- _parental.yml - Parental: All (https://mdblist.com/lists/archivist/list-parental) - Parental: Random - Parental: Recently Added - Parental: Recently Released - Parental: Top Rated -- 1_documentary.yml +- _documentary.yml - Documentaries: All - Documentaries: Random - Documentaries: Recently Added - Documentaries: Recently Released - Documentaries: Top Rated -- 2_awards.yml +- _awards.yml - Emmy Award Winners - Emmy Award Nominees - Golden Globes Winners @@ -40,7 +44,7 @@ - BAFTA Winners - Critics Choice Award Winners -- 3_year_top.yml +- _year_top.yml - Top Rated of 2024 - Top Rated of 2023 - Top Rated of 2022 @@ -57,7 +61,7 @@ - Top Rated of 2011 - Top Rated of 2010 -- 4_decades_top.yml +- _decades_top.yml - Top Rated of the 2020s - Top Rated of the 2010s - Top Rated of the 2000s @@ -68,12 +72,13 @@ - Top Rated of the 1950s - Top Rated of the 1940s -- 5_genre_popular.yml +- _genre_popular.yml - Popular in Action - Popular in Adventure - Popular in Animation - Popular in Biography - Popular in Comedy + - Popular in Documentary - Popular in Drama - Popular in Family - Popular in Fantasy @@ -89,12 +94,13 @@ - Popular in War - Popular in Western -- 6_genre_top.yml +- _genre_top.yml - Top Rated in Action - Top Rated in Adventure - Top Rated in Animation - Top Rated in Biography - Top Rated in Comedy + - Top Rated in Documentary - Top Rated in Drama - Top Rated in Family - Top Rated in Fantasy @@ -110,7 +116,7 @@ - Top Rated in War - Top Rated in Western -- 7_network.yml +- _network.yml - A&E - ABC - Adult Swim @@ -155,4 +161,4 @@ - TLC - TNT - YouTube -``` +``` \ No newline at end of file diff --git a/0x5f3/_debug.yml b/0x5f3/_debug.yml index 7ab3201..2d478be 100644 --- a/0x5f3/_debug.yml +++ b/0x5f3/_debug.yml @@ -5,7 +5,7 @@ libraries: library_type: movie collection_files: - file: config/metadata/movie/0_debug.yml - TV Shows: + TV: library_type: show collection_files: - file: config/metadata/show/0_debug.yml diff --git a/0x5f3/_maintenance.yml b/0x5f3/_maintenance.yml new file mode 100644 index 0000000..981b94e --- /dev/null +++ b/0x5f3/_maintenance.yml @@ -0,0 +1,150 @@ +## _maintenance.yml + +libraries: + Movies: + library_type: movie + operations: + - schedule: daily + delete_unmanaged_collections: false +# - schedule: weekly(wednesday) +# mass_audience_rating_update: mdb_average +# mass_critic_rating_update: mdb_metacritic +# mass_user_rating_update: imdb +# mass_content_rating_update: mdb +# mass_genre_update: imdb +# - schedule: weekly(wednesday) +# mass_poster_update: +# source: tmdb +# seasons: false +# episodes: false + collection_files: + - file: config/collections/movie/_maintenance.yml + TV: + library_type: show + operations: + - schedule: daily + delete_unmanaged_collections: false +# - schedule: weekly(thursday) +# mass_audience_rating_update: mdb_average +# mass_critic_rating_update: mdb_metacritic +# mass_user_rating_update: imdb +# mass_content_rating_update: mdb +# mass_genre_update: imdb +# - schedule: weekly(thursday) +# mass_poster_update: +# source: tmdb +# seasons: true +# episodes: false + collection_files: + - file: config/collections/show/_maintenance.yml +# KIDS: +# library_type: show +# operations: +# - schedule: daily +# delete_unmanaged_collections: false +# - schedule: weekly(friday) +# mass_audience_rating_update: mdb_average +# mass_critic_rating_update: mdb_metacritic +# mass_user_rating_update: imdb +# mass_content_rating_update: mdb +# mass_genre_update: imdb +# - schedule: weekly(friday) +# mass_poster_update: +# collection_files: +# - file: config/collections/show/_maintenance.yml +settings: + assets_for_all: false + asset_depth: 0 + asset_directory: + asset_folders: false + cache: true + cache_expiration: 60 + check_nightly: false + create_asset_folders: false + custom_repo: + default_collection_order: + delete_below_minimum: false + delete_not_scheduled: false + dimensional_asset_rename: false + download_url_assets: true + ignore_ids: + ignore_imdb_ids: + item_refresh: false + item_refresh_delay: 0 + minimum_items: 1 + missing_only_released: false + only_filter_missing: false + playlist_exclude_users: + playlist_report: true + playlist_sync_to_users: all + prioritize_assets: false + released_missing_only: false + run_again_delay: 5 + run_order: + - collections + - metadata + - operations + - overlays + save_missing: false + show_asset_not_needed: true + show_filtered: false + show_missing: false + show_missing_assets: true + show_missing_episode_assets: false + show_missing_season_assets: false + show_options: false + show_unconfigured: true + show_unmanaged: false + sync_mode: append + tvdb_language: default + verify_ssl: false +plex: + url: + token: + timeout: 180 + clean_bundles: false + empty_trash: false + optimize: false +radarr: + url: + token: + add_missing: false + add_existing: false + root_folder_path: + monitor: true + availability: announced + quality_profile: + tag: + search: false + radarr_path: + plex_path: + upgrade_existing: false +sonarr: + url: + token: + add_missing: false + add_existing: false + root_folder_path: + monitor: all + quality_profile: + language_profile: English + series_type: standard + season_folder: true + tag: + search: false + cutoff_search: false + sonarr_path: + plex_path: + upgrade_existing: false +tmdb: + apikey: + language: en + cache_expiration: 60 + region: +mdblist: + apikey: + cache_expiration: 60 +trakt: + client_id: + client_secret: + pin: diff --git a/0x5f3/movie.yml b/0x5f3/_movie.yml similarity index 55% rename from 0x5f3/movie.yml rename to 0x5f3/_movie.yml index 9a20442..a1b55ca 100644 --- a/0x5f3/movie.yml +++ b/0x5f3/_movie.yml @@ -1,32 +1,36 @@ -## movie.yml +## _movie.yml libraries: Movies: library_type: movie operations: - delete_unmanaged_collections: false + - schedule: daily + delete_unmanaged_collections: false collection_files: -# - file: config/metadata/movie/0_radarr.yml - - file: config/metadata/movie/1_suggested.yml - - file: config/metadata/movie/1_seasonal.yml - - file: config/metadata/movie/2_year_top.yml - schedule: weekly(monday) - - file: config/metadata/movie/3_decades_top.yml - schedule: weekly(tuesday) -# - file: config/metadata/movie/4_awards.yml -# schedule: weekly(wednesday) - - file: config/metadata/movie/5_genre_popular.yml - - file: config/metadata/movie/6_genre_top.yml - schedule: weekly(thursday) -# - file: config/metadata/movie/7_subgenre_top.yml -# - file: config/metadata/movie/8_studio.yml -# schedule: weekly(wednesday) -# - file: config/metadata/movie/9_collections.yml -# schedule: weekly(sunday) -# - file: config/metadata/movie/1_parental_sync.yml -# - file: config/metadata/movie/1_parental.yml -# - file: config/metadata/movie/1_documentary.yml -# - file: config/metadata/movie/1_standup.yml +# - file: config/collections/movie/_maintenance.yml +# - file: config/collections/movie/_radarr.yml + - file: config/collections/movie/010_suggested.yml +# - file: config/collections/movie/020_unwatched.yml + - file: config/collections/movie/030_watched.yml + - file: config/collections/movie/040_seasonal.yml + - file: config/collections/movie/080_year_top.yml + - schedule: weekly(monday) + - file: config/collections/movie/090_decades_top.yml + - schedule: weekly(tuesday) +# - file: config/collections/movie/100_awards.yml +# - schedule: weekly(wednesday) + - file: config/collections/movie/110_genre_popular.yml + - file: config/collections/movie/120_genre_top.yml + - schedule: weekly(thursday) +# - file: config/collections/movie/130_subgenre_top.yml +# - file: config/collections/movie/140_studio.yml +# - schedule: weekly(wednesday) +# - file: config/collections/movie/200_collections.yml +# - schedule: weekly(sunday) +# - file: config/collections/movie/050_parental_sync.yml +# - file: config/collections/movie/050_parental.yml +# - file: config/collections/movie/060_documentary.yml +# - file: config/collections/movie/070_standup.yml settings: assets_for_all: false asset_depth: 0 @@ -45,7 +49,7 @@ settings: ignore_ids: ignore_imdb_ids: item_refresh: false - item_refresh_delay: 3 + item_refresh_delay: 0 minimum_items: 5 missing_only_released: false only_filter_missing: false @@ -56,9 +60,9 @@ settings: released_missing_only: false run_again_delay: 5 run_order: - - operations - - metadata - collections + - metadata + - operations - overlays save_missing: false show_asset_not_needed: true diff --git a/0x5f3/show.yml b/0x5f3/_show.yml similarity index 56% rename from 0x5f3/show.yml rename to 0x5f3/_show.yml index cd9b475..65e2e69 100644 --- a/0x5f3/show.yml +++ b/0x5f3/_show.yml @@ -1,34 +1,40 @@ -## show.yml +## _show.yml libraries: TV: library_type: show operations: - delete_unmanaged_collections: false + - schedule: daily + delete_unmanaged_collections: false collection_files: -# - file: config/metadata/show/0_sonarr.yml - - file: config/metadata/show/1_suggested.yml - - file: config/metadata/show/2_year_top.yml - schedule: weekly(monday) - - file: config/metadata/show/3_decades_top.yml - schedule: weekly(wednesday) -# - file: config/metadata/show/4_awards.yml -# schedule: weekly(thursday) - - file: config/metadata/show/5_genre_popular.yml - - file: config/metadata/show/6_genre_top.yml - schedule: weekly(saturday) -# - file: config/metadata/show/7_network.yml -# - file: config/metadata/show/1_parental_sync.yml -# - file: config/metadata/show/1_parental.yml -# - file: config/metadata/show/1_documentary.yml +# - file: config/collections/show/_maintenance.yml +# - file: config/collections/show/_sonarr.yml + - file: config/collections/show/010_suggested.yml +# - file: config/collections/show/020_unwatched.yml + - file: config/collections/show/030_watched.yml + - file: config/collections/show/060_year_top.yml + - schedule: weekly(monday) + - file: config/collections/show/070_decades_top.yml + - schedule: weekly(wednesday) +# - file: config/collections/show/080_awards.yml +# - schedule: weekly(thursday) + - file: config/collections/show/090_genre_popular.yml + - file: config/collections/show/100_genre_top.yml + - schedule: weekly(saturday) +# - file: config/collections/show/110_network.yml +# - file: config/collections/show/040_parental_sync.yml +# - file: config/collections/show/040_parental.yml +# - file: config/collections/show/050_documentary.yml # KIDS: # library_type: show # operations: -# delete_unmanaged_collections: false +# - schedule: daily +# delete_unmanaged_collections: false # collection_files: -# - file: config/metadata/show/0_sonarr.yml -# - file: config/metadata/show/1_parental_sync.yml -# - file: config/metadata/show/1_parental.yml +# - file: config/collections/show/_maintenance.yml +# - file: config/collections/show/_sonarr.yml +# - file: config/collections/show/040_parental_sync.yml +# - file: config/collections/show/040_parental.yml settings: assets_for_all: false asset_depth: 0 @@ -47,8 +53,8 @@ settings: ignore_ids: ignore_imdb_ids: item_refresh: false - item_refresh_delay: 3 - minimum_items: 1 + item_refresh_delay: 0 + minimum_items: 2 missing_only_released: false only_filter_missing: false playlist_exclude_users: @@ -58,9 +64,9 @@ settings: released_missing_only: false run_again_delay: 5 run_order: - - operations - - metadata - collections + - metadata + - operations - overlays save_missing: false show_asset_not_needed: true diff --git a/0x5f3/metadata/movie/1_suggested.yml b/0x5f3/collections/movie/010_suggested.yml similarity index 54% rename from 0x5f3/metadata/movie/1_suggested.yml rename to 0x5f3/collections/movie/010_suggested.yml index 3df874b..e3d6af2 100644 --- a/0x5f3/metadata/movie/1_suggested.yml +++ b/0x5f3/collections/movie/010_suggested.yml @@ -1,10 +1,10 @@ -## 1_suggested.yml +## _suggested.yml templates: plex: collection_mode: hide delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+010_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -13,7 +13,7 @@ templates: trakt: collection_mode: hide delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+010_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -65,7 +65,7 @@ templates: collection_mode: hide collection_order: custom delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+010_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -84,7 +84,7 @@ templates: collection_mode: hide collection_order: custom delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+010_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -104,58 +104,61 @@ templates: collections: "Random Movies": - summary: "Random selection of movies" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_random.png - visible_library: true + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_random.png schedule: daily + summary: "Random selection of movies" + visible_library: true template: { name: plex, - num: 0 + num: "0" } smart_filter: any: audio_language: English, english - sort_by: random limit: 250 + sort_by: random "Recently Added Movies": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_recently-added.png + schedule: daily summary: "Recently added movies" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_recently-added.png visible_home: true - visible_shared: true visible_library: true + visible_shared: true template: { name: plex, - num: 0 + num: "1" } smart_filter: any: audio_language: English, english - sort_by: added.desc limit: 200 + sort_by: added.desc "Recently Released Movies": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_recently-released.png + schedule: daily summary: "Recently released movies" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_recently-released.png visible_library: true template: { name: plex, - num: 0 + num: "2" } smart_filter: any: audio_language: English, english - sort_by: release.desc limit: 200 + sort_by: release.desc "Recommended Movies": collection_order: alpha + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_recommended.png + schedule: daily summary: "Based on personally favourited movies" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_recommended.png template: { name: letterboxd, - num: 0 # letterboxd_list_extra_01: "https://letterboxd.com/########/list/movie-recommendations", + num: "3" } trakt_userlist: - userlist: favorites @@ -163,213 +166,81 @@ collections: "Suggested Movies": collection_order: alpha + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_suggested.png + schedule: daily summary: "Based on watched and favourited movies" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_suggested.png template: { name: trakt, - num: 0 + num: "4" +# num: "4", # trakt_list_extra_01: "https://trakt.tv/users/########/lists/movie-recommendations-couchmoney-tv", # trakt_list_extra_02: "https://trakt.tv/users/########/lists/movies-based-on-recently-watched-couchmoney-tv" } trakt_chart: - chart: recommended - time_period: daily - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 5 + time_period: daily - chart: recommended - time_perid: weekly - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 10 + time_period: weekly - chart: recommended - time_period: monthly - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 25 + time_period: monthly - chart: recommended - time_period: yearly - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 50 + time_period: yearly - chart: recommended - time_period: all - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 200 + time_period: all "Trending Movies": - summary: "Movies trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_trending.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_trending.png schedule: daily + summary: "Movies trending across the internet" template: { - name: mdblist, - num: 0, - mdblist_user: "archivist", mdblist_list: "movie-trending", - mdblist_sort: "rank.desc" + mdblist_sort: "rank.desc", + mdblist_user: "archivist", + name: mdblist, + num: "5" } limit: 100 "Popular Movies": - summary: "Popular movies across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_popular.png - visible_library: true + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_popular.png schedule: daily + sort_title: "+010_<>_<>" + summary: "Popular movies across the internet" + visible_library: true template: { - name: mdblist, - num: 1, - mdblist_user: "archivist", mdblist_list: "movie-popular", - mdblist_sort: "imdbpopular.desc" + mdblist_sort: "imdbpopular.desc", + mdblist_user: "archivist", + name: mdblist, + num: "6" } limit: 250 "Top Rated Movies": - summary: "Top rated movies across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_top-rated.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_top-rated.png schedule: daily + sort_title: "+010_<>_<>" + summary: "Top rated movies across the internet" template: { - name: mdblist, - num: 1, - mdblist_user: "archivist", mdblist_list: "movie-top-rated", - mdblist_sort: "imdbrating.desc" + mdblist_sort: "imdbrating.desc", + mdblist_user: "archivist", + name: mdblist, + num: "7" } limit: 500 - - "Unwatched: Random Movies": - summary: "Random selection of movies" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_random.png - template: { - name: plex, - num: 2 - } - smart_filter: - all: - unplayed: true - any: - audio_language: English, english - collection_filtering: user - sort_by: random - limit: 250 - - "Unwatched: Recommended Movies": - summary: "Based on personally favourited movies" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_recommended.png - template: { - name: plex, - num: 2 - } - smart_filter: - all: - collection: "Recommended Movies" - unplayed: true - collection_filtering: user - sort_by: title.asc - - "Unwatched: Suggested Movies": - summary: "Based on watched and favourited movies" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_suggested.png - template: { - name: plex, - num: 2 - } - smart_filter: - all: - collection: "Suggested Movies" - unplayed: true - collection_filtering: user - sort_by: title.asc - - "Unwatched: Popular Movies": - summary: "Popular movies across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_popular.png - template: { - name: plex, - num: 3 - } - smart_filter: - all: - collection: "Popular Movies" - unplayed: true - collection_filtering: user - sort_by: random - - "Unwatched: Top Rated Movies": - summary: "Top rated movies across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_top-rated.png - template: { - name: plex, - num: 3 - } - smart_filter: - all: - collection: "Top Rated Movies" - unplayed: true - collection_filtering: user - sort_by: random - - "Most Watched Daily": - summary: "Movies trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_most-watched-daily.png - collection_order: custom - schedule: daily - template: { - name: trakt, - num: 4 - } - trakt_chart: - chart: watched - time_period: daily - languages: en - countries: us, gb, ie, ca, au, nz - limit: 50 - - "Most Watched Weekly": - summary: "Movies trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_most-watched-weekly.png - collection_order: custom - schedule: daily - template: { - name: trakt, - num: 4 - } - trakt_chart: - chart: watched - time_period: weekly - languages: en - countries: us, gb, ie, ca, au, nz - limit: 50 - - "Most Watched Monthly": - summary: "Movies trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_most-watched-monthly.png - collection_order: custom - schedule: weekly(sunday) - template: { - name: trakt, - num: 5 - } - trakt_chart: - chart: watched - time_period: monthly - languages: en - countries: us, gb, ie, ca, au, nz - limit: 75 - - "Most Watched Yearly": - summary: "Movies trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_most-watched-yearly.png - collection_order: custom - schedule: weekly(sunday) - template: { - name: trakt, - num: 5 - } - trakt_chart: - chart: watched - time_period: yearly - languages: en - countries: us, gb, ie, ca, au, nz - limit: 100 diff --git a/0x5f3/collections/movie/020_unwatched.yml b/0x5f3/collections/movie/020_unwatched.yml new file mode 100644 index 0000000..a00f83c --- /dev/null +++ b/0x5f3/collections/movie/020_unwatched.yml @@ -0,0 +1,83 @@ +## _unwatched.yml + +templates: + plex: + collection_mode: hide + delete_not_scheduled: false + sort_title: "+020_<>_<>" + sync_mode: sync + visible_home: false + visible_library: false + visible_shared: false + +collections: + "Unwatched: Random Movies": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_random.png + summary: "Random selection of movies" + template: { + name: plex, + num: "0" + } + smart_filter: + all: + unplayed: true + any: + audio_language: English, english + limit: 250 + sort_by: random + + "Unwatched: Recommended Movies": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_recommended.png + summary: "Based on personally favourited movies" + template: { + name: plex, + num: "1" + } + smart_filter: + all: + collection: "Recommended Movies" + unplayed: true + collection_filtering: user + sort_by: title.asc + + "Unwatched: Suggested Movies": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_suggested.png + summary: "Based on watched and favourited movies" + template: { + name: plex, + num: "2" + } + smart_filter: + all: + collection: "Suggested Movies" + unplayed: true + collection_filtering: user + sort_by: title.asc + + "Unwatched: Popular Movies": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_popular.png + summary: "Popular movies across the internet" + template: { + name: plex, + num: "3" + } + smart_filter: + all: + collection: "Popular Movies" + unplayed: true + collection_filtering: user + sort_by: random + + "Unwatched: Top Rated Movies": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_top-rated.png + summary: "Top rated movies across the internet" + template: { + name: plex, + num: "4" + } + smart_filter: + all: + collection: "Top Rated Movies" + unplayed: true + collection_filtering: user + sort_by: random \ No newline at end of file diff --git a/0x5f3/collections/movie/030_watched.yml b/0x5f3/collections/movie/030_watched.yml new file mode 100644 index 0000000..f2caf3a --- /dev/null +++ b/0x5f3/collections/movie/030_watched.yml @@ -0,0 +1,118 @@ +## _watched.yml + +templates: + trakt: + collection_mode: hide + delete_not_scheduled: false + sort_title: "+030_<>_<>" + sync_mode: sync + visible_home: false + visible_library: false + visible_shared: false + trakt_list: + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + optional: + - trakt_list_extra_01 + - trakt_list_extra_02 + - trakt_list_extra_03 + - trakt_list_extra_04 + - trakt_list_extra_05 + - trakt_list_extra_06 + - trakt_list_extra_07 + - trakt_list_extra_08 + - trakt_list_extra_09 + - trakt_list_extra_10 + - trakt_list_extra_11 + - trakt_list_extra_12 + - trakt_list_extra_13 + - trakt_list_extra_14 + - trakt_list_extra_15 + - trakt_list_extra_16 + - trakt_list_extra_17 + - trakt_list_extra_18 + - trakt_list_extra_19 + - trakt_list_extra_20 + +collections: + "Most Watched Daily": + collection_order: custom + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_watched/watched_daily.png + schedule: daily + summary: "Movies trending across the internet" + template: { + name: trakt, + num: "0" + } + trakt_chart: + chart: watched + countries: us, gb, ie, ca, au, nz + languages: en + limit: 50 + time_period: daily + + "Most Watched Weekly": + collection_order: custom + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_watched/watched_weekly.png + schedule: daily + summary: "Movies trending across the internet" + template: { + name: trakt, + num: "1" + } + trakt_chart: + chart: watched + countries: us, gb, ie, ca, au, nz + languages: en + limit: 50 + time_period: weekly + + "Most Watched Monthly": + collection_order: custom + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_watched/watched_monthly.png + schedule: weekly(sunday) + summary: "Movies trending across the internet" + template: { + name: trakt, + num: "2" + } + trakt_chart: + chart: watched + countries: us, gb, ie, ca, au, nz + languages: en + limit: 75 + time_period: monthly + + "Most Watched Yearly": + collection_order: custom + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_watched/watched_yearly.png + schedule: weekly(sunday) + summary: "Movies trending across the internet" + template: { + name: trakt, + num: "3" + } + trakt_chart: + chart: watched + countries: us, gb, ie, ca, au, nz + languages: en + limit: 100 + time_period: yearly \ No newline at end of file diff --git a/0x5f3/metadata/movie/1_seasonal.yml b/0x5f3/collections/movie/040_seasonal.yml similarity index 60% rename from 0x5f3/metadata/movie/1_seasonal.yml rename to 0x5f3/collections/movie/040_seasonal.yml index 8c4c2e0..41f63b5 100644 --- a/0x5f3/metadata/movie/1_seasonal.yml +++ b/0x5f3/collections/movie/040_seasonal.yml @@ -1,4 +1,4 @@ -## 1_seasonal.yml +## _seasonal.yml templates: seasonal: @@ -6,7 +6,7 @@ templates: collection_order: alpha delete_not_scheduled: true limit: 1000 - sort_title: +1_<>_<> + sort_title: "+040_<>_<>" summary: "A timed collection of <> movies and other movies that may relate to the holiday." sync_mode: sync visible_home: false @@ -51,13 +51,12 @@ templates: collections: "Valentine's Day Movies": - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_seasonal/seasonal_valentines-day.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_seasonal/seasonal_valentines-day.png schedule: range(02/10-02/14) template: { - name: seasonal, - num: 9, holiday: "Valentine's Day", - letterboxd_extra_1: https://letterboxd.com/ediblehedgehog/list/theme-valentines/by/rating/ + letterboxd_extra_1: "https://letterboxd.com/ediblehedgehog/list/theme-valentines/by/rating/", + name: seasonal } plex_search: - all: @@ -66,70 +65,66 @@ collections: - all: critic_rating.gte: 8.0 genre: Romance, Drama + genre.not: Documentary "St. Patrick's Day Movies": - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_seasonal/seasonal_st-patricks-day.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_seasonal/seasonal_st-patricks-day.png schedule: range(03/16-03/18) template: { - name: seasonal, - num: 9, holiday: "St. Patrick's Day", - letterboxd_extra_1: https://letterboxd.com/ediblehedgehog/list/theme-st-patricks/by/rating/ + letterboxd_extra_1: "https://letterboxd.com/ediblehedgehog/list/theme-st-patricks/by/rating/", + name: seasonal } "Easter Movies": - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_seasonal/seasonal_easter.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_seasonal/seasonal_easter.png schedule: range(03/22-04/25) template: { - name: seasonal, - num: 9, holiday: "Easter", - letterboxd_extra_1: https://letterboxd.com/ediblehedgehog/list/theme-easter/by/rating/ + letterboxd_extra_1: "https://letterboxd.com/ediblehedgehog/list/theme-easter/by/rating/", + name: seasonal } "Halloween Movies": - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_seasonal/seasonal_halloween.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_seasonal/seasonal_halloween.png schedule: range(10/29-10/31) template: { - name: seasonal, - num: 9, holiday: "Halloween", - letterboxd_extra_1: https://letterboxd.com/ediblehedgehog/list/theme-halloween/by/rating/ + letterboxd_extra_1: "https://letterboxd.com/ediblehedgehog/list/theme-halloween/by/rating/", + name: seasonal } plex_search: - all: critic_rating.gte: 8.0 genre: Horror + genre.not: Documentary "Thanksgiving Movies": - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_seasonal/seasonal_thanksgiving.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_seasonal/seasonal_thanksgiving.png schedule: range(11/22-11/25) template: { - name: seasonal, - num: 9, holiday: "Thanksgiving", - letterboxd_extra_1: https://letterboxd.com/ediblehedgehog/list/theme-thanksgiving/by/rating/ + letterboxd_extra_1: "https://letterboxd.com/ediblehedgehog/list/theme-thanksgiving/by/rating/", + name: seasonal } "Christmas Movies": - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_seasonal/seasonal_christmas.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_seasonal/seasonal_christmas.png schedule: range(12/01-12/31) template: { - name: seasonal, - num: 9, holiday: "Christmas", - letterboxd_extra_1: https://letterboxd.com/ediblehedgehog/list/theme-christmas/by/rating/, - imdb_extra_1: https://www.imdb.com/list/ls000096828, - imdb_extra_2: https://www.imdb.com/list/ls068976997, - imdb_extra_3: https://www.imdb.com/list/ls027567380 + imdb_extra_1: "https://www.imdb.com/list/ls000096828", + imdb_extra_2: "https://www.imdb.com/list/ls068976997", + imdb_extra_3: "https://www.imdb.com/list/ls027567380", + letterboxd_extra_1: "https://letterboxd.com/ediblehedgehog/list/theme-christmas/by/rating/", + name: seasonal } "New Year's Eve Movies": - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_seasonal/seasonal_new-years-eve.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_seasonal/seasonal_new-years-eve.png schedule: range(12/26-01/02) template: { - name: seasonal, - num: 9, holiday: "New Year's Eve", - letterboxd_extra_1: https://letterboxd.com/ediblehedgehog/list/theme-new-years-eve/by/rating/ + letterboxd_extra_1: "https://letterboxd.com/ediblehedgehog/list/theme-new-years-eve/by/rating/", + name: seasonal } \ No newline at end of file diff --git a/0x5f3/metadata/movie/1_parental.yml b/0x5f3/collections/movie/050_parental.yml similarity index 77% rename from 0x5f3/metadata/movie/1_parental.yml rename to 0x5f3/collections/movie/050_parental.yml index 53ec2bb..7f747c4 100644 --- a/0x5f3/metadata/movie/1_parental.yml +++ b/0x5f3/collections/movie/050_parental.yml @@ -1,11 +1,11 @@ -## 1_parental.yml +## _parental.yml templates: plex: collection_mode: hide delete_not_scheduled: false label.sync: Parental - sort_title: "+1_<>_<>" + sort_title: "+050_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -13,53 +13,53 @@ templates: collections: "Parental: Random": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_random.png summary: "Random movies suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_random.png template: { name: plex, - num: "B" + num: "1" } smart_filter: all: collection: "Parental: All" - sort_by: random limit: 250 + sort_by: random "Parental: Recently Added": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_recently-added.png summary: "Recently added movies suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_recently-added.png template: { name: plex, - num: "C" + num: "2" } smart_filter: all: collection: "Parental: All" - sort_by: added.desc limit: 100 + sort_by: added.desc "Parental: Recently Released": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_recently-released.png summary: "Recently released movies suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_recently-released.png template: { name: plex, - num: "D" + num: "3" } smart_filter: all: collection: "Parental: All" - sort_by: release.desc limit: 250 + sort_by: release.desc "Parental: Top Rated": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_top-rated.png summary: "Top rated movies suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_top-rated.png template: { name: plex, - num: "E" + num: "4" } smart_filter: all: collection: "Parental: All" - sort_by: critic_rating.desc limit: 250 + sort_by: critic_rating.desc \ No newline at end of file diff --git a/0x5f3/metadata/movie/1_parental_sync.yml b/0x5f3/collections/movie/050_parental_sync.yml similarity index 79% rename from 0x5f3/metadata/movie/1_parental_sync.yml rename to 0x5f3/collections/movie/050_parental_sync.yml index ff8f39e..d5494f3 100644 --- a/0x5f3/metadata/movie/1_parental_sync.yml +++ b/0x5f3/collections/movie/050_parental_sync.yml @@ -1,4 +1,4 @@ -## 1_parental_sync.yml +## _parental_sync.yml templates: mdblist: @@ -7,7 +7,7 @@ templates: delete_not_scheduled: false item_label.sync: Parental label.sync: Parental - sort_title: "+1_<>_<>" + sort_title: "+050_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -24,11 +24,11 @@ templates: collections: "Parental: All": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_all.png summary: "Movies suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_all.png template: { - name: mdblist, - num: "A", + mdblist_list: "list-parental", mdblist_user: "archivist", - mdblist_list: "list-parental" + name: mdblist, + num: "0" } \ No newline at end of file diff --git a/0x5f3/metadata/movie/1_documentary.yml b/0x5f3/collections/movie/060_documentary.yml similarity index 75% rename from 0x5f3/metadata/movie/1_documentary.yml rename to 0x5f3/collections/movie/060_documentary.yml index c38cc86..dc9ece9 100644 --- a/0x5f3/metadata/movie/1_documentary.yml +++ b/0x5f3/collections/movie/060_documentary.yml @@ -1,10 +1,10 @@ -## 1_documentary.yml +## _documentary.yml templates: plex: collection_mode: hide delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+060_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -12,11 +12,11 @@ templates: collections: "Documentaries: All": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_all.png summary: "Documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_all.png template: { name: plex, - num: "F" + num: "0" } smart_filter: all: @@ -24,54 +24,54 @@ collections: sort_by: title.asc "Documentaries: Random": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_random.png summary: "Random documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_random.png template: { name: plex, - num: "G" + num: "1" } smart_filter: all: genre: documentary - sort_by: random limit: 250 + sort_by: random "Documentaries: Recently Added": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_recently-added.png summary: "Recently added documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_recently-added.png visible_library: true template: { name: plex, - num: "H" + num: "2" } smart_filter: all: genre: documentary - sort_by: added.desc limit: 100 + sort_by: added.desc "Documentaries: Recently Released": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_recently-released.png summary: "Recently released documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_recently-released.png template: { name: plex, - num: "I" + num: "3" } smart_filter: all: genre: documentary - sort_by: release.desc limit: 250 + sort_by: release.desc "Documentaries: Top Rated": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_top-rated.png summary: "Top rated documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_top-rated.png template: { name: plex, - num: "J" + num: "4" } smart_filter: all: genre: documentary - sort_by: critic_rating.desc limit: 250 + sort_by: critic_rating.desc \ No newline at end of file diff --git a/0x5f3/metadata/movie/1_standup.yml b/0x5f3/collections/movie/070_standup.yml similarity index 77% rename from 0x5f3/metadata/movie/1_standup.yml rename to 0x5f3/collections/movie/070_standup.yml index e2c5d49..4f4bafd 100644 --- a/0x5f3/metadata/movie/1_standup.yml +++ b/0x5f3/collections/movie/070_standup.yml @@ -1,10 +1,10 @@ -## 1_standup.yml +## _standup.yml templates: plex: collection_mode: hide delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+070_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -14,7 +14,7 @@ templates: collection_mode: hide collection_order: alpha delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+070_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -31,63 +31,63 @@ templates: collections: "Stand-up: All": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_standup/stand-up_all.png summary: "Stand-up" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_standup/stand-up_all.png template: { - name: mdblist, - num: "K", + mdblist_list: "list-standup", mdblist_user: "archivist", - mdblist_list: "list-standup" + name: mdblist, + num: "0" } "Stand-up: Random": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_standup/stand-up_random.png summary: "Random Stand-up" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_standup/stand-up_random.png template: { name: plex, - num: "L" + num: "1" } smart_filter: all: collection: "Stand-up: All" - sort_by: random limit: 250 + sort_by: random "Stand-up: Recently Added": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_standup/stand-up_recently-added.png summary: "Recently added Stand-up" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_standup/stand-up_recently-added.png template: { name: plex, - num: "M" + num: "2" } smart_filter: all: collection: "Stand-up: All" - sort_by: added.desc limit: 100 + sort_by: added.desc "Stand-up: Recently Released": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_standup/stand-up_recently-released.png summary: "Recently released Stand-up" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_standup/stand-up_recently-released.png template: { name: plex, - num: "N" + num: "3" } smart_filter: all: collection: "Stand-up: All" - sort_by: release.desc limit: 250 + sort_by: release.desc "Stand-up: Top Rated": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_standup/stand-up_top-rated.png summary: "Top rated Stand-up" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_standup/stand-up_top-rated.png template: { name: plex, - num: "O" + num: "4" } smart_filter: all: collection: "Stand-up: All" - sort_by: critic_rating.desc limit: 250 + sort_by: critic_rating.desc \ No newline at end of file diff --git a/0x5f3/metadata/movie/2_year_top.yml b/0x5f3/collections/movie/080_year_top.yml similarity index 77% rename from 0x5f3/metadata/movie/2_year_top.yml rename to 0x5f3/collections/movie/080_year_top.yml index e13685e..f4de023 100644 --- a/0x5f3/metadata/movie/2_year_top.yml +++ b/0x5f3/collections/movie/080_year_top.yml @@ -1,4 +1,4 @@ -## 2_year_top.yml +## _year_top.yml templates: year_top: @@ -6,7 +6,7 @@ templates: collection_order: custom delete_not_scheduled: false limit: 250 - sort_title: "+2_<>_<>" + sort_title: "+080_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -22,195 +22,196 @@ templates: collections: "Top Rated of 2024": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2024.png summary: "Top rated movies in 2024" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2024.png template: { + language: "en", name: year_top, num: "L", - type: "movie,tv_movie", - language: "en", release.after: 2024-01-01, release.before: 2024-12-31, + type: "movie,tv_movie", votes.gte: 1000 } "Top Rated of 2023": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2023.png summary: "Top rated movies in 2023" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2023.png template: { + language: "en", name: year_top, num: "M", - type: "movie,tv_movie", - language: "en", release.after: 2023-01-01, release.before: 2023-12-31, + type: "movie,tv_movie", votes.gte: 1000 } "Top Rated of 2022": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2022.png summary: "Top rated movies in 2022" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2022.png template: { + language: "en", name: year_top, num: "N", - type: "movie,tv_movie", release.after: 2022-01-01, release.before: 2022-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2021": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2021.png summary: "Top rated movies in 2021" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2021.png template: { + language: "en", name: year_top, num: "O", - type: "movie,tv_movie", release.after: 2021-01-01, release.before: 2021-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2020": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2020.png summary: "Top rated movies in 2020" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2020.png template: { + language: "en", name: year_top, num: "P", - type: "movie,tv_movie", release.after: 2020-01-01, release.before: 2020-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2019": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2019.png summary: "Top rated movies in 2019" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2019.png template: { + language: "en", name: year_top, num: "Q", - type: "movie,tv_movie", release.after: 2019-01-01, release.before: 2019-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2018": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2018.png summary: "Top rated movies in 2018" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2018.png template: { + language: "en", name: year_top, num: "R", - type: "movie,tv_movie", release.after: 2018-01-01, release.before: 2018-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2017": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2017.png summary: "Top rated movies in 2017" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2017.png template: { + language: "en", name: year_top, num: "S", - type: "movie,tv_movie", release.after: 2017-01-01, release.before: 2017-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2016": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2016.png summary: "Top rated movies in 2016" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2016.png template: { + language: "en", name: year_top, num: "T", - type: "movie,tv_movie", release.after: 2016-01-01, release.before: 2016-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2015": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2015.png summary: "Top rated movies in 2015" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2015.png template: { + language: "en", name: year_top, num: "U", - type: "movie,tv_movie", release.after: 2015-01-01, release.before: 2015-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2014": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2014.png summary: "Top rated movies in 2014" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2014.png template: { + language: "en", name: year_top, num: "V", - type: "movie,tv_movie", release.after: 2014-01-01, release.before: 2014-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } + "Top Rated of 2013": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2013.png summary: "Top rated movies in 2013" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2013.png template: { + language: "en", name: year_top, num: "W", - type: "movie,tv_movie", release.after: 2013-01-01, release.before: 2013-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2012": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2012.png summary: "Top rated movies in 2012" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2012.png template: { + language: "en", name: year_top, num: "X", - type: "movie,tv_movie", release.after: 2012-01-01, release.before: 2012-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2011": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2011.png summary: "Top rated movies in 2011" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2011.png template: { + language: "en", name: year_top, num: "Y", - type: "movie,tv_movie", release.after: 2011-01-01, release.before: 2011-12-31, - votes.gte: 1000, - language: "en" + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated of 2010": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2010.png summary: "Top rated movies in 2010" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2010.png template: { + language: "en", name: year_top, num: "Z", - type: "movie,tv_movie", release.after: 2010-01-01, release.before: 2010-12-31, - votes.gte: 1000, - language: "en" - } + type: "movie,tv_movie", + votes.gte: 1000 + } \ No newline at end of file diff --git a/0x5f3/metadata/movie/3_decades_top.yml b/0x5f3/collections/movie/090_decades_top.yml similarity index 73% rename from 0x5f3/metadata/movie/3_decades_top.yml rename to 0x5f3/collections/movie/090_decades_top.yml index 5d28a09..d2f2f68 100644 --- a/0x5f3/metadata/movie/3_decades_top.yml +++ b/0x5f3/collections/movie/090_decades_top.yml @@ -1,4 +1,4 @@ -## 3_decades_top.yml +## _decades_top.yml templates: decade_top: @@ -6,7 +6,7 @@ templates: collection_order: custom delete_not_scheduled: false limit: 250 - sort_title: "+3_<>_<>" + sort_title: "+090_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -21,132 +21,132 @@ templates: votes.gte: <> collections: - "Top Rated of the 1930s": - summary: "Top rated movies of the 1930s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1930s.png + "Top Rated of the 2020s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_2020s.png + summary: "Top rated movies of the 2020s" template: { + language: "en", name: decade_top, - num: "Z", + num: "Q", + release.after: 2020-01-01, + release.before: 2029-12-31, type: "movie,tv_movie", - release.after: 1930-01-01, - release.before: 1939-12-31, - votes.gte: 100, - language: "en" - } + votes.gte: 1000 + } - "Top Rated of the 1940s": - summary: "Top rated movies of the 1940s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1940s.png + "Top Rated of the 2010s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_2010s.png + summary: "Top rated movies of the 2010s" template: { + language: "en", name: decade_top, - num: "Y", + num: "R", + release.after: 2010-01-01, + release.before: 2019-12-31, type: "movie,tv_movie", - release.after: 1940-01-01, - release.before: 1949-12-31, - votes.gte: 100, - language: "en" - } + votes.gte: 1000 + } - "Top Rated of the 1950s": - summary: "Top rated movies of the 1950s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1950s.png + "Top Rated of the 2000s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_2000s.png + summary: "Top rated movies of the 2000s" template: { + language: "en", name: decade_top, - num: "X", + num: "S", + release.after: 2000-01-01, + release.before: 2009-12-31, type: "movie,tv_movie", - release.after: 1950-01-01, - release.before: 1959-12-31, - votes.gte: 100, - language: "en" - } + votes.gte: 1000 + } - "Top Rated of the 1960s": - summary: "Top rated movies of the 1960s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1960s.png + "Top Rated of the 1990s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1990s.png + summary: "Top rated movies of the 1990s" template: { + language: "en", name: decade_top, - num: "W", + num: "T", + release.after: 1990-01-01, + release.before: 1999-12-31, type: "movie,tv_movie", - release.after: 1960-01-01, - release.before: 1969-12-31, - votes.gte: 100, - language: "en" + votes.gte: 100 + } + + "Top Rated of the 1980s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1980s.png + summary: "Top rated movies of the 1980s" + template: { + language: "en", + name: decade_top, + num: "U", + release.after: 1980-01-01, + release.before: 1989-12-31, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated of the 1970s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1970s.png summary: "Top rated movies of the 1970s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1970s.png template: { + language: "en", name: decade_top, num: "V", - type: "movie,tv_movie", release.after: 1970-01-01, release.before: 1979-12-31, - votes.gte: 100, - language: "en" + type: "movie,tv_movie", + votes.gte: 100 + } + + "Top Rated of the 1960s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1960s.png + summary: "Top rated movies of the 1960s" + template: { + language: "en", + name: decade_top, + num: "W", + release.after: 1960-01-01, + release.before: 1969-12-31, + type: "movie,tv_movie", + votes.gte: 100 + } + + "Top Rated of the 1950s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1950s.png + summary: "Top rated movies of the 1950s" + template: { + language: "en", + name: decade_top, + num: "X", + release.after: 1950-01-01, + release.before: 1959-12-31, + type: "movie,tv_movie", + votes.gte: 100 } - "Top Rated of the 1980s": - summary: "Top rated movies of the 1980s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1980s.png + "Top Rated of the 1940s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1940s.png + summary: "Top rated movies of the 1940s" template: { + language: "en", name: decade_top, - num: "U", + num: "Y", + release.after: 1940-01-01, + release.before: 1949-12-31, type: "movie,tv_movie", - release.after: 1980-01-01, - release.before: 1989-12-31, - votes.gte: 100, - language: "en" - } + votes.gte: 100 + } - "Top Rated of the 1990s": - summary: "Top rated movies of the 1990s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1990s.png + "Top Rated of the 1930s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1930s.png + summary: "Top rated movies of the 1930s" template: { + language: "en", name: decade_top, - num: "T", + num: "Z", + release.after: 1930-01-01, + release.before: 1939-12-31, type: "movie,tv_movie", - release.after: 1990-01-01, - release.before: 1999-12-31, - votes.gte: 100, - language: "en" - } - - "Top Rated of the 2000s": - summary: "Top rated movies of the 2000s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_2000s.png - template: { - name: decade_top, - num: "S", - type: "movie,tv_movie", - release.after: 2000-01-01, - release.before: 2009-12-31, - votes.gte: 1000, - language: "en" - } - - "Top Rated of the 2010s": - summary: "Top rated movies of the 2010s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_2010s.png - template: { - name: decade_top, - num: "R", - type: "movie,tv_movie", - release.after: 2010-01-01, - release.before: 2019-12-31, - votes.gte: 1000, - language: "en" - } - - "Top Rated of the 2020s": - summary: "Top rated movies of the 2020s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_2020s.png - template: { - name: decade_top, - num: "Q", - type: "movie,tv_movie", - release.after: 2020-01-01, - release.before: 2029-12-31, - votes.gte: 1000, - language: "en" - } \ No newline at end of file + votes.gte: 100 + } \ No newline at end of file diff --git a/0x5f3/metadata/movie/4_awards.yml b/0x5f3/collections/movie/100_awards.yml similarity index 71% rename from 0x5f3/metadata/movie/4_awards.yml rename to 0x5f3/collections/movie/100_awards.yml index 61b1ad0..9bd1b51 100644 --- a/0x5f3/metadata/movie/4_awards.yml +++ b/0x5f3/collections/movie/100_awards.yml @@ -1,11 +1,11 @@ -## 4_awards.yml +## _awards.yml templates: award_nominee: collection_mode: hide collection_order: release.desc delete_not_scheduled: false - sort_title: "+4_<>_<>" + sort_title: "+100_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -20,7 +20,7 @@ templates: collection_mode: hide collection_order: release.desc delete_not_scheduled: false - sort_title: "+4_<>_<>" + sort_title: "+100_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -33,144 +33,144 @@ templates: collections: "Oscar Nominees": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_nominees_oscars.png summary: "A collection of Oscar Nominees" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_nominees_oscars.png template: { + event: "oscar_picture,oscar_director", + language: "en", name: award_nominee, num: "A", - type: "movie,tv_movie", - event: "oscar_picture,oscar_director", - language: "en" + type: "movie,tv_movie" } "Oscar Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_oscars.png summary: "A collection of Oscar Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_oscars.png template: { + event.winning: "oscar_picture,oscar_director", + language: "en", name: award_winner, num: "B", - type: "movie,tv_movie", - event.winning: "oscar_picture,oscar_director", - language: "en" + type: "movie,tv_movie" } "Golden Globes Nominees": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_nominees_golden-globes.png summary: "A collection of Golden Globes Nominees" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_nominees_golden-globes.png template: { + event: "golden", + language: "en", name: award_nominee, num: "C", - type: "movie,tv_movie", - event: "golden", - language: "en" + type: "movie,tv_movie" } "Golden Globes Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_golden_globes.png summary: "A collection of Golden Globes Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_golden_globes.png template: { + event.winning: "golden", + language: "en", name: award_winner, num: "D", - type: "movie,tv_movie", - event.winning: "golden", - language: "en" + type: "movie,tv_movie" } "BAFTA Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_bafta.png summary: "A collection of BAFTA Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_bafta.png template: { + event.winning: "bafta", + language: "en", name: award_winner, num: "E", - type: "movie,tv_movie", - event.winning: "bafta", - language: "en" + type: "movie,tv_movie" } "Berlinale Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_berlinale.png summary: "A collection of Berlinale Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_berlinale.png template: { + event.winning: "ev0000091", + language: "en", name: award_winner, num: "F", - type: "movie,tv_movie", - event.winning: "ev0000091", - language: "en" + type: "movie,tv_movie" } "Cannes Film Festival Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_cannes.png summary: "A collection of Cannes Film Festival Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_cannes.png template: { + event.winning: "cannes", + language: "en", name: award_winner, num: "G", - type: "movie,tv_movie", - event.winning: "cannes", - language: "en" + type: "movie,tv_movie" } "European Film Award Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_european-film.png summary: "A collection of European Film Award Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_european-film.png template: { + event.winning: "ev0000230", + language: "en", name: award_winner, num: "H", - type: "movie,tv_movie", - event.winning: "ev0000230", - language: "en" + type: "movie,tv_movie" } "Sundance Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_sundance.png summary: "A collection of Sundance Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_sundance.png template: { + event.winning: "sundance", + language: "en", name: award_winner, num: "I", - type: "movie,tv_movie", - event.winning: "sundance", - language: "en" + type: "movie,tv_movie" } "Venice Film Festival Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_venice-film.png summary: "A collection of Venice Film Festival Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_venice-film.png template: { + event.winning: "ev0000681", + language: "en", name: award_winner, num: "J", - type: "movie,tv_movie", - event.winning: "ev0000681", - language: "en" + type: "movie,tv_movie" } "Critic's Choice Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_critics-choice.png summary: "A collection of Critic's Choice Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_critics-choice.png template: { + event.winning: "choice", + language: "en", name: award_winner, num: "K", - type: "movie,tv_movie", - event.winning: "choice", - language: "en" + type: "movie,tv_movie" } "Spirit Awards Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_spirit-awards.png summary: "A collection of Spirit Awards Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_spirit-awards.png template: { + event.winning: "spirit", + language: "en", name: award_winner, num: "L", - type: "movie,tv_movie", - event.winning: "spirit", - language: "en" + type: "movie,tv_movie" } "Razzie Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_razzie.png summary: "A collection of Razzie Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_razzie.png template: { + event.winning: "razzie", + language: "en", name: award_winner, num: "M", - type: "movie,tv_movie", - event.winning: "razzie", - language: "en" + type: "movie,tv_movie" } \ No newline at end of file diff --git a/0x5f3/metadata/movie/5_genre_popular.yml b/0x5f3/collections/movie/110_genre_popular.yml similarity index 59% rename from 0x5f3/metadata/movie/5_genre_popular.yml rename to 0x5f3/collections/movie/110_genre_popular.yml index 293f3a3..e331ce4 100644 --- a/0x5f3/metadata/movie/5_genre_popular.yml +++ b/0x5f3/collections/movie/110_genre_popular.yml @@ -1,4 +1,4 @@ -## 5_genre_popular.yml +## _genre_popular.yml templates: popular: @@ -6,236 +6,270 @@ templates: collection_order: custom delete_not_scheduled: false limit: 250 - sort_title: "+5: <>" + sort_title: "+110_<>" sync_mode: sync visible_home: false visible_library: false visible_shared: false imdb_search: genre: <> + genre.not: <> language: <> limit: 500 popularity.gte: <> sort_by: popularity.asc type: <> + optional: + - genre.not collections: "Popular in Action": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_action.png summary: "Popular movies in Action" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_action.png template: { - name: popular, - type: "movie,tv_movie", genre: "action", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Adventure": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_adventure.png summary: "Popular movies in Adventure" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_adventure.png template: { - name: popular, - type: "movie,tv_movie", genre: "adventure", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Animation": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_animation.png summary: "Popular movies in Animation" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_animation.png template: { - name: popular, - type: "movie,tv_movie", genre: "animation", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Biography": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_biography.png summary: "Popular movies in Biography" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_biography.png template: { - name: popular, - type: "movie,tv_movie", genre: "biography", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Comedy": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_comedy.png summary: "Popular movies in Comedy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_comedy.png template: { - name: popular, - type: "movie,tv_movie", genre: "comedy", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Crime": summary: "Popular movies in Crime" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_crime.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_crime.png template: { - name: popular, - type: "movie,tv_movie", genre: "crime", - popularity.gte: 5, - language: "en" - } - - "Popular in Drama": - summary: "Popular movies in Drama" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_drama.png - template: { + genre.not: "documentary", + language: "en", name: popular, - type: "movie,tv_movie", - genre: "drama", popularity.gte: 5, - language: "en" + type: "movie,tv_movie" + } + + "Popular in Documentary": + summary: "Popular movies in Documentary" + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_documentary.png + template: { + genre: "documentary", + language: "en", + name: popular, + popularity.gte: 5, + type: "movie,tv_movie" + } + + "Popular in Drama": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_drama.png + summary: "Popular movies in Drama" + template: { + genre: "drama", + genre.not: "documentary", + language: "en", + name: popular, + popularity.gte: 5, + type: "movie,tv_movie" } "Popular in Family": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_family.png summary: "Popular movies in Family" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_family.png template: { - name: popular, - type: "movie,tv_movie", genre: "family", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Fantasy": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_fantasy.png summary: "Popular movies in Fantasy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_fantasy.png template: { - name: popular, - type: "movie,tv_movie", genre: "fantasy", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in History": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_history.png summary: "Popular movies in History" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_history.png template: { - name: popular, - type: "movie,tv_movie", genre: "history", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Horror": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_horror.png summary: "Popular movies in Horror" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_horror.png template: { - name: popular, - type: "movie,tv_movie", genre: "horror", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Music": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_music.png summary: "Popular movies in Music" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_music.png template: { - name: popular, - type: "movie,tv_movie", genre: "music", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Musicals": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_musicals.png summary: "Popular movies in Musicals" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_musicals.png template: { - name: popular, - type: "movie,tv_movie", genre: "musical", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Mystery": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_mystery.png summary: "Popular movies in Mystery" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_mystery.png template: { - name: popular, - type: "movie,tv_movie", genre: "mystery", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Romance": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_romance.png summary: "Popular movies in Romance" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_romance.png template: { - name: popular, - type: "movie,tv_movie", genre: "romance", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Sci-Fi": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_sci-fi.png summary: "Popular movies in Sci-Fi" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_sci-fi.png template: { - name: popular, - type: "movie,tv_movie", genre: "sci-fi", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Sport": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_sport.png summary: "Popular movies in Sport" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_sport.png template: { - name: popular, - type: "movie,tv_movie", genre: "sport", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Thriller": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_thriller.png summary: "Popular movies in Thriller" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_thriller.png template: { - name: popular, - type: "movie,tv_movie", genre: "thriller", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in War": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_war.png summary: "Popular movies in War" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_war.png template: { - name: popular, - type: "movie,tv_movie", genre: "war", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } "Popular in Western": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_western.png summary: "Popular movies in Western" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_western.png template: { - name: popular, - type: "movie,tv_movie", genre: "western", + genre.not: "documentary", + language: "en", + name: popular, popularity.gte: 5, - language: "en" + type: "movie,tv_movie" } \ No newline at end of file diff --git a/0x5f3/metadata/movie/6_genre_top.yml b/0x5f3/collections/movie/120_genre_top.yml similarity index 63% rename from 0x5f3/metadata/movie/6_genre_top.yml rename to 0x5f3/collections/movie/120_genre_top.yml index 671df20..1af87c7 100644 --- a/0x5f3/metadata/movie/6_genre_top.yml +++ b/0x5f3/collections/movie/120_genre_top.yml @@ -1,4 +1,4 @@ -## 6_genre_top.yml +## _genre_top.yml templates: top: @@ -6,258 +6,292 @@ templates: collection_order: custom delete_not_scheduled: false limit: 500 - sort_title: "+6 Rated: <>" + sort_title: "+120_<>" sync_mode: sync visible_home: false visible_library: false visible_shared: false imdb_search: genre: <> + genre.not: <> language: <> limit: 1000 rating.gte: <> sort_by: rating.desc type: <> votes.gte: <> + optional: + - genre.not collections: "Top Rated in Action": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_action.png summary: "Top rated movies in Action" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_action.png template: { - name: top, - type: "movie,tv_movie", genre: "action", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Adventure": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_adventure.png summary: "Top rated movies in Adventure" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_adventure.png template: { - name: top, - type: "movie,tv_movie", genre: "adventure", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Animation": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_animation.png summary: "Top rated movies in Animation" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_animation.png template: { - name: top, - type: "movie,tv_movie", genre: "animation", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Biography": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_biography.png summary: "Top rated movies in Biography" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_biography.png template: { - name: top, - type: "movie,tv_movie", genre: "biography", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Comedy": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_comedy.png summary: "Top rated movies in Comedy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_comedy.png template: { - name: top, - type: "movie,tv_movie", genre: "comedy", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Crime": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_crime.png summary: "Top rated movies in Crime" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_crime.png template: { - name: top, - type: "movie,tv_movie", genre: "crime", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 + } + + "Top Rated in Documentary": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_documentary.png + summary: "Top rated movies in Documentary" + template: { + genre: "documentary", + language: "en", + name: top, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Drama": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_drama.png summary: "Top rated movies in Drama" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_drama.png template: { - name: top, genre: "drama", - type: "movie,tv_movie", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Family": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_family.png summary: "Top rated movies in Family" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_family.png template: { - name: top, - type: "movie,tv_movie", genre: "family", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Fantasy": summary: "Top rated movies in Fantasy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_fantasy.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_fantasy.png template: { - name: top, - type: "movie,tv_movie", genre: "fantasy", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in History": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_history.png summary: "Top rated movies in History" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_history.png template: { - name: top, - type: "movie,tv_movie", genre: "history", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Horror": summary: "Top rated movies in Horror" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_horror.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_horror.png template: { - name: top, - type: "movie,tv_movie", genre: "horror", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Music": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_music.png summary: "Top rated movies in Music" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_music.png template: { - name: top, - type: "movie,tv_movie", genre: "music", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Musicals": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_musicals.png summary: "Top rated movies in Musicals" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_musicals.png template: { - name: top, - type: "movie,tv_movie", genre: "musical", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Mystery": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_mystery.png summary: "Top rated movies in Mystery" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_mystery.png - template: { - name: top, - type: "movie,tv_movie", genre: "mystery", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Romance": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_romance.png summary: "Top rated movies in Romance" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_romance.png template: { - name: top, - type: "movie,tv_movie", genre: "romance", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, + type: "movie,tv_movie", votes.gte: 10000, - language: "en" } "Top Rated in Sci-Fi": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_sci-fi.png summary: "Top rated movies in Sci-Fi" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_sci-fi.png template: { - name: top, - type: "movie,tv_movie", genre: "sci-fi", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Sport": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_sport.png summary: "Top rated movies in Sport" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_sport.png template: { - name: top, - type: "movie,tv_movie", genre: "sport", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Thriller": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_thriller.png summary: "Top rated movies in Thriller" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_thriller.png template: { - name: top, - type: "movie,tv_movie", genre: "thriller", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in War": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_war.png summary: "Top rated movies in War" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_war.png template: { - name: top, - type: "movie,tv_movie", genre: "war", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } "Top Rated in Western": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_western.png summary: "Top rated movies in Western" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_western.png template: { - name: top, - type: "movie,tv_movie", genre: "western", + genre.not: "documentary", + language: "en", + name: top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "movie,tv_movie", + votes.gte: 10000 } \ No newline at end of file diff --git a/0x5f3/metadata/movie/7_subgenre_top.yml b/0x5f3/collections/movie/130_subgenre_top.yml similarity index 73% rename from 0x5f3/metadata/movie/7_subgenre_top.yml rename to 0x5f3/collections/movie/130_subgenre_top.yml index 50b5570..f6a61d8 100644 --- a/0x5f3/metadata/movie/7_subgenre_top.yml +++ b/0x5f3/collections/movie/130_subgenre_top.yml @@ -1,18 +1,19 @@ -## 7_subgenre_top.yml +## _subgenre_top.yml templates: sub_genre: collection_mode: hide delete_not_scheduled: false limit: 250 - sort_title: "+7_<>" + sort_title: "+130_<>" sync_mode: sync visible_home: false visible_library: false visible_shared: false imdb_search: - genre.any: <> genre: <> + genre.any: <> + genre.not: documentary keyword.any: <> keyword: <> language: <> @@ -41,11 +42,15 @@ templates: - <> - <> optional: + - genre + - genre.any - imdb_extra_1 - imdb_extra_2 - imdb_extra_3 - imdb_extra_4 - imdb_extra_5 + - keyword + - keyword.any - letterboxd_extra_1 - letterboxd_extra_2 - letterboxd_extra_3 @@ -56,1183 +61,1236 @@ templates: - trakt_extra_3 - trakt_extra_4 - trakt_extra_5 - - genre - - genre.any - - keyword - - keyword.any collections: "Top Rated in Absurdism": - summary: "Top rated movies in Absurdism" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_absurdism.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_absurdism.png schedule: weekly(monday) + summary: "Top rated movies in Absurdism" template: { - name: sub_genre, keyword: "absurdism", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-absurdism" + letterboxd_list: "theme-absurdism", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Aliens": - summary: "Top rated movies in Aliens" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_aliens.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_aliens.png schedule: weekly(monday) + summary: "Top rated movies in Aliens" template: { - name: sub_genre, keyword: "alien,alien-invasion", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-aliens" + letterboxd_list: "theme-aliens", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Alternate History": - summary: "Top rated movies in Alternate History" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_alternate-history.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_alternate-history.png schedule: weekly(monday) + summary: "Top rated movies in Alternate History" template: { - name: sub_genre, keyword: "alternate-history", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-alternate-history" + letterboxd_list: "theme-alternate-history", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Anti-Hero": - summary: "Top rated movies in Anti-Hero" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_anti-hero.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_anti-hero.png schedule: weekly(monday) + summary: "Top rated movies in Anti-Hero" template: { - name: sub_genre, keyword: "anti-hero,superhero", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-anti-hero" + letterboxd_list: "theme-anti-hero", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Apocalypse": - summary: "Top rated movies in Apocalypse" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_apocalypse.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_apocalypse.png schedule: weekly(monday) + summary: "Top rated movies in Apocalypse" template: { - name: sub_genre, keyword: "apocalypse,end-of-the-world", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-apocalypse" + letterboxd_list: "theme-apocalypse", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Artificial Intelligence": - summary: "Top rated movies in Artificial Intelligence" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_artificial-intelligence.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_artificial-intelligence.png schedule: weekly(monday) + summary: "Top rated movies in Artificial Intelligence" template: { - name: sub_genre, keyword: "artificial-intelligence", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-artificial-intelligence" + letterboxd_list: "theme-artificial-intelligence", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Assassins": - summary: "Top rated movies in Assassins" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_assassins.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_assassins.png schedule: weekly(monday) + summary: "Top rated movies in Assassins" template: { - name: sub_genre, keyword: "assassination-attempt", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-assassins" + letterboxd_list: "theme-assassins", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Betrayal": - summary: "Top rated movies in Betrayal" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_betrayal.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_betrayal.png schedule: weekly(monday) + summary: "Top rated movies in Betrayal" template: { - name: sub_genre, keyword: "betrayal", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-betrayal" + letterboxd_list: "theme-betrayal", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Black Comedy": - summary: "Top rated movies in Black Comedy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_black-comedy.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_black-comedy.png schedule: weekly(monday) + summary: "Top rated movies in Black Comedy" template: { - name: sub_genre, - keyword: "black-comedy", genre: "comedy", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, + keyword: "black-comedy", language: "en", - letterboxd_list: "theme-black-comedy" + letterboxd_list: "theme-black-comedy", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Boxing": - summary: "Top rated movies in Boxing" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_boxing.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_boxing.png schedule: weekly(monday) + summary: "Top rated movies in Boxing" template: { - name: sub_genre, + imdb_extra_1: "https://www.imdb.com/search/keyword/?title_type=movie,tv_movie&user_rating=2.0,10.0&num_votes=100,&keywords=boxing-champion&languages=en&sort=user_rating,desc", keyword: "boxing", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", letterboxd_list: "theme-boxing", - imdb_extra_1: "https://www.imdb.com/search/keyword/?title_type=movie,tv_movie&user_rating=2.0,10.0&num_votes=100,&keywords=boxing-champion&languages=en&sort=user_rating,desc" + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Bugs": - summary: "Top rated movies in Bugs" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_bugs.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_bugs.png schedule: weekly(monday) + summary: "Top rated movies in Bugs" template: { - name: sub_genre, keyword: "giant-insect", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", letterboxd_list: "theme-bugs", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Cannibals": - summary: "Top rated movies in Cannibals" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_cannibals.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_cannibals.png schedule: weekly(monday) + summary: "Top rated movies in Cannibals" template: { - name: sub_genre, keyword: "cannibalism,cannibal", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", - letterboxd_list: "theme-cannibalism" + letterboxd_list: "theme-cannibalism", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Caper": - summary: "Top rated movies in Caper" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_caper.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_caper.png schedule: weekly(monday) + summary: "Top rated movies in Caper" template: { - name: sub_genre, keyword: "caper", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 100, language: "en", - letterboxd_list: "theme-caper" + letterboxd_list: "theme-caper", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Chick-flick": - summary: "Top rated movies in Chick-flick" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_chick-flick.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_chick-flick.png schedule: weekly(monday) + summary: "Top rated movies in Chick-flick" template: { - name: sub_genre, keyword: "chick-flick", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 100, language: "en", - letterboxd_list: "theme-chick-flick", letterboxd_extra_1: "https://letterboxd.com/akookieforyou/list/chick-flicks/", - letterboxd_extra_2: "https://letterboxd.com/marialuisacctc/list/women-have-superior-taste-that-is-why-these/" + letterboxd_extra_2: "https://letterboxd.com/marialuisacctc/list/women-have-superior-taste-that-is-why-these/", + letterboxd_list: "theme-chick-flick", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Comics": - summary: "Top rated movies in Comics" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_comics.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_comics.png schedule: weekly(tuesday) + summary: "Top rated movies in Comics" template: { - name: sub_genre, keyword: "based-on-comic", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-comics" + letterboxd_list: "theme-comics", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Coming of Age": - summary: "Top rated movies in Coming of Age" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_coming-of-age.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_coming-of-age.png schedule: weekly(tuesday) + summary: "Top rated movies in Coming of Age" template: { - name: sub_genre, keyword: "coming-of-age,friendship,teenage-boy,teenage-girl", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-coming-of-age" + letterboxd_list: "theme-coming-of-age", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 + } + + "Top Rated in Conspiracy": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_conspiracy.png + schedule: weekly(tuesday) + summary: "Top rated movies in Conspiracy" + template: { + keyword: "conspiracy", + language: "en", + letterboxd_list: "theme-conspiracy", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Con-Artists": - summary: "Top rated movies in Con-Artists" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_con-artists.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_con-artists.png schedule: weekly(tuesday) + summary: "Top rated movies in Con-Artists" template: { - name: sub_genre, keyword: "con-artist,con-man", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-con-artists" + letterboxd_list: "theme-con-artists", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Cop": - summary: "Top rated movies in Cop" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_cop.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_cop.png schedule: weekly(tuesday) + summary: "Top rated movies in Cop" template: { - name: sub_genre, keyword: "detective,police-car,police-detective,police-officer,police-station,police", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-cop" + letterboxd_list: "theme-cop", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Costume Drama": - summary: "Top rated movies in Costume Drama" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_costume-drama.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_costume-drama.png schedule: weekly(tuesday) + summary: "Top rated movies in Costume Drama" template: { - name: sub_genre, keyword: "costume-drama", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-costume-drama" + letterboxd_list: "theme-costume-drama", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Courtroom": - summary: "Top rated movies in Courtroom" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_courtroom.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_courtroom.png schedule: weekly(tuesday) + summary: "Top rated movies in Courtroom" template: { - name: sub_genre, keyword: "courtroom,judge,lawyer", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-courtroom" + letterboxd_list: "theme-courtroom", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Cyberpunk": - summary: "Top rated movies in Cyberpunk" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_cyberpunk.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_cyberpunk.png schedule: weekly(tuesday) + summary: "Top rated movies in Cyberpunk" template: { - name: sub_genre, keyword: "cyberpunk,future", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-cyberpunk" + letterboxd_list: "theme-cyberpunk", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Dark Fantasy": - summary: "Top rated movies in Dark Fantasy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_dark-fantasy.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_dark-fantasy.png schedule: weekly(tuesday) + summary: "Top rated movies in Dark Fantasy" template: { - name: sub_genre, keyword: "dark-fantasy", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-dark-fantasy" + letterboxd_list: "theme-dark-fantasy", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 + } + + "Top Rated in Demonic": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_demonic.png + schedule: weekly(tuesday) + summary: "Top rated movies in Demonic" + template: { + keyword: "demon", + language: "en", + letterboxd_list: "theme-demonic", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Detective": - summary: "Top rated movies in Detective" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_detective.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_detective.png schedule: weekly(tuesday) + summary: "Top rated movies in Detective" template: { - name: sub_genre, keyword: "detective,police-detective", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-detective" + letterboxd_list: "theme-detective", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 + } + + "Top Rated in Dinosaurs": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_dinosaurs.png + schedule: weekly(tuesday) + summary: "Top rated movies in Dinosaurs" + template: { + keyword: "dinosaur", + language: "en", + letterboxd_list: "theme-dinosaurs", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Disaster": - summary: "Top rated movies in Disaster" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_disaster.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_disaster.png schedule: weekly(tuesday) + summary: "Top rated movies in Disaster" template: { - name: sub_genre, keyword: "disaster,disaster-film", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-disaster" + letterboxd_list: "theme-disaster", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Dragons": - summary: "Top rated movies in Dragons" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_dragons.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_dragons.png schedule: weekly(tuesday) + summary: "Top rated movies in Dragons" template: { - name: sub_genre, keyword: "dragon", - type: "movie,tv_movie", - rating.gte: 3, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-dragons" + letterboxd_list: "theme-dragons", + name: sub_genre, + rating.gte: 3, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Dystopian": - summary: "Top rated movies in Dystopian" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_dystopian.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_dystopian.png schedule: weekly(tuesday) + summary: "Top rated movies in Dystopian" template: { - name: sub_genre, keyword: "dystopia", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-dystopian" + letterboxd_list: "theme-dystopian", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Epics": - summary: "Top rated movies in Epics" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_epics.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_epics.png schedule: weekly(tuesday) + summary: "Top rated movies in Epics" template: { - name: sub_genre, keyword: "epic", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-epics" + letterboxd_list: "theme-epics", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Espionage": - summary: "Top rated movies in Espionage" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_espionage.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_espionage.png schedule: weekly(tuesday) + summary: "Top rated movies in Espionage" template: { - name: sub_genre, keyword: "espionage", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-espionage" + letterboxd_list: "theme-espionage", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Experimental": - summary: "Top rated movies in Experimental" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_experimental.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_experimental.png schedule: weekly(wednesday) + summary: "Top rated movies in Experimental" template: { - name: sub_genre, keyword: "experimental-film", - type: "movie,tv_movie", - rating.gte: 3, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-experimental" + letterboxd_list: "theme-experimental", + name: sub_genre, + rating.gte: 3, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Fairytales": - summary: "Top rated movies in Fairytales" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_fairytales.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_fairytales.png schedule: weekly(wednesday) + summary: "Top rated movies in Fairytales" template: { - name: sub_genre, keyword: "based-on-fairy-tale", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-fairytale" + letterboxd_list: "theme-fairytale", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Found Footage": - summary: "Top rated movies in Found Footage" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_found-footage.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_found-footage.png schedule: weekly(wednesday) + summary: "Top rated movies in Found Footage" template: { - name: sub_genre, - keyword: "found-footage", genre: "horror", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, + keyword: "found-footage", language: "en", - letterboxd_list: "theme-found-footage" + letterboxd_list: "theme-found-footage", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Fugitives": - summary: "Top rated movies in Fugitives" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_fugitives.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_fugitives.png schedule: weekly(wednesday) + summary: "Top rated movies in Fugitives" template: { - name: sub_genre, keyword: "fugitive,on-the-run", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-fugitives" + letterboxd_list: "theme-fugitives", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Gangster": - summary: "Top rated movies in Gangster" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_gangster.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_gangster.png schedule: weekly(wednesday) + summary: "Top rated movies in Gangster" template: { - name: sub_genre, keyword: "gangster", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-gangster" + letterboxd_list: "theme-gangster", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Ghosts": - summary: "Top rated movies in Ghosts" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_ghosts.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_ghosts.png schedule: weekly(wednesday) + summary: "Top rated movies in Ghosts" template: { - name: sub_genre, - keyword: "ghost", genre: "horror", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, + keyword: "ghost", language: "en", - letterboxd_list: "theme-ghosts" + letterboxd_list: "theme-ghosts", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 + } "Top Rated in Gothic": - summary: "Top rated movies in Gothic" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_gothic.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_gothic.png schedule: weekly(wednesday) + summary: "Top rated movies in Gothic" template: { - name: sub_genre, - keyword: "gothic", genre: "horror", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, + keyword: "gothic", language: "en", - letterboxd_list: "theme-gothic" + letterboxd_list: "theme-gothic", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Heartbreak": - summary: "Top rated movies in Heartbreak" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_heartbreak.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_heartbreak.png schedule: weekly(wednesday) + summary: "Top rated movies in Heartbreak" template: { - name: sub_genre, keyword: "broken-heart", - type: "movie,tv_movie", - rating.gte: 1, - votes.gte: 10, language: "en", - letterboxd_list: "theme-heartbreak" + letterboxd_list: "theme-heartbreak", + name: sub_genre, + rating.gte: 1, + type: "movie,tv_movie", + votes.gte: 10 } "Top Rated in Heists": - summary: "Top rated movies in Heists" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_heists.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_heists.png schedule: weekly(wednesday) + summary: "Top rated movies in Heists" template: { - name: sub_genre, keyword: "heist,robbery", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-heists" + letterboxd_list: "theme-heists", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Historical Event": - summary: "Top rated movies in Historical Event" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_historical-event.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_historical-event.png schedule: weekly(wednesday) + summary: "Top rated movies in Historical Event" template: { - name: sub_genre, keyword: "historical-event", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-historical-event" + letterboxd_list: "theme-historical-event", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Hostage": - summary: "Top rated movies in Hostage" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_hostage.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_hostage.png schedule: weekly(wednesday) + summary: "Top rated movies in Hostage" template: { - name: sub_genre, + imdb_extra_1: "https://www.imdb.com/search/keyword/?title_type=movie,tv_movie&user_rating=5.0,10.0&num_votes=1000,&keywords=hostage,kidnapping&languages=en&sort=user_rating,desc", keyword: "hostage-situation", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", letterboxd_list: "theme-hostage", - imdb_extra_1: "https://www.imdb.com/search/keyword/?title_type=movie,tv_movie&user_rating=5.0,10.0&num_votes=1000,&keywords=hostage,kidnapping&languages=en&sort=user_rating,desc" + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Hustle": - summary: "Top rated movies in Hustle" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_hustle.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_hustle.png schedule: weekly(wednesday) + summary: "Top rated movies in Hustle" template: { - name: sub_genre, keyword: "hustler,gambling", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-hustle" + letterboxd_list: "theme-hustle", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Martial-Arts": - summary: "Top rated movies in Martial-Arts" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_martial-arts.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_martial-arts.png schedule: weekly(wednesday) + summary: "Top rated movies in Martial-Arts" template: { - name: sub_genre, - keyword: "martial-artist,martial-arts-master,martial-arts", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, - language: "en", - letterboxd_list: "theme-martial-arts", imdb_extra_1: "https://www.imdb.com/list/ls000099643", imdb_extra_2: "https://www.imdb.com/list/ls068611186", imdb_extra_3: "https://www.imdb.com/list/ls068378513", - imdb_extra_4: "https://www.imdb.com/list/ls090404120" + imdb_extra_4: "https://www.imdb.com/list/ls090404120", + keyword: "martial-artist,martial-arts-master,martial-arts", + language: "en", + letterboxd_list: "theme-martial-arts", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Medical": - summary: "Top rated movies in Medical" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_medical.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_medical.png schedule: weekly(wednesday) + summary: "Top rated movies in Medical" template: { - name: sub_genre, keyword: "medical", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", - letterboxd_list: "theme-medical" + letterboxd_list: "theme-medical", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Medieval": - summary: "Top rated movies in Medieval" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_medieval.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_medieval.png schedule: weekly(wednesday) + summary: "Top rated movies in Medieval" template: { - name: sub_genre, keyword: "medieval-times", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-medieval" + letterboxd_list: "theme-medieval", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Melodrama": - summary: "Top rated movies in Melodrama" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_melodrama.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_melodrama.png schedule: weekly(thursday) + summary: "Top rated movies in Melodrama" template: { - name: sub_genre, keyword: "melodrama", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-melodrama" + letterboxd_list: "theme-melodrama", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Military": - summary: "Top rated movies in Military" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_military.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_military.png schedule: weekly(thursday) + summary: "Top rated movies in Military" template: { - name: sub_genre, keyword: "military,soldier", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-military" + letterboxd_list: "theme-military", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Mindfuck": - summary: "Top rated movies in Mindfuck" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_mindfuck.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_mindfuck.png schedule: weekly(thursday) + summary: "Top rated movies in Mindfuck" template: { - name: sub_genre, + imdb_extra_1: "https://www.imdb.com/list/ls066069214", keyword: "mindbender", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", letterboxd_list: "theme-mindfuck", - imdb_extra_1: "https://www.imdb.com/list/ls066069214", - trakt_extra_1: https://trakt.tv/users/hdlists/lists/mindfuck-movies + name: sub_genre, + rating.gte: 5, + trakt_extra_1: "https://trakt.tv/users/hdlists/lists/mindfuck-movies", + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Mockumentary": - summary: "Top rated movies in Mockumentary" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_mockumentary.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_mockumentary.png schedule: weekly(thursday) + summary: "Top rated movies in Mockumentary" template: { - name: sub_genre, + imdb_extra_1: "https://www.imdb.com/list/ls027069047", keyword: "mockumentary,fake-documentary", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", letterboxd_list: "theme-mockumentary", - imdb_extra_1: "https://www.imdb.com/list/ls027069047" + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Monsters": - summary: "Top rated movies in Monsters" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_monsters.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_monsters.png schedule: weekly(thursday) + summary: "Top rated movies in Monsters" template: { - name: sub_genre, - keyword: "creature,monster,creature-feature", genre: "horror", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, + keyword: "creature,monster,creature-feature", language: "en", - letterboxd_list: "theme-monsters" + letterboxd_list: "theme-monsters", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Mythology": - summary: "Top rated movies in Mythology" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_mythology.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_mythology.png schedule: weekly(thursday) + summary: "Top rated movies in Mythology" template: { - name: sub_genre, keyword: "mythology", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-mythology" + letterboxd_list: "theme-mythology", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Naval": - summary: "Top rated movies in Naval" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_naval.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_naval.png schedule: weekly(thursday) + summary: "Top rated movies in Naval" template: { - name: sub_genre, keyword: "naval-battle", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-naval" + letterboxd_list: "theme-naval", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Ninjas": - summary: "Top rated movies in Ninjas" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_ninjas.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_ninjas.png schedule: weekly(thursday) + summary: "Top rated movies in Ninjas" template: { - name: sub_genre, keyword: "ninja", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-ninjas" + letterboxd_list: "theme-ninjas", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Novel": - summary: "Top rated movies in Novel" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_novel.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_novel.png schedule: weekly(thursday) + summary: "Top rated movies in Novel" template: { - name: sub_genre, keyword: "based-on-book,based-on-novel", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-novel" + letterboxd_list: "theme-novel", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Occult": - summary: "Top rated movies in Occult" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_occult.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_occult.png schedule: weekly(thursday) + summary: "Top rated movies in Occult" template: { - name: sub_genre, keyword: "occult", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-occult" + letterboxd_list: "theme-occult", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Outerspace": - summary: "Top rated movies in Outerspace" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_outerspace.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_outerspace.png schedule: weekly(thursday) + summary: "Top rated movies in Outerspace" template: { - name: sub_genre, keyword: "outer-space,space-travel", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", letterboxd_list: "theme-outer-space", - trakt_extra_1: https://trakt.tv/users/hdlists/lists/outer-space-space-exploration-movies + name: sub_genre, + rating.gte: 5, + trakt_extra_1: "https://trakt.tv/users/hdlists/lists/outer-space-space-exploration-movies", + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Outlaw": - summary: "Top rated movies in Outlaw" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_outlaw.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_outlaw.png schedule: weekly(thursday) + summary: "Top rated movies in Outlaw" template: { - name: sub_genre, keyword: "outlaw", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", - letterboxd_list: "theme-outlaw" + letterboxd_list: "theme-outlaw", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Pandemic": - summary: "Top rated movies in Pandemic" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_pandemic.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_pandemic.png schedule: weekly(thursday) + summary: "Top rated movies in Pandemic" template: { - name: sub_genre, keyword: "pandemic", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-pandemic" + letterboxd_list: "theme-pandemic", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Paranormal": - summary: "Top rated movies in Paranormal" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_paranormal.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_paranormal.png schedule: weekly(thursday) + summary: "Top rated movies in Paranormal" template: { - name: sub_genre, keyword: "paranormal-phenomenon", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-paranormal" + letterboxd_list: "theme-paranormal", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Period Drama": - summary: "Top rated movies in Period Drama" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_period-drama.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_period-drama.png schedule: weekly(friday) + summary: "Top rated movies in Period Drama" template: { - name: sub_genre, keyword: "period-drama", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-period-drama" + letterboxd_list: "theme-period-drama", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 + } + + "Top Rated in Petrolhead": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_petrolhead.png + schedule: weekly(monday) + summary: "Top rated movies in Petrolhead" + template: { + keyword.any: "car-racing,racing", + language: "en", + letterboxd_list: "theme-petrolhead", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Philosophical": - summary: "Top rated movies in Philosophical" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_philosophical.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_philosophical.png schedule: weekly(friday) + summary: "Top rated movies in Philosophical" template: { - name: sub_genre, keyword: "philosophy", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", letterboxd_list: "theme-philosophical", - trakt_extra_1: https://trakt.tv/users/rizreflects/lists/philosophical + name: sub_genre, + rating.gte: 5, + trakt_extra_1: "https://trakt.tv/users/rizreflects/lists/philosophical", + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Political": - summary: "Top rated movies in Political" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_political.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_political.png schedule: weekly(friday) + summary: "Top rated movies in Political" template: { - name: sub_genre, keyword: "politics,politician", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-political" + letterboxd_list: "theme-political", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Post-Apocalyptic": - summary: "Top rated movies in Post-Apocalyptic" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_post-apocalyptic.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_post-apocalyptic.png schedule: weekly(friday) + summary: "Top rated movies in Post-Apocalyptic" template: { - name: sub_genre, keyword: "post-apocalypse", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-post-apocalyptic" + letterboxd_list: "theme-post-apocalyptic", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Prehistoric": - summary: "Top rated movies in Prehistoric" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_prehistoric.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_prehistoric.png schedule: weekly(friday) + summary: "Top rated movies in Prehistoric" template: { - name: sub_genre, keyword: "prehistoric-times", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", + letterboxd_extra_1: "https://letterboxd.com/mikkelhh/list/before-civilization-prehistoric-films/", letterboxd_list: "theme-prehistoric", - letterboxd_extra_1: "https://letterboxd.com/mikkelhh/list/before-civilization-prehistoric-films/" + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Prison": - summary: "Top rated movies in Prison" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_prison.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_prison.png schedule: weekly(friday) + summary: "Top rated movies in Prison" template: { - name: sub_genre, keyword: "prison,prisoner,prison-guard", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", - letterboxd_list: "theme-prison" + letterboxd_list: "theme-prison", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Psychedelic": - summary: "Top rated movies in Psychedelic" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_psychedelic.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_psychedelic.png schedule: weekly(friday) + summary: "Top rated movies in Psychedelic" template: { - name: sub_genre, keyword: "psychedelic", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-psychedelic" + letterboxd_list: "theme-psychedelic", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Psychological": - summary: "Top rated movies in Psychological" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_psychological.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_psychological.png schedule: weekly(friday) + summary: "Top rated movies in Psychological" template: { - name: sub_genre, keyword: "psychological", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-psychological" + letterboxd_list: "theme-psychological", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Religion": - summary: "Top rated movies in Religion" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_religion.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_religion.png schedule: weekly(friday) + summary: "Top rated movies in Religion" template: { - name: sub_genre, keyword: "faith,religion,prayer", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", - letterboxd_list: "theme-religous" + letterboxd_list: "theme-religous", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Remake": - summary: "Top rated movies in Remake" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_remake.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_remake.png schedule: weekly(friday) + summary: "Top rated movies in Remake" template: { - name: sub_genre, keyword: "remake", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 100, language: "en", + letterboxd_extra_1: "https://letterboxd.com/l_shelby/list/remakes/", letterboxd_list: "theme-remake", - letterboxd_extra_1: "https://letterboxd.com/l_shelby/list/remakes/" + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Revenge": - summary: "Top rated movies in Revenge" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_revenge.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_revenge.png schedule: weekly(friday) + summary: "Top rated movies in Revenge" template: { - name: sub_genre, keyword: "revenge-plot", - type: "movie,tv_movie", - rating.gte: 3, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-revenge" + letterboxd_list: "theme-revenge", + name: sub_genre, + rating.gte: 3, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Robots": - summary: "Top rated movies in Robots" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_robots.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_robots.png schedule: weekly(friday) + summary: "Top rated movies in Robots" template: { - name: sub_genre, keyword: "giant-robot", - type: "movie,tv_movie", - rating.gte: 3, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-robots" + letterboxd_list: "theme-robots", + name: sub_genre, + rating.gte: 3, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Romantic Comedy": - summary: "Top rated movies in Romantic Comedy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_romantic-comedy.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_romantic-comedy.png schedule: weekly(friday) + summary: "Top rated movies in Romantic Comedy" template: { - name: sub_genre, genre: "romance,comedy", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-romantic-comedy" + letterboxd_list: "theme-romantic-comedy", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } filters: genre: Comedy year.gte: 1960 "Top Rated in Romantic Drama": - summary: "Top rated movies in Romantic Drama" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_romantic-drama.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_romantic-drama.png schedule: weekly(friday) + summary: "Top rated movies in Romantic Drama" template: { - name: sub_genre, genre: "romance,drama", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-romantic-drama" + letterboxd_list: "theme-romantic-drama", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } filters: genre: Drama year.gte: 1960 "Top Rated in Samurai": - summary: "Top rated movies in Samurai" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_samurai.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_samurai.png schedule: weekly(friday) + summary: "Top rated movies in Samurai" template: { - name: sub_genre, keyword: "samurai,sword-fight", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", + letterboxd_extra_1: "https://letterboxd.com/jhcrotinger/list/samurai/", letterboxd_list: "theme-samurai", - letterboxd_extra_1: "https://letterboxd.com/jhcrotinger/list/samurai/" + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Satire": - summary: "Top rated movies in Satire" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_satire.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_satire.png schedule: weekly(friday) + summary: "Top rated movies in Satire" template: { - name: sub_genre, - keyword: "satire", genre: "comedy", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, + keyword: "satire", language: "en", - letterboxd_list: "theme-satire" + letterboxd_list: "theme-satire", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Serial Killers": - summary: "Top rated movies in Serial Killers" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_serial-killers.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_serial-killers.png schedule: weekly(saturday) + summary: "Top rated movies in Serial Killers" template: { - name: sub_genre, keyword: "serial-killer,murder", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-serial-killers" + letterboxd_list: "theme-serial-killers", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Slasher": - summary: "Top rated movies in Slasher" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_slasher.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_slasher.png schedule: weekly(saturday) + summary: "Top rated movies in Slasher" template: { - name: sub_genre, - keyword: "slasher", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, - language: "en", - letterboxd_list: "theme-slasher", imdb_extra_1: "https://www.imdb.com/list/ls053988992", imdb_extra_2: "https://www.imdb.com/list/ls029703473", imdb_extra_3: "https://www.imdb.com/list/ls002540370", - imdb_extra_4: "https://www.imdb.com/list/ls062357250" + imdb_extra_4: "https://www.imdb.com/list/ls062357250", + keyword: "slasher", + language: "en", + letterboxd_list: "theme-slasher", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Space Opera": - summary: "Top rated movies in Space Opera" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_space-opera.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_space-opera.png schedule: weekly(saturday) + summary: "Top rated movies in Space Opera" template: { - name: sub_genre, keyword: "space-opera", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-space-opera" + letterboxd_list: "theme-space-opera", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Spaghetti Western": - summary: "Top rated movies in Spaghetti Western" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_spaghetti-western.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_spaghetti-western.png schedule: weekly(saturday) + summary: "Top rated movies in Spaghetti Western" template: { - name: sub_genre, keyword: "spaghetti-western", - type: "movie,tv_movie", - rating.gte: 1, - votes.gte: 10, language: "en", - letterboxd_list: "theme-spaghetti-western" + letterboxd_list: "theme-spaghetti-western", + name: sub_genre, + rating.gte: 1, + type: "movie,tv_movie", + votes.gte: 10 } "Top Rated in Splatter": - summary: "Top rated movies in Splatter" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_splatter.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_splatter.png schedule: weekly(saturday) + summary: "Top rated movies in Splatter" template: { - name: sub_genre, - keyword: "splatter", genre: "horror", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 1000, + keyword: "splatter", language: "en", - letterboxd_list: "theme-splatter" + letterboxd_list: "theme-splatter", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Steampunk": - summary: "Top rated movies in Steampunk" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_steampunk.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_steampunk.png schedule: weekly(saturday) + summary: "Top rated movies in Steampunk" template: { - name: sub_genre, keyword: "steampunk", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-steampunk" + letterboxd_list: "theme-steampunk", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Stoner": - summary: "Top rated movies in Stoner" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_stoner.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_stoner.png schedule: weekly(saturday) + summary: "Top rated movies in Stoner" template: { - name: sub_genre, keyword: "stoner,marijuana", - type: "movie,tv_movie", - rating.gte: 1, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-stoner" + letterboxd_list: "theme-stoner", + name: sub_genre, + rating.gte: 1, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Stop-Motion": - summary: "Top rated movies in Stop-Motion" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_stop-motion.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_stop-motion.png schedule: weekly(saturday) + summary: "Top rated movies in Stop-Motion" template: { - name: sub_genre, keyword: "stop-motion", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 100, language: "en", + letterboxd_extra_1: "https://letterboxd.com/savage_/list/stop-motion/", letterboxd_list: "theme-stop-motion", - letterboxd_extra_1: "https://letterboxd.com/savage_/list/stop-motion/" + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Superhero": summary: "Top rated movies in Superhero" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_superhero.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_superhero.png schedule: weekly(saturday) template: { name: sub_genre, @@ -1245,260 +1303,260 @@ collections: } "Top Rated in Supernatural": - summary: "Top rated movies in Supernatural" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_supernatural.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_supernatural.png schedule: weekly(saturday) + summary: "Top rated movies in Supernatural" template: { - name: sub_genre, keyword: "supernatural-power", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-supernatural" + letterboxd_list: "theme-supernatural", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Surrealism": - summary: "Top rated movies in Surrealism" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_surrealism.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_surrealism.png schedule: weekly(saturday) + summary: "Top rated movies in Surrealism" template: { - name: sub_genre, keyword: "surrealism", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-surrealism" + letterboxd_list: "theme-surrealism", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Survival": - summary: "Top rated movies in Survival" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_survival.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_survival.png schedule: weekly(saturday) + summary: "Top rated movies in Survival" template: { - name: sub_genre, keyword: "survival,survivor", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", letterboxd_list: "theme-survival", - trakt_extra_1: https://trakt.tv/users/rizreflects/lists/survival + name: sub_genre, + rating.gte: 5, + trakt_extra_1: "https://trakt.tv/users/rizreflects/lists/survival", + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Swashbuckler": - summary: "Top rated movies in Swashbuckler" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_swashbuckler.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_swashbuckler.png schedule: weekly(saturday) + summary: "Top rated movies in Swashbuckler" template: { - name: sub_genre, keyword: "swashbuckler", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", - letterboxd_list: "theme-swashbuckler" + letterboxd_list: "theme-swashbuckler", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Sword & Sandal": - summary: "Top rated movies in Sword & Sandal" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_sword-sandal.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_sword-sandal.png schedule: weekly(saturday) + summary: "Top rated movies in Sword & Sandal" template: { - name: sub_genre, + imdb_extra_1: "https://www.imdb.com/list/ls043130664", keyword: "sword-and-sandal", - type: "movie,tv_movie", - rating.gte: 3, - votes.gte: 1000, language: "en", letterboxd_list: "theme-sword-sandal", - imdb_extra_1: "https://www.imdb.com/list/ls043130664" + name: sub_genre, + rating.gte: 3, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Sword & Sorcery": - summary: "Top rated movies in Sword & Sorcery" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_sword-sorcery.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_sword-sorcery.png schedule: weekly(saturday) + summary: "Top rated movies in Sword & Sorcery" template: { - name: sub_genre, + imdb_extra_1: "https://www.imdb.com/list/ls022909805", keyword: "sword-and-sorcery", - type: "movie,tv_movie", - rating.gte: 3, - votes.gte: 1000, language: "en", letterboxd_list: "theme-sword-sorcery", - imdb_extra_1: "https://www.imdb.com/list/ls022909805" + name: sub_genre, + rating.gte: 3, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Time Travel": - summary: "Top rated movies in Time Travel" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_time-travel.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_time-travel.png schedule: weekly(sunday) + summary: "Top rated movies in Time Travel" template: { - name: sub_genre, keyword: "time-travel", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", letterboxd_list: "theme-time-travel", - trakt_extra_1: https://trakt.tv/users/rizreflects/lists/time-travel + name: sub_genre, + rating.gte: 5, + trakt_extra_1: "https://trakt.tv/users/rizreflects/lists/time-travel", + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Treasure Hunt": - summary: "Top rated movies in Treasure Hunt" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_treasure-hunt.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_treasure-hunt.png schedule: weekly(sunday) + summary: "Top rated movies in Treasure Hunt" template: { - name: sub_genre, keyword: "treasure-hunt", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", letterboxd_list: "theme-treasure-hunt", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in True Story": - summary: "Top rated movies in True Story" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_true-story.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_true-story.png schedule: weekly(sunday) + summary: "Top rated movies in True Story" template: { - name: sub_genre, keyword: "based-on-true-story", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", letterboxd_list: "theme-true-story", - trakt_extra_1: https://trakt.tv/users/hdlists/lists/based-on-or-inspired-by-a-true-story, - trakt_extra_2: https://trakt.tv/users/rizreflects/lists/true-story-based + name: sub_genre, + rating.gte: 5, + trakt_extra_1: "https://trakt.tv/users/hdlists/lists/based-on-or-inspired-by-a-true-story", + trakt_extra_2: "https://trakt.tv/users/rizreflects/lists/true-story-based", + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Urban Fantasy": - summary: "Top rated movies in Urban Fantasy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_urban-fantasy.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_urban-fantasy.png schedule: weekly(sunday) + summary: "Top rated movies in Urban Fantasy" template: { - name: sub_genre, keyword: "urban-fantasy", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-urban-fantasy" + letterboxd_list: "theme-urban-fantasy", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Utopian": - summary: "Top rated movies in Utopian" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_utopian.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_utopian.png schedule: weekly(sunday) + summary: "Top rated movies in Utopian" template: { - name: sub_genre, + imdb_extra_1: "https://www.imdb.com/list/ls041227401", keyword: "utopia", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", letterboxd_list: "theme-utopian", - imdb_extra_1: "https://www.imdb.com/list/ls041227401" + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Vampires": - summary: "Top rated movies in Vampires" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_vampires.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_vampires.png schedule: weekly(sunday) + summary: "Top rated movies in Vampires" template: { - name: sub_genre, keyword: "vampire", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-vampires" + letterboxd_list: "theme-vampires", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Video Game": - summary: "Top rated movies in Video Game" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_video-game.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_video-game.png schedule: weekly(sunday) + summary: "Top rated movies in Video Game" template: { - name: sub_genre, keyword: "based-on-video-game", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-video-game" + letterboxd_list: "theme-video-game", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Werewolves": - summary: "Top rated movies in Werewolves" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_werewolves.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_werewolves.png schedule: weekly(sunday) + summary: "Top rated movies in Werewolves" template: { - name: sub_genre, keyword.any: "werewolf,werewolves", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-werewolves" + letterboxd_list: "theme-werewolves", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Whodunit?": - summary: "Top rated movies in Whodunit?" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_whodunit.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_whodunit.png schedule: weekly(sunday) + summary: "Top rated movies in Whodunit?" template: { - name: sub_genre, keyword: "whodunit", - type: "movie,tv_movie", - rating.gte: 2, - votes.gte: 100, language: "en", letterboxd_list: "theme-whodunit", + name: sub_genre, + rating.gte: 2, + type: "movie,tv_movie", + votes.gte: 100 } "Top Rated in Wizardry & Witchcraft": - summary: "Top rated movies in Wizardry & Witchcraft" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_wizardry-witchcraft.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_wizardry-witchcraft.png schedule: weekly(sunday) + summary: "Top rated movies in Wizardry & Witchcraft" template: { - name: sub_genre, keyword.any: "witch,wizard", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-wizardry-witchcraft" + letterboxd_list: "theme-wizardry-witchcraft", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in World War": - summary: "Top rated movies in World War" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_world-war.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_world-war.png schedule: weekly(sunday) + summary: "Top rated movies in World War" template: { - name: sub_genre, keyword.any: "world-war-one,world-war-two", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-world-war" + letterboxd_list: "theme-world-war", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } "Top Rated in Zombies": - summary: "Top rated movies in Zombies" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_subgenre_top/subgenre_top_zombies.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_subgenre_top/subgenre_top_zombies.png schedule: weekly(sunday) + summary: "Top rated movies in Zombies" template: { - name: sub_genre, keyword: "zombie", - type: "movie,tv_movie", - rating.gte: 5, - votes.gte: 1000, language: "en", - letterboxd_list: "theme-zombie" + letterboxd_list: "theme-zombie", + name: sub_genre, + rating.gte: 5, + type: "movie,tv_movie", + votes.gte: 1000 } \ No newline at end of file diff --git a/0x5f3/metadata/movie/8_studio.yml b/0x5f3/collections/movie/140_studio.yml similarity index 67% rename from 0x5f3/metadata/movie/8_studio.yml rename to 0x5f3/collections/movie/140_studio.yml index 66227c0..2f96779 100644 --- a/0x5f3/metadata/movie/8_studio.yml +++ b/0x5f3/collections/movie/140_studio.yml @@ -1,11 +1,11 @@ -## 8_studio.yml +## _studio.yml templates: company: collection_mode: hide collection_order: alpha delete_not_scheduled: false - sort_title: "+8_Z_<>" + sort_title: "+140_<>" sync_mode: sync visible_home: false visible_library: false @@ -20,191 +20,191 @@ templates: collections: "Columbia": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_columbia.png summary: "A collection from Columbia" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_columbia.png template: { - name: company, - type: "movie,tv_movie", company: "co0050868", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Criterion": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_criterion-collection.png summary: "A collection from Criterion" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_criterion-collection.png template: { - name: company, - type: "movie,tv_movie", company: "co0044076", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "DC Entertainment": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_dc-entertainment.png summary: "A collection from DC Entertainment" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_dc-entertainment.png template: { - name: company, - type: "movie,tv_movie", company: "co0123927", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "DreamWorks": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_dreamworks.png summary: "A collection from DreamWorks" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_dreamworks.png template: { - name: company, - type: "movie,tv_movie", company: "co0040938,co0129164,co0819670,co0396719,co0252576", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Lionsgate": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_lionsgate.png summary: "A collection from Lionsgate" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_lionsgate.png template: { - name: company, - type: "movie,tv_movie", company: "co0807819,co0006881,co0060306,co0179392", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Lucasfilm": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_lucasfilm.png summary: "A collection from Lucasfilm" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_lucasfilm.png template: { - name: company, - type: "movie,tv_movie", company: "co0071326,co0196838,co0049348", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Marvel Studios": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_marvel-studios.png summary: "A collection from Marvel Studios" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_marvel-studios.png template: { - name: company, - type: "movie,tv_movie", company: "co0051941", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "MGM": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_mgm.png summary: "A collection from MGM" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_mgm.png template: { - name: company, - type: "movie,tv_movie", company: "co0007143", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Paramount Pictures": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_paramount-pictures.png summary: "A collection from Paramount Pictures" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_paramount-pictures.png template: { - name: company, - type: "movie,tv_movie", company: "co0023400", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Pixar": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_pixar.png summary: "A collection from Pixar" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_pixar.png template: { - name: company, - type: "movie,tv_movie", company: "co0017902,co0348691", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Studio Ghibli": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_studio-ghibli.png summary: "A collection from Studio Ghibli" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_studio-ghibli.png template: { - name: company, - type: "movie,tv_movie", company: "co0048420", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Samuel Goldwyn Company": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_samuel-goldwyn-company.png summary: "A collection from Samuel Goldwyn Company" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_samuel-goldwyn-company.png template: { - name: company, - type: "movie,tv_movie", company: "co0016710", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "SONY": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_sony.png summary: "A collection from SONY" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_sony.png template: { - name: company, - type: "movie,tv_movie", company: "co0026545,co0014453,co0121181,co0001799,co0208736", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Touchstone": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_touchstone.png summary: "A collection from Touchstone" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_touchstone.png template: { - name: company, - type: "movie,tv_movie", company: "co0049348", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Twentieth Century Fox": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_twentieth-century-fox.png summary: "A collection from Twentieth Century Fox" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_twentieth-century-fox.png template: { - name: company, - type: "movie,tv_movie", company: "co0000756", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "United Artists": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_united-artists.png summary: "A collection from United Artists" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_united-artists.png template: { - name: company, - type: "movie,tv_movie", company: "co0026841", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Universal": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_universal.png summary: "A collection from Universal" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_universal.png template: { - name: company, - type: "movie,tv_movie", company: "co0005073", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Walt Disney": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_walt-disney.png summary: "A collection from Walt Disney" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_walt-disney.png template: { - name: company, - type: "movie,tv_movie", company: "co0226183,co0008970", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } "Warner Bros": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_studio/studio_warner-bros.png summary: "A collection from Warner Bros" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/8_studio/studio_warner-bros.png template: { - name: company, - type: "movie,tv_movie", company: "co0002663", - language: "en" + language: "en", + name: company, + type: "movie,tv_movie" } \ No newline at end of file diff --git a/0x5f3/metadata/movie/9_collections.yml b/0x5f3/collections/movie/200_collections.yml similarity index 53% rename from 0x5f3/metadata/movie/9_collections.yml rename to 0x5f3/collections/movie/200_collections.yml index b4b003f..0f35bb9 100644 --- a/0x5f3/metadata/movie/9_collections.yml +++ b/0x5f3/collections/movie/200_collections.yml @@ -1,12 +1,12 @@ -## 9_collections.yml +## _collections.yml default_template: - tmdb_collection_details: +9_<> - minimum_items: 2 delete_not_scheduled: false + minimum_items: 2 + tmdb_collection_details: +200_<> dynamic_collections: TMDb Collections: - type: tmdb_collection + remove_prefix: The remove_suffix: Collection - remove_prefix: The \ No newline at end of file + type: tmdb_collection \ No newline at end of file diff --git a/0x5f3/collections/movie/_debug.yml b/0x5f3/collections/movie/_debug.yml new file mode 100644 index 0000000..0fb1b15 --- /dev/null +++ b/0x5f3/collections/movie/_debug.yml @@ -0,0 +1 @@ +## _debug.yml diff --git a/0x5f3/collections/movie/_maintenance.yml b/0x5f3/collections/movie/_maintenance.yml new file mode 100644 index 0000000..4717715 --- /dev/null +++ b/0x5f3/collections/movie/_maintenance.yml @@ -0,0 +1,18 @@ +## _maintenance.yml + +collections: + refresh_added: + build_collection: false + item_refresh: true + plex_search: + all: + added: 1 + schedule: daily + + refresh_released: + build_collection: false + item_refresh: true + plex_search: + all: + released: 14 + schedule: weekly(sunday) \ No newline at end of file diff --git a/0x5f3/metadata/movie/0_radarr.yml b/0x5f3/collections/movie/_radarr.yml similarity index 64% rename from 0x5f3/metadata/movie/0_radarr.yml rename to 0x5f3/collections/movie/_radarr.yml index d1ed90a..01e58ac 100644 --- a/0x5f3/metadata/movie/0_radarr.yml +++ b/0x5f3/collections/movie/_radarr.yml @@ -1,9 +1,9 @@ -## 0_radarr.yml +## _radarr.yml collections: "": build_collection: false - schedule: daily + mdblist_list: radarr_add_missing: true radarr_folder: - mdblist_list: \ No newline at end of file + schedule: daily \ No newline at end of file diff --git a/0x5f3/metadata/show/1_suggested.yml b/0x5f3/collections/show/010_suggested.yml similarity index 53% rename from 0x5f3/metadata/show/1_suggested.yml rename to 0x5f3/collections/show/010_suggested.yml index 73cacbe..b565d56 100644 --- a/0x5f3/metadata/show/1_suggested.yml +++ b/0x5f3/collections/show/010_suggested.yml @@ -1,10 +1,10 @@ -## 1_suggested.yml +## _suggested.yml templates: plex: collection_mode: hide delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+010_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -13,7 +13,7 @@ templates: trakt: collection_mode: hide delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+010_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -65,7 +65,7 @@ templates: collection_mode: hide collection_order: custom delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+010_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -84,7 +84,7 @@ templates: # collection_mode: hide # collection_order: custom # delete_not_scheduled: false -# sort_title: "+1_<>_<>" +# sort_title: "+010_<>_<>" # sync_mode: sync # visible_home: false # visible_library: false @@ -104,56 +104,58 @@ templates: collections: "Random TV shows": - summary: "Random selection of TV shows" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_random.png - visible_library: true + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_random.png schedule: daily + summary: "Random selection of TV shows" + visible_library: true template: { name: plex, - num: 0 + num: "0", + pos: "010" } smart_filter: any: audio_language: English, english - sort_by: random limit: 250 + sort_by: random "Recently Added TV shows": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_recently-added.png summary: "Recently added TV shows" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_recently-added.png visible_library: true template: { name: plex, - num: 0 + num: "1" } smart_filter: any: audio_language: English, english - sort_by: added.desc limit: 200 + sort_by: added.desc "Recently Released TV shows": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_recently-released.png summary: "Recently released TV shows" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_recently-released.png visible_library: true template: { name: plex, - num: 0 + num: "2" } smart_filter: any: audio_language: English, english - sort_by: release.desc limit: 200 + sort_by: release.desc "Recommended TV shows": collection_order: alpha + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_recommended.png summary: "Based on personally favourited TV shows" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_recommended.png template: { name: trakt, - num: 0 -# trakt_list_extra_01: "https://trakt.tv/users/########/lists/tv-recommendations", + num: "3" +# num: "3", +# trakt_list_extra_01: "https://trakt.tv/users/########/lists/tv-recommendations" } trakt_userlist: - userlist: favorites @@ -161,213 +163,78 @@ collections: "Suggested TV shows": collection_order: alpha + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_suggested.png summary: "Based on watched and favourited TV shows" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_suggested.png template: { name: trakt, - num: 0 + num: "4" +# num: "4", # trakt_list_extra_01: "https://trakt.tv/users/########/lists/tv-recommendations-couchmoney-tv", # trakt_list_extra_02: "https://trakt.tv/users/########/lists/tv-based-on-recently-watched-couchmoney-tv" } trakt_chart: - chart: recommended - time_period: daily - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 5 + time_period: daily - chart: recommended - time_perid: weekly - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 10 + time_period: weekly - chart: recommended - time_period: monthly - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 25 + time_period: monthly - chart: recommended - time_period: yearly - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 50 + time_period: yearly - chart: recommended - time_period: all - languages: en countries: us, gb, ie, ca, au, nz + languages: en limit: 200 + time_period: all "Trending TV shows": - summary: "TV shows trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_trending.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_trending.png schedule: daily + summary: "TV shows trending across the internet" template: { - name: mdblist, - num: 0, - mdblist_user: "archivist", mdblist_list: "tv-trending", - mdblist_sort: "rank.desc" + mdblist_sort: "rank.desc", + mdblist_user: "archivist", + name: mdblist, + num: "5" } limit: 50 "Popular TV shows": - summary: "Popular TV shows across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_popular.png - visible_library: true + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_popular.png schedule: daily + summary: "Popular TV shows across the internet" + visible_library: true template: { - name: mdblist, - num: 1, - mdblist_user: "archivist", mdblist_list: "tv-popular", - mdblist_sort: "imdbpopular.desc" + mdblist_sort: "imdbpopular.desc", + mdblist_user: "archivist", + name: mdblist, + num: "6" } limit: 100 "Top Rated TV shows": - summary: "Top rated TV shows across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_top-rated.png + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_suggested/suggested_top-rated.png schedule: daily + summary: "Top rated TV shows across the internet" template: { - name: mdblist, - num: 1, - mdblist_user: "archivist", mdblist_list: "tv-top-rated", - mdblist_sort: "imdbrating.desc" + mdblist_sort: "imdbrating.desc", + mdblist_user: "archivist", + name: mdblist, + num: "7" } - limit: 500 - - "Unwatched: Random TV shows": - summary: "Random selection of TV shows" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_random.png - template: { - name: plex, - num: 1 - } - smart_filter: - all: - plays.lt: 1 - any: - audio_language: English, english - collection_filtering: user - sort_by: random - limit: 250 - - "Unwatched: Recommended TV shows": - summary: "Based on personally favourited TV shows" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_recommended.png - template: { - name: plex, - num: 1 - } - smart_filter: - all: - collection: "Recommended TV shows" - plays.lt: 1 - collection_filtering: user - sort_by: title.asc - - "Unwatched: Suggested TV shows": - summary: "Based on watched and favourited TV shows" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_suggested.png - template: { - name: plex, - num: 1 - } - smart_filter: - all: - collection: "Suggested TV shows" - plays.lt: 1 - collection_filtering: user - sort_by: title.asc - - "Unwatched: Popular TV shows": - summary: "Popular TV shows across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_popular.png - template: { - name: plex, - num: 2 - } - smart_filter: - all: - collection: "Popular TV shows" - plays.lt: 1 - collection_filtering: user - sort_by: random - - "Unwatched: Top Rated TV shows": - summary: "Top rated TV shows across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_unwatched_top-rated.png - template: { - name: plex, - num: 2 - } - smart_filter: - all: - collection: "Top Rated TV shows" - plays.lt: 1 - collection_filtering: user - sort_by: random - - "Most Watched Daily": - summary: "TV shows trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_most-watched-daily.png - collection_order: custom - schedule: daily - template: { - name: trakt, - num: 3 - } - trakt_chart: - chart: watched - time_period: daily - languages: en - countries: us, gb, ie, ca, au, nz - limit: 50 - - "Most Watched Weekly": - summary: "TV shows trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_most-watched-weekly.png - collection_order: custom - schedule: daily - template: { - name: trakt, - num: 3 - } - trakt_chart: - chart: watched - time_period: weekly - languages: en - countries: us, gb, ie, ca, au, nz - limit: 50 - - "Most Watched Monthly": - summary: "TV shows trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_most-watched-monthly.png - collection_order: custom - schedule: weekly(sunday) - template: { - name: trakt, - num: 4 - } - trakt_chart: - chart: watched - time_period: monthly - languages: en - countries: us, gb, ie, ca, au, nz - limit: 75 - - "Most Watched Yearly": - summary: "TV shows trending across the internet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_suggested/suggested_most-watched-yearly.png - collection_order: custom - schedule: weekly(sunday) - template: { - name: trakt, - num: 4 - } - trakt_chart: - chart: watched - time_period: yearly - languages: en - countries: us, gb, ie, ca, au, nz - limit: 100 + limit: 500 \ No newline at end of file diff --git a/0x5f3/collections/show/020_unwatched.yml b/0x5f3/collections/show/020_unwatched.yml new file mode 100644 index 0000000..6e37ba4 --- /dev/null +++ b/0x5f3/collections/show/020_unwatched.yml @@ -0,0 +1,84 @@ +## _unwatched.yml + +templates: + plex: + collection_mode: hide + delete_not_scheduled: false + sort_title: "+020_<>_<>" + sync_mode: sync + visible_home: false + visible_library: false + visible_shared: false + +collections: + "Unwatched: Random TV shows": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_random.png + summary: "Random selection of TV shows" + template: { + name: plex, + num: "0" + } + smart_filter: + all: + plays.lt: 1 + any: + audio_language: English, english + collection_filtering: user + limit: 250 + sort_by: random + + "Unwatched: Recommended TV shows": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_recommended.png + summary: "Based on personally favourited TV shows" + template: { + name: plex, + num: "1" + } + smart_filter: + all: + collection: "Recommended TV shows" + plays.lt: 1 + collection_filtering: user + sort_by: title.asc + + "Unwatched: Suggested TV shows": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_suggested.png + summary: "Based on watched and favourited TV shows" + template: { + name: plex, + num: "2" + } + smart_filter: + all: + collection: "Suggested TV shows" + plays.lt: 1 + collection_filtering: user + sort_by: title.asc + + "Unwatched: Popular TV shows": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_popular.png + summary: "Popular TV shows across the internet" + template: { + name: plex, + num: "3" + } + smart_filter: + all: + collection: "Popular TV shows" + plays.lt: 1 + collection_filtering: user + sort_by: random + + "Unwatched: Top Rated TV shows": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_unwatched/unwatched_top-rated.png + summary: "Top rated TV shows across the internet" + template: { + name: plex, + num: "4" + } + smart_filter: + all: + collection: "Top Rated TV shows" + plays.lt: 1 + collection_filtering: user + sort_by: random \ No newline at end of file diff --git a/0x5f3/collections/show/030_watched.yml b/0x5f3/collections/show/030_watched.yml new file mode 100644 index 0000000..1581b82 --- /dev/null +++ b/0x5f3/collections/show/030_watched.yml @@ -0,0 +1,118 @@ +## _watched.yml + +templates: + trakt: + collection_mode: hide + delete_not_scheduled: false + sort_title: "+030_<>_<>" + sync_mode: sync + visible_home: false + visible_library: false + visible_shared: false + trakt_list: + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + - <> + optional: + - trakt_list_extra_01 + - trakt_list_extra_02 + - trakt_list_extra_03 + - trakt_list_extra_04 + - trakt_list_extra_05 + - trakt_list_extra_06 + - trakt_list_extra_07 + - trakt_list_extra_08 + - trakt_list_extra_09 + - trakt_list_extra_10 + - trakt_list_extra_11 + - trakt_list_extra_12 + - trakt_list_extra_13 + - trakt_list_extra_14 + - trakt_list_extra_15 + - trakt_list_extra_16 + - trakt_list_extra_17 + - trakt_list_extra_18 + - trakt_list_extra_19 + - trakt_list_extra_20 + +collections: + "Most Watched Daily": + collection_order: custom + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_watched/watched_daily.png + schedule: daily + summary: "TV shows trending across the internet" + template: { + name: trakt, + num: "0" + } + trakt_chart: + chart: watched + countries: us, gb, ie, ca, au, nz + languages: en + limit: 50 + time_period: daily + + "Most Watched Weekly": + collection_order: custom + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_watched/watched_weekly.png + schedule: daily + summary: "TV shows trending across the internet" + template: { + name: trakt, + num: "1" + } + trakt_chart: + chart: watched + countries: us, gb, ie, ca, au, nz + languages: en + limit: 50 + time_period: weekly + + "Most Watched Monthly": + collection_order: custom + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_watched/watched_monthly.png + schedule: weekly(sunday) + summary: "TV shows trending across the internet" + template: { + name: trakt, + num: "2" + } + trakt_chart: + chart: watched + countries: us, gb, ie, ca, au, nz + languages: en + limit: 75 + time_period: monthly + + "Most Watched Yearly": + collection_order: custom + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_watched/watched_yearly.png + schedule: weekly(sunday) + summary: "TV shows trending across the internet" + template: { + name: trakt, + num: "3" + } + trakt_chart: + chart: watched + countries: us, gb, ie, ca, au, nz + languages: en + limit: 100 + time_period: yearly \ No newline at end of file diff --git a/0x5f3/metadata/show/1_parental.yml b/0x5f3/collections/show/040_parental.yml similarity index 79% rename from 0x5f3/metadata/show/1_parental.yml rename to 0x5f3/collections/show/040_parental.yml index c802a65..be51895 100644 --- a/0x5f3/metadata/show/1_parental.yml +++ b/0x5f3/collections/show/040_parental.yml @@ -1,11 +1,11 @@ -## 1_parental.yml +## _parental.yml templates: plex: collection_mode: hide delete_not_scheduled: false label.sync: Parental - sort_title: "+1_<>_<>" + sort_title: "+040_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -13,11 +13,11 @@ templates: collections: "Parental: Random": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_random.png summary: "Random TV shows suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_random.png template: { name: plex, - num: "B" + num: "1" } smart_filter: all: @@ -26,11 +26,11 @@ collections: limit: 250 "Parental: Recently Added": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_recently-added.png summary: "Recently added TV shows suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_recently-added.png template: { name: plex, - num: "C" + num: "2" } smart_filter: all: @@ -39,11 +39,11 @@ collections: limit: 100 "Parental: Recently Released": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_recently-released.png summary: "Recently released TV shows suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_recently-released.png template: { name: plex, - num: "D" + num: "3" } smart_filter: all: @@ -52,11 +52,11 @@ collections: limit: 250 "Parental: Top Rated": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_top-rated.png summary: "Top rated TV shows suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_top-rated.png template: { name: plex, - num: "E" + num: "4" } smart_filter: all: diff --git a/0x5f3/metadata/show/1_parental_sync.yml b/0x5f3/collections/show/040_parental_sync.yml similarity index 79% rename from 0x5f3/metadata/show/1_parental_sync.yml rename to 0x5f3/collections/show/040_parental_sync.yml index 1ba9b9e..c575edf 100644 --- a/0x5f3/metadata/show/1_parental_sync.yml +++ b/0x5f3/collections/show/040_parental_sync.yml @@ -1,4 +1,4 @@ -## 1_parental_sync.yml +## _parental_sync.yml templates: mdblist: @@ -7,7 +7,7 @@ templates: delete_not_scheduled: false item_label.sync: Parental label.sync: Parental - sort_title: "+1_<>_<>" + sort_title: "+040_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -24,11 +24,11 @@ templates: collections: "Parental: All": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_parental/parental_all.png summary: "TV shows suitable for children" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_parental/parental_all.png template: { - name: mdblist, - num: "A", + mdblist_list: "list-parental", mdblist_user: "archivist", - mdblist_list: "list-parental" + name: mdblist, + num: "0" } \ No newline at end of file diff --git a/0x5f3/metadata/show/1_documentary.yml b/0x5f3/collections/show/050_documentary.yml similarity index 76% rename from 0x5f3/metadata/show/1_documentary.yml rename to 0x5f3/collections/show/050_documentary.yml index c38cc86..cdfa01d 100644 --- a/0x5f3/metadata/show/1_documentary.yml +++ b/0x5f3/collections/show/050_documentary.yml @@ -1,10 +1,10 @@ -## 1_documentary.yml +## _documentary.yml templates: plex: collection_mode: hide delete_not_scheduled: false - sort_title: "+1_<>_<>" + sort_title: "+050_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -12,11 +12,11 @@ templates: collections: "Documentaries: All": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_all.png summary: "Documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_all.png template: { name: plex, - num: "F" + num: "0" } smart_filter: all: @@ -24,38 +24,38 @@ collections: sort_by: title.asc "Documentaries: Random": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_random.png summary: "Random documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_random.png template: { name: plex, - num: "G" + num: "1" } smart_filter: all: genre: documentary - sort_by: random limit: 250 + sort_by: random "Documentaries: Recently Added": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_recently-added.png summary: "Recently added documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_recently-added.png visible_library: true template: { name: plex, - num: "H" + num: "2" } smart_filter: all: genre: documentary - sort_by: added.desc limit: 100 + sort_by: added.desc "Documentaries: Recently Released": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_recently-released.png summary: "Recently released documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_recently-released.png template: { name: plex, - num: "I" + num: "3" } smart_filter: all: @@ -64,14 +64,14 @@ collections: limit: 250 "Documentaries: Top Rated": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_documentary/documentary_top-rated.png summary: "Top rated documentaries" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/1_documentary/documentary_top-rated.png template: { name: plex, - num: "J" + num: "4" } smart_filter: all: genre: documentary sort_by: critic_rating.desc - limit: 250 + limit: 250 \ No newline at end of file diff --git a/0x5f3/metadata/show/2_year_top.yml b/0x5f3/collections/show/060_year_top.yml similarity index 77% rename from 0x5f3/metadata/show/2_year_top.yml rename to 0x5f3/collections/show/060_year_top.yml index a334fd8..146853f 100644 --- a/0x5f3/metadata/show/2_year_top.yml +++ b/0x5f3/collections/show/060_year_top.yml @@ -1,4 +1,4 @@ -## 2_year_top.yml +## _year_top.yml templates: year_top: @@ -6,7 +6,7 @@ templates: collection_order: custom delete_not_scheduled: false limit: 250 - sort_title: "+2_<>_<>" + sort_title: "+060_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -22,196 +22,196 @@ templates: collections: "Top Rated of 2024": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2024.png summary: "Top rated TV shows in 2024" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2024.png template: { + language: "en", name: year_top, num: "L", - type: "tv_series,tv_mini_series,tv_special", release.after: 2024-01-01, release.before: 2024-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2023": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2023.png summary: "Top rated TV shows in 2023" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2023.png template: { + language: "en", name: year_top, num: "M", - type: "tv_series,tv_mini_series,tv_special", release.after: 2023-01-01, release.before: 2023-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2022": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2022.png summary: "Top rated TV shows in 2022" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2022.png template: { + language: "en", name: year_top, num: "N", - type: "tv_series,tv_mini_series,tv_special", release.after: 2022-01-01, release.before: 2022-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2021": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2021.png summary: "Top rated TV shows in 2021" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2021.png template: { + language: "en", name: year_top, num: "O", - type: "tv_series,tv_mini_series,tv_special", release.after: 2021-01-01, release.before: 2021-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2020": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2020.png summary: "Top rated TV shows in 2020" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2020.png template: { + language: "en", name: year_top, num: "P", - type: "tv_series,tv_mini_series,tv_special", release.after: 2020-01-01, release.before: 2020-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2019": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2019.png summary: "Top rated TV shows in 2019" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2019.png template: { + language: "en", name: year_top, num: "Q", - type: "tv_series,tv_mini_series,tv_special", release.after: 2019-01-01, release.before: 2019-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2018": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2018.png summary: "Top rated TV shows in 2018" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2018.png template: { + language: "en", name: year_top, num: "R", - type: "tv_series,tv_mini_series,tv_special", release.after: 2018-01-01, release.before: 2018-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2017": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2017.png summary: "Top rated TV shows in 2017" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2017.png template: { + language: "en", name: year_top, num: "S", - type: "tv_series,tv_mini_series,tv_special", release.after: 2017-01-01, release.before: 2017-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2016": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2016.png summary: "Top rated TV shows in 2016" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2016.png template: { + language: "en", name: year_top, num: "T", - type: "tv_series,tv_mini_series,tv_special", release.after: 2016-01-01, release.before: 2016-12-31, + type: "tv_series,tv_mini_series,tv_special", votes.gte: 1000, - language: "en" } "Top Rated of 2015": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2015.png summary: "Top rated TV shows in 2015" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2015.png template: { + language: "en", name: year_top, num: "U", - type: "tv_series,tv_mini_series,tv_special", release.after: 2015-01-01, release.before: 2015-12-31, + type: "tv_series,tv_mini_series,tv_special", votes.gte: 1000, - language: "en" } "Top Rated of 2014": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2014.png summary: "Top rated TV shows in 2014" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2014.png template: { + language: "en", name: year_top, num: "V", - type: "tv_series,tv_mini_series,tv_special", release.after: 2014-01-01, release.before: 2014-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2013": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2013.png summary: "Top rated TV shows in 2013" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2013.png template: { + language: "en", name: year_top, num: "W", - type: "tv_series,tv_mini_series,tv_special", release.after: 2013-01-01, release.before: 2013-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2012": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2012.png summary: "Top rated TV shows in 2012" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2012.png template: { + language: "en", name: year_top, num: "X", - type: "tv_series,tv_mini_series,tv_special", release.after: 2012-01-01, release.before: 2012-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2011": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2011.png summary: "Top rated TV shows in 2011" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2011.png template: { + language: "en", name: year_top, num: "Y", - type: "tv_series,tv_mini_series,tv_special", release.after: 2011-01-01, release.before: 2011-12-31, - votes.gte: 1000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 } "Top Rated of 2010": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_year_top/year_top-rated_2010.png summary: "Top rated TV shows in 2010" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/2_year_top/year_top-rated_2010.png template: { + language: "en", name: year_top, num: "Z", - type: "tv_series,tv_mini_series,tv_special", release.after: 2010-01-01, release.before: 2010-12-31, - votes.gte: 1000, - language: "en" - } + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 + } \ No newline at end of file diff --git a/0x5f3/metadata/show/3_decades_top.yml b/0x5f3/collections/show/070_decades_top.yml similarity index 74% rename from 0x5f3/metadata/show/3_decades_top.yml rename to 0x5f3/collections/show/070_decades_top.yml index 6c9d0f2..3fafe35 100644 --- a/0x5f3/metadata/show/3_decades_top.yml +++ b/0x5f3/collections/show/070_decades_top.yml @@ -1,4 +1,4 @@ -## 3_decades_top.yml +## _decades_top.yml templates: decade_top: @@ -6,7 +6,7 @@ templates: collection_order: custom delete_not_scheduled: false limit: 250 - sort_title: "+3_<>_<>" + sort_title: "+070_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -21,133 +21,132 @@ templates: votes.gte: <> collections: - "Top Rated of the 1930s": - summary: "Top rated TV shows of the 1930s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1930s.png - template: { - name: decade_top, - num: "Z", - type: "tv_series,tv_mini_series,tv_special", - release.after: 1930-01-01, - release.before: 1939-12-31, - votes.gte: 100, - language: "en" - } - - - "Top Rated of the 1940s": - summary: "Top rated TV shows of the 1940s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1940s.png - template: { - name: decade_top, - num: "Y", - type: "tv_series,tv_mini_series,tv_special", - release.after: 1940-01-01, - release.before: 1949-12-31, - votes.gte: 100, - language: "en" - } - - "Top Rated of the 1950s": - summary: "Top rated TV shows of the 1950s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1950s.png - template: { - name: decade_top, - num: "X", - type: "tv_series,tv_mini_series,tv_special", - release.after: 1950-01-01, - release.before: 1959-12-31, - votes.gte: 100, - language: "en" - } - - "Top Rated of the 1960s": - summary: "Top rated TV shows of the 1960s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1960s.png - template: { - name: decade_top, - num: "W", - type: "tv_series,tv_mini_series,tv_special", - release.after: 1960-01-01, - release.before: 1969-12-31, - votes.gte: 100, - language: "en" - } - - "Top Rated of the 1970s": - summary: "Top rated TV shows of the 1970s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1970s.png - template: { - name: decade_top, - num: "V", - type: "tv_series,tv_mini_series,tv_special", - release.after: 1970-01-01, - release.before: 1979-12-31, - votes.gte: 100, - language: "en" - } - - "Top Rated of the 1980s": - summary: "Top rated TV shows of the 1980s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1980s.png - template: { - name: decade_top, - num: "U", - type: "tv_series,tv_mini_series,tv_special", - release.after: 1980-01-01, - release.before: 1989-12-31, - votes.gte: 100, - language: "en" - } - - "Top Rated of the 1990s": - summary: "Top rated TV shows of the 1990s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_1990s.png - template: { - name: decade_top, - num: "T", - type: "tv_series,tv_mini_series,tv_special", - release.after: 1990-01-01, - release.before: 1999-12-31, - votes.gte: 100, - language: "en" - } - - "Top Rated of the 2000s": - summary: "Top rated TV shows of the 2000s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_2000s.png - template: { - name: decade_top, - num: "S", - type: "tv_series,tv_mini_series,tv_special", - release.after: 2000-01-01, - release.before: 2009-12-31, - votes.gte: 1000, - language: "en" - } - - "Top Rated of the 2010s": - summary: "Top rated TV shows of the 2010s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_2010s.png - template: { - name: decade_top, - num: "R", - type: "tv_series,tv_mini_series,tv_special", - release.after: 2010-01-01, - release.before: 2019-12-31, - votes.gte: 1000, - language: "en" - } - "Top Rated of the 2020s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_2020s.png summary: "Top rated TV shows of the 2020s" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/3_decades_top/decades_top_2020s.png template: { + language: "en", name: decade_top, num: "Q", - type: "tv_series,tv_mini_series,tv_special", release.after: 2020-01-01, release.before: 2029-12-31, - votes.gte: 1000, - language: "en" - } \ No newline at end of file + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 + } + + "Top Rated of the 2010s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_2010s.png + summary: "Top rated TV shows of the 2010s" + template: { + language: "en", + name: decade_top, + num: "R", + release.after: 2010-01-01, + release.before: 2019-12-31, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 + } + + "Top Rated of the 2000s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_2000s.png + summary: "Top rated TV shows of the 2000s" + template: { + language: "en", + name: decade_top, + num: "S", + release.after: 2000-01-01, + release.before: 2009-12-31, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 1000 + } + + "Top Rated of the 1990s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1990s.png + summary: "Top rated TV shows of the 1990s" + template: { + language: "en", + name: decade_top, + num: "T", + release.after: 1990-01-01, + release.before: 1999-12-31, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 100 + } + + "Top Rated of the 1980s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1980s.png + summary: "Top rated TV shows of the 1980s" + template: { + language: "en", + name: decade_top, + num: "U", + release.after: 1980-01-01, + release.before: 1989-12-31, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 100 + } + + "Top Rated of the 1970s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1970s.png + summary: "Top rated TV shows of the 1970s" + template: { + language: "en", + name: decade_top, + num: "V", + release.after: 1970-01-01, + release.before: 1979-12-31, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 100 + } + + "Top Rated of the 1960s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1960s.png + summary: "Top rated TV shows of the 1960s" + template: { + language: "en", + name: decade_top, + num: "W", + release.after: 1960-01-01, + release.before: 1969-12-31, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 100 + } + + "Top Rated of the 1950s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1950s.png + summary: "Top rated TV shows of the 1950s" + template: { + language: "en", + name: decade_top, + num: "X", + release.after: 1950-01-01, + release.before: 1959-12-31, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 100 + } + + "Top Rated of the 1940s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1940s.png + summary: "Top rated TV shows of the 1940s" + template: { + language: "en", + name: decade_top, + num: "Y", + release.after: 1940-01-01, + release.before: 1949-12-31, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 100 + } + + "Top Rated of the 1930s": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_decades_top/decades_top_1930s.png + summary: "Top rated TV shows of the 1930s" + template: { + language: "en", + name: decade_top, + num: "Z", + release.after: 1930-01-01, + release.before: 1939-12-31, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 100 + } \ No newline at end of file diff --git a/0x5f3/metadata/show/4_awards.yml b/0x5f3/collections/show/080_awards.yml similarity index 68% rename from 0x5f3/metadata/show/4_awards.yml rename to 0x5f3/collections/show/080_awards.yml index ada0dd9..8f4979e 100644 --- a/0x5f3/metadata/show/4_awards.yml +++ b/0x5f3/collections/show/080_awards.yml @@ -1,11 +1,11 @@ -## 4_awards.yml +## _awards.yml templates: award_nominee: collection_mode: hide collection_order: release.desc delete_not_scheduled: false - sort_title: "+4_<>_<>" + sort_title: "+080_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -20,7 +20,7 @@ templates: collection_mode: hide collection_order: release.desc delete_not_scheduled: false - sort_title: "+4_<>_<>" + sort_title: "+080_<>_<>" sync_mode: sync visible_home: false visible_library: false @@ -33,67 +33,67 @@ templates: collections: "Emmy Award Nominees": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_nominees_emmy.png summary: "A collection of Emmy Award Nominees" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_nominees_emmy.png template: { + event: "emmy", + language: "en", name: award_nominee, num: "A", - type: "tv_series,tv_mini_series,tv_special", - event: "emmy", - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Emmy Award Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_emmy.png summary: "A collection of Emmy Award Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_emmy.png template: { + event.winning: "emmy", + language: "en", name: award_winner, num: "B", - type: "tv_series,tv_mini_series,tv_special", - event.winning: "emmy", - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Golden Globes Nominees": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_nominees_golden-globes.png summary: "A collection of Golden Globes Nominees" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_nominees_golden-globes.png template: { + event: "golden", + language: "en", name: award_nominee, num: "C", - type: "tv_series,tv_mini_series,tv_special", - event: "golden", - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Golden Globes Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_golden_globes.png summary: "A collection of Golden Globes Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_golden_globes.png template: { + event.winning: "golden", + language: "en", name: award_winner, num: "D", - type: "tv_series,tv_mini_series,tv_special", - event.winning: "golden", - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "BAFTA Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_bafta.png summary: "A collection of BAFTA Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_bafta.png template: { + event.winning: "bafta", + language: "en", name: award_winner, num: "E", - type: "tv_series,tv_mini_series,tv_special", - event.winning: "bafta", - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Critic's Choice Winners": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_awards/awards_winners_critics-choice.png summary: "A collection of Critic's Choice Winners" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/4_awards/awards_winners_critics-choice.png template: { - name: award_winner, - num: "K", - type: "tv_series,tv_mini_series,tv_special", event.winning: "choice", - language: "en" - } + language: "en", + name: award_winner, + num: "F", + type: "tv_series,tv_mini_series,tv_special" + } \ No newline at end of file diff --git a/0x5f3/metadata/show/5_genre_popular.yml b/0x5f3/collections/show/090_genre_popular.yml similarity index 57% rename from 0x5f3/metadata/show/5_genre_popular.yml rename to 0x5f3/collections/show/090_genre_popular.yml index 979e276..0cd33a8 100644 --- a/0x5f3/metadata/show/5_genre_popular.yml +++ b/0x5f3/collections/show/090_genre_popular.yml @@ -1,4 +1,4 @@ -## 5_genre_popular.yml +## _genre_popular.yml templates: genre_popular: @@ -6,236 +6,270 @@ templates: collection_order: custom delete_not_scheduled: false limit: 250 - sort_title: "+5: <>" + sort_title: "+090_<>" sync_mode: sync visible_home: false visible_library: false visible_shared: false imdb_search: genre: <> + genre.not: <> language: <> limit: 500 popularity.gte: <> sort_by: popularity.asc type: <> + optional: + - genre.not collections: "Popular in Action": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_action.png summary: "Popular TV shows in Action" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_action.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "action", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Adventure": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_adventure.png summary: "Popular TV shows in Adventure" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_adventure.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "adventure", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Animation": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_animation.png summary: "Popular TV shows in Animation" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_animation.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "animation", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Biography": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_biography.png summary: "Popular TV shows in Biography" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_biography.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "biography", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Comedy": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_comedy.png summary: "Popular TV shows in Comedy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_comedy.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "comedy", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Crime": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_crime.png summary: "Popular TV shows in Crime" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_crime.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "crime", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" + } + + "Popular in Documentary": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_documentary.png + summary: "Popular TV shows in Documentary" + template: { + genre: "documentary", + language: "en", + name: genre_popular, + popularity.gte: 5, + type: "tv_series,tv_mini_series,tv_special" } "Popular in Drama": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_drama.png summary: "Popular TV shows in Drama" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_drama.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "drama", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Family": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_family.png summary: "Popular TV shows in Family" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_family.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "family", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Fantasy": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_fantasy.png summary: "Popular TV shows in Fantasy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_fantasy.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "fantasy", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in History": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_history.png summary: "Popular TV shows in History" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_history.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "history", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Horror": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_horror.png summary: "Popular TV shows in Horror" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_horror.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "horror", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Music": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_music.png summary: "Popular TV shows in Music" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_music.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "music", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Musicals": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_musicals.png summary: "Popular TV shows in Musicals" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_musicals.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "musical", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Mystery": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_mystery.png summary: "Popular TV shows in Mystery" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_mystery.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "mystery", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Romance": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_romance.png summary: "Popular TV shows in Romance" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_romance.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "romance", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Sci-Fi": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_sci-fi.png summary: "Popular TV shows in Sci-Fi" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_sci-fi.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "sci-fi", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Sport": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_sport.png summary: "Popular TV shows in Sport" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_sport.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "sport", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Thriller": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_thriller.png summary: "Popular TV shows in Thriller" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_thriller.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "thriller", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in War": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_war.png summary: "Popular TV shows in War" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_war.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "war", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } "Popular in Western": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_popular/genre_popular_western.png summary: "Popular TV shows in Western" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/5_genre_popular/genre_popular_western.png template: { - name: genre_popular, - type: "tv_series,tv_mini_series,tv_special", genre: "western", + genre.not: "documentary", + language: "en", + name: genre_popular, popularity.gte: 5, - language: "en" + type: "tv_series,tv_mini_series,tv_special" } \ No newline at end of file diff --git a/0x5f3/metadata/show/6_genre_top.yml b/0x5f3/collections/show/100_genre_top.yml similarity index 65% rename from 0x5f3/metadata/show/6_genre_top.yml rename to 0x5f3/collections/show/100_genre_top.yml index 88ac5c8..bba3e5d 100644 --- a/0x5f3/metadata/show/6_genre_top.yml +++ b/0x5f3/collections/show/100_genre_top.yml @@ -1,4 +1,4 @@ -## 6_genre_top.yml +## _genre_top.yml templates: genre_top: @@ -6,258 +6,292 @@ templates: collection_order: custom delete_not_scheduled: false limit: 500 - sort_title: "+6 Rated: <>" + sort_title: "+100_<>" sync_mode: sync visible_home: false visible_library: false visible_shared: false imdb_search: genre: <> + genre.not: <> language: <> limit: 1000 rating.gte: <> sort_by: rating.desc type: <> votes.gte: <> + optional: + - genre.not collections: "Top Rated in Action": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_action.png summary: "Top rated TV shows in Action" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_action.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "action", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Adventure": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_adventure.png summary: "Top rated TV shows in Adventure" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_adventure.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "adventure", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Animation": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_animation.png summary: "Top rated TV shows in Animation" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_animation.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "animation", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, + type: "tv_series,tv_mini_series,tv_special", votes.gte: 10000, - language: "en" } "Top Rated in Biography": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_biography.png summary: "Top rated TV shows in Biography" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_biography.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "biography", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Comedy": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_comedy.png summary: "Top rated TV shows in Comedy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_comedy.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "comedy", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Crime": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_crime.png summary: "Top rated TV shows in Crime" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_crime.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "crime", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 + } + + "Top Rated in Documentary": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_documentary.png + summary: "Top rated TV shows in Documentary" + template: { + genre: "documentary", + language: "en", + name: genre_top, + rating.gte: 5, + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Drama": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_drama.png summary: "Top rated TV shows in Drama" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_drama.png template: { - name: genre_top, genre: "drama", - type: "tv_series,tv_mini_series,tv_special", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Family": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_family.png summary: "Top rated TV shows in Family" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_family.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "family", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Fantasy": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_fantasy.png summary: "Top rated TV shows in Fantasy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_fantasy.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "fantasy", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in History": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_history.png summary: "Top rated TV shows in History" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_history.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "history", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, + type: "tv_series,tv_mini_series,tv_special", votes.gte: 10000, - language: "en" } "Top Rated in Horror": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_horror.png summary: "Top rated TV shows in Horror" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_horror.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "horror", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Music": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_music.png summary: "Top rated TV shows in Music" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_music.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "music", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Musicals": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_musicals.png summary: "Top rated TV shows in Musicals" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_musicals.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "musical", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Mystery": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_mystery.png summary: "Top rated TV shows in Mystery" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_mystery.png - template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "mystery", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Romance": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_romance.png summary: "Top rated TV shows in Romance" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_romance.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "romance", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Sci-Fi": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_sci-fi.png summary: "Top rated TV shows in Sci-Fi" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_sci-fi.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "sci-fi", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Sport": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_sport.png summary: "Top rated TV shows in Sport" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_sport.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "sport", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Thriller": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_thriller.png summary: "Top rated TV shows in Thriller" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_thriller.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "thriller", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, + type: "tv_series,tv_mini_series,tv_special", votes.gte: 10000, - language: "en" } "Top Rated in War": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_war.png summary: "Top rated TV shows in War" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_war.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "war", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } "Top Rated in Western": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_genre_top/genre_top-rated_western.png summary: "Top rated TV shows in Western" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/6_genre_top/genre_top-rated_western.png template: { - name: genre_top, - type: "tv_series,tv_mini_series,tv_special", genre: "western", + genre.not: "documentary", + language: "en", + name: genre_top, rating.gte: 5, - votes.gte: 10000, - language: "en" + type: "tv_series,tv_mini_series,tv_special", + votes.gte: 10000 } \ No newline at end of file diff --git a/0x5f3/metadata/show/7_network.yml b/0x5f3/collections/show/110_network.yml similarity index 85% rename from 0x5f3/metadata/show/7_network.yml rename to 0x5f3/collections/show/110_network.yml index 01c0e25..6eabcb6 100644 --- a/0x5f3/metadata/show/7_network.yml +++ b/0x5f3/collections/show/110_network.yml @@ -1,10 +1,10 @@ -## 7_network.yml +## _network.yml templates: network: collection_mode: hide collection_order: alpha - sort_title: "+7_<>" + sort_title: "+110_<>" sync_mode: sync tmdb_network: <> visible_home: false @@ -13,353 +13,353 @@ templates: collections: "A&E": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_a-e.png summary: "TV shows from A&E" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_a-e.png template: { name: network, network: "129, 2639, 3688" } "ABC": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_abc.png summary: "TV shows from ABC" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_abc.png template: { name: network, network: "2, 18, 75, 279, 321, 601, 1327, 1345, 1410, 2488, 2791, 2854, 3322, 5069" } "Adult Swim": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_adult-swim.png summary: "TV shows from Adult Swim" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_adult-swim.png template: { name: network, network: "80, 5629, 6929" } "Amazon": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_amazon.png summary: "TV shows from Amazon" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_amazon.png template: { name: network, network: "1024, 5533, 5865, 5920, 6550" } "AMC": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_amc.png summary: "TV shows from AMC" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_amc.png template: { name: network, network: "174, 4661, 6400" } "Animal Planet": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_animal-planet.png summary: "TV shows from Animal Planet" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_animal-planet.png template: { name: network, network: "91, 2781, 3627, 4454, 5721" } "Apple+": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_apple-plus.png summary: "TV shows from Apple+" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_apple-plus.png template: { name: network, network: "1932, 2552" } "BBC": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_bbc.png summary: "TV shows from BBC" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_bbc.png template: { name: network, network: "3, 4, 15, 100, 126, 317, 332, 375, 414, 428, 493, 1001, 1051, 1155, 3278, 3546, 3590, 3660, 5384, 5421, 6142, 6223, 6291, 6419, 6824, 6852" } "Bravo": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_bravo.png summary: "TV shows from Bravo" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_bravo.png template: { name: network, network: "74, 312, 485" } "Cartoon Network": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_cartoon-network.png summary: "TV shows from Cartoon Network" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_cartoon-network.png template: { name: network, network: "56, 217, 1232, 1483, 2193, 3917, 4945, 6018, 6033, 6206, 6315, 6702, 6869" } "CBS": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_cbs.png summary: "TV shows from CBS" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_cbs.png template: { name: network, network: "16, 1709, 2528, 2621, 5970" } "Channel 4": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_channel-4.png summary: "TV shows from Channel 4" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_channel-4.png template: { name: network, network: "26, 1988, 136, 298, 803" } "Cinemax": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_cinemax.png summary: "TV shows from Cinemax" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_cinemax.png template: { name: network, network: "359, 6161" } "Comedy Central": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_comedy-central.png summary: "TV shows from Comedy Central" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_comedy-central.png template: { name: network, network: "47, 278, 1087, 1226, 2178, 2436, 2988, 3082, 3575, 4535, 5066, 5847, 6168" } "Dave": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_dave.png summary: "TV shows from Dave" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_dave.png template: { name: network, network: "388" } "Discovery": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_discovery.png summary: "TV shows from Discovery" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_discovery.png template: { name: network, network: "10, 22, 64, 106, 244, 626, 670, 1079, 1287, 1302, 1534, 2087, 2480, 2630, 2692, 3045, 3068, 3197, 3591, 3900, 3953, 4353, 4440, 4462, 4562, 4741, 4784, 4883, 4983, 4987, 5192, 5408, 5431, 5451, 5470, 5471, 5472, 5669, 5706, 6026, 6083, 6622, 6903, 6966" } "Disney": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_disney.png summary: "TV shows from Disney" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_disney.png template: { name: network, network: "44, 54, 142, 281, 515, 539, 730, 835, 1385, 1996, 2324, 2325, 2326, 2327, 2534, 2739, 2771, 2897, 2991, 3408, 3874, 3919, 4006, 4242, 4350, 4426, 5137, 5339, 5465, 5526, 5536, 5611, 5769, 6005, 6006, 6029, 6074, 6244, 6463, 6752" } "FOX": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_fox.png summary: "TV shows from FOX" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_fox.png template: { name: network, network: "19, 45, 87, 131, 243, 303, 327, 338, 360, 415, 481, 875, 961, 1067, 1117, 1414, 1498, 1640, 1651, 2145, 2316, 2317, 2319, 2320, 2446, 2648, 2678, 2686, 3483, 3562, 4522, 4774, 4908, 5028, 5201, 5259, 5996, 6088, 6379, 6793" } "Freeform": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_freeform.png summary: "TV shows from Freeform" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_freeform.png template: { name: network, network: "1267" } "FX": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_fx.png summary: "TV shows from FX" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_fx.png template: { name: network, network: "88, 1035, 1641, 5628" } "Hallmark": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_hallmark.png summary: "TV shows from Hallmark" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_hallmark.png template: { name: network, network: "384, 2300, 2853, 3438" } "HBO": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_hbo.png summary: "TV shows from HBO" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_hbo.png template: { name: network, network: "49, 1062, 1089, 1129, 1303, 1590, 2593, 3186, 3308, 3618, 3877, 5479, 5484, 5485, 5646, 5666, 5750, 5764, 5836" } "HGTV": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_hgtv.png summary: "TV shows from HGTV" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_hgtv.png template: { name: network, network: "210, 1672" } "History": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_history.png summary: "TV shows from History" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_history.png template: { name: network, network: "65, 1354, 2360, 2382, 3541, 5433" } "Hulu": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_hulu.png summary: "TV shows from Hulu" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_hulu.png template: { name: network, network: "453, 1772" } "ITV": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_itv.png summary: "TV shows from ITV" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_itv.png template: { name: network, network: "9, 112, 149, 261, 307, 590, 1159, 3187, 5871" } "MTV": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_mtv.png summary: "TV shows from MTV" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_mtv.png template: { name: network, network: "17, 33, 295, 304, 335, 381, 410, 454, 488, 568, 788, 867, 924, 931, 959, 976, 1008, 1173, 2116, 2234, 2294, 2414, 2972, 3402, 6079, 6337" } - "National Geographic": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_national-geographic.png summary: "TV shows from National Geographic" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_national-geographic.png template: { name: network, network: "43, 799, 1756, 1825, 3355, 4227, 4293, 4404, 5805, 6031, 6638, 6748, 6750, 1043, 4476, 6664" } "NBC": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_nbc.png summary: "TV shows from NBC" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_nbc.png template: { name: network, network: "6, 37, 175, 186, 287, 355, 413, 581, 624, 629, 790, 900, 6469" } "Netflix": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_netflix.png summary: "TV shows from Netflix" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_netflix.png template: { name: network, network: "213" } "Nickelodeon": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_nickelodeon.png summary: "TV shows from Nickelodeon" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_nickelodeon.png template: { name: network, network: "13, 35, 224, 234, 259, 286, 416, 474, 594, 775, 794, 1703, 2313, 2314, 2315, 4015" } "Paramount": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_paramount.png summary: "TV shows from Paramount" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_paramount.png template: { name: network, network: "2076, 2435, 2604, 4330, 5506, 5511, 5567, 6100, 6101, 6183, 6318, 6445" } + "PBS": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_pbs.png summary: "TV shows from PBS" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_pbs.png template: { name: network, network: "14, 122, 2354, 5562, 6948" } "Peacock": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_peacock.png summary: "TV shows from Peacock" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_peacock.png template: { name: network, network: "3353" } "Showtime": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_showtime.png summary: "TV shows from Showtime" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_showtime.png template: { name: network, network: "67, 5944, 6631" } "Shudder": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_shudder.png summary: "TV shows from Shudder" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_shudder.png template: { name: network, network: "2949" } "SKY": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_sky.png summary: "TV shows from SKY" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_sky.png template: { name: network, network: "107, 115, 214, 405, 480, 553, 753, 819, 877, 1006, 1063, 1076, 1114, 1431, 1755, 2432, 2667, 2691, 2699, 2758, 3138, 3561, 3653, 4148, 4439, 5059, 5090, 5136, 5210, 5213, 5237, 5481, 5505, 5735, 5944, 5946, 6179, 6280, 6359, 6845, 6933" } "Smithsonian": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_smithsonian.png summary: "TV shows from Smithsonian" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_smithsonian.png template: { name: network, network: "658, 2572, 4862, 4982" } "Starz": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_starz.png summary: "TV shows from Starz" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_starz.png template: { name: network, network: "318, 758, 6222, 6292" } "Syfy": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_syfy.png summary: "TV shows from Syfy" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_syfy.png template: { name: network, network: "77, 3701, 6914" } "TBS": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_tbs.png summary: "TV shows from TBS" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_tbs.png template: { name: network, network: "68, 160, 5012, 5625, 5968" } "TLC": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_tlc.png summary: "TV shows from TLC" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_tlc.png template: { name: network, network: "84, 1172, 2167, 3571, 5154, 5659, 6363" } "TNT": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_tnt.png summary: "TV shows from TNT" - url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/main/assets/7_network/network_tnt.png template: { name: network, network: "41, 904, 1191, 1530, 2857, 3501, 5194" } "YouTube": + url_poster: https://raw.githubusercontent.com/0x5f3/pmm.config/assets/_network/network_youtube.png summary: "TV shows from Date: Sun, 18 Feb 2024 11:07:32 +1100 Subject: [PATCH 2/2] changed config to include awards, added avatar franchise to tv franchises (#623) * Update config.yml * Create ReadMe.md * Update config.yml * Update 0_othercollections.yml * Update 1_genres.yml * Update README.md * Update config.yml * Add files via upload * Update continents.yml * Update musictemplates.yml * Add files via upload * Update 3_tvshow-genres.yml * Update 5_tvshows-topic.yml * Update 3_tvshow-genres.yml * Update 5_tvshows-topic.yml * Update 3_tvshow-genres.yml * Update 5_tvshows-topic.yml * Update 3_tvshow-genres.yml * Update config.yml * Update config.yml * Update 0_othercollections.yml * Update 1_genres.yml * Update 3_topics.yml * Add files via upload * Update config.yml * Update 3_topics.yml * Update 2_subgenre.yml * Update 4_based_on.yml * Update 6_holidays.yml * Update 3_tvshow-genres.yml * Update 5_tvshows-topic.yml * Add files via upload * Add files via upload * Update 5_critics_other.yml * Delete ladywhiskers/movies/0_othercollections.yml * Delete ladywhiskers/movies/8_oscars.yml * Delete ladywhiskers/movies/10_cannes.yml * Delete ladywhiskers/movies/9_bafta.yml * Add files via upload * Delete ladywhiskers/7_franchises.yml * Add files via upload * Update README.md * Update config.yml * Update 1_genres.yml * Delete ladywhiskers/movies/10_cannes.yml * Delete ladywhiskers/movies/8_oscars.yml * Delete ladywhiskers/movies/9_bafta.yml * Update 4_tvshows-franchises.yml --- ladywhiskers/README.md | 29 +- ladywhiskers/config.yml | 105 ++-- ladywhiskers/movies/0_othercollections.yml | 25 - ladywhiskers/movies/10_cannes.yml | 52 -- ladywhiskers/movies/1_genres.yml | 36 +- ladywhiskers/movies/7_franchises.yml | 571 ++++++++++++++++++ ladywhiskers/movies/8_oscars.yml | 173 ------ ladywhiskers/movies/9_bafta.yml | 52 -- ladywhiskers/tvshows/4_tvshows-franchises.yml | 12 +- 9 files changed, 644 insertions(+), 411 deletions(-) delete mode 100644 ladywhiskers/movies/0_othercollections.yml delete mode 100644 ladywhiskers/movies/10_cannes.yml create mode 100644 ladywhiskers/movies/7_franchises.yml delete mode 100644 ladywhiskers/movies/8_oscars.yml delete mode 100644 ladywhiskers/movies/9_bafta.yml diff --git a/ladywhiskers/README.md b/ladywhiskers/README.md index 732ce0f..0283eca 100644 --- a/ladywhiskers/README.md +++ b/ladywhiskers/README.md @@ -9,36 +9,30 @@ Movies - Based on - Oscars - Actor Birthdays - - Common Sense Media Content Ratings + - Australian Content Ratings - Common Sense Media Recommended - Continent - Oceania - - Franchise - - Seasonal - - added Pride Month - - Universe - + - Seasonal + - added Pride Month TV Shows - Based on - Actor Birthdays - - Common Sense Media Content Ratings + - Australian Content Ratings - Common Sense Media Recommended - Universe - Continent - Oceania - - Franchise + **Custom Collections:** Movies Collections: - - Disney Live-Action Remakes - - DIsney Animation Studios - - THree Flavours Cornetto - - What Should I Watch? - - Expanded Genres #WhoDat104 - - Subgenres #WhoDat104 - - Topics #WhoDat104 +- Expanded Genres #WhoDat104 +- Franchises #WhoDat104 +- Subgenres #WhoDat104 +- Topics #WhoDat104 TV Shows Collections: @@ -46,8 +40,9 @@ TV Shows - Avatar Universe - Expanded Genres #WhoDat104 - Topics #WhoDat104 + - Franchises #WhoDat104 -Music +Music WORK IN PROGRESS Collections: - Top 10 <> Albums - Top 100 <> Tracks @@ -69,7 +64,7 @@ Credits not limited to but include: - WhoDat104 - bullmoose20 - ![Movie Collections (1)](https://github.com/ladywhiskers/Plex-Meta-Manager-Configs/assets/99696830/eb6dbd9c-2746-444b-9f27-45ed6bc379f8) +![Movie Collections (1)](https://github.com/ladywhiskers/Plex-Meta-Manager-Configs/assets/99696830/eb6dbd9c-2746-444b-9f27-45ed6bc379f8) ![Movie Collections (2)](https://github.com/ladywhiskers/Plex-Meta-Manager-Configs/assets/99696830/5f3ee81b-661a-4b42-8c9a-8a4bf2abb55c) ![Movie Library](https://github.com/ladywhiskers/Plex-Meta-Manager-Configs/assets/99696830/492b0ff5-c054-4057-b906-a93cc8ad864b) ![Movie Playlist](https://github.com/ladywhiskers/Plex-Meta-Manager-Configs/assets/99696830/22efdc4f-bb06-4aed-b8f4-4bd83fb67942) diff --git a/ladywhiskers/config.yml b/ladywhiskers/config.yml index b048191..152c862 100644 --- a/ladywhiskers/config.yml +++ b/ladywhiskers/config.yml @@ -4,6 +4,11 @@ libraries: use_separator: false collection_files: - folder: config/movies + - pmm: bafta + - pmm: cannes + - pmm: oscars + - pmm: razzie + - pmm: tautulli - pmm: actor template_variables: collection_section: '001' @@ -18,7 +23,7 @@ libraries: limit: 100 tmdb_birthday: this_month: true - - pmm: content_rating_cs + - pmm: content_rating_au - pmm: other_chart template_variables: use_anidb: false @@ -38,13 +43,6 @@ libraries: - DreamWorks Studios - DreamWorks Pictures - Pixar - - pmm: franchise - template_variables: - minimum_items: 2 - delete_below_minimum: true - - pmm: universe - template_variables: - remove_data: dca schedule_overlays: weekly(saturday) overlay_files: - pmm: commonsense @@ -75,25 +73,27 @@ libraries: - config/assets/Movies/ prioritize_assets: false operations: - split_duplicates: false - assets_for_all: true - delete_collections: - configured: false - managed: true - mass_user_rating_update: mdb_tomatoes - mass_critic_rating_update: imdb - mass_audience_rating_update: tmdb - mass_genre_update: omdb - mass_content_rating_update: mdb_commonsense - mass_originally_available_update: tmdb - mass_imdb_parental_labels: none - metadata_backup: - path: config/backups/Movies_Metadata_Backup.yml - sync_tags: true - add_blank_entries: false - genre_mapper: - Sci-Fi: Science Fiction - Action & Adventure: Action + - schedule: daily + delete_collections: + configured: false + managed: true + metadata_backup: + path: config/backups/Movies_Metadata_Backup.yml + sync_tags: true + add_blank_entries: false + genre_mapper: + Sci-Fi: Science Fiction + Action & Adventure: Action + - schedule: weekly(friday) + mass_user_rating_update: mdb_tomatoes + mass_critic_rating_update: imdb + mass_audience_rating_update: tmdb + mass_genre_update: omdb + mass_content_rating_update: mdb_commonsense + mass_originally_available_update: tmdb + mass_imdb_parental_labels: none + split_duplicates: false + assets_for_all: true TV Shows: report_path: config/missing/TV_report.yml template_variables: @@ -115,7 +115,8 @@ libraries: limit: 100 tmdb_birthday: this_month: true - - pmm: content_rating_cs + - pmm: content_rating_au + - pmm: tautulli - pmm: other_chart template_variables: use_anidb: false @@ -124,15 +125,10 @@ libraries: visible_library_commonsense: true visible_home_commonsense: true visible_shared_commonsense: true - - pmm: universe - pmm: continent template_variables: include: - Oceania - - pmm: franchise - template_variables: - minimum_items: 2 - delete_below_minimum: true - folder: config/tvshows schedule_overlays: weekly(friday) overlay_files: @@ -187,27 +183,30 @@ libraries: - config/assets/TV Shows/ prioritize_assets: false operations: - split_duplicates: false - assets_for_all: true - delete_collections: - configured: false - managed: true - mass_user_rating_update: mdb_tomatoes - mass_critic_rating_update: imdb - mass_audience_rating_update: tmdb - mass_genre_update: omdb - mass_content_rating_update: mdb_commonsense - mass_originally_available_update: tmdb - mass_episode_critic_rating_update: imdb - mass_episode_audience_rating_update: tmdb - mass_imdb_parental_labels: none - metadata_backup: - path: config/backups/TVShows_Metadata_Backup.yml - sync_tags: true + - schedule: daily + delete_collections: + configured: false + managed: true + metadata_backup: + path: config/backups/Movies_Metadata_Backup.yml + sync_tags: true add_blank_entries: false - genre_mapper: - Sci-Fi: Science Fiction - Action & Adventure: Action + genre_mapper: + Sci-Fi: Science Fiction + Action & Adventure: Action + - schedule: weekly(wednesday) + mass_user_rating_update: mdb_tomatoes + mass_critic_rating_update: imdb + mass_audience_rating_update: tmdb + mass_genre_update: omdb + - schedule: weekly (thursday) + mass_content_rating_update: mdb_commonsense + mass_originally_available_update: tmdb + mass_episode_critic_rating_update: imdb + mass_episode_audience_rating_update: tmdb + mass_imdb_parental_labels: none + split_duplicates: false + assets_for_all: true Music: schedule: weekly (sunday) remove_overlays: true diff --git a/ladywhiskers/movies/0_othercollections.yml b/ladywhiskers/movies/0_othercollections.yml deleted file mode 100644 index b436fbf..0000000 --- a/ladywhiskers/movies/0_othercollections.yml +++ /dev/null @@ -1,25 +0,0 @@ -templates: - smart_filter: - all: - genre: <> - sort_by: release.desc - url_poster: https://theposterdb.com/api/assets/<> - sort_title: ++++++++_<> - collection_mode: hide - -collections: - Disney Live-Action Remakes: - imdb_list: https://www.imdb.com/list/ls083312980/ - sort_title: '!070_Walt Disney Live-Action Remakes' - collection_order: alpha - - Disney Animation Studios: - imdb_list: https://www.imdb.com/list/ls076436131/ - sort_title: '!070_Walt Disney Animation Studios' - collection_order: alpha - - The Three Flavours Cornetto: - imdb_list: https://www.imdb.com/list/ls009887457/ - summary: The anthology series of British comedic genre films directed by Edgar Wright, written by Wright and Simon Pegg, and produced by Nira Park. - sort_title: 'Three Flavours Cornetto' - collection_order: release diff --git a/ladywhiskers/movies/10_cannes.yml b/ladywhiskers/movies/10_cannes.yml deleted file mode 100644 index ee7d291..0000000 --- a/ladywhiskers/movies/10_cannes.yml +++ /dev/null @@ -1,52 +0,0 @@ -############################################################################## -# Cannes Awards Collections # -# Created by Yozora, Bullmoose20, & Sohjiro # -# Credit to pjcob & maxwelldeux for the Trakt Lists # -# EDITING THIS FILE MAY CAUSE PULLING NEW UPDATES TO FAIL # -# https://metamanager.wiki/en/latest/defaults/award/cannes.html # -############################################################################## - -external_templates: - pmm: templates - template_variables: - collection_section: 130 - -collections: - Cannes Golden Palm Winners: - variables: - key: palm - template: - - name: shared - sort: Cannes ! - allowed_libraries: movie - image: award/cannes/winner - translation_key: cannes_best - - name: arr - - name: custom - trakt_list: https://trakt.tv/users/maxwelldeux/lists/cannes-film-festival-palme-d-or - -dynamic_collections: - Cannes Awards: - type: number - sync: true - data: - starting: current_year-4 - ending: current_year - title_format: Cannes <> - template: - - use_year_collections - - trakt - - shared - - arr - - custom - template_variables: - trakt_list: - default: https://trakt.tv/users/pjcob/lists/<>-cannes - allowed_libraries: - default: movie - image: - default: award/cannes/<> - translation_key: - default: cannes_year - dynamic: - default: true \ No newline at end of file diff --git a/ladywhiskers/movies/1_genres.yml b/ladywhiskers/movies/1_genres.yml index 039e98f..898cc2b 100644 --- a/ladywhiskers/movies/1_genres.yml +++ b/ladywhiskers/movies/1_genres.yml @@ -80,39 +80,7 @@ collections: template: {name: Collection, poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/genre/Foreign.jpg} smart_filter: any: - audio_language: - - ar # Arabic - - bs # Bosnian - - zh # Chinese - - cs # Czech - - da # Danish - - nl # Dutch - - fo # Faroese - - fil # Filipino - - fi # Finnish - - fr # French - - de # German - - hu # Hungarian - - id # Indonesian - - it # Italian - - ja # Japanese - - kn # Kannada - - ms # Malay - - ml # Malayalam - - no # Norwegian - - pl # Polish - - ro # Romanian - - ru # Russian - - sr # Serbian - - sv # Swedish - - ta # Tamil - - tr # Turkish - - uk # Ukranian - all: - country.not: - - United States of America - - United Kingdom - - Canada + audio_language.not: en sort_by: audience_rating.desc History: template: {name: Collection, poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/genre/History.jpg} @@ -200,4 +168,4 @@ collections: template: {name: Collection, poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/genre/Western.jpg} smart_filter: sort_by: audience_rating.desc - genre: western \ No newline at end of file + genre: western diff --git a/ladywhiskers/movies/7_franchises.yml b/ladywhiskers/movies/7_franchises.yml new file mode 100644 index 0000000..bbfb787 --- /dev/null +++ b/ladywhiskers/movies/7_franchises.yml @@ -0,0 +1,571 @@ +################################## +# # +# Franchise # +# # +################################## +templates: + Collection: + optional: + - collection + - movie + tmdb_collection_details: <> + tmdb_movie: <> + sync_mode: sync + collection_order: release + sort_title: "!02_<>" + schedule: monthly(20) +collections: + 3 Ninjas: + template: {name: Collection, collection: 71458} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/3 Ninjas.jpg + 101 Dalmatians: + template: {name: Collection, collection: "100693, 124916", movie: 337404} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/101 Dalmatians.jpg + "28 Days/Weeks Later": + template: {name: Collection, collection: 1565} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/28%20Days%20Weeks%20Later.jpg + A Nightmare on Elm Street: + template: {name: Collection, collection: 8581, movie: "6466, 23437"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/A%20Nightmare%20on%20Elm%20Street.jpg + "Alien / Predator": + trakt_list: https://trakt.tv/users/donxy/lists/alien-predator-timeline + name_mapping: Alien Predator + collection_order: release.asc + sort_title: "!02_Alien Predator" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Alien%20Predator.jpg + All Dogs Go to Heaven: + template: {name: Collection, collection: 140910} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/All Dogs Go to Heaven.jpg + Alvin and the Chipmunks: + template: {name: Collection, collection: 167613} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Alvin and the Chipmunks.jpg + American Pie: + template: {name: Collection, collection: "2806, 298820"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/American%20Pie.jpg + Anaconda: + template: {name: Collection, collection: 105995, movie: 336560} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Anaconda.jpg + Angels in the: + template: {name: Collection, collection: 508334} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Angels%20In%20The.jpg + Back to the Future: + template: {name: Collection, collection: 264} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Back to the Future.jpg + Barbershop: + template: {name: Collection, collection: 176097, movie: 14177} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Barbershop.jpg + Batman: + template: {name: Collection, collection: "120794, 263, 948485"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Batman.jpg + Battlestar Galactica: + template: {name: Collection, collection: 91697} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Battlestar Galactica.jpg + Beauty and the Beast: + template: {name: Collection, collection: 153010, movie: 321612} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Beauty and the Beast.jpg + Blade: + template: {name: Collection, collection: 735} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Blade.jpg + Bourne: + template: {name: Collection, collection: 31562} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Bourne.jpg + Captain America: + template: {name: Collection, collection: 131295} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Captain America.jpg + Charlie Brown: + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls054850259/ + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Charlie%20Brown.jpg + Child's Play: + template: {name: Collection, collection: 10455} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Child's Play.jpg + Children of the Corn: + template: {name: Collection, collection: 115225} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Children of the Corn.jpg + Cloverfield: + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls096108041/ + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Cloverfield.jpg + Cornetto Trilogy: + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls068623110/ + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Cornetto%20Trilogy.jpg + DC Animated Universe: + trakt_list: https://trakt.tv/users/donxy/lists/dc-animated-movie-universe + collection_order: release.asc + sort_title: "!02_DC Animated Universe" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/DC%20Universe.jpg + DC Extended Universe: + trakt_list: https://trakt.tv/users/donxy/lists/dc-extended-universe + summary: The DC Extended Universe (DECU) is the fictional shared universe where most stories in American comic book titles published by DC Comics take place. DC + collection_order: release.asc + sort_title: "!02_DC Extended Universe" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/DC%20Universe.jpg + DC SuperHero Girls: + template: {name: Collection, collection: "477208, 557495"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/DC%20Super%20Hero%20Girls.jpg + Deadpool: + template: {name: Collection, collection: 448150, movie: 567604} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Deadpool.jpg + Despicable Me: + template: {name: Collection, collection: "86066, 544669"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Despicable%20Me.jpg + Die Hard: + template: {name: Collection, collection: 1570} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Die Hard.jpg + Ernest: + template: {name: Collection, collection: 330555} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Ernest.jpg + Escape From: + template: {name: Collection, collection: 115838} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Escape%20From.jpg + Evil Dead: + template: {name: Collection, collection: 1960} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Evil Dead.jpg + Fast & Furious: + trakt_list: https://trakt.tv/users/vargajoe/lists/fast-and-furious-chronology + collection_order: release.asc + sort_title: "!02_Fast & Furious" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Fast%20%26%20Furious.jpg + Fear Street: + template: {name: Collection, collection: 790370} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Fear Street.jpg + Fifty Shades of Grey: + template: {name: Collection, collection: 344830} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Fifty Shades of Grey.jpg + Final Destination: + template: {name: Collection, collection: 8864} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Final Destination.jpg + Final Fantasy: + template: {name: Collection, collection: 140760} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Final%20Fantasy.jpg + Friday the 13th: + template: {name: Collection, collection: 9735, movie: "6466, 222724"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Friday%20the%2013th.jpg + Frozen: + template: {name: Collection, collection: 386382, movie: "326359, 460793"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Frozen.jpg + Futurama: + template: {name: Collection, collection: 13800} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Futurama.jpg + Garfield: + template: {name: Collection, collection: "86115, 373918"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Garfield.jpg + Ghostbusters: + template: {name: Collection, collection: 2980, movie: 43074} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Ghostbusters.jpg + Godzilla: + template: {name: Collection, collection: "535313, 374509, 374511, 374512", movie: "293167, 18983, 39256, 18983, 39256, 293167"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Godzilla.jpg + "Halloween: Michael Myers": + template: {name: Collection, collection: "91361, 126209, 424139, 610253, 616820"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Halloween.jpg + Halloweentown: + template: {name: Collection, collection: 87252} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Halloweentown.jpg + Halo: + template: {name: Collection, collection: 606301} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Halo.jpg + Hannibal Lecter: + template: {name: Collection, collection: 9743, movie: 11454} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Hannibal%20Lecter.jpg + Has Fallen: + template: {name: Collection, collection: 386534} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Has%20Fallen.jpg + Hellraiser: + template: {name: Collection, collection: 8917} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Hellraiser.jpg + Highlander: + template: {name: Collection, collection: 8050} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Highlander.jpg + Home Alone: + template: {name: Collection, collection: 9888} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Home Alone.jpg + Hostel: + template: {name: Collection, collection: 86578} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Hostel.jpg + Hotel Transylvania: + template: {name: Collection, collection: 185103} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Hotel Transylvania.jpg + How to Train Your Dragon: + template: {name: Collection, collection: 89137} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/How to Train Your Dragon.jpg + I Know What You Did Last Summer: + template: {name: Collection, collection: 3601} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/I Know What You Did Last Summer.jpg + Ice Age: + template: {name: Collection, collection: 8354, movie: "79218, 717095, 387893"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Ice%20Age.jpg + Indiana Jones: + template: {name: Collection, collection: 84} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Indiana%20Jones.jpg + Insidious: + template: {name: Collection, collection: 228446} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Insidious.jpg + IP Man: + template: {name: Collection, collection: 70068, movie: "658009, 643413, 450001, 751391, 44249, 182127, 44865"} + collection_order: alpha + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/IP%20Man.jpg + Iron Man: + template: {name: Collection, collection: 131292} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Iron Man.jpg + James Bond: + template: {name: Collection, collection: 645} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/James%20Bond%20007.jpg + Jack Ryan: + template: {name: Collection, collection: 192492, movie: "4614, 137094"} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Jack Ryan.jpg + Jaws: + template: {name: Collection, collection: 2366} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Jaws.jpg + Jumanji: + template: {name: Collection, collection: 495527} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Jumanji.jpg + Jurassic Park: + template: {name: Collection, collection: 328, movie: 630322} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Jurassic%20Park.jpg + Justice League: + template: {name: Collection, collection: 256287} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Justice League.jpg + Karate Kid: + template: {name: Collection, collection: 8580, movie: 38575} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Karate%20Kid.jpg + Kingsman: + template: {name: Collection, collection: 391860} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Kingsman.jpg + Kung Fu Panda: + template: {name: Collection, collection: 77816} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Kung Fu Panda.jpg + Lake Placid: + template: {name: Collection, collection: 97768} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Lake Placid.jpg + Legally Blonde: + template: {name: Collection, collection: 86024} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Legally Blonde.jpg + Leprechaun: + template: {name: Collection, collection: 19285} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Leprechaun.jpg + Lethal Weapon: + template: {name: Collection, collection: 945} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Lethal Weapon.jpg + Lilo & Stitch: + template: {name: Collection, collection: 97461} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Lilo & Stitch.jpg + Look Who's Talking: + template: {name: Collection, collection: 9521} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Look Who's Talking.jpg + Mad Max: + template: {name: Collection, collection: 8945} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Mad Max.jpg + Madagascar: + template: {name: Collection, collection: 14740, movie: "161143, 25472, 270946"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Madagascar.jpg + Marx Brothers: + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls068486735/ + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Marx%20Brothers.jpg + Marvel Cinematic Universe: + trakt_list: https://trakt.tv/users/donxy/lists/marvel-cinematic-universe + collection_order: release.asc + sort_title: "!02_Marvel Cinematic Universe" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Marvel%20Cinematic%20Universe.jpg + Meet the Parents: + template: {name: Collection, collection: 51509} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Meet the Parents.jpg + Men In Black: + template: {name: Collection, collection: 86055} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Men In Black.jpg + Middle Earth: + trakt_list: https://trakt.tv/users/dybro/lists/lord-of-the-rings + collection_order: release.asc + sort_title: "!02_Middle Earth" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Middle%20Earth.jpg + Missing in Action: + template: {name: Collection, collection: 46512} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Missing in Action.jpg + "Mission: Impossible": + template: {name: Collection, collection: 87359} + name_mapping: Mission Impossible + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Mission%20Impossible.jpg + Monty Python: + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls072012494/ + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Monty%20Python.jpg + Mortal Kombat: + template: {name: Collection, collection: "9818, 931431", movie: 664767} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Mortal%20Kombat.jpg + National Lampoon Vacation: + template: {name: Collection, collection: 108693, movie: "11155, 296099"} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/National Lampoon Vacation.jpg + Night at the Museum: + template: {name: Collection, collection: 85943} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Night at the Museum.jpg + Night of the Demons: + template: {name: Collection, collection: 136218} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Night of the Demons.jpg + Night of the Living Dead: + template: {name: Collection, collection: 261590, movie: "13025, 29426"} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Night of the Living Dead.jpg + "Ocean's": + template: {name: Collection, collection: 304} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Ocean's.jpg + Oz: + template: {name: Collection, collection: 627517, movie: "13155, 68728"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Oz.jpg + Pet Semetary: + template: {name: Collection, collection: 10789, movie: 157433} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Pet%20Sematary.jpg + Pirates of the Caribbean: + template: {name: Collection, collection: 295} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Pirates%20of%20the%20Caribbean.jpg + Pitch Perfect: + template: {name: Collection, collection: 306031} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Pitch Perfect.jpg + Planet of the Apes: + template: {name: Collection, collection: "1709, 173710"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Planet%20of%20the%20Apes.jpg + Police Academy: + template: {name: Collection, collection: 9338} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Police Academy.jpg + Police Story: + template: {name: Collection, collection: 269098} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Police Story.jpg + Poltergeist: + template: {name: Collection, collection: 10453} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Poltergeist.jpg + Power Rangers: + template: {name: Collection, collection: 708816, movie: "305470, 306264"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Power%20Rangers.jpg + Prom Night: + template: {name: Collection, collection: 123255} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Prom Night.jpg + Rambo: + template: {name: Collection, collection: 5039} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Rambo.jpg + RoboCop: + template: {name: Collection, collection: 5547} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/RoboCop.jpg + Resident Evil: + template: {name: Collection, collection: "17255, 133352"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Resident%20Evil.jpg + Return of the Living Dead: + template: {name: Collection, collection: 101471} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Return of the Living Dead.jpg + Rocky / Creed: + trakt_list: https://trakt.tv/users/strangerer/lists/rocky + name_mapping: Rocky Creed + collection_order: release.asc + sort_title: "!02_Rocky Creed" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Rocky%20Creed.jpg + Rugrats: + template: {name: Collection, collection: 57129} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Rugrats.jpg + Saw: + template: {name: Collection, collection: 656} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Saw.jpg + Scanners: + template: {name: Collection, collection: 88574} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Scanners.jpg + Scary Movie: + template: {name: Collection, collection: 4246} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Scary Movie.jpg + "Scooby-Doo!": + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls505230642/ + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Scooby-Doo!.jpg + Scream: + template: {name: Collection, collection: 2602} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Scream.jpg + Shaft: + template: {name: Collection, collection: "495, 608103"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Shaft.jpg + Sharknado: + template: {name: Collection, collection: 286023} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Sharknado.jpg + Shrek: + template: {name: Collection, collection: 2150} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Shrek.jpg + Species: + template: {name: Collection, collection: 9887} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Species.jpg + Spider-Man: + template: {name: Collection, collection: "531241, 556, 573436"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Spider-Man.jpg + Star Trek: + trakt_list: https://trakt.tv/users/arachn0id/lists/star-trek-movies + collection_order: release.asc + sort_title: "!02_Star Trek" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Star%20Trek.jpg + Star Wars: + trakt_list: https://trakt.tv/users/zorge88/lists/star-wars + collection_order: release.asc + sort_title: "!02_Star Wars" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Star%20Wars.jpg + Stargate: + template: {name: Collection, collection: 44215, movie: 2164} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Stargate.jpg + Starship Troopers: + template: {name: Collection, collection: 10522} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Starship Troopers.jpg + Street Fighter: + template: {name: Collection, collection: 190435, movie: "687354, 11667"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Street%20Fighter.jpg + Stuart Little: + template: {name: Collection, collection: 99727} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Stuart Little.jpg + Superman: + template: {name: Collection, collection: "8537, 209131"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Superman.jpg + Taken: + template: {name: Collection, collection: 135483} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Taken.jpg + Tales From the Hood: + template: {name: Collection, collection: 551890} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Tales From the Hood.jpg + Tarzan: + template: {name: Collection, collection: 106768} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Tarzan.jpg + Teenage Mutant Ninja Turtles: + template: {name: Collection, collection: "1582, 401562", movie: 1273} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Teenage%20Mutant%20Ninja%20Turtles.jpg + Terminator: + template: {name: Collection, collection: 528} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Terminator.jpg + The Amityville Horror: + template: {name: Collection, collection: 397842} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Amityville Horror.jpg + The Avengers: + template: {name: Collection, collection: 86311} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Avengers.jpg + The Chronicles of Narnia: + template: {name: Collection, collection: 420} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Chronicles of Narnia.jpg + The Chronicles of Riddick: + template: {name: Collection, collection: 2794} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Chronicles of Riddick.jpg + The Conjuring: + template: {name: Collection, collection: 313086} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Conjuring.jpg + The Crow: + template: {name: Collection, collection: 9436} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Crow.jpg + The Exorcist: + template: {name: Collection, collection: 12263} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Exorcist.jpg + The Expendables: + template: {name: Collection, collection: 126125} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Expendables.jpg + The Godfather: + template: {name: Collection, collection: 230} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Godfather.jpg + The Grudge: + template: {name: Collection, collection: 1974, movie: 465086} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Grudge.jpg + The Hangover: + template: {name: Collection, collection: 86119} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Hangover.jpg + The Hills Have Eyes: + template: {name: Collection, collection: "267922, 8918"} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Hills Have Eyes.jpg + The Hunger Games: + template: {name: Collection, collection: 131635} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/The%20Hunger%20Games.jpg + The Lion King: + template: {name: Collection, collection: 94032, movie: "420818"} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Lion King.jpg + The Little Mermaid: + template: {name: Collection, collection: 33085} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Little Mermaid.jpg + The Man With No Name: + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls023916334/ + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/The%20Man%20With%20No%20Name.jpg + The Maze Runner: + template: {name: Collection, collection: 295130} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Maze Runner.jpg + The Matrix: + template: {name: Collection, collection: 2344} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Matrix.jpg + The Mighty Ducks: + template: {name: Collection, collection: 10709} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Mighty Ducks.jpg + The Mummy: + trakt_list: https://trakt.tv/users/rzepkowski/lists/the-mummy-movies + collection_order: release.asc + sort_title: "!02_The Mummy" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/The%20Mummy.jpg + The Naked Gun: + template: {name: Collection, collection: 37139} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Naked Gun.jpg + The Neverending Story: + template: {name: Collection, collection: 91430} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Neverending Story.jpg + The Omen: + template: {name: Collection, collection: 10919, movie: 806} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Omen.jpg + The Purge: + template: {name: Collection, collection: 256322} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Purge.jpg + The Santa Clause: + template: {name: Collection, collection: 53159} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Santa Clause.jpg + The Texas Chainsaw Massacre: + template: {name: Collection, collection: "111751, 425175"} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/The%20Texas%20Chainsaw%20Massacre.jpg + Thor: + template: {name: Collection, collection: 131296} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Thor.jpg + The Three Stooges: + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls075972675/ + tmdb_movie: 76489 + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/The%20Three%20Stooges.jpg + The Transporter: + template: {name: Collection, collection: 9518} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The Transporter.jpg + Tom and Jerry: + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls022966050/ + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Tom%20and%20Jerry.jpg + Tomb Raider: + template: {name: Collection, collection: "2467, 621142", movie: 550760} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Tomb%20Raider.jpg + Toy Story: + template: {name: Collection, collection: 10194, movie: 130925} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Toy%20Story.jpg + Transformers: + template: {name: Collection, collection: 8650} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Transformers.jpg + Tremors: + template: {name: Collection, collection: 91799} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Tremors.jpg + TRON: + template: {name: Collection, collection: 63043, movie: 73362} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Tron.jpg + Twilight: + template: {name: Collection, collection: 33514} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Twilight.jpg + Unbreakable: + template: {name: Collection} + imdb_list: https://www.imdb.com/list/ls022101006/ + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Unbreakable.jpg + Universal Soldier: + template: {name: Collection, collection: 10713} + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Universal Soldier.jpg + X-Men: + trakt_list: https://trakt.tv/users/donxy/lists/x-men-universe + collection_order: release.asc + sort_title: "!02_X-Men" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/X-Men.jpg + Wallace & Gromit: + template: {name: Collection, collection: 529} + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Wallace%20%26%20Gromit.jpg + Watchmen: + tmdb_list: https://www.themoviedb.org/list/8196349} + sort_title: "!02_Watchmen" + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Watchmen.jpg + Wizarding World: + trakt_list: https://trakt.tv/users/strangerer/lists/harry-potter + collection_order: release.asc + sort_title: "!02_Wizarding World" + url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Wizarding%20World.jpg \ No newline at end of file diff --git a/ladywhiskers/movies/8_oscars.yml b/ladywhiskers/movies/8_oscars.yml deleted file mode 100644 index fa18ec8..0000000 --- a/ladywhiskers/movies/8_oscars.yml +++ /dev/null @@ -1,173 +0,0 @@ -############################################################################## -# Academy Awards (Oscars) Collections # -# Created by Yozora, Bullmoose20, & Sohjiro # -# EDITING THIS FILE MAY CAUSE PULLING NEW UPDATES TO FAIL # -# https://metamanager.wiki/en/latest/defaults/award/oscars.html # -############################################################################## - -external_templates: - pmm: templates - template_variables: - collection_section: 130 - -collections: - Best Picture: - imdb_list: https://www.imdb.com/search/title/?groups=best_picture_winner - sync_mode: sync - collection_mode: default - collection_order: release.asc - url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/award/oscars/best_picture_winner.jpg - schedule: yearly(03/01) - sort_title: "!130_Oscars !1" - Best Director: - imdb_list: https://www.imdb.com/search/title/?groups=best_director_winner - sync_mode: sync - collection_mode: default - collection_order: release.asc - url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/award/oscars/best_director_winner.jpg - schedule: yearly(03/01) - sort_title: "!130_Oscars !2" - Best Actor: - imdb_list: https://www.imdb.com/list/ls098559088/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !3" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Actor.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Actor.jpg - schedule: yearly(03/01) - Best Actress: - imdb_list: https://www.imdb.com/list/ls098092908/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !4" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Actress.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Actress.jpg - schedule: yearly(03/01) - Best Adapted Screenplay: - imdb_list: https://www.imdb.com/list/ls098087964/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !5" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Adapted Screenplay.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Adapted%20Screenplay.jpg - schedule: yearly(03/01) - Best Animated Feature Film: - imdb_list: https://www.imdb.com/list/ls098094655/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !6" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Animated Feature Film.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Animated%20Feature%20Film.jpg - schedule: yearly(03/01) - Best Cinematography: - imdb_list: https://www.imdb.com/list/ls098084055/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !7" - file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Cinematography.jpg - #url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Cinematography.jpg - schedule: yearly(03/01) - Best Documentary: - imdb_list: https://www.imdb.com/list/ls098500456/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !8" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Documentary.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Documentary.jpg - schedule: yearly(03/01) - Best Film Editing: - imdb_list: https://www.imdb.com/list/ls560364494/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !9" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Film Editing.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Film%20Editing.jpg - schedule: yearly(03/01) - Best Original Motion Picture: - imdb_list: https://www.imdb.com/list/ls098506998/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !9a" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Original Motion Picture.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Original%20Motion%20Picture.jpg - schedule: yearly(03/01) - Best Original Screenplay: - imdb_list: https://www.imdb.com/list/ls098505320/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !9b" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Original Screenplay.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Original%20Screenplay.jpg - schedule: yearly(03/01) - Best Sound: - imdb_list: https://www.imdb.com/list/ls560369669/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !9c" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Sound.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Sound.jpg - schedule: yearly(03/01) - Best Supporting Actor: - imdb_list: https://www.imdb.com/list/ls098559088/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !9d" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Supporting Actor.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Supporting%20Actor.jpg - schedule: yearly(03/01) - Best Supporting Actress: - imdb_list: https://www.imdb.com/list/ls098559671/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !9e" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Supporting Actress.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Supporting%20Actress.jpg - schedule: yearly(03/01) - Best Visual Effects: - imdb_list: https://www.imdb.com/list/ls560368042/ - sync_mode: sync - collection_mode: default - collection_order: release.asc - sort_title: "!130_Oscars !9f" - #file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Critics/Oscars/Oscar Best Visual Effects.jpg - url_poster: https://raw.githubusercontent.com/WhoDat104/Oscars-Categories/main/Oscar%20Best%20Visual%20Effects.jpg - schedule: yearly(03/01) -dynamic_collections: - Oscars Winners Awards: - type: number - sync: true - data: - starting: current_year-5 - ending: current_year-1 - title_format: <> Winners - template: - - use_year_collections - - imdb - - shared - - arr - - custom - template_variables: - imdb_list: - default: https://www.imdb.com/search/title/?release_date=<>-01-01,<>-12-31&groups=oscar_winner&sort=<> - imdb_sort: - default: moviemeter,asc - allowed_libraries: - default: movie - image: - default: award/oscars/winner/<> - translation_key: - default: oscars_year - dynamic: - default: true \ No newline at end of file diff --git a/ladywhiskers/movies/9_bafta.yml b/ladywhiskers/movies/9_bafta.yml deleted file mode 100644 index 781539f..0000000 --- a/ladywhiskers/movies/9_bafta.yml +++ /dev/null @@ -1,52 +0,0 @@ -############################################################################## -# British Academy of Film and Television Arts Awards Collections # -# Created by Yozora, Bullmoose20, & Sohjiro # -# Credit to pjcob & maxwelldeux for the Trakt Lists # -# EDITING THIS FILE MAY CAUSE PULLING NEW UPDATES TO FAIL # -# https://metamanager.wiki/en/latest/defaults/award/bafta.html # -############################################################################## - -external_templates: - pmm: templates - template_variables: - collection_section: 130 - -collections: - BAFTA Best Films: - variables: - key: best - template: - - name: shared - sort: BAFTA ! - allowed_libraries: movie - image: award/bafta/winner - translation_key: bafta_best - - name: arr - - name: custom - trakt_list: https://trakt.tv/users/maxwelldeux/lists/bafta-award-best-film - -dynamic_collections: - BAFTA Awards: - type: number - sync: true - data: - starting: current_year-4 - ending: current_year - title_format: BAFTA <> - template: - - use_year_collections - - trakt - - shared - - arr - - custom - template_variables: - trakt_list: - default: https://trakt.tv/users/pjcob/lists/<>-bafta - allowed_libraries: - default: movie - image: - default: award/bafta/<> - translation_key: - default: bafta_year - dynamic: - default: true \ No newline at end of file diff --git a/ladywhiskers/tvshows/4_tvshows-franchises.yml b/ladywhiskers/tvshows/4_tvshows-franchises.yml index d341358..27a76a8 100644 --- a/ladywhiskers/tvshows/4_tvshows-franchises.yml +++ b/ladywhiskers/tvshows/4_tvshows-franchises.yml @@ -28,11 +28,13 @@ collections: filter: actor: David Attenborough sonarr_add_missing: false - file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Franchises/Attenborough.jpg + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Attenborough.jpg summary: Collection of David Attenborough TV Shows. + Avatar + template: {name: Collection, show: "74852, 251085" } Battlestar Galactica: template: {name: Collection, show: "71173, 73545, 85040, 204781"} - file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Franchises/Battlestar Galactica.jpg + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Battlestar Galactica.jpg summary: Collection of Battlestar Galactica Shows. C.S.I: template: {name: Collection, show: "72546, 78310, 73696, 281551, 400248", poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/CSI.jpg} @@ -53,7 +55,7 @@ collections: summary: Collection of shows in the Marvel TV Universe. Narcos: template: {name: Collection, show: "282670, 353232"} - file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Franchises/Narcos.jpg + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/Narcos.jpg summary: Anthology of Netflix shows about the Columbia and Mexican drug cartells rise to power in the 1980's. NCIS: template: {name: Collection, show: "73710, 72108, 95441, 278125, 401630", poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/NCIS.jpg} @@ -78,8 +80,8 @@ collections: summary: Collection of Walking Dead TV Shows. The X-Files: template: {name: Collection, show: "77398, 76245"} - file_poster: /Volumes/128 TB ThunderBay/Documents/Plex Resources/Plex Posters/Franchises/The X Files.jpg + url_poster: https://raw.githubusercontent.com/WhoDat104/main/Franchises/The X Files.jpg summary: Collection of shows from the X-Files. Yellowstone: template: {name: Collection, show: "341164, 396390, 416491, 416503, 403011", poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/franchise/Yellowstone.jpg} - summary: Collection of Yellowstone Shows. \ No newline at end of file + summary: Collection of Yellowstone Shows.