BlockColor-Engine/builtin/mainmenu/tab_credits.lua

125 lines
4.6 KiB
Lua
Raw Normal View History

2017-07-19 23:36:10 +02:00
--Minetest
--Copyright (C) 2013 sapier
--
--This program is free software; you can redistribute it and/or modify
--it under the terms of the GNU Lesser General Public License as published by
2015-11-27 11:03:23 +01:00
--the Free Software Foundation; either version 3.0 of the License, or
--(at your option) any later version.
--
--This program is distributed in the hope that it will be useful,
--but WITHOUT ANY WARRANTY; without even the implied warranty of
--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
--GNU Lesser General Public License for more details.
--
--You should have received a copy of the GNU Lesser General Public License along
--with this program; if not, write to the Free Software Foundation, Inc.,
--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
--------------------------------------------------------------------------------
local blockcolor_developers = {
"MrChiantos",
}
2016-04-08 19:43:15 +02:00
local multicraft_developers = {
"Maksim Gamarnik (MoNTE48) <MoNTE48@mail.ua>",
2017-05-24 11:35:53 +02:00
"Bektur Mambetov (ubulem) <berkut87@gmail.com>",
2019-05-15 02:11:47 +02:00
"Alexander Zavrin (Ransom.00)",
2017-06-06 21:52:07 +02:00
"sfan5 <sfan5@live.de>",
2019-05-15 02:11:47 +02:00
"Stuart Jones (stujones11) <stujones111@gmail.com>",
"Jean-Patrick Guerrero (kilbith) <jeanpatrick.guerrero@gmail.com>",
"And other people who helped make the world better!",
2016-04-08 19:43:15 +02:00
}
2016-03-21 05:15:50 +01:00
local core_developers = {
"Perttu Ahola (celeron55) <celeron55@gmail.com>",
"sfan5 <sfan5@live.de>",
"ShadowNinja <shadowninja@minetest.net>",
2016-03-24 17:17:37 +01:00
"Nathanaël Courant (Nore/Ekdohibs) <nore@mesecons.net>",
2016-03-21 05:15:50 +01:00
"Loic Blot (nerzhul/nrz) <loic.blot@unix-experience.fr>",
"paramat",
2016-12-07 14:45:29 +01:00
"Craig Robbins (Zeno) <craig.d.robbins@gmail.com>",
"Auke Kok (sofar) <sofar@foo-projects.org>",
"rubenwardy <rw@rubenwardy.com>",
"Krock/SmallJoker <mk939@ymail.com>",
2016-03-21 05:15:50 +01:00
}
local active_contributors = {
"red-001 <red-001@outlook.ie> [CSM & Menu fixes]",
"Dániel Juhász (juhdanad) <juhdanad@gmail.com> [Audiovisuals: lighting]",
"numberZero [Audiovisuals: meshgen]",
"Lars Hofhansl <larsh@apache.org> [Occulusion culling, fixes]",
"Jean-Patrick G (kilbith) <jeanpatrick.guerrero@gmail.com> [Audiovisuals]",
"Vincent Glize (Dumbeldor) <vincent.glize@live.fr> [CSM]",
"bigfoot547 [CSM]",
"Rogier <rogier777@gmail.com> [Fixes]",
"Wuzzy [Audiovisuals]",
"Shara/Ezhh [Settings]",
2016-03-21 05:15:50 +01:00
}
local previous_core_developers = {
2016-03-24 17:17:37 +01:00
"BlockMen",
"Maciej Kasatkin (RealBadAngel) [RIP]",
2016-03-21 05:15:50 +01:00
"Lisa Milne (darkrose) <lisa@ltmnet.com>",
"proller",
"Ilya Zhuravlev (xyz) <xyz@minetest.net>",
"PilzAdam <pilzadam@minetest.net>",
"est31 <MTest31@outlook.com>",
"kahrl <kahrl@gmx.net>",
"Ryan Kwolek (kwolekr) <kwolekr@minetest.net>",
"sapier",
2016-03-21 05:15:50 +01:00
}
local previous_contributors = {
"Gregory Currie (gregorycu) [optimisation]",
"Diego Martínez (kaeza) <kaeza@users.sf.net>",
"T4im [Profiler]",
"TeTpaAka [Hand overriding, nametag colors]",
"HybridDog [Fixes]",
"Duane Robertson <duane@duanerobertson.com> [MGValleys]",
"neoascetic [OS X Fixes]",
"TriBlade9 <triblade9@mail.com> [Audiovisuals]",
"Jurgen Doser (doserj) <jurgen.doser@gmail.com> [Fixes]",
"MirceaKitsune <mirceakitsune@gmail.com> [Audiovisuals]",
"Guiseppe Bilotta (Oblomov) <guiseppe.bilotta@gmail.com> [Fixes]",
"matttpt <matttpt@gmail.com> [Fixes]",
"Nils Dagsson Moskopp (erlehmann) <nils@dieweltistgarnichtso.net> [Minetest Logo]",
"Jeija <jeija@mesecons.net> [HTTP, particles]",
2016-03-21 05:15:50 +01:00
}
local function buildCreditList(source)
local ret = {}
for i = 1, #source do
ret[i] = core.formspec_escape(source[i])
end
return table.concat(ret, ",,")
end
return {
2015-11-01 09:01:13 +01:00
name = "credits",
caption = fgettext("Credits"),
2016-03-21 05:15:50 +01:00
cbf_formspec = function(tabview, name, tabdata)
2017-02-01 19:12:11 +01:00
local version = core.get_version()
return "label[0.1,-0.1;Blockcolor Open Source Project, ver. " .. version.string .. "]" ..
"label[0.1,0.3;Copyright (c) 2018-2019 BlockColor Development Team]" ..
"label[0.1,0.7;Home page: https://github.com/MrChiantos/]" ..
"label[0.1,1.1;Licence: LGPLv3.0+ and CC-BY-SA 3.0]" ..
2016-03-21 05:15:50 +01:00
"tablecolumns[color;text]" ..
"tableoptions[background=#999999;highlight=#00000000;border=true]" ..
"table[0,1.6;11.8,3.8;list_credits;" ..
"#FFFF00," .. fgettext("BlockColor Developers") .. ",," ..
buildCreditList(blockcolor_developers) .. ",,," ..
2016-05-17 00:04:32 +02:00
"#FFFF00," .. fgettext("MultiCraft Developers") .. ",," ..
2017-06-06 21:52:07 +02:00
buildCreditList(multicraft_developers) .. ",,," ..
2016-05-17 00:04:32 +02:00
"#FFFF00," .. fgettext("Minetest Developers") .. ",," ..
buildCreditList(core_developers) .. ",,," ..
2016-03-21 05:15:50 +01:00
"#FFFF00," .. fgettext("Active Contributors") .. ",," ..
buildCreditList(active_contributors) .. ",,," ..
2016-03-21 05:15:50 +01:00
"#FFFF00," .. fgettext("Previous Core Developers") ..",," ..
buildCreditList(previous_core_developers) .. ",,," ..
2016-03-21 05:15:50 +01:00
"#FFFF00," .. fgettext("Previous Contributors") .. ",," ..
buildCreditList(previous_contributors) .. "," ..
2016-03-21 05:15:50 +01:00
";1]"
end
}