From d9b46289a1b9eec5bda19bd168750afba23a9ca4 Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Wed, 20 Oct 2021 23:06:21 +0200 Subject: NOISSUE finish up the obvious parts of debranding This is not absolutely complete, but reasonably so --- launcher/dialogs/AboutDialog.cpp | 6 ++++ launcher/dialogs/AboutDialog.ui | 69 ++++++++++++++++++++++------------------ 2 files changed, 44 insertions(+), 31 deletions(-) (limited to 'launcher/dialogs') diff --git a/launcher/dialogs/AboutDialog.cpp b/launcher/dialogs/AboutDialog.cpp index a4d30c3c..0c3f07db 100644 --- a/launcher/dialogs/AboutDialog.cpp +++ b/launcher/dialogs/AboutDialog.cpp @@ -113,6 +113,12 @@ AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDia "However, it should be abundantly clear that the project is a fork without implying that you have our blessing.

" )); + QString urlText("

%1

"); + ui->urlLabel->setText(urlText.arg(BuildConfig.LAUNCHER_GIT)); + + QString copyText("© 2012-2021 %1"); + ui->copyLabel->setText(copyText.arg(BuildConfig.LAUNCHER_COPYRIGHT)); + connect(ui->closeButton, SIGNAL(clicked()), SLOT(close())); connect(ui->aboutQt, &QPushButton::clicked, &QApplication::aboutQt); diff --git a/launcher/dialogs/AboutDialog.ui b/launcher/dialogs/AboutDialog.ui index 6dcc6ff4..422e877b 100644 --- a/launcher/dialogs/AboutDialog.ui +++ b/launcher/dialogs/AboutDialog.ui @@ -98,19 +98,30 @@ - + + + true + - Version: + <html><head/><body><p>A custom launcher that makes managing Minecraft easier by allowing you to have multiple instances of Minecraft at once.</p></body></html> Qt::AlignCenter + + true + - + + + + 10 + + - Platform: + GIT URL Qt::AlignCenter @@ -118,9 +129,15 @@ - + + + + 8 + true + + - Build Number: + COPYRIGHT Qt::AlignCenter @@ -128,9 +145,16 @@ - + + + Qt::Horizontal + + + + + - Channel: + Version: Qt::AlignCenter @@ -138,31 +162,19 @@ - - - true - + - <html><head/><body><p>MultiMC is a custom launcher that makes managing Minecraft easier by allowing you to have multiple instances of Minecraft at once.</p></body></html> + Platform: Qt::AlignCenter - - true - - - - - 8 - true - - + - © 2012-2021 MultiMC Contributors + Build Number: Qt::AlignCenter @@ -170,14 +182,9 @@ - - - - 10 - - + - <html><head/><body><p><a href="https://github.com/MultiMC/MultiMC5">https://github.com/MultiMC/MultiMC5</a></p></body></html> + Channel: Qt::AlignCenter -- cgit