diff --git a/addon/globalPlugins/FENCodeReader/__init__.py b/addon/globalPlugins/FENCodeReader/__init__.py index 7e91c50..eabbe7d 100644 --- a/addon/globalPlugins/FENCodeReader/__init__.py +++ b/addon/globalPlugins/FENCodeReader/__init__.py @@ -86,7 +86,7 @@ def describeBoard(self): timeForSearching = Thread(target=sleep, args=(0.3,)) timeForSearching.start() while not description and c < l-16: - if not timeForSearching.isAlive(): + if not timeForSearching.is_alive(): ui.message(_("Too much text has been selected")) return # First use english notation by default diff --git a/buildVars.py b/buildVars.py index 98e0964..23e8a56 100644 --- a/buildVars.py +++ b/buildVars.py @@ -19,7 +19,7 @@ # Translators: Long description to be shown for this add-on on add-on information from add-ons manager "addon_description" : _("This addon translates a chess game position from FEN code to human friendly description"), # version - "addon_version" : "2023.1.0", + "addon_version" : "2024.0.1", # Author(s) "addon_author" : u"Javi Dominguez ", # URL for the add-on documentation support @@ -27,11 +27,11 @@ # File name for the add-on help file. "addon_docFileName" : "readme.html", # Minimum NVDA version supported (e.g. "2018.3") - "addon_minimumNVDAVersion" : "2018.1.0", + "addon_minimumNVDAVersion" : "2019.3.0", # Last NVDA version supported/tested (e.g. "2018.4", ideally more recent than minimum version) - "addon_lastTestedNVDAVersion" : "2023.3.0", + "addon_lastTestedNVDAVersion" : "2024.1.0", # Add-on update channel (default is stable or None) - "addon_updateChannel" : "stable" + "addon_updateChannel" : "dev" }