diff --git a/docs/config/configuration.md b/docs/config/configuration.md index 345fc66a..180559d1 100644 --- a/docs/config/configuration.md +++ b/docs/config/configuration.md @@ -39,33 +39,33 @@ libraries: # This is called out once within metadata_path: - file: config/Movies.yml # This is a local file on the system - folder: config/Movies/ # This is a local directory on the system - - git: PMM/chart/basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository - - git: PMM/chart/imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository overlay_path: - remove_overlays: false # Set this to true to remove all overlays - file: config/Overlays.yml # This is a local file on the system - - git: PMM/overlays/imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository TV Shows: metadata_path: - file: config/TVShows.yml - folder: config/TV Shows/ - - git: PMM/chart/basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository - - git: PMM/chart/imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository overlay_path: - remove_overlays: false # Set this to true to remove all overlays - file: config/Overlays.yml # This is a local file on the system - - git: PMM/overlays/imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository Anime: metadata_path: - file: config/Anime.yml - - git: PMM/chart/basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository - - git: PMM/chart/anilist # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: anilist # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository Music: metadata_path: - file: config/Music.yml playlist_files: - file: config/playlists.yml - - git: PMM/playlist # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: playlist # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository settings: cache: true cache_expiration: 60 @@ -196,8 +196,8 @@ As can be seen in the original config.yml example, there are three metadata_path metadata_path: - file: config/TVShows.yml - folder: config/TV Shows/ - - git: PMM/chart/basic - - git: PMM/chart/imdb + - pmm: basic + - pmm: imdb ``` These path types are outlined as follows: @@ -223,7 +223,7 @@ It should be noted that whilst the user should be able to edit any metadata file - file: config/TVShows.yml - folder: config/TV Shows/ - file: PMM/chart/basic # <------ HERE - - git: PMM/chart/imdb + - pmm: imdb ``` ## Playlists (`playlist_files:` mappings) @@ -232,7 +232,7 @@ Playlists can be seen as an extension of Libraries in that they are both handled ```yaml playlist_files: - file: config/playlists.yml - - git: PMM/playlists + - pmm: playlists ``` As with `libraries:`, YAML files are defined to create the Playlists. It should be noted that whilst in `libraries:` when working with `playlist_files:` you call out the libraries being connected to within the Metadata/YAML file as Playlists can combine media from multiple libraries. You can view an example playlists.yml file as follows: diff --git a/docs/config/libraries.md b/docs/config/libraries.md index c6f507db..a70de15c 100644 --- a/docs/config/libraries.md +++ b/docs/config/libraries.md @@ -23,18 +23,18 @@ libraries: Movies: metadata_path: - file: config/Movies.yml - - git: PMM/chart/imdb - - git: PMM/studio - - git: PMM/genre - - git: PMM/actor + - pmm: imdb + - pmm: studio + - pmm: genre + - pmm: actor operations: mass_critic_rating_update: tmdb split_duplicates: true TV Shows: metadata_path: - file: config/TV Shows.yml - - git: PMM/chart/tmdb - - git: PMM/show/network + - pmm: tmdb + - pmm: network overlay_path: - remove_overlays: false - file: config/Overlays.yml @@ -45,12 +45,12 @@ libraries: token: #################### metadata_path: - file: config/TV Shows.yml - - git: PMM/chart/tmdb - - git: PMM/show/network + - pmm: tmdb + - pmm: network Anime: metadata_path: - file: config/Anime.yml - - git: PMM/chart/myanimelist + - pmm: myanimelist radarr: url: http://192.168.1.45:7878 token: ################################ @@ -128,8 +128,8 @@ libraries: TV Shows: metadata_path: - file: config/TV Shows.yml - - git: PMM/chart/tmdb - - git: PMM/show/network + - pmm: tmdb + - pmm: network ``` By default, when `metadata_path` is missing the script will look within the root PMM directory for a metadata file called `.yml`. In this example, Plex Meta Manager will look for a file named `TV Shows.yml`. @@ -236,5 +236,5 @@ You can define Playlist Files by using `playlist_files` mapper by specifying the ```yaml playlist_files: - file: config/playlists.yml - - git: PMM/playlist + - pmm: playlist ``` diff --git a/docs/config/operations.md b/docs/config/operations.md index 8cda5739..b9b7ca7f 100644 --- a/docs/config/operations.md +++ b/docs/config/operations.md @@ -8,7 +8,7 @@ Within each library, operations can be defined by using the `operations` attribu libraries: Movies: metadata_path: - - git: PMM/chart/imdb + - pmm: imdb operations: mass_critic_rating_update: tmdb split_duplicates: true diff --git a/docs/config/paths.md b/docs/config/paths.md index 601ae94d..cf5cd5b9 100644 --- a/docs/config/paths.md +++ b/docs/config/paths.md @@ -26,11 +26,11 @@ You can define [Template Variables](../metadata/templates.md#template-variables) libraries: TV Shows: metadata_path: - - git: PMM/genre + - pmm: genre template_variables: schedule_separator: never collection_mode: hide - - git: PMM/actor # Notice how the `-` starts this "section" + - pmm: actor # Notice how the `-` starts this "section" template_variables: schedule_separator: never collection_mode: hide @@ -54,10 +54,10 @@ libraries: metadata_path: - file: config/Movies.yml schedule: weekly(friday) - - git: PMM/actors + - pmm: actors schedule: weekly(saturday) overlay_path: - - git: PMM/overlays/imdb + - pmm: imdb schedule: weekly(monday) playlist_files: - file: config/Playlists.yml @@ -74,10 +74,10 @@ libraries: metadata_path: - file: config/Movies.yml asset_directory: assets/Movies - - git: PMM/actors + - pmm: actors asset_directory: assets/people overlay_path: - - git: PMM/overlays/imdb + - pmm: imdb playlist_files: - file: config/Playlists.yml asset_directory: @@ -103,7 +103,7 @@ libraries: metadata_path: - file: config/TVShows.yml - folder: config/TV Shows/ - - git: PMM/chart/tmdb + - pmm: tmdb - repo: charts - url: https://somewhere.com/PopularTV.yml ``` @@ -136,7 +136,7 @@ libraries: overlay_path: - file: config/overlays.yml - folder: config/overlay configs/ - - git: PMM/overlays/imdb + - pmm: imdb - repo: overlays - url: https://somewhere.com/Overlays.yml ``` @@ -167,7 +167,7 @@ In this example, multiple `playlist_files` attribute path types are defined: playlist_files: - file: config/playlists.yml - folder: config/Playlists/ - - git: PMM/playlist + - pmm: playlist - repo: playlists - url: https://somewhere.com/Playlists.yml ``` @@ -199,7 +199,7 @@ external_templates: - file: config/templates.yml - folder: config/templates/ - url: https://somewhere.com/templates.yml - - git: PMM/templates + - pmm: templates - repo: templates ``` diff --git a/docs/defaults/chart/other.md b/docs/defaults/chart/other.md index 29e54055..56ce59cc 100644 --- a/docs/defaults/chart/other.md +++ b/docs/defaults/chart/other.md @@ -1,6 +1,6 @@ # Other Chart Default Metadata File -The `- pmm: chart/other` Metadata File is used to create collections based on other Charts. +The `- pmm: other_chart` Metadata File is used to create collections based on other Charts. Example Collections Created: @@ -11,7 +11,7 @@ The below YAML in your config.yml will create the collections: libraries: Movies: metadata_path: - - pmm: chart/other + - pmm: other_chart ``` ## Template Variables @@ -59,7 +59,7 @@ The below shows an example config.yml with all the template_variables set away f libraries: Movies: metadata_path: - - pmm: other + - pmm: other_chart template_variables: use_commonsense: false order_commonsense: 01 diff --git a/docs/defaults/readme.md b/docs/defaults/readme.md index b1db9bcb..f0883261 100644 --- a/docs/defaults/readme.md +++ b/docs/defaults/readme.md @@ -23,12 +23,12 @@ To run a file in git you can simply add it to your `metadata_path` (For Metadata libraries: Movies: metadata_path: - - git: PMM/actor - - git: PMM/genre + - pmm: actor + - pmm: genre overlay_path: - remove_overlays: false - - git: PMM/overlays/imdb_top_250 - - git: PMM/overlays/ratings + - pmm: imdb_top_250 + - pmm: ratings ``` ## Overlays @@ -48,11 +48,11 @@ libraries: overlay_path: - remove_overlays: false - reapply_overlay: true - - git: PMM/overlays/resolution # 1 - - git: PMM/overlays/audio_codec # 2 - - git: PMM/overlays/mediastinger # 3 - - git: PMM/overlays/special_release # 4 - - git: PMM/overlays/ratings # 5,6,7 + - pmm: resolution # 1 + - pmm: audio_codec # 2 + - pmm: mediastinger # 3 + - pmm: special_release # 4 + - pmm: ratings # 5,6,7 template_variables: rating1: user # 5 as this is user and mass_user_rating_update: mdb_tomatoes rating1_image: rt_tomato # 5 as this is user and mass_user_rating_update: mdb_tomatoes @@ -70,22 +70,22 @@ libraries: rating3_font_size: 70 # 7 adjusted font size to fit rating horizontal_position: right # the set of ratings is on the right of the poster - - git: PMM/overlays/streaming # 8 - - git: PMM/overlays/video_format # 9 - - git: PMM/overlays/audio_language # 10 - - git: PMM/overlays/oscars # 11 + - pmm: streaming # 8 + - pmm: video_format # 9 + - pmm: audio_language # 10 + - pmm: oscars # 11 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 40 # Weight of 40 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/imdb_top_250 # 12 + - pmm: imdb_top_250 # 12 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 30 # Weight of 30 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/rt_cert_fresh # 13 + - pmm: rt_cert_fresh # 13 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 20 # Weight of 20 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/mc_must_see # NOT SHOWN, however would apply the "MetaCritic Must See" sash in the bottom right + - pmm: mc_must_see # NOT SHOWN, however would apply the "MetaCritic Must See" sash in the bottom right template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 10 # Weight of 10 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/commonsense_selection # NOT SHOWN, however would apply the "Commonsense Selected Families" sash in the bottom right + - pmm: commonsense_selection # NOT SHOWN, however would apply the "Commonsense Selected Families" sash in the bottom right template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 5 # Weight of 5 applies if more than 1 sash is applied in bottom right @@ -108,10 +108,10 @@ libraries: overlay_path: - remove_overlays: false - reapply_overlay: true - - git: PMM/overlays/resolution # 1 - - git: PMM/overlays/audio_codec # 2 - - git: PMM/overlays/mediastinger # 3 - - git: PMM/overlays/ratings # 4,5,6 + - pmm: resolution # 1 + - pmm: audio_codec # 2 + - pmm: mediastinger # 3 + - pmm: ratings # 4,5,6 template_variables: rating1: user # 4 as this is user and mass_user_rating_update: mdb_tomatoes rating1_image: rt_tomato # 4 as this is user and mass_user_rating_update: mdb_tomatoes @@ -129,18 +129,18 @@ libraries: rating3_font_size: 70 # 6 adjusted font size to fit rating horizontal_position: right # the set of ratings is on the right of the poster - - git: PMM/overlays/streaming # 7 - - git: PMM/overlays/video_format # 8 - - git: PMM/overlays/imdb_top_250 # 9 + - pmm: streaming # 7 + - pmm: video_format # 8 + - pmm: imdb_top_250 # 9 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 30 # Weight of 30 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/rt_cert_fresh # 10 + - pmm: rt_cert_fresh # 10 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 20 # Weight of 20 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/mc_must_see # NOT SHOWN, however would apply the "MetaCritic Must See" sash in the bottom right + - pmm: mc_must_see # NOT SHOWN, however would apply the "MetaCritic Must See" sash in the bottom right template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 10 # Weight of 10 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/commonsense_selection # NOT SHOWN, however would apply the "Commonsense Selected Families" sash in the bottom right + - pmm: commonsense_selection # NOT SHOWN, however would apply the "Commonsense Selected Families" sash in the bottom right template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 5 # Weight of 5 applies if more than 1 sash is applied in bottom right @@ -163,13 +163,13 @@ libraries: overlay_path: - remove_overlays: false - reapply_overlay: true - - git: PMM/overlays/resolution # 1 + - pmm: resolution # 1 template_variables: overlay_level: season - - git: PMM/overlays/audio_codec # 2 + - pmm: audio_codec # 2 template_variables: overlay_level: season - - git: PMM/overlays/video_format # 3 + - pmm: video_format # 3 template_variables: overlay_level: season ``` @@ -187,13 +187,13 @@ libraries: overlay_path: - remove_overlays: false - reapply_overlay: true - - git: PMM/overlays/resolution # 1 + - pmm: resolution # 1 template_variables: overlay_level: episode - - git: PMM/overlays/audio_codec # 2 + - pmm: audio_codec # 2 template_variables: overlay_level: episode - - git: PMM/overlays/ratings # 3,4 + - pmm: ratings # 3,4 template_variables: rating1: critic # 3 as this is critic and mass_critic_rating_update: imdb @@ -208,13 +208,13 @@ libraries: horizontal_position: right # the set of ratings is on the right of the poster overlay_level: episode - - git: PMM/overlays/video_format # 5 + - pmm: video_format # 5 template_variables: overlay_level: episode - - git: PMM/overlays/episode_info # 6 + - pmm: episode_info # 6 template_variables: overlay_level: episode - - git: PMM/overlays/runtimes # 7 + - pmm: runtimes # 7 template_variables: overlay_level: episode @@ -247,47 +247,47 @@ This is the default PMM collection ordering: | Collection | Order | -|:-------------------------------------|------------------------| -| `PMM/movie/seasonal.yml` | collection_section: 00 | -| `PMM/chart/anilist.yml` | collection_section: 01 | -| `PMM/chart/basic.yml` | collection_section: 01 | -| `PMM/chart/imdb.yml` | collection_section: 01 | -| `PMM/chart/myanimelist.yml` | collection_section: 01 | -| `PMM/chart/other.yml` | collection_section: 01 | -| `PMM/chart/tautulli.yml` | collection_section: 01 | -| `PMM/chart/tmdb.yml` | collection_section: 01 | -| `PMM/chart/trakt.yml` | collection_section: 01 | -| `PMM/movie/universe.yml` | collection_section: 02 | -| `PMM/streaming.yml` | collection_section: 03 | -| `PMM/show/network.yml` | collection_section: 04 | -| `PMM/genre.yml` | collection_section: 06 | -| `PMM/studio.yml` | collection_section: 07 | -| `PMM/movie/country.yml` | collection_section: 09 | -| `PMM/show/country.yml` | collection_section: 09 | -| `PMM/audio_language.yml` | collection_section: 10 | -| `PMM/subtitle_language.yml` | collection_section: 11 | -| `PMM/movie/decade.yml` | collection_section: 12 | -| `PMM/show/decade.yml` | collection_section: 12 | -| `PMM/year.yml` | collection_section: 13 | -| `PMM/content_rating_uk.yml` | collection_section: 14 | -| `PMM/movie/content_rating_us.yml` | collection_section: 14 | -| `PMM/show/content_rating_us.yml` | collection_section: 14 | -| `PMM/resolution.yml` | collection_section: 15 | -| `PMM/resolution_standards.yml` | collection_section: 15 | -| `PMM/award/bafta.yml` | collection_section: 16 | -| `PMM/award/cannes.yml` | collection_section: 16 | -| `PMM/award/choice.yml` | collection_section: 16 | -| `PMM/award/emmy.yml` | collection_section: 16 | -| `PMM/award/golden.yml` | collection_section: 16 | -| `PMM/award/oscars.yml` | collection_section: 16 | -| `PMM/award/other.yml` | collection_section: 16 | -| `PMM/award/separator.yml` | collection_section: 16 | -| `PMM/award/spirit.yml` | collection_section: 16 | -| `PMM/award/sundance.yml` | collection_section: 16 | -| `PMM/actor.yml` | collection_section: 17 | -| `PMM/movie/director.yml` | collection_section: 18 | -| `PMM/movie/producer.yml` | collection_section: 19 | -| `PMM/movie/writer.yml` | collection_section: 20 | +|:----------------------------------|:-----------------------| +| `seasonal.yml` | collection_section: 00 | +| `anilist.yml` | collection_section: 01 | +| `basic.yml` | collection_section: 01 | +| `imdb.yml` | collection_section: 01 | +| `myanimelist.yml` | collection_section: 01 | +| `other_chart.yml` | collection_section: 01 | +| `tautulli.yml` | collection_section: 01 | +| `tmdb.yml` | collection_section: 01 | +| `trakt.yml` | collection_section: 01 | +| `universe.yml` | collection_section: 02 | +| `streaming.yml` | collection_section: 03 | +| `network.yml` | collection_section: 04 | +| `genre.yml` | collection_section: 06 | +| `studio.yml` | collection_section: 07 | +| `country.yml` | collection_section: 09 | +| `country.yml` | collection_section: 09 | +| `audio_language.yml` | collection_section: 10 | +| `subtitle_language.yml` | collection_section: 11 | +| `decade.yml` | collection_section: 12 | +| `decade.yml` | collection_section: 12 | +| `year.yml` | collection_section: 13 | +| `content_rating_uk.yml` | collection_section: 14 | +| `content_rating_us.yml` | collection_section: 14 | +| `content_rating_us.yml` | collection_section: 14 | +| `resolution.yml` | collection_section: 15 | +| `resolution_standards.yml` | collection_section: 15 | +| `bafta.yml` | collection_section: 16 | +| `cannes.yml` | collection_section: 16 | +| `choice.yml` | collection_section: 16 | +| `emmy.yml` | collection_section: 16 | +| `golden.yml` | collection_section: 16 | +| `oscars.yml` | collection_section: 16 | +| `other_awart.yml` | collection_section: 16 | +| `separator.yml` | collection_section: 16 | +| `spirit.yml` | collection_section: 16 | +| `sundance.yml` | collection_section: 16 | +| `PMM/actor.yml` | collection_section: 17 | +| `director.yml` | collection_section: 18 | +| `producer.yml` | collection_section: 19 | +| `writer.yml` | collection_section: 20 | ## Ratings Overlays @@ -327,7 +327,7 @@ This example changes the ratings overlay to work on episodes. libraries: TV Shows: overlay_path: - - git: PMM/overlays/ratings + - pmm: ratings template_variables: overlay_level: episode ``` @@ -343,7 +343,7 @@ Each file has a comment block at the top showing the available `template_variabl # If nothing is specified these are the defaults # # # # metadata_path: # -# - git: PMM/genre # +# - pmm: genre # # template_variables: # # # Turn the separator collection on/off # # use_separator: true # @@ -370,7 +370,7 @@ For example if you want yearly oscar collections that go back 10 years instead o libraries: Movies: metadata_path: - - git: PMM/award/oscars + - pmm: oscars template_variables: radarr_add_missing: true data: @@ -384,7 +384,7 @@ Or maybe you want to change the number of actor collections made using PMM/actor libraries: Movies: overlay_path: - - git: PMM/actor + - pmm: actor template_variables: collection_mode: hide data: @@ -398,7 +398,7 @@ Or maybe you want to change the collection sort order of the genre collections u libraries: Movies: metadata_path: - - git: PMM/genre + - pmm: genre template_variables: collection_section: 11 ``` @@ -419,11 +419,11 @@ Alternatively it can be turned off individually per git file: libraries: LIBRARYNAME: metadata_path: - - git: PMM/ # separator is disabled + - pmm: # separator is disabled template_variables: use_separator: false - - git: PMM/ # separator is enabled by default - - git: PMM/ # separator is disabled + - pmm: # separator is enabled by default + - pmm: # separator is disabled template_variables: use_separator: false ``` @@ -441,197 +441,188 @@ If there are collections being made that have configuration errors or missing po libraries: Movies: metadata_path: - - git: PMM/award/bafta - - git: PMM/award/cannes - - git: PMM/award/choice - - git: PMM/award/golden - - git: PMM/award/oscars - - git: PMM/award/other - - git: PMM/award/spirit - - git: PMM/award/sundance - - git: PMM/chart/anilist - - git: PMM/chart/basic - - git: PMM/chart/imdb - - git: PMM/chart/myanimelist - - git: PMM/chart/other - - git: PMM/chart/tautulli - - git: PMM/chart/tmdb - - git: PMM/chart/trakt - - git: PMM/actor - - git: PMM/audio_language - - git: PMM/movie/content_rating_us # Choose content_rating_uk or content_rating_us - - git: PMM/genre - - git: PMM/resolution_standards # Choose resolution_standards or resolution - - git: PMM/streaming - - git: PMM/studio - - git: PMM/subtitle_language - - git: PMM/year - - git: PMM/movie/country - - git: PMM/movie/decade - - git: PMM/movie/director - - git: PMM/movie/franchise - - git: PMM/movie/universe - - git: PMM/movie/producer - - git: PMM/movie/seasonal - - git: PMM/movie/writer + - pmm: bafta + - pmm: cannes + - pmm: choice + - pmm: golden + - pmm: oscars + - pmm: other_award + - pmm: spirit + - pmm: sundance + - pmm: anilist + - pmm: basic + - pmm: imdb + - pmm: myanimelist + - pmm: other_chart + - pmm: tautulli + - pmm: tmdb + - pmm: trakt + - pmm: actor + - pmm: audio_language + - pmm: movie/content_rating_us # Choose content_rating_uk or content_rating_us + - pmm: genre + - pmm: resolution_standards # Choose resolution_standards or resolution + - pmm: streaming + - pmm: studio + - pmm: subtitle_language + - pmm: year + - pmm: movie/country + - pmm: movie/decade + - pmm: movie/director + - pmm: movie/franchise + - pmm: movie/universe + - pmm: movie/producer + - pmm: movie/seasonal + - pmm: movie/writer overlay_path: - remove_overlays: false - - git: PMM/overlays/audio_codec - - git: PMM/overlays/audio_language - - git: PMM/overlays/commonsense - - git: PMM/overlays/direct_play - - git: PMM/overlays/mediastinger - - git: PMM/overlays/imdb_top_250 - - git: PMM/overlays/mc_must_see - - git: PMM/overlays/rt_cert_fresh - - git: PMM/overlays/commonsense_selection - - git: PMM/overlays/ratings + - pmm: audio_codec + - pmm: audio_language + - pmm: commonsense + - pmm: direct_play + - pmm: edition + - pmm: episode_info + - pmm: flixpatrol + - pmm: mediastinger + - pmm: ratings template_variables: rating1: critic rating1_image: rt_tomato - - git: PMM/overlays/resolution - - git: PMM/overlays/special_release - - git: PMM/overlays/streaming - - git: PMM/overlays/versions - - git: PMM/overlays/video_format + - pmm: resolution + - pmm: ribbon + - pmm: runtimes + - pmm: special_release + - pmm: streaming + - pmm: versions + - pmm: video_format TV Shows: metadata_path: - - git: PMM/award/choice - - git: PMM/award/golden - - git: PMM/award/emmy - - git: PMM/chart/anilist - - git: PMM/chart/basic - - git: PMM/chart/imdb - - git: PMM/chart/myanimelist - - git: PMM/chart/other - - git: PMM/chart/tautulli - - git: PMM/chart/tmdb - - git: PMM/chart/trakt - - git: PMM/actor - - git: PMM/audio_language - - git: PMM/show/content_rating_us # Choose content_rating_uk or content_rating_us - - git: PMM/genre - - git: PMM/resolution_standards # Choose resolution_standards or resolution - - git: PMM/streaming - - git: PMM/studio - - git: PMM/subtitle_language - - git: PMM/year - - git: PMM/show/country - - git: PMM/show/decade - - git: PMM/show/network + - pmm: choice + - pmm: golden + - pmm: emmy + - pmm: anilist + - pmm: basic + - pmm: imdb + - pmm: myanimelist + - pmm: other_chart + - pmm: tautulli + - pmm: tmdb + - pmm: trakt + - pmm: actor + - pmm: audio_language + - pmm: content_rating_us # Choose content_rating_uk or content_rating_us + - pmm: genre + - pmm: resolution_standards # Choose resolution_standards or resolution + - pmm: streaming + - pmm: studio + - pmm: subtitle_language + - pmm: year + - pmm: country + - pmm: decade + - pmm: network overlay_path: - remove_overlays: false - - git: PMM/overlays/audio_codec - - git: PMM/overlays/audio_codec + - pmm: audio_codec + - pmm: audio_codec template_variables: overlay_level: episode - - git: PMM/overlays/audio_codec + - pmm: audio_codec template_variables: overlay_level: season - - git: PMM/overlays/audio_language - - git: PMM/overlays/audio_language + - pmm: audio_language + - pmm: audio_language template_variables: overlay_level: episode - - git: PMM/overlays/audio_language + - pmm: audio_language template_variables: overlay_level: season - - git: PMM/overlays/commonsense - - git: PMM/overlays/commonsense + - pmm: commonsense + - pmm: commonsense template_variables: overlay_level: episode - - git: PMM/overlays/commonsense + - pmm: commonsense template_variables: overlay_level: season - - git: PMM/overlays/direct_play - - git: PMM/overlays/direct_play + - pmm: direct_play + - pmm: direct_play template_variables: overlay_level: episode - - git: PMM/overlays/direct_play + - pmm: direct_play template_variables: overlay_level: season - - git: PMM/overlays/episode_info + - pmm: edition + - pmm: edition template_variables: overlay_level: episode - - git: PMM/overlays/mediastinger - - git: PMM/overlays/mediastinger + - pmm: episode_info template_variables: overlay_level: episode - - git: PMM/overlays/mediastinger - template_variables: - overlay_level: season - - git: PMM/overlays/imdb_top_250 - - git: PMM/overlays/imdb_top_250 - template_variables: - overlay_level: episode - - git: PMM/overlays/imdb_top_250 - template_variables: - overlay_level: season - - git: PMM/overlays/mc_must_see - - git: PMM/overlays/mc_must_see - template_variables: - overlay_level: episode - - git: PMM/overlays/mc_must_see - template_variables: - overlay_level: season - - git: PMM/overlays/rt_cert_fresh - - git: PMM/overlays/rt_cert_fresh + - pmm: flixpatrol + - pmm: flixpatrol template_variables: overlay_level: episode - - git: PMM/overlays/rt_cert_fresh + - pmm: flixpatrol template_variables: overlay_level: season - - git: PMM/overlays/commonsense_selection - - git: PMM/overlays/commonsense_selection + - pmm: mediastinger + - pmm: mediastinger template_variables: overlay_level: episode - - git: PMM/overlays/commonsense_selection + - pmm: mediastinger template_variables: overlay_level: season - - git: PMM/overlays/ratings + - pmm: ratings template_variables: rating2: audience rating2_image: imdb - - git: PMM/overlays/ratings + - pmm: ratings template_variables: rating2: audience rating2_image: imdb overlay_level: episode - - git: PMM/overlays/resolution - - git: PMM/overlays/resolution + - pmm: resolution + - pmm: resolution + template_variables: + overlay_level: episode + - pmm: resolution + template_variables: + overlay_level: season + - pmm: ribbon + - pmm: ribbon template_variables: overlay_level: episode - - git: PMM/overlays/resolution + - pmm: ribbon template_variables: overlay_level: season - - git: PMM/overlays/runtimes + - pmm: runtimes template_variables: overlay_level: episode - - git: PMM/overlays/special_release - - git: PMM/overlays/special_release + - pmm: special_release + - pmm: special_release template_variables: overlay_level: episode - - git: PMM/overlays/special_release + - pmm: special_release template_variables: overlay_level: season - - git: PMM/overlays/streaming - - git: PMM/overlays/versions - - git: PMM/overlays/versions + - pmm: streaming + - pmm: versions + - pmm: versions template_variables: overlay_level: episode - - git: PMM/overlays/versions + - pmm: versions template_variables: overlay_level: season - - git: PMM/overlays/versions + - pmm: versions template_variables: overlay_level: show - - git: PMM/overlays/video_format - - git: PMM/overlays/video_format + - pmm: video_format + - pmm: video_format template_variables: overlay_level: episode - - git: PMM/overlays/video_format + - pmm: video_format template_variables: overlay_level: season playlist_files: -- git: PMM/playlist +- pmm: playlist ``` diff --git a/docs/home/guides/defaults.md b/docs/home/guides/defaults.md index 652bea53..822aff20 100644 --- a/docs/home/guides/defaults.md +++ b/docs/home/guides/defaults.md @@ -15,12 +15,12 @@ To run a file in git you can simply add it to your `metadata_path` (For Metadata libraries: Movies: metadata_path: - - git: PMM/actor - - git: PMM/genre + - pmm: actor + - pmm: genre overlay_path: - remove_overlays: false - - git: PMM/overlays/imdb_top_250 - - git: PMM/overlays/ratings + - pmm: imdb_top_250 + - pmm: ratings ``` ## Overlays @@ -40,11 +40,11 @@ libraries: overlay_path: - remove_overlays: false - reapply_overlay: true - - git: PMM/overlays/resolution # 1 - - git: PMM/overlays/audio_codec # 2 - - git: PMM/overlays/mediastinger # 3 - - git: PMM/overlays/special_release # 4 - - git: PMM/overlays/ratings # 5,6,7 + - pmm: resolution # 1 + - pmm: audio_codec # 2 + - pmm: mediastinger # 3 + - pmm: special_release # 4 + - pmm: ratings # 5,6,7 template_variables: rating1: user # 5 as this is user and mass_user_rating_update: mdb_tomatoes rating1_image: rt_tomato # 5 as this is user and mass_user_rating_update: mdb_tomatoes @@ -62,22 +62,22 @@ libraries: rating3_font_size: 70 # 7 adjusted font size to fit rating horizontal_position: right # the set of ratings is on the right of the poster - - git: PMM/overlays/streaming # 8 - - git: PMM/overlays/video_format # 9 - - git: PMM/overlays/audio_language # 10 - - git: PMM/overlays/oscars # 11 + - pmm: streaming # 8 + - pmm: video_format # 9 + - pmm: audio_language # 10 + - pmm: oscars # 11 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 40 # Weight of 40 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/imdb_top_250 # 12 + - pmm: imdb_top_250 # 12 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 30 # Weight of 30 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/rt_cert_fresh # 13 + - pmm: rt_cert_fresh # 13 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 20 # Weight of 20 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/mc_must_see # NOT SHOWN, however would apply the "MetaCritic Must See" sash in the bottom right + - pmm: mc_must_see # NOT SHOWN, however would apply the "MetaCritic Must See" sash in the bottom right template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 10 # Weight of 10 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/commonsense_selection # NOT SHOWN, however would apply the "Commonsense Selected Families" sash in the bottom right + - pmm: commonsense_selection # NOT SHOWN, however would apply the "Commonsense Selected Families" sash in the bottom right template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 5 # Weight of 5 applies if more than 1 sash is applied in bottom right @@ -100,10 +100,10 @@ libraries: overlay_path: - remove_overlays: false - reapply_overlay: true - - git: PMM/overlays/resolution # 1 - - git: PMM/overlays/audio_codec # 2 - - git: PMM/overlays/mediastinger # 3 - - git: PMM/overlays/ratings # 4,5,6 + - pmm: resolution # 1 + - pmm: audio_codec # 2 + - pmm: mediastinger # 3 + - pmm: ratings # 4,5,6 template_variables: rating1: user # 4 as this is user and mass_user_rating_update: mdb_tomatoes rating1_image: rt_tomato # 4 as this is user and mass_user_rating_update: mdb_tomatoes @@ -121,18 +121,18 @@ libraries: rating3_font_size: 70 # 6 adjusted font size to fit rating horizontal_position: right # the set of ratings is on the right of the poster - - git: PMM/overlays/streaming # 7 - - git: PMM/overlays/video_format # 8 - - git: PMM/overlays/imdb_top_250 # 9 + - pmm: streaming # 7 + - pmm: video_format # 8 + - pmm: imdb_top_250 # 9 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 30 # Weight of 30 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/rt_cert_fresh # 10 + - pmm: rt_cert_fresh # 10 template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 20 # Weight of 20 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/mc_must_see # NOT SHOWN, however would apply the "MetaCritic Must See" sash in the bottom right + - pmm: mc_must_see # NOT SHOWN, however would apply the "MetaCritic Must See" sash in the bottom right template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 10 # Weight of 10 applies if more than 1 sash is applied in bottom right - - git: PMM/overlays/commonsense_selection # NOT SHOWN, however would apply the "Commonsense Selected Families" sash in the bottom right + - pmm: commonsense_selection # NOT SHOWN, however would apply the "Commonsense Selected Families" sash in the bottom right template_variables: # Bottom right sash is used by more than one overlay so a weight for priority is applied weight: 5 # Weight of 5 applies if more than 1 sash is applied in bottom right @@ -155,13 +155,13 @@ libraries: overlay_path: - remove_overlays: false - reapply_overlay: true - - git: PMM/overlays/resolution # 1 + - pmm: resolution # 1 template_variables: overlay_level: season - - git: PMM/overlays/audio_codec # 2 + - pmm: audio_codec # 2 template_variables: overlay_level: season - - git: PMM/overlays/video_format # 3 + - pmm: video_format # 3 template_variables: overlay_level: season ``` @@ -179,13 +179,13 @@ libraries: overlay_path: - remove_overlays: false - reapply_overlay: true - - git: PMM/overlays/resolution # 1 + - pmm: resolution # 1 template_variables: overlay_level: episode - - git: PMM/overlays/audio_codec # 2 + - pmm: audio_codec # 2 template_variables: overlay_level: episode - - git: PMM/overlays/ratings # 3,4 + - pmm: ratings # 3,4 template_variables: rating1: critic # 3 as this is critic and mass_critic_rating_update: imdb @@ -200,13 +200,13 @@ libraries: horizontal_position: right # the set of ratings is on the right of the poster overlay_level: episode - - git: PMM/overlays/video_format # 5 + - pmm: video_format # 5 template_variables: overlay_level: episode - - git: PMM/overlays/episode_info # 6 + - pmm: episode_info # 6 template_variables: overlay_level: episode - - git: PMM/overlays/runtimes # 7 + - pmm: runtimes # 7 template_variables: overlay_level: episode @@ -306,7 +306,7 @@ This example changes the ratings overlay to work on episodes. libraries: TV Shows: overlay_path: - - git: PMM/overlays/ratings + - pmm: ratings template_variables: overlay_level: episode ``` @@ -322,7 +322,7 @@ Each file has a comment block at the top showing the available `template_variabl # If nothing is specified these are the defaults # # # # metadata_path: # -# - git: PMM/genre # +# - pmm: genre # # template_variables: # # # Turn the separator collection on/off # # use_separator: true # @@ -349,7 +349,7 @@ For example if you want yearly oscar collections that go back 10 years instead o libraries: Movies: metadata_path: - - git: PMM/award/oscars + - pmm: oscars template_variables: radarr_add_missing: true data: @@ -363,7 +363,7 @@ Or maybe you want to change the number of actor collections made using PMM/actor libraries: Movies: overlay_path: - - git: PMM/actor + - pmm: actor template_variables: collection_mode: hide data: @@ -377,7 +377,7 @@ Or maybe you want to change the collection sort order of the genre collections u libraries: Movies: metadata_path: - - git: PMM/genre + - pmm: genre template_variables: collection_section: 11 ``` @@ -398,11 +398,11 @@ Alternatively it can be turned off individually per git file: libraries: LIBRARYNAME: metadata_path: - - git: PMM/ # separator is disabled + - pmm: # separator is disabled template_variables: use_separator: false - - git: PMM/ # separator is enabled by default - - git: PMM/ # separator is disabled + - pmm: # separator is enabled by default + - pmm: # separator is disabled template_variables: use_separator: false ``` @@ -420,197 +420,197 @@ If there are collections being made that have configuration errors or missing po libraries: Movies: metadata_path: - - git: PMM/award/bafta - - git: PMM/award/cannes - - git: PMM/award/choice - - git: PMM/award/golden - - git: PMM/award/oscars - - git: PMM/award/other - - git: PMM/award/spirit - - git: PMM/award/sundance - - git: PMM/chart/anilist - - git: PMM/chart/basic - - git: PMM/chart/imdb - - git: PMM/chart/myanimelist - - git: PMM/chart/other - - git: PMM/chart/tautulli - - git: PMM/chart/tmdb - - git: PMM/chart/trakt - - git: PMM/actor - - git: PMM/audio_language - - git: PMM/movie/content_rating_us # Choose content_rating_uk or content_rating_us - - git: PMM/genre - - git: PMM/resolution_standards # Choose resolution_standards or resolution - - git: PMM/streaming - - git: PMM/studio - - git: PMM/subtitle_language - - git: PMM/year - - git: PMM/movie/country - - git: PMM/movie/decade - - git: PMM/movie/director - - git: PMM/movie/franchise - - git: PMM/movie/universe - - git: PMM/movie/producer - - git: PMM/movie/seasonal - - git: PMM/movie/writer + - pmm: bafta + - pmm: cannes + - pmm: choice + - pmm: golden + - pmm: oscars + - pmm: other_award + - pmm: spirit + - pmm: sundance + - pmm: anilist + - pmm: basic + - pmm: imdb + - pmm: myanimelist + - pmm: other_chart + - pmm: tautulli + - pmm: tmdb + - pmm: trakt + - pmm: actor + - pmm: audio_language + - pmm: content_rating_us # Choose content_rating_uk or content_rating_us + - pmm: genre + - pmm: resolution_standards # Choose resolution_standards or resolution + - pmm: streaming + - pmm: studio + - pmm: subtitle_language + - pmm: year + - pmm: country + - pmm: decade + - pmm: director + - pmm: franchise + - pmm: universe + - pmm: producer + - pmm: seasonal + - pmm: writer overlay_path: - remove_overlays: false - - git: PMM/overlays/audio_codec - - git: PMM/overlays/audio_language - - git: PMM/overlays/commonsense - - git: PMM/overlays/direct_play - - git: PMM/overlays/mediastinger - - git: PMM/overlays/imdb_top_250 - - git: PMM/overlays/mc_must_see - - git: PMM/overlays/rt_cert_fresh - - git: PMM/overlays/commonsense_selection - - git: PMM/overlays/ratings + - pmm: audio_codec + - pmm: audio_language + - pmm: commonsense + - pmm: direct_play + - pmm: mediastinger + - pmm: imdb_top_250 + - pmm: mc_must_see + - pmm: rt_cert_fresh + - pmm: commonsense_selection + - pmm: ratings template_variables: rating1: critic rating1_image: rt_tomato - - git: PMM/overlays/resolution - - git: PMM/overlays/special_release - - git: PMM/overlays/streaming - - git: PMM/overlays/versions - - git: PMM/overlays/video_format + - pmm: resolution + - pmm: special_release + - pmm: streaming + - pmm: versions + - pmm: video_format TV Shows: metadata_path: - - git: PMM/award/choice - - git: PMM/award/golden - - git: PMM/award/emmy - - git: PMM/chart/anilist - - git: PMM/chart/basic - - git: PMM/chart/imdb - - git: PMM/chart/myanimelist - - git: PMM/chart/other - - git: PMM/chart/tautulli - - git: PMM/chart/tmdb - - git: PMM/chart/trakt - - git: PMM/actor - - git: PMM/audio_language - - git: PMM/show/content_rating_us # Choose content_rating_uk or content_rating_us - - git: PMM/genre - - git: PMM/resolution_standards # Choose resolution_standards or resolution - - git: PMM/streaming - - git: PMM/studio - - git: PMM/subtitle_language - - git: PMM/year - - git: PMM/show/country - - git: PMM/show/decade - - git: PMM/show/network + - pmm: choice + - pmm: golden + - pmm: emmy + - pmm: anilist + - pmm: basic + - pmm: imdb + - pmm: myanimelist + - pmm: other_chart + - pmm: tautulli + - pmm: tmdb + - pmm: trakt + - pmm: actor + - pmm: audio_language + - pmm: content_rating_us # Choose content_rating_uk or content_rating_us + - pmm: genre + - pmm: resolution_standards # Choose resolution_standards or resolution + - pmm: streaming + - pmm: studio + - pmm: subtitle_language + - pmm: year + - pmm: country + - pmm: decade + - pmm: network overlay_path: - remove_overlays: false - - git: PMM/overlays/audio_codec - - git: PMM/overlays/audio_codec + - pmm: audio_codec + - pmm: audio_codec template_variables: overlay_level: episode - - git: PMM/overlays/audio_codec + - pmm: audio_codec template_variables: overlay_level: season - - git: PMM/overlays/audio_language - - git: PMM/overlays/audio_language + - pmm: audio_language + - pmm: audio_language template_variables: overlay_level: episode - - git: PMM/overlays/audio_language + - pmm: audio_language template_variables: overlay_level: season - - git: PMM/overlays/commonsense - - git: PMM/overlays/commonsense + - pmm: commonsense + - pmm: commonsense template_variables: overlay_level: episode - - git: PMM/overlays/commonsense + - pmm: commonsense template_variables: overlay_level: season - - git: PMM/overlays/direct_play - - git: PMM/overlays/direct_play + - pmm: direct_play + - pmm: direct_play template_variables: overlay_level: episode - - git: PMM/overlays/direct_play + - pmm: direct_play template_variables: overlay_level: season - - git: PMM/overlays/episode_info + - pmm: episode_info template_variables: overlay_level: episode - - git: PMM/overlays/mediastinger - - git: PMM/overlays/mediastinger + - pmm: mediastinger + - pmm: mediastinger template_variables: overlay_level: episode - - git: PMM/overlays/mediastinger + - pmm: mediastinger template_variables: overlay_level: season - - git: PMM/overlays/imdb_top_250 - - git: PMM/overlays/imdb_top_250 + - pmm: imdb_top_250 + - pmm: imdb_top_250 template_variables: overlay_level: episode - - git: PMM/overlays/imdb_top_250 + - pmm: imdb_top_250 template_variables: overlay_level: season - - git: PMM/overlays/mc_must_see - - git: PMM/overlays/mc_must_see + - pmm: mc_must_see + - pmm: mc_must_see template_variables: overlay_level: episode - - git: PMM/overlays/mc_must_see + - pmm: mc_must_see template_variables: overlay_level: season - - git: PMM/overlays/rt_cert_fresh - - git: PMM/overlays/rt_cert_fresh + - pmm: rt_cert_fresh + - pmm: rt_cert_fresh template_variables: overlay_level: episode - - git: PMM/overlays/rt_cert_fresh + - pmm: rt_cert_fresh template_variables: overlay_level: season - - git: PMM/overlays/commonsense_selection - - git: PMM/overlays/commonsense_selection + - pmm: commonsense_selection + - pmm: commonsense_selection template_variables: overlay_level: episode - - git: PMM/overlays/commonsense_selection + - pmm: commonsense_selection template_variables: overlay_level: season - - git: PMM/overlays/ratings + - pmm: ratings template_variables: rating2: audience rating2_image: imdb - - git: PMM/overlays/ratings + - pmm: ratings template_variables: rating2: audience rating2_image: imdb overlay_level: episode - - git: PMM/overlays/resolution - - git: PMM/overlays/resolution + - pmm: resolution + - pmm: resolution template_variables: overlay_level: episode - - git: PMM/overlays/resolution + - pmm: resolution template_variables: overlay_level: season - - git: PMM/overlays/runtimes + - pmm: runtimes template_variables: overlay_level: episode - - git: PMM/overlays/special_release - - git: PMM/overlays/special_release + - pmm: special_release + - pmm: special_release template_variables: overlay_level: episode - - git: PMM/overlays/special_release + - pmm: special_release template_variables: overlay_level: season - - git: PMM/overlays/streaming - - git: PMM/overlays/versions - - git: PMM/overlays/versions + - pmm: streaming + - pmm: versions + - pmm: versions template_variables: overlay_level: episode - - git: PMM/overlays/versions + - pmm: versions template_variables: overlay_level: season - - git: PMM/overlays/versions + - pmm: versions template_variables: overlay_level: show - - git: PMM/overlays/video_format - - git: PMM/overlays/video_format + - pmm: video_format + - pmm: video_format template_variables: overlay_level: episode - - git: PMM/overlays/video_format + - pmm: video_format template_variables: overlay_level: season playlist_files: -- git: PMM/playlist +- pmm: playlist ``` diff --git a/docs/home/guides/wt/wt-02.md b/docs/home/guides/wt/wt-02.md index 575fc52e..ea23854d 100644 --- a/docs/home/guides/wt/wt-02.md +++ b/docs/home/guides/wt/wt-02.md @@ -26,27 +26,27 @@ libraries: # This is called out once within metadata_path: - file: config/Movies.yml # This is a local file on the system - folder: config/Movies/ # This is a local directory on the system - - git: PMM/chart/basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository - - git: PMM/chart/imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository overlay_path: - remove_overlays: false # Set this to true to remove all overlays - file: config/Overlays.yml # This is a local file on the system - - git: PMM/overlays/imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository TV Shows: metadata_path: - file: config/TVShows.yml - folder: config/TV Shows/ - - git: PMM/chart/basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository - - git: PMM/chart/imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository overlay_path: - remove_overlays: false # Set this to true to remove all overlays - file: config/Overlays.yml # This is a local file on the system - - git: PMM/overlays/imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository Anime: metadata_path: - file: config/Anime.yml - - git: PMM/chart/basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository - - git: PMM/chart/anilist # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: anilist # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository Music: metadata_path: - file: config/Music.yml @@ -62,12 +62,12 @@ libraries: metadata_path: - file: config/Movies.yml # This is a local file on the system - folder: config/Movies/ # This is a local directory on the system - - git: PMM/chart/basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository - - git: PMM/chart/imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: basic # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository overlay_path: - remove_overlays: false # Set this to true to remove all overlays - file: config/Overlays.yml # This is a local file on the system - - git: PMM/overlays/imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository + - pmm: imdb_top_250 # This is a file within the https://github.com/meisnate12/Plex-Meta-Manager-Configs Repository ``` This is intended to cause an error for illustration that you will then fix. diff --git a/docs/metadata/details/schedule.md b/docs/metadata/details/schedule.md index 9edda7a5..7b266bb9 100644 --- a/docs/metadata/details/schedule.md +++ b/docs/metadata/details/schedule.md @@ -9,10 +9,10 @@ libraries: schedule: weekly(sunday) metadata_path: - file: config/Movies.yml - - git: PMM/chart/imdb - - git: PMM/studio - - git: PMM/genre - - git: PMM/actor + - pmm: imdb + - pmm: studio + - pmm: genre + - pmm: actor operations: mass_critic_rating_update: tmdb ``` @@ -24,16 +24,16 @@ libraries: metadata_path: - file: config/Movies.yml schedule: weekly(monday) - - git: PMM/chart/imdb + - pmm: imdb schedule: weekly(tuesday) - - git: PMM/studio + - pmm: studio schedule: weekly(wednesday) - - git: PMM/genre + - pmm: genre schedule: weekly(thursday) - - git: PMM/actor + - pmm: actor schedule: weekly(friday) overlay_path: - - git: PMM/overlays/imdb + - pmm: imdb schedule: weekly(saturday) operations: mass_critic_rating_update: tmdb diff --git a/docs/metadata/overlay.md b/docs/metadata/overlay.md index 9811081b..619d1765 100644 --- a/docs/metadata/overlay.md +++ b/docs/metadata/overlay.md @@ -116,7 +116,7 @@ overlays: imdb_chart: top_movies overlay: name: IMDB-Top-250 - git: PMM/overlays/images/IMDB-Top-250 + pmm: images/IMDB-Top-250 horizontal_offset: 0 horizontal_align: right vertical_offset: 0 @@ -291,7 +291,7 @@ overlays: back_radius: 30 back_width: 300 back_height: 105 - git: PMM/overlays/images/raw/IMDB_Rating + pmm: images/raw/IMDB_Rating addon_position: left addon_offset: 25 ``` @@ -307,7 +307,7 @@ overlays: Dual-Audio: overlay: name: Dual-Audio - git: PMM/overlays/images/Dual-Audio + pmm: images/Dual-Audio group: audio_language weight: 10 horizontal_offset: 0 @@ -320,7 +320,7 @@ overlays: Multi-Audio: overlay: name: Multi-Audio - git: PMM/overlays/images/Multi-Audio + pmm: images/Multi-Audio group: audio_language weight: 20 horizontal_offset: 0 @@ -455,7 +455,7 @@ overlays: HDR: overlay: name: HDR - git: PMM/overlays/HDR + pmm: HDR plex_search: all: hdr: true diff --git a/docs/metadata/templates.md b/docs/metadata/templates.md index 05e30ea1..8b0195f6 100644 --- a/docs/metadata/templates.md +++ b/docs/metadata/templates.md @@ -237,5 +237,5 @@ To load external templates located in another file you can use the `external_tem ```yaml external_templates: - file: config/templates.yml - - git: PMM/templates + - pmm: templates ```