aboutsummaryrefslogtreecommitdiff
path: root/src/mainmenumanager.h
Commit message (Collapse)AuthorAge
* Unlock cursor when opening consoleShadowNinja2016-03-02
|
* Move globals from main.cpp to more sane locationsCraig Robbins2015-04-01
| | | | | | | | | | | | Move debug streams to log.cpp|h Move GUI-related globals to clientlauncher Move g_settings and g_settings_path to settings.cpp|h Move g_menuclouds to clouds.cpp|h Move g_profiler to profiler.cpp|h
* Use std::string::empty() instead of size() where applicableAnton2014-12-12
|
* Create faster key cache for main game loop (client)Craig Robbins2014-11-10
|
* Add in-game key change menuMushiden2014-10-07
|
* Add support for Android 2.3+sapier2014-06-29
| | | | | | | | | | | | | There have been plenty of ppl involved in creating this version. I don't wanna mention names as I'm sure I'd forget someone so I just tell where help has been done: - The partial android versions done by various ppl - Testing on different android devices - reviewing code (especially the in core changes) - testing controls - reviewing texts A big thank you to everyone helping this to be completed!
* Replace pause and message menu by formspec onessapier2014-03-05
|
* Actually pause singleplayer game in pause menu and use lower maximum FPS in itPerttu Ahola2014-01-06
|
* GUIFormSpecMenu focus fixesKahrl2013-08-19
|
* Migrate to STL containers/algorithms.Ilya Zhuravlev2013-03-11
|
* Update Copyright YearsSfan52013-02-24
|
* Change Minetest-c55 to MinetestPilzAdam2013-02-24
|
* Add sound volume controls to ingame menuRealBadAngel2013-02-23
|
* Switch the license to be LGPLv2/later, with small parts still remaining as ↵Perttu Ahola2012-06-05
| | | | GPLv2/later, by agreement of major contributors
* Header file tweaking; mainly for speedPerttu Ahola2011-10-12
t;0gb.us@0gb.us>", "Guiseppe Bilotta (Oblomov) <guiseppe.bilotta@gmail.com>", "Jonathan Neuschafer <j.neuschaefer@gmx.net>", "Nils Dagsson Moskopp (erlehmann) <nils@dieweltistgarnichtso.net>", "Břetislav Štec (t0suj4/TBC_x)", "Aaron Suen <warr1024@gmail.com>", "Constantin Wenger (SpeedProg) <constantin.wenger@googlemail.com>", "matttpt <matttpt@gmail.com>", "JacobF <queatz@gmail.com>", "TriBlade9 <triblade9@mail.com>", "Zefram <zefram@fysh.org>", } return { name = "credits", caption = fgettext("Credits"), cbf_formspec = function(tabview, name, tabdata) local logofile = defaulttexturedir .. "logo.png" local version = core.get_version() return "image[0.5,1;" .. core.formspec_escape(logofile) .. "]" .. "label[0.5,3.2;" .. version.project .. " " .. version.string .. "]" .. "label[0.5,3.5;http://minetest.net]" .. "tablecolumns[color;text]" .. "tableoptions[background=#00000000;highlight=#00000000;border=false]" .. "table[3.5,-0.25;8.5,5.8;list_credits;" .. "#FFFF00," .. fgettext("Core Developers") .. ",," .. table.concat(core_developers, ",,") .. ",,," .. "#FFFF00," .. fgettext("Active Contributors") .. ",," .. table.concat(active_contributors, ",,") .. ",,," .. "#FFFF00," .. fgettext("Previous Core Developers") ..",," .. table.concat(previous_core_developers, ",,") .. ",,," .. "#FFFF00," .. fgettext("Previous Contributors") .. ",," .. table.concat(previous_contributors, ",,") .. "," .. ";1]" end }