Skip to content

Commit

Permalink
Install tasks and readme: downgrade to Windows 10 21H2 requirement.
Browse files Browse the repository at this point in the history
Some Studio users use 21H2 LTSC to run their stations, thus qualifying as mission-critical scenario (reported by Chris Duffley).
  • Loading branch information
josephsl committed Dec 26, 2024
1 parent b89d469 commit 5b9882a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions addon/installTasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

def onInstall():
currentWinVer = winVersion.getWinVer()
# StationPlaylist add-on requires 64-bit Windows 10 22H2 or later.
minimumWinVer = winVersion.WIN10_22H2
# StationPlaylist add-on requires 64-bit Windows 10 21H2 or later.
minimumWinVer = winVersion.WIN10_21H2
if currentWinVer < minimumWinVer:
gui.messageBox(
_(
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ If you are using Studio on a touchscreen computer with NVDA installed, you can p

## Version 25.01

* 64-bit Windows 10 22H2 (build 19045) or later is required.
* 64-bit Windows 10 21H2 (build 19044) or later is required.
* Download links for add-on releases are no longer included in add-on documentation. You can download the add-on from NV Access add-on store.
* Switched linting tool from Flake8 to Ruff and reformatted add-on modules to better align with NVDA coding standards.
* Removed support for automatic add-on updates feature from Add-on Updater add-on.
Expand Down

0 comments on commit 5b9882a

Please sign in to comment.