Skip to content

Commit 9fa0f00

Browse files
committed
Add AUTHORS and AUTHORS generator script
1 parent fe6aaa3 commit 9fa0f00

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

.mailmap

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Antonis Kalipetis <[email protected]>
2+
3+
4+
Paris Kasidiaris <[email protected]>
5+
Paris Kasidiaris <[email protected]>
6+
Thanasis Daglis <[email protected]>
7+

AUTHORS

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
List of xterm.js contributors. Updated before every release.
2+
3+
Alexander Olsson <[email protected]>
4+
Antonis Kalipetis <[email protected]>
5+
Austin Robertson <[email protected]>
6+
Benjamin Fischer <[email protected]>
7+
Carson Anderson <[email protected]>
8+
Christopher Jeffrey <[email protected]>
9+
Daniel Imms <[email protected]>
10+
Daniel Risacher <[email protected]>
11+
Dan Kaplun <[email protected]>
12+
Darin Morrison <[email protected]>
13+
Jean Bruenn <[email protected]>
14+
Jörg Breitbart <[email protected]>
15+
Paris Kasidiaris <[email protected]>
16+
Paris Kasidiaris <[email protected]>
17+
runarberg <[email protected]>
18+
Steven Silvester <[email protected]>
19+
Thanasis Daglis <[email protected]>

bin/generate-authors

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#! /usr/bin/env sh
2+
3+
tail --lines=+3 AUTHORS > AUTHORS.tmp
4+
git log --format='%aN <%aE>' >> AUTHORS.tmp
5+
echo "List of xterm.js contributors. Updated before every release.\n" > AUTHORS
6+
sort -u AUTHORS.tmp >> AUTHORS
7+
rm -f AUTHORS.tmp

0 commit comments

Comments
 (0)