]> git.lizzy.rs Git - minetest.git/blob - builtin/mainmenu/tab_credits.lua
Credits tab: fix accidental merger of two contributors
[minetest.git] / builtin / mainmenu / tab_credits.lua
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 --------------------------------------------------------------------------------
19
20 tab_credits = {
21         name = "credits",
22         caption = fgettext("Credits"),
23         cbf_formspec = function (tabview, name, tabdata)
24                         local logofile = defaulttexturedir .. "logo.png"
25                         return "label[0.5,3.2;Minetest " .. core.get_version() .. "]" ..
26                                 "label[0.5,3.5;http://minetest.net]" ..
27                                 "image[0.5,1;" .. core.formspec_escape(logofile) .. "]" ..
28                                 "tablecolumns[color;text]" ..
29                                 "tableoptions[background=#00000000;highlight=#00000000;border=false]" ..
30                                 "table[3.5,-0.25;8.5,5.8;list_credits;" ..
31                                 "#FFFF00," .. fgettext("Core Developers") .."," ..
32                                 ",Perttu Ahola (celeron55) <celeron55@gmail.com>,"..
33                                 ",Ryan Kwolek (kwolekr) <kwolekr@minetest.net>,"..
34                                 ",PilzAdam <pilzadam@minetest.net>," ..
35                                 ",sfan5 <sfan5@live.de>,"..
36                                 ",kahrl <kahrl@gmx.net>,"..
37                                 ",sapier,"..
38                                 ",ShadowNinja <shadowninja@minetest.net>,"..
39                                 ",Nathanael Courant (Nore/Ekdohibs) <nore@mesecons.net>,"..
40                                 ",BlockMen,"..
41                                 ",Craig Robbins (Zeno),"..
42                                 ",Loic Blot (nerzhul/nrz) <loic.blot@unix-experience.fr>,"..
43                                 ",Mat Gregory (paramat),"..
44                                 ",est31 <MTest31@outlook.com>," ..
45                                 ",,"..
46                                 "#FFFF00," .. fgettext("Active Contributors") .. "," ..
47                                 ",SmallJoker <mk939@ymail.com>," ..
48                                 ",Andrew Ward (rubenwardy) <rubenwardy@gmail.com>," ..
49                                 ",Aaron Suen <warr1024@gmail.com>," ..
50                                 ",Sokomine <wegwerf@anarres.dyndns.org>," ..
51                                 ",Břetislav Štec (t0suj4/TBC_x)," ..
52                                 ",TeTpaAka," ..
53                                 ",Jean-Patrick G (kilbith) <jeanpatrick.guerrero@gmail.com>," ..
54                                 ",Rui <mrrst0914@gmail.com>," ..
55                                 ",Diego Martinez (kaeza) <kaeza@users.sf.net>," ..
56                                 ",," ..
57                                 "#FFFF00," .. fgettext("Previous Core Developers") .."," ..
58                                 ",Maciej Kasatkin (RealBadAngel) <maciej.kasatkin@o2.pl>,"..
59                                 ",Lisa Milne (darkrose) <lisa@ltmnet.com>," ..
60                                 ",proller," ..
61                                 ",Ilya Zhuravlev (xyz) <xyz@minetest.net>," ..
62                                 ",," ..
63                                 "#FFFF00," .. fgettext("Previous Contributors") .. "," ..
64                                 ",Vanessa Ezekowitz (VanessaE) <vanessaezekowitz@gmail.com>,"..
65                                 ",Jurgen Doser (doserj) <jurgen.doser@gmail.com>,"..
66                                 ",Gregory Currie (gregorycu)," ..
67                                 ",Jeija <jeija@mesecons.net>,"..
68                                 ",MirceaKitsune <mirceakitsune@gmail.com>,"..
69                                 ",dannydark <the_skeleton_of_a_child@yahoo.co.uk>,"..
70                                 ",0gb.us <0gb.us@0gb.us>,"..
71                                 ",Guiseppe Bilotta (Oblomov) <guiseppe.bilotta@gmail.com>,"..
72                                 ",Jonathan Neuschafer <j.neuschaefer@gmx.net>,"..
73                                 ",Nils Dagsson Moskopp (erlehmann) <nils@dieweltistgarnichtso.net>,"..
74                                 ",Constantin Wenger (SpeedProg) <constantin.wenger@googlemail.com>,"..
75                                 ",matttpt <matttpt@gmail.com>,"..
76                                 ",JacobF <queatz@gmail.com>,"..
77                                 ",TriBlade9 <triblade9@mail.com>,"..
78                                 ",Zefram <zefram@fysh.org>,"..
79                                 ";1]"
80                         end
81         }