diff --git a/docs/AUTHORS.txt b/docs/AUTHORS.txt index 4f9cd4c7a..29237689c 100644 --- a/docs/AUTHORS.txt +++ b/docs/AUTHORS.txt @@ -1,8 +1,7 @@ -Since the first commit in January 2003 105 people have submitted patches, +Since the first commit in January 2003 107 people have submitted patches, commits, and other useful contributions to InspIRCd. These people, ordered by the number of contributions they have made, are: - * Craig Edwards * Sadie Powell * Attila Molnar @@ -25,8 +24,8 @@ the number of contributions they have made, are: * burlex * jackmcbarn * Uli Schlachter - * ChrisTX * B00mX0r + * ChrisTX * fez * Shawn Smith * DjSlash @@ -38,15 +37,16 @@ the number of contributions they have made, are: * Dylan Frank * Steven Van Acker * Val Lorentz + * Wade Cline * Dan Parsons * Googolplexed * Herman * Mantas Mikulėnas * Renegade334 * Sheogorath - * Wade Cline * typobox43 * Anatole Denis + * Andrio Celos * Ben Harris * Chin Lee * Christopher 'm4z' Holm @@ -68,13 +68,13 @@ the number of contributions they have made, are: * Adrien Bustany * Akinwale Ariwodola * Alyx - * Andrio Celos * Boleslaw Tokarski * Chew * Chris Novakovic * Christian Höltje * Christoph Egger * Christos Triantafyllidis + * Daniel De Graaf . * David Lamont * David Schultz * Dominic Hamon @@ -90,6 +90,7 @@ the number of contributions they have made, are: * Julien Vehent * JustArchi * Matthew Martin + * Nicole Kleinhoff * Pierre Carrier * Puck Meerburg * R-V6 diff --git a/tools/mkauthors b/tools/mkauthors index 4ed25c810..3931da60d 100755 --- a/tools/mkauthors +++ b/tools/mkauthors @@ -31,7 +31,7 @@ use make::common; use make::console; my %authors; -for my $author (split /\n+/, `git log --pretty='%aN <%aE>' HEAD`) { +for my $author (split /\n+/, `git log --pretty='%aN <%aE>%n%(trailers:key=Co-Authored-By,valueonly)' HEAD`) { $author = $1 if $author =~ /^(.+) <(?:unknown\@email.invalid|\S+\@users.noreply.github.com)>$/; next if $author =~ /\[bot\]$/; @@ -45,7 +45,6 @@ say $fh <<"EOH"; Since the first commit in January 2003 ${\scalar %authors} people have submitted patches, commits, and other useful contributions to InspIRCd. These people, ordered by the number of contributions they have made, are: - EOH for my $author (sort { $authors{$b} <=> $authors{$a} or $a cmp $b } keys %authors) {