- Fix sort option for Person template, since pulling from multiple options
- Fix `type` and `sort_by` settings for Smart Filters (notes in tips_and_tricks.md)
This commit is contained in:
parent
6613042a8d
commit
633eb1d912
|
@ -32,11 +32,11 @@ collections:
|
|||
sort_title:
|
||||
collection_level: episode
|
||||
smart_filter:
|
||||
type: episodes
|
||||
sort_by: release.desc
|
||||
all:
|
||||
type: episodes
|
||||
# Episode aired in the last 8 days
|
||||
episode_air_date: 8
|
||||
sort_by: release.desc
|
||||
sync_mode: sync
|
||||
visible_home: true
|
||||
visible_shared: true
|
||||
|
@ -48,11 +48,11 @@ collections:
|
|||
sort_title:
|
||||
collection_level: episode
|
||||
smart_filter:
|
||||
type: episodes
|
||||
sort_by: release.desc
|
||||
all:
|
||||
type: episodes
|
||||
# Episode added in the last 7 days
|
||||
episode_added: 7
|
||||
sort_by: release.desc
|
||||
sync_mode: sync
|
||||
visible_home: true
|
||||
visible_shared: true
|
||||
|
@ -62,11 +62,11 @@ collections:
|
|||
summary: "Shows now playing on Plex"
|
||||
sort_title:
|
||||
smart_filter:
|
||||
type: shows
|
||||
sort_by: release.desc
|
||||
all:
|
||||
type: shows
|
||||
# Shows added in the last 30 days
|
||||
added: 30
|
||||
sort_by: release.desc
|
||||
sync_mode: sync
|
||||
visible_library: true
|
||||
visible_home: true
|
||||
|
@ -101,11 +101,11 @@ collections:
|
|||
sort_title:
|
||||
collection_level: episode
|
||||
smart_filter:
|
||||
type: episodes
|
||||
sort_by: release.asc
|
||||
all:
|
||||
type: episodes
|
||||
title.is: "The Simpsons"
|
||||
episode_title.contains: "Treehouse"
|
||||
sort_by: release.asc
|
||||
sync_mode: sync
|
||||
visible_library: true
|
||||
visible_home: false
|
||||
|
|
|
@ -96,7 +96,7 @@ templates:
|
|||
tmdb_crew: <<person>>
|
||||
sort_title: <<level>>+09_<<collection_name>>
|
||||
sync_mode: sync
|
||||
collection_order: custom
|
||||
collection_order: release
|
||||
visible_library: true
|
||||
|
||||
Actor:
|
||||
|
@ -142,11 +142,11 @@ collections:
|
|||
level: "++" }
|
||||
summary: "Movies now playing on Plex"
|
||||
smart_filter:
|
||||
type: movies
|
||||
sort_by: release.desc
|
||||
all:
|
||||
type: movies
|
||||
# Movie added in the last 7 days
|
||||
added: 7
|
||||
sort_by: release.desc
|
||||
visible_home: true
|
||||
visible_shared: true
|
||||
|
||||
|
@ -277,8 +277,9 @@ collections:
|
|||
template: { name: Genre }
|
||||
summary: "You might learn something"
|
||||
smart_filter:
|
||||
type: movies
|
||||
sort_by: critic_rating.desc
|
||||
all:
|
||||
type: movies
|
||||
genre: Documentary
|
||||
visible_home: false
|
||||
visible_shared: false
|
||||
|
|
|
@ -35,9 +35,21 @@ Prefix suggestions:
|
|||
- `collection_order: release` -> `sort_by: release.desc`
|
||||
- `collection_order: alpha` -> `sort_by: title.desc`
|
||||
- `collection_order: custom` -> `sort_by: ??`
|
||||
- Needs to be one level above `all`/`any` criteria list. Ex.:
|
||||
- `smart_filter`:
|
||||
- sort_by: `release.desc`
|
||||
- any:
|
||||
- criteria1
|
||||
- criteria2
|
||||
|
||||
|
||||
## Filters
|
||||
- Type restrictions
|
||||
- Plex `smart_filter`/`plex_search`: Use, i.e. `type: episodes`, to limit collection to [specific type](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Plex-Builders#special-attributes)
|
||||
- Needs to be one level above `all`/`any` criteria list. Ex.:
|
||||
- `smart_filter`:
|
||||
- type: `episodes`
|
||||
- any:
|
||||
- criteria1
|
||||
- criteria2
|
||||
- All other rules: Use, i.e., `collection_level: episodes`, to limit collection to [specific type](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Metadata-Details#metadata-details)
|
||||
|
|
Loading…
Reference in New Issue