]> git.lizzy.rs Git - dragonfireclient.git/blob - builtin/mainmenu/tab_credits.lua
Update credits
[dragonfireclient.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                                 "textlist[3.5,-0.25;8.5,5.8;list_credits;" ..
29                                 "#FFFF00" .. fgettext("Core Developers") .."," ..
30                                 "Perttu Ahola (celeron55) <celeron55@gmail.com>,"..
31                                 "Ryan Kwolek (kwolekr) <kwolekr@minetest.net>,"..
32                                 "PilzAdam <pilzadam@minetest.net>," ..
33                                 "Lisa Milne (darkrose) <lisa@ltmnet.com>,"..
34                                 "Maciej Kasatkin (RealBadAngel) <mk@realbadangel.pl>,"..
35                                 "sfan5 <sfan5@live.de>,"..
36                                 "kahrl <kahrl@gmx.net>,"..
37                                 "sapier,"..
38                                 "ShadowNinja <shadowninja@minetest.net>,"..
39                                 "Nathanael Courant (Nore/Novatux) <nore@mesecons.net>,"..
40                                 "BlockMen,"..
41                                 "Craig Robbins (Zeno),"..
42                                 "Loic Blot (nerzhul/nrz),"..
43                                 "paramat,"..
44                                 ","..
45                                 "#FFFF00" .. fgettext("Active Contributors") .. "," ..
46                                 "SmallJoker <mk939@ymail.com>," ..
47                                 "est31 <MTest31@outlook.com>," ..
48                                 "gregorycu,"..
49                                 "Andrew Ward (rubenwardy) <rubenwardy@gmail.com>," ..
50                                 "TriBlade9 <triblade9@mail.com>,"..
51                                 "Zefram <zefram@fysh.org>,"..
52                                 "," ..
53                                 "#FFFF00" .. fgettext("Previous Contributors") .. "," ..
54                                 "Vanessa Ezekowitz (VanessaE) <vanessaezekowitz@gmail.com>,"..
55                                 "Jurgen Doser (doserj) <jurgen.doser@gmail.com>,"..
56                                 "Jeija <jeija@mesecons.net>,"..
57                                 "MirceaKitsune <mirceakitsune@gmail.com>,"..
58                                 "dannydark <the_skeleton_of_a_child@yahoo.co.uk>,"..
59                                 "0gb.us <0gb.us@0gb.us>,"..
60                                 "proller <proler@gmail.com>,"..
61                                 "Ilya Zhuravlev (xyz) <xyz@minetest.net>,"..
62                                 "Guiseppe Bilotta (Oblomov) <guiseppe.bilotta@gmail.com>,"..
63                                 "Jonathan Neuschafer <j.neuschaefer@gmx.net>,"..
64                                 "Nils Dagsson Moskopp (erlehmann) <nils@dieweltistgarnichtso.net>,"..
65                                 "Constantin Wenger (SpeedProg) <constantin.wenger@googlemail.com>,"..
66                                 "matttpt <matttpt@gmail.com>,"..
67                                 "JacobF <queatz@gmail.com>,"..
68                                 ";0;true]"
69                         end
70         }