mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-11-23 10:19:39 +00:00
deprecate win10 21h2
This commit is contained in:
parent
48dffdf6c8
commit
bf4578f0a8
@ -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"];
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user