TV On Deck: option to include show name
This commit is contained in:
parent
b20308d68f
commit
a5b33a9f49
4 changed files with 29 additions and 0 deletions
|
@ -388,6 +388,12 @@
|
||||||
<string id="39043">Go a step further and complete replace all original Plex library paths (/volume1/media) with custom SMB paths (smb://NAS/MyStuff)?</string>
|
<string id="39043">Go a step further and complete replace all original Plex library paths (/volume1/media) with custom SMB paths (smb://NAS/MyStuff)?</string>
|
||||||
<string id="39044">Please enter your custom smb paths in the settings under "Sync Options" and then restart Kodi</string>
|
<string id="39044">Please enter your custom smb paths in the settings under "Sync Options" and then restart Kodi</string>
|
||||||
|
|
||||||
|
<string id="39045">Appearance Tweaks</string>
|
||||||
|
<string id="39046">TV Shows</string>
|
||||||
|
<string id="39047">On Deck view: Append show title to episode</string>
|
||||||
|
<string id="39048">On Deck view: Append season number to episode</string>
|
||||||
|
|
||||||
|
|
||||||
<!-- Plex Entrypoint.py -->
|
<!-- Plex Entrypoint.py -->
|
||||||
<string id="39200">Switch Plex Home User</string>
|
<string id="39200">Switch Plex Home User</string>
|
||||||
<string id="39201">Settings</string>
|
<string id="39201">Settings</string>
|
||||||
|
|
|
@ -324,6 +324,11 @@
|
||||||
<string id="39043">Sollen sogar sämtliche Plex Pfade wie /volume1/Hans/medien durch benutzerdefinierte smb Pfade wie smb://NAS/Filme ersetzt werden?</string>
|
<string id="39043">Sollen sogar sämtliche Plex Pfade wie /volume1/Hans/medien durch benutzerdefinierte smb Pfade wie smb://NAS/Filme ersetzt werden?</string>
|
||||||
<string id="39044">Bitte geben Sie Ihre benutzerdefinierten SMB Pfade nun in den Einstellungen unter Sync Optionen ein. Starten Sie dann Kodi neu.</string>
|
<string id="39044">Bitte geben Sie Ihre benutzerdefinierten SMB Pfade nun in den Einstellungen unter Sync Optionen ein. Starten Sie dann Kodi neu.</string>
|
||||||
|
|
||||||
|
<string id="39045">Erscheinung</string>
|
||||||
|
<string id="39046">TV Serien</string>
|
||||||
|
<string id="39047">"Aktuell": Serien- an Episoden-Titel anfügen</string>
|
||||||
|
<string id="39048">"Aktuell": Staffel an Episoden-Titel anfügen</string>
|
||||||
|
|
||||||
<!-- Plex Entrypoint.py -->
|
<!-- Plex Entrypoint.py -->
|
||||||
<string id="39200">Plex Home Benutzer wechseln</string>
|
<string id="39200">Plex Home Benutzer wechseln</string>
|
||||||
<string id="39201">Einstellungen</string>
|
<string id="39201">Einstellungen</string>
|
||||||
|
|
|
@ -1446,6 +1446,17 @@ def getOnDeck(viewid, mediatype, tagname, limit):
|
||||||
for episode in episodes:
|
for episode in episodes:
|
||||||
# There will always be only 1 episode ('limit=1')
|
# There will always be only 1 episode ('limit=1')
|
||||||
li = createListItem(episode)
|
li = createListItem(episode)
|
||||||
|
# Fix some skin shortcomings
|
||||||
|
title = episode['title']
|
||||||
|
if utils.settings('OnDeckTvAppendSeason') == 'true':
|
||||||
|
season = episode.get('season')
|
||||||
|
if season:
|
||||||
|
title = str(season) + ' - ' + title
|
||||||
|
if utils.settings('OnDeckTvAppendShow') == 'true':
|
||||||
|
show = episode.get('showtitle')
|
||||||
|
if show:
|
||||||
|
title = show + ' - ' + title
|
||||||
|
li.setLabel(title)
|
||||||
xbmcplugin.addDirectoryItem(
|
xbmcplugin.addDirectoryItem(
|
||||||
handle=int(sys.argv[1]),
|
handle=int(sys.argv[1]),
|
||||||
url=episode['file'],
|
url=episode['file'],
|
||||||
|
|
|
@ -109,6 +109,13 @@
|
||||||
<setting id="newmusictime" type="number" label="30533" visible="false" default="2" option="int" subsetting="true" />
|
<setting id="newmusictime" type="number" label="30533" visible="false" default="2" option="int" subsetting="true" />
|
||||||
</category>
|
</category>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
<category label="39045"><!-- Appearance Tweaks -->
|
||||||
|
<setting type="lsep" label="39046" />
|
||||||
|
<setting id="OnDeckTvAppendShow" type="bool" label="39047" default="false" /><!--On Deck view: Append show title to episode-->
|
||||||
|
<setting id="OnDeckTvAppendSeason" type="bool" label="39048" default="false" /><!--On Deck view: Append season number to episode-->
|
||||||
|
</category>
|
||||||
|
|
||||||
<category label="30022"><!-- Advanced -->
|
<category label="30022"><!-- Advanced -->
|
||||||
<setting id="logLevel" type="enum" label="30004" values="Disabled|Info|Debug" default="1" />
|
<setting id="logLevel" type="enum" label="30004" values="Disabled|Info|Debug" default="1" />
|
||||||
<setting id="startupDelay" type="number" label="30529" default="0" option="int" />
|
<setting id="startupDelay" type="number" label="30529" default="0" option="int" />
|
||||||
|
|
Loading…
Reference in a new issue