From 97547476e43fb6c7507664f75702af2be969fb49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Mo=C5=84?= Date: Mon, 26 Mar 2012 16:55:00 +0200 Subject: [PATCH] Add contributors to the about dialog. --- AUTHORS | 10 ++++++++++ gui.c | 15 +++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/AUTHORS b/AUTHORS index 85143a3..e0c2007 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1 +1,11 @@ Tomasz Moń +Stephen Rigler +Jaco Kroon +Rafael Moreno +Andrew O. Shadoura +Andreas Karajannis +Miklos Aubert +Jonathan A. Tice +John Hammen +Ahmed Toulan +Tim LaBerge diff --git a/gui.c b/gui.c index 8709fad..002954d 100644 --- a/gui.c +++ b/gui.c @@ -841,10 +841,21 @@ static void action_show_about_dialog_cb(GtkAction *action) { static const gchar * const authors[] = { "Tomasz Moń ", + "Stephen Rigler ", + "Jaco Kroon ", + "Rafael Moreno ", + "Andrew O. Shadoura ", + "Andreas Karajannis ", + "Miklos Aubert ", + "Jonathan A. Tice ", + "John Hammen ", + "Ahmed Toulan ", + "Tim LaBerge ", NULL }; static const gchar copyright[] = "Copyright \xc2\xa9 2009 Tomasz Moń"; static const gchar website[] = "http://desowin.org/gdigi/"; + static const gchar version[] = "0.3.0"; GtkWidget *window = g_object_get_data(G_OBJECT(action), "window"); @@ -852,6 +863,10 @@ static void action_show_about_dialog_cb(GtkAction *action) "authors", authors, "copyright", copyright, "website", website, + "license-type", GTK_LICENSE_GPL_3_0, + "wrap-license", TRUE, + "program-name", "gdigi", + "version", version, NULL); }