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); }