VersionNumber parsing

This commit is contained in:
Nav
2021-10-19 23:00:54 +01:00
parent 10b80e24ba
commit 8433a87fbf
9 changed files with 116 additions and 16 deletions

View File

@@ -37,6 +37,6 @@ AboutWindow::AboutWindow(QWidget* parent): QObject(parent) {
auto versionLabel = this->windowWidget->findChild<QLabel*>("version-label");
if (versionLabel != nullptr) {
versionLabel->setText("Bloom v" + QString::fromStdString(Application::VERSION_STR));
versionLabel->setText("Bloom v" + QString::fromStdString(Application::VERSION.toString()));
}
}