From 4dc528fb38e96c88a95d271ef9bf41a5ca70fddd Mon Sep 17 00:00:00 2001 From: Andy Borka Date: Mon, 23 May 2022 08:07:32 -0400 Subject: [PATCH] Version bump 22.1.5 Bumped version to 22.1.5. --- README.md | 6 ++++++ buildVars.py | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fe977c8..868b30b 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,12 @@ The following gestures are available when DTK is enabled. ## Version history +### 22.1.5 + +* New versioning scheme xx.yy.zz where xx = Major NVDA version, yy = NVDA minor version, and zz = Developer toolkit revision number (month of the current year). +* Updated to work with NVDA 2022.1 and later. +* Older versions of NVDA prior to 2022.1 are no longer supported. + ### 20.06 * Updated to use NVDA's new control types library. diff --git a/buildVars.py b/buildVars.py index 28153d1..c791137 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" : _("""An NVDA addon that assists blind and visually impaired developers with creating visually appealing user interfaces."""), # version - "addon_version" : "20.06", + "addon_version" : "22.1.5", # Author(s) "addon_author" : u"Andy Borka ", # URL for the add-on documentation support @@ -27,9 +27,9 @@ # Documentation file name "addon_docFileName" : "readme.html", # Minimum NVDA version supported (e.g. "2018.3.0") - "addon_minimumNVDAVersion" : "2021.2", + "addon_minimumNVDAVersion" : "2022.1", # Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version) - "addon_lastTestedNVDAVersion" : "2021.3", + "addon_lastTestedNVDAVersion" : "2022.1", # Add-on update channel (default is stable or None) "addon_updateChannel" : None, }