mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Version bump 1.1.60
Stable release
This commit is contained in:
parent
ca66438b62
commit
faa376a520
3 changed files with 5 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="plugin.video.emby"
|
||||
name="Emby"
|
||||
version="1.1.57"
|
||||
version="1.1.60"
|
||||
provider-name="Emby.media">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.1.0"/>
|
||||
|
|
|
@ -189,7 +189,9 @@ def createSources():
|
|||
)
|
||||
etree.SubElement(source_two, 'allowsharing').text = "true"
|
||||
|
||||
indent(root)
|
||||
try:
|
||||
indent(root)
|
||||
except:pass
|
||||
etree.ElementTree(root).write(xmlpath)
|
||||
|
||||
def pathsubstitution(add=True):
|
||||
|
|
|
@ -63,6 +63,7 @@ class Service():
|
|||
self.logMsg("Platform: %s" % (clientInfo.getPlatform()), 0)
|
||||
self.logMsg("KODI Version: %s" % xbmc.getInfoLabel('System.BuildVersion'), 0)
|
||||
self.logMsg("%s Version: %s" % (addonName, clientInfo.getVersion()), 0)
|
||||
self.logMsg("Using plugin paths: %s" % (utils.settings('useDirectPaths') != "true"), 0)
|
||||
self.logMsg("Log Level: %s" % logLevel, 0)
|
||||
|
||||
# Reset window props for profile switch
|
||||
|
|
Loading…
Reference in a new issue