From 957b05441c9d5a1dd5d73d1c732b46ed1bda3b7d Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Tue, 26 Jun 2012 15:45:05 +0300 Subject: [PATCH] Fixed that update notification is not displayed with beta builds --- Library/UpdateCheck.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/UpdateCheck.cpp b/Library/UpdateCheck.cpp index 766add40..b89a9ca0 100644 --- a/Library/UpdateCheck.cpp +++ b/Library/UpdateCheck.cpp @@ -68,7 +68,8 @@ void CheckVersion(void* dummy) const WCHAR* version = tmpSz.c_str(); int availableVersion = parseVersion(version); - if (availableVersion > RAINMETER_VERSION) + if (availableVersion > RAINMETER_VERSION || + (revision_beta && availableVersion == RAINMETER_VERSION)) { Rainmeter->SetNewVersion();