commit/unicodeBrailleInput: 2 new changesets

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Wed, 13 Jun 2018 16:51:25 +0000 (UTC)

2 new commits in unicodeBrailleInput:

https://bitbucket.org/nvdaaddonteam/unicodebrailleinput/commits/111b3e842647/
Changeset:   111b3e842647
Branch:      None
User:        josephsl
Date:        2018-06-13 16:50:24+00:00
Summary:     Interface: call super at the end, not beginning.

Possibly due to NVDA 2018.2/multi-category settings: when super is called way 
early, wxPython raises runtime error due to a control being deleted. Thus call 
this at the very end.

Affected #:  1 file

diff --git a/addon/globalPlugins/unicodeBrailleInput/interface.py 
b/addon/globalPlugins/unicodeBrailleInput/interface.py
index fa29cb5..4a2af16 100644
--- a/addon/globalPlugins/unicodeBrailleInput/interface.py
+++ b/addon/globalPlugins/unicodeBrailleInput/interface.py
@@ -84,7 +84,6 @@ class B2UDialog(gui.SettingsDialog):
                self._brailleTextEdit.SetFocus()
 
        def onOk(self, event):
-               super(B2UDialog, self).onOk(event)
                value = self._brailleTextEdit.GetValue()
                regularSpace = self._regularSpaceChk.GetValue()
                try:
@@ -94,3 +93,4 @@ class B2UDialog(gui.SettingsDialog):
                        wx.CallLater(100, message, _("Unicode text copied to 
clipboard ready for you to paste."))
                except ValueError as e:
                        wx.CallLater(100, message, e.message)
+               super(B2UDialog, self).onOk(event)


https://bitbucket.org/nvdaaddonteam/unicodebrailleinput/commits/5900956c1df6/
Changeset:   5900956c1df6
Branch:      stable
User:        josephsl
Date:        2018-06-13 16:51:12+00:00
Summary:     Unicode Braille Input 2.8

Signed-off-by: Joseph Lee <joseph.lee22590@xxxxxxxxx>

Affected #:  1 file

diff --git a/buildVars.py b/buildVars.py
index 277e520..efb4214 100644
--- a/buildVars.py
+++ b/buildVars.py
@@ -19,7 +19,7 @@ addon_info = {
        # Translators: Long description to be shown for this add-on on add-on 
information from add-ons manager
        "addon_description" : _("Displays a text field to type numeric braille 
(e.g. 1345-1236-145-1) and converts it into unicode braille characters."),
        # version
-       "addon_version" : "2.7",
+       "addon_version" : "2.8",
        # Author(s)
        "addon_author" : u"Mesar Hameed <mhameed@xxxxxxxxxxxxx>, Patrick ZAJDA 
<patrick@xxxxxxxx>",
        # URL for the add-on documentation support

Repository URL: https://bitbucket.org/nvdaaddonteam/unicodebrailleinput/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts: