mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-22 20:43:07 +00:00
Merge pull request #1276 from bullmoose20/nightly
[1] fix awards section of table that do not support shows
This commit is contained in:
commit
563d2d9a9f
7 changed files with 15 additions and 18 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.18.3
|
||||
1.18.3-develop3
|
||||
|
|
|
@ -211,12 +211,12 @@ html_theme_options = {
|
|||
("_divider",),
|
||||
("Academy Awards (Oscars)", "defaults/award/oscars"),
|
||||
("British Academy of Film Awards", "defaults/award/bafta"),
|
||||
("Cannes File Festival Awards", "defaults/award/cannes"),
|
||||
("Cannes Film Festival Awards", "defaults/award/cannes"),
|
||||
("Critics Choice Awards", "defaults/award/choice"),
|
||||
("Emmy Awards", "defaults/award/emmy"),
|
||||
("Golden Globe Awards", "defaults/award/golden"),
|
||||
("Independent Spirit Awards", "defaults/award/spirit"),
|
||||
("Sundance File Festival Awards", "defaults/award/sundance"),
|
||||
("Sundance Film Festival Awards", "defaults/award/sundance"),
|
||||
("Other Awards", "defaults/award/other"),
|
||||
]),
|
||||
("_menu", "Chart", "defaults/defaults", "#chart-collections", [
|
||||
|
|
|
@ -29,9 +29,9 @@ These collections are applied by calling the below paths into the `metadata_path
|
|||
| [Critics Choice](award/choice) | `choice` | Critics Choice Awards 2020 | ✅ | ✅ |
|
||||
| [Emmys](award/emmy) | `emmy` | Emmys 2021 | ✅ | ✅ |
|
||||
| [Golden Globes](award/golden) | `golden` | Best Motion Pictures | ✅ | ✅ |
|
||||
| [Academy Awards (Oscars)](award/oscars) | `oscars` | Best Picture Winners | ✅ | ✅ |
|
||||
| [Academy Awards (Oscars)](award/oscars) | `oscars` | Best Picture Winners | ✅ | ❌ |
|
||||
| [Independent Spirit](award/spirit) | `spirit` | Independent Spirit Awards 2021 | ✅ | ❌ |
|
||||
| [Sundance](award/sundance) | `sundance` | Sundance Grand Jury Winners | ✅ | ✅ |
|
||||
| [Sundance](award/sundance) | `sundance` | Sundance Grand Jury Winners | ✅ | ❌ |
|
||||
| [Other](award/other) | `other_award` | Berlinale Golden Bears, Venice Golden Lions | ✅ | ❌ |
|
||||
|
||||
### General Collections
|
||||
|
|
|
@ -49,7 +49,7 @@ The below is an example config.yml extract with some Template Variables added in
|
|||
|
||||
```yaml
|
||||
libraries:
|
||||
Movies:
|
||||
TV Shows:
|
||||
overlay_path:
|
||||
- pmm: episode_info
|
||||
template_variables:
|
||||
|
|
|
@ -8,12 +8,12 @@ The `status` Default Overlay File is used to create an overlay on a show detaili
|
|||
|
||||
## Supported Status
|
||||
|
||||
| Audio Codec | Key | Weight |
|
||||
|:------------|:------------|:-------|
|
||||
| AIRING | `airing` | `40` |
|
||||
| RETURNING | `returning` | `30` |
|
||||
| CANCELED | `canceled` | `20` |
|
||||
| ENDED | `ended` | `10` |
|
||||
| Status | Key | Weight |
|
||||
|:----------|:------------|:-------|
|
||||
| AIRING | `airing` | `40` |
|
||||
| RETURNING | `returning` | `30` |
|
||||
| CANCELED | `canceled` | `20` |
|
||||
| ENDED | `ended` | `10` |
|
||||
|
||||
## Config
|
||||
|
||||
|
@ -21,9 +21,6 @@ The below YAML in your config.yml will create the overlays:
|
|||
|
||||
```yaml
|
||||
libraries:
|
||||
Movies:
|
||||
overlay_path:
|
||||
- pmm: status
|
||||
TV Shows:
|
||||
overlay_path:
|
||||
- pmm: status
|
||||
|
@ -66,7 +63,7 @@ The below is an example config.yml extract with some Template Variables added in
|
|||
|
||||
```yaml
|
||||
libraries:
|
||||
Movies:
|
||||
TV Shows:
|
||||
overlay_path:
|
||||
- pmm: status
|
||||
template_variables:
|
||||
|
|
|
@ -59,7 +59,7 @@ The below is an example config.yml extract with some Template Variables added in
|
|||
|
||||
```yaml
|
||||
libraries:
|
||||
Movies:
|
||||
TV Shows:
|
||||
metadata_path:
|
||||
- pmm: content_rating_us
|
||||
template_variables:
|
||||
|
|
|
@ -54,7 +54,7 @@ The below is an example config.yml extract with some Template Variables added in
|
|||
|
||||
```yaml
|
||||
libraries:
|
||||
Movies:
|
||||
TV Shows:
|
||||
metadata_path:
|
||||
- pmm: network
|
||||
template_variables:
|
||||
|
|
Loading…
Reference in a new issue