mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 15:04:21 +00:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
7f77a3c838
2 changed files with 12 additions and 3 deletions
|
@ -90,7 +90,8 @@ notification_details = ["collection_creation_webhooks", "collection_addition_web
|
|||
details = ["collection_mode", "collection_order", "collection_level", "collection_minimum", "label"] + boolean_details + string_details + notification_details
|
||||
collectionless_details = ["collection_order", "plex_collectionless", "label", "label_sync_mode", "test"] + \
|
||||
poster_details + background_details + summary_details + string_details
|
||||
item_details = ["item_label", "item_radarr_tag", "item_sonarr_tag", "item_overlay", "item_assets", "revert_overlay", "item_refresh"] + list(plex.item_advance_keys.keys())
|
||||
item_details = ["item_label", "item_radarr_tag", "item_sonarr_tag", "item_overlay", "item_assets", "revert_overlay", "item_lock_background", "item_lock_poster", "item_refresh"] + \
|
||||
list(plex.item_advance_keys.keys())
|
||||
radarr_details = ["radarr_add", "radarr_add_existing", "radarr_folder", "radarr_monitor", "radarr_search", "radarr_availability", "radarr_quality", "radarr_tag"]
|
||||
sonarr_details = [
|
||||
"sonarr_add", "sonarr_add_existing", "sonarr_folder", "sonarr_monitor", "sonarr_language", "sonarr_series",
|
||||
|
@ -744,7 +745,7 @@ class CollectionBuilder:
|
|||
raise Failed("Each Overlay can only be used once per Library")
|
||||
self.library.overlays.append(method_data)
|
||||
self.item_details[method_name] = method_data
|
||||
elif method_name in ["item_assets", "revert_overlay", "item_refresh"]:
|
||||
elif method_name in ["item_assets", "revert_overlay", "item_lock_background", "item_lock_poster", "item_refresh"]:
|
||||
if util.parse(method_name, method_data, datatype="bool", default=False):
|
||||
self.item_details[method_name] = True
|
||||
elif method_name in plex.item_advance_keys:
|
||||
|
@ -1838,6 +1839,14 @@ class CollectionBuilder:
|
|||
if getattr(item, key) != options[method_data]:
|
||||
advance_edits[key] = options[method_data]
|
||||
self.library.edit_item(item, item.title, self.collection_level.capitalize(), advance_edits, advanced=True)
|
||||
# Locking background and poster should come before refreshing since refreshing can change background/poster
|
||||
# (i.e. if specified to both lock background/poster and refresh, assume that the current background/poster
|
||||
# should be kept)
|
||||
if "item_lock_background" in self.item_details:
|
||||
item.lockArt()
|
||||
if "item_lock_poster" in self.item_details:
|
||||
item.lockPoster()
|
||||
|
||||
if "item_refresh" in self.item_details:
|
||||
item.refresh()
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
PlexAPI==4.7.2
|
||||
PlexAPI==4.8.0
|
||||
tmdbv3api==1.7.6
|
||||
arrapi==1.2.3
|
||||
lxml==4.6.4
|
||||
|
|
Loading…
Reference in a new issue