gnome: ammend about dialog

Refs #69343

Change-Id: Ic345f622de71d38d90d3a420fb8cd69866d89f6b
diff --git a/AUTHORS b/AUTHORS
index 8546bd1..417f721 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,8 +1,17 @@
-Current authors
+Authors
 ---------------
 
-Stepan Salenikovich <stepan dot salenikovich at savoirfairelinux dot com>
-Eloi BaiL <eloi dot bail at savoirfairelinux dot com>
-Guillaume Roguez <guillaume dot roguez at savoirfairelinux dot com>
-Emmanuel Lepage <emmanuel dot lepage at savoirfairelinux dot com>
+Adrien Béraud <adrien dot beraud at savoirfairelinux dot com>
 Alexandre Lision <alexandre dot lision at savoirfairelinux dot com>
+Edric Milaret <edric dot ladent-milaret at savoirfairelinux dot com>
+Éloi Bail <eloi dot bail at savoirfairelinux dot com>
+Emmanuel Lepage <emmanuel dot lepage at savoirfairelinux dot com>
+Guillaume Roguez <guillaume dot roguez at savoirfairelinux dot com>
+Stepan Salenikovich <stepan dot salenikovich at savoirfairelinux dot com>
+
+Based on the SFLPhone project.
+
+Artists
+---------------
+
+Marianne Forget <marianne dot forget at savoirfairelinux do com>
\ No newline at end of file
diff --git a/src/dialogs.c b/src/dialogs.c
index d4f4f06..becbbd2 100644
--- a/src/dialogs.c
+++ b/src/dialogs.c
@@ -89,16 +89,18 @@
         g_error_free(error);
     }
 
-    gchar *version = g_strdup_printf("%d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);
+    gchar *name = g_strdup_printf("Gnome Ring v%d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);
 
     const gchar *authors[] = {
-        [0] = "Stepan Salenikovich",
-        [1] = "Éloi Bail",
-        [2] = "Guillaume Roguez",
-        [3] = "Emmanuel Lepage",
-        [4] = "Alexandre Lision",
-        [5] = "Thibault Cohen",
-        [6] = NULL,
+        [0] = "Adrien Béraud",
+        [1] = "Alexandre Lision",
+        [2] = "Edric Milaret",
+        [3] = "Éloi Bail",
+        [4] = "Emmanuel Lepage-Vallée",
+        [5] = "Guillaume Roguez",
+        [6] = "Stepan Salenikovich",
+        [7] = "Based on the SFLPhone project",
+        [8] = NULL,
     };
 
     const gchar *artists[] = {
@@ -108,12 +110,12 @@
 
     gtk_show_about_dialog(
         GTK_WINDOW(parent),
-        "program-name", "Gnome Ring",
+        "program-name", name,
         "copyright", "© 2015 Savoir-faire Linux",
         "license-type", GTK_LICENSE_GPL_3_0,
         "logo", logo,
-        "version", version,
-        "comments", "The GNOME client for Ring.\nRing is a Voice-over-IP software phone.",
+        "version", "release: Samuel de Champlain",
+        "comments", "The GNOME client for Ring.\nRing is a secured and distributed communication software.",
         "authors", authors,
         "website", "http://www.ring.cx/",
         "website-label", "www.ring.cx",
@@ -121,5 +123,5 @@
         NULL
     );
 
-    g_free(version);
+    g_free(name);
 }