From bf930d537e667465d2d23bd96f41f581c8d92b60 Mon Sep 17 00:00:00 2001 From: Jeremiah Ticket Date: Wed, 28 Sep 2016 13:15:40 -0800 Subject: [PATCH 1/5] Added the equals sign to punctuation manager. --- src/fenrir-package/core/punctuationManager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fenrir-package/core/punctuationManager.py b/src/fenrir-package/core/punctuationManager.py index 8cf1f637..a454773d 100644 --- a/src/fenrir-package/core/punctuationManager.py +++ b/src/fenrir-package/core/punctuationManager.py @@ -51,6 +51,7 @@ class punctuationManager(): '*':'star', '~':'tilde', '_':'line', + '=':'equals', }, 'customDict':{ 'chrys':'awsome', From ad51b15f85b21f771e2852f0f65af005b8e5d488 Mon Sep 17 00:00:00 2001 From: Jeremiah Ticket Date: Wed, 28 Sep 2016 13:19:17 -0800 Subject: [PATCH 2/5] Corrected spelling in the inc_speech_rate command description. --- src/fenrir-package/commands/commands/inc_speech_rate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir-package/commands/commands/inc_speech_rate.py b/src/fenrir-package/commands/commands/inc_speech_rate.py index f8594cbf..3f20ae6b 100644 --- a/src/fenrir-package/commands/commands/inc_speech_rate.py +++ b/src/fenrir-package/commands/commands/inc_speech_rate.py @@ -15,7 +15,7 @@ class command(): def shutdown(self): pass def getDescription(self): - return 'increase the speech rat' + return 'increase the speech rate' def run(self): value = self.env['runtime']['settingsManager'].getSettingAsFloat('speech', 'rate') From d409bd3e990835e4abb0e09f884b6624abc834b3 Mon Sep 17 00:00:00 2001 From: Jeremiah Ticket Date: Wed, 28 Sep 2016 13:24:20 -0800 Subject: [PATCH 3/5] Corrected some grammar in the text and return. --- src/fenrir-package/commands/commands/toggle_tutorial_mode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir-package/commands/commands/toggle_tutorial_mode.py b/src/fenrir-package/commands/commands/toggle_tutorial_mode.py index cfb4f1a9..e5ad15c8 100644 --- a/src/fenrir-package/commands/commands/toggle_tutorial_mode.py +++ b/src/fenrir-package/commands/commands/toggle_tutorial_mode.py @@ -18,7 +18,7 @@ class command(): return 'You are leving the tutorial mode. Press that shortcut again to enter the tutorial mode again.' def run(self): - text = 'you entered the tutorial mode. In that mode the commands are not executed. but you get an description what the shortcut does. to leve the tutorial mode press that shortcut again.' + text = 'you entered the tutorial mode. In that mode the commands are not executed. but you get a description of what the shortcut does. To leve the tutorial mode, press that shortcut again.' self.env['runtime']['outputManager'].presentText(text, interrupt=True) self.env['generalInformation']['tutorialMode'] = True From 1ef8ade7fcfe9eced720ababcb560e9155716d13 Mon Sep 17 00:00:00 2001 From: Jeremiah Ticket Date: Wed, 28 Sep 2016 13:29:32 -0800 Subject: [PATCH 4/5] Recorrected semicolon. --- src/fenrir-package/core/punctuationManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir-package/core/punctuationManager.py b/src/fenrir-package/core/punctuationManager.py index a454773d..3ab3c926 100644 --- a/src/fenrir-package/core/punctuationManager.py +++ b/src/fenrir-package/core/punctuationManager.py @@ -46,7 +46,7 @@ class punctuationManager(): ')':'right paren', '}':'right brace', ']':'right bracket', - ';':'semi colon', + ';':'semicolon', '/':'slash', '*':'star', '~':'tilde', From a3e765b4a583141fe54e61da89fb58b8217c8f2b Mon Sep 17 00:00:00 2001 From: Jeremiah Ticket Date: Wed, 28 Sep 2016 13:38:05 -0800 Subject: [PATCH 5/5] Added python-enchant to readme under optional --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1b5851b2..c0b0bf95 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ ReadWrite permission - speech-dispatcher, python3-speechd [to use the speech-dispatcher driver] - brltty, python-brlapi [for using braille] # (not implemented yet) - gstreamer [for soundicons via gstreamer] # not working yet +- python-enchant for spell check functionality # installation Currently there is no setupscript (sorry). But you can just run src/fenrir-package/fenrir.py as root or setup the needed permissions