diff options
author | Joshua Goins <josh@redstrate.com> | 2022-01-31 09:09:58 -0500 |
---|---|---|
committer | Joshua Goins <josh@redstrate.com> | 2022-01-31 09:09:58 -0500 |
commit | 0211ee3ef10ca169354ac939761f0128e16ff026 (patch) | |
tree | 82b7ecc29fc6aae79ebbb1c9fe6678c510b65346 | |
parent | c1aaf89baa6166707d7d489fe8ec1bcad1155df1 (diff) | |
download | PrismLauncher-0211ee3ef10ca169354ac939761f0128e16ff026.tar.gz PrismLauncher-0211ee3ef10ca169354ac939761f0128e16ff026.tar.bz2 PrismLauncher-0211ee3ef10ca169354ac939761f0128e16ff026.zip |
Add "PolyMC Contributors" to Credits section
This also adds a link to the PolyMC Contributors page on Github.
-rw-r--r-- | launcher/ui/dialogs/AboutDialog.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/launcher/ui/dialogs/AboutDialog.cpp b/launcher/ui/dialogs/AboutDialog.cpp index bba3f78b..ef96cc23 100644 --- a/launcher/ui/dialogs/AboutDialog.cpp +++ b/launcher/ui/dialogs/AboutDialog.cpp @@ -32,6 +32,12 @@ QString getCreditsHtml() QTextStream stream(&output); stream.setCodec(QTextCodec::codecForName("UTF-8")); stream << "<center>\n"; + + stream << "<h3>" << QObject::tr("PolyMC Developers", "About Credits") << "</h3>\n"; + stream << "<p>swirl <<a href='mailto:swurl@swurl.xyz'>swurl@swurl.xyz </a>></p>\n"; + stream << "<p>LennyMcLennington <<a href='mailto:lenny@sneed.church'>lenny@sneed.church</a>></p>\n"; + stream << "<br />\n"; + // TODO: possibly retrieve from git history at build time? stream << "<h3>" << QObject::tr("MultiMC Developers", "About Credits") << "</h3>\n"; stream << "<p>Andrew Okin <<a href='mailto:forkk@forkk.net'>forkk@forkk.net</a>></p>\n"; @@ -47,6 +53,7 @@ QString getCreditsHtml() stream << "<p>Kilobyte <<a href='mailto:stiepen22@gmx.de'>stiepen22@gmx.de</a>></p>\n"; stream << "<p>Rootbear75 <<a href='https://twitter.com/rootbear75'>@rootbear75</a>></p>\n"; stream << "<p>Zeker Zhayard <<a href='https://twitter.com/zeker_zhayard'>@Zeker_Zhayard</a>></p>\n"; + stream << "<p>Everyone else who <a href='https://github.com/PolyMC/PolyMC/graphs/contributors'>contributed</a>!</p>\n"; stream << "<br />\n"; stream << "</center>\n"; |