From bbe095d0d9b8cbb3c021c600f45279b6f99a65d6 Mon Sep 17 00:00:00 2001 From: Mikhail Thompson Date: Wed, 29 May 2024 08:12:31 +0200 Subject: [PATCH] Revert "Block installation on builds higher than 25977 for now" This reverts commit e4661e220edfdefbbb3286cb3f69facb89c1856d. --- Rectify11Installer/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rectify11Installer/Program.cs b/Rectify11Installer/Program.cs index baa5185d0..7c46f0ef3 100644 --- a/Rectify11Installer/Program.cs +++ b/Rectify11Installer/Program.cs @@ -57,8 +57,8 @@ private static void Main(string[] args) // Windows 11 builds greater than 25977 have known issues if (Environment.OSVersion.Version.Build >= 25977) { - ShowCompatibilityMessage(false, Strings.Rectify11.compatWarnText, Strings.Rectify11.tooNewBuild); - return; + if (!ShowCompatibilityMessage(true, Strings.Rectify11.compatWarnText, Strings.Rectify11.tooNewBuild)) + return; } }