mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-22 12:33:10 +00:00
fix bad example of reset_overlays
and amend incorrect statements on what some template variables do.
This commit is contained in:
parent
9ce55cc11e
commit
172e685629
4 changed files with 7 additions and 3 deletions
|
@ -9,6 +9,7 @@ Updated lxml requirement to 5.1.0
|
|||
|
||||
# Bug Fixes
|
||||
Fixed the Rate Limit on MDbList calls
|
||||
- Users who do not have VIP status on MDBList will be limited to 1 request per second. Users with VIP status are limited to 5 requests per second
|
||||
Fixed collection fields being locked during batch edits when they shouldn't be.
|
||||
|
||||
Various other Minor Fixes
|
||||
|
|
|
@ -112,7 +112,7 @@ This is the default PMM collection ordering:
|
|||
|
||||
Configs can be customized using the `template_variables` attribute when calling the file. These `template_variables` will be given to every template call in the file which allows them to affect how that file runs.
|
||||
|
||||
This example changes the ratings overlay to work on episodes.
|
||||
This example disables two keys, which will prevent those collections from being created. It also sets the visibility of one of the keys so that it is visible on the library tab, the server owner's homescreen and shared user's homescreens (assuming they server owner and/or the shared users have the library pinned to their homescreen)
|
||||
|
||||
```yaml
|
||||
libraries:
|
||||
|
|
|
@ -39,7 +39,9 @@ libraries:
|
|||
|
||||
Configs can be customized using the `template_variables` attribute when calling the file. These `template_variables` will be given to every template call in the file which allows them to affect how that file runs.
|
||||
|
||||
This example changes the ratings overlay to work on episodes.
|
||||
For collections, this example disables two keys, which will prevent those collections from being created. It also sets the visibility of one of the keys so that it is visible on the library tab, the server owner's homescreen and shared user's homescreens (assuming they server owner and/or the shared users have the library pinned to their homescreen)
|
||||
|
||||
For overlays, this example changes the ratings overlay to apply to episodes rather than shows.
|
||||
|
||||
```yaml
|
||||
libraries:
|
||||
|
|
|
@ -447,13 +447,14 @@ With the release of PMM 1.20, several changes have taken place that we would lik
|
|||
Movies:
|
||||
remove_overlays: false
|
||||
reapply_overlays: false #(1)!
|
||||
reset_overlays: false
|
||||
# reset_overlays: plex #(2)!
|
||||
schedule_overlays: daily
|
||||
overlay_files:
|
||||
- pmm: audio_codec
|
||||
```
|
||||
|
||||
1. We strongly advise never setting this to `true` as it can cause [Image Bloat](scripts/image-cleanup.md)
|
||||
2. This is purely an example, you do not need to specify `reset_overlays` or any of these attributes unless you specifically need to use them.
|
||||
|
||||
??? blank "`imdb_list` no longer works for Title or Keyword search URLs (click to expand).<a class="headerlink" href="#imdb-search" title="Permanent link">¶</a>"
|
||||
|
||||
|
|
Loading…
Reference in a new issue