Skip to content

Commit

Permalink
[rel] release 6.2.3
Browse files Browse the repository at this point in the history
Hotfix release.
  • Loading branch information
bgallois committed Feb 24, 2022
1 parent 49b974a commit 4e23377
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions FastTrack.pri
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION = 6.2.3
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/FastTrack-Cli.pro
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/FastTrack.pro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ NO_WEB {
}

TEMPLATE = app
VERSION = 6.2.2
include("../FastTrack.pri")
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
QTPLUGIN += QSQLITE

Expand Down
2 changes: 1 addition & 1 deletion src/interactive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.<br>Created and maintained by Benjamin Gallois.<br>Distributed under the terms of the <a href='https://www.gnu.org/licenses/gpl-3.0'>GPL3.0 license</a>.<br>"));
aboutBox.setText(QStringLiteral("FastTrack version %1 is a desktop tracking software, easy to install, easy to use, and performant.<br>Created and maintained by Benjamin Gallois.<br>Distributed under the terms of the <a href='https://www.gnu.org/licenses/gpl-3.0'>GPL3.0 license</a>.<br>").arg(qApp->applicationVersion()));
aboutBox.exec();
});
connect(ui->actionAboutQt, &QAction::triggered, qApp, &QApplication::aboutQt);
Expand Down

0 comments on commit 4e23377

Please sign in to comment.