diff --git a/addon.xml b/addon.xml index 2cee565..0eb733b 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + diff --git a/changelog.txt b/changelog.txt index 5d8b7bd..9f3f518 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,23 +1,13 @@ -[B]2.9.0~a3[/B] -- Validate sid cache -- Fix EPG regression in ~a2 -- Remove dialog on no data in EPG -UI Client -- Handle "timed out" message - -[B]2.9.0~a2[/B] -- Fix error handling of ExtraDirectory call -- Extra logging for debugging PVR mode -UI Client -- Don't open window when loading channel icons -- Handle stray timeout message - -[B]2.9.0~a1[/B] +[B]2.9.0[/B] +- Remove warning on no data in EPG - Matrix and Leia comnpatibility for repo - PVR mode for in progress recordings using JSON RPC - Improved PVR mode for live tv - Save SID state on rentry - Deprecated API change +- Fix error handling of ExtraDirectory call +UI Client +- Don't open window when loading channel icons - Timeout http calls [B]2.8.0[/B] diff --git a/resources/src/XNEWAGlobals.py b/resources/src/XNEWAGlobals.py index f3af4ef..e26c4df 100644 --- a/resources/src/XNEWAGlobals.py +++ b/resources/src/XNEWAGlobals.py @@ -216,10 +216,10 @@ # Script doc constants __scriptname__ = "knewc" -__version__ = '2.9.0~a3' +__version__ = '2.9.0' __author__ = 'emveepee' __original_author__ = 'Ton van der Poel' -__date__ = '2020-10-04' +__date__ = '2020-10-13' XBMC_DIALOG_BUSY_OPEN = "ActivateWindow(busydialognocancel)" XBMC_DIALOG_BUSY_CLOSE = "Dialog.Close(busydialognocancel)" diff --git a/resources/src/nextpvr/details.py b/resources/src/nextpvr/details.py index 76d12fa..83e7f94 100644 --- a/resources/src/nextpvr/details.py +++ b/resources/src/nextpvr/details.py @@ -632,7 +632,7 @@ def _myPlayer(self, detail=None, button=None, isMin = False, Audio = False, setR listitem.setProperty('startoffset',str(bookmarkSecs)) #listitem.setProperty('startoffset',str(bookmarkSecs)) - if self.settings.NextPVR_STREAM == 'PVR' and xbmc.getCondVisibility('System.HasPVRAddon') and self.detailData['end'] != datetime.now(): + if self.settings.NextPVR_STREAM == 'PVR' and xbmc.getCondVisibility('System.HasPVRAddon'): url = self.xnewa.GetPVRRecording(self.detailData['recording_oid']) if url == None: url = self.detailData['filename']