Skip to content

Commit 911e87f

Browse files
authored
Merge bf4e281 into a0bd47d
2 parents a0bd47d + bf4e281 commit 911e87f

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

appx/manifest.xml.subst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<TargetDeviceFamily
2525
Name="Windows.Desktop"
2626
MinVersion="10.0.18990.0"
27-
MaxVersionTested="10.0.19044.0"
27+
MaxVersionTested="10.0.22621.0"
2828
/>
2929
</Dependencies>
3030
<Capabilities>

source/winVersion.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
19045: "Windows 10 22H2",
3636
20348: "Windows Server 2022",
3737
22000: "Windows 11 21H2",
38+
22621: "Windows 11 22H2",
3839
}
3940

4041

@@ -156,6 +157,7 @@ def __ge__(self, other):
156157
WIN10_22H2 = WinVersion(major=10, minor=0, build=19045)
157158
WINSERVER_2022 = WinVersion(major=10, minor=0, build=20348)
158159
WIN11 = WIN11_21H2 = WinVersion(major=10, minor=0, build=22000)
160+
WIN11_22H2 = WinVersion(major=10, minor=0, build=22621)
159161

160162

161163
@functools.lru_cache(maxsize=1)

0 commit comments

Comments
 (0)