gfio: update about dialog
authorJens Axboe <axboe@kernel.dk>
Wed, 7 Mar 2012 13:18:28 +0000 (14:18 +0100)
committerJens Axboe <axboe@kernel.dk>
Wed, 7 Mar 2012 13:18:28 +0000 (14:18 +0100)
Signed-off-by: Jens Axboe <axboe@kernel.dk>
gfio.c

diff --git a/gfio.c b/gfio.c
index 833cd93daef2883e462fad5ae6fbc4f3a7db1286..c793335d50f2014a86622c79cb61328a1cbdd7b7 100644 (file)
--- a/gfio.c
+++ b/gfio.c
@@ -1727,15 +1727,23 @@ static void preferences(GtkWidget *w, gpointer data)
 
 static void about_dialog(GtkWidget *w, gpointer data)
 {
+       const char *authors[] = {
+               "Jens Axboe <axboe@kernel.dk>",
+               "Stephen Carmeron <stephenmcameron@gmail.com>",
+               NULL
+       };
+
        gtk_show_about_dialog(NULL,
                "program-name", "gfio",
                "comments", "Gtk2 UI for fio",
                "license", "GPLv2",
+               "website", "http://git.kernel.dk/?p=fio.git;a=summary",
+               "authors", authors,
                "version", fio_version_string,
-               "copyright", "Jens Axboe <axboe@kernel.dk> 2012",
+               "copyright", "© 2012 Jens Axboe <axboe@kernel.dk>",
                "logo-icon-name", "fio",
                /* Must be last: */
-               NULL, NULL,
+               "wrap-license", TRUE,
                NULL);
 }