diff --git a/English.lproj/MainMenu.nib/keyedobjects.nib b/English.lproj/MainMenu.nib/keyedobjects.nib index ded11cecd..de5fc100b 100644 Binary files a/English.lproj/MainMenu.nib/keyedobjects.nib and b/English.lproj/MainMenu.nib/keyedobjects.nib differ diff --git a/Frameworks/Sparkle/SUUpdater.m b/Frameworks/Sparkle/SUUpdater.m index 2ada1d2d8..5911fd4c1 100755 --- a/Frameworks/Sparkle/SUUpdater.m +++ b/Frameworks/Sparkle/SUUpdater.m @@ -276,7 +276,7 @@ // Override this to change the new version comparison logic! - (BOOL)newVersionAvailable { - BOOL canRunOnCurrentSystem = SUStandardVersionComparison([updateItem minimumSystemVersion], [self systemVersionString]); + BOOL canRunOnCurrentSystem = (SUStandardVersionComparison([updateItem minimumSystemVersion], [self systemVersionString]) != NSOrderedAscending); return (canRunOnCurrentSystem && (SUStandardVersionComparison([updateItem fileVersion], SUHostAppVersion()) == NSOrderedAscending)); // Want straight-up string comparison like Sparkle 1.0b3 and earlier? Uncomment the line below and comment the one above. // return ![SUHostAppVersion() isEqualToString:[updateItem fileVersion]];