From 2776b1b47cf8b61c067d81cbf27b6b9ecbca6fed Mon Sep 17 00:00:00 2001 From: jw098 Date: Sun, 3 May 2026 15:40:23 -0700 Subject: [PATCH] update show_update_nag() --- .../Source/CommonFramework/Startup/NewVersionCheck.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SerialPrograms/Source/CommonFramework/Startup/NewVersionCheck.cpp b/SerialPrograms/Source/CommonFramework/Startup/NewVersionCheck.cpp index ec326bb632..0b342c6a82 100644 --- a/SerialPrograms/Source/CommonFramework/Startup/NewVersionCheck.cpp +++ b/SerialPrograms/Source/CommonFramework/Startup/NewVersionCheck.cpp @@ -74,7 +74,7 @@ struct ProgramVersion{ return false; } std::string skip_version = GlobalSettings::instance().CHECK_FOR_UPDATES->SKIP_VERSION; - return version_text != skip_version; + return version_text > skip_version; } };