From 51d6aef2b666df074e178240ac50d6b02e638049 Mon Sep 17 00:00:00 2001
From: YozoraXCII <96386153+YozoraXCII@users.noreply.github.com>
Date: Tue, 28 Nov 2023 17:39:59 +0000
Subject: [PATCH] Amend `asset_directory` to use `config/assets` rather than
just `assets`
---
docs/config/paths.md | 8 ++++----
docs/config/settings.md | 6 +++---
docs/pmm/install/guides/assets.md | 16 ++++++++--------
3 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/docs/config/paths.md b/docs/config/paths.md
index 7768e7c8..78249d41 100644
--- a/docs/config/paths.md
+++ b/docs/config/paths.md
@@ -100,16 +100,16 @@ libraries:
Movies:
metadata_path:
- file: config/Movies.yml
- asset_directory: assets/Movies
+ asset_directory: config/assets/Movies
- pmm: actors
- asset_directory: assets/people
+ asset_directory: config/assets/people
overlay_path:
- pmm: imdb
playlist_files:
- file: config/Playlists.yml
asset_directory:
- - assets/playlists1
- - assets/playlists2
+ - config/assets/playlists1
+ - config/assets/playlists2
```
## Metadata Path
diff --git a/docs/config/settings.md b/docs/config/settings.md
index 7525198f..f628c082 100644
--- a/docs/config/settings.md
+++ b/docs/config/settings.md
@@ -109,7 +109,7 @@ Specify the directory where assets (posters, backgrounds, etc) are located.
## Image Asset Folders
Search the `asset_directory` for a dedicated folder. Set to true if each poster is within its own directory.
-i.e. `assets/Star Wars/poster.png` instead of `assets/Star Wars.png`
+i.e. `config/assets/Star Wars/poster.png` instead of `config/assets/Star Wars.png`
| | |
|---|---|
@@ -121,8 +121,8 @@ i.e. `assets/Star Wars/poster.png` instead of `assets/Star Wars.png`
Specify how many folder levels to scan for an item within the asset directory
At each asset level, PMM will look for either `medianame.ext` [such as Star Wars.png] or a dedicated folder containing `poster.ext`
-i.e. `assets/Star Wars/poster.png` and `assets/Star Wars.png` are both asset depth 0
-and `assets/Movies/Star Wars/poster.png` and `assets/Movies/Star Wars.png` are both asset level 1
+i.e. `config/assets/Star Wars/poster.png` and `config/assets/Star Wars.png` are both asset depth 0
+and `config/assets/Movies/Star Wars/poster.png` and `config/assets/Movies/Star Wars.png` are both asset level 1
???+ note
diff --git a/docs/pmm/install/guides/assets.md b/docs/pmm/install/guides/assets.md
index c0447c91..83113dfc 100644
--- a/docs/pmm/install/guides/assets.md
+++ b/docs/pmm/install/guides/assets.md
@@ -54,14 +54,14 @@ If a media item has an asset associated with it, that asset image is taken as th
The table below shows the asset folder path structures that will be searched for. There are two options for how Plex Meta Manager looks at the files inside your Asset Directories. Choose an option with the [`asset_folders` Setting Attribute](../../../config/settings.md#image-asset-folders). Note that `asset_folders` is a toggle; you can't put some images in folders and some not in a context where it is enabled.
-| Image Type | Asset Folders Image Paths
`asset_folders: true` | Flat Assets Image Paths
`asset_folders: false` |
-|:---------------------------------|:---------------------------------------------------|:--------------------------------------------------|
-| Collection/Movie/Show poster | `assets/ASSET_NAME/poster.ext` | `assets/ASSET_NAME.ext` |
-| Collection/Movie/Show background | `assets/ASSET_NAME/background.ext` | `assets/ASSET_NAME_background.ext` |
-| Season poster | `assets/ASSET_NAME/Season##.ext` | `assets/ASSET_NAME_Season##.ext` |
-| Season background | `assets/ASSET_NAME/Season##_background.ext` | `assets/ASSET_NAME_Season##_background.ext` |
-| Episode poster | `assets/ASSET_NAME/S##E##.ext` | `assets/ASSET_NAME_S##E##.ext` |
-| Episode background | `assets/ASSET_NAME/S##E##_background.ext` | `assets/ASSET_NAME_S##E##_background.ext` |
+| Image Type | Asset Folders Image Paths
`asset_folders: true` | Flat Assets Image Paths
`asset_folders: false` |
+|:---------------------------------|:-------------------------------------------------------|:----------------------------------------------------------|
+| Collection/Movie/Show poster | `config/assets/ASSET_NAME/poster.ext` | `config/assets/ASSET_NAME.ext` |
+| Collection/Movie/Show background | `config/assets/ASSET_NAME/background.ext` | `config/assets/ASSET_NAME_background.ext` |
+| Season poster | `config/assets/ASSET_NAME/Season##.ext` | `config/assets/ASSET_NAME_Season##.ext` |
+| Season background | `config/assets/ASSET_NAME/Season##_background.ext` | `config/assets/ASSET_NAME_Season##_background.ext` |
+| Episode poster | `config/assets/ASSET_NAME/S##E##.ext` | `config/assets/ASSET_NAME_S##E##.ext` |
+| Episode background | `config/assets/ASSET_NAME/S##E##_background.ext` | `config/assets/ASSET_NAME_S##E##_background.ext` |
* For **Collections** replace `ASSET_NAME` with the mapping name used with the collection unless `name_mapping` is specified, which you would then use what's specified in `name_mapping`.