From 8cf9cc9f1b7be8bd07282c041910fe5a9ffd8b13 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 13 Oct 2024 21:49:02 +0200 Subject: [PATCH] nsis: Check for newer Windows build Follow-up to #8321, so we only claim to support what Qt actually officially does. --- misc/nsis/install.nsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/nsis/install.nsh b/misc/nsis/install.nsh index 7f11f560d..5c23c4ace 100755 --- a/misc/nsis/install.nsh +++ b/misc/nsis/install.nsh @@ -439,11 +439,11 @@ Function .onInit Goto _os_check_pass ${ElseIf} ${IsNativeAMD64} ; Windows 10 has no x86_64 emulation on arm64 ${AndIf} ${AtLeastWin10} - ${AndIf} ${AtLeastBuild} 14393 ; Windows 10 1607 (also in error message below) + ${AndIf} ${AtLeastBuild} 17763 ; Windows 10 1809 (also in error message below) Goto _os_check_pass ${EndIf} MessageBox MB_OK|MB_ICONSTOP "This version of ${PRODUCT_NAME} requires a 64-bit$\r$\n\ - version of Windows 10 1607 or later." + version of Windows 10 1809 or later." Abort _os_check_pass: