mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-20 11:47:46 +00:00
Add my avatar to the about page
KF6 supports adding avatars to the about page!
This commit is contained in:
parent
63d1c98b90
commit
b0826ee522
1 changed files with 6 additions and 1 deletions
|
@ -20,6 +20,7 @@ int main(int argc, char *argv[])
|
||||||
QtWebView::initialize();
|
QtWebView::initialize();
|
||||||
|
|
||||||
QApplication app(argc, argv);
|
QApplication app(argc, argv);
|
||||||
|
|
||||||
// Default to org.kde.desktop style unless the user forces another style
|
// Default to org.kde.desktop style unless the user forces another style
|
||||||
if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) {
|
if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) {
|
||||||
QQuickStyle::setStyle(QStringLiteral("org.kde.desktop"));
|
QQuickStyle::setStyle(QStringLiteral("org.kde.desktop"));
|
||||||
|
@ -33,7 +34,11 @@ int main(int argc, char *argv[])
|
||||||
i18n("FFXIV Launcher"),
|
i18n("FFXIV Launcher"),
|
||||||
KAboutLicense::GPL_V3,
|
KAboutLicense::GPL_V3,
|
||||||
i18n("© 2023 Joshua Goins"));
|
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.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("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);
|
about.addComponent("libphysis", "C bindings for physis", physis_get_libphysis_version(), "", KAboutLicense::GPL_V3);
|
||||||
|
|
Loading…
Add table
Reference in a new issue