/* SleepyHead AboutDialog Implementation * * Date created: 7/5/2018 * * Copyright (c) 2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the Source Directory. */ #include #include #include "version.h" #include "SleepLib/appsettings.h" #include "aboutdialog.h" #include "ui_aboutdialog.h" AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDialog) { ui->setupUi(this); ui->licenseText->setHtml(getLicense()); ui->relnotesText->setHtml(getRelnotes()); ui->versionLabel->setText(VersionString); // QString gitrev = gitRevision(); // // if (!gitrev.isEmpty()) { // gitrev = tr("Revision: %1").arg(QString("%1").arg(gitrev))+"
" // +tr("Branch: %1").arg(QString("%1").arg(gitBranch()))+"
" // +tr("Build Date: %1").arg(__DATE__)+"
" // +tr("Graphics Engine: %1").arg(getGraphicsEngine()); // } QString path = GetAppRoot(); QString text = /* gitrev + */ "

"+tr("Show data folder")+""; ui->infoLabel->setText(text); setWindowTitle(tr("About OSCR")); setMinimumSize(QSize(400,400)); connect(ui->closeButton, SIGNAL(clicked(bool)), this, SLOT(accept())); int idx=AppSetting->showAboutDialog(); if (idx<0) idx = 0; // start in about tab ui->tabWidget->setCurrentIndex(idx); } AboutDialog::~AboutDialog() { disconnect(ui->closeButton, SIGNAL(clicked(bool)), this, SLOT(accept())); delete ui; } void AboutDialog::on_donateButton_clicked() { // QDesktopServices::openUrl(QUrl("http://sleepyhead.jedimark.net/donate.php")); QMessageBox(tr("Not yet implemented")); } QString AboutDialog::getRelnotes() { QFile clfile(":/docs/release_notes.html"); QString changeLog = tr("Sorry, could not locate changelog."); if (clfile.open(QIODevice::ReadOnly)) { //Todo, write XML parser and only show the latest.. //QTextStream ts(&clfile); changeLog = clfile.readAll(); } QString text = "" "" ""+tr("Release Notes")+"
" ""+tr("OSCR v%1").arg(VersionString)+"" "
"; if (ReleaseStatus != "r") { text += "

"+tr("Important:")+" " ""+tr("As this is a pre-release version, it is recommended that you back up your data folder manually before proceding, because attempting to roll back later may break things.")+"


"; } text += changeLog; text += ""; return text; } QString AboutDialog::getLicense() { QString text; QString licenseFile = ":/docs/GPLv3-"+AppSetting->language(); if (!QFile::exists(licenseFile)) { ui->licenceLabel->setText(tr("To see if the license text is available in your language, see %1.").arg("https://www.gnu.org/licenses/translations.en.html")); ui->licenceLabel->setVisible(true); licenseFile = ":/docs/GPLv3-en_US"; } else { ui->licenceLabel->setVisible(false); } QFile file(licenseFile); if (file.open(QIODevice::ReadOnly)) { text = "
"+QString(file.readAll()).replace("\n","
")+"
"; } return text; }