summaryrefslogtreecommitdiffstats
path: root/src/about/version.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/about/version.c')
-rw-r--r--src/about/version.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/about/version.c b/src/about/version.c
index 3e938db..5ff8c73 100644
--- a/src/about/version.c
+++ b/src/about/version.c
@@ -33,6 +33,11 @@
extern const char *PACKAGE_VERSION_GIT;
+static gchar *authors[] = {
+ "Patrick McDermott <pj@pehjota.net>",
+ NULL
+};
+
/* From <https://www.gnu.org/licenses/gpl-3.0-standalone.html> */
static const gchar *gpl_3_0_html =
"<h3 style=\"text-align: center;\">GNU GENERAL PUBLIC LICENSE</h3>\n"
@@ -739,10 +744,7 @@ mq_about_version_response(MqApplication __attribute__((unused)) *application,
"About",
mq_html_container("div",
mq_html_h3(NULL, "Authors"),
- mq_html_list(NULL, NULL,
- "Patrick McDermott "
- "&lt;pj@pehjota.net&gt;",
- NULL),
+ mq_html_list_v(NULL, authors),
NULL),
"Credits",
g_strdup(gpl_3_0_html),