mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2025-01-18 12:11:36 +00:00
Improve AUTHORS.md formatting
This commit is contained in:
parent
bd3a96716c
commit
cb35e58114
58
AUTHORS.md
58
AUTHORS.md
@ -2,34 +2,34 @@
|
||||
|
||||
#### Ordered by first contribution.
|
||||
|
||||
- Feross Aboukhadijeh <feross@feross.org>
|
||||
- Mathias Buus <mathiasbuus@gmail.com>
|
||||
- thermatk <thermatk@thermatk.com>
|
||||
- fisch0920 <fisch0920@gmail.com>
|
||||
- Aliaksei Sapach <aliaksei.dreamsonic@gmail.com>
|
||||
- John Hiesey <john@hiesey.com>
|
||||
- hicom150 <necrox666@gmail.com>
|
||||
- Theadd <pantallazo@gmail.com>
|
||||
- Astro <astro@spaceboyz.net>
|
||||
- Anthony MOI <xn1t0x@gmail.com>
|
||||
- Max Ogden <max@maxogden.com>
|
||||
- Sidd Sridharan <sidd@sidd.com>
|
||||
- Nick Rafter <nicholas.rafter@gmail.com>
|
||||
- zckevin <zckevinzc@gmail.com>
|
||||
- Michael Williams <dinosaur@riseup.net>
|
||||
- Garret Buell <gmbuell@gmail.com>
|
||||
- Linus Unnebäck <linus@folkdatorn.se>
|
||||
- Aram Drevekenin <aram@onetwotrade.com>
|
||||
- Gustavo Rodrigues <qgustavor@gmail.com>
|
||||
- Alex <alxmorais8@msn.com>
|
||||
- Harsh Vakharia <harshjv@users.noreply.github.com>
|
||||
- Yoann Ciabaud <yoann@sonora.io>
|
||||
- Diego Rodríguez Baquero <DiegoRBaquero@users.noreply.github.com>
|
||||
- Autarc <autarc@gmail.com>
|
||||
- Kirill Fomichev <fanatid@ya.ru>
|
||||
- Matt Bell <mappum@gmail.com>
|
||||
- Philipp Henkel <henkel@users.noreply.github.com>
|
||||
- jakefb <jacobafb@gmail.com>
|
||||
- Nick Frost <nickfrostatx@gmail.com>
|
||||
- Feross Aboukhadijeh (feross@feross.org)
|
||||
- Mathias Buus (mathiasbuus@gmail.com)
|
||||
- thermatk (thermatk@thermatk.com)
|
||||
- fisch0920 (fisch0920@gmail.com)
|
||||
- Aliaksei Sapach (aliaksei.dreamsonic@gmail.com)
|
||||
- John Hiesey (john@hiesey.com)
|
||||
- hicom150 (necrox666@gmail.com)
|
||||
- Theadd (pantallazo@gmail.com)
|
||||
- Astro (astro@spaceboyz.net)
|
||||
- Anthony MOI (xn1t0x@gmail.com)
|
||||
- Max Ogden (max@maxogden.com)
|
||||
- Sidd Sridharan (sidd@sidd.com)
|
||||
- Nick Rafter (nicholas.rafter@gmail.com)
|
||||
- zckevin (zckevinzc@gmail.com)
|
||||
- Michael Williams (dinosaur@riseup.net)
|
||||
- Garret Buell (gmbuell@gmail.com)
|
||||
- Linus Unnebäck (linus@folkdatorn.se)
|
||||
- Aram Drevekenin (aram@onetwotrade.com)
|
||||
- Gustavo Rodrigues (qgustavor@gmail.com)
|
||||
- Alex (alxmorais8@msn.com)
|
||||
- Harsh Vakharia (harshjv@users.noreply.github.com)
|
||||
- Yoann Ciabaud (yoann@sonora.io)
|
||||
- Diego Rodríguez Baquero (DiegoRBaquero@users.noreply.github.com)
|
||||
- Autarc (autarc@gmail.com)
|
||||
- Kirill Fomichev (fanatid@ya.ru)
|
||||
- Matt Bell (mappum@gmail.com)
|
||||
- Philipp Henkel (henkel@users.noreply.github.com)
|
||||
- jakefb (jacobafb@gmail.com)
|
||||
- Nick Frost (nickfrostatx@gmail.com)
|
||||
|
||||
#### Generated by bin/update-authors.sh.
|
||||
|
@ -1,16 +1,16 @@
|
||||
#!/bin/sh
|
||||
# Update AUTHORS.md based on git history.
|
||||
|
||||
git log --reverse --format='%aN <%aE>' | perl -we '
|
||||
git log --reverse --format='%aN (%aE)' | perl -we '
|
||||
BEGIN {
|
||||
%seen = (), @authors = ();
|
||||
}
|
||||
while (<>) {
|
||||
next if $seen{$_};
|
||||
next if /<support\@greenkeeper.io>/;
|
||||
next if /<yoann\@atacma.agency>/;
|
||||
next if /<yciabaud\@users.noreply.github.com>/;
|
||||
next if /<diegorbaquero\@gmail.com>/;
|
||||
next if /(support\@greenkeeper.io)/;
|
||||
next if /(yoann\@atacma.agency)/;
|
||||
next if /(yciabaud\@users.noreply.github.com)/;
|
||||
next if /(diegorbaquero\@gmail.com)/;
|
||||
$seen{$_} = push @authors, "- ", $_;
|
||||
}
|
||||
END {
|
||||
|
Loading…
Reference in New Issue
Block a user