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