From 8d8f6c3efd8d5fa3f8d97f0a8bc118e990a3f052 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 30 May 2024 19:41:28 -0400 Subject: [PATCH] register build number for Windows 11 24H2 --- src/platform.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/platform.cpp b/src/platform.cpp index 26b516dc10..8a4d4151b8 100644 --- a/src/platform.cpp +++ b/src/platform.cpp @@ -241,6 +241,8 @@ std::string platform::os_info() buf = "Windows 11 22H2"; } else if (build == "22631") { buf = "Windows 11 23H2"; + } else if (build == "26100") { + buf = "Windows 11 24H2"; } else { buf = "Windows Build " + build; }