diff --git a/_data/credits.json b/_data/credits.json new file mode 100644 index 0000000..bfb1336 --- /dev/null +++ b/_data/credits.json @@ -0,0 +1,82 @@ +{ + "core_developers": [ + "Perttu Ahola (celeron55) [Project founder]", + "sfan5 ", + "ShadowNinja ", + "Nathanaëlle Courant (Nore/Ekdohibs) ", + "Loic Blot (nerzhul/nrz) ", + "Andrew Ward (rubenwardy) ", + "Krock/SmallJoker ", + "Lars Hofhansl ", + "v-rob ", + "Desour/DS", + "srifqi", + "Gregor Parzefall (grorp)", + "Lars Müller (luatic)" + ], + "previous_core_developers": [ + "BlockMen", + "Maciej Kasatkin (RealBadAngel) [RIP]", + "Lisa Milne (darkrose) ", + "proller", + "Ilya Zhuravlev (xyz) ", + "PilzAdam ", + "est31 ", + "kahrl ", + "Ryan Kwolek (kwolekr) ", + "sapier", + "Zeno", + "Auke Kok (sofar) ", + "Aaron Suen ", + "paramat", + "Pierre-Yves Rollo ", + "hecks", + "Jude Melton-Houghton (TurkeyMcMac) [RIP]", + "Hugues Ross ", + "Dmitry Kostenko (x2048) " + ], + "core_team": [ + "Zughy [Issue triager]", + "wsor [Issue triager]", + "Hugo Locurcio (Calinou) [Issue triager]" + ], + "contributors": [ + "cx384", + "numzero", + "AFCMS", + "sfence", + "Wuzzy", + "ROllerozxa", + "JosiahWI", + "OgelGames", + "David Heidelberg", + "1F616EMO", + "HybridDog", + "Bradley Pierce (Thresher)", + "savilli", + "Stvk imension", + "y5nw", + "chmodsayshello", + "jordan4ibanez", + "superfloh247" + ], + "previous_contributors": [ + "Nils Dagsson Moskopp (erlehmann) [Minetest logo]", + "red-001 ", + "Giuseppe Bilotta", + "HybridDog", + "ClobberXD", + "Dániel Juhász (juhdanad) ", + "MirceaKitsune ", + "Jean-Patrick Guerrero (kilbith)", + "MoNTE48", + "Constantin Wenger (SpeedProg)", + "Ciaran Gultnieks (CiaranG)", + "Paul Ouellette (pauloue)", + "stujones11", + "Rogier ", + "Gregory Currie (gregorycu)", + "JacobF", + "Jeija " + ] +} diff --git a/_data/credits.yml b/_data/credits.yml deleted file mode 100644 index 5ae94e9..0000000 --- a/_data/credits.yml +++ /dev/null @@ -1,75 +0,0 @@ -active_core_devs: [ - "Perttu Ahola (celeron55) <celeron55@gmail.com>", - "sfan5 <sfan5@live.de>", - "ShadowNinja <shadowninja@minetest.net>", - "Nathanaëlle Courant (Nore/Ekdohibs) <nore@mesecons.net>", - "Loic Blot (nerzhul/nrz) <loic.blot@unix-experience.fr>", - "Andrew Ward (rubenwardy) <Contact>", - "Krock/SmallJoker", - "Lars Hofhansl", - "v-rob", - "hecks", - "Hugues Ross", - "Dmitry Kostenko (x2048)", -] - -active_core_team: [ - "Zughy [Issue triager]", -] - -previous_core_devs: [ - "BlockMen", - "Maciej Kasatkin (RealBadAngel) [RIP]", - "Lisa Milne (darkrose)", - "proller", - "Ilya Zhuravlev (xyz)", - "PilzAdam", - "est31", - "kahrl", - "Ryan Kwolek (kwolekr)", - "sapier", - "Zeno", - "Auke Kok (sofar)", - "Aaron Suen", - "paramat", - "Pierre-Yves Rollo", - "Jude Melton-Houghton [Optimizations, bugfixes]", -] - - -active_contributors: [ - "Wuzzy [Features, translations, devtest]", - "Lars Müller [Lua optimizations and fixes]", - "paradust7 [Performance, fixes, Irrlicht refactoring]", - "Desour [Fixes]", - "ROllerozxa [Main menu]", - "savilli [Bugfixes]", - "Lexi Hale [Particlespawner animation]", - "Liso [Shadow Mapping]", - "JosiahWI [Fixes, build system]", - "numzero [Graphics and rendering]", - "HybridDog [Fixes]", - "NeroBurner [Joystick]", - "pecksin [Clickable web links]", - "Daroc Alden [Fixes]", - "Jean-Patrick Guerrero (kilbith) [Fixes]", -] - -previous_contributors: [ - "Nils Dagsson Moskopp (erlehmann) [Minetest logo]", - "red-001", - "Giuseppe Bilotta", - "ClobberXD", - "Dániel Juhász (juhdanad)", - "MirceaKitsune", - "MoNTE48", - "Constantin Wenger (SpeedProg)", - "Ciaran Gultnieks (CiaranG)", - "Paul Ouellette (pauloue)", - "stujones11", - "srifqi", - "Rogier", - "Gregory Currie (gregorycu)", - "JacobF", - "Jeija", -] diff --git a/credits.html b/credits.html index d621009..993ef92 100644 --- a/credits.html +++ b/credits.html @@ -28,21 +28,21 @@

Core Team

Active Core Developers

    - {% for x in site.data.credits.active_core_devs %} + {% for x in site.data.credits.core_developers %}
  • {{ x }}
  • {% endfor %}

Active Core Team Members

    - {% for x in site.data.credits.active_core_team %} + {% for x in site.data.credits.core_team %}
  • {{ x }}
  • {% endfor %}

Previous Core Developers

    - {% for x in site.data.credits.previous_core_devs %} + {% for x in site.data.credits.previous_core_developers %}
  • {{ x }}
  • {% endfor %}
@@ -58,7 +58,7 @@

Contributors

Active

    - {% for x in site.data.credits.active_contributors %} + {% for x in site.data.credits.contributors %}
  • {{ x }}
  • {% endfor %}