From a437c151bbe6e78771eadea3537d1219f28fb758 Mon Sep 17 00:00:00 2001 From: rbuj Date: Wed, 26 Feb 2020 10:20:00 +0100 Subject: [PATCH] Use user page on github when user email is private --- src/terminal.about | 2 +- update-authors.pl | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/terminal.about b/src/terminal.about index e5068a8..af96cc6 100644 --- a/src/terminal.about +++ b/src/terminal.about @@ -1,5 +1,5 @@ [About] -Authors=Abel McClendon ;Adam Erdman ;Alexander von Gluck IV ;Alexei Sorokin ;Allan Nordhøy ;Behdad Esfahbod ;Christian Persch ;Christopher Fujino ;Clement Lefebvre ;Friedel Wolff ;Guilherme de S. Pastore ;Havoc Pennington ;JP Cimalando ;Laszlo Boros ;Laurent Napias ;Madars Vitolins ;Marcel Dijkstra ;Mariano Suárez-Alvarez ;Mark Thomas ;Martin Wimpress ;Michael Terry ;Mike Gabriel ;Nikolay Martynov ;Pablo Barciela ;Perberos ;Piotr Drąg ;Robert Buj ;Sander Sweers ;Scott Balneaves ;Sorokin Alexei ;Stefan Tauner ;Stefano Karapetsas ;Stephen Krauth ;Steve Zesch ;Victor Kareh ;Vlad Orlov ;Wolfgang Ulbrich ;Wu Xiaotian ;acampbell ;alxpl ;liuyi92 ;micheal65536 ;noone3 ;osch ;rezso ; +Authors=Abel McClendon ;Adam Erdman ;Alexander von Gluck IV ;Alexei Sorokin ;Allan Nordhøy ;Behdad Esfahbod ;Christian Persch ;Christopher Fujino ;Clement Lefebvre ;Friedel Wolff ;Guilherme de S. Pastore ;Havoc Pennington ;JP Cimalando ;Laszlo Boros ;Laurent Napias ;Madars Vitolins ;Marcel Dijkstra ;Mariano Suárez-Alvarez ;Mark Thomas ;Martin Wimpress ;Michael Terry ;Mike Gabriel ;Nikolay Martynov ;Pablo Barciela ;Perberos ;Piotr Drąg ;Robert Buj ;Sander Sweers ;Scott Balneaves ;Sorokin Alexei ;Stefan Tauner ;Stefano Karapetsas ;Stephen Krauth ;Steve Zesch ;Victor Kareh ;Vlad Orlov ;Wolfgang Ulbrich ;Wu Xiaotian ;acampbell ;alxpl https://github.com/alxpl;liuyi92 ;micheal65536 https://github.com/micheal65536;noone3 ;osch ;rezso ; Contributors= ;Artists= Documenters=MATE Documentation Team;GNOME Documentation Team; diff --git a/update-authors.pl b/update-authors.pl index e844196..81a2f57 100755 --- a/update-authors.pl +++ b/update-authors.pl @@ -60,5 +60,9 @@ sub GetNewAuthors { my @A = GetCurrentAuthors; my @B = GetNewAuthors; +for (@B) { + s/<\d+\+(.+?)%users\.noreply\.github\.com>/<$1%users\.noreply\.github\.com>/; + s/<(.+?)%users\.noreply\.github\.com>/https:\/\/github.com\/$1/; +} my @merged = sort { $a cmp $b } keys %{{map {($_ => 1)} (@A, @B)}}; print join(';',@merged) . ';';