diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-02 12:08:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 12:08:34 +0200 |
commit | 92b2f463e3a150169f30b7fda223bbeb7b22ada2 (patch) | |
tree | 3485025cdc5c1fd0739e3bfcadd84412a9c49923 | |
parent | 9137721e8e5b44f2338a36874a393435cbc6daa3 (diff) | |
parent | 16e6a01881815e7cc1db4a8d9746f1eaa5daaa15 (diff) | |
download | PrismLauncher-92b2f463e3a150169f30b7fda223bbeb7b22ada2.tar.gz PrismLauncher-92b2f463e3a150169f30b7fda223bbeb7b22ada2.tar.bz2 PrismLauncher-92b2f463e3a150169f30b7fda223bbeb7b22ada2.zip |
Merge pull request #1474 from apix0n/develop
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | launcher/ui/dialogs/AboutDialog.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 41634f68..af49f665 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -342,7 +342,7 @@ if(UNIX AND APPLE) set(MACOSX_BUNDLE_SHORT_VERSION_STRING "${Launcher_VERSION_NAME}") set(MACOSX_BUNDLE_LONG_VERSION_STRING "${Launcher_VERSION_NAME}") set(MACOSX_BUNDLE_ICON_FILE ${Launcher_Name}.icns) - set(MACOSX_BUNDLE_COPYRIGHT "© 2022 ${Launcher_Copyright_Mac}") + set(MACOSX_BUNDLE_COPYRIGHT "© 2022-2023 ${Launcher_Copyright_Mac}") set(MACOSX_SPARKLE_UPDATE_PUBLIC_KEY "v55ZWWD6QlPoXGV6VLzOTZxZUggWeE51X8cRQyQh6vA=") set(MACOSX_SPARKLE_UPDATE_FEED_URL "https://prismlauncher.org/feed/appcast.xml") diff --git a/launcher/ui/dialogs/AboutDialog.cpp b/launcher/ui/dialogs/AboutDialog.cpp index 88739463..b1734eff 100644 --- a/launcher/ui/dialogs/AboutDialog.cpp +++ b/launcher/ui/dialogs/AboutDialog.cpp @@ -170,7 +170,7 @@ AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDia QString urlText("<html><head/><body><p><a href=\"%1\">%1</a></p></body></html>"); ui->urlLabel->setText(urlText.arg(BuildConfig.LAUNCHER_GIT)); - QString copyText("© 2022 %1"); + QString copyText("© 2022-2023 %1"); ui->copyLabel->setText(copyText.arg(BuildConfig.LAUNCHER_COPYRIGHT)); connect(ui->closeButton, SIGNAL(clicked()), SLOT(close())); |