Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MInor Tweaks #2404

Merged
merged 2 commits into from
Jan 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions docs/files/dynamic.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,6 @@ A `key_name` is the name that replaces `<<key_name>>` 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 |
Expand Down
41 changes: 40 additions & 1 deletion docs/kometa/install/files.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 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.

???+ tip

Expand Down
Loading