1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-23 12:57:45 +00:00

Fix component name, causing state config never being read

This commit is contained in:
Joshua Goins 2023-07-30 10:11:24 -04:00
parent 1261abe88c
commit 682d6b8aa6

View file

@ -21,7 +21,6 @@ int main(int argc, char *argv[])
} }
KLocalizedString::setApplicationDomain("astra"); KLocalizedString::setApplicationDomain("astra");
QCoreApplication::setOrganizationDomain("xiv.zone");
KAboutData about(QStringLiteral("astra"), i18n("Astra"), "0.5.0", i18n("FFXIV Launcher"), KAboutLicense::GPL_V3, i18n("© 2023 Joshua Goins")); KAboutData about(QStringLiteral("astra"), i18n("Astra"), "0.5.0", i18n("FFXIV Launcher"), KAboutLicense::GPL_V3, i18n("© 2023 Joshua Goins"));
about.addAuthor(i18n("Joshua Goins"), i18n("Maintainer"), QStringLiteral("josh@redstrate.com")); about.addAuthor(i18n("Joshua Goins"), i18n("Maintainer"), QStringLiteral("josh@redstrate.com"));
@ -29,7 +28,8 @@ int main(int argc, char *argv[])
about.addComponent("physis"); about.addComponent("physis");
about.setDesktopFileName("com.redstrate.astra"); about.setDesktopFileName("com.redstrate.astra");
about.setBugAddress("https://lists.sr.ht/~redstrate/public-inbox"); about.setBugAddress("https://lists.sr.ht/~redstrate/public-inbox");
about.setComponentName("com.redstrate.astra"); about.setComponentName("astra");
about.setProgramLogo("com.redstrate.astra");
KAboutData::setApplicationData(about); KAboutData::setApplicationData(about);