Skip to content

Commit

Permalink
update windows build mappings once again
Browse files Browse the repository at this point in the history
thanks, microsoft
  • Loading branch information
13xforever committed May 24, 2024
1 parent 5ea513b commit 86a4f94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion VkDiag/Program.OsInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,14 +193,15 @@ private static (OsSupportStatus status, string name) GetWindowsInfo(Version wind
// https://learn.microsoft.com/en-us/lifecycle/products/windows-11-home-and-pro
case int v when v < 21390: return (OsSupportStatus.Deprecated, $"10 Dev Build {v}");
case int v when v < 22000: return (OsSupportStatus.Deprecated, $"11 21H2 Internal Build {v}");
case 22000: return (OsSupportStatus.Supported, "11 21H2");
case 22000: return (OsSupportStatus.Deprecated, "11 21H2");
case int v when v < 22621: return (OsSupportStatus.Deprecated, $"11 22H2 Beta Build {v}");
case 22621: return (OsSupportStatus.Supported, "11 22H2");
case 22631: return (OsSupportStatus.Supported, "11 23H2");
case int v when v < 23000: return (OsSupportStatus.Prerelease, $"11 Beta Build {windowsVersion.Build}");
case int v when v < 24000: return (OsSupportStatus.Prerelease, $"11 Dev Build {windowsVersion.Build}");
case int v when v < 25000: return (OsSupportStatus.Prerelease, $"11 ??? Build {windowsVersion.Build}");
case int v when v < 26052: return (OsSupportStatus.Prerelease, $"11 Canary Build {windowsVersion.Build}");
case 26100: return (OsSupportStatus.Prerelease, $"11 24H2");
case int v when v < 26120: return (OsSupportStatus.Prerelease, $"11 Dev/Canary Build {windowsVersion.Build}");
case 26120: return (OsSupportStatus.Prerelease, $"11 24H2 Dev Build {windowsVersion.Build}");
case int v when v < 27000: return (OsSupportStatus.Prerelease, $"11 Canary Build {windowsVersion.Build}");
Expand Down
2 changes: 1 addition & 1 deletion VkDiag/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace VkDiag;

internal static partial class Program
{
private const string VkDiagVersion = "1.3.4";
private const string VkDiagVersion = "1.3.5";

private static bool isAdmin;
private static bool autofix;
Expand Down

0 comments on commit 86a4f94

Please sign in to comment.