(2019-01-29, 20:34)burekas Wrote: What I did all the times is waiting for Marcel to update the skin to 3.8.x
Saving the skin parameters to file, updating kodi version to 18, then installing the 3.8.x version of Titan skin, and then restoring the configuration file.
So everything remains the same just with Kodi 18.
As I know, Marcel isn't going to update the skin for Kodi 18 by himself, so there are two active mods here that supporting kodi 18.
So my question is which of them will accomplish the same goal as I did with previous versions?
If I'm updating to kodi 18 while I have 3.7.x, what will happen?
I think booth mods, are not Supposed work "100% accurate"to use skinhelper backup to restore the skin Setting of Titan.
The reason lies in Skinhelper Backup, as it uses and needs the skin id (which need to be different, for the mods)
An Extension in the code from sh.backup,could help but i think there isn't much need.
Also both mods, need to change their id to fit an extension,which must be added also in sh.backup
Quote:skin.titan.mod
e.g.
skin_name = skin_name.replace(".mod", "")
python:
def get_skin_name():
''' get the skin name filtering out any beta prefixes and such.'''
skin_name = xbmc.getSkinDir().decode("utf-8")
skin_name = skin_name.replace("skin.", "")
skin_name = skin_name.replace(".kryptonbeta", "")
skin_name = skin_name.replace(".jarvisbeta", "")
skin_name = skin_name.replace(".leiabeta", "")
return skin_name
I reccommend ,do your settings again and backup them for further use.