We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8352953 commit 3a3c5d2Copy full SHA for 3a3c5d2
CMakeLists.txt
@@ -1,6 +1,6 @@
1
cmake_minimum_required(VERSION 3.5)
2
3
-project(DataLogger VERSION 1.0.0 LANGUAGES CXX)
+project(DataLogger VERSION 2.0.0 LANGUAGES CXX)
4
5
set(CMAKE_INCLUDE_CURRENT_DIR ON)
6
widgets/aboutwidget.cpp
@@ -9,7 +9,7 @@ AboutWidget::AboutWidget(QWidget *parent) :
9
QPixmap logo(":/images/datalogger.png");
10
ui->logo->setPixmap(logo.scaledToHeight(100, Qt::SmoothTransformation));
11
12
- ui->version->setText(tr("v1.0.0"));
+ ui->version->setText(tr("v2.0.0"));
13
14
auto datetime = QStringLiteral(__DATE__) + QStringLiteral(" ") + QStringLiteral(__TIME__);
15
ui->builtWith->setText(tr("Built with Qt v%1 on %2").arg(QT_VERSION_STR, datetime));
0 commit comments