diff options
author | rbuj <[email protected]> | 2020-02-26 10:07:04 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-02-29 18:42:01 +0100 |
commit | d169cfe62e9925a1d8f3d79756004a567027cf30 (patch) | |
tree | 805da3a7d541009a5968e6c109140bdb9c97da6b | |
parent | 0960168ed01873622ddf4606082417030e28cc1e (diff) | |
download | pluma-d169cfe62e9925a1d8f3d79756004a567027cf30.tar.bz2 pluma-d169cfe62e9925a1d8f3d79756004a567027cf30.tar.xz |
Use user page on github when user email is private
-rw-r--r-- | pluma/pluma.about | 2 | ||||
-rwxr-xr-x | update-authors.pl | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/pluma/pluma.about b/pluma/pluma.about index 7ec404e8..6ffd1a99 100644 --- a/pluma/pluma.about +++ b/pluma/pluma.about @@ -1,2 +1,2 @@ [About] -Authors=Adam Erdman <hekel%archlinux.info>;Alexander van der Meij <alexandervdm%gliese.me>;Alexander von Gluck IV <kallisti5%unixzen.com>;Andrew Fowlie <andrew.j.fowlie%qq.com>;Balló György <ballogyor%gmail.com>;Björn Esser <besser82%fedoraproject.org>;Clement Lefebvre <clement.lefebvre%linuxmint.com>;Colomban Wendling <cwendling%hypra.fr>;Daggerbot <daggerbot%gmail.com>;Gabriel Cormier-Affleck <bl0ckedusersoft%gmail.com>;Goffredo Baroncelli <kreijack%inwind.it>;Ignacio Casal Quinteiro <icq%gnome.org>;John Church <sleeveroller%gmail.com>;Laurent Napias <tamplan%free.fr>;Marcel Dijkstra <marcel.dykstra%gmail.com>;Martin Wimpress <martin%mate-desktop.org>;OBATA Akio <obache%users.noreply.github.com>;Pablo Barciela <scow%riseup.net>;Paolo Borelli <pborelli%gnome.org>;Patrick Monnerat <patrick%monnerat.net>;Perberos <perberos%gmail.com>;Piotr Drąg <piotrdrag%gmail.com>;Robert Buj <robert.buj%gmail.com>;Ryan Q <ryan.q%linux.com>;Samuel Thibault <samuel.thibault%ens-lyon.org>;Sander Sweers <infirit%gmail.com>;Sorokin Alexei <sor.alexei%meowr.ru>;Stefano Karapetsas <stefano%karapetsas.com>;Steve Zesch <stevezesch2%gmail.com>;Sébastien Wilmet <wilmet%gnome.org>;V.Barkov <neverscaired%gmail.com>;Vadim Barkov <vbrkov%gmail.com>;Victor Kareh <vkareh%redhat.com>;Vlad Orlov <monsta%inbox.ru>;Wolfgang Ulbrich <mate%raveit.de>;Wu Xiaotian <yetist%gmail.com>;Yaakov Selkowitz <yselkowitz%users.sourceforge.net>;alxpl <alxpl%users.noreply.github.com>;info-cppsp <info%cppsp.de>;likorisd <likoris%systemausfall.org>;lukefromdc <lukefromdc%hushmail.com>;sakib <mabusakib%gmail.com>;zhangjialing <zhangjialing%loongson.cn>; +Authors=Adam Erdman <hekel%archlinux.info>;Alexander van der Meij <alexandervdm%gliese.me>;Alexander von Gluck IV <kallisti5%unixzen.com>;Andrew Fowlie <andrew.j.fowlie%qq.com>;Balló György <ballogyor%gmail.com>;Björn Esser <besser82%fedoraproject.org>;Clement Lefebvre <clement.lefebvre%linuxmint.com>;Colomban Wendling <cwendling%hypra.fr>;Daggerbot <daggerbot%gmail.com>;Gabriel Cormier-Affleck <bl0ckedusersoft%gmail.com>;Goffredo Baroncelli <kreijack%inwind.it>;Ignacio Casal Quinteiro <icq%gnome.org>;John Church <sleeveroller%gmail.com>;Laurent Napias <tamplan%free.fr>;Marcel Dijkstra <marcel.dykstra%gmail.com>;Martin Wimpress <martin%mate-desktop.org>;OBATA Akio https://github.com/obache;Pablo Barciela <scow%riseup.net>;Paolo Borelli <pborelli%gnome.org>;Patrick Monnerat <patrick%monnerat.net>;Patrick Monnerat <pm%datasphere.ch>;Perberos <perberos%gmail.com>;Piotr Drąg <piotrdrag%gmail.com>;Robert Buj <robert.buj%gmail.com>;Ryan Q <ryan.q%linux.com>;Samuel Thibault <samuel.thibault%ens-lyon.org>;Sander Sweers <infirit%gmail.com>;Sorokin Alexei <sor.alexei%meowr.ru>;Stefano Karapetsas <stefano%karapetsas.com>;Steve Zesch <stevezesch2%gmail.com>;Sébastien Wilmet <wilmet%gnome.org>;V.Barkov <neverscaired%gmail.com>;Vadim Barkov <vbrkov%gmail.com>;Victor Kareh <vkareh%redhat.com>;Vlad Orlov <monsta%inbox.ru>;Wolfgang Ulbrich <mate%raveit.de>;Wu Xiaotian <xiaotian.wu%i-soft.com.cn>;Yaakov Selkowitz <yselkowitz%users.sourceforge.net>;alxpl https://github.com/alxpl;info-cppsp <info%cppsp.de>;likorisd <likoris%systemausfall.org>;lukefromdc <lukefromdc%hushmail.com>;sakib <mabusakib%gmail.com>;zhangjialing <zhangjialing%loongson.cn>; diff --git a/update-authors.pl b/update-authors.pl index 683594e0..2756b58a 100755 --- a/update-authors.pl +++ b/update-authors.pl @@ -63,5 +63,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) . ';'; |