Add check for new version

This commit is contained in:
2024-09-19 13:39:07 +02:00
parent 12901c9a47
commit 553e72a5ce
4 changed files with 50 additions and 0 deletions
+7
View File
@@ -46,3 +46,10 @@ HelpDialog::HelpDialog(QWidget *parent) : QDialog(parent)
layout->addWidget(helpText);
}
QString getVersion()
{
QString version = GITVERSION;
version.truncate(8);
return version;
}