-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AUTHORS and AUTHORS generator script
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |