diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..6738417 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,24 @@ +# Authors ordered by first contribution. + +Jessica Orquina +Michael Tryby +sam hatchett +Feng Shang +James Uber +Sam Hatchett +Tom Taxon +Hyoungmin Woo +Mickey +JinduanChen +mickey +yuniersoad +jamesuber +Mike Kane +eldemet +Will Furnass +Steffen Macke +Mariosmsk +Elad Salomons +Demetrios Eliades + +# Generated by tools/update-authors.sh diff --git a/tools/update-authors.sh b/tools/update-authors.sh new file mode 100755 index 0000000..17ea7a6 --- /dev/null +++ b/tools/update-authors.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +git log --reverse --format='%aN <%aE>' | perl -we ' + +BEGIN { + %seen = (), @authors = (); +} + +while (<>) { + next if $seen{$_}; + next if /\@chromium.org/; + next if //; + $seen{$_} = push @authors, $_; +} + +END { + print "# Authors ordered by first contribution.\n"; + print "\n", @authors, "\n"; + print "# Generated by tools/update-authors.sh\n"; +} + +' > ../AUTHORS \ No newline at end of file