Skip to content

Commit

Permalink
update windows build mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
13xforever committed May 20, 2024
1 parent f2aa157 commit 5ea513b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion VkDiag/Program.OsInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,10 @@ private static (OsSupportStatus status, string name) GetWindowsInfo(Version wind
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 int v when v < 27000: return (OsSupportStatus.Prerelease, $"11 Dev/Canary Build {windowsVersion.Build}");
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}");

default: return (OsSupportStatus.Prerelease, $"11 Unknown/private Build {windowsVersion.Build}");
}
default:
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.3";
private const string VkDiagVersion = "1.3.4";

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

0 comments on commit 5ea513b

Please sign in to comment.