Skip to content

Commit

Permalink
Adjusted versioning scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbui78 committed Jun 23, 2023
1 parent 13a3405 commit 9657fc1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DzBridgeDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ DzBridgeDialog::DzBridgeDialog(QWidget *parent, const QString &windowTitle) :
int revision = COMMON_REV % 1000;
QString workingTitle;
if (windowTitle != "")
workingTitle = windowTitle + QString(tr(" v%1.%2 Build %3.%4")).arg(COMMON_MAJOR).arg(COMMON_MINOR).arg(revision).arg(COMMON_BUILD);
workingTitle = windowTitle + QString(tr(" %1 v%2.%3.%4")).arg(COMMON_MAJOR).arg(COMMON_MINOR).arg(revision).arg(COMMON_BUILD);
else
workingTitle = QString(tr("DazBridge v%1.%2 Build %3.%4").arg(COMMON_MAJOR).arg(COMMON_MINOR).arg(revision).arg(COMMON_BUILD));
workingTitle = QString(tr("DazBridge %1 v%2.%3.%4").arg(COMMON_MAJOR).arg(COMMON_MINOR).arg(revision).arg(COMMON_BUILD));
setWindowTitle(workingTitle);
layout()->setSizeConstraint(QLayout::SetFixedSize);
mainLayout = new QFormLayout();
Expand Down Expand Up @@ -206,7 +206,7 @@ To find out more about Daz Bridges, go to <a href=\"https://www.daz3d.com/daz-br
m_wTargetPluginInstaller->setLayout(targetPluginInstallerLayout);

// Bridge Software Version Label
QString sBridgeVersionString = QString(tr("Daz Bridge Library v%1.%2 revision %3.%4")).arg(COMMON_MAJOR).arg(COMMON_MINOR).arg(revision).arg(COMMON_BUILD);
QString sBridgeVersionString = QString(tr("Daz Bridge Library %1 v%2.%3.%4")).arg(COMMON_MAJOR).arg(COMMON_MINOR).arg(revision).arg(COMMON_BUILD);
m_BridgeVersionLabel = new QLabel(sBridgeVersionString);

// Go To Intermediate Folder
Expand Down

0 comments on commit 9657fc1

Please sign in to comment.