Hi Phil.
Does this addon run on Krypton ?
I'm running Beta 3 and start porting my Aeon Nox 5 Mod to Krypton so I edit Startup.xml file to add your addon :
Code:
<onload condition="System.HasAddon(script.skin.info.service)">RunScript(script.skin.info.service)</onload>
But when I put Kodi into debug mode and look into kodi.log, I only find those 2 lines :
Code:
10:23:47 T:6704 DEBUG: ADDON: cpluff: 'Plug-in script.skin.info.service has been installed.'
...
...
10:24:14 T:6704 DEBUG: ADDON: cpluff: 'Plug-in script.skin.info.service has been uninstalled.'
Meanwhile, on Kodi 16.1, I found :
Code:
10:32:13 T:8188 DEBUG: ADDON: cpluff: 'Plug-in script.skin.info.service has been installed.'
...
10:32:15 T:5928 DEBUG: CPythonInvoker(6, C:\Kodi\Jarvis 16.1\portable_data\addons\script.skin.info.service\default.py): start processing
...
10:32:18 T:5928 DEBUG: script.skin.info.service: starting daemon
10:32:18 T:5928 DEBUG: script.skin.info.service: version 1.0.0 started
10:32:18 T:5928 DEBUG: script.skin.info.service: starting backend
...
Other scripts are started on Kodi 17 Beta 3 :
Code:
10:23:49 T:1228 DEBUG: CPythonInvoker(2, C:\Kodi\Krypton 17.0 Beta 3\portable_data\addons\script.skin.helper.service\service.py): start processing
10:23:49 T:6480 DEBUG: CPythonInvoker(0, C:\Kodi\Krypton 17.0 Beta 3\portable_data\addons\service.xbmc.versioncheck\service.py): start processing
10:23:49 T:5572 DEBUG: CPythonInvoker(3, C:\Kodi\Krypton 17.0 Beta 3\portable_data\addons\service.library.data.provider\service.py): start processing
10:23:49 T:6672 DEBUG: CPythonInvoker(4, C:\Kodi\Krypton 17.0 Beta 3\portable_data\addons\script.grab.fanart\service.py): start processing
10:23:49 T:8048 DEBUG: CPythonInvoker(1, C:\Kodi\Krypton 17.0 Beta 3\portable_data\addons\script.imdbupdate\service.py): start processing
10:23:49 T:6568 DEBUG: CPythonInvoker(5, C:\Kodi\Krypton 17.0 Beta 3\portable_data\addons\script.toolbox\default.py): start processing
10:23:49 T:4680 DEBUG: CPythonInvoker(6, C:\Kodi\Krypton 17.0 Beta 3\portable_data\addons\script.skinshortcuts\default.py): start processing
10:23:49 T:6352 DEBUG: CPythonInvoker(7, C:\Kodi\Krypton 17.0 Beta 3\portable_data\addons\script.common.plugin.cache\default.py): start processing
Thanks.
EDIT :
My fault. I have just copy script.skin.info.service folder from my Kodi 16.1 setup to Krypton 17 Beta 3.
But I guess now Kodi use his database to check if addon is installed or not.
So I've downloaded addon from github and installed it from ZIP file and everything is OK now :p