Skip to content

Commit

Permalink
knewc v2.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
emveepee committed Feb 13, 2022
1 parent 813b6f3 commit 9e62814
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 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.5" provider-name="emveepee">
<addon id="script.kodi.knewc" name="NextPVR New Client" version="2.9.6" provider-name="emveepee">
<requires>
<!--import addon="xbmc.python" version="2.1.0"/-->
<import addon="script.module.future" version="0.16.0.4"/>
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[B]2.9.6[/B]
- Fix for UI client menu.

[B]2.9.5[/B]
UI Client
- Enable Alt-G
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.5'
__version__ = '2.9.6'
__author__ = 'emveepee'
__original_author__ = 'Ton van der Poel'
__date__ = '2021-02-10'
__date__ = '2021-02-13'

XBMC_DIALOG_BUSY_OPEN = "ActivateWindow(busydialognocancel)"
XBMC_DIALOG_BUSY_CLOSE = "Dialog.Close(busydialognocancel)"
Expand Down
4 changes: 2 additions & 2 deletions resources/src/nextpvr/emulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,9 +698,9 @@ def getContext(self):
url = keyBase + str(ENUM_KEY_Y | ENUM_KEY_ALT)
elif value == 10:
url = keyBase + str(ENUM_KEY_B | ENUM_KEY_ALT)
elif value >=6 and value <= 14:
elif value >=6 and value <= 15:
# numbers
url = keyBase + str(value + 43)
url = keyBase + str(value + 42)
return url

def getForcedScreen(self):
Expand Down

0 comments on commit 9e62814

Please sign in to comment.