From 78dca7a2cf95ba39ef997489dbc20f42721ae6ff Mon Sep 17 00:00:00 2001 From: Mikhail Thompson Date: Wed, 29 May 2024 20:18:05 +0200 Subject: [PATCH] fix config + remove 24h2 warning --- Rectify11Installer/Program.cs | 7 ------- .../CONF/{lightrectified.conf => Aero.conf} | 0 .../MicaForEveryone/CONF/{darkrectified.conf => Dark.conf} | 0 .../CONF/{Tlightrectified.conf => TAero.conf} | 0 .../CONF/{Tdarkrectified.conf => TDark.conf} | 0 5 files changed, 7 deletions(-) rename Resources/Themes/MicaForEveryone/CONF/{lightrectified.conf => Aero.conf} (100%) rename Resources/Themes/MicaForEveryone/CONF/{darkrectified.conf => Dark.conf} (100%) rename Resources/Themes/MicaForEveryone/CONF/{Tlightrectified.conf => TAero.conf} (100%) rename Resources/Themes/MicaForEveryone/CONF/{Tdarkrectified.conf => TDark.conf} (100%) diff --git a/Rectify11Installer/Program.cs b/Rectify11Installer/Program.cs index 96c582ec6..373d35de7 100644 --- a/Rectify11Installer/Program.cs +++ b/Rectify11Installer/Program.cs @@ -56,13 +56,6 @@ private static void Main(string[] args) if (!ShowCompatibilityMessage(true, Strings.Rectify11.compatWarnText, Strings.Rectify11.compatWarnInstruc)) return; } - - // Windows 11 builds greater than 25977 have known issues - if (Environment.OSVersion.Version.Build >= 25977) - { - if (!ShowCompatibilityMessage(true, Strings.Rectify11.compatWarnText, Strings.Rectify11.tooNewBuild)) - return; - } } if (Environment.OSVersion.Version.Build >= 10240) diff --git a/Resources/Themes/MicaForEveryone/CONF/lightrectified.conf b/Resources/Themes/MicaForEveryone/CONF/Aero.conf similarity index 100% rename from Resources/Themes/MicaForEveryone/CONF/lightrectified.conf rename to Resources/Themes/MicaForEveryone/CONF/Aero.conf diff --git a/Resources/Themes/MicaForEveryone/CONF/darkrectified.conf b/Resources/Themes/MicaForEveryone/CONF/Dark.conf similarity index 100% rename from Resources/Themes/MicaForEveryone/CONF/darkrectified.conf rename to Resources/Themes/MicaForEveryone/CONF/Dark.conf diff --git a/Resources/Themes/MicaForEveryone/CONF/Tlightrectified.conf b/Resources/Themes/MicaForEveryone/CONF/TAero.conf similarity index 100% rename from Resources/Themes/MicaForEveryone/CONF/Tlightrectified.conf rename to Resources/Themes/MicaForEveryone/CONF/TAero.conf diff --git a/Resources/Themes/MicaForEveryone/CONF/Tdarkrectified.conf b/Resources/Themes/MicaForEveryone/CONF/TDark.conf similarity index 100% rename from Resources/Themes/MicaForEveryone/CONF/Tdarkrectified.conf rename to Resources/Themes/MicaForEveryone/CONF/TDark.conf