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

Set bug address and component name in KAboutData

This commit is contained in:
Joshua Goins 2023-07-30 09:51:34 -04:00
parent e5a0009cf4
commit 79cd117482

View file

@ -27,7 +27,9 @@ int main(int argc, char *argv[])
about.addAuthor(i18n("Joshua Goins"), i18n("Maintainer"), QStringLiteral("josh@redstrate.com")); about.addAuthor(i18n("Joshua Goins"), i18n("Maintainer"), QStringLiteral("josh@redstrate.com"));
about.setHomepage("https://xiv.zone/astra"); about.setHomepage("https://xiv.zone/astra");
about.addComponent("physis"); about.addComponent("physis");
about.setDesktopFileName("com.redstrate.astra.desktop"); // TODO: temporary about.setDesktopFileName("com.redstrate.astra");
about.setBugAddress("https://lists.sr.ht/~redstrate/public-inbox");
about.setComponentName("com.redstrate.astra");
KAboutData::setApplicationData(about); KAboutData::setApplicationData(about);