From dc8084dedb8b86724e36d7fa789304bec739f968 Mon Sep 17 00:00:00 2001 From: Chaz Larson Date: Fri, 3 Jan 2025 12:08:06 -0600 Subject: [PATCH 1/2] MInor Tweaks --- docs/files/dynamic.md | 8 ------- docs/kometa/install/files.md | 41 +++++++++++++++++++++++++++++++++++- 2 files changed, 40 insertions(+), 9 deletions(-) diff --git a/docs/files/dynamic.md b/docs/files/dynamic.md index 18aa89bff..7bf206212 100644 --- a/docs/files/dynamic.md +++ b/docs/files/dynamic.md @@ -71,14 +71,6 @@ A `key_name` is the name that replaces `<>` in `title_format` to creat An example of some keys and their names that would be generated from a `tmdb_collection` dynamic collection are: -* `key`: "10" - - * `key_name`: Star Wars Collection - -* `key`: "1241" - - * `key_name`: Harry Potter Collection - | `key` | `key_name` | |:------|:------------------------| | 10 | Star Wars Collection | diff --git a/docs/kometa/install/files.md b/docs/kometa/install/files.md index b06490952..a593abe72 100644 --- a/docs/kometa/install/files.md +++ b/docs/kometa/install/files.md @@ -20,7 +20,46 @@ One thing that seems like a bit of an exception are the [defaults](../../default There are defaults that create collections, overlays, and playlists. There are no default metadata files. -However, like the rest of the [external files](../../config/file_types.md), these default references cannot be moved out of the `config.yml` file. +The defaults are referenced in the `config.yml` under a library with the `default` file type: + +```yaml +libraries: + Movies: + collection_files: + - default: imdb + - default: genre + overlay_files: + - default: resolution + - default: ribbon +``` + +Typically, the defaults can be customized with template variables: + +```yaml +libraries: + Movies: + collection_files: + - default: imdb + template_variables: + use_lowest: false + - default: genre + template_variables: + sep_style: red + overlay_files: + - default: resolution + template_variables: + use_576p: false + use_480p: false + - default: ribbon + template_variables: + style: black + weight_metacritic: 35 + use_common: false +``` + +The specifics of what template variables are available for a given default are found on the wiki page for each default, which you can fiund starting [here](../../defaults/guide.md). + +Like the rest of the [external files](../../config/file_types.md), these default references cannot be moved out of the `config.yml` file. ???+ tip From d0dc79b8cfcc5ee7cd36b86c907ca1381f6801a0 Mon Sep 17 00:00:00 2001 From: Chaz Larson Date: Sat, 4 Jan 2025 10:40:52 -0600 Subject: [PATCH 2/2] spelling is hard --- docs/kometa/install/files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kometa/install/files.md b/docs/kometa/install/files.md index a593abe72..a528087e9 100644 --- a/docs/kometa/install/files.md +++ b/docs/kometa/install/files.md @@ -57,7 +57,7 @@ libraries: use_common: false ``` -The specifics of what template variables are available for a given default are found on the wiki page for each default, which you can fiund starting [here](../../defaults/guide.md). +The specifics of what template variables are available for a given default are found on the wiki page for each default, which you can find starting [here](../../defaults/guide.md). Like the rest of the [external files](../../config/file_types.md), these default references cannot be moved out of the `config.yml` file.