Add contributors to the about dialog.
This commit is contained in:
10
AUTHORS
10
AUTHORS
@@ -1 +1,11 @@
|
|||||||
Tomasz Moń <desowin@gmail.com>
|
Tomasz Moń <desowin@gmail.com>
|
||||||
|
Stephen Rigler <riglersc@gmail.com>
|
||||||
|
Jaco Kroon <jaco@kroon.co.za>
|
||||||
|
Rafael Moreno <laocanfei@yahoo.com>
|
||||||
|
Andrew O. Shadoura <bugzilla@tut.by>
|
||||||
|
Andreas Karajannis <aakara13@googlemail.com>
|
||||||
|
Miklos Aubert <miklos.aubert@gmail.com>
|
||||||
|
Jonathan A. Tice <jonandtice@gmail.com>
|
||||||
|
John Hammen <jhammen@gmail.com>
|
||||||
|
Ahmed Toulan <thelinuxer@gmail.com>
|
||||||
|
Tim LaBerge <tlaberge@visi.com>
|
||||||
|
|||||||
15
gui.c
15
gui.c
@@ -841,10 +841,21 @@ static void action_show_about_dialog_cb(GtkAction *action)
|
|||||||
{
|
{
|
||||||
static const gchar * const authors[] = {
|
static const gchar * const authors[] = {
|
||||||
"Tomasz Moń <desowin@gmail.com>",
|
"Tomasz Moń <desowin@gmail.com>",
|
||||||
|
"Stephen Rigler <riglersc@gmail.com>",
|
||||||
|
"Jaco Kroon <jaco@kroon.co.za>",
|
||||||
|
"Rafael Moreno <laocanfei@yahoo.com>",
|
||||||
|
"Andrew O. Shadoura <bugzilla@tut.by>",
|
||||||
|
"Andreas Karajannis <aakara13@googlemail.com>",
|
||||||
|
"Miklos Aubert <miklos.aubert@gmail.com>",
|
||||||
|
"Jonathan A. Tice <jonandtice@gmail.com>",
|
||||||
|
"John Hammen <jhammen@gmail.com>",
|
||||||
|
"Ahmed Toulan <thelinuxer@gmail.com>",
|
||||||
|
"Tim LaBerge <tlaberge@visi.com>",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
static const gchar copyright[] = "Copyright \xc2\xa9 2009 Tomasz Moń";
|
static const gchar copyright[] = "Copyright \xc2\xa9 2009 Tomasz Moń";
|
||||||
static const gchar website[] = "http://desowin.org/gdigi/";
|
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");
|
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,
|
"authors", authors,
|
||||||
"copyright", copyright,
|
"copyright", copyright,
|
||||||
"website", website,
|
"website", website,
|
||||||
|
"license-type", GTK_LICENSE_GPL_3_0,
|
||||||
|
"wrap-license", TRUE,
|
||||||
|
"program-name", "gdigi",
|
||||||
|
"version", version,
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user