mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Version bump 2.2.3
This commit is contained in:
parent
bc1b975102
commit
081b76e7b0
3 changed files with 9 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<addon id="plugin.video.emby"
|
<addon id="plugin.video.emby"
|
||||||
name="Emby"
|
name="Emby"
|
||||||
version="2.2.2"
|
version="2.2.3"
|
||||||
provider-name="Emby.media">
|
provider-name="Emby.media">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="2.1.0"/>
|
<import addon="xbmc.python" version="2.1.0"/>
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
version 2.2.3
|
||||||
|
- Fix resume
|
||||||
|
|
||||||
version 2.2.2
|
version 2.2.2
|
||||||
- Fix dialog crash in the manual sync
|
- Fix dialog crash in the manual sync
|
||||||
- Fix view duplicate views appearing via launching the emby add-on, when grouping views in emby
|
- Fix view duplicate views appearing via launching the emby add-on, when grouping views in emby
|
||||||
|
|
|
@ -377,7 +377,7 @@ class Player(xbmc.Player):
|
||||||
log("Report: %s" % postdata, 2)
|
log("Report: %s" % postdata, 2)
|
||||||
self.ws.sendProgressUpdate(postdata)
|
self.ws.sendProgressUpdate(postdata)
|
||||||
|
|
||||||
def onPlayBackPaused( self ):
|
def onPlayBackPaused(self):
|
||||||
|
|
||||||
currentFile = self.currentFile
|
currentFile = self.currentFile
|
||||||
self.logMsg("PLAYBACK_PAUSED: %s" % currentFile, 2)
|
self.logMsg("PLAYBACK_PAUSED: %s" % currentFile, 2)
|
||||||
|
@ -387,7 +387,7 @@ class Player(xbmc.Player):
|
||||||
|
|
||||||
self.reportPlayback()
|
self.reportPlayback()
|
||||||
|
|
||||||
def onPlayBackResumed( self ):
|
def onPlayBackResumed(self):
|
||||||
|
|
||||||
currentFile = self.currentFile
|
currentFile = self.currentFile
|
||||||
self.logMsg("PLAYBACK_RESUMED: %s" % currentFile, 2)
|
self.logMsg("PLAYBACK_RESUMED: %s" % currentFile, 2)
|
||||||
|
@ -397,7 +397,7 @@ class Player(xbmc.Player):
|
||||||
|
|
||||||
self.reportPlayback()
|
self.reportPlayback()
|
||||||
|
|
||||||
def onPlayBackSeek( self, time, seekOffset ):
|
def onPlayBackSeek(self, time, seekOffset):
|
||||||
# Make position when seeking a bit more accurate
|
# Make position when seeking a bit more accurate
|
||||||
currentFile = self.currentFile
|
currentFile = self.currentFile
|
||||||
self.logMsg("PLAYBACK_SEEK: %s" % currentFile, 2)
|
self.logMsg("PLAYBACK_SEEK: %s" % currentFile, 2)
|
||||||
|
@ -408,7 +408,7 @@ class Player(xbmc.Player):
|
||||||
|
|
||||||
self.reportPlayback()
|
self.reportPlayback()
|
||||||
|
|
||||||
def onPlayBackStopped( self ):
|
def onPlayBackStopped(self):
|
||||||
|
|
||||||
log = self.logMsg
|
log = self.logMsg
|
||||||
window = utils.window
|
window = utils.window
|
||||||
|
@ -420,7 +420,7 @@ class Player(xbmc.Player):
|
||||||
log("Clear playlist properties.", 1)
|
log("Clear playlist properties.", 1)
|
||||||
self.stopAll()
|
self.stopAll()
|
||||||
|
|
||||||
def onPlayBackEnded( self ):
|
def onPlayBackEnded(self):
|
||||||
# Will be called when xbmc stops playing a file
|
# Will be called when xbmc stops playing a file
|
||||||
self.logMsg("ONPLAYBACK_ENDED", 2)
|
self.logMsg("ONPLAYBACK_ENDED", 2)
|
||||||
utils.window('emby_customPlaylist.seektime', clear=True)
|
utils.window('emby_customPlaylist.seektime', clear=True)
|
||||||
|
|
Loading…
Reference in a new issue