Version bump 2.2.3

This commit is contained in:
angelblue05 2016-02-20 17:21:39 -06:00
parent bc1b975102
commit 081b76e7b0
3 changed files with 9 additions and 6 deletions

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.emby"
name="Emby"
version="2.2.2"
version="2.2.3"
provider-name="Emby.media">
<requires>
<import addon="xbmc.python" version="2.1.0"/>

View file

@ -1,3 +1,6 @@
version 2.2.3
- Fix resume
version 2.2.2
- Fix dialog crash in the manual sync
- Fix view duplicate views appearing via launching the emby add-on, when grouping views in emby

View file

@ -377,7 +377,7 @@ class Player(xbmc.Player):
log("Report: %s" % postdata, 2)
self.ws.sendProgressUpdate(postdata)
def onPlayBackPaused( self ):
def onPlayBackPaused(self):
currentFile = self.currentFile
self.logMsg("PLAYBACK_PAUSED: %s" % currentFile, 2)
@ -387,7 +387,7 @@ class Player(xbmc.Player):
self.reportPlayback()
def onPlayBackResumed( self ):
def onPlayBackResumed(self):
currentFile = self.currentFile
self.logMsg("PLAYBACK_RESUMED: %s" % currentFile, 2)
@ -397,7 +397,7 @@ class Player(xbmc.Player):
self.reportPlayback()
def onPlayBackSeek( self, time, seekOffset ):
def onPlayBackSeek(self, time, seekOffset):
# Make position when seeking a bit more accurate
currentFile = self.currentFile
self.logMsg("PLAYBACK_SEEK: %s" % currentFile, 2)
@ -408,7 +408,7 @@ class Player(xbmc.Player):
self.reportPlayback()
def onPlayBackStopped( self ):
def onPlayBackStopped(self):
log = self.logMsg
window = utils.window
@ -420,7 +420,7 @@ class Player(xbmc.Player):
log("Clear playlist properties.", 1)
self.stopAll()
def onPlayBackEnded( self ):
def onPlayBackEnded(self):
# Will be called when xbmc stops playing a file
self.logMsg("ONPLAYBACK_ENDED", 2)
utils.window('emby_customPlaylist.seektime', clear=True)