deprecate win10 21h2

This commit is contained in:
13xforever 2023-06-14 15:17:33 +05:00
parent 48dffdf6c8
commit bf4578f0a8
No known key found for this signature in database
GPG Key ID: 2B2A36B482FE70C5
2 changed files with 3 additions and 3 deletions

View File

@ -257,7 +257,7 @@ internal static partial class LogParserResult
if (items["os_type"] == "Windows"
&& Version.TryParse(items["os_version"], out var winVersion)
&& (winVersion is { Major: < 10 } or { Build: < 19044 or (> 20000 and < 22000) }))
&& (winVersion is { Major: < 10 } or { Build: < 19045 or (> 20000 and < 22000) }))
notes.Add("⚠️ Please [upgrade your Windows](https://www.microsoft.com/en-us/software-download/windows11) to currently supported version");
var gpuInfo = items["gpu_info"] ?? items["discrete_gpu_info"];

View File

@ -837,8 +837,8 @@ internal static partial class LogParserResult
< 19041 => "10 20H1 Build " + windowsVersion.Build,
19041 => "10 2004",
19042 => "10 20H2",
19043 => "10 21H1", // deprecated
19044 => "10 21H2",
19043 => "10 21H1",
19044 => "10 21H2", // deprecated
19045 => "10 22H2",
< 21390 => "10 Dev Build " + windowsVersion.Build,