mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-02-16 22:08:25 +00:00
[42] add mdblist to seasonal
This commit is contained in:
parent
2228cbd9b7
commit
0216fa5bdd
5 changed files with 8 additions and 6 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.18.0-develop41
|
||||
1.18.0-develop42
|
||||
|
|
|
@ -35,8 +35,7 @@ collections:
|
|||
type: popular
|
||||
- name: shared
|
||||
- name: custom
|
||||
template_variables:
|
||||
cache_builders: 0
|
||||
cache_builders: 0
|
||||
- name: translation
|
||||
translation_key: tautulli_popular
|
||||
|
||||
|
@ -48,7 +47,6 @@ collections:
|
|||
type: watched
|
||||
- name: shared
|
||||
- name: custom
|
||||
template_variables:
|
||||
cache_builders: 0
|
||||
cache_builders: 0
|
||||
- name: translation
|
||||
translation_key: tautulli_watched
|
||||
|
|
|
@ -22,6 +22,7 @@ templates:
|
|||
tmdb_movie_<<key>>: <<tmdb_movie>>
|
||||
imdb_list_<<key>>: <<imdb_list>>
|
||||
trakt_list_<<key>>: <<trakt_list>>
|
||||
mdblist_list_<<key>>: <<mdblist_list>>
|
||||
summary_<<key>>: <<seasonal_summary>>
|
||||
name_<<key>>: <<seasonal_name>>
|
||||
emoji_<<key>>: <<emoji>>
|
||||
|
@ -32,6 +33,7 @@ templates:
|
|||
- limit
|
||||
- imdb_list
|
||||
- trakt_list
|
||||
- mdblist_list
|
||||
smart_label:
|
||||
sort_by: <<sort_by_<<key>>>>
|
||||
limit: <<limit_<<key>>>>
|
||||
|
@ -43,6 +45,7 @@ templates:
|
|||
tmdb_movie: <<tmdb_movie_<<key>>>>
|
||||
imdb_list: <<imdb_list_<<key>>>>
|
||||
trakt_list: <<trakt_list_<<key>>>>
|
||||
mdblist_list: <<mdblist_list_<<key>>>>
|
||||
cache_builders: 1
|
||||
summary: <<summary_<<key>>>>
|
||||
name: <<emoji_<<key>>>><<name_<<key>>>>
|
||||
|
|
|
@ -51,6 +51,7 @@ This file contains a [Separator](../separators) so all [Shared Separator Variabl
|
|||
| `tmdb_movie_<<key>>`<sup>1</sup> | **Description:** Adds the TMDb Movie IDs given to the specified key's collection. Overrides the [default tmdb_movie](#default-tmdb_movie) for that collection if used.<br>**Values:** List of TMDb Movie IDs | |
|
||||
| `imdb_list_<<key>>`<sup>1</sup> | **Description:** Adds the Movies in the IMDb List to the specified key's collection. Overrides the [default imdb_list](#default-imdb_list) for that collection if used.<br>**Values:** List of IMDb List URLs | | |
|
||||
| `trakt_list_<<key>>`<sup>1</sup> | **Description:** Adds the Movies in the Trakt List to the specified key's collection.<br>**Values:** List of Trakt List URLs | | | |
|
||||
| `mdblist_list_<<key>>`<sup>1</sup> | **Description:** Adds the Movies in the MDb List to the specified key's collection.<br>**Values:** List of MDbList URLs | | | |
|
||||
| `emoji` | **Description:** Controls the Emoji Prefix for all Collections. Set to `""` to remove all emojis.<br>**Values:** Any String |
|
||||
| `emoji_<<key>>`<sup>1</sup> | **Description:** Controls the Emoji Prefix for the specified key's collection.<br>**Values:** Any String |
|
||||
| `limit` | **Description:** Changes the Builder Limit for all collections in this file.<br>**Values:** Number Greater then 0 |
|
||||
|
|
|
@ -213,7 +213,7 @@ class CollectionBuilder:
|
|||
elif not original_variables["name"]:
|
||||
raise Failed(f"{self.Type} Error: template sub-attribute name cannot be blank")
|
||||
named_templates.append(original_variables["name"])
|
||||
logger.debug(f"Templates Called: {','.join(named_templates)}")
|
||||
logger.debug(f"Templates Called: {', '.join(named_templates)}")
|
||||
logger.debug("")
|
||||
new_variables = {}
|
||||
if "variables" in methods:
|
||||
|
|
Loading…
Add table
Reference in a new issue