diff options
author | Chocobozzz <me@florianbigard.com> | 2018-02-15 19:33:20 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-02-15 19:33:20 +0100 |
commit | 86acad02aa07f7579062722179c4c815ba488344 (patch) | |
tree | 4d30e9328204644e77ae6bd243d9d0c9abb83785 | |
parent | 02988fdc0bdd345bddf89171d258822cab4229d6 (diff) | |
download | PeerTube-86acad02aa07f7579062722179c4c815ba488344.tar.gz PeerTube-86acad02aa07f7579062722179c4c815ba488344.tar.zst PeerTube-86acad02aa07f7579062722179c4c815ba488344.zip |
Update code contributors list
-rw-r--r-- | CREDITS.md | 41 | ||||
-rwxr-xr-x | scripts/generate-code-contributors.sh | 5 |
2 files changed, 32 insertions, 14 deletions
diff --git a/CREDITS.md b/CREDITS.md index bfed400d0..dd195305a 100644 --- a/CREDITS.md +++ b/CREDITS.md | |||
@@ -1,20 +1,33 @@ | |||
1 | # Code | 1 | # Code |
2 | 2 | ||
3 | * [Chocobozzz](https://github.com/Chocobozzz) | 3 | * [Chocobozzz](https://github.com/Chocobozzz) |
4 | * [Green-Star](https://github.com/Green-Star) | 4 | * [Green-Star](https://github.com/Green-Star) |
5 | * [bnjbvr](https://github.com/bnjbvr) | 5 | * [jankeromnes](https://github.com/jankeromnes) |
6 | * [dadall](https://github.com/dadall) | 6 | * [bnjbvr](https://github.com/bnjbvr) |
7 | * [dedesite](https://github.com/dedesite) | 7 | * [DimitriGilbert](https://github.com/DimitriGilbert) |
8 | * [sticmac](https://github.com/sticmac) | 8 | * [dadall](https://github.com/dadall) |
9 | * [jankeromnes](https://github.com/jankeromnes) | 9 | * [dedesite](https://github.com/dedesite) |
10 | * [flyingrub](https://github.com/flyingrub) | 10 | * [lucaspontoexe](https://github.com/lucaspontoexe) |
11 | * [ReK2Fernandez](https://github.com/ReK2Fernandez) | 11 | * [rigelk](https://github.com/rigelk) |
12 | * [ALSai](https://github.com/ALSai) | 12 | * [flyingrub](https://github.com/flyingrub) |
13 | * [svnet-libre](https://github.com/svnet-libre) | ||
14 | * [tcitworld](https://github.com/tcitworld) | ||
15 | * [kaiyou](https://github.com/kaiyou) | ||
16 | * [taziden](https://github.com/taziden) | ||
17 | * [sticmac](https://github.com/sticmac) | ||
18 | * [qsypoq](https://github.com/qsypoq) | ||
19 | * [DatBewar](https://github.com/DatBewar) | ||
20 | * [ReK2Fernandez](https://github.com/ReK2Fernandez) | ||
21 | * [fflorent](https://github.com/fflorent) | ||
22 | * [faddat](https://github.com/faddat) | ||
23 | * [ldidry](https://github.com/ldidry) | ||
24 | * [ALSai](https://github.com/ALSai) | ||
25 | * [valvin1](https://github.com/valvin1) | ||
26 | * [FrozenDroid](https://github.com/FrozenDroid) | ||
27 | * [AugierLe42e](https://github.com/AugierLe42e) | ||
28 | * [jonathanraes](https://github.com/jonathanraes) | ||
29 | * [luzpaz](https://github.com/luzpaz) | ||
13 | * [ewasion](https://github.com/ewasion) | 30 | * [ewasion](https://github.com/ewasion) |
14 | * [qsypoq](https://github.com/qsypoq) | ||
15 | * [ldidry](https://github.com/ldidry) | ||
16 | * [faddat](https://github.com/faddat) | ||
17 | * [AugierLe42e](https://github.com/AugierLe42e) | ||
18 | 31 | ||
19 | # Design | 32 | # Design |
20 | 33 | ||
diff --git a/scripts/generate-code-contributors.sh b/scripts/generate-code-contributors.sh new file mode 100755 index 000000000..eb94d418d --- /dev/null +++ b/scripts/generate-code-contributors.sh | |||
@@ -0,0 +1,5 @@ | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \ | ||
4 | jq -r 'map("\\\n * [" + .login + "](" + .url + ")") | .[]' | \ | ||
5 | xargs echo | sed 's/api.github.com\/users/github.com/g' | ||