Skip to content

Commit

Permalink
Add CONTRIBUTORS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasBernard committed Feb 20, 2021
1 parent 5e729cc commit ec1264e
Show file tree
Hide file tree
Showing 11 changed files with 2,229 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
/.idea/sonarlint
.idea/misc.xml
.DS_Store
/build
/captures
Expand All @@ -16,8 +18,7 @@

app/src/main/java/android/jonas/fakestandby/utils/Secrets.java

.idea/misc.xml

fastlane/metadata/android/screenshots.html

fastlane/report.xml

node_modules/
80 changes: 80 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# Contributors

> I want to thank all contributors that help to develop this app!
## Code contributors

> Code contributions are the most powerful change at a projects heart.
> Those require very precise and good work. Thanks to all code contributors!

* [Poussinou](https://github.com/Poussinou) (1 contribution)

## POEditor (Translation)

> Special thanks also goes to the great people helping with the translations!
> The app is now already translated into 17 languages!

* 123077
* 200308
* aevw
* Ah5an9so7ab5
* Alexander Levkin
* Alexandr
* Alexey
* Ali
* ali
* Alice
* Andrew
* Anon
* Antonio Silva
* ask
* Cetinibrahim
* Cor Menger
* Daniel
* Danieldesouzamelo07
* DarkGagan
* Dhruv Chatrani
* Diego flores
* Elizabeth Aburto
* Emir can
* Freefeel
* Gökhan Güzel
* Goosan
* h
* Henrique
* Ioji Barrett
* Juan
* L
* Lqwh2h2cwa
* marlon
* Matt
* Max Burkardt
* Maxim
* mecqor
* Muddy
* Murlimanoharsoni4
* musics
* nate
* Neranus
* Pascal
* Pelian
* Pita
* Pratik Mullick
* Randi Setiawan
* renee hall
* Rossini
* Sata
* Sergei
* SuppaMan
* tGd
* Tom
* Tyson Silva
* undra thomas
* Vicky
* wainortyho
* xiaowei
* ZhanZhenyong
* zwis
* Джесіка
19 changes: 19 additions & 0 deletions CONTRIBUTORS.template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Contributors

> I want to thank all contributors that help to develop this app!
## Code contributors

> Code contributions are the most powerful change at a projects heart.
> Those require very precise and good work. Thanks to all code contributors!
{% for c in githubContributors %}
* [{{ c.login }}]({{ c.html_url }}) ({% if c.contributions > 1 %}{{ c.contributions }} contributions{% else%}1 contribution{% endif%}) {% endfor %}

## POEditor (Translation)

> Special thanks also goes to the great people helping with the translations!
> The app is now already translated into {{ languages.length }} languages!
{% for c in poeditorContributors %}
* {{ c.name }} {% endfor %}
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ You should not except huge power saving effects on any device especially on devi

Feel free to contribute to the FakeStandby project! Make sure to look at the [Code Of Conduct](CODE_OF_CONDUCT.md) and the [Contributing Information](CONTRIBUTING.md).

## Special Thanks

Special thanks goes to all contributors! You can find them in the [CONTRIBUTORS.md](CONTRIBUTORS.md).
I also want to thank all nice people, who donated some money!

## Licensing
![GitHub](https://img.shields.io/github/license/JonasBernard/FakeStandby?color=light-green)

Expand Down
7 changes: 7 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,11 @@ platform :android do
command: 'node metadata/android/poeditor2fastlane.js'
)
end

desc "Fetch GitHub and POEditor contributors and render a CONTRIBUTORS.md file"
lane :fetch_contributors do
Dir.chdir("../") do
sh 'node pull-contributors.js'
end
end
end
5 changes: 5 additions & 0 deletions fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ Take localized screenshots for large tablets
fastlane android import_poeditor
```
Import localized changelogs and descriptions from poeditor.json into android metadata
### android fetch_contributors
```
fastlane android fetch_contributors
```
Fetch GitHub and POEditor contributors and render a CONTRIBUTORS.md file

----

Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules/
3 changes: 0 additions & 3 deletions fastlane/package-lock.json

This file was deleted.

Loading

0 comments on commit ec1264e

Please sign in to comment.