Skip to content

Commit

Permalink
2021.1 compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammad-suliman committed Jul 12, 2021
1 parent 5d90d46 commit 2f879ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion addon/appModules/zoom.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,9 @@ def __init__(self, processID, appName):
super(AppModule, self).__init__(processID, appName)
eventHandler.requestEvents("nameChange",processId=self.processID,windowClassName="zBubbleBaseClass")
initConfiguration()
gui.settingsDialogs.NVDASettingsDialog.categoryClasses.append(SettingsPanel)
categoryClasses = gui.settingsDialogs.NVDASettingsDialog.categoryClasses
if not (SettingsPanel in categoryClasses):
categoryClasses.append(SettingsPanel)
self.chatHistoryDialog = None
self.chatHistoryList = []
self.ricievedChatPrefix = False
Expand Down
4 changes: 2 additions & 2 deletions buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def _(arg):
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description" : _("""An add-on which aims to enhance the experience while using Zoom and NVDA"""),
# version
"addon_version" : "1.1",
"addon_version" : "1.1.1",
# Author(s)
"addon_author" : u"Mohammad Suliman <[email protected]>, Eilana Benish <[email protected]>",
# URL for the add-on documentation support
Expand All @@ -34,7 +34,7 @@ def _(arg):
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
"addon_minimumNVDAVersion" : "2018.4",
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
"addon_lastTestedNVDAVersion" : "2020.4",
"addon_lastTestedNVDAVersion" : "2021.1",
# Add-on update channel (default is None, denoting stable releases, and for development releases, use "dev"; do not change unless you know what you are doing)
"addon_updateChannel" : None,
}
Expand Down

0 comments on commit 2f879ef

Please sign in to comment.