mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Clean up version.h interface and reduce duplcate code.
Only minor cosmetic changes in how the version is displayed in certain places.
This commit is contained in:
parent
6f194507a8
commit
fb32e16c96
@ -80,36 +80,14 @@ const QString getDeveloperDomain()
|
||||
const QString getAppName()
|
||||
{
|
||||
QString name = STR_AppName;
|
||||
|
||||
// Append branch if there is a branch specified
|
||||
if (gitBranch() != "master") {
|
||||
name += "-"+gitBranch();
|
||||
// qDebug() << "getAppName, not master, name is" << name << "branch is" << gitBranch();
|
||||
}
|
||||
|
||||
// Append "-test" if not release
|
||||
else if (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) ||
|
||||
(ReleaseStatus.compare("rc", Qt::CaseInsensitive)==0) )) {
|
||||
name += "-test";
|
||||
// qDebug() << "getAppName, not release, name is" << name << "release type is" << ReleaseStatus;
|
||||
}
|
||||
|
||||
name += getPrereleaseSuffix();
|
||||
return name;
|
||||
}
|
||||
|
||||
const QString getModifiedAppData()
|
||||
{
|
||||
QString appdata = STR_AppData;
|
||||
|
||||
// Append branch if there is a branch specified
|
||||
if (gitBranch() != "master")
|
||||
appdata += "-"+gitBranch();
|
||||
|
||||
// Append "-test" if not release
|
||||
else if (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) ||
|
||||
(ReleaseStatus.compare("rc", Qt::CaseInsensitive)==0) )) {
|
||||
appdata += "-test";
|
||||
}
|
||||
appdata += getPrereleaseSuffix();
|
||||
return appdata;
|
||||
}
|
||||
|
||||
|
@ -125,7 +125,7 @@ QString AboutDialog::getRelnotes()
|
||||
"<body><span style=\" font-size:20pt;\">"+tr("Release Notes")+"</span><br/>"
|
||||
"<span style=\" font-size:14pt;\">"+tr("OSCAR v%1").arg(VersionString)+"</span>"
|
||||
"<hr/>";
|
||||
if (ReleaseStatus != "r") {
|
||||
if (isReleaseVersion() == false) {
|
||||
text += "<p><font color='red' size=+1><b>"+tr("Important:")+"</b></font> "
|
||||
"<font size=+1><i>"+tr("As this is a pre-release version, it is recommended that you <b>back up your data folder manually</b> before proceeding, because attempting to roll back later may break things.")+"</i></font></p><hr/>";
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Create New Profile Implementation
|
||||
/* Create New Profile Implementation
|
||||
*
|
||||
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||
*
|
||||
@ -91,7 +91,7 @@ NewProfile::NewProfile(QWidget *parent, const QString *user) :
|
||||
|
||||
f.close();
|
||||
}
|
||||
ui->releaseStatus->setText("v" + VersionString);
|
||||
ui->versionLabel->setText(VersionString);
|
||||
|
||||
ui->textBrowser->setHtml(getIntroHTML());
|
||||
}
|
||||
|
@ -882,7 +882,7 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="releaseStatus">
|
||||
<widget class="QLabel" name="versionLabel">
|
||||
<property name="font">
|
||||
<font>
|
||||
<italic>true</italic>
|
||||
|
@ -558,7 +558,7 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
|
||||
if (first) {
|
||||
QDateTime timestamp = QDateTime::currentDateTime();
|
||||
QString footer = QObject::tr("%1 OSCAR v%2").arg(timestamp.toString(MedDateFormat+" hh:mm"))
|
||||
.arg(ReleaseStatus == "r" ? ShortVersionString : VersionString+" (" + gitRevision() + ")");
|
||||
.arg(VersionString+" (" + gitRevision() + ")");
|
||||
|
||||
|
||||
QRectF bounds = painter.boundingRect(QRectF(0, virt_height, virt_width, normal_height), footer,
|
||||
|
@ -719,7 +719,7 @@ QString Statistics::generateFooter(bool showinfo)
|
||||
html += "<hr><div align=center><font size='-1'><i>";
|
||||
QDateTime timestamp = QDateTime::currentDateTime();
|
||||
html += tr("This report was prepared on %1 by OSCAR v%2").arg(timestamp.toString(MedDateFormat + " hh:mm"))
|
||||
.arg(ReleaseStatus == "r" ? ShortVersionString : VersionString + " (" + gitRevision() + ")")
|
||||
.arg(VersionString + " (" + gitRevision() + ")")
|
||||
+ "<br/>"
|
||||
+ tr("OSCAR is free open-source CPAP report software");
|
||||
html += "</i></font></div>";
|
||||
|
@ -60,6 +60,25 @@ QString getBranchVersion()
|
||||
}
|
||||
|
||||
|
||||
QString getPrereleaseSuffix()
|
||||
{
|
||||
QString suffix;
|
||||
|
||||
// Append branch if there is a branch specified
|
||||
if (gitBranch() != "master") {
|
||||
suffix += "-"+gitBranch();
|
||||
}
|
||||
|
||||
// Append "-test" if not release
|
||||
else if (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) ||
|
||||
(ReleaseStatus.compare("rc", Qt::CaseInsensitive)==0) )) {
|
||||
suffix += "-test";
|
||||
}
|
||||
|
||||
return suffix;
|
||||
}
|
||||
|
||||
|
||||
int checkVersionStatus(QString statusstr)
|
||||
{
|
||||
bool ok;
|
||||
@ -201,3 +220,7 @@ int compareVersion(const QString & version)
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool isReleaseVersion()
|
||||
{
|
||||
return (ReleaseStatus == "r");
|
||||
}
|
||||
|
@ -12,21 +12,15 @@
|
||||
|
||||
#include <QString>
|
||||
|
||||
extern const int major_version;
|
||||
extern const int minor_version;
|
||||
extern const int revision_number;
|
||||
extern const QString ReleaseStatus;
|
||||
extern const int build_number;
|
||||
|
||||
extern const QString VersionString;
|
||||
extern const QString ShortVersionString;
|
||||
|
||||
extern const QString PlatformString;
|
||||
|
||||
int compareVersion(const QString & version);
|
||||
|
||||
QString getBranchVersion();
|
||||
QString getPrereleaseSuffix();
|
||||
const QString & gitRevision();
|
||||
const QString & gitBranch();
|
||||
|
||||
bool isReleaseVersion();
|
||||
|
||||
#endif // VERSION_H
|
||||
|
Loading…
Reference in New Issue
Block a user