diff --git a/GUI/MotoLink.pro b/GUI/MotoLink.pro index 32de360..3062220 100755 --- a/GUI/MotoLink.pro +++ b/GUI/MotoLink.pro @@ -14,7 +14,7 @@ TARGET = MotoLink TEMPLATE = app #win32:CONFIG += console -VERSION = 0.7.0 +VERSION = 0.8.0 message(Version $$VERSION) DEFINES *= QT_USE_QSTRINGBUILDER diff --git a/GUI/src/update.cpp b/GUI/src/update.cpp index f479af6..8f24d57 100755 --- a/GUI/src/update.cpp +++ b/GUI/src/update.cpp @@ -55,12 +55,12 @@ void Update::onResult(QNetworkReply *reply) mNewVersion = version; if (mCurrentVersion.compare(mNewVersion) < 0) { - qDebug("New version available: %s", version.toStdString().c_str()); + qInfo("New version available: %s", version.toStdString().c_str()); emit newVersionAvailable(version); } else { - qDebug("Using latest version: %s", version.toStdString().c_str()); + qInfo("Using latest version: %s", __MTL_VER__); } } diff --git a/code/app/chconf.h b/code/app/chconf.h index 978bb87..a9a4176 100644 --- a/code/app/chconf.h +++ b/code/app/chconf.h @@ -29,7 +29,7 @@ #define _CHCONF_H_ #define VERSION_MAJOR 0 -#define VERSION_MINOR 7 +#define VERSION_MINOR 8 #define VERSION_PATCH 0 #include "vectors.h"