Skip to content
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.

Commit

Permalink
[code/GUI] Bumping versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
fpoussin committed Apr 25, 2017
1 parent 2a82367 commit 8b48b61
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion GUI/MotoLink.pro
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions GUI/src/update.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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__);
}

}
2 changes: 1 addition & 1 deletion code/app/chconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8b48b61

Please sign in to comment.