Skip to content

Commit

Permalink
Fix deprecation warning.
Browse files Browse the repository at this point in the history
Bump NVDA compatibility.
Update version
  • Loading branch information
beqabeqa473 committed Sep 12, 2023
1 parent 3f20ca3 commit bf75f50
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion addon/globalPlugins/instantTranslate/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import wx
import gui
import gui.guiHelper
from gui.settingsDialogs import SettingsPanel
from .langslist import langslist
from . import langslist as lngModule
import addonHandler
Expand All @@ -18,7 +19,7 @@

addonHandler.initTranslation()

class InstantTranslateSettingsPanel(gui.SettingsPanel):
class InstantTranslateSettingsPanel(SettingsPanel):
# Translators: name of the dialog.
title = _("Instant Translate")

Expand Down
4 changes: 2 additions & 2 deletions buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description" : _("This addon translates selected or clipboard text using the Google Translate service and presents it."),
# version
"addon_version" : "4.5.3",
"addon_version" : "4.6",
# Author(s)
"addon_author" : "Alexy Sadovoy aka Lex <[email protected]>, ruslan <[email protected]>, beqa <[email protected]>, Mesar Hameed <[email protected]>, Alberto Buffolino <[email protected]>, and other NVDA contributors",
# URL for the add-on documentation support
Expand All @@ -27,7 +27,7 @@
# Minimum NVDA version supported
"addon_minimumNVDAVersion" : "2019.3",
# Last NVDA version supported/tested
"addon_lastTestedNVDAVersion" : "2023.1.0"
"addon_lastTestedNVDAVersion" : "2023.2.0"
}

import os.path
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ All following commands must be pressed after modifier key "NVDA+Shift+t":
## Changes for 1.0 ##
* Initial version.

[1]: http://addons.nvda-project.org/files/get.php?file=instantTranslate
[1]: https://addons.nvda-project.org/legacy?file=instantTranslate

[2]: http://addons.nvda-project.org/files/get.php?file=it-dev

0 comments on commit bf75f50

Please sign in to comment.