added dependency of the version in the installer on the version in CMakeLists

This commit is contained in:
vladimir.kuznetsov
2023-03-10 08:50:11 +03:00
parent b292908564
commit 248a1ebd5c
12 changed files with 54 additions and 25 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ void AppSettingsLogic::onUpdatePage()
QString ver = QString("%1: %2 (%3)")
.arg(tr("Software version"))
.arg(QString(APP_VERSION))
.arg(QString(APP_MAJOR_VERSION))
.arg(__DATE__);
set_labelVersionText(ver);
}
+1 -1
View File
@@ -88,7 +88,7 @@ void VpnLogic::onUpdatePage()
else {
set_labelErrorText("");
}
QString ver = QString("v. %2").arg(QString(APP_VERSION));
QString ver = QString("v. %2").arg(QString(APP_MAJOR_VERSION));
set_labelVersionText(ver);
set_labelLogEnabledVisible(m_settings->isSaveLogs());