tab_credits.lua 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. --Minetest
  2. --Copyright (C) 2013 sapier
  3. --
  4. --This program is free software; you can redistribute it and/or modify
  5. --it under the terms of the GNU Lesser General Public License as published by
  6. --the Free Software Foundation; either version 2.1 of the License, or
  7. --(at your option) any later version.
  8. --
  9. --This program is distributed in the hope that it will be useful,
  10. --but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. --GNU Lesser General Public License for more details.
  13. --
  14. --You should have received a copy of the GNU Lesser General Public License along
  15. --with this program; if not, write to the Free Software Foundation, Inc.,
  16. --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  17. --------------------------------------------------------------------------------
  18. local core_developers = {
  19. "Perttu Ahola (celeron55) <celeron55@gmail.com>",
  20. "Ryan Kwolek (kwolekr) <kwolekr@minetest.net>",
  21. "PilzAdam <pilzadam@minetest.net>",
  22. "sfan5 <sfan5@live.de>",
  23. "kahrl <kahrl@gmx.net>",
  24. "sapier",
  25. "ShadowNinja <shadowninja@minetest.net>",
  26. "Nathanaël Courant (Nore/Ekdohibs) <nore@mesecons.net>",
  27. "Loic Blot (nerzhul/nrz) <loic.blot@unix-experience.fr>",
  28. "Matt Gregory (paramat)",
  29. "est31 <MTest31@outlook.com>",
  30. "Craig Robbins (Zeno) <craig.d.robbins@gmail.com>",
  31. "Auke Kok (sofar) <sofar@foo-projects.org>",
  32. "Andrew Ward (rubenwardy) <rubenwardy@gmail.com>",
  33. }
  34. local active_contributors = {
  35. "Duane Robertson <duane@duanerobertson.com>",
  36. "SmallJoker <mk939@ymail.com>",
  37. "Lars Hofhansl <larsh@apache.org>",
  38. "Jeija <jeija@mesecons.net>",
  39. "Gregory Currie (gregorycu)",
  40. "Sokomine <wegwerf@anarres.dyndns.org>",
  41. "TeTpaAka",
  42. "Jean-Patrick G (kilbith) <jeanpatrick.guerrero@gmail.com>",
  43. "Diego Martínez (kaeza) <kaeza@users.sf.net>",
  44. "Dániel Juhász (juhdanad) <juhdanad@gmail.com>",
  45. "Rogier <rogier777@gmail.com>",
  46. }
  47. local previous_core_developers = {
  48. "BlockMen",
  49. "Maciej Kasatkin (RealBadAngel) <maciej.kasatkin@o2.pl>",
  50. "Lisa Milne (darkrose) <lisa@ltmnet.com>",
  51. "proller",
  52. "Ilya Zhuravlev (xyz) <xyz@minetest.net>",
  53. }
  54. local previous_contributors = {
  55. "Vanessa Ezekowitz (VanessaE) <vanessaezekowitz@gmail.com>",
  56. "Jurgen Doser (doserj) <jurgen.doser@gmail.com>",
  57. "MirceaKitsune <mirceakitsune@gmail.com>",
  58. "dannydark <the_skeleton_of_a_child@yahoo.co.uk>",
  59. "0gb.us <0gb.us@0gb.us>",
  60. "Guiseppe Bilotta (Oblomov) <guiseppe.bilotta@gmail.com>",
  61. "Jonathan Neuschafer <j.neuschaefer@gmx.net>",
  62. "Nils Dagsson Moskopp (erlehmann) <nils@dieweltistgarnichtso.net>",
  63. "Břetislav Štec (t0suj4/TBC_x)",
  64. "Aaron Suen <warr1024@gmail.com>",
  65. "Constantin Wenger (SpeedProg) <constantin.wenger@googlemail.com>",
  66. "matttpt <matttpt@gmail.com>",
  67. "JacobF <queatz@gmail.com>",
  68. "TriBlade9 <triblade9@mail.com>",
  69. "Zefram <zefram@fysh.org>",
  70. }
  71. return {
  72. name = "credits",
  73. caption = fgettext("Credits"),
  74. cbf_formspec = function(tabview, name, tabdata)
  75. local logofile = defaulttexturedir .. "logo.png"
  76. local version = core.get_version()
  77. return "image[0.5,1;" .. core.formspec_escape(logofile) .. "]" ..
  78. "label[0.5,3.2;" .. version.project .. " " .. version.string .. "]" ..
  79. "label[0.5,3.5;http://minetest.net]" ..
  80. "tablecolumns[color;text]" ..
  81. "tableoptions[background=#00000000;highlight=#00000000;border=false]" ..
  82. "table[3.5,-0.25;8.5,5.8;list_credits;" ..
  83. "#FFFF00," .. fgettext("Core Developers") .. ",," ..
  84. table.concat(core_developers, ",,") .. ",,," ..
  85. "#FFFF00," .. fgettext("Active Contributors") .. ",," ..
  86. table.concat(active_contributors, ",,") .. ",,," ..
  87. "#FFFF00," .. fgettext("Previous Core Developers") ..",," ..
  88. table.concat(previous_core_developers, ",,") .. ",,," ..
  89. "#FFFF00," .. fgettext("Previous Contributors") .. ",," ..
  90. table.concat(previous_contributors, ",,") .. "," ..
  91. ";1]"
  92. end
  93. }