Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Forceloading: Transient forceloads | raymoo | 2016-10-03 | 2 | -12/+37 | |
| | | | | | Adds a flag to forceload_block which lets you turn off persistence for that forceload. | |||||
* | Formspec: Add container[] and container_end[] elements | rubenwardy | 2016-10-03 | 3 | -45/+99 | |
| | ||||||
* | Allow nothing to be selected from formspec parameters | sfan5 | 2016-10-02 | 1 | -3/+1 | |
| | ||||||
* | Fix typo in core.after (#4560) | Rui | 2016-10-01 | 1 | -1/+1 | |
| | ||||||
* | Update default controls in README.txt | Wuzzy | 2016-09-30 | 1 | -28/+36 | |
| | ||||||
* | Mgv7: Avoid mid-air spawn on disabled mountain terrain, optimise function | paramat | 2016-09-30 | 1 | -8/+18 | |
| | | | | | | | | 'getSpawnLevelAtPoint()' did not account for disabled mountains, it was possible to be spawned in mid-air where a mountain surface would have been. Avoid check for river area if rivers are disabled. | |||||
* | Fix android build | est31 | 2016-09-30 | 1 | -2/+5 | |
| | | | | Fixes #4493. | |||||
* | Only include keycode unittests in client build (fixes #4559) | sfan5 | 2016-09-29 | 2 | -1/+5 | |
| | ||||||
* | Add keycode.cpp unittests | sfan5 | 2016-09-25 | 2 | -0/+130 | |
| | ||||||
* | Rewrite keycode.cpp (Keycode handling & names) | sfan5 | 2016-09-25 | 2 | -271/+286 | |
| | ||||||
* | Conf.example: Re-add deleted noise parameter documentation | paramat | 2016-09-23 | 2 | -1/+41 | |
| | | | | | | | | Re-add documentation of noise parameter formats. Re-add 'mgv5_np_ground' noise parameters in group format. Both these were deleted through auto-generation of conf.example. Add note to builtin/mainmenu/dlg_settings_advanced.lua that this documentation must be preserved. | |||||
* | Update library versions in buildbot | sfan5 | 2016-09-21 | 2 | -61/+54 | |
| | | | | | | | | The libraries updated in this commit were built with a set of scripts: https://gist.github.com/sfan5/780c24313c164d34634e18677683b9a3 Building new library versions or just using a different MinGW version is now way easier. This means Windows builds no longer need to use ancient library versions just because nobody knows how to build them. | |||||
* | Don't use ZLIB_WINAPI if the required DLL is not provided to CMake | sfan5 | 2016-09-21 | 2 | -4/+11 | |
| | | | | | This allows you to use an stdcall zlib (zlib1.dll instead of zlibwapi.dll) when building Minetest for win32. | |||||
* | Do not serialize empty NodeMetadata | sfan5 | 2016-09-21 | 2 | -3/+23 | |
| | | | | | This commit fixes #4516, though note that this will gradually fix MapBlocks as they are used/modified and thus re-serialized. | |||||
* | Builtin: Change error to warning for light_source > 14 | paramat | 2016-09-21 | 1 | -1/+3 | |
| | ||||||
* | Increase default font size by 1 | James Stevenson | 2016-09-21 | 4 | -6/+6 | |
| | ||||||
* | Fix a typo and use proper deprecation notification system | est31 | 2016-09-19 | 1 | -1/+1 | |
| | | | | | | | Fix a typo pointed out by @thecow275. Also, use the deprecated notification system which respects the deprecated_lua_api_handling setting. | |||||
* | Register.lua: Throw error if node 'light_source' > core.LIGHT_MAX | paramat | 2016-09-17 | 4 | -3/+16 | |
| | | | | | | | | Add 'core.LIGHT_MAX = 14' to builtin/game/constants.lua with the intention to replace misplaced 'default.LIGHT_MAX = 14' in Minetest Game. Add comment in light.h requiring the constant be changed in both places. Add lighting bug warning to note in lua_api.txt. There are hundreds of mod uses of 15 which causes a lighting bug. | |||||
* | Lua_api.txt: Add note of maximum value for node 'light_source' | paramat | 2016-09-15 | 1 | -1/+1 | |
| | | | | | Maximum is 14. A value of 15 (reserved for direct sunlight) causes a lighting bug. | |||||
* | Add an [invert:<mode> texture modifier | Thomas--S | 2016-09-15 | 2 | -2/+50 | |
| | | | | | | Inverts the given channels of the base image. Mode may contain the characters "r", "g", "b", "a". Only the channels that are mentioned in the mode string will be inverted. | |||||
* | Collision: Improve performance by combining 6 vectors into 1 using a struct | ShadowNinja | 2016-09-15 | 1 | -64/+58 | |
| | ||||||
* | Decorations: Generalise 'spawn by' to be used by all decoration types | paramat | 2016-09-14 | 4 | -85/+80 | |
| | | | | In lua_api.txt, make clear that 'place on' and 'spawn by' can be lists. | |||||
* | Allow escaping of texture names when passed as an argument to a modifier | sfan5 | 2016-09-14 | 2 | -23/+56 | |
| | ||||||
* | Fix "unknown CMake command "check_library_exists" (#4517) | Eric Mountain | 2016-09-13 | 1 | -0/+1 | |
| | | | | | | | | | | | | | Adds CMakeLists.txt include to fix this issue: $ cmake . -DBUILD_SERVER=TRUE -DBUILD_CLIENT=FALSE \ -DCMAKE_BUILD_TYPE=Release -DENABLE_CURL=TRUE -DENABLE_CURSES=FALSE \ -DENABLE_FREETYPE=TRUE -DENABLE_GETTEXT=FALSE \ -DENABLE_POSTGRESQL=FALSE -DENABLE_SOUND=FALSE -DENABLE_LUAJIT=TRUE \ -DIRRLICHT_SOURCE_DIR=$HOME/irrlicht-1.8.4 -LH ... CMake Error at src/CMakeLists.txt:339 (check_library_exists): Unknown CMake command "check_library_exists". ... | |||||
* | Plantlike meshoptions: fix degrotate. (#4512) | Auke Kok | 2016-09-12 | 1 | -1/+1 | |
| | | | | This snuck in with the meshoptions patch and accidentally kills degrotate plants. Thanks to @hybriddog for finding this. | |||||
* | fix missing parameters in some mentions of entity callbacks | raymoo | 2016-09-12 | 1 | -3/+5 | |
| | ||||||
* | Return nil on empty get_area() (#4508) | James Stevenson | 2016-09-10 | 2 | -0/+4 | |
| | ||||||
* | Anticheat: Use the physics_override modifiers aswell | SmallJoker | 2016-09-09 | 1 | -44/+44 | |
| | ||||||
* | Make getStackMax return the correct maximal stack size | SmallJoker | 2016-09-08 | 3 | -7/+5 | |
| | ||||||
* | Add minetest.unregister_item and minetest.register_alias_force | paly2 | 2016-09-08 | 8 | -3/+121 | |
| | ||||||
* | Run updatepo.sh | est31 | 2016-08-30 | 31 | -4174/+8285 | |
| | ||||||
* | Translated using Weblate (Danish) | Rui | 2016-08-30 | 1 | -4/+4 | |
| | | | | | | Currently translated at 30.2% (271 of 895 strings) Don't end with '\n'. | |||||
* | Translated using Weblate (Japanese) | Rui | 2016-08-30 | 1 | -102/+106 | |
| | | | | | | Currently translated at 50.0% (448 of 895 strings) This is a merger of two commits. | |||||
* | Translated using Weblate (Danish) | Thomas Wagner Nielsen | 2016-08-30 | 1 | -31/+39 | |
| | | | | Currently translated at 27.3% (245 of 895 strings) | |||||
* | Translated using Weblate (German) | bse666 | 2016-08-30 | 1 | -6/+12 | |
| | | | | Currently translated at 98.5% (882 of 895 strings) | |||||
* | Translated using Weblate (Polish) | Mateusz Mendel | 2016-08-30 | 1 | -18/+47 | |
| | | | | Currently translated at 42.4% (380 of 895 strings) | |||||
* | Translated using Weblate (Polish) | Jakub Mendel | 2016-08-30 | 1 | -355/+772 | |
| | | | | Currently translated at 42.4% (380 of 895 strings) | |||||
* | Translated using Weblate (Portuguese (Brazil)) | Bruno Borges | 2016-08-30 | 1 | -237/+493 | |
| | | | | | | Currently translated at 87.8% (786 of 895 strings) Enhancements | |||||
* | Translated using Weblate (Portuguese) | Bruno Borges | 2016-08-30 | 1 | -8/+11 | |
| | | | | Currently translated at 64.9% (581 of 895 strings) | |||||
* | Translated using Weblate (Serbian (cyrillic)) | lisacvuk | 2016-08-30 | 1 | -25/+42 | |
| | | | | Currently translated at 33.2% (298 of 895 strings) | |||||
* | Translated using Weblate (French) | Jean-Baptiste | 2016-08-30 | 1 | -4/+3 | |
| | | | | Currently translated at 99.5% (891 of 895 strings) | |||||
* | Translated using Weblate (French) | Onyx Steinheim | 2016-08-30 | 1 | -43/+39 | |
| | | | | | | Currently translated at 99.4% (890 of 895 strings) This is a merger of two commits. | |||||
* | Translated using Weblate (Chinese (Taiwan)) | Jeff Huang | 2016-08-30 | 1 | -69/+58 | |
| | | | | Currently translated at 100.0% (895 of 895 strings) | |||||
* | Document keymap_autorun in settingtypes.txt and minetest.conf.example (#4486) | Rui | 2016-08-30 | 3 | -0/+11 | |
| | ||||||
* | Update minetest.conf.example and settings_translation_file.cpp | est31 | 2016-08-30 | 2 | -17/+20 | |
| | ||||||
* | Fix background formspec elements from interfering with each other | rubenwardy | 2016-08-29 | 2 | -30/+33 | |
| | | | | Fixes #4397 | |||||
* | Settingtypes.txt: Clarify comments, correct spelling | red-001 | 2016-08-29 | 1 | -12/+12 | |
| | ||||||
* | Builtin: Disallow registering users with the same name | SmallJoker | 2016-08-29 | 1 | -0/+16 | |
| | | | | | Prevents duplicate names: 'NickName', 'nickname', 'NICKNAME'. Skips already registered users, so they can connect as usual. | |||||
* | Allow fields to choose whether they close on enter press | rubenwardy | 2016-08-27 | 3 | -13/+45 | |
| | ||||||
* | Submit name of field on enter key press | rubenwardy | 2016-08-27 | 2 | -1/+14 | |
| |