diff options
author | rbuj <[email protected]> | 2020-02-26 10:20:00 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-02-27 22:16:41 +0100 |
commit | 658eb5e2b1cbb19e36621a74a39df2e2e19f62de (patch) | |
tree | 281ad4956c2be9aed07ba08bafc11b6c72590860 | |
parent | 2030aa2359a485c78086ec21779ba271ddfb369a (diff) | |
download | mate-terminal-658eb5e2b1cbb19e36621a74a39df2e2e19f62de.tar.bz2 mate-terminal-658eb5e2b1cbb19e36621a74a39df2e2e19f62de.tar.xz |
Use user page on github when user email is private
-rw-r--r-- | src/terminal.about | 2 | ||||
-rwxr-xr-x | update-authors.pl | 4 |
2 files changed, 5 insertions, 1 deletions
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 <hcmmac%hosscomm.com>;Adam Erdman <hekel%archlinux.info>;Alexander von Gluck IV <kallisti5%unixzen.com>;Alexei Sorokin <sor.alexei%meowr.ru>;Allan Nordhøy <epost%anotheragency.no>;Behdad Esfahbod <behdad%gnome.org>;Christian Persch <chpe%gnome.org>;Christopher Fujino <christopherfujino%gmail.com>;Clement Lefebvre <clement.lefebvre%linuxmint.com>;Friedel Wolff <friedel%translate.org.za>;Guilherme de S. Pastore <gpastore%gnome.org>;Havoc Pennington <hp%redhat.com>;JP Cimalando <jp-dev%inbox.ru>;Laszlo Boros <iamsemmu%gmail.com>;Laurent Napias <tamplan%free.fr>;Madars Vitolins <madars.vitolins%gmail.com>;Marcel Dijkstra <marcel.dykstra%gmail.com>;Mariano Suárez-Alvarez <mariano%gnome.org>;Mark Thomas <markbt%efaref.net>;Martin Wimpress <martin%mate-desktop.org>;Michael Terry <michael.terry%canonical.com>;Mike Gabriel <mike.gabriel%das-netzwerkteam.de>;Nikolay Martynov <mar.kolya%gmail.com>;Pablo Barciela <scow%riseup.net>;Perberos <perberos%gmail.com>;Piotr Drąg <piotrdrag%gmail.com>;Robert Buj <robert.buj%gmail.com>;Sander Sweers <infirit%gmail.com>;Scott Balneaves <sbalneav%mate-desktop.org>;Sorokin Alexei <sor.alexei%meowr.ru>;Stefan Tauner <stefan.tauner%gmx.at>;Stefano Karapetsas <stefano%karapetsas.com>;Stephen Krauth <sk42%stephenk.com>;Steve Zesch <stevezesch2%gmail.com>;Victor Kareh <vkareh%vkareh.net>;Vlad Orlov <monsta%inbox.ru>;Wolfgang Ulbrich <mate%raveit.de>;Wu Xiaotian <yetist%gmail.com>;acampbell <acampbell%al.precisiontech.biz>;alxpl <alxpl%users.noreply.github.com>;liuyi92 <liuyi19920905%gmail.com>;micheal65536 <micheal65536%users.noreply.github.com>;noone3 <boris.woerner%gmail.com>;osch <oliver%luced.de>;rezso <rezso%rezso.net>; +Authors=Abel McClendon <hcmmac%hosscomm.com>;Adam Erdman <hekel%archlinux.info>;Alexander von Gluck IV <kallisti5%unixzen.com>;Alexei Sorokin <sor.alexei%meowr.ru>;Allan Nordhøy <epost%anotheragency.no>;Behdad Esfahbod <behdad%gnome.org>;Christian Persch <chpe%gnome.org>;Christopher Fujino <christopherfujino%gmail.com>;Clement Lefebvre <clement.lefebvre%linuxmint.com>;Friedel Wolff <friedel%translate.org.za>;Guilherme de S. Pastore <gpastore%gnome.org>;Havoc Pennington <hp%redhat.com>;JP Cimalando <jp-dev%inbox.ru>;Laszlo Boros <iamsemmu%gmail.com>;Laurent Napias <tamplan%free.fr>;Madars Vitolins <madars.vitolins%gmail.com>;Marcel Dijkstra <marcel.dykstra%gmail.com>;Mariano Suárez-Alvarez <mariano%gnome.org>;Mark Thomas <markbt%efaref.net>;Martin Wimpress <martin%mate-desktop.org>;Michael Terry <michael.terry%canonical.com>;Mike Gabriel <mike.gabriel%das-netzwerkteam.de>;Nikolay Martynov <mar.kolya%gmail.com>;Pablo Barciela <scow%riseup.net>;Perberos <perberos%gmail.com>;Piotr Drąg <piotrdrag%gmail.com>;Robert Buj <robert.buj%gmail.com>;Sander Sweers <infirit%gmail.com>;Scott Balneaves <sbalneav%mate-desktop.org>;Sorokin Alexei <sor.alexei%meowr.ru>;Stefan Tauner <stefan.tauner%gmx.at>;Stefano Karapetsas <stefano%karapetsas.com>;Stephen Krauth <sk42%stephenk.com>;Steve Zesch <stevezesch2%gmail.com>;Victor Kareh <vkareh%vkareh.net>;Vlad Orlov <monsta%inbox.ru>;Wolfgang Ulbrich <mate%raveit.de>;Wu Xiaotian <yetist%gmail.com>;acampbell <acampbell%al.precisiontech.biz>;alxpl https://github.com/alxpl;liuyi92 <liuyi19920905%gmail.com>;micheal65536 https://github.com/micheal65536;noone3 <boris.woerner%gmail.com>;osch <oliver%luced.de>;rezso <rezso%rezso.net>; 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) . ';'; |