only display updates based on build number, not version number

This commit is contained in:
jacob1 2017-07-23 16:41:38 -04:00
parent aad8eba5df
commit 1cfd9d8fc7
2 changed files with 3 additions and 3 deletions

View File

@ -831,7 +831,7 @@ bool Client::CheckUpdate(void *updateRequest, bool checkSession)
int stableBuild = stableVersion["Build"].asInt();
std::string stableFile = stableVersion["File"].asString();
std::string stableChangelog = stableVersion["Changelog"].asString();
if (stableMajor > SAVE_VERSION || (stableMinor > MINOR_VERSION && stableMajor == SAVE_VERSION) || stableBuild > BUILD_NUM)
if (stableBuild > BUILD_NUM)
{
updateAvailable = true;
updateInfo = UpdateInfo(stableMajor, stableMinor, stableBuild, stableFile, stableChangelog, UpdateInfo::Stable);
@ -846,7 +846,7 @@ bool Client::CheckUpdate(void *updateRequest, bool checkSession)
int betaBuild = betaVersion["Build"].asInt();
std::string betaFile = betaVersion["File"].asString();
std::string betaChangelog = betaVersion["Changelog"].asString();
if (betaMajor > SAVE_VERSION || (betaMinor > MINOR_VERSION && betaMajor == SAVE_VERSION) || betaBuild > BUILD_NUM)
if (betaBuild > BUILD_NUM)
{
updateAvailable = true;
updateInfo = UpdateInfo(betaMajor, betaMinor, betaBuild, betaFile, betaChangelog, UpdateInfo::Beta);