updated version info to new hexa format

This commit is contained in:
csoler 2015-08-02 19:10:59 +02:00
parent 2b8eafa1db
commit 9e978e1442
3 changed files with 14 additions and 14 deletions

View file

@ -178,7 +178,7 @@ QString Rshare::retroshareVersion(bool withRevision)
{
QString version = QString("%1.%2.%3%4").arg(RS_MAJOR_VERSION).arg(RS_MINOR_VERSION).arg(RS_BUILD_NUMBER).arg(RS_BUILD_NUMBER_ADD);
if (withRevision) {
version += QString(" %1 %2").arg(tr("Revision")).arg(RS_REVISION_NUMBER);
version += QString(" %1 %2").arg(tr("Revision")).arg(QString::number(RS_REVISION_NUMBER,16));
}
return version;