Plex-Meta-Manager/docs/defaults/both/collectionless.md

114 lines
8.5 KiB
Markdown
Raw Normal View History

2022-10-25 19:47:45 +00:00
# Collectionless Collection
2024-01-07 08:07:13 +00:00
The `collectionless` Default Collection File is used to create a
[Collectionless collection](../../files/builders/plex.md#plex-collectionless) to help Show/Hide Movies/Shows properly in
your library.
2022-10-25 19:47:45 +00:00
![](../images/collectionless.png)
2022-10-25 19:47:45 +00:00
## Requirements & Recommendations
2022-10-25 19:47:45 +00:00
Supported Library Types: Movie, Show
2024-01-07 08:07:13 +00:00
Requirements:
* This file needs to run last under `collection_files`.
* All other normal collections must use `collection_mode: hide_items`.
* Disable the `Minimum automatic collection size` option when using the `Plex Movie` Agent. (Use the
[`franchise` Default](../movie/franchise.md) for automatic collections)
2022-10-25 19:47:45 +00:00
## Collection
2024-01-05 21:06:39 +00:00
| Collection | Description |
|:-----------------|:---------------------------------------------------------------------------------------------------------------------------------------|
| `Collectionless` | [Collectionless collection](../../files/builders/plex.md#plex-collectionless) to help Show/Hide Movies/Shows properly in your library. |
2022-10-25 19:47:45 +00:00
## Config
The below YAML in your config.yml will create the collections:
```yaml
libraries:
Movies:
2022-10-26 06:56:12 +00:00
template_variables:
collection_mode: hide_items
collection_files:
2024-04-22 14:20:12 +00:00
- default: collectionless
2022-10-25 19:47:45 +00:00
TV Shows:
2022-10-26 06:56:12 +00:00
template_variables:
collection_mode: hide_items
collection_files:
2024-04-22 14:20:12 +00:00
- default: collectionless
2022-10-25 19:47:45 +00:00
```
## Template Variables
2024-01-07 08:07:13 +00:00
Template Variables can be used to manipulate the file in various ways to slightly change how it works without having to
make your own local copy.
2022-10-25 19:47:45 +00:00
2024-01-07 08:07:13 +00:00
Note that the `template_variables:` section only needs to be used if you do want to actually change how the defaults
work. Any value not specified will use its default value if it has one if not it's just ignored.
2022-10-25 19:47:45 +00:00
2024-01-07 08:07:13 +00:00
??? abstract "Variable Lists (click to expand)"
2022-10-25 19:47:45 +00:00
2024-04-22 14:20:12 +00:00
* **File-Specific Template Variables** are variables available specifically for this Kometa Defaults file.
2022-10-25 19:47:45 +00:00
2024-01-07 08:07:13 +00:00
???+ warning
2022-10-25 19:47:45 +00:00
2024-01-07 08:07:13 +00:00
[Shared Collection Variables](../collection_variables.md) are NOT available to this default file.
2022-10-25 19:47:45 +00:00
2024-01-07 08:07:13 +00:00
=== "File-Specific Template Variables"
| Variable | Description & Values |
|:-------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `name_collectionless` | **Description:** Changes the name of the collection.<br>**Values:** New Collection Name |
| `summary_collectionless` | **Description:** Changes the summary of the collection.<br>**Values:** New Collection Summary |
| `sort_title` | **Description:** Sets the sort title for the collection.<br>**Default:** `~_Collectionless`<br>**Values:** Any String |
| `collection_order` | **Description:** Changes the Collection Order for all collections in this file.<br>**Default:** `alpha`<br>**Values:**<table class="clearTable"><tr><td>`release`</td><td>Order Collection by Release Dates</td></tr><tr><td>`alpha`</td><td>Order Collection Alphabetically</td></tr><tr><td>`custom`</td><td>Order Collection Via the Builder Order</td></tr><tr><td>[Any `plex_search` Sort Option](../../files/builders/plex.md#sort-options)</td><td>Order Collection by any `plex_search` Sort Option</td></tr></table> |
| `url_poster` | **Description:** Changes the poster url of the collection.<br>**Values:** URL directly to the Image |
| `exclude` | **Description:** Exclude these Collections from being considered for collectionless.<br>**Values:** List of Collections |
| `exclude_prefix` | **Description:** Overrides the [default exclude_prefix list](#exclude-prefix). Exclude Collections with one of these prefixes from being considered for collectionless.<br>**Default:** [default exclude_prefix list](#default-exclude_prefix)<br>**Values:** List of Prefixes | |
???+ example "Example Template Variable Amendments"
The below is an example config.yml extract with some Template Variables added in to change how the file works.
Click the :fontawesome-solid-circle-plus: icon to learn more
```yaml
libraries:
Movies:
2022-10-25 19:47:45 +00:00
template_variables:
2024-01-07 08:07:13 +00:00
collection_mode: hide_items
collection_files:
2024-04-22 14:20:12 +00:00
- default: collectionless
2024-01-07 08:07:13 +00:00
template_variables:
exclude:
- Marvel Cinematic Universe
collection_order: release
```
2022-10-25 19:47:45 +00:00
2024-01-05 21:06:39 +00:00
## Default Values
2022-12-11 19:35:51 +00:00
2024-01-07 08:07:13 +00:00
These are lists provided for reference to show what values will be in use if you do no customization. **These do not
show how to change a name or a list.**
2023-12-31 16:45:00 +00:00
2024-01-07 08:07:13 +00:00
If you want to customize these values, use the methods described above.
2023-12-31 16:45:00 +00:00
2024-01-07 08:07:13 +00:00
??? example "Default `exclude_prefix` (click to expand) <a class="headerlink" href="#exclude-prefix" title="Permanent link"></a>"
2022-12-11 19:35:51 +00:00
2024-01-07 08:07:13 +00:00
<div id="exclude-prefix" />
2022-10-25 19:47:45 +00:00
2024-01-07 08:07:13 +00:00
```yaml
{%
include-markdown "../../../defaults/both/collectionless.yml"
comments=false
preserve-includer-indent=true
dedent=true
start="# check1"
end="# check2"
%}
```