From 1194c68fdbb29ffa102e9912abbdcf6641831c80 Mon Sep 17 00:00:00 2001 From: Yuriy Date: Fri, 27 Jan 2023 19:15:00 -0500 Subject: [PATCH] Update checks will ignore updates if they're a lower number than the current version to make testing easier --- Lib/SharedFunctions.ahk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/SharedFunctions.ahk b/Lib/SharedFunctions.ahk index fa9e414..1a29f9f 100644 --- a/Lib/SharedFunctions.ahk +++ b/Lib/SharedFunctions.ahk @@ -41,7 +41,7 @@ CheckForUpdates(){ UpdateVersionNumber := parsed.1.name - if(ScriptVersion = UpdateVersionNumber){ + if(ScriptVersion = UpdateVersionNumber OR ScriptVersion > UpdateVersionNumber){ ToolTip return }