diff --git a/FastTrack.pri b/FastTrack.pri new file mode 100644 index 0000000..2339668 --- /dev/null +++ b/FastTrack.pri @@ -0,0 +1 @@ +VERSION = 6.2.3 diff --git a/changelog.md b/changelog.md index 2db0b25..9f0f01f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,13 @@ # FastTrack changelog +## 6.2.3 + +### Added +- Added background status in interactive tracking. + +### Fixed +- Fixed crop in interactive tracking. + ## 6.2.2 ### Added diff --git a/src/FastTrack-Cli.pro b/src/FastTrack-Cli.pro index d7ef462..48fc8c5 100644 --- a/src/FastTrack-Cli.pro +++ b/src/FastTrack-Cli.pro @@ -1,7 +1,7 @@ greaterThan(QT_MAJOR_VERSION, 5): QT += widgets core gui sql TEMPLATE = app -VERSION = 6.2.2 +include("../FastTrack.pri") DEFINES += APP_VERSION=\\\"$$VERSION\\\" QTPLUGIN += QSQLITE diff --git a/src/FastTrack.pro b/src/FastTrack.pro index dd1a8ce..088a350 100644 --- a/src/FastTrack.pro +++ b/src/FastTrack.pro @@ -5,7 +5,7 @@ NO_WEB { } TEMPLATE = app -VERSION = 6.2.2 +include("../FastTrack.pri") DEFINES += APP_VERSION=\\\"$$VERSION\\\" QTPLUGIN += QSQLITE diff --git a/src/interactive.cpp b/src/interactive.cpp index 4ac6509..6b761e2 100644 --- a/src/interactive.cpp +++ b/src/interactive.cpp @@ -366,7 +366,7 @@ Interactive::Interactive(QWidget *parent) : QMainWindow(parent), }); connect(ui->actionAbout, &QAction::triggered, this, []() { QMessageBox aboutBox; - aboutBox.setText(QStringLiteral("FastTrack is a desktop tracking software, easy to install, easy to use, and performant.
Created and maintained by Benjamin Gallois.
Distributed under the terms of the GPL3.0 license.
")); + aboutBox.setText(QStringLiteral("FastTrack version %1 is a desktop tracking software, easy to install, easy to use, and performant.
Created and maintained by Benjamin Gallois.
Distributed under the terms of the GPL3.0 license.
").arg(qApp->applicationVersion())); aboutBox.exec(); }); connect(ui->actionAboutQt, &QAction::triggered, qApp, &QApplication::aboutQt);