[gedit] Keep the top 5 contributors when listing them



commit a0e9adfbf512d4fe81d6dc5374c1727b019858c9
Author: Sébastien Wilmet <swilmet informatique-libre be>
Date:   Sun Jul 17 14:20:55 2022 +0200

    Keep the top 5 contributors when listing them
    
    Many thanks to the other and past contributors. git shortlog -sn still
    list you ;-)
    
    Also remove email addresses. There are more general means of
    communication for gedit (Discourse currently, for example).
    
    For the man-page, replace .TP by .br, to have each contributor on one
    line, but without blank lines in-between. (.TP creates a new paragraph,
    while .br creates a line break, apparently).

 data/gedit.1                | 29 +++++++++++++----------------
 gedit/gedit-commands-help.c | 22 +++++++++-------------
 2 files changed, 22 insertions(+), 29 deletions(-)
---
diff --git a/data/gedit.1 b/data/gedit.1
index 01d62e669..815fd1b32 100644
--- a/data/gedit.1
+++ b/data/gedit.1
@@ -81,19 +81,16 @@ If COLUMN is missing, go to the first column.
 .SH BUGS
 If you find a bug, please report it at the GNOME bug tracker. See 
https://wiki.gnome.org/Apps/Gedit/ReportingBugs.
 .SH AUTHORS
-Paolo Maggi (paolo gnome org)
-.TP
-Paolo Borelli (pborelli gnome org)
-.TP
-Steve Frécinaux (code istique net)
-.TP
-Jesse van den Kieboom (jessevdk gnome org)
-.TP
-Ignacio Casal Quinteiro <icq gnome org>
-.TP
-James Willcox (jwillcox gnome org)
-.TP
-Federico Mena Quintero (federico novell com)
-.TP
-Chema Celorio
-
+.\" Top 5 authors (to not have a too long list), by relative contribution
+.\" (number of commits at the time of writing).
+Paolo Borelli
+.br
+Sébastien Wilmet
+.br
+Ignacio Casal Quinteiro
+.br
+Jesse van den Kieboom
+.br
+Paolo Maggi
+.br
+and many others.
diff --git a/gedit/gedit-commands-help.c b/gedit/gedit-commands-help.c
index 4b13cbaa8..2efaa5b99 100644
--- a/gedit/gedit-commands-help.c
+++ b/gedit/gedit-commands-help.c
@@ -77,20 +77,16 @@ _gedit_cmd_help_contents (GeditWindow *window)
 void
 _gedit_cmd_help_about (GeditWindow *window)
 {
+       /* Top 5 authors (to not have a too long list), by relative contribution
+        * (number of commits at the time of writing).
+        */
        static const gchar * const authors[] = {
-               "Alex Roberts",
-               "Chema Celorio",
-               "Evan Lawrence",
-               "Federico Mena Quintero <federico novell com>",
-               "Garrett Regier <garrettregier gmail com>",
-               "Ignacio Casal Quinteiro <icq gnome org>",
-               "James Willcox <jwillcox gnome org>",
-               "Jesse van den Kieboom <jessevdk gnome org>",
-               "Paolo Borelli <pborelli gnome org>",
-               "Paolo Maggi <paolo gnome org>",
-               "Sébastien Lafargue <slafargue gnome org>",
-               "Sébastien Wilmet <swilmet gnome org>",
-               "Steve Frécinaux <steve istique net>",
+               "Paolo Borelli",
+               "Sébastien Wilmet",
+               "Ignacio Casal Quinteiro",
+               "Jesse van den Kieboom",
+               "Paolo Maggi",
+               "and many others.",
                NULL
        };
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]