Skip to content

Commit

Permalink
knewc 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emveepee committed Oct 14, 2020
1 parent db69248 commit 83e9941
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 19 deletions.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.kodi.knewc" name="NextPVR New Client" version="2.9.0~a2" provider-name="emveepee">
<addon id="script.kodi.knewc" name="NextPVR New Client" version="2.9.0" provider-name="emveepee">
<requires>
<!--import addon="xbmc.python" version="2.1.0"/-->
<import addon="script.module.future" version="0.16.0.4"/>
Expand Down
20 changes: 5 additions & 15 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
4 changes: 2 additions & 2 deletions resources/src/XNEWAGlobals.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down
2 changes: 1 addition & 1 deletion resources/src/nextpvr/details.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit 83e9941

Please sign in to comment.