From b0826ee522a13e41637c402c36e9d2d64e8c01fe Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 16 Sep 2023 18:17:42 -0400 Subject: [PATCH] Add my avatar to the about page KF6 supports adding avatars to the about page! --- launcher/src/main.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/launcher/src/main.cpp b/launcher/src/main.cpp index 6a29dba..35d5263 100755 --- a/launcher/src/main.cpp +++ b/launcher/src/main.cpp @@ -20,6 +20,7 @@ int main(int argc, char *argv[]) QtWebView::initialize(); QApplication app(argc, argv); + // Default to org.kde.desktop style unless the user forces another style if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) { QQuickStyle::setStyle(QStringLiteral("org.kde.desktop")); @@ -33,7 +34,11 @@ int main(int argc, char *argv[]) i18n("FFXIV Launcher"), KAboutLicense::GPL_V3, i18n("© 2023 Joshua Goins")); - about.addAuthor(i18n("Joshua Goins"), i18n("Maintainer"), QStringLiteral("josh@redstrate.com"), QStringLiteral("https://redstrate.com/")); + about.addAuthor(i18n("Joshua Goins"), + i18n("Maintainer"), + QStringLiteral("josh@redstrate.com"), + QStringLiteral("https://redstrate.com/"), + QUrl("https://redstrate.com/rss-image.png")); about.setHomepage("https://xiv.zone/astra"); about.addComponent("physis", "Library to access FFXIV data", physis_get_physis_version(), "https://xiv.zone/physis", KAboutLicense::GPL_V3); about.addComponent("libphysis", "C bindings for physis", physis_get_libphysis_version(), "", KAboutLicense::GPL_V3);