mirror of
https://github.com/Kometa-Team/Community-Configs.git
synced 2026-03-23 10:03:10 -04:00
* Update config.yml Updated to use letterboxd defaults * Delete ladywhiskers/metadata_folders directory * Update movies_critics_other.yml * Update movies_subgenre.yml * Update movies_topics.yml * Update movies_watchlist.yml * Delete ladywhiskers/music/Music-Genre-top.yml * Add files via upload * Update tvshows_Attenborough.yml * Update tvshows_documentaries.yml * Update tvshows_topic.yml * Update tvshows_watchlist.yml * Add files via upload * Update config.yml Minor edits, commented out genre default * Delete ladywhiskers/tvshows/tvshows_Attenborough.yml Removing unused yml * Update tvshows_documentaries.yml * Update tvshows_topic.yml commenting out sync * Update tvshows_watchlist.yml Added a collection of recommendations for my mum * Update musictemplates.yml * Update Music-Genre.yml * Update continents.yml * Update track_collections.yml * Update movies_critics_other.yml * Update movies_subgenre.yml Replaced ediblehedgehog letterboxd lists with another user * Update movies_topics.yml * Update movies_watchlist.yml Removed Bec's list Added collection for recommendations for my mum. * Delete ladywhiskers/metadata_folders directory * Add files via upload renamed and reorganised a bunch of mediux references - still a work in progress. * Update tvshows_watchlist.yml formatting * Update README.md minor update * Update movies_watchlist.yml Added template to reduce redunancy * Delete ladywhiskers/metadata_folders directory * docs: Document the ladywhiskers Kometa configuration This change adds comprehensive documentation to the Kometa configuration files within the 'ladywhiskers' subfolder. It adds comments to all YAML files to explain their purpose and settings. It also adds a new, detailed README.md file to the 'ladywhiskers' directory to provide a complete guide for new developers, covering the purpose, structure, and usage of the configuration. * Update Music-Genre.yml * Update track_collections.yml * Refactor movie watchlist YAML structure and templates * Add files via upload --------- Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
72 lines
3.0 KiB
YAML
72 lines
3.0 KiB
YAML
# This file defines collections based on critics' ratings and awards,
|
|
# primarily from Rotten Tomatoes. It uses Trakt lists to source the movies.
|
|
# Credits: Yozora, Bullmoose20, Sohjiro, maxwelldeux, WhoDat104
|
|
|
|
# External templates are used to avoid repetition.
|
|
# 'pmm: templates' likely refers to a set of predefined templates.
|
|
external_templates:
|
|
pmm: templates
|
|
template_variables:
|
|
# This variable is used to control the sorting of collections.
|
|
collection_section: 130
|
|
|
|
# Template for creating Rotten Tomatoes "Best of" collections.
|
|
templates:
|
|
Rotten Tomatoes:
|
|
# The Trakt list URL is parameterized with 'key', which will be a year.
|
|
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-best-of-<<key>>
|
|
# 'sync' mode ensures that the Plex collection matches the Trakt list.
|
|
sync_mode: sync
|
|
collection_mode: default
|
|
collection_order: custom
|
|
# The sort title is prefixed to control the order of collections in Plex.
|
|
sort_title: "!130_Rotten Tomatoes Best of <<key>>"
|
|
# Schedule for when to update the collection.
|
|
schedule: monthly(01)
|
|
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20of%20<<key>>.jpg
|
|
|
|
# Static collections based on specific Rotten Tomatoes lists.
|
|
collections:
|
|
Rotten Tomatoes Best All-Time:
|
|
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-top-100-movies-of-all-time
|
|
sync_mode: sync
|
|
collection_mode: default
|
|
collection_order: custom
|
|
sort_title: "!130_Rotten !1"
|
|
schedule: monthly(10)
|
|
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20All-Time.jpg
|
|
|
|
Rotten Tomatoes Best Horror:
|
|
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-best-horror-movies-of-all-time
|
|
sync_mode: sync
|
|
collection_mode: default
|
|
collection_order: custom
|
|
sort_title: "!130_Rotten !2"
|
|
schedule: monthly(10)
|
|
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20Horror.jpg
|
|
|
|
Rotten Tomatoes Best Rom Com:
|
|
trakt_list: https://trakt.tv/users/lish408/lists/rotten-tomatoes-the-200-best-romantic-comedies-of-all-time
|
|
sync_mode: sync
|
|
collection_mode: default
|
|
collection_order: custom
|
|
sort_title: "!130_Rotten !3"
|
|
schedule: monthly(10)
|
|
url_poster: https://raw.githubusercontent.com/WhoDat104/Rotten-Tomatoes/main/Rotten%20Tomatoes%20Best%20Rom%20Com.jpg
|
|
|
|
# Dynamic collections are created based on a range of values.
|
|
# In this case, it creates "Best of" collections for recent years.
|
|
dynamic_collections:
|
|
Rotten Tomatoes Best of:
|
|
type: number
|
|
sync: true
|
|
data:
|
|
# Creates collections for the last two years.
|
|
starting: current_year-2
|
|
ending: current_year-1
|
|
# The title of the collection will be formatted with the year.
|
|
title_format: Rotten Tomatoes Best of <<key_name>>
|
|
# The 'Rotten Tomatoes' template is used to create the collections.
|
|
template:
|
|
- Rotten Tomatoes
|