Skip to content

Commit

Permalink
Add AUTHORS and AUTHORS generator script
Browse files Browse the repository at this point in the history
  • Loading branch information
parisk committed Jul 18, 2016
1 parent fe6aaa3 commit 9fa0f00
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Antonis Kalipetis <[email protected]>
Antonis Kalipetis <[email protected]> <[email protected]>
Daniel Imms <[email protected]> <[email protected]>
Paris Kasidiaris <[email protected]>
Paris Kasidiaris <[email protected]>
Thanasis Daglis <[email protected]>
Thanasis Daglis <[email protected]> <[email protected]>
19 changes: 19 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
List of xterm.js contributors. Updated before every release.

Alexander Olsson <[email protected]>
Antonis Kalipetis <[email protected]>
Austin Robertson <[email protected]>
Benjamin Fischer <[email protected]>
Carson Anderson <[email protected]>
Christopher Jeffrey <[email protected]>
Daniel Imms <[email protected]>
Daniel Risacher <[email protected]>
Dan Kaplun <[email protected]>
Darin Morrison <[email protected]>
Jean Bruenn <[email protected]>
Jörg Breitbart <[email protected]>
Paris Kasidiaris <[email protected]>
Paris Kasidiaris <[email protected]>
runarberg <[email protected]>
Steven Silvester <[email protected]>
Thanasis Daglis <[email protected]>
7 changes: 7 additions & 0 deletions bin/generate-authors
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#! /usr/bin/env sh

tail --lines=+3 AUTHORS > AUTHORS.tmp
git log --format='%aN <%aE>' >> AUTHORS.tmp
echo "List of xterm.js contributors. Updated before every release.\n" > AUTHORS
sort -u AUTHORS.tmp >> AUTHORS
rm -f AUTHORS.tmp

0 comments on commit 9fa0f00

Please sign in to comment.