Skip to content

Commit 36a164f

Browse files
committed
Release 9.0
1 parent 21a0544 commit 36a164f

File tree

3 files changed

+20
-19
lines changed

3 files changed

+20
-19
lines changed

.github/workflows/build_addon.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
2022.1, 2022.2, 2022.2.1, 2022.2.2, 2022.2.3, 2022.2.4, 2022.3, 2022.3.1, 2022.3.2, 2022.3.3, 2022.4,
6161
2023.1, 2023.2, 2023.3, 2023.3.1, 2023.3.2, 2023.3.3, 2023.3.4,
6262
2024.1, 2024.2, 2024.3, 2024.3.1, 2024.4, 2024.4.1, 2024.4.2,
63-
2025.1, 2025.1.1, 2025.1.2, 2025.2, 2025.3, 2025.3.1
63+
2025.1, 2025.1.1, 2025.1.2, 2025.2, 2025.3, 2025.3.1, 2025.3.2
6464
]
6565

6666
steps:

buildVars.py

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,16 @@
2323
# Translators: Long description to be shown for this add-on on add-on information from add-on store
2424
addon_description=_("""A set of tools for NVDA developers and testers."""),
2525
# version
26-
addon_version="8.0",
26+
addon_version="9.0",
2727
# Brief changelog for this version
2828
# Translators: what's new content for the add-on version to be shown in the add-on store
29-
addon_changelog=_("""* Python console history can now be preserved accross restarts.
30-
* Reverse translation: Added a second command to reverse translate a string using both NVDA and its add-ons translations.
31-
* New log reader commans to jump to previous or next braille output message
32-
* New log reader commans to jump to previous or next block in a message, e.g. previous or next thread stack in a watchdog freeze report, previous or next block of properties in the developer info for navigator object, etc.
33-
* New log reader commands to jump to the first or last interesting line of a block, e.g. first or last frame of a traceback
34-
* A new log reader "Go to error" command to jump to the error in a traceback frame.
35-
* A new log reader command to display an help message listing all the available commands while reading a log.
36-
* The log reading mode is now enabled by default in the Python console output pane.
37-
* A new command to anonymize a log
38-
* The console startup script now supports unicode strings (for Python 3 only); full unicode file may not be supported though.
39-
* The Python console startup script will now only be executed once and only once when the console opens.
40-
A bug where this script could be executed many times when reloading the add-ons has been fixed.
41-
* Improved error handling in the console startup script.
42-
* Bugfix: An empty log files created when log is disabled do not fail anymore to be saved as old log.
43-
* Speech on demand is now supported in layered commands
44-
* Improved error handling of the script opener command (in case of wrong or missing configuration, or when a braille display is in use).
29+
addon_changelog=_("""* A new command to open a code file when the caret is on a file path/line has been added.
30+
* Function calls logging (previously known as stack logging) has been improved offering the possibility to log the call of any function and providing a most reliable method to identify function calls.
31+
* Fixed a security issue with the log reader ([GHSA-39pg-6xpm-mjgf](https://github.com/CyrilleB79/NVDA-Dev-Test-Toolbox/security/advisories/GHSA-39pg-6xpm-mjgf)).
32+
* IO beep messages are now correctly reported with NVDA 2019.2.1.
33+
* Log reading commands no longer fail to read some speech commands (e.g. when using Console Toolkit add-on)
34+
* Addressed an issues where, in case of multiple possible reverse translations, the last menu item was copied to clipboard, no matter the item actually clicked.
35+
* Prepared compatibility for NVDA 2026.1
4536
"""),
4637
# Author(s)
4738
addon_author="Cyrille Bougot <cyrille.bougot2@laposte.net>",
@@ -54,7 +45,7 @@
5445
# Minimum NVDA version supported (e.g. "2019.3.0", minor version is optional)
5546
addon_minimumNVDAVersion="2019.2",
5647
# Last NVDA version supported/tested (e.g. "2024.4.0", ideally more recent than minimum version)
57-
addon_lastTestedNVDAVersion="2025.3.1",
48+
addon_lastTestedNVDAVersion="2025.3.2",
5849
# Add-on update channel (default is None, denoting stable releases,
5950
# and for development releases, use "dev".)
6051
# Do not change unless you know what you are doing!

readme.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,16 @@ When this method is modified, it will first apply the next time the function cal
464464

465465
## Change log
466466

467+
### Version 9.0
468+
469+
* A new command to open a code file when the caret is on a file path/line has been added.
470+
* Function calls logging (previously known as stack logging) has been improved offering the possibility to log the call of any function and providing a most reliable method to identify function calls.
471+
* Fixed a security issue with the log reader ([GHSA-39pg-6xpm-mjgf](https://github.com/CyrilleB79/NVDA-Dev-Test-Toolbox/security/advisories/GHSA-39pg-6xpm-mjgf)).
472+
* IO beep messages are now correctly reported with NVDA 2019.2.1.
473+
* Log reading commands no longer fail to read some speech commands (e.g. when using Console Toolkit add-on)
474+
* Addressed an issues where, in case of multiple possible reverse translations, the last menu item was copied to clipboard, no matter the item actually clicked.
475+
* Prepared compatibility for NVDA 2026.1
476+
467477
### Version 8.0
468478

469479
* Python console history can now be preserved accross restarts.

0 commit comments

Comments
 (0)