diff --git a/addon.xml b/addon.xml index cf3af68..be8c1e8 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + diff --git a/changelog.txt b/changelog.txt index 10174fc..853d489 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +[B]2.9.6[/B] +- Fix for UI client menu. + [B]2.9.5[/B] UI Client - Enable Alt-G diff --git a/resources/src/XNEWAGlobals.py b/resources/src/XNEWAGlobals.py index 307f4d1..d0df73c 100644 --- a/resources/src/XNEWAGlobals.py +++ b/resources/src/XNEWAGlobals.py @@ -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)" diff --git a/resources/src/nextpvr/emulate.py b/resources/src/nextpvr/emulate.py index 5310f54..d6943ff 100644 --- a/resources/src/nextpvr/emulate.py +++ b/resources/src/nextpvr/emulate.py @@ -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):