mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-13 00:07:13 +00:00
[8] Merge remote-tracking branch 'chaz/add-units' into nightly
This commit is contained in:
commit
d57d5597c0
5 changed files with 9 additions and 11 deletions
1
.github/.wordlist.txt
vendored
1
.github/.wordlist.txt
vendored
|
@ -151,7 +151,6 @@ linuxserver's
|
||||||
localhost
|
localhost
|
||||||
Looper
|
Looper
|
||||||
Lossy
|
Lossy
|
||||||
lossy
|
|
||||||
LSIO
|
LSIO
|
||||||
lsio
|
lsio
|
||||||
Luxembourgish
|
Luxembourgish
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.0.1-develop7
|
2.0.1-develop8
|
||||||
|
|
|
@ -27,8 +27,8 @@ plex:
|
||||||
|:----------------|:-------------------------------------------------------------------------------------------------------------------------------|:--------|:------------------------------------------:|
|
|:----------------|:-------------------------------------------------------------------------------------------------------------------------------|:--------|:------------------------------------------:|
|
||||||
| `url` | Plex Server URL<br><strong>Example:</strong> http://192.168.1.12:32400 | N/A | :fontawesome-solid-circle-check:{ .green } |
|
| `url` | Plex Server URL<br><strong>Example:</strong> http://192.168.1.12:32400 | N/A | :fontawesome-solid-circle-check:{ .green } |
|
||||||
| `token` | Plex Server Authentication Token | N/A | :fontawesome-solid-circle-check:{ .green } |
|
| `token` | Plex Server Authentication Token | N/A | :fontawesome-solid-circle-check:{ .green } |
|
||||||
| `timeout` | Plex Server Timeout | 60 | :fontawesome-solid-circle-xmark:{ .red } |
|
| `timeout` | Plex Server Timeout [in seconds] | 60 | :fontawesome-solid-circle-xmark:{ .red } |
|
||||||
| `db_cache` | Plex Server Database Cache Size | None | :fontawesome-solid-circle-xmark:{ .red } |
|
| `db_cache` | Plex Server Database Cache Size [in MB, Plex defaults to 40] | None | :fontawesome-solid-circle-xmark:{ .red } |
|
||||||
| `clean_bundles` | Runs Clean Bundles on the Server after all Collection Files are run<br>(`true`, `false` or Any [schedule option](schedule.md)) | false | :fontawesome-solid-circle-xmark:{ .red } |
|
| `clean_bundles` | Runs Clean Bundles on the Server after all Collection Files are run<br>(`true`, `false` or Any [schedule option](schedule.md)) | false | :fontawesome-solid-circle-xmark:{ .red } |
|
||||||
| `empty_trash` | Runs Empty Trash on the Server after all Collection Files are run<br>(`true`, `false` or Any [schedule option](schedule.md)) | false | :fontawesome-solid-circle-xmark:{ .red } |
|
| `empty_trash` | Runs Empty Trash on the Server after all Collection Files are run<br>(`true`, `false` or Any [schedule option](schedule.md)) | false | :fontawesome-solid-circle-xmark:{ .red } |
|
||||||
| `optimize` | Runs Optimize on the Server after all Collection Files are run<br>(`true`, `false` or Any [schedule option](schedule.md)) | false | :fontawesome-solid-circle-xmark:{ .red } |
|
| `optimize` | Runs Optimize on the Server after all Collection Files are run<br>(`true`, `false` or Any [schedule option](schedule.md)) | false | :fontawesome-solid-circle-xmark:{ .red } |
|
||||||
|
|
|
@ -811,8 +811,7 @@ The available setting attributes which can be set at each level are outlined bel
|
||||||
|
|
||||||
??? blank "`item_refresh_delay` - Time to wait between each `item_refresh`.<a class="headerlink" href="#item-refresh-delay" title="Permanent link">¶</a>"
|
??? blank "`item_refresh_delay` - Time to wait between each `item_refresh`.<a class="headerlink" href="#item-refresh-delay" title="Permanent link">¶</a>"
|
||||||
|
|
||||||
<div id="item-refresh-delay" />Specify the amount of time to wait between each `item_refresh` of every movie/show in
|
<div id="item-refresh-delay" />Specify the number of seconds to wait between each `item_refresh` of every movie/show in a collection/playlist.
|
||||||
a collection/playlist.
|
|
||||||
|
|
||||||
???+ note
|
???+ note
|
||||||
|
|
||||||
|
@ -824,7 +823,7 @@ The available setting attributes which can be set at each level are outlined bel
|
||||||
|
|
||||||
**Levels with this Attribute:** Global/Library/Collection/Playlist
|
**Levels with this Attribute:** Global/Library/Collection/Playlist
|
||||||
|
|
||||||
**Accepted Values:** Any Integer 0 or greater
|
**Accepted Values:** Any Integer 0 or greater (value is in seconds)
|
||||||
|
|
||||||
**Default Value:** `0`
|
**Default Value:** `0`
|
||||||
|
|
||||||
|
|
|
@ -209,15 +209,15 @@ different ways to specify these things.
|
||||||
|
|
||||||
??? blank "Timeout `-ti`/`--timeout` `KOMETA_TIMEOUT`<a class="headerlink" href="#timeout" title="Permanent link">¶</a>"
|
??? blank "Timeout `-ti`/`--timeout` `KOMETA_TIMEOUT`<a class="headerlink" href="#timeout" title="Permanent link">¶</a>"
|
||||||
|
|
||||||
<div id="timeout" />Change the timeout for all non-Plex services (such as TMDb, Radarr, and Trakt). This will default to `180` when not specified and is overwritten by any timeouts mentioned for specific services in the Configuration File.
|
<div id="timeout" />Change the timeout in seconds for all non-Plex services (such as TMDb, Radarr, and Trakt). This will default to `180` when not specified and is overwritten by any timeouts mentioned for specific services in the Configuration File.
|
||||||
|
|
||||||
<hr style="margin: 0px;">
|
<hr style="margin: 0px;">
|
||||||
|
|
||||||
**Accepted Values:** Integer Number of Seconds
|
**Accepted Values:** Integer (value is in seconds)
|
||||||
|
|
||||||
**Shell Flags:** `-ti` or `--timeout` (ex. `--timeout 06:00,18:00`)
|
**Shell Flags:** `-ti` or `--timeout` (ex. `--timeout 360`)
|
||||||
|
|
||||||
**Environment Variable:** `KOMETA_TIMEOUT` (ex. `KOMETA_TIMEOUT=06:00,18:00`)
|
**Environment Variable:** `KOMETA_TIMEOUT` (ex. `KOMETA_TIMEOUT=360`)
|
||||||
|
|
||||||
!!! example
|
!!! example
|
||||||
=== "Local Environment"
|
=== "Local Environment"
|
||||||
|
|
Loading…
Reference in a new issue