Merge branch 'yozora-docs' into nightly

This commit is contained in:
Yozora XCII 2024-05-27 10:42:49 +01:00
commit b7b64caa26
2 changed files with 19 additions and 2 deletions

View file

@ -440,7 +440,9 @@ collections:
plex_search:
all:
year.gte: 2010
sort_by: audience_rating.desc
sort_by:
- year.desc
- audience_rating.desc
limit: 20
```

View file

@ -239,4 +239,19 @@ The Sort Orders available for "Smart" collections are outlined on the **[Smart P
Marvel Cinematic Universe:
trakt_list: https://trakt.tv/users/jawann2002/lists/marvel-cinematic-universe-movies?sort=rank,asc
collection_order: added.desc
```
```
### Secondary Sorting
You can also leverage "Secondary Sorting" This goes beyond the single sort settings you can apply to a collection in Plex.
???+ example "Example 8 - Secondary Sorting"
```yaml
collections:
Best 2010+ Movies (By Year):
smart_filter:
all:
year.gte: 2010
sort_by:
- year.desc
- audience_rating.desc
limit: 20
```