From 695ae64c70ca89d66978be3c15be184a46bed3ea Mon Sep 17 00:00:00 2001 From: Leonard de Ruijter Date: Sat, 25 Nov 2023 13:42:48 +0100 Subject: [PATCH 1/3] Reword readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f730283..0047a3c 100644 --- a/readme.md +++ b/readme.md @@ -4,7 +4,7 @@ * Download [latest stable version][2] * NVDA compatibility: 2023.2 and later -The RDAccess add-on (Remote Desktop Accessibility) adds support to access remote desktop sessions on NVDA using Microsoft Remote Desktop, Citrix, or VMware Horizon. +The RDAccess add-on (Remote Desktop Accessibility) adds support for Microsoft Remote Desktop, Citrix, or VMware Horizon remote sessions to NVDA. When installed on both the client and the server in NVDA, speech and braille generated on the server will be spoken and displayed in braille on the client machine. This enables a user experience where managing a remote system feels as seamless as operating the local system. From 10491e425befd75fe14a07efebf148166cc26794 Mon Sep 17 00:00:00 2001 From: Leonard de Ruijter Date: Tue, 28 Nov 2023 10:17:41 +0100 Subject: [PATCH 2/3] Fix braille display gestures coming from remote system --- addon/lib/protocol/braille.py | 4 ++-- readme.md | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/addon/lib/protocol/braille.py b/addon/lib/protocol/braille.py index ab1b688..7a372bf 100644 --- a/addon/lib/protocol/braille.py +++ b/addon/lib/protocol/braille.py @@ -24,7 +24,7 @@ class BrailleInputGesture(braille.BrailleDisplayGesture, brailleInput.BrailleInp def __init__( self, source: str, - identifier: str, + id: str, routingIndex: Optional[int] = None, model: Optional[str] = None, dots: int = 0, @@ -33,7 +33,7 @@ def __init__( ): super().__init__() self.source = source - self.id = identifier + self.id = id self.routingIndex = routingIndex self.model = model self.dots = dots diff --git a/readme.md b/readme.md index 0047a3c..e441888 100644 --- a/readme.md +++ b/readme.md @@ -23,6 +23,10 @@ This enables a user experience where managing a remote system feels as seamless ## Changelog +### Version 1.3 + +- Fixed broken braille display gestures. + ### Version 1.2 - Use [Ruff](https://github.com/astral-sh/ruff) as a formatter and linter. [#13](https://github.com/leonardder/rdAccess/pull/13) From 0bf137ec73fa7ceb418deaace3a77c7222df50db Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 28 Nov 2023 09:20:22 +0000 Subject: [PATCH 3/3] Update buildVars --- buildVars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildVars.py b/buildVars.py index 97ef760..1f6d337 100644 --- a/buildVars.py +++ b/buildVars.py @@ -27,7 +27,7 @@ def _(arg): "Allows using speech and braille with Microsoft Remote Desktop, Citrix Workspace and VMware Horizon" ), # version - "addon_version": "1.2.0", + "addon_version": "1.3.0", # Author(s) "addon_author": "Leonard de Ruijter ", # URL for the add-on documentation support