Skip to content

Commit

Permalink
add win11 23h2 build number
Browse files Browse the repository at this point in the history
  • Loading branch information
13xforever committed Aug 2, 2023
1 parent bc9d05e commit 8a0fc28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions VkDiag/Program.OsInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ private static (OsSupportStatus status, string name) GetWindowsInfo(Version wind
case 22000: return (OsSupportStatus.Supported, "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}");
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.2.1";
private const string VkDiagVersion = "1.2.2";

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

0 comments on commit 8a0fc28

Please sign in to comment.