We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4129e28 commit d1799f5Copy full SHA for d1799f5
project/third-party/QSimpleUpdater/src/Updater.cpp
@@ -427,8 +427,12 @@ void Updater::onReply(QNetworkReply *reply)
427
if (platform.contains("mandatory-update"))
428
m_mandatoryUpdate = platform.value("mandatory-update").toBool();
429
430
- /* Compare latest and current version */
431
- setUpdateAvailable(compare(latestVersion(), moduleVersion()));
+ /* Must is <Beta> or <Release> */
+ if (m_typeVersion.toUpper() != "ALPHA")
432
+ {
433
+ /* Compare latest and current version */
434
+ setUpdateAvailable(compare(latestVersion(), moduleVersion()));
435
+ }
436
emit checkingFinished(url());
437
}
438
0 commit comments