added 5 more special_release overlays (#349)
* added HGTV for Brett * added NBC * ratings stickers * added 5 more special_release overlays * fix special_release for git file location * remove special_release2
BIN
PMM/overlays/images/Anidb_Rating.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
PMM/overlays/images/DirectorsCut.png
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
PMM/overlays/images/Extended.png
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
BIN
PMM/overlays/images/IMDB_Rating.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
PMM/overlays/images/Letterboxd_Rating.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
PMM/overlays/images/Metacritic_Rating.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
PMM/overlays/images/RT_Rating_aud_fresh.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
PMM/overlays/images/RT_Rating_aud_rotten.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
PMM/overlays/images/RT_Rating_cert_fresh.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
PMM/overlays/images/RT_Rating_crit_fresh.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
PMM/overlays/images/RT_Rating_crit_rotten.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
PMM/overlays/images/Remastered.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
PMM/overlays/images/Special.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
PMM/overlays/images/TMDB_Rating.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
PMM/overlays/images/Trakt_Rating.png
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
PMM/overlays/images/Uncut.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
PMM/overlays/images/raw/Anidb_Rating.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
PMM/overlays/images/raw/IMDB_Rating.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
PMM/overlays/images/raw/Letterboxd_Rating.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
PMM/overlays/images/raw/Metacritic_Rating.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
PMM/overlays/images/raw/RT_Rating_aud_fresh.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
PMM/overlays/images/raw/RT_Rating_aud_rotten.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
PMM/overlays/images/raw/RT_Rating_cert_fresh.png
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
PMM/overlays/images/raw/RT_Rating_crit_fresh.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
PMM/overlays/images/raw/RT_Rating_crit_rotten.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
PMM/overlays/images/raw/TMDB_Rating.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
PMM/overlays/images/raw/Trakt_Rating.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
@ -29,6 +29,16 @@
|
||||
# use_enhanced: true #
|
||||
# # Use the IMAX overlay #
|
||||
# use_imax: true #
|
||||
# # Use the Director's Cut overlay #
|
||||
# use_directorscut: true #
|
||||
# # Use the Uncut overlay #
|
||||
# use_uncut: true #
|
||||
# # Use the Extended overlay #
|
||||
# use_extended: true #
|
||||
# # Use the Remastered overlay #
|
||||
# use_remastered: true #
|
||||
# # Use the Special overlay #
|
||||
# use_special: true #
|
||||
#############################################################
|
||||
|
||||
templates:
|
||||
@ -56,6 +66,51 @@ templates:
|
||||
|
||||
overlays:
|
||||
|
||||
DirectorsCut:
|
||||
template:
|
||||
- name: SpecialRelease
|
||||
weight: 80
|
||||
slug: directorscut
|
||||
plex_all: true
|
||||
filters:
|
||||
filepath.regex: '(?i)\bDirectorsCut\b'
|
||||
|
||||
Uncut:
|
||||
template:
|
||||
- name: SpecialRelease
|
||||
weight: 70
|
||||
slug: uncut
|
||||
plex_all: true
|
||||
filters:
|
||||
filepath.regex: '(?i)\bUncut\b'
|
||||
|
||||
Extended:
|
||||
template:
|
||||
- name: SpecialRelease
|
||||
weight: 60
|
||||
slug: extended
|
||||
plex_all: true
|
||||
filters:
|
||||
filepath.regex: '(?i)\bExtended\b'
|
||||
|
||||
Remastered:
|
||||
template:
|
||||
- name: SpecialRelease
|
||||
weight: 50
|
||||
slug: remastered
|
||||
plex_all: true
|
||||
filters:
|
||||
filepath.regex: '(?i)\bRemaster\b'
|
||||
|
||||
Special:
|
||||
template:
|
||||
- name: SpecialRelease
|
||||
weight: 40
|
||||
slug: special
|
||||
plex_all: true
|
||||
filters:
|
||||
filepath.regex: '(?i)\bSpecial\b'
|
||||
|
||||
Criterion:
|
||||
template:
|
||||
- name: SpecialRelease
|
||||
|
||||