summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-02-18Bump version to 0.4.120.4.12Perttu Ahola
2015-02-18Add modname convention checkingNovatux
Fixes #2037
2015-02-18Fix serverlist includeLoic Blot
2015-02-18Server: announce MIN/MAX protocol version supported to serverlist. Client: ↵est31
check serverlist Client now informs about incompatible servers from the list, this permits to prevent the protocol movements. Server announces its supported protocol versions to master server
2015-02-18Fix map_seed not changed when creating a new world after login to anotherfz72
2015-02-18Increase default font_sizeBlockMen
2015-02-18Fix font_size under windowsBlockMen
2015-02-18Use fixed size for builtin menus on non-android platformsPerttu Ahola
2015-02-18Fix unused (and so, broken) enable_rollback_recording. This option must be ↵Loic Blot
reloaded at server loop but loaded when server starts, for data consistency (not a hot load variable)
2015-02-18Grab GUIChatConsole::m_font, fixes segfault when changing font_sizeKahrl
2015-02-14Add german and french translation for minetest.desktopLoic Blot
This fixes #1573
2015-02-14Update czech translationJakub Vaněk
2015-02-14Minor fixes in translationsngosang
2015-02-14Fix issue #2279. ok @zeno-Loic Blot
2015-02-14Fix .zip extraction (mod store)ngosang
2015-02-14Fix store.lua bug: default screenshotRui
2015-02-14Fix tab_mods.lua: default screenshot patchRui
https://forum.minetest.net/viewtopic.php?f=6&t=11201 Fixed this bug.
2015-02-14Fix Android build of narrow_to_wideShadowNinja
2015-02-14Fix FTBFS on GNU/Hurd platformMarkus Koschany
Minetest fails to build on GNU/Hurd due to a name clash with OSX/Apple, both are defining the __MACH__ keyword. This commit fixes the issue.
2015-02-14README.txt: Simplify initial build steps by using git to fetch sourcesest31
Also simplify wget steps and apt-get install zlib1g-dev libjsoncpp-dev
2015-02-14Fix Exit to OS button focus in Pause Menungosang
2015-02-14Fix crash on passing false as value in table to table.copy(t)est31
Fixes #2293.
2015-02-13Fix gettext on MSVCBlockMen
2015-02-08Hud: Modify Y-positioning of health/breath starbars to prevent overlapping ↵kwolekr
with Hotbar
2015-02-07Fix rebase bug, make render loop use cache settinggregorycu
2015-02-06Fix warnings in CGUITTFont.cppCraig Robbins
2015-02-05Fix gettextShadowNinja
2015-02-05Reduce gettext wide/narrow and string/char* conversionsShadowNinja
2015-02-05Fix translation memory leakShadowNinja
2015-02-05Fix translation finding of overlay messagesShadowNinja
2015-02-05Add wstrgettext to list of translation update keywordsShadowNinja
2015-02-05Mgv7 mountains: Remove divide by zero code that creates vast wallsparamat
Conf.example: Add mgv7 cave1, cave2 noiseparams Mgv7: Make skipping of mountain code relative to y=0 not water level Mountain noise offset now -0.6 to compensate Tune chance of large caves
2015-02-05Fix performance regressionCraig Robbins
2015-02-05Give full breath after deathSmallJoker
2015-02-05Fix dying of lava causes repeated death This is a bugfix for issue #81gregorycu
2015-02-04Change assignment to global in a function to warningrubenwardy
2015-02-05Suppress 4 gcc 4.9.2 warnings in CGUITTFont.cppngosang
2015-02-04Fix download URLSteven Smith
2015-02-02Fix getCraftRecipe returing wrong reciep due to way to unspecific output ↵sapier
matching
2015-02-02Fix some MSVC-specific warnings and add debug path as an MSVC directorykwolekr
2015-02-02Create minidump on fatal Win32 exceptionskwolekr
Remove software exception translator function, simplifying exception handler macros. FatalSystemExceptions are left unhandled.
2015-02-01Randomly generate seed if field blank for any Settings instancekwolekr
2015-01-31Fix NDT_GLASSLIKE normalsKahrl
Remove inventorycube() workaround for default:glass in minimal game
2015-01-31Fix local map saving when joining a local server from the server tabCraig Robbins
Disables local map saving for all local server types See: https://github.com/minetest/minetest/issues/2024
2015-01-28Fix uninitialized variable m_database_delete in Database_SQLite3Kahrl
This fixes issue #2219
2015-01-27Prevent null concatenation when /deleteblocks is provided an incorrect formatkwolekr
2015-01-27Write common mapgen params to map_meta.txt on world initializationkwolekr
2015-01-27Fix a crash (assert) when client set serial version < 24 in INITLoic Blot
When SER_FMT_VER_LOWEST is set to zero, then the test is stupid in INIT because all client works. In mapblock we check if client's serialization version is < 24, but if client sent serialization version < 24 (15 for example) the server set it and tried to send nodes, then BOOM To resolve the problem: * Create a different CLIENT_MIN_VERSION to handle this problem * Remove the exception * Use an assert in case of bad developer code
2015-01-27Fix missing map_meta.txt error when creating new worldskwolekr
A missing map_meta.txt should be treated simply as if there were a blank file.
2015-01-27Revert "Fix a crash (assert) when client set serial version < 24 in INIT ↵Craig Robbins
command SER_FMT_VER_LOWEST is set to zero, then the test is stupid in INIT because all client works. In mapblock we check if client's serialization version is < 24, but if client sent serialization version < 24 (15 for example) the server set it and tried to send nodes, then BOOM" nerzhul is (may?) be working on a new solution. For the moment this is reverted because old worlds cannot be loaded (see discussion on github for the commit). This reverts commit 800d19270250bb13cc6b2d330199815bf8e96446.