aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Goins <josh@redstrate.com>2022-01-31 09:09:58 -0500
committerJoshua Goins <josh@redstrate.com>2022-01-31 09:09:58 -0500
commit0211ee3ef10ca169354ac939761f0128e16ff026 (patch)
tree82b7ecc29fc6aae79ebbb1c9fe6678c510b65346
parentc1aaf89baa6166707d7d489fe8ec1bcad1155df1 (diff)
downloadPrismLauncher-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.cpp7
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 &lt;<a href='mailto:swurl@swurl.xyz'>swurl@swurl.xyz </a>&gt;</p>\n";
+ stream << "<p>LennyMcLennington &lt;<a href='mailto:lenny@sneed.church'>lenny@sneed.church</a>&gt;</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 &lt;<a href='mailto:forkk@forkk.net'>forkk@forkk.net</a>&gt;</p>\n";
@@ -47,6 +53,7 @@ QString getCreditsHtml()
stream << "<p>Kilobyte &lt;<a href='mailto:stiepen22@gmx.de'>stiepen22@gmx.de</a>&gt;</p>\n";
stream << "<p>Rootbear75 &lt;<a href='https://twitter.com/rootbear75'>@rootbear75</a>&gt;</p>\n";
stream << "<p>Zeker Zhayard &lt;<a href='https://twitter.com/zeker_zhayard'>@Zeker_Zhayard</a>&gt;</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";