Skip to content

Commit

Permalink
Recognize more Windows 21H2 builds (nvaccess#12655)
Browse files Browse the repository at this point in the history
* Recognize more Windows 21H2 builds. Re nvaccess#12654

Recognize the following Windows 10 21H2 builds:
* 19044: Windows 10 21H2 (client)
* 20348: Windows Server 2022

* AppX: last tested -> 10.0.19044.0
  • Loading branch information
josephsl authored Jul 19, 2021
1 parent 0dbab4d commit b7dd32f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion appx/manifest.xml.subst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<TargetDeviceFamily
Name="Windows.Desktop"
MinVersion="10.0.18990.0"
MaxVersionTested="10.0.19043.0"
MaxVersionTested="10.0.19044.0"
/>
</Dependencies>
<Capabilities>
Expand Down
4 changes: 4 additions & 0 deletions source/winVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
19041: "Windows 10 2004",
19042: "Windows 10 20H2",
19043: "Windows 10 21H1",
19044: "Windows 10 21H2",
20348: "Windows Server 2022",
22000: "Windows 11 21H2",
}

Expand Down Expand Up @@ -151,6 +153,8 @@ def __ge__(self, other):
WIN10_2004 = WinVersion(major=10, minor=0, build=19041)
WIN10_20H2 = WinVersion(major=10, minor=0, build=19042)
WIN10_21H1 = WinVersion(major=10, minor=0, build=19043)
WIN10_21H2 = WinVersion(major=10, minor=0, build=19044)
WINSERVER_2022 = WinVersion(major=10, minor=0, build=20348)
WIN11 = WIN11_21H2 = WinVersion(major=10, minor=0, build=22000)


Expand Down

0 comments on commit b7dd32f

Please sign in to comment.