2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-10-09 02:41:24 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
#include "AboutDialog.h"
|
|
|
|
#include "ui_AboutDialog.h"
|
|
|
|
#include <QIcon>
|
2021-11-20 20:52:22 +05:30
|
|
|
#include "Application.h"
|
2014-04-06 07:29:37 +05:30
|
|
|
#include "BuildConfig.h"
|
2013-10-09 02:15:48 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include <net/NetJob.h>
|
2014-05-01 23:13:55 +05:30
|
|
|
|
2017-05-06 21:57:47 +05:30
|
|
|
#include "HoeDown.h"
|
|
|
|
|
2019-10-01 03:20:32 +05:30
|
|
|
namespace {
|
2014-05-01 23:13:55 +05:30
|
|
|
// Credits
|
|
|
|
// This is a hack, but I can't think of a better way to do this easily without screwing with QTextDocument...
|
2022-01-10 00:21:46 +05:30
|
|
|
QString getCreditsHtml()
|
2014-05-01 23:13:55 +05:30
|
|
|
{
|
2019-10-01 03:20:32 +05:30
|
|
|
QString output;
|
|
|
|
QTextStream stream(&output);
|
2021-10-18 04:17:02 +05:30
|
|
|
stream.setCodec(QTextCodec::codecForName("UTF-8"));
|
2019-10-01 03:20:32 +05:30
|
|
|
stream << "<center>\n";
|
|
|
|
// TODO: possibly retrieve from git history at build time?
|
2022-01-28 05:36:07 +05:30
|
|
|
stream << "<h3>" << QObject::tr("MultiMC Developers", "About Credits") << "</h3>\n";
|
2019-10-01 03:20:32 +05:30
|
|
|
stream << "<p>Andrew Okin <<a href='mailto:forkk@forkk.net'>forkk@forkk.net</a>></p>\n";
|
|
|
|
stream << "<p>Petr Mrázek <<a href='mailto:peterix@gmail.com'>peterix@gmail.com</a>></p>\n";
|
|
|
|
stream << "<p>Sky Welch <<a href='mailto:multimc@bunnies.io'>multimc@bunnies.io</a>></p>\n";
|
|
|
|
stream << "<p>Jan (02JanDal) <<a href='mailto:02jandal@gmail.com'>02jandal@gmail.com</a>></p>\n";
|
|
|
|
stream << "<p>RoboSky <<a href='https://twitter.com/RoboSky_'>@RoboSky_</a>></p>\n";
|
|
|
|
stream << "<br />\n";
|
|
|
|
|
|
|
|
stream << "<h3>" << QObject::tr("With thanks to", "About Credits") << "</h3>\n";
|
|
|
|
stream << "<p>Orochimarufan <<a href='mailto:orochimarufan.x3@gmail.com'>orochimarufan.x3@gmail.com</a>></p>\n";
|
|
|
|
stream << "<p>TakSuyu <<a href='mailto:taksuyu@gmail.com'>taksuyu@gmail.com</a>></p>\n";
|
|
|
|
stream << "<p>Kilobyte <<a href='mailto:stiepen22@gmx.de'>stiepen22@gmx.de</a>></p>\n";
|
|
|
|
stream << "<p>Rootbear75 <<a href='https://twitter.com/rootbear75'>@rootbear75</a>></p>\n";
|
2020-03-29 06:42:57 +05:30
|
|
|
stream << "<p>Zeker Zhayard <<a href='https://twitter.com/zeker_zhayard'>@Zeker_Zhayard</a>></p>\n";
|
2019-10-01 03:20:32 +05:30
|
|
|
stream << "<br />\n";
|
|
|
|
|
|
|
|
stream << "</center>\n";
|
|
|
|
return output;
|
2014-05-01 23:13:55 +05:30
|
|
|
}
|
|
|
|
|
2019-10-01 03:20:32 +05:30
|
|
|
QString getLicenseHtml()
|
2017-05-06 21:57:47 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
HoeDown hoedown;
|
|
|
|
QFile dataFile(":/documents/COPYING.md");
|
|
|
|
dataFile.open(QIODevice::ReadOnly);
|
|
|
|
QString output = hoedown.process(dataFile.readAll());
|
|
|
|
return output;
|
2017-05-06 21:57:47 +05:30
|
|
|
}
|
|
|
|
|
2019-10-01 03:20:32 +05:30
|
|
|
}
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDialog)
|
2013-10-09 05:33:02 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
ui->setupUi(this);
|
2013-10-09 02:15:48 +05:30
|
|
|
|
2021-10-18 04:17:02 +05:30
|
|
|
QString launcherName = BuildConfig.LAUNCHER_NAME;
|
|
|
|
|
|
|
|
setWindowTitle(tr("About %1").arg(launcherName));
|
|
|
|
|
2022-01-10 00:21:46 +05:30
|
|
|
QString chtml = getCreditsHtml();
|
2018-07-15 18:21:05 +05:30
|
|
|
ui->creditsText->setHtml(chtml);
|
2014-05-01 23:13:55 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QString lhtml = getLicenseHtml();
|
|
|
|
ui->licenseText->setHtml(lhtml);
|
2017-05-06 21:57:47 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
ui->urlLabel->setOpenExternalLinks(true);
|
2014-01-09 11:08:34 +05:30
|
|
|
|
2021-11-20 20:52:22 +05:30
|
|
|
ui->icon->setPixmap(APPLICATION->getThemedIcon("logo").pixmap(64));
|
2021-10-18 04:17:02 +05:30
|
|
|
ui->title->setText(launcherName);
|
2014-01-08 06:01:31 +05:30
|
|
|
|
2022-01-28 05:36:07 +05:30
|
|
|
ui->versionLabel->setText(BuildConfig.printableVersionString());
|
|
|
|
|
|
|
|
if (!BuildConfig.BUILD_PLATFORM.isEmpty())
|
|
|
|
ui->platformLabel->setText(tr("Platform") +": " + BuildConfig.BUILD_PLATFORM);
|
|
|
|
else
|
|
|
|
ui->platformLabel->setVisible(false);
|
2014-01-08 06:01:31 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if (BuildConfig.VERSION_BUILD >= 0)
|
|
|
|
ui->buildNumLabel->setText(tr("Build Number") +": " + QString::number(BuildConfig.VERSION_BUILD));
|
|
|
|
else
|
|
|
|
ui->buildNumLabel->setVisible(false);
|
2014-01-08 06:01:31 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if (!BuildConfig.VERSION_CHANNEL.isEmpty())
|
|
|
|
ui->channelLabel->setText(tr("Channel") +": " + BuildConfig.VERSION_CHANNEL);
|
|
|
|
else
|
|
|
|
ui->channelLabel->setVisible(false);
|
2014-01-08 06:01:31 +05:30
|
|
|
|
2021-10-21 02:36:21 +05:30
|
|
|
QString urlText("<html><head/><body><p><a href=\"%1\">%1</a></p></body></html>");
|
|
|
|
ui->urlLabel->setText(urlText.arg(BuildConfig.LAUNCHER_GIT));
|
|
|
|
|
2022-01-16 22:32:53 +05:30
|
|
|
QString copyText("© 2021-2022 %1");
|
2021-10-21 02:36:21 +05:30
|
|
|
ui->copyLabel->setText(copyText.arg(BuildConfig.LAUNCHER_COPYRIGHT));
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
connect(ui->closeButton, SIGNAL(clicked()), SLOT(close()));
|
2013-10-09 02:15:48 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
connect(ui->aboutQt, &QPushButton::clicked, &QApplication::aboutQt);
|
2013-11-04 07:23:05 +05:30
|
|
|
}
|
2013-10-12 18:49:49 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
AboutDialog::~AboutDialog()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
delete ui;
|
2013-11-04 07:23:05 +05:30
|
|
|
}
|