Thanks showed up in the season menu , now to work out how to get it to look through it, will see if I can get it working with your hints
I know I did have some custom menu's at some stage but "Library Node Editor" stopped working a while ago "ModuleNotFoundError: No module named 'unidecode'"
"Library Node Editor was used to alter "Recently Added" subtab settings" and to get it showing back into my Confluence skin
maybe some other things or at least that's all google showed with my name tag from 2017 to freshen my memory
few bits of code missing for the finish time integration
python:
import sys
import xbmc
import xbmcaddon
import xbmcgui
import json
#
from datetime import datetime, timedelta, time
#
#
def get_end_time(current_time_finish):
current_time_finish = datetime.now() + timedelta(seconds=finish_runtime)
return (current_time_finish)
#
if __name__ == '__main__':
addon = xbmcaddon.Addon()
#
remaining_runtime, finish_runtime, total_runtime = 0,0, 0
#
query = {"jsonrpc": "2.0", "method": "VideoLibrary.GetTVShows", "params": { "filter": { "field": "title", "operator": "is", "value": "" }, "limits": { "start": 0, "end": 1}, "properties": [ "title", "originaltitle", "playcount", "episode", "episodeguide", "watchedepisodes", "season"], "sort": { "order": "ascending", "method": "label"} }, "id": "libTvShows"}
query = json.loads(json.dumps(query))
query['params']['filter']['value'] = sys.listitem.getLabel()
response = json.loads(xbmc.executeJSONRPC(json.dumps(query)))
for episode in response['result']['episodes']:
if episode['playcount'] == 0:
remaining_runtime += episode['runtime'] / 60
#
finish_runtime += episode['runtime']
#
total_runtime += episode['runtime'] / 60
remaining_runtime = convert_time(remaining_runtime)
#
finish_runtime = get_end_time(finish_runtime)
#
total_runtime = convert_time(total_runtime)
pretty sure most of the things I use are no longer running as they were from back in xbmc days and never really got upgraded support
Kodi Global addons
~~~
context.show.runtime
game.controller.default
game.controller.snes
metadata.album.universal
metadata.anidb.net
metadata.artists.theaudiodb.com
metadata.artists.universal
metadata.common.allmusic.com
metadata.common.fanart.tv
metadata.common.imdb.com
metadata.common.impa.com
metadata.common.movieposterdb.com
metadata.common.musicbrainz.org
metadata.common.ofdb.de
metadata.common.omdbapi.com
metadata.common.port.hu
metadata.common.theaudiodb.com
metadata.common.themoviedb.org
metadata.common.youtubetrailers
metadata.imdb.com
metadata.movie.animenewsnetwork.com
metadata.musicvideos.last.fm
metadata.musicvideos.theaudiodb.com
metadata.themoviedb.org
metadata.themoviedb.org.python
metadata.tvdb.comaddons.txt
metadata.tvshows.animenewsnetwork.com
metadata.tvshows.themoviedb.org
metadata.tvshows.themoviedb.org.python
metadata.universal
packages
plugin.audio.icecast
plugin.image.mypicsdb
plugin.library.node.editor
plugin.video.fantasticc
plugin.video.hubwizard
repository.xbmc.org
resource.images.recordlabels.white
resource.images.studios.white
script.artwork.downloader
script.artworkorganizer
script.cdartmanager
script.common.plugin.cache
script.database.cleaner
script.games.rom.collection.browser
script.module.addon.common
script.module.arrow
script.module.beautifulsoup
script.module.certifi
script.module.chardet
script.module.dateutil
script.module.future
script.module.idna
script.module.mechanize
script.module.requests
script.module.routing
script.module.simplejson
script.module.six
script.module.trakt
script.module.typing_extensions
script.module.urllib3
script.module.urlresolver
script.obd2
script.plex
script.toolbox
script.trakt
script.transmission
script.video.F4mProxy
script.xbmc.audio.mixer
script.xbmc.subtitles
service.library.data.provider
service.rom.collection.browser
service.subtitles.opensubtitles
service.xbmc.versioncheck
skin.confluence
temp
weather.wunderground
~~~
Anime Profile addons
~~~
animeaddons.txt
context.show.runtime
plugin.audio.di.fm
plugin.video.youtube
screensaver.xbmc.builtin.slideshow
script.artwork.downloader
script.artworkorganizer
script.cdartmanager
script.common.plugin.cache
script.grab.fanart
script.service.xbmal
script.trakt
service.subtitles.opensubtitles
service.xbmc.versioncheck
skin.confluence
skin.estuary
visualization.glspectrum
visualization.projectm
weather.ozweather
weather.wunderground
xbmc.debug
~~~