fix: use semver format for build tag

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2022-06-17 22:03:15 +02:00
parent 881a5603dc
commit 89a30a47c5
No known key found for this signature in database
GPG Key ID: C10411294912A422

View File

@ -115,7 +115,7 @@ QString Config::printableVersionString() const
// if a build number is set, also add it to the end // if a build number is set, also add it to the end
if(VERSION_BUILD >= 0) if(VERSION_BUILD >= 0)
{ {
vstr += "-" + QString::number(VERSION_BUILD); vstr += "+build." + QString::number(VERSION_BUILD);
} }
return vstr; return vstr;
} }