]> git.lizzy.rs Git - dragonfireclient.git/blob - builtin/mainmenu/tab_credits.lua
Credits: Make that easy to add/remove
[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 local core_developers = {
21         "Perttu Ahola (celeron55) <celeron55@gmail.com>",
22         "Ryan Kwolek (kwolekr) <kwolekr@minetest.net>",
23         "PilzAdam <pilzadam@minetest.net>",
24         "sfan5 <sfan5@live.de>",
25         "kahrl <kahrl@gmx.net>",
26         "sapier",
27         "ShadowNinja <shadowninja@minetest.net>",
28         "Nathanael Courant (Nore/Ekdohibs) <nore@mesecons.net>",
29         "BlockMen",
30         "Craig Robbins (Zeno)",
31         "Loic Blot (nerzhul/nrz) <loic.blot@unix-experience.fr>",
32         "Mat Gregory (paramat)",
33         "est31 <MTest31@outlook.com>",
34 }
35
36 local active_contributors = {
37         "SmallJoker <mk939@ymail.com>",
38         "Andrew Ward (rubenwardy) <rubenwardy@gmail.com>",
39         "Aaron Suen <warr1024@gmail.com>",
40         "Sokomine <wegwerf@anarres.dyndns.org>",
41         "Břetislav Štec (t0suj4/TBC_x)",
42         "TeTpaAka",
43         "Jean-Patrick G (kilbith) <jeanpatrick.guerrero@gmail.com>",
44         "Diego Martinez (kaeza) <kaeza@users.sf.net>",
45 }
46
47 local previous_core_developers = {
48         "Maciej Kasatkin (RealBadAngel) <maciej.kasatkin@o2.pl>",
49         "Lisa Milne (darkrose) <lisa@ltmnet.com>",
50         "proller",
51         "Ilya Zhuravlev (xyz) <xyz@minetest.net>",
52 }
53
54 local previous_contributors = {
55         "Vanessa Ezekowitz (VanessaE) <vanessaezekowitz@gmail.com>",
56         "Jurgen Doser (doserj) <jurgen.doser@gmail.com>",
57         "Gregory Currie (gregorycu)",
58         "Jeija <jeija@mesecons.net>",
59         "MirceaKitsune <mirceakitsune@gmail.com>",
60         "dannydark <the_skeleton_of_a_child@yahoo.co.uk>",
61         "0gb.us <0gb.us@0gb.us>",
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         "TriBlade9 <triblade9@mail.com>",
69         "Zefram <zefram@fysh.org>",
70 }
71
72 tab_credits = {
73         name = "credits",
74         caption = fgettext("Credits"),
75         cbf_formspec = function(tabview, name, tabdata)
76                 local logofile = defaulttexturedir .. "logo.png"
77                 return "image[0.5,1;" .. core.formspec_escape(logofile) .. "]" ..
78                         "label[0.5,3.2;Minetest " .. core.get_version() .. "]" ..
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 }