[49] updated run_order in config.yml.template and docs to reflect split of metadata

This commit is contained in:
YozoraXCII 2023-12-12 22:35:06 +00:00
parent 5a5efd2112
commit 484185865b
3 changed files with 11 additions and 4 deletions

View file

@ -1 +1 @@
1.19.1-develop48
1.19.1-develop49

View file

@ -33,7 +33,11 @@ playlist_files:
libraries: Movies, TV Shows # list of libraries that you want the PMM Defaults playlists to look at
# see the wiki for how to use local files, folders, URLs, or files from git
settings:
run_order: operations, metadata, overlays
run_order:
- operations
- metadata
- collections
- operations
cache: true
cache_expiration: 60
asset_directory: config/assets

View file

@ -96,6 +96,7 @@ If no library-level attribute is set, then the global attribute is used.
libraries:
Movies:
run_order: #(1)!
- collections
- metadata
- operations
- overlays
@ -117,7 +118,8 @@ settings:
run_order: #(3)!
- operations
- metadata
- overlays
- collections
- operations
minimum_items: 1 #(4)!
```
@ -517,13 +519,14 @@ Specify the run order of the library components [Library Operations, Collection
???+ tip
If not specified, the default run order is Library Operations, then Collection Files, then Overlay Files
If not specified, the default run order is Library Operations, then Metadata Files, then Collection Files, then Overlay Files
```yml
settings:
run_order:
- operations
- metadata
- collections
- overlays
```