New setting: show watched movies in recently added
This commit is contained in:
parent
7b0d810202
commit
51548f89cf
5 changed files with 12 additions and 4 deletions
|
@ -410,6 +410,7 @@
|
||||||
<string id="39063">Force Transcode Hi10P</string>
|
<string id="39063">Force Transcode Hi10P</string>
|
||||||
<string id="39064">Recently Added: Also show already watched episodes</string>
|
<string id="39064">Recently Added: Also show already watched episodes</string>
|
||||||
<string id="39065">Force Transcode HEVC</string>
|
<string id="39065">Force Transcode HEVC</string>
|
||||||
|
<string id="39066">Recently Added: Also show already watched movies (Refresh Plex playlist/nodes!)</string>
|
||||||
|
|
||||||
<!-- Plex Entrypoint.py -->
|
<!-- Plex Entrypoint.py -->
|
||||||
<string id="39200">Log-out Plex Home User </string>
|
<string id="39200">Log-out Plex Home User </string>
|
||||||
|
|
|
@ -349,6 +349,7 @@
|
||||||
<string id="39063">Hi10p Codec Transkodierung erzwingen</string>
|
<string id="39063">Hi10p Codec Transkodierung erzwingen</string>
|
||||||
<string id="39064">"Zuletzt hinzugefügt": gesehene Folgen anzeigen</string>
|
<string id="39064">"Zuletzt hinzugefügt": gesehene Folgen anzeigen</string>
|
||||||
<string id="39065">HEVC Codec Transkodierung erzwingen</string>
|
<string id="39065">HEVC Codec Transkodierung erzwingen</string>
|
||||||
|
<string id="39066">"Zuletzt hinzugefügt": gesehene Filme anzeigen (Plex Playlisten und Nodes zurücksetzen!)</string>
|
||||||
|
|
||||||
<!-- Plex Entrypoint.py -->
|
<!-- Plex Entrypoint.py -->
|
||||||
<string id="39200">Plex Home Benutzer abmelden: </string>
|
<string id="39200">Plex Home Benutzer abmelden: </string>
|
||||||
|
|
|
@ -1269,7 +1269,7 @@ def getRecentEpisodes(viewid, mediatype, tagname, limit):
|
||||||
"limits": {"end": limit}
|
"limits": {"end": limit}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if utils.settings('ShowWatched') == 'false':
|
if utils.settings('TVShowWatched') == 'false':
|
||||||
query['params']['filter'] = {
|
query['params']['filter'] = {
|
||||||
'operator': "lessthan",
|
'operator': "lessthan",
|
||||||
'field': "playcount",
|
'field': "playcount",
|
||||||
|
|
|
@ -300,8 +300,12 @@ class VideoNodes(object):
|
||||||
elif nodetype == "recent":
|
elif nodetype == "recent":
|
||||||
etree.SubElement(root, 'order', {'direction': "descending"}).text = "dateadded"
|
etree.SubElement(root, 'order', {'direction': "descending"}).text = "dateadded"
|
||||||
etree.SubElement(root, 'limit').text = limit
|
etree.SubElement(root, 'limit').text = limit
|
||||||
rule = etree.SubElement(root, 'rule', {'field': "playcount", 'operator': "is"})
|
if utils.settings('MovieShowWatched') == 'false':
|
||||||
etree.SubElement(rule, 'value').text = "0"
|
rule = etree.SubElement(root,
|
||||||
|
'rule',
|
||||||
|
{'field': "playcount",
|
||||||
|
'operator': "is"})
|
||||||
|
etree.SubElement(rule, 'value').text = "0"
|
||||||
|
|
||||||
elif nodetype == "inprogress":
|
elif nodetype == "inprogress":
|
||||||
etree.SubElement(root, 'rule', {'field': "inprogress", 'operator': "true"})
|
etree.SubElement(root, 'rule', {'field': "inprogress", 'operator': "true"})
|
||||||
|
|
|
@ -136,9 +136,11 @@
|
||||||
<setting id="OnDeckTVextended" type="bool" label="39058" default="true" /><!-- Extend Plex TV Series "On Deck" view to all shows -->
|
<setting id="OnDeckTVextended" type="bool" label="39058" default="true" /><!-- Extend Plex TV Series "On Deck" view to all shows -->
|
||||||
<setting id="OnDeckTvAppendShow" type="bool" label="39047" default="false" /><!--On Deck view: Append show title to episode-->
|
<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-->
|
<setting id="OnDeckTvAppendSeason" type="bool" label="39048" default="false" /><!--On Deck view: Append season number to episode-->
|
||||||
<setting id="ShowWatched" type="bool" label="39064" default="true" /><!--Recently Added: Also show already watched episodes-->
|
<setting id="TVShowWatched" type="bool" label="39064" default="true" /><!--Recently Added: Also show already watched episodes-->
|
||||||
<setting id="RecentTvAppendShow" type="bool" label="39059" default="false" /><!--Recently added: Append show title to episode-->
|
<setting id="RecentTvAppendShow" type="bool" label="39059" default="false" /><!--Recently added: Append show title to episode-->
|
||||||
<setting id="RecentTvAppendSeason" type="bool" label="39060" default="false" /><!--Recently Added: Append season- and episode-number SxxExx-->
|
<setting id="RecentTvAppendSeason" type="bool" label="39060" default="false" /><!--Recently Added: Append season- and episode-number SxxExx-->
|
||||||
|
<setting type="lsep" label="30302" /><!-- Movies -->
|
||||||
|
<setting id="MovieShowWatched" type="bool" label="39066" default="true" /><!--Recently Added: Also show already watched episodes-->
|
||||||
</category>
|
</category>
|
||||||
|
|
||||||
<category label="30022"><!-- Advanced -->
|
<category label="30022"><!-- Advanced -->
|
||||||
|
|
Loading…
Reference in a new issue