Difference between revisions of "Changelog"

From Minetest Developer Wiki
Jump to navigation Jump to search
(Write changelog for 0.4.13)
(→‎Client / Audiovisuals: add double-click)
 
(343 intermediate revisions by 17 users not shown)
Line 1: Line 1:
 
Note that not all changes made to the code between releases are listed here.  Fixes to bugs that were introduced after the previous release, small internal changes, code style fixes, and changes of the like are not listed.  If you want a list of ''every'' change made between releases see the [https://github.com/minetest/minetest/commits/master commit log].
 
Note that not all changes made to the code between releases are listed here.  Fixes to bugs that were introduced after the previous release, small internal changes, code style fixes, and changes of the like are not listed.  If you want a list of ''every'' change made between releases see the [https://github.com/minetest/minetest/commits/master commit log].
  
 +
==  5.7.0 → 5.8.0 ==
  
<span style="color: #B00; font-size: large">Please, do '''not''' add individual changes to this page without adding previous changes. Doing so only serves to add confusion when someone tries to update the page.</span>
+
=== Deprecations and compatibility notes ===
 +
* '''Minetest Game is no longer the default game and will no longer be shipped by Minetest.''' If you want it back, install it by using the “Content” tab
 +
* <code>lua_api.txt</code> has been converted to Markdown and renamed to <code>lua_api.md</code>
 +
* Android now builds via CMake (''sfan5'')
 +
* Compiling: C++17 support is now required
 +
* Node definition field <code>air_equivalent</code> is now documented—as deprecated.
 +
* Reading/defining initial object properties directly from an entity definition is deprecated; they should be moved to <code>initial_properties</code>
  
== 0.4.12 → 0.4.13 ==
+
=== Client / Audiovisuals ===
 +
* Main menu: Redesign and unify settings interface (''rubenwardy'', ''grorp'', icon by ''Zughy'')
 +
* Main menu: better prompt to install a game when none is installed (''ROllerozxa'')
 +
* Main menu: various fixes (''grorp'', ''ROllerozxa'')
 +
* ContentDB GUI: Load package list asynchronously (''grorp'')
 +
* Option to invert direction or disable mouse wheel for hotbar item selection (''srifqi'')
 +
* Inventory mouse shortcut improvements (''OgelGames'')
 +
** Holding down <kbd>Shift</kbd>+<kbd>click</kbd> while moving the mouse over item slots now continously moves items to other inventory (if available)
 +
** Press <kbd>Shift</kbd>+<kbd>click</kbd> on the crafting output slot to craft and move result to inventory
 +
*** <kbd>Left mouse button</kbd>: Craft as many as possible
 +
*** <kbd>Mouse wheel</kbd>: Craft 10 times
 +
*** <kbd>Right mouse button</kbd>: Craft once
 +
** Drag an item stack over empty slots to split stacks evenly
 +
** Hold down <kbd>Left mouse button</kbd> while holding an item stack and move the cursor over the slots to pick up items of the same type
 +
** <kbd>Double-click</kbd> an item stack to pick up all items of the same type in this inventory
 +
* Implement <code>check_offset</code> for decorations (''nephele-gh'')
 +
* Touchscreen input improvements (''srifqi'')
 +
* Rendering-related performance improvements and fixes (''numberZero'')
 +
* Add antialiasing filters (FXAA, SSAA) (''x2048'')
 +
* Reverse eye-offset Z-coordinate in 3rd person front view (''lhofhansl'')
 +
* DPI-aware crosshair (''grorp'')
 +
* Prevent early respawns caused by up/down button in the death screen (''srifqi'')
 +
* Sounds and animations are now paused in pause menu in singleplayer (''DS'')
 +
* Android: Place nodes with single tap (''grorp'')
 +
* Android: Higher default graphics settings (''grorp'')
 +
* Android: Auto-detect locale (''grorp'')
 +
* Android: ignore broken language files (''srifqi'')
 +
* X11 (Linux): Add primary selection (copy & paste via select & middleclick) support (''DS'')
  
0.4.13 was released on August 20, 2015.
+
=== World / Server / Environment ===
 +
* Major speedup for crafting shapeless craft recipes (Hocroft-Karp algorithm) (''DS'')
 +
* Fix crash on handling wallmounted nodes with invalid param2 (''savilli'')
 +
* Fix biomes not repecting their Y limits (''Radar6255'')
 +
** Especially thin biomes will now be generated as intended.
 +
* Saner (HTTP) timeout limits and log messages (''sfan5'')
  
=== Features ===
+
=== Script API / Modding ===
 +
* Reading/defining initial object properties directly from an entity definition is deprecated; they should be moved to <code>initial_properties</code>
 +
* Add ability to override item images using ItemMetaData (''rubenwardy'')
 +
* Add node pos to node damage HP change reason (''Radar6255'')
 +
* Add <code>vector.in_area()</code> utility function (''AFCMS'')
 +
* Add focused styling to buttons (''rubenwardy'')
 +
* Add min/max protocol version to <code>minetest.get_version()</code> (''BuckarooBanzay'')
 +
* Add additional texture modifiers (''Treer'')
 +
* Add node group <code>disable_descend</code> to disable actively descending down climbable nodes and nodes with liquid move physics (''Wuzzy'')
 +
* Add <code>VoxelArea::intersect()</code> (''sfan5'')
 +
* Allow nodes to have their <code>post_effect_color</code> affected by lighting (''grorp'')
 +
* Fix potential freeze in <code>core.check_for_falling</code> (''savilli'')
 +
* Send everlasting particle spawners to all players (''chmodsayshello'')
 +
* Allow <code>place_param2 = 0</code> node placement predictions (''SmallJoker'')
 +
* New player physics overrides for climb speed, sneak speed, acceleration, liquid fluidity and liquid sink speed (#11465) (''Wuzzy'')
 +
* Allow to set custom third person front view camera offset (''grorp'')
 +
* Add script to update/generate mod translations: <code>util/mod_translation_updater.py</code> (''Wuzzy'')
 +
** See <code>util/README_mod_translation_updater.md</code> for details
 +
* Add <code>start_time</code> to sound parameter tables (part of #12764) (''DS'')
  
* Add camera smoothing and cinematic mode (F8) (rubenwardy)
+
=== Misc / Maintenance ===
* Radius parameter for /deleteblocks here (SmallJoker)
+
* Entity/Object fixes and unittests (''numberZero'')
* Save creative_mode and enable_damage setting for each world in world.mt (fz72)
+
* Lua environment cleanups and improvements (''sfan5'')
* Configurable automatic texture scaling and filtering at load time. (Aaron Suen)
+
* Various documentation improvements (''Zughy'', ''Wuzzy'')
* Connect rails with connect_to_raillike and shorten the codes (SmallJoker)
+
* Inventory code fixes (''SmallJoker'', ''DS'')
* Clouds: Make cloud area radius settable in .conf (paramat)
+
* Many various code fixes (''sfan5'', ''grorp'', ''srifqi'')
* Added hour:minute format to time command (LeMagnesium)
+
* Opt-out option for Doxygen generation on build (''nerzhul'')
* Add mod security (ShadowNinja)
+
* Sound code cleanups and improvements (#12764) (''DS'')
* Add texture overriding (rubenwardy)
+
** Long sounds in sound packs, or sent via dynamic media, no longer cause client freezes on load
* Improved parallax mapping. Generate heightmaps on the fly. (RealBadAngel)
+
** Positional sounds can be faded now
* Make attached objects visible in 3rd person view (est31)
+
** Documentation
* Remove textures vertical offset. Fix for area enabling parallax. (RealBadAngel)
+
** Other improvements listed elsewhere
* Add minimap feature (RealBadAngel, hmmmm, est31, paramat)
+
* Faster client load times (#12764 and irr#233) (''DS'')
* Add new leaves style - simple (glasslike drawtype) (RealBadAngel)
 
* Add ability to specify coordinates for /spawnentity (Marcin)
 
* Add antialiasing UI setting (Mark Schreiber)
 
* Add wielded (and CAOs) shader (RealBadAngel)
 
* Add map limit config option (rubenwardy)
 
  
=== Bug fixes and Improvements ===
+
=== Minetest Game ===
  
* Add count based unload limit for mapblocks (est31)
+
* '''Minetest Game is no longer the default game and no longer installed by default'''
* Kick players when shutting down server or on Lua crash (nerzhul)
+
* New water textures (the old ones were [https://github.com/minetest/minetest_game/issues/3051 non-free]) (''Lopano'')
* Fix relief mapping issues (RealBadAngel)
+
* Improve leaves textures in "Opaque Leaves" mode (''Wuzzy'')
* Improve group-based connection between raillike nodes (BlockMen)
+
* When a player dies in protected air, bones now spawn as a block instead of dropping as an item (''OgelGames'')
* Use skin font for usernames (fixes #2363) (BlockMen)
+
* Add API for sapling growth (''aegroto'')
* Fix some memory leaks on packet sending. (nerzhul)
+
* Hook callbacks for <code>default.set_inventory_action_loggers</code> (''appgurueu'')
* Fix android build (nerzhul)
+
* Fix logic error in bed rotation (''fluxionary'')
* Fix serialization of floating point numbers (ShadowNinja)
+
* Fix coral and kelp duplication glitch with sticky piston from Mesecons mod (''zmv7'')
* Disallow object:remove() if the object is a player (Kahrl)
+
* Fix players being able to skip many nights at once by spam-clicking bed (''appgurueu'')
* Fix wrapDegrees family of functions (Craig Robbins)
+
* Fix not updating vessel shelf infotext (''Niklp'')
* Optimise MapBlockMesh related functions (gregorycu)
+
* Fix bookshelf infotext not updating when adding, removing or moving items inside (''Montandalar'', ''appgurueu'')
* Fix minor memory leak (Android) (Craig Robbins)
+
* Update translations: German (''Wuzzy''), Spanish (''David Leal''), Ukrainian (''Andriy''), French (''xin'')
* Fix occlusion (Miguel Almeida)
 
* ClientInterface::getClientIDs doesn't need a std::list. Use a std::vector for better perfs (nerzhul)
 
* Fix some rendering glitches (BlockMen)
 
* Fix mapgen using unitialised height map values (Craig Robbins)
 
* Fix Android text bug (no text displaying) (Craig Robbins)
 
* Improve Clouds::render mathematics (nerzhul)
 
* For usages of assert() that are meant to persist in Release builds (when NDEBUG is defined), replace those usages with persistent alternatives (Craig Robbins)
 
* Fix RUN_IN_PLACE broken due to invalid usage of assert (sapier)
 
* Respect game mapgen flags and save world noise params (ngosang)
 
* Don't use luaL_checkstring to read node names, it's only for arguments (ShadowNinja)
 
* Heightmaps: Fix uninitialised values in mgv5/mgv6. findGroundLevel: Return -MAP_GENERATION_LIMIT if surface not found (paramat)
 
* Make the dummy backend only look up blocks once (ShadowNinja)
 
* Fix unitialized data when creating TOSERVER_INIT packet (nerzhul)
 
* Fix memleak pointed by issue #2439. Also change bzero to memset. bzero doesn't work on windows (nerzhul)
 
* Stop formspecs closing with double-click in empty area (Craig Robbins)
 
* Ensure that heightmap is initialized before use (Craig Robbins)
 
* lua_api/l_mapgen: Fix overlapping areas of minetest.generate_ores/decorations (paramat)
 
* Mgv6: Fix uninitialised heightmap used by cavegen (paramat)
 
* Disable double-click -> ESC translation for main menu (Craig Robbins)
 
* If player is dead, permit it to respawn, even if damages are not enabled (nerzhul)
 
* Android: Fix auto-entry of server address and port in mainmenu (est31)
 
* Fix various damage related bugs (client-side) (Craig Robbins)
 
* Minor bug fix (lag between damage flash and hearts updating) (Craig Robbins)
 
* Fix game minetest.conf default settings (est31)
 
* Optimize minetest.get_(all)_craft_recipe(s) (gregorycu)
 
* Fix composite textures with texture_min_size (Aaron Suen)
 
* Protect Player::hud from concurrent modifications  (nerzhul)
 
* Fix minetest.get_craft_recipe function (est31)
 
* Fix set_bits (kwolekr)
 
* Fix usage of destroyed mutex (kwolekr)
 
* Fix crash caused by null texture in GUI formspec/HUD. (Aaron Suen)
 
* Fix players spawned at (0,0,0) in some rare cases instead of static_spawnpoint (nerzhul)
 
* Crafting speedup (est31)
 
* Fix uninitialized variabled in ConnectionEvent (nerzhul)
 
* Fix a rare crash case un SendPlayerHP (nerzhul)
 
* Schematics: Fix core.schematic_create() (kwolekr)
 
* fix infinite spawners (obneq)
 
* Disable connection timeout for singleplayer and server tabs (est31)
 
* Fix mod store rating (ShadowNinja)
 
* Fix sign-compare compiler warnings in mg_ore.cpp (ShadowNinja)
 
* Fix player pitch and yaw not being set properly (Kevin Ott)
 
* Fix fast leaves with texture_clean_transparent enabled. (Aaron Suen)
 
* Fix minetest.clear_* creating new LOCAL table instead of clearing the existing one. (Tomas Brod)
 
* Noise: Fix PcgRandom::randNormalDist() when range contains negative numbers (kwolekr)
 
* Add a check for animation when getting an extruded mesh (Kevin Ott)
 
* Stop NetworkPacket methods from producing bloated packets (Jay Arndt)
 
* Replace Wieldmesh::setItem assertion that could be triggered by the server with an error (kwolekr)
 
* Ensure that Map::findNodesWithMetadata() reports nodes strictly within the node-granular area (kwolekr)
 
* Fix typo in WieldMesh::setItem() (kwolekr)
 
* Don't crash if an item gets dropped into unloaded space (tenplus1)
 
* ANDROID: Do not limit situations where fast is enabled (Craig Robbins)
 
* Fix current mod name change missed during rebase (ShadowNinja)
 
* Noise: Fix interpolation at negative coordinates (kwolekr)
 
* (Android) Only simulate holding down fast key if fast_move is toggled to true (Craig Robbins)
 
* dofile error reporting for syntax errors (est31)
 
* Don't crash when saplings try to grow on unknown nodes (y.st, ShadowNinja)
 
* Remove unneccessary space for tab completion (Nathaniel Olsen)
 
* Fix some issues with animations, and allow non-looped animations to be defined (MirceaKitsune)
 
* Fix bug when craft input isn't replaced (TeTpaAka)
 
* Fix string conversion error message (est31)
 
* Fix bugs in mainmenu (kilbith, jp)
 
* Fix single click world select (est31)
 
* Shaders fixes and cleanup relief mapping code. (RealBadAngel)
 
* Fix missing check for 0 in craft replacements (TeTpaAka)
 
* Craftdef: Use numbers instead of iterators (est31)
 
* Fix attempt to start a world when no world is selected/created (kilbith)
 
* Fix endless loop since grandparent commit (est31)
 
* Fix damage flash when damage disabled (kwolekr)
 
* Add more robust error checking to deSerialize*String routines (kwolekr)
 
* Fix minetest.get_(all)_craft_recipe(s) regression (est31)
 
* Fix FSAA dropdown option reset after changing another dropdown option (kilbith)
 
* Fix MSVC number conversion warning (SmallJoker)
 
* Fix srp.cpp:815 leak (est31)
 
* Fixed minimap memory leak (Břetislav Štec)
 
* Android: Fix minor makefile bugs (est31)
 
* src/network/connection.h: Fix race condition (Břetislav Štec)
 
* src/environment.cpp: Fix NULL pointer dereference (Břetislav Štec)
 
* Improve accuracy and safety of float serialization (kwolekr)
 
* src/client.cpp: Fix mapper memory leak (Břetislav Štec)
 
* src/wieldmesh.cpp: Fix mesh extrusion memory leak (Břetislav Štec)
 
* Android: fix sound issue, and gitignore (est31)
 
* src/client/tile.cpp: Fix reference counting (Břetislav Štec)
 
* Fix "bouncy" blocks (Miner59)
 
* src/util/numeric.{cpp,h}: Fix FacePositionCache data race (Břetislav Štec)
 
* Fix tiling issues for PLANTLIKE and FIRELIKE with FSAA (RealBadAngel)
 
* connection: Make assertions non-fatal for received data (kwolekr)
 
* Fix critical vulnerabilities and bugs with NetworkPacket (kwolekr)
 
* Fix BufferedPacket race condition (fixes #2983) (kwolekr)
 
* Fix detection of sneaking node This fixes bug 1551 (gregorycu)
 
* Fix camera updates being toggled by N key in release mode (#2762) (Kahrl)
 
* Fix segfaults caused by the Environment not being initialized yet (rubenwardy)
 
* Display Lua memory usage at the time of Out-of-Memory error (kwolekr)
 
* Make NetworkPacket respect serialized string size limits (kwolekr)
 
* Fix intlGUIEditBox leak and uninitialized value in Mapper (reported by valgrind) (Kahrl)
 
* Fix Lua PcgRandom (est31)
 
* Fix segfault caused by a8e238ed06ee8285ed4459e9deda3117419837f6 (Perttu Ahola)
 
* Fix sneaking (fixes #665 and #3045) (BlockMen)
 
* Rollback: Fail on bad precondition instead of causing assertion error (kwolekr)
 
* Fix inventory replace bug (est31)
 
* Fix indianred and indigo of color-string (Rui)
 
* Optimizations (multiple)
 
  
=== Modding ===
+
== 5.6.0 → 5.7.0 ==
  
* Add mod.conf file support - allows mods to specify a mod name for now (kaeza)
+
Released on 8 April 2023
* Add find_nodes_in_area_under_air (nerzhul, Craig Robbins)
 
* Add core.register_schematic() and cache schematics on use (kwolekr)
 
* Schematics: Reorganize (de)serialization and add Lua serialization API (kwolekr)
 
* Add minetest.global_exists() (ShadowNinja)
 
* Fix pathfinder to produce more useful paths (obneq)
 
* Add core.find_nodes_with_meta() script API (kwolekr)
 
* Schematics: Add per-node force placement option (kwolekr)
 
* is_player() is no player-only function (est31)
 
* Add code to support raillike group names (Novatux)
 
* Add get and set functions for the nametag color (TeTpaAka)
 
* Add minetest.register_on_punchplayer (Brandon)
 
* Schematics: Fix probability values for .mts version 1 (kwolekr)
 
* Add core.mkdir (ShadowNinja)
 
* Add core.request_insecure_environment() (ShadowNinja)
 
* Add core.get_dir_list (ShadowNinja)
 
* SAPI: Accept either ARGB8 table or ColorString to specify colors (kwolekr)
 
* Add some missing getter functions to the lua API (TeTpaAka)
 
* Decrease minetest.after globalstep lag (HybridDog)
 
* Add return list of individual counts to find_node_in_area (TeTpaAka)
 
* Add minetest.register_on_player_hpchange (TeTpaAka)
 
* Add list-rings (est31)
 
* Add Lua errors to error dialog (rubenwardy)
 
* Biome API decorations: 'spawnby' searches a 3D neighbourhood (paramat)
 
* Make acc and vel deprecated in add_particle and search for acceleration and velocity instead (TeTpaAka)
 
* Added get_player_velocity() method. Fixes #1176 (Elia Argentieri)
 
* Allow random menu images for subgames (sfan5)
 
* Document game main menu image system (est31)
 
* Add AreaStore data structure (est31)
 
* Actually document what minetest.is_protected should do (est31)
 
* SAPI: Track last executed mod and include in error messages (kwolekr)
 
  
=== Mapgen ===
+
=== Deprecations and compatibility notes ===
 +
* The default key for pitchmove was removed. Specify a key manually to use this feature.
 +
** See https://github.com/minetest/minetest/pull/13319 for details
 +
* Special handling of <code>${key}</code> syntax in metadata values are deprecated
 +
** See https://github.com/minetest/minetest/pull/12970 for details
 +
* Worlds with unresolved dependencies can no longer be loaded. This ensures that the specified mods are loaded properly.
 +
** See https://github.com/minetest/minetest/pull/12542 for details
 +
* The default key for (un)limited range was removed. Specify a key manually to use this feature.
 +
** See https://github.com/minetest/minetest/pull/12632 for details
 +
* Development Test is no longer being distributed in official Minetest releases
 +
** This was never meant for players to begin with, this “game” is exclusively meant for engine development
 +
** To get it back, build Minetest from source code (recommended) or download Development Test from [https://content.minetest.net/packages/Minetest/devtest/ ContentDB]
  
* Mgv5: Remove blobgen. Remove crumble and wetness noises (paramat)
+
=== Client / Audiovisuals ===
* Biome API: Re-calculate biome at every surface in a mapchunk column (paramat)
+
* Fix main menu error when submitting invalid port numbers (''GoodClover'')
* Mgv6: Add heightmap. Do not make large caves that are entirely above ground (paramat)
+
* Fix ChatPrompt crash in very narrow windows (''DS'')
* Cavegen, mgv5: Cleanup code (paramat)
+
* Fix missing shadows when sun tilt is zero (''x2048'')
* Fix memory leak in MapgenV6 (Craig Robbins)
+
* Android: Make OpenGLES 2 the default driver (''ROllerozxa'')
* Biome API: Enable decorations
+
* 8x block meshes for improved performance (''x2048'')
* Mgv5/mgv7: Add desert temples if desert stone detected in mapchunk (paramat)
+
** Configuration options and bugfixes (''lhofhansl'', ''x2048'')
* mg_decoration: Raise highest allowed deco top to max edge of voxelmanip (paramat)placed on water (paramat)
+
* Decrease minimum for repeat_place_time (''DS'')
* Mgv6: Remove addDirtGravelBlobs, replaced by blob ore in Minetest Game (paramat)
+
* Fix Enter key after creating a new world (''srifqi'')
* Mgv5/mgv7: Sprinkle dust from full_node_max.Y if chunk above is generated (paramat)
+
* Improve chat history (''TurkeyMcMac'')
* Mgv7: 1 up , 1 down overgeneration for chunk border continuity (paramat)
+
* Add dynamic exposure correction (''x2048'')
* lua_api/l_mapgen: generate_ores/decorations: make p1, p2 optional (paramat)
+
** This is also configurable by the Lua API
* ObjDefManager, Mapgen SAPI: Huge refactoring (kwolekr)
+
* Improve the occlusion culling algorithm (i.e. better efficiency) (''x2048'')
* Treegen: Add pine tree. Force place trunks (paramat)
+
* Use multiple threads for mesh generation (i.e. faster rendering) (''x2048'')
* Mgv6: Add optional snow biomes (paramat)
+
* Removed pageflip 3D mode (because broken) (''ROllerozxa'')
* Mgv6: Fix taiga, allow pine tree spawning on snowblocks (paramat)
+
* Fix progress bar look on HiDPI displays (''kilbith'')
* Mgv5/v7: Add check for water for deciding biome node stability (paramat)
+
* Fix <code>plantlike_rooted</code> world-aligned node base textures (''TurkeyMcMac'')
* Mgv5: Fix above/below ground spawn when water level is altered (paramat)
+
* Fix issues caused by attached node placement prediction (''TurkeyMcMac'')
* Biome API: Add biome-specific river water (paramat)
+
* Avoid shadow flicker at certain angles (''x2048'')
* Noise: Correct noise objects created with invalid dimensions (kwolekr)
+
* Chat: fix the unicode characters crowded together on prompt (''snowyu'')
* Ore: Add biomes parameter (kwolekr)
+
* Take geographic distance into account for server list ordering (''sfan5'')
* Noise: Add noise unittests (kwolekr)
+
* Fix sneaking on nodes with large collision boxes (''SmallJoker'')
* Mapgen v5/6/7: Cleanup node resolver and aliases (paramat)
+
* Faster light calculations for rendering (''TurkeyMcMac'')
* Noise: Make buffer size parameters unsigned (kwolekr)
+
* Android: Improve double-tap for jump detection (''srifqi'')
* Mapgen v5/v7: Detect sandstone, enable sandstone brick dungeons (paramat)
+
* Add Bloom shader (''x2048'')
* SAPI/Noise: Add PerlinNoiseMap:getMapSlice() function (kwolekr)
+
* Restore and enhance bouncy behavior (''pecksin'')
* Mgv5/v7: Fix generateBiomes biome recalculation logic Biomegen down to y = -192 for mgv5 deep oceans. Improve code (paramat)
+
** Bouncy nodes now let you control the jump height with the jump/sneak keys
* Biome API, mgv7: Increase heat/humidity spreads. Improve mgv7 noise parameters (paramat)
+
* Fix <code>liquid</code> drawtype faces sometimes not rendering (''Wuzzy'')
* Mgv6: Enable snowbiomes by default. Double biome noise spread. 3 octaves, 0.5 persistence for humidity (paramat)
+
* Apply DPI Scaling to the main menu (''ElliottLester'')
* Mgv5/mgv7: Trigger biome recalculation at underwater surfaces (paramat)
+
* Improve shadow updates efficiency (''x2048'')
* Minimal: Edit mapgen aliases. Use blob ore for clay, update other ores. Update simple biomes. Cleanup code (paramat)
+
* Textures: introduce world-align overrides (''SmallJoker'')
* Minimal: Add snow biome and jungleleaves nodes. Add mapgen aliases (paramat)
+
* Fix crash when stars are reset (''Zughy'')
* Biome API: Enable biome generation to lower world limit (paramat)
 
* Mgv6: Don't create air gap in tundra at y = 48 in custom high terrain (paramat)
 
* Biome API: Add noise defined biome blend (paramat)
 
* Mapgen objects: Enable heatmap and humidmap for all biome api mapgens (paramat)
 
* Mgv7: Edit noise parameters. Fewer octaves, larger spreads. (paramat)
 
* Mgv5/mgv7 caves: Remove sand found in underground tunnels (paramat)
 
* Biome API: Increase heat and humidity noise spreads to 1000 (paramat)
 
* Cavegen: Cleanup code. Define constant for MGV7_LAVA_DEPTH (paramat)
 
* Mgv7: Lower base of mountain generation to -112 and define constant (paramat)
 
* Mgv7: Auto-set lowest mountain generation level (paramat)
 
* Cavegen: Mgv6: No small caves entirely above ground (paramat)
 
* Mgv7: Use density noise + density gradient for mountain terrain (paramat)
 
* Treegen: Rename pine tree mapgen alias (paramat)
 
* Biome API: Make fallback biome stone and water, disable filler (paramat)
 
* Cavegen V6: Make all caves consistent with 0.4.12 stable (paramat)
 
  
=== Other / Misc ===
+
=== World / Server / Environment ===
 +
* Reduce server CPU consumed by occlusion culling (''lhofhansl'')
 +
* Improve loaded block handling (i.e. better efficiency) (''lhofhansl'')
 +
* Fix <code>/help</code> privs checks (''TurkeyMcMac'')
 +
* Add mod storage PostgreSQL backend (''TurkeyMcMac'')
 +
* Update floating nodes when liquid underneath vanishes (''TurkeyMcMac'')
 +
* Add zstd compression support to API function (''20kdc'')
  
* Start adding utf-8 support (est31, Ilya Zhuravlev)
+
=== Script API / Modding ===
* Unit tests must be done at integration process. (nerzhul)
+
* Server: Fix error caused by sending too long chat messages (''SmallJoker'')
* Improve FindIrrlicht.cmake module (Markus Koschany)
+
* Correct handling of leftover items in <code>core.item_eat</code> (''DS'')
* Rename --do-unittests to --run-unittests as @Zeno- and @sfan5 requested (nerzhul)
+
* Various lua_api.txt clarifications and fixes (''Wuzzy'', ''jordan4ibanez'', ''kab0u'', ''veprogames'', ''aerkiaga'', ''DS'')
* Clean up database API and save the local map on an interval (ShadowNinja)
+
* Improve <code>minetest.close_formspec</code> server-side safety (''luk3yx'')
* Don't start a server for map migration (ShadowNinja)
+
* Handle nodes changed within another LBM and ABM loop (''TurkeyMcMac'')
* Dungeongen: Optionally set ignore to be untouchable to disable floating dungeons (paramat)
+
* Fix segfault caused by invalid PNG data in <code>[png:</code> (''SmallJoker'')
* Finer progress bar updates when initializing nodes (est31)
+
* Add <code>minetest.get_player_window_information()</code> (''rubenwardy'', ''DS'' (bugfix))
* Minor cleanup: game.cpp (Craig Robbins)
+
* Make <code>body_orbit_tilt</code> configurable (''sofar'')
* Add support for the PCG32 PRNG algo (and associated script APIs) (kwolekr)
+
* Add chat HUD flag (#13189) (''GreenXenith'')
* Change filename of screenshots to something more human readable (Craig Robbins)
+
* Improve <code>MetaDataRef:{get,set}_float</code> precision (''TurkeyMcMac'')
* Clean scaling pre-filter for formspec/HUD. (Aaron Suen)
+
* Fix error caused by an empty separator for <code>string.split</code> (''TurkeyMcMac'')
* Remove errorstream logging on password change (est31)
+
* Add <code>player:set_lighting( {saturation = float} )</code> (''lhofhansl'')
* Add reason to kicked log message and use present tense (est31)
+
* Add callback <code>on_mapblocks_changed</code> (''TurkeyMcMac'')
* RotateAlongYAxis: For facedir case, return if param2 >= 4 (paramat)
+
* Improved Lua error handling (''TurkeyMcMac'')
* Change lower limit of display_gamma to 1.0 (linear light) (Craig Robbins)
+
* Expose <code>dtime_s</code> to LBM handler (''sfan5'')
* More reliable serverlist behaviour (HybridDog)
+
* Let mods choose a forceload limit (''TurkeyMcMac'')
* Close keybind settings menu with esc (est31)
+
* Add <code>minetest.get_mapgen_edges</code> (''TurkeyMcMac'')
* Disable mesh cache by default (est31)
+
* Add <code>minetest.get_game_info</code> and allow reading game.conf (''TurkeyMcMac'')
* Set server_announce to world.mt and respect modes when changing subgame (Sokomine)
+
* Add support for facedir/4dir nodes to be attached with <code>attached_node</code> (''Wuzzy'')
* Use minetest logging facilities for irrlicht log output (ShadowNinja)
+
* Add additional <code>attached_node</code> options: always attach to ceiling, always attach to floor (''Wuzzy'')
* Display an access denied message when client detects a server timeout (Kahrl)
+
* Fix errors caused by schematic reading (''TurkeyMcMac'')
* Change texture pack description file name (ExcaliburZero)
+
* Fix <code>set_nametag_attributes</code> resetting the text in subsequent calls (''snowyu'')
* Refactor particle code to remove the while loops (TeTpaAka)
+
* game.conf: Add setting to use volatile a map backend (''SmallJoker'')
* MoveItemSomewhere double bugfix (est31)
+
* Allow rotating entity selectionboxes (''appgurueu'')
* Remove profiler.h include where it's not needed. Remove some unreachable and very old code (nerzhul)
+
* Add VoxelArea() constructor for easier use (''TurkeyMcMac'')
* Ask auth handler to create auth when a default password is set (est31)
+
* Fix formspec focus issue caused by empty element names (''DS'')
* Optional reconnect functionality (est31)
+
* Faster vector, node and content ID access when using LuaJIT (''TurkeyMcMac'')
* Fix documentation of dedicated_server_loop (est31)
+
* Speed up find_nodes_in_area (''TurkeyMcMac'')
* Remove drivers dropdown in the settings tab (kilbith)
+
* Add an item pick up callback (''DS'')
* Cleanup server addparticle(spawner) by merge two identical functions. (nerzhul)
+
* Implement tool use sounds (''sfan5'')
* Precalculate mapblock relative size. This permit to remove many s16 calculs on runtime (nerzhul)
+
* Fix inconsistent craft replacement behavior (''Wuzzy'')
* Android: Add githash header to spare rebuilds after new commits (est31)
+
* Fix potential error in craft recipes (''savilli'')
* Prepend "Lua: " before lua exceptions src/server.cpp src/emerge.cpp (Břetislav Štec)
+
* Add paramtype2s <code>4dir</code> and <code>color4dir</code> for 4 horizontal rotations and 64 colors (''Wuzzy'')
* Improve Script CPP API diagnostics (kwolekr)
+
* Bugfix: Allow looped animation to be used safely with old clients (''sfan5'')
* Initialize random for verification key generation too (est31)
+
* Reassure previous nil behaviour for <code>tiles</code> and <code>special_tiles</code> (''Zughy'')
* game.cpp: Update cached settings (est31)
+
* Add buffer argument to <code>VoxelManip:get_light_data</code> (''TurkeyMcMac'')
* SAPI: Disable unlockable time profiling (kwolekr)
+
* Fix crash when crafting callbacks return strings (''Zughy'')
* Client: disable mmdb modstore (est31)
 
  
 +
=== Misc / Maintenance ===
 +
* Fix crash while exiting to the main menu on macOS (''x2048'')
 +
* Rendering code cleanups (''x2048'')
 +
* Fix occasional black screen on startup (''x2048'')
 +
* Android: Build and logging improvements (''sfan5'')
 +
* Improve installation instructions (''lynx197'', ''sofar'', ''tamara-schmitz'')
 +
* Various code cleanups and optimizations (''sfan5'', ''ROllerozxa'', ''nerzhul'', ''GermanAizek'')
 +
* Implement --debugger option to improve UX when debugging crashes (''sfan5'')
 +
* Various Development Test changes
 +
** Many, many additions and improvements (''Wuzzy'')
 +
** Add jukebox and branding iron (''DS'')
 +
* Development Test is no longer officially distributed with Minetest releases
 +
* Android: various maintenance and fixes (''srifqi'')
 +
* Unittest improvements (''Wuzzy'', ''TurkeyMcMac'', ''rubenwardy'')
  
== 0.4.11 → 0.4.12 ==
+
=== Minetest Game ===
 +
* Limit and sanitize formspec fields (''appgurueu'')
 +
* Fix player_api.set_model not updating the animation (''appgurueu'')
 +
* Ensure chests close properly (''fluxionary'')
 +
* Ensure proper creative hand override (''AntumDeluge'')
 +
* Fix error if /home is executed with an invalid name (''zmv7'')
 +
* Fix wall craft registrations (''alek13'')
 +
* Screwdriver: 4dir node support (''Wuzzy'')
  
0.4.12 was released on February 18, 2015.
+
== 5.6.0 → 5.6.1 ==
 +
Released on 19 September 2022.
  
=== New features ===
+
=== Client / Audiovisuals ===
 +
* Fix tooltips for dropdown, scrollbar and more (''Desour'')
 +
* Allow the comma as clickable URL component (''pecksin'')
 +
* Correct the entity glow calculation (''x2048'')
 +
* Get the setting <code>texture_min_size</code> to work again (''fluxionary'')
 +
* Scale hardcoded/integrated GUIs with the system-reported DPI (''ElliottLester'')
 +
* Overwriting a package via "Content" no longer triggers an error (''rubenwardy'')
  
* Add player direction to debug text (''yamanq'')
+
=== World / Server / Environment ===
* Reorganized client and server tabs (''kilbith'')
+
* Fix potential use-after-free with item metadata (''TurkeyMcMac'')
* Implemented DPI automatic detection on X11 (''sapier'')
+
* Compatibility patch to not freeze older clients due to negative "frame_length" Tile Animation values (''sfan5'')
 +
* Dynamic shadows performance improvement by delaying non-urgent mapblocks (''x2048'')
  
=== Map generation ===
+
=== Script API / Modding ===
 +
* Fix several crashes caused by <code>clear_craft</code> in combination with aliases (''savilli'')
 +
* Serialization: Restore (full) pre-5.6.0 compatibility (''appgurueu'')
 +
* LuaJIT: Workaround to allow larger serializations (''appgurueu'')
 +
* Enforced hp_max > 0 for entities (''appgurueu'')
 +
* Node Definition "tiles" and "special_tiles" again default to <code>nil</code> when not specified (''Zughy'')
 +
* Allow <code>minetest.register_on_craft</code> to return strings (was: ItemStack) (''Zughy'')
 +
* <code>ObjectRef:set_stars</code> to reset the stars no longer throws an error (''Zughy'')
  
'''v5:'''
+
=== Misc / Maintenance ===
 +
* x86 Android build fixes (''savilli'')
  
* Caves check for biome nodes, only excavate stone under water level (''paramat'')
+
== 5.5.0 → 5.6.0 ==
* Unease caves noises, use 0.3.x parameters (''paramat'')
+
Released on 4 August 2022
* Blobgen after cavegen (''paramat'')
 
* Biomegen: remove “is replaceable content” bool (''paramat'')
 
  
=== Tweaks ===
+
=== Deprecations and compatibility notes ===
 +
* <code>name</code> in game.conf is deprecated for the game title
 +
** For specifying the game title from now on, use <code>title</code> instead
  
* Increased step height on Android (''sapier'')
+
=== Client / Audiovisuals ===
* Increased default <code>font_size</code> (''BlockMen'')
+
* Dynamic shader-based shadows for: nodes, entities, wield (''x2048'')
* Improved minetest.desktop, added German and French text to minetest.desktop (''nerzhul'')
+
** Includes many, many bugfixes and improvements (tuning, performance)
* More consistent progress bar (''sapier'')
+
* Fixed statbar HUD background scaling and numbering (''appgurueu'')
 +
* Apply texture pack main menu textures immediately (''ROllerozxa'')
 +
* Fix footsteps for players whose collision box min y != 0 (''grorp'')
 +
* Add depth sorting for node faces (''x2048'')
 +
** This fixes appearance issues when looking through multiple semi-transparent nodes.
 +
** This works only up to a distance of 16 nodes by default. Use the <code>transparency_sorting_distance</code> setting to adjust this
 +
* Optimize swapping nodes with equivalent lighting (''TurkeyMcMac'')
 +
* Fix item entity Z-fighting (''appgurueu'')
 +
* Use mod names/titles instead of technical names to display (''GoodClover'')
 +
* Fix texture packs not showing as enabled in mainmenu (''rubenwardy'')
 +
* Debug screen now shows "<unknown node>" at the top if an unknown node is pointed (''Wuzzy'')
 +
* Enable chat clickable weblinks by default (Ctrl+Click) (''Froggo'')
 +
* HUD: Fix outdated selection boxes (''appgurueu'')
 +
* Make <code>no_screenshot</code> image more clear (''Zughy'')
 +
* Add register dialog to separate login/register (''rubenwardy'')
 +
* No damage effects on <code>hp_max</code> change (''appgurueu'')
 +
* Fix updating glow and light calculation on entities (''sfan5'')
 +
* Fix unknown nodes sometimes displaying the "no texture" instead of the "unknown node" texture (''Wuzzy'')
  
=== Bug fixes ===
+
=== World / Server / Environment ===
 +
* Distinct mod path values in world.mt to avoid issues with duplicated mod names (''rubenwardy'')
 +
* Fix broken server startup if curl is disabled (''sfan5'')
 +
* Increase max. objects per block defaults (''appgurueu'')
 +
* Builtin: Allow to revoke unknown privileges (''SmallJoker'')
 +
* Fix some textures not being sent correctly to older clients (''Oblomov'')
 +
* Fix several registration/authentication related issues (''sfan5'')
 +
* Fix dependency enabling of mods and modpacks (''rubenwardy'', ''TurkeyMcMac'')
 +
* Fix cooking and fuel crafts with aliases (''TurkeyMcMac'')
 +
* Commands: Some numbers can be replaced or prepended with "<code>~</code>" for values relative to the current one (''Wuzzy'')
 +
** "<code>~</code>" is equivalent to "<code>~0</code>"
 +
** Supported commands: <code>/deleteblocks</code>, <code>/emergeblocks</code>, <code>/fixlight</code>, <code>/spawnentity</code>, <code>/teleport</code>, <code>/time</code>
 +
** Example: "<code>/teleport 15 ~5 ~</code>" teleports to (15, <current Y coordinate plus 5>, <current Z coordinate>)
 +
* Don't allow banning in singleplayer (''sfan5'')
 +
* Docs: Add description of privileges (''x2048'')
 +
* Increase max FPS on Android to 60 (''ROllerozxa'')
 +
* Add many limits to settingtypes + engine (''Wuzzy'', ''SmallJoker'')
 +
* Reorganise settingtypes.txt (''rubenwardy'')
  
* Fixed font_size under Windows (''BlockMen'')
+
=== Script API / Modding ===
* Ignored old entities from 0.3 (''Novatux'')
+
* Improved formspec documentation (''DS'')
* Fixed FTBFS on GNU/Hurd platform (''apoleon'')
+
* Optimization: Send HUD flags only if they changed (''appgurueu'')
* Modified Y positioning of health/breath statbars to prevent overlapping with hotbar (''kwolekr'')
+
* Allow to set the displayed item count and its alignment via item meta: <code>count_meta</code>, <code>count_alignment</code> (''DS'')
* Fixed memory leaks related to gettext (''ShadowNinja'')
+
* Add support for 'seed' in <code>disallowed_mapgen_settings</code> (''Wuzzy'')
* Give full breath after death (''SmallJoker'')
+
* List of documentation improvements:
* Fix <code>NDT_GLASSLIKE</code> normals (''kahrl'')
+
** <code>AreaStore</code> (''SmallJoker'')
* Water flowing fixes (''gregorycu'')
+
** Lua <code>vector</code> helper class (''sfan5'')
* Compiler tweaks and warning fixes (''ShadowNinja'', ''kwolekr'')
+
** <code>spawn_by</code> for decorations (''Zughy'')
* Fix imprecise serialization of large numbers (''ShadowNinja'')
+
** LBM documentation (''TurkeyMcMac'')
* Fix performance regression (''Zeno-'')
+
** Overall improvements (''sfan5'')
* Fix getCraftRecipe returning wrong recipes (''sapier'')
+
* Allow <code>get_sky</code> to return a table of all sky-related parameters (''Zughy'')
* Fix unused (and so, broken) enable_rollback_recording. (''nerzhul'')
+
* Add <code>basic_debug</code> HUD flag to control display of debug info like position in the debug screen (on by default) (''appgurueu'')
* Fix .zip extraction (mod store) (''ngosang'')
+
* Fix memory leak from <code>SpatialAreaStore</code> (''setupminimal'')
* Fix translation memory leak (''ShadowNinja'')
+
* Add function <code>ObjectRef:set_lighting()</code> to control shadow intensity from the game/mod (''x2048'')
* Fix F7 crash (''nerzhul'')
+
* Fix '<code>[combine</code>' when <code>EVDF_TEXTURE_NPOT</code> is disabled (''paradust7'')
* Fixes to default screenshots in mainmenu (''Rui914'')
+
* <code>hud_get</code>: Return precision field for waypoint (''appgurueu'')
* Fix map_seed not changed when creating a new world after login to another (''fz72'')
+
* Add Async environment for parallelized Lua code execution (''sfan5'')
* Add modname convention checking, fixes issues with mod enabling (''est31'', ''Novatux'')
+
** <code>minetest.handle_async</code>
* Fix problems related to still receiving damage after dying (''SmallJoker'', ''gregorycu'')
+
** <code>minetest.register_async_dofile</code>
 +
* Fix Minetest blaming the wrong mod for errors (''appgurueu'')
 +
* Deprecate game.conf <code>name</code>, use <code>title</code> instead (#12030) (''rubenwardy'')
 +
* Protect a few more settings from being set from mods (''sfan5'')
 +
* Add function <code>ObjectRef:respawn()</code> to invoke player respawn (''sfan5'')
 +
* Handle Lua entity HP changes correctly (like punches) (''sfan5'')
 +
* Add tool helper function <code>ItemStack:add_wear_by_uses()</code> to add tool wear in such a way that it has a given number of uses (''Wuzzy'')
 +
* Add <code>minetest.get_tool_wear_after_use</code> to simulate tool wear when expecting it to break after a given number of uses (''Wuzzy'')
 +
* <code>on_deactivate</code> entity callback: distinguish removal and unloading (''appgurueu'')
 +
* Remove <code>tile_images</code> and <code>special_materials</code> obsolete code (''Zughy'')
 +
* <code>set_stars</code>: Allow to set maximum star opacity at daytime with <code>day_opacity</code> (''Wuzzy'')
 +
* FormSpec: 9-slice images, <code>animated_image</code>, and <code>fgimg_middle</code> (''v-rob'')
 +
* Animated particle spawners (''velartrill'')
  
=== Modding-related changes ===
+
=== Misc / Maintenance ===
* Add <code>vein</code> and <code>blob</code> ore type (''kwolekr'')
+
Code details are intentionally omitted due to the changelog target audience's interests.
* Change assignment to global in a function to warning (''rubenwardy'')
 
  
=== Vanilla game changes (minetest_game) ===
+
* Fix macOS compile instructions (''sfan5'')
 +
* Various C++ code cleanups and improvements (''TurkeyMcMac'', ''sfan5'', ''Oblomov'', ''SmallJoker'', ''Octavian'', ''RichardTry'', ''savilli'', ''JosiahWI'')
 +
* List of DevTest game improvements:
 +
** TGA test nodes (''ehrlemann'')
 +
** Test weapons and armorball modes (''Wuzzy'')
 +
** Nodes and items for testing overlays (''Wuzzy'')
 +
** Entity lifecycle and callbacks (''sfan5'')
 +
** Item metadata editor (''Wuzzy'')
 +
* Minetest now uses C++14
 +
* Remove direct OpenGL(ES) dependency (''sfan5'')
 +
* Compile Lua as C++ to properly catch exceptions (''TurkeyMcMac'')
 +
* Build system improvements (''sfan5'', ''ShadowNinja'', ''LoneWolfHT'')
 +
* Run automated tests when Lua files change (''x2048'')
 +
* Add JSON (de)serialization benchmarks (''paradust7'')
 +
* Performance optimizations by caching (mapblocks, collisionbox) (''sfan5'')
 +
* Add more Prometheus metrics (''sfan5'')
 +
* Add documentation to list breaking changes for the next major release (''Zughy'')
 +
* Patch built-in Lua to fix miscompile on Android (''paradust7'')
 +
* Fix BSD iconv declaration (''savilli'')
 +
* Fix Android input box crash (''ROllerozxa'')
  
==== Gameplay ====
 
  
* Mossy cobblestone can now be smelted to stone (''MT-Modder'')
+
=== Minetest Game ===
* Added straw, crafted with 9 wheat (''kilbith'')
 
* Added obsidian and obsidian brick stairs and slabs (''CraigyDavi'')
 
  
==== Visuals ====
+
* Improved cart movement behavior (''SmallJoker'')
 +
** Improved direction handling
 +
** Smoother-out 'end-of-rail' animation
 +
** Other improvements
 +
* Dynamic shadow intensity increases with cloud density (only has an effect if you have dynamic shadows enabled) (''lhofhansl'')
 +
* Allow mods to override player animation globalstep with <code>player_api.globalstep</code> (''LoneWolfHT'')
 +
* Log API added (''nixnoxus'')
 +
* Fix crash if player has no model (''Lars Mueller'')
 +
* Fix broken <code>get_animation</code> in <code>player_api</code> (''bell07'')
 +
* Fix furnace fire sound continuing to play after being destroyed (''Wuzzy'')
 +
* Fix TNT blowing up <code>ignore</code> nodes (''Wuzzy'')
 +
* Fix some hoes not breaking after the intended number of uses (''Wuzzy'')
 +
* Fix book duplication glitch (''appgurueu'')
 +
* Fix incorrect behavior of glass and obsidian glass if param2 was changed (''appgurueu'')
 +
* Fix cart sometimes facing the wrong way at slopes (not a 100% perfect bugfix tho) (''SmallJoker'')
 +
* New translation: Polish (''mrubax10'')
 +
* Translation updates: Ukrainian (''baytuch''), Russian (''baytuch''), German (''Wuzzy''), Lojban (''Wuzzy''), Esperanto (''quarthex'')
  
* Many new textures renewed (''kilbith'')
+
== 5.5.0 → 5.5.1 ==
* Changed furnace fire icons (''Kalabasa'')
+
Released on 15 May 2022.
* Added fancy inventory for bones (''CraigyDavi'')
 
  
=== Master server (server list) ===
+
=== World / Server / Environment ===
  
* Announce MIN/MAX protocol version to server list (''est31'')
+
* Fix server crash due to duplicate user registrations (''sfan5'')
 +
* Fix cooking and fuel crafts with aliases (''Jude Melton-Houghton'')
 +
* Fix some textures not being sent correctly to older clients (''Giuseppe Bilotta'')
 +
* Fix broken server startup if curl is disabled (''sfan5'')
 +
* Fix password changing getting stuck if wrong password is entered once (''sfan5'')
 +
* Apply disallow_empty_password to password changes too (''sfan5'')
  
== 0.4.10 → 0.4.11 ==
+
=== Client / Graphics ===
  
0.4.11 was released on December 24, 2014.
+
* Fix various issues with Select Mods and Content (''rubenwardy'', ''Jude Melton-Houghton'', ''Alex'')
 +
* ContentDB: Fix ungraceful crash on aliases when list download fails (''rubenwardy'')
 +
* Fix performance issue due to hardware buffer counters (''paradust7'')
 +
* HUD: Update selection highlight every frame to avoid glitches (''Lars Müller'')
 +
* Fix '[combine' when EVDF_TEXTURE_NPOT is disabled (''paradust7'')
 +
* Fix footsteps for players whose collision box min y != 0 (''Gregor Parzefall'')
 +
* Fix undefined behavior in TileLayer (''Daroc Alden'')
 +
* Use absolute value for bouncy in collision (''pecksin'')
 +
* Fix builtin statbar backgrounds (''Lars Mueller'')
  
=== New features ===
+
=== Misc ===
  
'''Big gameplay changes'''
+
* Fix possible unreliable behavior due to uninitialized variables (''Octavian'')
 +
* Fix Minetest blaming the wrong mod for errors (''Lars Müller'')
 +
* Fix some memory leaks (''SmallJoker'', ''Daroc Alden'', ''Daroc Alden'')
  
* Added mapgen v5 ''(paramat)''
+
=== Minetest Game ===
* Added enable_build_where_you_stand option ''(Sokomine)''
 
  
'''Smaller gameplay tweaks'''
+
* player_api mod: Fix crash if player has no model (''appgurueu'')
 +
* player_api mod: Mods can now override globalstep by overriding player_api.globalstep (''LoneWolfHT'')
 +
* Shadow intensity (of dynamic shadows) changes with weather (''lhofhansl'')
 +
* Some cart movement behavior fixes (''SmallJoker'')
 +
* Fix some translations in uk and ru locales (''baytuch'')
  
* Added inventory right click drag and drop ''(sruz25, Zeno)''
+
== 5.4.0 → 5.5.0 ==
* Remove buildable_to nodes without dropping item when replaced by a falling node ''(Casimir)''
+
Released on 30 Jan 2022.
  
'''Visual changes'''
+
=== Deprecations and compatibility notes ===
  
* Reduced time of red screen when damaged ''(SmallJoker)''
+
* FORMSPEC_API_VERSION is now 5
* Added video driver selection to settings menu ''(sapier, webdesigner97)''
+
* New maps are now zstd compressed to reach faster and/or more efficient compression
* Removed alpha channel from screenshots ''(BlockMen)''
+
* Switched to our own fork of the rendering engine: IrrlichtMT
* Added node highlighting ''(RealBadAngel)''
+
** Removed support for DirectX
* Added configurable selection box width. Min width = 1, max = 5 ''(TriBlade9)''
+
** Dropped support for obscure and undocumented file formats: pcx, ppm, psd, wal, and rgb
* Changed default halo.png for better visibility ''(RealBadAngel)''
+
* Modding: Missing "mod.conf" is now deprecated. Results in warnings (''rubenwardy'')
* Added in-game key change menu ''(Mushiden)''
+
** Add mod.conf with name = yourmodname
* Improved lighting of the wielded item ''(kahrl, RealBadAngel)''
+
* Modding: depends.txt and description.txt are now deprecated
* Increased step smoothing to fit 1:1 stairs ''(Calinou)''
+
** Specify dependencies using "depends" and "optional_depends" in mod.conf
* Scale form elements consistently using new font engine by sapier ''(Zefram)''
+
** Specify description using "description" in mod.conf
* Made dropped items larger and rotate faster ''(Calinou)''
+
* Modding: Creating vectors like this: <code>{x=1, y=2, z=3}</code> is now deprecated
* Increase third person view distance ''(Calinou)''
+
** Use <code>vector.new</code> instead
* Made directional fog colors respect tonemap ''(Taoki)''
+
* Bitmap fonts are no longer supported
* Display serverlist flags as icons ''(kahrl, kilbith, VanessaE et al.)''
+
** Use TTF fonts instead
  
'''Build system changes'''
+
=== Features: General ===
  
* Added ZLIBWAPI_DLL and LEVELDB_DLL CMake options ''(sfan5)''
+
* Add game name to server status string (''sfan5'')
* Removed legacy MINGWM10_DLL CMake option ''(sfan5)''
+
* Improve TTF support for pixel-style fonts (''v-rob'')
* Changed build directory for build bots to '_build' to prevent removal of Android build files ''(sfan5)''
+
* Joystick support for DragonRise GameCube controller (''Izzette'')
* Updated 32-bit build bot (OpenAL updated, zlib updated) ''(sfan5)''
+
* Add "<code>MINETEST_MOD_PATH</code>" environment variable (''emixa-d'')
* Added -win64 suffix to build bots for 64-bit Windows builds ''(sfan5)''
+
* Touch UI support for desktop builds (#10729) (''TheBrokenRail'')
* Updated the cURL the buildbot uses to 7.38.0 ''(sfan5)''
+
* Switch MapBlock compression to zstd (''lhofhansl'')
* Added Android Makefile support for builds without LevelDB ''(sapier)''
+
* Joystick sensitivity for player movement (''NeroBurner'') + fixes (''sfan5'')
* Improved Travis CI configuration ''(Mikaela Suomalainen)''
+
* Gettext support on Android (''Pevernow'')
* Added gettext to Travis build ''(ShadowNinja)''
+
* Make web links in chat clickable (Feature disabled by default, use setting <code>clickable_chat_weblinks</code>) (''pecksin'')
* Build for win32 & win64 on Travis too ''(sfan5)''
+
* Add a key to toggle display map block boundaries (F8 by default) (''grapereader'')
* Update MinGW toolchain downloads used by Travis ''(sfan5)''
+
* Improved wording of various chat command outputs (''Wuzzy'')
* Fixed various build issues on Windows/MSVC ''(SmallJoker)'', Android ''(sapier, Kodexky)'', Mac OS X ''(Pavel Puchkin)''
+
* Normal texture support (for minimap shading) (again) (''numberZero'')
 +
* Scale mouse/joystick sensitivity depending on FOV (''Elias Åström'')
 +
* Various DevTest game additions and improvements (''Wuzzy'')
 +
* Chat commands: Show the execution time if the command takes a long time (''HybridDog'')
 +
* Improved item placement prediction (''sfan5'')
 +
* Anticheat: Faraway inventory access protection (''SmallJoker'')
 +
* Pause animations while game is paused (''numberZero'')
  
'''Logistical changes'''
+
=== Features: Main menu and ContentDB ===
  
* Don't unload blocks if save failed ''(kwolekr)''
+
* Chop game background in mainmenu (''appgurueu'')
* Don't copy back already generated blocks on map generation ''(kwolekr)''
+
* ContentDB: Add support for package aliases / renaming (''rubenwardy'')
* Moved MapBlock (de)serializing code out of Database class ''(sfan5)''
+
* Improved "Join Game" tab (''sfan5'')
* Don't include cmake_config_githash.h into files that don't need it ''(sfan5)''
+
* Builtin function translation (''Wuzzy'', ''Zughy'')
* Moved #includes from version.h to version.cpp ''(kahrl)''
+
* Translation support for the builtin functions (''Wuzzy'', ''snowyu'') + updates (''Wuzzy'', see CONTRIBUTING file)
* Improved timeout calculation when packets are lost ''(sapier)''
+
* Handle modpacks containing modpacks properly (''Elias Fleckenstein'')
* Refactored a section of ban.cpp ''(Selat)''
+
* Texture pack toggle by double clicking (''Yaman Qalieh'')
* Allowed use all 6 faces for special tiles ''(RealBadAngel)''
 
* Saved previously generated blocks on Mapgen blitback ''(kwolekr)''
 
* Refactored Settings ''(ShadowNinja, Zeno, kwolekr)''
 
* Added setting groups (used for NoiseParams) and multiline entries ''(kwolekr)''
 
* Added NodeResolver and cleaned up node name -> content ID resolution system ''(kwolekr)''
 
* Added support for eased 3d noise ''(kwolekr)''
 
* Added notice when only minimal is installed ''(rubenwardy)''
 
* Split up mapgen.cpp ''(kwolekr)''
 
* Refactored the_game ''(Zeno)''
 
* Added Generator Element Management framework ''(kwolekr)''
 
* Cleaned up rollback ''(ShadowNinja)''
 
* Refactored main.cpp ''(Zeno)''
 
* Rewrote generate notification mechanism ''(kwolekr)''
 
* Rewrote fs::GetDirListing(file), fixing a potential buffer overflow ''(kahrl)''
 
  
'''Other changes'''
+
=== Features: Modding ===
  
* Removed math mapgen ''(proller)''
+
* Sky API: Reset by empty arguments (''Zughy'')
* Removed indev mapgen ''(proller)''
+
* Use a database for mod storage (internal) + CSM auto-migration (''TurkeyMcMac'')
* Removed proller from credits ''(proller)''
+
* Add padding[] element to formspecs (#11821) (''v-rob'')
* Updated default control documentation ''(BlockMen)''
+
* Disable inventory if player's inventory formspec is blank (''ROllerozxa'')
* Made lighting CPU-only by removing finalColorBlend implementation from shaders ''(RealBadAngel)''
+
* Add minetest.disconnect_player (''Corey Powell'')
* Added /dummyball <count> command to the minimal game ''(kahrl)''
+
* Add Lua bitop library (''Lejo'')
* Made the LuaJIT exception wrapper handle more exceptions ''(kahrl)''
+
* Allow for game-specific menu music (''ExeVirus'')
* Added missing doc for minetest.get_us_time() ''(sapier)''
+
* Add minetest.rmdir, minetest.cpdir and minetest.mvdir (''octacian'')
* Made HTTPFetch use the configured bind_address ''(ShadowNinja)''
+
* Add no_texture.png as fallback for unspecified textures (''Wuzzy'')
* Made config compatible with C++ 2011 ''(donat_b)''
+
* Add minetest.get_server_max_lag() (''Wuzzy'')
* Added a .mailmap file ''(Stefan Beller)''
+
* Split node field 'liquid_viscosity' into two: liquid_viscosity (how fast liquid flows) and move_resistance (how much it slows players) (''Wuzzy'')
* Search for subgames using $MINETEST_SUBGAME_PATH ''(David Thompson)''
+
* Improved dynamic_add_media functionality (''sfan5'')
* Added Indonesian language ''(srifqi)''
+
* Add group-based tool filtering for node drops (''Treer'')
* Updated translations ''(kilbith, ShadowNinja)''
+
* Add disable_settings to game.conf to get rid of "Enable Damage"/"Creative Mode"/"Host Server" checkboxes (''Df458'')
* Replaced setting unlimited_player_transfer_distance with player_transfer_distance ''(SmallJoker)''
+
* Add a simple PNG image encoder with Lua API + texture modifier <code>[png</code> (''hecks'')
* Added last_login field to auth.txt ''(Ryan Newell)''
+
* Add bold, italic and monospace font styling for HUD text elements (''sfan5'')
* Added tooltips to main menu subgames button bar ''(Wuzzy)''
+
* Add wallmounted support for plantlike and plantlike_rooted nodes (''Wuzzy'')
* Added option 'eased' to NoiseParams ''(SmallJoker)''
+
* Add API for mods to hook liquid transformation events (''Warr1024'')
* Added (optional) client-side saving of server map to disk ''(sfan)''
+
* Add min_y and max_y checks for Active Block Modifiers (ABM) (''sfence'')
* Added name of node 'pointed at' to debug ''(rubenwardy, Zeno)''
+
* Add metatables to Lua vectors (''DS'')
* Added space between client names in status text ''(Muhammad Rifqi Priyo Susanto)''
+
* Add minetest.compare_block_status function (''SmallJoker'')
* Disabled loading .mtl files ''(RealBadAngel)''
+
* Add minetest.colorspec_to_colorstring (''v-rob'')
* Made biome heat and humidity noise parameters user-configurable ''(kwolekr)''
+
* Put torch/signlike node on floor if paramtype2=="none" (''Wuzzy'')
* Added paste command (Ctrl-V) in chat console ''(kahrl)''
+
* Return ObjectRef from minetest.spawn_falling_node() (''benrob0329'')
* Responsive tooltip offset for Android ''(Kodexky)''
+
* Modifyable player fall damage via armor group (''Wuzzy'')
* Allowed footstep sounds to play for liquid and ladder nodes ''(Taoki)''
+
* Add vector.to_string and vector.from_string (#10323) (''DS'')
* Added basic support for generating API documentation using Doxygen ''(Jürgen Doser)''
+
* Add math.round and fix vector.round (''v-rob'')
* Set WM_CLASS window hint for Xorg ''(kwolekr)''
+
* Degrotate support for mesh nodes (''numberZero'') + fixes (''sfan5'', ''Wuzzy'')
 +
* lua_api.txt: Fix style selector examples (''Df458'')
 +
* Nested Settings are now also contained in to_table (''SmallJoker'')
  
=== Performance ===
+
=== Bugfixes ===
  
* Disabled preload_item_visuals by default ''(ShadowNinja)''
+
* Fix Minetest logo when installed system-wide (''ROllerozxa'')
* Sped up mapblock_mesh ''(RealBadAngel, Zeno)''
+
* Cancel emerge callbacks on shutdown (''TurkeyMcMac'')
* Implemented caching of facedir rotated meshes (controlled by enable_mesh_cache setting) ''(RealBadAngel)''
+
* Free arguments of cancelled minetest.after() jobs (''sfan5'')
* Removed most exceptions from getNode() (and variants) ''(Zeno)''
+
* Fix damage wraparound if very high damage (''Wuzzy'')
* Sped up removing a node (less block mesh updates) ''(RealBadAngel)''
+
* Cap damage overlay duration to 1 second (''Wuzzy'')
* Reduced number of extrusion meshes to (usually) 5 instead of one per item ''(kahrl)''
+
* Rendering fixes: Add more neighbors on mesh update (''numberZero'')
* Improved VoxelArea variable locality ''(Wouters Dorian)''
+
* Don't let HTTP API pass through untrusted function (''sfan5'')
* Optimised functions from CNodeDefManager and VoxelManipulator ''(Zeno)''
+
* Fix URL escaping in content store (''sfan5'')
* Optimised serialization, for example by using machine native byte swapping if available ''(Rafael Reilova)''
+
* Fix find_nodes_in_area misbehaving with out-of-map coordinates (''sfan5'')
* Optimised main client loop ''(Zeno)''
+
* Minimap: gamma-correct average texture colour calculation (''HybridDog'')
* Optimised noise implementations ''(kwolekr)''
+
* Fix item duplication if player dies during interact callback (''sfan5'')
* Optimized getLight() by 2x ''(Zeno)''
+
* View bobbing fixes (''appgurueu'')
* Stopped liquid queue from eating up more and more RAM; also liquid_loop_max now defaults to 100000 ''(Zeno, celeron55)''
+
* Fix player HP desync between client and server (''savilli'')
* Changed TileSpec::frames to be std::vector not std::map ''(unknown, Zeno)''
+
* Rendering fixes: Order drawlist by distance to the camera (''x2048'')
 +
* Fix crash when .conf release field is invalid (''rubenwardy'')
 +
* Performance: Fix client-side performance of chat UI (''DS'')
 +
* Fix HUD multiline text alignment (''appgurueu'')
 +
* Send correct updates to clients after node metadata clear (''TurkeyMcMac'')
 +
* Remove redundant on_dieplayer calls (''savilli'')
 +
* Fix 6th line of infotext being cut off in half (''Wuzzy'')
 +
* Validate staticdata and object property length limits (''sfan5'')
 +
* Fix scaled world-aligned textures being aligned inconsistently for non-normal drawtypes (''Wuzzy'')
 +
* Various lua_api.txt corrections and improvements (''Df458'', ''random-geek'', ''Wuzzy'', ''Francisco'', ''Zughy'')
 +
* Run on_grant and on_revoke callbacks after privs change (''AFCMS'')
 +
* Fix base64 validation and add unittests (''appgurueu'')
 +
* Fix cloud fog being broken for high clouds (''Wuzzy'')
 +
* Attachments: various bugfixes (''SmallJoker'')
 +
* Rendering engine fxes and cleanups (''nerzhul'')
 +
* Multiple OpenGL ES fixes (''sfan5'')
 +
* Make edit boxes respond to string input (IME) (''yw05'')
 +
* cURL timeout fixes and increased default timeout (''sfan5'')
 +
* Fix wield image of plantlike_rooted (''Wuzzy'')
 +
* Fix attached-to-object sounds volume (''Desour'')
 +
* Fix segfault for model[] without animation speed (''kilbith'')
 +
* Crash fix when models fail to load (''sfan5'')
 +
* Access protections for per-player detached inventories (''SmallJoker'')
 +
* mg_name and mg_flags can no longer be set by Lua (minetest.conf) (''sfan5'')
 +
* Interlaced 3D mode fixes (''srifqi'')
 +
* Fix hud_change and hud_remove functionality after hud_add calls (''savilli'')
 +
* Fix number of times a tool can be used before breaking being off by a number between 1 and 32767 (''Wuzzy'')
 +
* Various stability fixes (server and client crashes)
  
=== Bug fixes ===
+
=== Maintenance ===
  
* Fixed face shading issues ''(RealBadAngel)''
+
* Rendering improvements: use dedicated GPU, improve frame calculations (''sfan5'')
* Fixed crash reported here: https://forum.minetest.net/viewtopic.php?f=6&t=9726 ''(Novatux)''
+
* Fully remove bitmap font support (use TTF now) (''sfan5'')
* Fixed flipped textures for drawtype "glasslike" ''(sapier)''
+
* Restore GCC 5 compatibility (''JosiahWI'')
* Fixed indexing error in timer processing ''(Zefram)''
+
* Remove creative/damage info in Esc/Pause menu (''Wuzzy'')
* Made tooltip_show_delay=0 work ''(Zefram)''
+
* Update to Android target SDK 30 (''rubenwardy'')
* Fixed error handling on inconsistent client ready message ''(sapier)''
+
* Add macOS build docs (''andkerr'')
* Fixed texture hack in fences ''(RealBadAngel)''
+
* Android: Use scoped app storage (''rubenwardy'')
* Fixed texture glitches for plants with visual scale > 1.0 (jungle grass) ''(RealBadAngel)''
+
* Make /status message easier to read (''Wuzzy'')
* Fixed makeCuboid to apply rotations to all faces when 1 tile is given ''(RealBadAngel)''
+
* Clean up/improve some scriptapi error handling code (''sfan5'')
* Fixed display of interior of glasslike_framed node when its not defined ''(RealBadAngel)''
+
* Add hint to error message on how to build with in-tree Irrlicht (''20kdc'')
* Fixed LuaVoxelManipulator memory leak ''(Zeno-)''
+
* Optimize vector length calculations (''Lean Rada'')
* Fixed seeds corrupting world creation menu formspec ''(ShadowNinja)''
+
* Remove hardcoded "You died." message in chat (''Wuzzy'')
* Made face shading correct for all possible lighting modes ''(RealBadAngel)''
+
* Remove unsupported video drivers (''hecks'')
* Fixed liquid sources and flowing surfaces having different brightness ''(RealBadAngel)''
+
* Document hypertext formspec element escaping (''Wuzzy'')
* Fixed main menu game initialization ''(BlockMen)''
+
* Drop --videomodes, fullscreen_bpp and high_precision_fpu settings (''sfan5'')
* Made safeWriteToFile() remove empty file if there is an error ''(Selat)''
+
* PostgreSQL fixes and improved error messages (''sfan5'')
* Don't call player events without having player to do a event for ''(sapier)''
+
* Improved liquid documentation (''Wuzzy'')
* Fixed "ghost" blocks if block update is "on wire" while player digs nodes ''(sapier)''
+
* Improved mipmapping-related code (''sfan5'')
* Added player name length checks ''(sapier)''
+
* Rendering engine was changed from Irrlicht to [[IrrlichtMt]] (Minetest's fork of Irrlicht) (''sfan5'')
* Fixed chat messages capturing mouse interactions for menu/formspecs ''(sapier)''
+
* Performance: Draw items as 2D images (instead of meshes) when possible (''sfan5'')
* Fixed segmentation fault if popping from empty stack (L-system trees) ''(Zeno)''
+
* Sanity check: Block & report player self-interaction (''appgurueu'')
* Fixed interlaced 3D mode second image being flipped when compiling with Irrlicht 1.8+ ''(sapier)''
+
* Multiple font code cleanups and improvements (''sfan5'')
* Fixed only one texture being updated on window resize, breaking side-by-side and top-bottom 3D modes ''(sapier)''
+
* IrrlichtMt switch related fixups (''kilbith''. ''sfan5'', ''nerzhul''))
* Fixed access to invalid data when receiving empty packets ''(sapier)''
+
* Performance improvements during media/mesh loading (''sfan5'')
* Fixed some locking bugs ''(kahrl, ShadowNinja)''
+
* Json is now taken from the system by default (''sfan5'')
* Use round if falling node is misplaced ''(SmallJoker)''
+
* Various build bot and setup changes (''sfan5'')
* Fixed and simplified player modification checks ''(ShadowNinja)''
+
* Restructured "/teleport" command (''HybridDog'')
* Fixed unit tests failing if IPv6 not available ''(Zeno)''
+
* Consistent Aux1 key naming (''Wuzzy'')
* Fixed wield mesh getting clipped by camera far value ''(kahrl)''
+
* Many many internal cleanups and fixes (''sfan5'', others)
* Fixed raillike rendering bug on Android ''(Kodexky)''
 
* Don't corrupt stepheight when setting other properties ''(Ciaran Gultnieks)''
 
* Fixed mouse events getting passed from a table's scrollbar to its parent ''(kahrl)''
 
* Fixed minetest.place_schematic() when defined by a Lua table ''(kwolekr)''
 
* Ignore .name directories and files in main menu ''(SmallJoker)''
 
* Fixed some typos ''(sapier, rubenwardy, William Teder, ShadowNinja, kahrl, Zeno)''
 
  
=== Modding-related changes ===
+
=== Minetest Game ===
 +
* Add “Read” and “Write” tabs to book interface when you own the book (''orbea'')
 +
* Allow to write books without text or title (''orbea'')
 +
* Make identical keys stackable (''Luis Royer'')
 +
* Fix creative inventory trash slot not working for player named “trash” (''Montandalar'')
 +
* Fix sunlight propagation for glass stair/slab (''An0n3m0us'')
 +
* Fix glass bottle with firefly not being placable in vessels shelf (''An0n3m0us'')
 +
* Other bugfixes
 +
* Translations: Esperanto (''Jason Cartwright''), Russian (''ptah-alexs''), Japanese (''nogajun''), German (''Wuzzy''), Slovak (''Daretmavi''), French (''Olivier Dragon''), Swedish (''ROllerozxa''), Chinese (''雷哲翰''), Ukrainian (''baytuch'')
  
* New drawtypes: mesh ''(RealBadAngel)'', firelike ''(TriBlade9)'', glasslike_framed_optional ''(BlockMen)''
+
== 5.3.0 → 5.4.0 ==
* New texture modifiers: ^[mask ''(sfan5)'', ^[colorize ''(BlockMen)''
 
* New formspec element: scrollbar ''(sapier)''
 
* Allowed non-integer sizes for item_image[] ''(Zefram)''
 
* Added texture grouping via ( ... ) ''(sfan5)''
 
* Added mod profiling support ''(sapier)''
 
* Added compression API ''(ShadowNinja)''
 
* Added update of the Mapgen VoxelManipulator on buffer invalidation ''(kwolekr)''
 
* Added LuaVoxelManip methods: get_node_at() and set_node_at() ''(kwolekr)''
 
* Simplified and optimized schematic replacements ''(ShadowNinja)''
 
* Made dump's output prettier ''(ShadowNinja)''
 
* Added collision_box node property ''(RealBadAngel)''
 
* Added warning when creating a global variable (unless it has the same name as the current mod) ''(ShadowNinja)''
 
* Added minetest.copy_table(table), vector.apply(v, func) and math.sign(x, tolerance) ''(SmallJoker)''
 
* Improved documentation for remove_item, string_to_pos, dig_node, on_step, get_meta ''(Ciaran Gultnieks)''
 
* Added minetest.clear_registered_biomes() ''(kwolekr)''
 
* Added new noise parameters: flags and lacunarity ''(kwolekr)''
 
* Added support for NoiseParams in minetest.get_perlin() ''(kwolekr)''
 
* Exposed mapgen chunksize in on_mapgen_init callbacks ''(kwolekr)''
 
  
=== Vanilla game changes (minetest_game) ===
+
Released on 23 Feb 2021.
  
==== Gameplay ====
+
=== Deprecations and compatibility notes ===
  
* Made opened trapdoor climbable ''(Zefram)''
+
* Removed support for bumpmapping, generated normal maps, and parallax occlusion (''Lars'', ''hecks'')
* Made doors form double-doors with other doors of any kind ''(Zefram)''
+
** These features had fundamental issues, several bugs, and were broken on some platforms.
* Added filled buckets to creative inventory ''(Zefram)''
+
* Deprecated node field value: <code>use_texture_alpha = true/false</code>
* Enabled dungeon generation by default ''(Amaz1)''
+
** Fix: Use <code>"clip"</code>, <code>"blend"</code> or <code>"opaque"</code> (see documentation)
* Improved handling of boats ''(paramat)''
+
* Deprecated <code>get_player_velocity</code> and <code>add_player_velocity</code> (''rubenwardy'')  
* Added pine trees, with needles, tree, wood and saplings ''(paramat, PilzAdam)''
+
** Fix: replace with <code>get_velocity()</code> and <code>add_velocity()</code>
* Made player-placed leaves not decay ''(PilzAdam)''
+
* Deprecated multiply and divide with two vectors (Schur product and quotient) (''DS'')
* Reworked infotext of furnace ''(PilzAdam)''
+
** Fix: implement your own version
* Added Obsidian Bricks ''(HybridDog)''
+
* By default, the crosshair will now change to an "X" when pointing to objects. If your game had a custom crosshair, this might come as a surprise and break graphical consistency.
* Changed controls of screwdriver ''(tenplus1, PilzAdam)''
+
** Fix: Specify object_crosshair.png image
 +
* Added deprecation warning for node field: <code>alpha</code> (only limited compatibility provided)
 +
** This was already deprecated and undocumented.
 +
** Fix: Replace by <code>use_texture_alpha</code>
 +
* Fixed deprecation warning when certain ores types ("sheet", "puff", "blob" and "vein") are missing noise_params (''rubenwardy'')
 +
** These ore types require noise_params. To keep the same behaviour, you can use the following values:
  
==== Visuals ====
+
<pre>
 +
noise_params = {
 +
    offset  = 0,
 +
    scale  = 1,
 +
    spread  = {x=250, y=250, z=250},
 +
    seed    = 12345,
 +
    octaves = 3,
 +
    persist = 0.6,
 +
    lacunarity = 2,
 +
    flags = "defaults",
 +
}
 +
</pre>
  
* Changed ingot textures ''(Nore)''
+
=== Features ===
* Made TNT smoke round ''(ShadowNinja)''
 
* Made fire use new fire drawtype ''(BlockMen)''
 
* Added new textures for cobble and furnace ''(Neuromancer56, BlockMen)''
 
* Added new textures for grass ''(BlockMen, Philipbenr)''
 
* Made glass use new, optional framed drawtype ''(BlockMen)''
 
* Added new textures for apples, chests, dirt, desert stone bricks, HP bar, snowballs ''(BlockMen)''
 
* Added new textures for ores, vessels, grass (plant), leaves and ladders ''(kilbith)''
 
* Added new textures for flowers ''(RHRhino)''
 
* Added new textures for doors ''(Amaz1)''
 
* Changed soil textures to use an overlay over default_dirt.png ''(PilzAdam)''
 
* Added new textures for soil ''(PilzAdam)''
 
* Added a bit white to crack texture ''(ShadowNinja)''
 
* Made signs a 3D box, instead of just a 2D plane ''(Calinou)''
 
  
==== Bug fixes ====
+
==== General ====
  
* Fixed crafting recipe for iron bars ''(BlockMen)''
+
* Make 'place' and 'dig' keys freely configurable (only via minetest.conf for now: <code>keymap_place</code> and <code>keymap_dig</code>) (''ANAND'', ''Markus Koch'')
* Added protection support to TNT ''(BlockMen)''
+
* Freely bindable mouse buttons (only via minetest.conf for now: <code>KEY_LBUTTON</code>, <code>KEY_MBUTTON</code>, <code>KEY_RBUTTON</code>) (''ANAND'', ''Markus Koch'')
* Retain sign text when editing is aborted via Esc ''(Zefram)''
+
* Add 'ores' global mapgen flag (''Paramat'')
* Fixed Desert Sand Soil dropping itself ''(Amaz1)''
+
* Mapgen Flat: Add caverns, disabled by default (''Paramat'')
* Consistently use group:stick in tool recipes ''(Zefram)''
+
* Semi-transparent background for nametags (''Zughy'', ''rubenwardy'')
* Fixed boats flying upwards ''(paramat)''
+
* Disable object selectionboxes by default (''LoneWolfHT'')
* Fixed hoes wearing out in creative mode ''(BlockMen)''
+
* Change crosshair when pointing to objects ("X" shape by default) (''LoneWolfHT'')
* Fixed brown dye being in yellow color group ''(BlockMen)''
+
* Shaders for Android (GLES 2) (''Vitaliy'')
* Fixed player staying attached when removing boat ''(BlockMen)''
+
* Load media from subfolders (''DS'')
* Removed “leaked” global variables ''(PenguinDad, kaeza, CraigyDavi, PilzAdam)''
+
* Allow configuring block disk and net compression. Change default disk level. (''Lars'')
* Fixed various bugs with fire sounds ''(PilzAdam)''
 
* Fixed possible stacking of books in bookshelf ''(MT-Modder)''
 
* Fixed soil drying out if nearby water is unloaded ''(PilzAdam)''
 
* Fixed rotating of locked doors to bypass them ''(PilzAdam)''
 
* Fixed screwdriver overriding bits in param2 that are not used for rotation ''(PilzAdam)''
 
  
==== Miscellaneous ====
+
==== Main menu and ContentDB ====
  
* Added enable_tnt setting ''(ShadowNinja, Yepoleb)''
+
* ContentDB: Add dependency resolution, update all, and download queues (''rubenwardy'')
* Optimized TNT explosion ''(ShadowNinja)''
+
* ContentDB: Add overwrite dialog when content is already installed (''rubenwardy'')
* Added option for custom opening and closing sound for doors ''(Jat15, Zefram)''
+
* ContentDB: Use icons for buttons (''Zughy'')
* Removed generation of flowers, papyrus, cactus and grass (plant) generation from other mapgenerators than v6 ''(paramat)''
+
* Add open user data button to main menu (''rubenwardy'')
* Removed ore definitions for indev mapgen ''(paramat)''
+
* Main menu: Add clear button and icon for search input (''Andrey'')
* Added all saplings to group sapling ''(PilzAdam)''
+
* Improve layout of main menu 'local' tab (''Paramat'')
* Allowed the group book to be placed in bookshelf ''(PilzAdam)''
 
* Added a minetest.conf.example with all settings from minetest_game, that can be changed in mintest.conf ''(PilzAdam)''
 
* Removed remains of weather and finite liquids ''(PilzAdam)''
 
* Restructured and moved furnace code to furnace.lua ''(PilzAdam)''
 
  
=== Master server (server list) ===
+
==== Modding: GUI (Formspecs) / HUD ====
* Announce mg_name from map_meta.txt instead of minetest.conf ''(kahrl)''
 
  
== 0.4.9 → 0.4.10 ==
+
* Add sound effect style option (''Pierre-Yves Rollo'')
 +
* Add 3d model formspec element (''Jean-Patrick Guerrero'', ''SmallJoker'', ''Thomas--S'')
 +
* Add minimap and compass HUD elements (''Pierre-Yves Rollo'', ''Jean-Patrick Guerrero'')
 +
* Make bgcolor tint button background images (''Hugues Ross'')
 +
* Add gradients and borders to FormSpec boxes (''v-rob'')
 +
* Add font styling options (''v-rob'')
 +
* Add set_focus[] to initially focus elements (''v-rob'')
 +
* Make dropdowns optionally return event based on index, not value (''v-rob'')
 +
* Avoid drawing clipped out formspec elements (''EvidenceB'')
 +
* Darken tabheader background color (''Kezi'')
 +
* Add inventory list styling: spacing, slot size, and noclip (''v-rob'')
 +
* Add support for custom object crosshair image: object_crosshair.png (''LoneWolfHT'')
  
0.4.10 was released on July 6, 2014.
+
==== Modding: Other ====
  
=== New features ===
+
* Add support for showing attached objects whilst in first person mode (''Jordach'')
 +
* Add ability to cancel a minetest.after call after it was started (''tenplus1'')
 +
* Add on_rightclickplayer callback (''sorcerykid'')
 +
* Add on_deactivate callback for luaentities (''hecks'')
 +
* Add minetest.get_objects_in_area (''Elias Fleckenstein'')
 +
* Add ObjectRef:get_children() (''Zughy'')
 +
* Add a short_description to be used by mods (''DS'')
 +
* Add minetest.get_artificial_light and minetest.get_natural_light (''HybridDog'')
 +
* Add register_on_chatcommand to SSM and CSM (''Elijah Duffy'')
 +
* Add vector.offset (''DS'')
 +
* Register missing get_texture_mod function (''karamel59'')
 +
* content_cao: Support texture animation for upright_sprite (''sfan5'')
 +
* Add PUT and DELETE request + specific method value to HTTP API (''Lejo'')
 +
* Nodes are now allowed to have the "liquid" or "flowingliquid" drawtype for non-liquids (liquidtype=none) (''Wuzzy'')
 +
* Play 'place_failed' sound if trying to place a node into an occupied space or it was an "attachable" node that failed to attach (''Wuzzy'')
 +
* Implement grouped mode for find_nodes_in_area (''sfan5'')
 +
* Clean up sound_fade (''hecks'')
 +
* Chat commands: Show help message if func returns false without message (''HybridDog'')
 +
* Node use_texture_alpha field supports now 3 modes "blend", "clip" and "opaque" (deprecated true/false values)
  
'''Big gameplay changes'''
+
=== Other enhancements and maintenance ===
  
* Added third person view ''(BlockMen)''
+
* Cross-reference the node level manipulation functions (''Oblomov'')
* Removed finite liquid and weather ''(proller)''
+
* Update fallback fonts and mark additional locales as broken (''sfan5'')
 +
* Clean up l_object.cpp (''Zughy'')
 +
* Devtest: Improve various things (''Paramat'', ''HybridDog'', ''Wuzzy'')
 +
* Android: Add CI with saving artifacts (''Maksim'')
 +
* Add NetBSD cpu affinity support code (''David CARLIER'')
 +
* Android: drop simple MainMenu (''Maksim'')
 +
* Add support for Haiku OS (''David CARLIER'')
  
'''Smaller gameplay tweaks'''
+
=== Bug fixes ===
  
* Create bones only when the player's inventory is not empty & remove the bones when emptied ''(arsdragonfly)''
+
==== Security ====
* Made pause menu actually pause singleplayer game and use lower maximum FPS in it ''(celeron55)''
 
* Prevented placing node when player would be inside new node ''(BlockMen)''
 
* Drop an item instead a stack while sneaking ''(Lord89James)''
 
* Added support for exiting formspecs by doubleclicking outside ''(sapier)''
 
  
'''Logistic changes'''
+
* Prevent players accessing inventories of other players (''Lars Müller'')
 +
* Inventory: Protect Craft and Drop actions (''SmallJoker'')
 +
* Prevent interacting with items out of the hotbar (''Lejo'')
 +
* Fix inventory swapping not calling all callbacks (''Lars Müller'')
 +
* Patch fast/teleport vulnerability when attached to an entity (''Elias Fleckenstein'')
 +
* Prevent games from setting secure settings (''rubenwardy'')
 +
* Prevent players from being able to modify ItemStack meta (''luk3yx'', ''rubenwardy'')
  
* Made build prefer pkg-config for freetype2 detection ''(hasufell)''
+
==== Other ====
* Added function to deregister a profiler from profiler list ''(sapier)''
 
* Made MutexQueue use jsemaphore for signaling ''(sapier)''
 
* Added maximum recursion depth to read_json_value ''(ShadowNinja)''
 
* Made default User-agent follow RFC 2616 ''(ShadowNinja)''
 
* Include system info in the HTTP user agent on Windows ''(sfan5)''
 
* Added proper client initialization ''(sapier)''
 
* Settings: Add no-exception variants of each get method ''(kwolekr)''
 
* Huge overhaul of the entire MapgenParams system ''(kwolekr)''
 
* ServerEnvironment: Remove direct dependency on EmergeManager ''(kwolekr)''
 
* Replace pause, message, and death menus by formspec ones ''(sapier)''
 
* Pass arguments by reference, reducing data copies ''(Selat)''
 
* Cleaned up client init states by bumping protocol version ''(sapier)''
 
* Added support for named threads on Linux, BSD, and Windows (MSVC-only) ''(sapier, ShadowNinja)''
 
* Infered ipv6_server from bind_address; fixed client connect to IN(6)ADDR_ANY ''(kahrl)''
 
* Fixed all warnings reported by clang ''(sfan5)''
 
* Removed locks that aren't absolutely required from JThread ''(sapier)''
 
* Use narrow_to_wide in gettext instead of operating system dependent conversion function ''(sapier)''
 
* Organized builtin into subdirectories ''(ShadowNinja)''
 
* Switched to "core" namespace internally ''(ShadowNinja)''
 
* Mapped Irrlicht log level to Minetest's and allowed writing Irrlicht logs to debug file ''(RelaBadAngel)''
 
* Made print() NUL-safe ''(ShadowNinja)''
 
* Added formspec toolkit and re-factored main-menu to use it ''(sapier)''
 
* Reworked dumping functions ''(ShadowNinja)''
 
* Improved performance by removing some temporary objects ''(sapier)''
 
* Added an AppData file ''(David Gumberg)''
 
* United node shaders and improved shader performance ''(RealBadAngel)''
 
* Made players only stay loaded while they're connected ''(ShadowNinja)''
 
* Added formspec API versioning ''(sapier)''
 
* Added support for multipart/form-data to HTTPFetch ''(ShadowNinja)''
 
* Improved error reporting of LevelDB backend ''(sfan5)''
 
  
'''Visual changes'''
+
* Fix dropped craftitems/tools not using light_source values (''LoneWolfHT'')
 +
* Fix when on_player_hpchange is called (''SmallJoker'')
 +
* Use JSON for favorites list, fixing many bugs (''rubenwardy'')
 +
* Fix hypertext and textarea elementing consuming scroll events (''v-rob'')
 +
* Fix ESC in error dialog from closing Minetest (''Yaman Qalieh'')
 +
* Remove null bytes from TOCLIENT_BLOCKDATA (''luk3yx'')
 +
* Load system-wide texture packs too (''Zughy'')
 +
* Fix Android support in bump version script (''rubenwardy'')
 +
* ContentDB: Ignore content not installed from ContentDB (''rubenwardy'')
 +
* Sanitize server IP field in mainmenu (''Zughy'')
 +
* Fix item tooltip background color not working (''Lars Mueller'')
 +
* Display Minetest header when menu_last_game value isn't available anymore (''Zughy'')
 +
* Fix minetest.is_nan (''Lars Mueller'')
 +
* Fix some minor code issues all over the place (''sfan5'')
 +
* Minor profiler fixes. (''Lars'')
 +
* Fix fallnode rotation of wallmounted nodebox/mesh (''Wuzzy'')
 +
* Make installer create its own Minetest folder (''LoneWolfHT'')
 +
* Implement mapblock camera offset correctly (''hecks'')
 +
* Fix MSAA stripes (''HybridDog'')
 +
* Fix certain connected nodeboxes crashing when falling (''sfan5'')
 +
* Avoid generating the same chunk more than once with multiple emerge threads. (''Lars'')
 +
* Fixed various issues with stars, sky, and clouds (''numzero'')
 +
* Fix falling image of torchlike if paramtype2="none" (''Wuzzy'')
 +
* Fix player sprite visibility in first person (''sfan5'')
 +
* Fix object interaction distance not being checked (''rubenwardy'')
 +
* Block attempts to connect to the client (''red-001'')
 +
* Fix segfault in deprecation logging due to tail call, log by default (''rubenwardy'', ''SmallJoker'')
 +
* Player physics: Ensure larger dtime simulation steps (''Lars Müller'')
 +
* Avoid resending near blocks unnecessarily. (''Lars'')
 +
* Fix CSMs on arm64 (''luk3yx'')
 +
* Fix Media... 0% on loading screen (''Maksim'')
 +
* Implement unloading of static_save=false objects according to existing docs (''sfan5'')
 +
* Decouple entity minimap markers from nametags replacing with show_on_minimap property (''sfan5'')
 +
* Periodically release all mesh HW buffers to avoid an Irrlicht bottleneck. (''Lars'')
 +
* Fix float argument check in minetest.set_timeofday() (''Zughy'')
 +
* Avoid drawing invisible blocks on the client. (''Lars'')
 +
* Fix scroll bar overlapping text (again) (''random-geek'')
 +
* Reduce the FPS when the window is unfocused (''HybridDog'')
 +
* Android: replace InputDialogActivity on simple dialog window (''Maksim'')
 +
* Correct erroneous reported max lag with prometheus (''Buckaroo Banzai'')
 +
* Fix horizontal/vertical merging bug of hardware-colored framed glass (''Paramat'')
 +
* Fix chat/infotext overlap if many chat lines (''Wuzzy'')
 +
* Settings: Fix crash on exit (''SmallJoker'')
 +
* Record player existence in dummy database. (''Lars'')
 +
* Darwin platform build fix (''David CARLIER'')
 +
* Scale inventory image for scaled allfaces nodes (''Wuzzy'')
 +
* Fix NetBSD build (''David CARLIER'')
 +
* shaders: Fix transparency on GC7000L (''mntmn'')
 +
* Fix MSVC compiler warnings (''adrido'')
 +
* Fix light overflow of u8 if light is saturated at 255 (''BenjaminRi'')
 +
* Fix missing translation call in hypertext (''Pierre-Yves Rollo'')
 +
* Render nodeboxes with opaque material if possible (''sfan5'')
 +
* Fix precision not working in hud_change (''Lars Müller'')
 +
* Fix build for Visual Studio (explicitly cast pointers) (''Seeker'')
 +
* Fix GCC class-memaccess warnings (''Paul Ouellette'')
 +
* Falling: Fix error caused by missing param2 (''SmallJoker'')
 +
* Allow starting local server using --go again (''SmallJoker'')
 +
* decode_base64: Allow '=' padding character (''SmallJoker'')
 +
* Sanitize world directory names on create. Keep original name separate (''Hugues Ross'')
 +
* Improve bad/missing default inventory+wield images of node drawtypes, affecting: airlike, signlike, torchlike, raillike, plantlike, plantlike_rooted, firelike, flowingliquid (''Wuzzy'')
 +
* Android: Fix ConfirmRegistration and PasswordChange input and scale size (''Maksim'')
 +
* Formspecs: volume and key settings windows can now be closed by doubleclicking/tapping (''Zughy'')
  
* Added waypoint HUD element ''(RealBadAngel)''
+
=== Minetest Game ===
* Added on-the-fly normal map generation ''(RealBadAngel)''
+
* Add crafting guide (''Paul Ouellette'')
* Made sun and moon textureable ''(RealBadAngel)''
+
* Added 5 wood variants of Mese Post Light (''An0n3m0us'')
* Made formspec text-area word-wrap ''(RealBadAngel)''
+
* Add environment sounds for lava and active furnace (''An0n3m0us'')
* Added support for DPI based HUD scaling ''(sapier)''
+
* Change several block sounds (''An0n3m0us'')
* Made debug text adjust it's border to the screensize ''(ShadowNinja)''
+
* Fix players sleeping in an occupied bed (''An0n3m0us'', ''Wuzzy'')
* Added download rate to non-HTTP media progress bar ''(sapier)''
+
* Fix 'sleepwalking' in bed (''An0n3m0us'', ''Wuzzy'')
* Added support for interlaced-polarized, top-bottom, and side-by-side 3D screens ''(sapier)''
+
* Fix sleeping player flying off the bed when damaged and flying far away from the bed after death (''An0n3m0us'')
* Made pause menu hide before "Shutting down..." message is drawn ''(sapier)''
+
* Fix sleeping player being immobilized and bed undiggable after death (''An0n3m0us'')
* Sorted commands and privileges alphabetically in '/help' ''(kaeza)''
+
* Fix furnace infotext not always updating when removing item (''orbea'')
* Improved face shading with and without shaders ''(RealBadAngel)''
+
* New translation: Slovak (''Daretmavi'')
* Added support for scalable font and GUI elements ''(sapier)''
+
* New translation: Brazilian Portuguese (''ronaldo'')
* Made GUITable mouse wheel scrolling faster ''(kahrl)''
+
* New translation: Lojban (admittedly not a very good translation) (''robintown'', ''Wuzzy'' and others)
 +
* Update existing translations (various people)
  
'''Other changes'''
+
== 5.2.0 → 5.3.0 ==
  
* Added the option to bind to a specific address ''(ShadowNinja)''
+
Released on 9 July 2020.
* Made flag strings clear specified flag with 'no' prefix ''(kwolekr)''
 
* Added check to avoid usage of broken LuaJIT < 2.0.0-beta-8 ''(sapier)''
 
* Lots of new and updated translations ''(many contributors)''
 
* Improved performance of ABMs by only calcuating object counts once ''(CiaranG)''
 
* Improved win32 file version information ''(sapier)''
 
* Documented CMake options in README ''(sfan5)''
 
* Corrected misleading detached inventory error message ''(CiaranG)''
 
* Added more informative error messages for inventory and item method errors ''(ShadowNinja)''
 
* Added redis database backend ''(sfan5)''
 
* Moved the old stuff to doc ''(BlockMen)''
 
* Removed dependency on marshal and many other async changes ''(ShadowNinja)''
 
* Made item entity stacks merge on the ground and add TTL to item entities ''(RealBadAngel)''
 
* Updated buildbot scripts and added 64-bit buildbot ''(sfan5)''
 
* Added support for directly starting a world by name from command line ''(sapier)''
 
* Many performance improvements and memory usage reductions ''(sapier)''
 
* Added support for Android 2.3 and later ''(sapier)''
 
  
=== Bug fixes ===
+
=== Modder Update Guide ===
 +
* Lua API: <code>minetest.PLAYER_MAX_BREATH_DEFAULT</code> set to 10 (was 11). This can cause problems with “statbar” mods (like [hudbars]) that rely on the old value, so those likely need updating
 +
* Default in Minetest Game was incorrectly overriding dropped items. Make sure to update any overrides to pass new arguments to on_step to the original function
  
* Fixed objects being selected behind a node ''(Novatux)''
+
=== Client / Audiovisuals ===
* Fixed absence of images when compiled with RUN_IN_PLACE=0 ''(xyz)''
+
* Smoother camera movement to fix jump glitches (''paramat'')
* Added option to link to OpenGL ES ''(sfan5)''
+
* More precise player controls handling (''TheTermos'')
* Fixed CMake list parsing in build ''(hasufell)''
+
* Fix bone-attached entities (''hecktest'')
* Fixed cutting of multi-line error messages at half of second line in main menu dialog ''(celeron55)''
+
* Fix incorrect position data on attach (''hecktest'')
* Created new instance of mesh every time it's required ''(celeron55)''
+
* Fix HUD scaling (mainly for Android) (''MoNTE48'')
* Escaped error messages in error dialog ''(PilzAdam)''
+
* Fix incorrect entity light calculations (''SmallJoker'', ''sfan5'')
* Added operating system to user agent ''(proller)''
+
* Add chat_log_level and chat_font_size setting (''SmallJoker'')
* Prevented auto-rotated nodes from replacing the nodes they were placed on ''(ShadowNinja)''
+
* New default sky color gradient (''TheTermos'')
* Added protection support to auto-rotated nodes ''(ShadowNinja)''
+
* Change default keys for camera/minimap to C/V (''Wuzzy'')
* Prevented looking up node texts in a endless recursion loop ''(sapier)''
+
* Fix breath bar scaling (''ANAND'')
* Set locale properly when built without gettext support ''(celeron55)''
+
* Fix bone position changes breaking animations (''theviper121'')
* Fixed Minetest's reliable UDP implementation ''(sapier)''
+
* No grey screen when C++ errors are thrown by Lua (''pauloue'')
* Compare values instead of pointers in Inventory::operator== ''(kahrl)''
+
* Android: add OpenGL ES 2 support (''MoNTE48'')
* Fixed some errors reported by clang static analyzer ''(xyz)''
+
* Reuse object_shader for "wielditem" and "item" entities (''dcbrwn'')
* Fixed win32 reading semaphore count not working (broke all queues) ''(sapier)''
+
* Shaders: Fix OpenGL < 4.3 compatiblity (''SmallJoker'')
* Prevented player from jumping into nodes from below ''(BlockMen)''
+
* Formspec: properly display altered inventory lists (''DS'')
* Fixed cURL DLL not getting installed when sound was disabled ''(sfan5)''
+
* Android: Various input-related fixes (''MoNTE48'')
* Fixed error on mod download failure ''(ShadowNinja)''
+
* Android: Android Studio support, improve everything (''MoNTE48'')
* Fixed use of previously deallocated EmergeManager ''(kwolekr)''
+
* Remove sound menu and show proper msgs if sound is off (''Wuzzy'')
* Fixed only half of unreliable queue being handled per step in worst case ''(sapier)''
+
* Highlight hovered formspec elements when pressing F5, for testing (''SmallJoker'')
* Fixed player textures by adding '-' to list of allowed characters in media filenames ''(sapier)''
+
* Implement DPI scaling for Windows (''sfan5'')
* Fixed texture pack names corrupting mainmenu ''(ShadowNinja)''
+
* Allow relative directories for `screenshot_path` (''Calinou'')
* Fixed crash when a error occurred in a globalstep callback ''(ShadowNinja)''
+
* Add (optional) tone mapping for entities (''dcbrwn'')
* Fixed a heap-use-after-free in pause menu ''(xyz)''
+
* Add new mapgen options in world creation dialog (''Wuzzy'')
* Added checks for invalid user input for important settings ''(kwolekr)''
+
* Add support for overriding item inventory/wield images in texture packs (''Df458'')
* Fixed memory leak in database migration ''(Selat)''
 
* Fixed invalid check for fread error on extracting zip ''(sapier)''
 
* Fixed a unloaded but active block problem ''(CiaranG)''
 
* Fixed rendering glitches when far from the center of the map ''(Novatux)''
 
* Fixed race condition on exit to menu ''(sapier)''
 
* Fixed generating winresource.o with build dir != source dir ''(sfan5)''
 
* Fixed special characters in pause and message menu ''(BlockMen)''
 
* Fixed game pause in singleplayer ''(BlockMen)''
 
* Fixed "ghost stacks" created when a player clicks an item on the ground ''(Novatux)''
 
* Fixed double sending of chat messages ''(sapier)''
 
* Fixed bug in RemoteClient::GetNextBlocks ''(celeron55)''
 
* Fixed crash when teleporting near unknown node ''(BlockMen)''
 
* Fixed broken IPv4 serialization on win32 ''(sapier)''
 
* Fixed invalid liquid lighting ''(RealBadAngel)''
 
* Fixed wrong node texture rotation for facedirs 5 and 7 ''(MetaDucky)''
 
* Fixed crash when trying to draw too many items from inventory in HUD ''(celeron55, RealBadAngel)''
 
* Fixed a text border update bug ''(ShadowNinja)''
 
* Added a hack to avoid a 2 second startup delay on local games ''(sapier)''
 
* Fixed player:set_animation() in third person view ''(BlockMen)''
 
* Fixed numeric underflow on calculating window size adjustment ''(sapier)''
 
* Fixed heart + bubble bar size on different texture packs ''(sapier)''
 
* Added a limit to node meta data resolving recursion ''(ShadowNinja)''
 
* Fixed typo (std::encl) in src/gettext.cpp ''(JakubVanek)''
 
* Fixed wielded index being greater than inventory size ''(RealBadAngel)''
 
* Fixed chat overlaying full screen ''(sapier)''
 
* Fixed build on big endian architectures ''(mat8913)''
 
* Made lack of IPv6 non-fatal to unit tests ''(sapier)''
 
* Fixed the Map and Rollback databases not closing ''(sapier)''
 
* Fixed day/night passing at the wrong speed on some architectures ''(sapier)''
 
* Handle missing tablecolumns[] ''(kahrl)''
 
* Fixed wrong status text rectangle ''(sapier)''
 
* Fixed GenericCAO not grabing member objects, causing them to be deleted early ''(sapier)''
 
* Fixed support for Max OSX ''(mdoege)''
 
* Fixed regression in light calculation ''(sapier)''
 
  
=== Modding-related changes ===
+
=== GUI (Formspec) ===
 +
* Fix wrong image button scaling (''pyrollo'')
 +
* Document <code>*_hovered</code> and <code>*_pressed styles</code> as deprecated (''v-rob'')
 +
* Add buttons to ContentDB in game bar and configure world (''rubenwardy'')
 +
* Add universal style selector “<code>*</code>” (''v-rob'')
 +
* Add <code>content_offset</code> and <code>padding</code> style properties for buttons (''Df458'')
 +
* Add <code>scroll_container</code> element (''DS'')
 +
* CSS-like state-selection for style elements (''Df458'')
  
* Passed pointed_thing to after_place_node ''(ShadowNinja)''
+
=== World / Server / Environment ===
* Documented "wielditem" visual ''(ShadowNinja)''
+
* Fix liquids refusing to flow in X+ or Z+ in some cases (''sfan5'')
* Passed pointed_thing to on_rightclick ''(Novatux)''
+
* Rework functionality of leveled nodes (''Wuzzy'')
* Added forceloading ''(Novatux)''
+
* New Mapgen V7 floatland implementation (''paramat'')
* Added InvRef::get/set_lists() ''(ShadowNinja)''
+
* Server: Better emerge multithreading, various fixes (''sfan5'')
* Mapgen V6: Added flag to stop mud flow ''(kwolekr)''
+
* Correctly indicate failure in /spawnentity (''sfan5'')
* Allowed vertical axis particle rotation constraint ''(khonkhortisan)''
+
* Add PostgreSQL authentication backend (''nerzhul'')
* Used tables for adding particles, deprecated former way ''(khonkhortisan)''
+
* Add chat command "/revokeme (priv)" (''Panquesito7'')
* Added formspec table ''(kahrl)''
+
* Optimize get_objects_inside_radius calls (''nerzhul'')
* Added minetest.override_item ''(ShadowNinja)''
+
* Fix world migration to PostgreSQL (''sfan5'')
* Added reading of slice probability table from schematic descriptors ''(kwolekr)''
+
* Collision detection fixes and follow-up bug fixes (''TheTermos'')
* LuaVoxelManip: Added get_param2_data and set_param2_data ''(kwolekr)''
+
* Many many networking improvements (''sfan5'')
* Added pointed_thing to minetest.register_on_placenode ''(ShadowNinja)''
 
* Added pointed_thing to minetest.register_on_punchnode and on_punch callbacks ''(ShadowNinja)''
 
* Added player:set_sky() with simple skybox support ''(celeron55)''
 
* Added player:override_day_night_ratio() for arbitrarily controlling sunlight brightness ''(celeron55)''
 
* Added minetest.kick_player(name, reason) ''(sapier)''
 
* Added capability to read table flag fields from Lua API ''(kwolekr)''
 
* Added minetest.set_noiseparam_defaults() ''(kwolekr)''
 
* Added force_placement parameter to minetest.place_structure ''(kwolekr)''
 
* Removed "Server -!- " prefix from player messages ''(ShadowNinja)''
 
* Updated set_mapgen_params and set_gen_notify to use new flag format ''(kwolekr)''
 
* Added player:set_local_animations() ''(BlockMen)''
 
* Added player:set_eye_offset() ''(MirceaKitsune, BlockMen)''
 
* Added support for function serialization to minetest.serialize ''(ShadowNinja)''
 
* Added proper Lua API deprecation handling ''(sapier)''
 
* Made dump2() return the serialized string, like dump() ''(ShadowNinja)''
 
* Added item eat callback ''(rubenwardy)''
 
* Added success and output return values to chat commands ''(ShadowNinja)''
 
* Allowed custom liquids to have drops ''(sfan5)''
 
* Made dropdown formspec elements send their values the same way that buttons do ''(sapier)''
 
* Reworked tooltips, adding a tooltip element ''(RealBadAngel)''
 
* Reworked the glasslike_framed drawtype ''(RealBadAngel)''
 
  
=== Vanilla game changes (minetest_game) ===
+
=== Script API / Modding ===
 +
* Log warning when <code>secure.enable_security</code> is disabled (''rubenwardy'')
 +
* Exposed zoom key to the API (''appgurueu'')
 +
* Add LevelDB auth database (''luk3yx'')
 +
* Add vector functions useful for working with rotations (''NetherEran'')
 +
* Add <code>minetest.is_creative_enabled</code> (''Wuzzy'')
 +
* Add <code>minetest.on_authplayer</code> callback (''sorcerykid'')
 +
* HUD: Implement scalable texts (''LoneWolfHT'')
 +
* HUD: "off state" icon feature for statbars (''Wuzzy'')
 +
* <code>set_fov</code>: Add time-based transitions (''ANAND'')
 +
* Expose collision information to LuaEntity <code>on_step</code> (''sfan5'')
 +
* Enforced type checks for registration fields (''SmallJoker'')
 +
* Add server side translations capability (''pyrollo'')
 +
* Fix alias handling of <code>minetest.get_content_id</code> (''sfan5'')
 +
* Document inheritance of different noise seeds (''paramat'')
 +
* Add default stack size setting (''nephele'')
 +
* Play <code>player_jump</code> sound when player jumps (''Wuzzy'')
 +
* HUD: Better waypoints and new image variant (''appgurueu'')
 +
* CSM: Implement <code>minetest.sound_fade()</code> (''sfan5'')
 +
* Error on invalid mapgen alias (''Wuzzy'')
 +
* Add <code>allowed_mapgens</code> option in <code>game.conf</code> (''wt'')
 +
* Lua API documentation clarifications (''Wuzzy'')
 +
* <code>minetest.PLAYER_MAX_BREATH_DEFAULT</code> set to 10 (was 11) (''ANAND'')
  
* Added desert cobblestone, dropped by desert stone ''(brunob.santos, sfan5)''
+
=== Misc / Build ===
* Added desert stone brick and sandstone brick stairs/slabs ''(Amaz1)''
+
* Android: Hide media from galleries etc (''rubenwardy'')
* Added extended doors mod ''(PenguinDad, BlockMen)''
+
* Minimal development test [minimal] renamed to “Development Test” [devtest] (''Wuzzy'')
* Added glass panes and iron bars ''(BlockMen)''
+
* Complete overhaul of Development Test, many new features added for testing the engine, more documentation added in README files, etc. (''Wuzzy'')
* Added TNT ''(BlockMen)''
+
* Particle & ParticleSpawner code cleanup (''sfan5'')
* Reworked farming mod, added API ''(webdesigner97)''
+
* Add Prometheus support (''nerzhul'')
* Upwards digging for papyrus and cactus ''(casimir)''
+
* Fix detection of in-place path_locale when RUN_IN_PLACE=0 (''sfan5'')
* Additional mirrored recipes for axes ''(marvok)''
+
* List STATIC_LOCALEDIR in "--version" (''sfan5'')
* Bookshelves have an inventory (for books) ''(arsdragonfly)''
+
* Many code optimizations (''sfan5'')
* Added furnace protection and progress visualization ''(Krock)''
+
* Wireshark dissector update (''sfan5'')
* Added /sethome and /home commands (with “home” privilege) ''(sfan5)''
+
* Split and re-organize server object code (''nerzhul'')
* Added Mese and diamond hoes ''(BlockMen)''
+
* Automatic build improvements (''sfan5'', ''nerzhul'')
* Enabled jungles by default on new worlds ''(sfan5, BlockMen)''
 
* Increased crafting output for stairs (4 → 6) ''(Jonathon Station)''
 
* Made punching bones pick up items ''(Krock)''
 
* Made items drop if no space for bones ''(Krock)''
 
* Don't create bones when inventory is empty ''(arsdragonfly)''
 
* Added cuboid wieldhand ''(paramat)''
 
* Many new textures, added inventory backgrounds ''(BlockMen)''
 
  
=== Master server (server list) ===
+
=== Minetest Game ===
 +
* Rename “Dry Dirt” and related blocks to “Savanna Dirt” and similar (''paramat'')
 +
* Added Wild Cotton: grows in savannas, drops Cotton Seeds (''paramat'')
 +
* Sort items into correct categories (''An0n3m0us'')
 +
* Tune cloud density variation (''paramat'')
 +
* Fix broken Creative inventory search in translation (''sfan5'')
 +
* Make Straw Stairs/Slabs usable as fuel (''Paul Ouellette'')
 +
* New textures: Dry Shrub, Brake Rail (''Extex101'', ''Hooded Ice'')
 +
* Block particles when leaves decay, TNT explodes (''sfan5'')
  
* Fixed null string escape in server list ''(proller)''
+
== 5.1.0 → 5.2.0 ==
* Made server announcing use multipart/form-data ''(ShadowNinja)''
 
* Fixed boolean typing and alignment ''(ShadowNinja)''
 
* Fixed code style, const-correctness, and types ''(ShadowNinja)''
 
* Moved the master server to separate repository ''(ShadowNinja)''
 
* Fixed seconds validity check ''(ShadowNinja)''
 
* Made README more complete ''(ShadowNinja, sfan5)''
 
* Made the hovered entry highlight in very light gray ''(sfan5)''
 
* Switched to 'display' instead of 'visibility' to prevent the page from having white space at the bottom ''(sfan5)''
 
  
== 0.4.8 → 0.4.9 ==
+
Released on 5 April 2020.
  
0.4.9 was released on January 1, 2014.
+
=== Client / Audiovisuals ===
 +
* Fix alpha blending in texture modifiers (''Warr1024'')
 +
* Make natural night light as bright as MT 0.4.16 (''paramat'')
 +
* Shader fixes (''lhofhansl'', ''SmallJoker'')
 +
* Clean up font caching, fix bitmap fonts (''SmallJoker'')
 +
* Waves generated with Perlin-type noise #8994 (''lhofhansl'')
 +
* Attachments: Fix glitches after detach (''SmallJoker'')
 +
* Let node 'place' and 'dug' sounds be heard by other players (''sfan5'')
 +
* Fix weird looking liquid source (''Wuzzy'')
 +
* Basic model shading (''dcbrwn'')
 +
* Improve arm inertia animations (''kilbith'')
  
=== New features===
+
=== GUI Improvements ===
<!--'''Big gameplay changes'''-->
+
* Add visual feedback for button states (''Df458'')
<!--'''Smaller gameplay tweaks'''-->
+
* Formspec: draw order and clipping for all elements (''DS'')
 +
* Refactor internal button styling/rendering code (''Df458')
 +
* Formspec: Fix clicking on tooltip-obstructed elements (''DS'')
 +
* Formspec: change cursor on fields and co. (''DS'')
 +
* Various new formspec bug fixes (''SmallJoker'')
 +
* Formspec: Add 9-slice background support to button elements  (''Df458'')
 +
* Formspec: add hypertext[] element (''pyrollo'')
 +
* Formspec: animated_image[] (''Df458'', ''kilbith'')
 +
* Make clipping of formspec elements more consistent (''Df458'')
 +
* Remove outdated field_close_on_enter[] warnings in element parameters (''SmallJoker'')
 +
* Fix mouse events sent to wrong GUI elements when dragging (''sfan5'')
 +
* Restore intuitive click-through behaviour (''DS'')
  
'''Logistic changes'''
+
=== Enhancements ===
 +
* Wear out tools on punch (''sfan5'')
 +
* Tunnels: Completely disable generation when 'cave width' >= 10.0 (''paramat'')
 +
* Randomwalk cave liquids: Remove deprecated 'lava depth' (''paramat'')
 +
* Automatically enable the mod's dependencies in the world config menu (''HybridDog'')
 +
* Clean up craft replacements docs (''pauloue'')
 +
* Falling nodes: add missing support for light sources, most drawtypes, and paramtype2s (''Wuzzy'')
 +
* Remove legacy flat-file map code and documentation (''random-geek'')
 +
* Fix packet receiving in server and client (''sfan5'')
 +
* Key settings: Cancel with escape, clear with delete (''SmallJoker'')
  
* Added SQLite rollback ''(Mario Barrera & ShadowNinja)''
+
=== Script API / Modding ===
* Implemented HTTPFetch ''(kahrl)''
+
* CSM: Introduce get_modpath() (''sfan5'')
* Replaced SimpleThread with JThread ''(sapier)''
+
* CSM: Remove non-functional minetest.get_day_count() (''sfan5'')
* Added handling for LuaErrors in Lua -> C++ calls on LuaJIT ''(ShadowNinja)''
+
* Add z-index management to HUD (''pyrollo'')
* Made SHA1::addBytes(..., 0) a no-op instead of an assertion failure ''(kahrl)''
+
* Add table.key_value_swap and table.shuffle (''HybridDog'')
 +
* Map download: Escape ':' to '_' (NTFS/FAT* systems) (''Montandalar'')
 +
* Settings: Add get_flags API for mapgen flags (''SmallJoker'')
 +
* Improve minetest.sound_play with ephemeral sounds and player exclusion (''sfan5'')
 +
* Reworked validity checks for entities (''sfan5'')
 +
* Documentation: Add advice on lifetime of ObjectRefs (''sfan5'')
 +
* Allow texture modifiers in hotbar textures (''Warr1024'')
 +
* Nodes with torchlike drawtype and custom visual_scale now are rendered attached to surface instead of being centered (''Wuzzy'')
 +
* Add documentation of VoxelArea 'ystride', 'zstride' (''paramat'')
 +
* Lua API: Document HP, breath and damage limits (''SmallJoker'')
 +
* Various documentation improvements (''Wuzzy'')
 +
* CSM: Corrections to client_lua_api.txt (''sfan5'')
 +
* Make minetest.item_place_node return position of placed node (''Bluebird'')
 +
* Call on_secondary_use when object is right-clicked (''sfan5'')
 +
* CSM: Various fixes (''sfan5'')
 +
* Many pathfinder bugfixes and improvements (''Wuzzy'')
 +
** Fix failure to find path if start or end pos is over air (''Wuzzy'')
 +
** Fix very broken implementation of A* search (''Wuzzy'')
 +
** No longer jump through solid nodes (''Wuzzy'')
 +
** Return nil if start or end pos is solid (''Wuzzy'')
 +
* New set_sky, set_sun, set_moon and set_stars (''Jordach'')
 +
* Secure and document minetest.deserialize() (''luk3yx'')
 +
* minetest.get_content_id: throw error for unknown nodes (''HybridDog'')
  
'''Visual changes'''
+
=== Misc / Build ===
 +
* Don't install fonts on ENABLE_CLIENT=0 configurations (''sfan5'')
 +
* Fix memleaks in formspecs (''SmallJoker'')
 +
* Android: build fixes & compat fixes (''MoNTE48'', ''nerzhul'')
 +
* Run luacheck in travis, add luacheck (''rubenwardy'')
 +
* Android: fix cyrillic characters (''Maksim'')
 +
* Various build issue fixes (Clang, Travis CI) (''sfan5'')
  
* Reworked shaders ''(RealBadAngel)''
+
=== Minetest Game ===
* Added configurable font shadow ''(xyz)''
+
* Simple weather that varies the clouds (''paramat'')
* Added Directional fog + horizon colors ''(Taoki)''
+
* More realistic boat physics (''gang65'')
* Removed FPS from window title (Doubles performance on some window managers) ''(PilzAdam)''
+
* Creative Inventory search: Item with exact match appears in first spot (''sfan5'')
 +
* Creative Inventory: More visual tweaks (''Andrey2470T'')
 +
* Improve player model animation (''An0n3m0us'')
 +
* Increase water opacity (''lhofhansl'')
 +
* Reset spawn position when bed is destroyed (''Desour'')
 +
* Papyrus now appears in rainforest swamps as well (''paramat'')
 +
* New/updated translations:
 +
** French (''DrHackberrry'')
 +
** Spanish (''runsy'')
 +
** Italian (''h4ml3t'')
 +
** Russian (''Andrey2470T'')
 +
** Swedish (''Aresiel'')
 +
** Malay (''MuhdNurHidayat'')
 +
** Chinese (''zaoqi'', ''IFRFSX'')
 +
* Bugfix: TNT mod crashed when entities disappeared during explosion (''sfan5'')
 +
* Bugfix: Papyrus in savanna did not appear in 5.1.0, it has been added back (''paramat'')
 +
* Bugfix: Screwdriver was able to rotate torches into weird positions (''An0n3m0us'')
 +
* Bugfix: Players could be knocked back when attached (''sfan5'')
  
'''Other changes'''
+
== 5.1.0 → 5.1.1 ==
  
* Implemented modstore search tab and version picker ''(sapier)''
+
Released on 17 January 2020.
* Added check for denied access in itemdef/nodedef/media fetch loop ''(kahrl)''
 
  
=== Bug fixes ===
+
This release is based upon bugfixes from 5.2.0-dev.
  
* Fixed line_of_sight() ''(sapier)''
+
=== Client / Audiovisuals ===
* Fixed modstore/favourites hang by adding asynchronous Lua ''(sapier)''
+
* Fix player-bound sound playback (''SmallJoker'')
* Fixed LevelDB maps ''(sfan5)''
+
* Fix item eat sound not played if last item (''Wuzzy'')
* Fixed Lua mapgen override param handling ''(kwolekr)''
 
* Fixed leak and possible segfault in minetest.set_mapgen_params ''(kwolekr)''
 
* Fixed segfault in indev cave generation due to uninitialized variable ''(kwolekr)''
 
* Added check for if width, height or start index of a list[] is negative ''(PilzAdam)''
 
* Fixed single character formspec field labels ''(BlockMen)''
 
* Added handling for Lua errors in on_generate callbacks ''(kwolekr)''
 
* Update mapgen params in ServerMap after Mapgen init ''(kwolekr)''
 
* Fixed wrong names for parallax settings in config example. ''(RealBadAngel)''
 
* Fixed particle code ignoring return value of std::vector::erase(). ''(kahrl)''
 
* Fixed minetest.facedir_to_dir when param2 is 5 or 7. (Again) ''(Novatux)''
 
* Fixed InventoryList reading order ''(ShadowNinja)''
 
* Initialize world before creating BanManager and RollbackManager ''(ShadowNinja)''
 
* Fixed exception caused by destroying sockets on Server shutdown ''(kwolekr)''
 
  
=== Modding-related changes ===
+
=== World / Server / Environment ===
 +
* Formspecs: Reset version number on rebuild (''SmallJoker'')
 +
* Rework packet receiving in ServerThread (''sfan5'')
 +
* Fix core.chat_format_message crashes (''ClobberXD'')
 +
* Fix spaces breaking formspec_version[] tag (''rubenwardy'')
  
* Added area parameters back to calc_lighting() and set_lighting() ''(kwolekr)''
+
=== Misc / Build ===
* Added get_light_data() and set_light_data() to LuaVoxelManip ''(kwolekr)''
+
* MacOS/BSD: Fix build issue due to conflicting s64 type definitions (''AMDmi3'')
* Added minetest.swap_node ''(Novatux)''
+
* Fix find_path for newer jsoncpp installations ('''vilhelmgray''')
* Assumed a selection box for fences ''(0gb.us)''
+
* Update translations
* Decoration: Added schematic Y-slice probability support ''(kwolekr)''
 
* Added sneak and sneak_glitch in set_physics_override() ''(PilzAdam)''
 
* Used a table in set_physics_override() ''(PilzAdam)''
 
* Added 'on_prejoinplayer' callback ''(kaeza)''
 
* Made line_of_sight return blocking node position ''(stujones11)''
 
* Removed support for optdepends.txt ''(ShadowNinja)''
 
* Added map feature generation notify Lua API ''(kwolekr)''
 
* Added 'minetest.write_json' ''(ShadowNinja)''
 
* Log guilty node name when allow_metadata_inventory_move/put/take fails ''(kahrl)''
 
* Fixed enum element name in Lua HUD code (position vs. pos) ''(kaeza)''
 
  
== 0.4.7 0.4.8 ==
+
== 5.0.1 5.1.0 ==
  
0.4.8 was released on November 24, 2013.
+
Released on 12 October 2019.
  
=== New features ===
+
=== Map generator ===
 +
* Mapgen Carpathian: Add optional rivers (''paramat'')
 +
* Move more dungeon parameter selection to mapgens (''paramat'')
 +
* Dungeons: Make multiple large rooms possible (''paramat'')
  
'''Big gameplay changes'''
+
=== Client / Audiovisuals ===
 +
* Change pitch fly binding to 'P', add to change keys menu (''rubenwardy'')
 +
* Android settings: Use 'simple' leaves instead of 'fancy' (''paramat'')
 +
* Fix 3rd person selection range (''srifqi'')
 +
* Make scrollbars' bar variable in size (''stujones11'')
 +
* Damage: Play no damage sound when immortal (''SmallJoker'')
 +
* Increase upper limit of display_gamma to 10 (''ClobberXD'')
 +
* Optimize and unify mesh processing (''Vitaliy'')
 +
* Re-order mapgens in mainmenu and 'all settings' mapgen selection (''paramat'')
 +
* Scrollbars: Move directly to clicked pos if clicked into tray (''DS-Minetest'')
 +
* Fix broken attachments on join (''SmallJoker'')
 +
* Fix inventory_overlay for nodes without inventory_image (''DS-Minetest'')
 +
* Better F6 profiler (''SmallJoker'')
 +
* Fix minimap markers (''theviper121'')
 +
* Textures: Load base pack only as last fallback (''SmallJoker'')
  
* Added drowning ''(PilzAdam, RealBadAngel, BlockMen)''
+
=== Builtin (Lua / Media / Documentation) ===
* Added weather support ''(proller)''
+
* Add /help formspec for commands and privileges  (''SmallJoker'')
 +
* Lua API: Add link to Minetest Modding Book (''ClobberXD'')
 +
* Force item entities out of solid nodes (''sfan5'', based on ''Wuzzy''`s work)
 +
* Lua API: Various fixes (''DS-Minetest'', ''SmallJoker'')
 +
* Rename "private messages" to "direct messages" (''Calinou'')
 +
* Automatically enable depending mods in the dialogue (''HybridDog'')
 +
* All settings: Fix missing flags checkboxes (''srifqi'')
  
'''Smaller gameplay tweaks'''
+
=== World / Server / Environment ===
 +
* Various network performance improvements (''osjc'')
 +
* Force send a mapblock to a player (''sofar'')
 +
* Revert ItemStacks being limited to the 'stack_size' value (''ClobberXD'')
 +
* Save forceloaded blocks file periodically (''Thomas Rudin'')
 +
* Improve ABM time budget handling (''lhofhansl'')
 +
* Group "immortal" also protects players from damage (''Wuzzy'')
 +
* Optimize usage of TOSERVER_GOTBLOCKS packet (''sfan5'')
 +
* Network: several bugfixes (''sfan5'')
 +
* Mapgen::spreadLight performance improvement (''DS-Minetest'')
 +
* Improve occlusion culling in corridors with additional check (''sfan5'')
 +
* Inventory: Delay dirty lists, and send changes incrementally (''SmallJoker'')
 +
* Other inventory bugfixes (''sfan5'', ''SmallJoker'')
 +
* Move debug.txt after it grows too big (''HybridDog'')
 +
* Trigger on_place in many situations even if prediction failed (''DS-Minetest'')
 +
* Punchwear (improved) (''sfan5'')
  
* Added new sounds ''(someone who can't decide if he wants to be called mitori or mito551)''
+
=== Script API / Modding ===
* Don't predict placing and removing nodes if interact privilege is missing ''(PilzAdam)''
+
* Add deprecation warnings for ObjectRef:get/set_attribute (''ClobberXD'')
 +
* Nodedef 'drop' documentation: Improve (''paramat'')
 +
* Mark tool filtering in node drop documentation as deprecated (''paramat'')
 +
* Add node field to PlayerHPChangeReason table (''pauloue'')
 +
*  Don't call on_hpchange callbacks if HP hasn't changed (''ClobberXD'')
 +
* Add disable_jump to liquids and ladders (''SmallJoker'')
 +
* Add support for 9-sliced backgrounds (''rubenwardy'')
 +
* Add compatible, consistent coordinate system to FormSpecs (''v-rob'')
 +
* Document ObjectRef:remove under Lua entity (''ClobberXD'')
 +
* Docs: Clarify where to check for 'protection_bypass' (''SmallJoker'')
 +
* Add vector.dot and vector.cross (''HybridDog'')
 +
* Improve documentation of mapgen aliases (''paramat'')
 +
* Remove debug.upvaluejoin to prevent leak of insecure environment (''fluxionary'')
 +
* Fix previously crashing minetest.get_craft_result() (''pauloue'')
 +
* Allow toolcaps to override the built-in times for dig_immediate (''sfan5'')
 +
* Formspec styling using style[] (''rubenwardy'')
 +
* Customizable chat message format (''ClobberXD'')
 +
* Velocity modifiers for players (''sfan5'')
 +
* Fix some issues with minetest.clear_craft (''pauloue'')
 +
* Add function `minetest.read_schematic` (''paly2'')
 +
* Formspecs: formspec_version[] element (''SmallJoker'')
 +
* Per-player FOV overrides and multipliers (''ClobberXD'')
  
'''Logistic changes'''
+
=== Misc / Build ===
 +
* Find PostgreSQL correctly (''adrido'')
 +
* Add compatibility to vcpkg buildsystem (''adrido'')
 +
* Android: Use system provided path for default TMPFolder setting (''stujones11'')
 +
* Fix handling of --color and --worldlist command line arguments (''mmattes'')
 +
* Unified OpenGL ES support (''sfan5'')
  
* Clean up rendering code a bit (increases FPS by 5 to 10) ''(Exio)''
+
=== Minetest Game ===
* Added support for IPv6 ''(matttpt)''
+
* Added dry dirt and dry dirt with dry grass. Grass never spreads on dry dirt (''paramat'')
* Don't write player files all the time if they are not modified ''(PilzAdam)''
+
* Savannas now have dry dirt and dry dirt with dry grass (''paramat'')
* Made the main menu Lua based ''(sapier, kahrl)''
+
* Added steel bar door and steel bar trap door
* Change static ContentFeatures array into a vector ''(rathgit, kahrl)''
+
* Added setting “enable_fence_tall” for fences that cannot be jumped over (''mbartlett21'')
* Allow multiple singleplayer games at the same time ''(PilzAdam)''
+
* Firefly in a bottle can now be placed into vessels shelf
* Added texture pack selection to main menu ''(Novatux)''
+
* Add flowing water sound
* Don't write files directly but rather write to a temporary file that gets renamed after succesfully written; fixes many causes of corrupted files ''(PilzAdam)''
+
* Underground biomes extend much deeper, down to Y=-255
* Adjust the Lua API structure and improve header inclusion to decrease compile time ''(kahrl)''
+
* Make the creative mod hand dig 'dig_immediate' nodes fast (''paramat'')
* Database abstraction, LevelDB support ''(sfan5, wieszak, xyz)''
+
* Add new TNT sounds (''TumeniNodes'')
* Use the Settings Lua interface to read world.mt ''(PilzAdam)''
+
* Add missing infotext to nodes (''An0n3m0us'')
* Use engine.is_yes() in mainmenu ''(PilzAdam)''
+
* Added translation support
* Always use builtin JThread library ''(kwolekr)''
+
* Added German, French, Spanish and Italian translations (''Wuzzy'', ''Hamlet'', ''JDiaz'', ''DrHackberry'')
* Optimized minetest.get_connected_players() ''(fairiestoy)''
 
* Removed mapgen_air alias (#935) ''(0gb.us)''
 
* Raise the maximum node limit to 0x7fff ''(ShadowNinja)''
 
* Shortened lines in falling node code ''(ShadowNinja)''
 
* Moved the sapling growing and grass adding/removing ABMs to Lua ''(Novatux)''
 
* Portability fixes for OpenBSD (and possibly NetBSD and others) ''(Warr1024)''
 
* Accept hexadecimal and string values for seeds ''(kwolekr)''
 
* Pass a errfunc to <code>lua_pcall</code> to get a traceback ''(ShadowNinja)''
 
* Replaced print()s with minetest.log() in builtin ''(PilzAdam)''
 
* Updated parameter index of set_lighting() ''(kwolekr)''
 
  
'''Visual changes'''
+
== 5.0.0 → 5.0.1 ==
  
* Added support for bumpmapping ''(RealBadAngel)''
+
5.0.1 was released on March 31, 2019.
* Added diagonal liquid animation ''(kahrl)''
 
* Damage updates and effects are now sent to other players ''(PilzAdam)''
 
* Made fog depend on humidity ''(proller)''
 
* Added git hash to version string in top left corner of window ''(kahrl)''
 
* Added --version option ''(kahrl)''
 
* Fixed liquid_range, fixing graphical glitches on old servers ''PilzAdam)''
 
* Added seed entry to world creation dialog ''(kwolekr)''
 
  
'''Other changes'''
+
* Fix detached inventory serialisation (''rubenwardy'')
 +
* Fix texture rotation for wallmounted nodeboxes (''sfan5'')
 +
* Fix build failing on some compilers (''rubenwardy'')
 +
* Warn about issues with the num_emerge_threads setting (''paramat'', ''sofar'')
 +
* HPChange Reason: Fix issues with custom reasons (''rubenwardy'')
 +
* Fix FreeBSD build by handling std::time_t properly (''rubenwardy'')
 +
* Confirm registration GUI: Remove positional strings to fix Windows bug (''paramat'')
 +
* Prevent multi-line chat messages server-side (''rubenwardy'')
 +
* httpfetch: Disable IPv6 here too if requested by settings (''sfan5'')
  
* Play <code>player_damage.ogg</code> when recieving damage and <code>player_falling_damage.ogg</code> on falling damage ''(PilzAdam)''
+
== 0.4.16 → 5.0.0 ==
* Added basic unicode support to the console in Linux ''(Exio)''
 
* Added a setting for max loop count per step in liquid update ''(PilzAdam)''
 
* Added math mapgen with fractal based worlds ''(proller)''
 
* Disallow the name 'singleplayer' in a multiplayer server ''(PilzAdam)''
 
* Added <code>max_objects_per_block</code> to minetest.conf to control the maximum number of static objects per block ''(Novatux)''
 
* Removed broken farmesh ''(kahrl)''
 
* Added <code>language</code> setting to <code>minetest.conf</code> which forces Minetest to use specified translation ''(xyz)''
 
* Added configurable PRAGMA synchronous = ''(proller)''
 
* Added curl, freetype and luaJIT to CMAKE_BUILD_INFO ''(PilzAdam)''
 
* Lowered the default max_users from 100 to 15 ''(ShadowNinja)''
 
* Removed doc/gpl-2.0.txt, add doc/lgpl-2.1.txt ''(kahrl)''
 
* Masterserver update ''(proller)''
 
* Moved new core devs to the "Core Developpers" section of mainmenu ''(Novatux)''
 
* Added ShadowNinja's email address to the main menu credits ''(ShadowNinja)''
 
* Used a doT.js template for the serverlist ''(ShadowNinja)''
 
* Added default_privs to masterserver and JS autoload ''(proller)''
 
* Added BlockMen to core dev list ''(PilzAdam)''
 
* Added missing RequestQueue doc ''(sapier)''
 
* Prevent enabling Shaders if Direct3D is used ''(PilzAdam)''
 
* Fix my name (doesn't display correctly because of utf8 characters) ''(Novatux)''
 
  
=== Bug fixes ===
+
Released March 4th
  
* Fixed <code>print(nil)</code> crashing the server ''(kahrl)''
+
<!-- Last updated 3rd Jan by nerzhul, 6b102ce51f01a381ab6356931689d85528455a50 -->
* Fixed output of profiler (F6) when using freetype ''(kahrl)''
 
* Fixed bug where wrong item is selected when dropping something in the inventory on another stack ''(kahrl)''
 
* Fixed lighting bug caused by disappearing lava ''(PilzAdam)''
 
* Fixed /unban command crashing the server ''(kahrl)''
 
* Fixed lighting bug with 6d facedir ''(RealBadAngel)''
 
* Fixed and improved view range tuner ''(celeron55)''
 
* Fixed and improved anticheat ''(celeron55)''
 
* Fixed server getting completely choked up on even a little of DoS ''(celeron55)''
 
* Fixed crack overlay for animated textures ''(kahrl)''
 
* Added fallback font for Chinese, Japanese and Korean languages, the translations in those languages can now be displayed ''(xyz)''
 
* Fixed most object duplication bugs ''(celeron55)''
 
* Fixed hotbar padding at bottom ''(BlockMen)''
 
* Fixed comments about length of server step ''(ShadowNinja)''
 
* Fixed some warnings and other minor details ''(kwolekr)''
 
* Re-fixed hud_change stat argument retrieval  ''(kwolekr & ShadowNinja)''
 
* Fixed wrong error message on invalid use of the formspec element image_button ''(RealBadAngel)''
 
* Fixed object duplication bug ''(celeron55)''
 
* Made unknown nodes stop falling nodes properly ''(ShadowNinja)''
 
* Fixed ignoring of "diggable" property of nodes ''(0gb.us)''
 
* Fixed invalid use of pointer to temporary object in JSON to Lua conversion ''(sapier)''
 
* Fixed win32/msvc i18n ''(sapier)''
 
* Fixed weather ''(kwolekr)''
 
* Prevented shaders from being created when disabled ''(kwolekr)''
 
* Fixed formspec background padding when clipped ''(BlockMen)''
 
* Fixed array limit check when reading Lua specialtiles table ''(MetaDucky)''
 
* Fixed invalid listname and listsize not handled correctly in set_size ''(sapier)''
 
* Handle blank blocks in database ''(kwolekr)''
 
* Fixed multicaller support in RequestQueue ''(sapier)''
 
* Fixed result of processed request being written to invalid (non-existent) ResultQueue if requesting thread timed out ''(sapier)''
 
* Fixed gettext compile issues under win32 ''(MetaDucky)''
 
* Made mapgen V6 respect water_level setting ''(kwolekr)''
 
* Fixed usage of 'minetest' where 'engine' was intended ''(ShadowNinja)''
 
* Fixed crash when pressing Enter key in formspec menu ''(kahrl)''
 
* Fixed rename modpack button not working, fixes #1019 ''(PilzAdam)''
 
* Don't continue trying to deserialize blank block data ''(kwolekr)''
 
  
=== Modding-related changes ===
+
Note: 5.0.0 is based on 0.4.16, not 0.4.17. 0.4.17 was created by backporting changes from the development branch of 5.0.0
 +
<!-- WIP notes:
 +
slippery    SmallJoker  bendeutsch
 +
CMakeList improvements  nOOb3167
 +
Find nodes in area (under air): Raise volume limit and document it (''paramat'')
 +
[CSM] Add basic HUD manipulation. (#6067) (''red-001'')
 +
F5 debug info: Add colons, use lowercase except for FPS and RTT (''ThomasMonroe314'')
 +
Auth handler: Player deletion & Iterator (#6741) (''sfan5'')
 +
Generate biomes: Recalculate biome at biome lower limit (''paramat'')
 +
Alternative code for slipping (#6256) (''bendeutsch'')
 +
Translations: prevent remote crash with invalid translations (''Ekdohibs'')
 +
Add LuaEntity on_death callback (#6177) (''nerzhul'')
  
* Added ingame modstore to download mods from mmdb ''(sapier)''
+
Log deprecated Lua function calls (#7491) (''SmallJoker'')
* Added <code>minetest.register_decoration()</code> ''(kwolekr)''
+
Android: use c++_shared library instead of c++_static MT doesn't launch without that (''nerzhul'')
* Added schematic support; new functions <code>minetest.place_schematic()</code> and <code>minetest.create_schematic()</code> ''(kwolekr)''
+
-->
* Seperated formspecs of furnace and chests to provide override by mods ''(BlockMen)''
 
* Added Lua VoxelManip ''(kwolekr)'' http://forum.minetest.net/viewtopic.php?id=6396
 
* Added vector helpers ''(ShadowNinja)''
 
* Added <code>range</code> to item definition ''(PilzAdam)''
 
* Added <code>after_use</code> to item definition ''(Novatux)''
 
* Added <code>liquid_range</code> to node definition ''(PilzAdam)''
 
* Added <code>collide_with_objects</code> to entitiy definition, to disable object <-> object collision ''(PilzAdam)''
 
* Added <code>minetest.facedir_to_dir()</code> and 6d facedir support for <code>minetest.dir_to_facedir()</code> ''(hdastwb)''
 
* Added gettext for <code>image_button</code> ''(BlockMen)''
 
* Added <code>stepheight</code> to entity definition ''(sapier)''
 
* Added support for multiple <code>wherein nodes in <code>minetest.register_ore()</code> ''(PilzAdam)''
 
* Added <code>minetest.register_on_cheat()</code> ''(celeron55)''
 
* Added <code>automatic_face_movement_dir</code> to entity definition ''(sapier)''
 
* Added <code>player:hud_set_hotbar_image()</code> and <code>player:hud_set_hotbar_selected_image()</code> ''(PilzAdam, BlockMen)''
 
* Added percent scaling for HUD images ''(BlockMen, kahrl)''
 
* Added <code>minetest.get_gametime()</code> ''(Novatux)''
 
* Allowed manually specifying param2 in minetest.item_place() and return success ''(PilzAdam)''
 
* Added set_name(), set_count(), set_wear() and set_metadata() to Lua ItemStack ''(PilzAdam)''
 
* Added support for parameter 'visual_scale' for drawtypes 'signlike' and 'torchlike' ''(Sokomine)''
 
* Fixed minetest.facedir_to_dir when param2 is 5 or 7. ''(Novatux)''
 
* Added 'after_use' tool callback ''(Novatux)''
 
* Added settings interface for Lua ''(PilzAdam)''
 
* Moved tree growing and grass growing ABMs to Lua ''(Novatux)''
 
* Added <code>minetest.register_on_craft()</code> and <code>minetest.register_craft_predict()</code> ''(Novatux)''
 
* Added basic protection support to builtin ''(ShadowNinja)''
 
* Added 6d facedir rotation prediction routine ''(VanessaE)''
 
* Added wrapper for minetest.rotate_and_place ''(Evergreen)''
 
  
'''Formspec changes'''
+
=== Highlights ===
 +
* Add online content repository (games, mods, modpacks, texture packs)
 +
* Add Carpathian mapgen
 +
* Automatic jumping
 +
* Android: Rewritten controls. Add joystick and modify up on-screen buttons
 +
* Mods and games can be translated
 +
* Rename 'subgame' to 'game'
 +
* Modding: More node drawtypes: disconnected nodeboxes (more ways to create connected blocks), <code>plantlike_rooted</code> (for underwater plants)
 +
* Modding: Custom player collision box
 +
* Modding: A great deal of new map generator features
 +
* Modding: Allow to rotate entities in all 3 axes
  
* <code>pwdfield</code>, <code>vertlabel</code>, <code>tabheader</code>, <code>dropdown</code> and <code>checkbox</code> ''(sapier)''
+
=== New Version Scheme ===
* <code><noclip>;<drawborder>;<pressed texture name></code> options for image_button ''(sapier, BlockMen)''
 
* <code>textlist</code> and <code>box</code> with color support ''(sapier, sfan5)''
 
* <code>listcolors</code> and <code>bgcolor</code> ''(BlockMen, kahrl)''
 
* <code><auto_clip></code> option for background images ''(BlockMen)''
 
* Added option to scale image to percentage values ''(BlockMen)''
 
* Send a on_receive_fields event when formspec is closed, with fields.quit = "true" ''(Novatux)''
 
* Reworked formspecs ''(BlockMen)''
 
  
== 0.4.6 → 0.4.7 ==
+
Basically, the leading 0 has been dropped. The [https://wiki.minetest.net/Version_number version scheme] was thus changed from
  
0.4.7 was released on June 6, 2013.
+
ZERO.MAJOR.MINOR.PATCH
  
=== New features ===
+
(note: PATCH was left out when it was 0) to
  
'''Big gameplay changes'''
+
MAJOR.MINOR.PATCH
  
* Added snow, snow block, ice and dirt with snow ''(PilzAdam)''
+
.
* Added sandstone bricks and desert stone bricks ''(PilzAdam & VanessaE)''
 
* Added coal block, crafted out of 9 coal lumps ''(Zeg9)''
 
* Added flowers to craft dyes; flowers and grass grow now on dirt_with_grass ''(0gb.us, PilzAdam, VanessaE, ironzorg)''
 
* Added farming mod; wheat can be used to bake bread and cotton can be used to craft wool ''(PilzAdam)'' http://forum.minetest.net/viewtopic.php?id=6067
 
  
'''Smaller gameplay tweaks'''
+
This was chosen for a few reasons:
  
* Added a little delay for falling nodes to update so that the objects don't spawn all at once ''(PilzAdam)''
+
* Shows that we aim to keep inter-version compatibility (which has mostly been the case since early 0.4.x)
* Added private messaging with <code>/msg</code> ''(ShadowNinja)''
+
* Allows us to release patch/bug fix only releases without adding a silly 4th number
* Added copper block ''(RealBadAngel)''
+
* Doesn't imply that this version is the first stable/finished version as much as a 1.0.0 does.
* Swing the camera down when the player lands on the ground; disabled by default; <code>fall_bobbing_amount</code> in minetest.conf ''(Taoki)''
 
* Node placement prediction now accounts for "wallmounted", "facedir" and "attached_node" nodes and only replaces "buildable_to" nodes ''(kahrl, ShadowNinja & PilzAdam)''
 
* Added <code>disable_fire</code> setting to disable fire burning ''(ShadowNinja)''
 
* Added damage to the hand in creative mode ''(PilzAdam)''
 
* Added a little animation when changing the wielded item  ''(PilzAdam & blue42u)''
 
* Apples now fall when the tree decays ''(PilzAdam & BlockMen)''
 
  
'''Logistic changes'''
+
For some context, read [https://github.com/minetest/minetest/issues/6073 the issue that resulted in this change].
  
* Added mapgen v7; not usable currently ''(kwolekr)''
+
=== Breaking changes and deprecations ===
* Added support for LuaJIT, makes mod execution much faster ''(RealBadAngel)''
+
As a major release, 5.0.0 will break some mods written for 0.4.x versions.
* Move cave generation to cavegen.cpp and restructure it into a class ''(kwolekr)''
+
We tried to keep the breakages as small as possible whilst fixing long standing issues.
* Added icons to select games in menu; <code>menu/menu_<background/overlay/header/footer>.png</code> of selected game is used in the main menu (TP can use <code><gameid>_menu_<background/overlay/header/footer>.png</code>) ''(celeron55)''
 
* Added <code>--videomodes</code> option to show available video modes ''(kahrl)''
 
* Added ability to play <code>main_menu.ogg</code> (<code>main_menu.<1-9>.ogg</code> are supported too; they are choosen randomly if present) in main menu ''(RealBadAngel)''
 
* Drop common mods system, ''Survival'' and ''Build'' game; minetest_game includes all common mods and the bones mod from ''Survival'' now ''(PilzAdam)'' http://forum.minetest.net/viewtopic.php?id=6034
 
* Changed mod system a bit: All user mods are installed in <code>$path_user/mods/</code> now; they can be enabled per world in the configure world window or in <code>world.mt</code> with <code>load_mod_<modname></code> ''(PilzAdam)'' http://forum.minetest.net/viewtopic.php?id=6066
 
* Split <code>init.lua</code> of the default mod into several files ''(PilzAdam)''
 
* Moved scriptapi to a subfolder ''(sapier, celeron55 & kahrl)''
 
  
'''Visual changes'''
+
* Minetest now uses C++11 instead of C++03, make sure you have a compatible system (Windows Vista, Debian 8, Ubuntu 16.04, CentOS 7, macOS 10.7, …)
 +
* Breaks network compatibility with 0.4.x. 0.4.x clients won't be able to connect to 5.x servers and vice-versa. Fix: update clients and servers to 5.x
 +
* Attachment and player positions have been shifted by 1 node, to allow support for custom player selection boxes. Fix: update default and player_api, subtract <code>10</code> from any attachment positions, shift the origin of player models to the feet
 +
* Formspec theming using prepended strings. This may cause wrong backgrounds to appear on formspecs. Fix: see https://forum.minetest.net/viewtopic.php?f=18&t=20646
 +
* depends.txt and description.txt have been deprecated. Fix: use ''description'', ''depends'', and ''optional_depends'' in mod.conf, game.conf, or texture_pack.conf instead
 +
* modpack.txt has been deprecated. Fix: rename to or add ''modpack.conf''.
 +
* Use of deprecated methods such as ''object:setpos()'' is now warned about. Fix: [https://forum.minetest.net/viewtopic.php?f=18&t=20403 replace them with correct functions]
 +
* ''player:get/set_attribute()'' is now deprecated. Fix: use ''player:get_meta()'' instead
 +
* ''nodeupdate()'' was removed. Fix: replace with ''minetest.check_for_falling''.
 +
* Clouds API: changed speed param from 'y' to 'z'
 +
* Player inventory list "hand" must now be manually initialized by mods (using ''set_size'')
 +
* Some client-side scripting functions were removed (see below)
  
* Changed "unknown block" texture to "unknown node" ''(khonkhortisan)''
+
Note that a function being ''deprecated'' means that it still exists, but it may give a warning when used and may be removed in future.
* Changed textures of sand, desert sand and desert stone ''(VanessaE)''
+
Deprecations are necessary to improve the consistency and efficiency of our API
* <code>crosshair.png</code> is used instead of the normal crosshair if present ''(dannydark & Exio4)''
 
* Added progress bar and clouds to loading screen ''(Zeg9)''
 
* Added new textures for all metal and diamond blocks ''(Zeg9)''
 
* Added new Minetest header ''(BlockMen)''
 
  
'''Other changes'''
+
=== Features ===
 +
==== Games ====
 +
* Load a texture pack from the 'textures' subfolder of a game (''red-001'')
  
* Added <code>mouse_sensitivity</code> option ''(Exio4)''
+
==== Map generators ====
 +
* Mapgen: Add Carpathian mapgen (''Vaughan Lapsley'')
 +
* Mapgen flags: Add 'biomes' global mapgen flag (''paramat'')
 +
* Dungeons: Add Y limits in all mapgens (''paramat'')
 +
* Dungeons: Add setting to prevent projecting dungeons (''paramat'')
 +
* Biomes: Add vertical biome blend (''paramat'')
 +
* Mgv7 floatlands: Add exponent parameter (''paramat'')
  
=== Bug fixes ===
+
==== User interface ====
 +
* Add online content repository (mods, texture packs, mod packs, games) (''rubenwardy'')
 +
* Rename 'subgame' to 'game' (''paramat'')
 +
* Allow enter to select items from combobox's list (''basicer'')
 +
* Formspecs: Use mouse wheel to pick up and deposit single items (''HybridDog'')
 +
* Add player marker to both minimap types (''nanoproject'')
 +
* Delete world dialogue: Move buttons to avoid double click deletion (''srifqi'')
 +
* Add a refresh button to the server list (''ThomasMonroe314'')
 +
* Main menu: Change tabs to 'Start Game' and 'Join Game' (''ThomasMonroe314'')
 +
* Add password confirmation on new player registration (''srifqi'')
 +
* Adjust default console height (''Ezhh'')
 +
* Add coloured terminal output (''HybridDog'')
 +
* Add setting to display the itemstring after the tooltip in the inventory (''DTA7'')
 +
* Make world creation menu automatically generate a random world name (''lisacvuk'')
 +
* Change “Use” key name to “Special” (''TeTpaAka'')
 +
* Make number of maximum displayed chat messages configurable (''Esteban'')
  
* Check if the address field is empty when hitting enter on the multiplayer tab ''(ShadowNinja)''
+
==== Controls ====
* Limit speed in collisionMoveResult for avoiding hangs ''(Exio4)''
+
* Automatic jumping (''bendeutsch'')
* Fixed camera "jumping" when attached and the parent goes too fast ''(Zeg9)''
+
* Add pitch move mode, toggle with <kbd>L</kbd> key
* Fixed nick completion in chat console with the tab key ''(PilzAdam)''
+
* Android: Rewritten controls. Add joystick and modify up on-screen buttons (''srifqi'')
* Do not always move fast in water and ladders when aux1_descend it true ''(Taoki)''
+
* More keys are changable in settings menu
* Fixed '''a lot''' memory leaks ''(sapier, PilzAdam, kahrl, kwolekr)''
+
* Make direct item selection keys freely bindable via minetest.conf (''Wuzzy'')
* Fixed import of older maps ''(kwolekr)''
 
* Fixed black trees ''(kwolekr)''
 
* Fixed small objects colliding with themselves ''(sapier)''
 
* Fixed <code>get_craft_recipe()</code> and <code>get_all_craft_recipes()</code> ''(RealBadAngel)''
 
* Fixed spawning too high above ground ''(kwolekr)''
 
* Fixed object -> player collision ''(sapier)''
 
* Fixed favorite server list in globally installed versions of Minetest (RUN_IN_PLACE=0) ''(Zeg9)''
 
* Fixed favorite server list on windows ''(sfan5)''
 
* Fixed handling of mods in games in the configure world GUI ''(kahrl)''
 
* Fixed static data of objects not beeing stored correctly on deactivation ''(sapier)''
 
* Removed ''Meshbuffer ran out of indices'' limitation ''(kahrl)''
 
* Fixed <code>isBlockInSight()</code> for higher FOV ''(Warr1024)''
 
* Don't teleport back when a player is detached or turns free move off and holds shift ''(PilzAdam)''
 
* Fixed bug where you need to move the mouse after closing a menu ''(kahrl)''
 
* Reduced <code>/clearobjects</code> memory consumption; <code>max_clearobjects_extra_loaded_blocks</code> in minetest.conf ''(kahrl)''
 
* Corrected segfault when registering new biomes ''(sweetbomber)''
 
* Reduced video memory consumption by not generating unnecessary <code>[forcesingle</code> textures ''(kahrl)''
 
* Close console when it loses focus but it is still on screen ''(Exio4)''
 
  
=== Modding-related changes ===
+
==== World / server ====
 +
* Add setting for world start time, and change default to  5:15am (''JRottm'', ''paramat'')
 +
* Allow for getting world name and path separately on the command line (''Brian'')
 +
* Add a server-sided way to remove color codes from incoming chat messages (''red-001'')
 +
* Object limits: Allow objects to exist outside the set 'mapgen limit' (''paramat'')
  
* Added <code>player:set_physics_override()</code> to set per-player physics ''(Taoki & PilzAdam)''
+
==== Chat commands and privileges ====
* Use <code>node_box</code> for <code>selection_box</code> if <code>drawtype = "nodebox"</code> and <code>selection_box = nil</code> ''(kaeza)''
+
* Add '/haspriv' chat command (''ClobberXD'')
* Added <code>minetest.env:line_of_sight()</code> and <code>minetest.env:find_path()</code> ''(sapier)''
+
* Add '/kill' chat command (''Wuzzy'')
* Added API functions to add elements to the HUD of players ''(blue42u, kwolekr & kaeza)''
+
* Remove 'zoom' privilege (zoom is now a player object property)
* Added option to not prepend "Server -!- " to messages sent with <code>minetest.chat_send_player()</code> ''(ShadowNinja)''
+
* Do not grant all privileges to the admin - changes game behavior (''lhofhansl'')
* Added <code>minetest.get_player_ip()</code> ''(ShadowNinja)''
 
* Added <code>use_texture_alpha</code> in node definition to use alpha channel of node texture ''(kwolekr)''
 
* Added <code>glasslike_framed</code> node drawtype ''(RealBadAngel)''
 
* Added optional dependencies and different [[Mod_name_conflicts|mod name conflict handling]] ''(kahrl)''
 
* Use group <code>soil</code> for nodes where saplings can grow on ''(ShadowNinja)''
 
* Nodes with drawtype <code>raillike</code> connect to all other nodes with the same drawtype if they are in the <code>connect_to_raillike</code> group ''(Jeija)''
 
* Env functions are now in the global minetest table; that means they are called via <code>minetest.<function></code> instead of <code>minetest.env:<function></code> ''(sapier, celeron55 & kahrl)''
 
* Added <code>obj:set_hotbar_itemcount()</code> ''(kahrl)''
 
  
== 0.4.5 → 0.4.6 ==
+
==== Graphics ====
 +
* Fog effect when camera is inside cloud (''bendeutsch'')
 +
* Camera: Add and improve arm inertia (''kilbith'')
 +
* Update light decoding table size (''numberZero'')
 +
* New lighting curve (''numberZero'')
 +
* Add setting for near plane distance (''basicer'')
 +
* Add Android drivers to the video_driver drop-down menu (''Wayward1'')
  
0.4.6 was released on April 3, 2013.
+
==== Sounds ====
 +
* Sounds: Add falling node sounds (''sofar'')
 +
* Emit liquid sound if the player walks in liquid (''juhdanad'')
 +
* Play damage sound on player death (''paramat'')
 +
* Add mute setting (toggled by the mute key and in the volume menu) (''DTA7'')
  
=== New features ===
+
==== Technical ====
 +
* Add support for authentication in an SQLite database (''bendeutsch'')
 +
* Add an optional readonly base database (''lhofhansl'')
 +
* Add crossview support (''otdav33'')
 +
* Optionally extend the active object in a players camera direction (''lhofhansl'')
 +
* Implement ability to set client node dig prediction result (''sofar'')
  
'''Big gameplay changes'''
+
==== Misc. ====
 +
* Add check to pause game on lost window focus (''rubenwardy'')
 +
* Load files from subfolders in texture packs (''numberZero'')
 +
* Make HUD status messages translatable (''Wuzzy'')
  
* Added lavacooling near water; lava source turns into obsidian, flowing lava turns into stone ''(PilzAdam)''
+
=== Modding ===
* Added junglewood (with stairs and slabs), jungleleaves and junglesaplings ''(PilzAdam)''
+
* Add on_mods_loaded callback (''nerzhul'')
* Added obsidian, obsidian shards and obsidian glass ''(PilzAdam & jojoa1997)''
+
* MetaDataRef: Add contains() and get() (''rubenwardy'')
* Added grass (5 different heights) ''(PilzAdam)''
+
* Allow dumping userdata (''HybridDog'')
* Added growing for papyrus (on dirt and grass near water) and cactus (on sand) ''(PilzAdam)''
+
* Hint at problematic code when logging deprecated calls (''sfan5'')
* Added stonebricks crafted from 4 stones ''(PilzAdam)''
+
* Add minetest.rgba function that returns ColorString from RGBA or RGB values (''Gael-de-Sailly'')
* Added gold ''(PilzAdam)''
+
* World config: Add modpack descriptions (''HybridDog'')
* Added diamonds and diamond tools, wich are slightly faster and wear out slower than mese tools ''(PilzAdam)''
+
* get_node_drops: Make empty drop return empty table (''tenplus1'')
* Added mese axe, shovel and sword; mese pick is not the ultimate tool anymore ''(PilzAdam)''
+
* Add core.remove_detached_inventory (''SmallJoker'')
* Added copper, bronze and bronze tools; bronze can be crafted with copper ingot and steel ingot; bronze tools have same digging times but more uses than steel tools ''(PilzAdam)''
+
* Add disable_repair group to prevent tool repair (''Wuzzy'')
 +
* clear_craft: Return false if recipe not found, don't throw error  (''paramat'')
 +
* Fix string.split returning an empty table if string starts with sepearator (''pyrollo'')
  
'''Smaller gameplay tweaks'''
+
==== Formspecs / HUD ====
 +
* Formspecs: Add tooltip element for area (''rubenwardy'')
 +
* Formspecs: Allow setting alpha value for the box[] element (''Thomas--S'')
 +
* Formspecs: Add an auto vertical scrollbar to the textarea (''adelcoding1'')
 +
* Formspecs: Add options to set background color and opacity (fullscreen mode + default mode) (''nerzhul'')
 +
* Formspecs: textarea with scrollbar improvements (''adrido'')
 +
* HUD: Make hud_get return alignment, offset and size. (''lisacvuk'')
  
* 3 nodes now give 6 slabs instead of 3 ''(PilzAdam)''
+
==== Server-side ====
* Wooden stairs and slabs are now flammable ''(PilzAdam)''
+
===== Metadata =====
* Lava is not renewable anymore ''(PilzAdam)''
+
* Give games the ability to disallow specific mapgens (''Ezhh'')
* It is not possible anymore to place non-fuel items in the fuel slot or any item in the output slots of the furnace ''(PilzAdam)''
+
* Load mod dependencies and description from mod.conf (''rubenwardy'')
* Falling nodes now destroy solid buildable_to nodes ''(Splizard)''
 
* Added ability for buckets to pick up flowing water when liquid_finite is enabled ''(ShadowNinja)''
 
* Use right click to place liquids with buckets; added description for buckets ''(PilzAdam & ShadowNinja)''
 
* Fixed furnace infotext saying "Furnace out of fuel" when placing a fuel but no item to cook into it ''(PilzAdam)''
 
* Made Mese ores a bit more rare; made Mese blocks very rare ''(PilzAdam)''
 
* Added object <-> object collision ''(sapier)''
 
  
'''Map generation changes'''
+
===== User interface =====
 +
* Add clientside translations. (''Ekdohibs'')
 +
* Add formspec theming using prepended strings (''rubenwardy'')
 +
* Zoom: Set zoom FOV per-player using a player object property (''paramat'')
 +
* Zoom: Move enabling zoom to a new player object property (''paramat'')
 +
* Minimap: Add new HUD flag for minimap radar mode (''paramat'')
  
* Readded dungeons (disabled by default, enable with "dungeons" flag in "mg_flags" setting) ''(kwolekr)''
+
===== Items =====
* Speed up lighting a lot ''(kwolekr)''
+
* Allow overriding tool capabilities through itemstack metadata (''raymoo'')
* Readded jungles (disabled by default, enable with "jungles" flag in "mg_flags" setting) ''(kwolekr)''
+
* Set placer to nil instead of a non-functional one in item_OnPlace (''DTA7'')
* Generate apple trees ''(kwolekr)''
+
* Overlays for wield and inventory images (''juhdanad'')
* Moved ore generation back to core; improved ore generation speed ''(kwolekr)''
+
* Make dropped items colorable (''juhdanad'')
* Added <code>singlenode</code> mapgen ''(celeron55)''
+
* Automatic item and node colorization (''juhdanad'')
* Added a new map generator called <code>indev</code> (float islands at 500+, rare HUGE caves, near edges: higher mountains, larger biomes) ''(proller)''
+
* Add eat sound (''Wuzzy'')
  
'''Visual changes'''
+
===== Nodes =====
 +
* Add slippery group for nodes (players/items slide) (''Wuzzy'')
 +
* Connected Nodeboxes: Add 'disconnected' boxes (''Thomas--S'')
 +
* Add callback to preserve node metadata as item metadata (''ashtrayoz'')
 +
* Add 'plantlike_rooted' drawtype (''numberZero'')
  
* Changed textures of cobblestone and mossy cobblestone ''(PilzAdam)''
+
===== Objects/entities =====
 +
* ObjectRef: Add add_velocity() (''HybridDog'')
 +
* Allow damage for attached objects, add attach/detach callbacks (''SmallJoker'')
 +
* Optional alpha channel support for entities (''stujones11'')
 +
* Add static_save property to luaentites to not save them statically. (''orwell96'')
 +
* Object properties: Add 'glow', disables light's effect if negative (''basicer'')
 +
* core.get_objects_inside_radius: Omit removed objects (''HybridDog'')
 +
* Make entity selection and collision boxes independently settable (''stujones11'')
 +
* Add set_rotation/get_rotation to rotate entities in all 3 axes
  
'''Logistic changes'''
+
===== Players =====
 +
* Customizeable max health and max breath for players (not persisted between server restarts) (''SmallJoker'')
 +
* Add reasons to on_dieplayer and on_hpchange (''rubenwardy'')
 +
* Add minetest.is_player (''HybridDog'')
 +
* Add on_grant and on_revoke callbacks (''rubenwardy'')
 +
* Player eye height: Make this a settable player object property (''paramat'')
 +
* Step height: Add as a player object property (''paramat'')
 +
* Player collisionbox: Make settable (''TeTpaAka'')
 +
* Add player inventory callbacks (''SmallJoker'')
  
* Split scriptapi.cpp into more files ''(sapier)''
+
===== Mapgen =====
* Migrate to STL containers/algorithms ''(xyz)''
+
* Biomes: Add 'get_biome_name(biome_id)' API (''paramat'')
* Added the pseudo game ''common'' with ''bucket'', ''default'', ''stairs'', ''doors'' and ''fire'' mods included; deleted those mods from minetest_game ''(celeron55 & PilzAdam)''
+
* Biomes: Add 'min_pos'/'max_pos' xyz biome limits (''paramat'')
* Added a checkbox for finite liquids to settings menu ''(proller)''
+
* Biomes: Add decoration flags for underground decorations (''paramat'')
 +
* Biomes: Add function to deregister single biomes (''zeuner'')
 +
* Biomes / dungeons: Add biome-defined dungeon nodes (''paramat'')
 +
* Biomes / cavegen: Add definable cave liquid for a biome (''paramat'')
 +
* Biomes: Add 'get heat', 'get humidity', 'get biome data' APIs (''paramat'')
 +
* Biomes/decorations/ores: Make relative to 'water_level' setting (''paramat'')
 +
* Place schematic (on vmanip): Enable use of 'place center' flags (''paramat'')
 +
* Ores: Add stratum ore (''paramat'')
 +
* Stratum ore: Add option for a constant thickness stratum (''paramat'')
 +
* Stratum ore: Allow use with no noise for simple horizontal strata (''paramat'')
 +
* Simple decorations: Add 'param2_max' parameter for random param2 (''paramat'')
 +
* Schematic decorations: Add 'place_offset_y' placement parameter (''paramat'')
 +
* Decoration API: Add lightweight ability to have complete coverage (''paramat'')
 +
* Mgv6: Remove incorrectly defined and unused 'volume nodes' (''paramat'')
 +
* Mgv7: Add 'mount_zero_level' parameter (''paramat'')
 +
* Mgv7: Add option to repeat surface biomes in floatlands (''paramat'')
 +
* Mgvalleys: Make river depth variation and humidity drop optional (''paramat'')
 +
* CavesRandomWalk: Make 'lava_depth' a mapgen parameter (''paramat'')
 +
* Gennotify: Add 'minetest.get_decoration_id' API (''paramat'')
  
'''Other changes'''
+
===== World =====
 +
* Spawn level: Add 'get_spawn_level(x, z)' API (''paramat'')
 +
* Add minetest.bulk_set_node call + optimize Environment::set_node call (''nerzhul'')
 +
* Implement minetest.register_can_bypass_userlimit (''nerzhul'')
  
* Use moving clouds as background for the main menu ''(Krisi & ShadowNinja)''
+
===== Chat =====
* minetest.env:find_nodes_near() optimized to be 11.65x faster, ServerEnvironment step CPU consumption cut in half ''(kwolekr)''
+
* Make the server status message customizable (''SmallJoker'')
 +
* Allow the join/leave message to be overridden by mods. (''red-001'')
  
=== Bug fixes ===
+
===== Protection =====
 +
* is_area_protected: Rename from intersects_protection (''SmallJoker'')
 +
* Intersects_protection(): Move from Minetest Game to builtin (''paramat'')
  
* Fixed build with ogles2 driver ''(proller)''
+
===== Graphics and sounds =====
* Fixed new_style_water (shaders are not used for this anymore) ''(PilzAdam)''
+
* Real global textures (''numberZero'')
* Fixed backface_culling in tiledef; both sides of flowing liquids are now visible ''(doserj)''
+
* Clouds API: change speed from 'y' to 'z', ColorSpecs in Lua docs (''bendeutsch'')
* Hopefully fix node replacement bug (where the node that is pointed at is replaced) ''(0gb.us)''
+
* In-cloud fog: Strengthen effect when small view range is used (''lhofhansl'')
 +
* Sound: Add pitch option (''Rui-Minetest'')
  
=== Modding-related changes ===
+
===== Utility features =====
 +
* Allow 'default' parameter in 'settings:get_bool' function (''Jordan Irwin'')
 +
* Add `on_auth_fail` callback (''red-001'')
 +
* Make core.auth_table private and structure builtin/auth.lua (''sfan5'')
 +
* Add sha1 to lua utils. (''basicer'')
 +
* Remove nodeupdate and nodeupdate_single (''Rui-Minetest'')
 +
* Expose getPointedThing to Lua (''juhdanad'')
 +
* Helper methods for hardware colorization (''juhdanad'')
 +
* httpfetch: Enable gzip support (''sfan5'')
 +
* Rename hasprivs command to haspriv  (''ezhh'')
  
* Added <code>minetest.get_all_craft_recipes(output)</code> ''(RealBadAngel)''
+
==== Client-side ====
* Allow any character in formspec strings with escape characters ''(kwolekr)''
+
* Add flavour limits controlled by server (''nerzhul'')
* Added ability to pass multiple parameters to <code>minetest.after()</code> ''(Jeija)''
+
* Disallow exploitable clientside mod functions by default (''paramat'')
* Added <code>player:set_look_yaw()</code> and <code>player:set_look_pitch()</code> ''(RealBadAngel)''
+
* Rename CSM flavours to restrictions (''SmallJoker'')
* Added ability to load mods from the pseudo game ''common'' via <code>common_mods</code> in game.conf ''(celeron55)''
+
* Remove screenshot API (''red-001'')
* Added support for a minetest.conf file in games, wich override the default values ''(celeron55)''
+
* Don't Load the package library (''red-001'')
* Added 6d facedir to rotate nodes with ''facedir'' drawtype ''(RealBadAngel)''
+
* Remove `on_connect` callback (''red-001'')
* Added function and wrapper to predict and assign 6d rotation via <code>minetest.rotate_and_place()</code> ''(VanessaE and EvergreenTree)''
+
* Add functions to create particles and particlespawners. (''red-001'')
* Added <code>minetest.add_particle()</code>, <code>minetest.add_particlespawner()</code> and <code>minetest.delete_particlespawner()</code> ''(Jeija)''
+
* Don't load the IO library. (''red-001'')
* Added <code>minetest.register_ore()</code> to let the engine generate the ores; <code>default.generate_ore()</code> is now deprecated  ''(kwolekr)''
+
* Add a way to get current locale from CSM (''lisacvuk'')
* New damage system added as described here: [[Damage_system]] ''(PilzAdam & celeron55)''
+
* Add callback on open inventory (''Dumbledor'')
* Added <code>place</code> field to sound table of tools ''(PilzAdam)''
+
* Implement mod communication channels (''nerzhul'')
 +
* Create a filesystem abstraction layer for CSM and only allow accessing files that are scanned into it. (''red-001'')
 +
* Add function to get player privileges (''red-001'')
  
== 0.4.4 → 0.4.5 ==
+
=== Bug fixes and small improvements ===
 +
Also a big thanks to paramat, ClobberXD, pauloue, gituser2194, lhofhansl, ashtrayoz, Wuzzy, and Ezhh for their contributions to documentation, in no particular order.
  
0.4.5 was released on March 4, 2013.
+
==== Critical ====
 +
* Fix crash caused by Lua error during startup (''red-001'')
 +
* Pointed_thing_to_face_pos: Avoid crash when player is inside a node (''paramat'')
 +
* Fix segfault in player migration and crash in log_deprecated (''SmallJoker'')
 +
* Fix crash guiConfirmRegistration quit menu (''Vincent Glize'')
 +
* Fix built-in inventory list crash when size = 0 (''SmallJoker'')
 +
* Fix a crash or random memory leak when resetting saved environment variable in test_servermodmanager.cpp (''nerzhul'')
 +
* Fix crash on can_bypass_userlimit returning non-boolean (''rubenwardy'')
 +
* Fix error if setting menu_last_game is not a valid game (''nOOb3167'')
 +
* Builtin: Fix handle_node_drops crash with nil digger (''SmallJoker'')
 +
* Fix issue Minetest crash when custom font path is not exist (''srifqi'')
 +
* Thread: fix a crash on Windows due to data race condition on Thread::m_start_finished_mutex (''nerzhul'')
 +
* Fix crash on revocation of removed privilege (''rubenwardy'')
 +
* Fix crash when using --go in command line (''juozaspo'')
 +
* Fix crash due to missing pointer validation (''nerzhul'')
 +
* Fix get_server_status() segfault due to uninitialized m_env (''rubenwardy'')
  
=== New features ===
+
==== Build ====
 +
* Fix many Android build issues (''nerzhul'')
 +
* Fix i386 bit build at OpenBSD (''mazocomp'')
 +
* Fix compile error in OpenBSD (''jcalve'')
 +
* Fix MSVC compiling annoyances (''adrido'')
 +
* directiontables: Fix MSVC compiler error (''adrido'')
 +
* Fix MacOS builds (''Pavel Puchkin'')
 +
* Travis-ci build: fix osx jpeg installation failure, git ambiguous argument error (caused by merging commits) and add a workaround for travis commit range bug (''juozaspo'')
  
'''Big gameplay changes'''
+
==== System-specific ====
 +
* Provide Xorg/net wm process ID (''thoughtjigs'')
 +
* Make os.tempfolder work correctly for MinGW & MSVC (''nOOb3167'')
 +
* Print error when HOME is not set (''Midgard'')
 +
* MacOS: don't require X11 libraries during compilation (''D Tim Cummings'')
 +
* Prevent Android from automatically locking display (''Wayward1'')
 +
* Windows: Cpack wix installer (''adrido'')
  
* Added Mese crystals and Mese crystal fragments (crafted from 1 Mese crystal); Mese blocks can be crafted with 9 Mese crystals; Mese pickaxes are now crafted using Mese crystals; old Mese equals the new Mese block and is still generated at altitudes -1024 and below ''(VanessaE & PilzAdam)''
+
==== Rendering ====
* Doors must now be right clicked to be opened ''(PilzAdam)''
+
* Fix liquid bottoms not being rendered (''numberZero'')
* Flying through walls now requires the "noclip" privilege and noclip mode must be enabled by pressing H ''(PilzAdam)''
+
* Fix liquid post effect colour behaviour in third person view (''red-001'')
* Added a list of servers to the "Multiplayer" tab of the main menu ''(Jeija)''
+
* Fix dark liquids (''numberZero'')
* Added a mod selection menu ''(doserj)''
+
* Use crack animation on all tile layers (''juhdanad'')
* Jungle grass now spawns naturally again ''(PilzAdam)''
+
* Smoothed yaw rotation for objects (''SmallJoker'')
* Added finite liquid support, experimental and disabled by default ''(proller)''
+
* Disable shaders GUI on unsupported drivers (''numberZero'')
 +
* Fix missing ignore textures (''HybridDog'')
 +
* Make sure color returns to normal after a damage flash (''lhofhansl'')
 +
* Camera: Improve subpixel movement (''SmallJoker'')
 +
* Camera: Fix wieldmesh glitch after teleporting (''kilbith'')
 +
* upright_sprite: Fix texture position for players (''SmallJoker'')
 +
* Fix node-nodebox lighting difference in direct sunlight (''numberZero'')
 +
* Fix ambient occlusion and dark lines at mapblock borders (''numberZero'')
 +
* Don't recalculate statustext initial color every time & review fixes (''nerzhul'')
 +
* Clear colors when reading property info. Set vertex colors on upright_sprites. (''basicer'')
 +
* Fix items turning black (''numberZero'')
 +
* Fix dropped item look (''HybridDog'')
 +
* Fix item and wield meshes (''numberZero'')
 +
* Do not scale texture unless necessary. (''lhofhansl'')
 +
* Avoid filtering low-res textures for animated meshes (incl. players) (''lhofhansl'')
 +
* Reduce server FOV with forward speed (''lhofhansl'')
 +
* ParticleSpawner::step cleanup and rotation fix (''SmallJoker'')
 +
* Fix incorrect buffer size calculation on creation of HUD status messages (''rubenwardy'')
 +
* Particles: Do not add digging particles for airlike nodes (''SmallJoker'')
 +
* Fix animation frame_speed and blend loosing precision (''sapier'')
 +
* Fix undefined behaviour in arm movement when dividing by zero (''nerzhul'')
 +
* Fix render order of overlays (''juhdanad'')
 +
* Particles: Make collision with objects optional (''paramat'')
 +
* Fix stretched stars bug, change render order (''Aspen'')
 +
* Software inventorycube (''Vitality'')
 +
* Light curve: Simplify and improve code, fix darkened daytime sky (''Vitality'')
 +
* Smooth lighting: Fix light leaking through edge-connected corners (''DTA7'')
 +
* Darkness detection: Reduce chance of false positives darkening the skybox (''lhofhansl'')
 +
* Fix sky objects not rendering with OpenGL ES (''stujones11'')
 +
* Night clouds: Boost brightness for a moonlit appearence (''paramat'')
 +
* Night sky: Fix brightness threshold for applying night colours (''paramat'')
  
'''Smaller gameplay tweaks'''
+
==== User interface ====
 +
* Fix debug and info text being the wrong color (''rubenwardy'')
 +
* Fix tooltip colors specified by formspec part (''rubenwardy'')
 +
* Make RTT display (F5 information) working correctly again (''HybridDog'')
 +
* Don't show Android edit dialog when tapping read-only field (''srifqi'')
 +
* Make sounds stop playing when entering game or mainmenu (''nOOb3167'')
 +
* Fix dancing text for formspec input fields (''numberZero'')
 +
* Chat: Remove prompt history duplicates (''SmallJoker'')
 +
* Statbars: fix incorrect half-images in non-standard orientations (''Ekdohibs'')
 +
* Advanced settings: Add range check for float type (''srifqi'')
 +
* Move the nametag back to the top of the player (''TeTpaAka'')
 +
* Chat: Move chat text down to not overlap 3rd line of debug text (''paramat'')
 +
* Fix console resize issue when changed game window (''Ezhh'', ''Zeno-'')
 +
* Android buttons: Inset 'rare controls', inset and resize 'gear icon' (''paramat'')
 +
* Main menu: Clean up and improve advanced settings dialogues (''SmallJoker'')
 +
* Escape special characters when searching the server list (''ChimneySwift'')
  
* Locked chest contents are now only shown to their owner ''(PilzAdam)''
+
==== Formspecs ====
* Added ability to write several lines on a sign ''(PilzAdam)''
+
* Mitigate formspec exploits by verifying that the formspec was shown to the user by the server. (''red-001'')
* When sneaking, the current node/item will always be used when right clicking even if pointing a chest or a furnace ''(Jeija)''
+
* Make container[] support fractional offsets (''SmallJoker'')
* In creative mode, hand now breaks everything nearly instantly and nodes/items are infinite ''(PilzAdam)''
+
* Remove accidental empty 'quit' field (''SmallJoker'')
* Player physics are now tweakable by server admin ''(Taoki)''
+
* Unify textarea and field parsing functions, fix wrong fallback text (''SmallJoker'')
* Fast mode can now be used in liquids and in climbable nodes ''(kwolekr)''
+
* Formspec verification: Fix show_formspec inside callbacks (''SmallJoker''
* Fire is now "buildable to" ''(Casimir)''
+
* Fix wrong scrolling of formspec input fields (''numberZero'')
* To fly at "fast" speed, the "use" key must now be held if using shift to descend ''(PilzAdam)''
+
* Inventory: Restrict access from too far away (''SmallJoker'')
* Added upside down stairs and slabs ''(PilzAdam)''
+
* Fix mousewheel behaviour in textarea (''shivajiva101'')
* Added ability to switch to fly_mode when double-tapping space bar, disabled by default; can be enabled in the key change menu ''(PilzAdam)''
+
* Fallback to 'label' in readonly textarea[] (backwards compatible) (''SmallJoker'')
* Tweaked damage and punch times of weapons, tools and hand ''(Calinou)''
+
* Fix invalid background warning (''SmallJoker'')
* Added repeated right clicking when holding the right mouse button, see "repeat_rightclick_time" setting in minetest.conf ''(Jeija)''
+
* Fix text clipped by scrollbars (''random-geek'')
  
'''Map generation changes'''
+
==== Performance ====
 +
* Optimized MapBlock mesh generation (''lhofhansl'')
 +
* Optimize ABM checks (''lhofhansl'')
 +
* Fix bugs in networking which caused a performance loss (''lhofhansl'')
 +
* Builtin auth handler: Speed up file writing (''SmallJoker'')
 +
* Huge LBM lookup performance improvement on mapblock loading (''nerzhul'')
 +
* Fix last performance-type-promotion-in-math-fn problems (''nerzhul'')
 +
* Optimize a little bit isBlockInSight, adjustDist & collisions (''nerzhul'')
 +
* Line_of_sight: Improve using VoxelLineIterator (''juhdanad'')
 +
* Cache server config settings. (''lhofhansl'')
 +
* Very little performance fix on correctBlockNodeIds (''nerzhul'')
 +
* Don't search for locale folders if gettext is disabled (''adrido'')
  
* Added L-system tree generation ''(RealBadAngel & dannydark)''
+
==== Networking ====
* Map generation is now slightly faster and can be tweaked in minetest.conf ''(kwolekr)''
+
* Use server's zoom fov for distant world loading. (''lhofhansl'')
* Added optional flat map generation, with and without trees ''(kwolekr)''
+
* Fix ipv6_server=true not accepting IPv4 connections on Windows (''sfan5'')
 +
* Fix narrow/utf8 difference in incoming/outcoming messages (''numberZero'')
 +
* Fix day_night_ratio_do_override not being initialised server-side (''rubenwardy'')
 +
* Fix attached particle spawners far from spawn (''raymoo'')
 +
* Server: affect bind_addr on constructor instead of start() (''nerzhul'')
 +
* Network: Fix logging into older worlds with base64 hashes (''SmallJoker'')
 +
* Server: Calculate maximal total block sends dynamically (''SmallJoker'')
 +
* Have the server send the player list to the client (''red-001'')
  
'''Visual changes'''
+
==== Chat commands and privileges ====
 +
* Check if player exists on use of /privs (''ClobberXD'')
 +
* Reduce block load glitches (''lhofhansl'')
 +
* Make the /shutdown command work properly (''dopik'', ''SmallJoker'')
 +
* Prevent /spawnentity from spawning unknown entity (''Wuzzy'')
  
* Mese pickaxe now has a new texture, which is more yellow ''(Jordach)''
+
==== World ====
* Tweaked dirt texture so that it tiles better; improved lump and ingot textures; added fake shading to the default player texture ''(Iqualfragile & GloopMaster & Jordach)''
+
* Fix blocks written by VManip not being marked as modified (''sfan5'')
* Added particles when digging blocks ''(Jeija & PilzAdam)''
+
* Set range of blocks to retrieve per roundtrip to 2. (''lhofhansl'')
* The selection box of stairs now fits the stairs ''(PilzAdam)''
+
* Retrieve a small cone of blocks in the direction of the players velocity. (''lhofhansl'')
* If damage is disabled, damage screen is disabled and health is not shown on the HUD ''(PilzAdam)''
 
* Damage screen is now red fade instead of constant red; camera now tilts when receiving damage ''(Jeija & PilzAdam)''
 
* Added "selectionbox_color", "crosshair_color" and "crosshair_alpha" minetest.conf settings for changing selection outline color, crosshair color and crosshair opacity respectively ''(Exio4)''
 
  
'''Logistic changes'''
+
==== Map generator ====
 +
* Change mapgen order to ores > dungeons > decorations (''paramat'')
 +
* Biome API: Fix absent water decorations and dust, in deep water (''paramat'')
 +
* Biome-defined dungeon nodes: Use faster biome calculation (''paramat'')
 +
* Biomemap: Avoid empty biomemap entry to fix failing biome dust (''paramat'')
 +
* Biomes: Fix vertical biome blend (''paramat'')
 +
* Biome dust node: Only place on 'walkable' cubic non-liquid drawtypes (''paramat'')
 +
* Biome generation: Fix layers of 'filler' nodes at biome y limits (''paramat'')
 +
* Mgv5: Make spawn position search more reliable (''paramat'')
 +
* Mgv6 mudflow: Avoid partially removed stacked decorations (''paramat'')
 +
* Mgv7: Raise spawn point by 1 node for no mountain case (''paramat'')
 +
* Mgv7: Avoid rivergen removing mod-placed nodes when overgenerating (''paramat'')
 +
* Mgv7: Avoid divide-by-zero errors (''paramat'')
 +
* Mgv7: Fix undefined 'float_mount_height' (''paramat'')
 +
* Mgfractal: Improve spawning behaviour (''paramat'')
 +
* Mgv5/v7/fractal: Add 'large_cave_depth' parameter to replace fixed value (''paramat'')
 +
* Fix Mapgen Valleys getSpawnLevelAtPoint() (''Treer'')
 +
* Vein ore: Fix bug caused by changing perlinmap Y size (''paramat'')
 +
* Schematic decorations: Fix placement bug when centered and rotated (''paramat'')
 +
* Simple decorations: Make 'place_offset_y' usable with simple decorations (''paramat'')
 +
* Dungeons: Fix duplication of y limit parameters (''paramat'')
 +
* Dungeons: Mostly fix missing stair nodes (''paramat'')
 +
* Dungeons: Avoid generation in multiple liquid nodes and 'airlike' (''paramat'')
 +
* Dungeons: Use biome 'node_stone' if normal stone types not detected (''paramat'')
 +
* Cavegen: Fix errors when getting biome outside mapchunk (''paramat'')
 +
* Cavegen: Re-order generation to fix cavern bug (''paramat'')
 +
* Cavegen: Avoid unsupported biome 'top' or 'filler' nodes (''paramat'')
 +
* valleys mapgen: Fixed submarine valleys shape (''Gael-de-Sailly'')
 +
* settingtypes.txt: Fix valleys dungeon ymax error (''paramat'')
 +
* L-system: Fix leaves cutting through stems (''HybridDog'')
  
* Minetest-c55 is now named Minetest
+
==== Items and nodes ====
* Less stuff is now put in debug.txt by default, change with debug_log_level, default is 2
+
* Pointed thing to face pos: Use 'eye height' object property (''paramat'')
* Texture atlas is now disabled by default ''(kwolekr)''
+
* Ensure no item stack is being held before crafting (''Luis Cáceres'')
* Added and updated language translations; French, German, Portuguese, Polish and Spanish translations are 100% complete ''(Calinou, kaeza, PilzAdam, sfan5, xyz, kotolegokot, pandaro, Mito551, Shen Zheyu, sub reptice, elagin, KikaRz and socramazibi)''
+
* core.rotate_node: Run callbacks like with any regular placed node (''SmallJoker'')
* Added support for downloading media from a server using cURL which is faster, disabled by default ''(Ilya Zhuravlev)''
+
* Don't try to craft a non-existent item (''Esteban'')
 +
* Fix rotated node placement (''tenplus1'')
 +
* Item drop: Tune to land exactly 2 nodes away with level view (''paramat'')
 +
* Check item_drop amount clientside (''rubenwardy'')
 +
* Fix Android node selection distance (''juhdanad'')
 +
* Safe digging and placing (''bendeutsch'')
 +
* Fix for empty key/value when reading item string with wear but no metadata (''Jesse McDonald'')
 +
* Inventory: Fix wrong stack size behaviour and item loss (''SmallJoker'')
  
=== Bug fixes ===
+
==== Objects/entities ====
 +
* Fix objects colliding with their children (''SmallJoker'')
 +
* core.spawn_falling_node: Keep metadata (''SmallJoker'')
 +
* Collision engine: Collide with 'ignore' nodes (''paramat'')
 +
* falling.lua: Delete falling node entities on contact with 'ignore' (''paramat'')
 +
* Position entity nametags relative to selection-box (''stujones11'')
 +
* Damage: Remove damage ignore timer (''SmallJoker'')
 +
* Item entities: Enable item collision detection for sudden movement (''DTA7'')
 +
* Ease selection of entities behind nodes (''SmallJoker'')
 +
* Object properties: Fix loss of custom selectionbox when it's not updated (''SmallJoker'')
 +
* GenericCAO: Fix light position for non-players, remove deprecated initialisation code (''SmallJoker'')
 +
* GenericCAO: Fix dark model below y = 0 (''paramat'')
 +
* CAO footstep sounds: Reduce gain to balance volume (''paramat'')
  
* Walking on stairs, slabs and glass now makes sounds ''(PilzAdam & dannydark)''
+
==== Players ====
* Fixed and cleaned EmergeThread around a bit ''(kwolekr)''
+
* Make player liquid speed independent of FPS (''paramat'')
* Punching entities and players with shovels and pickaxes now deals damage ''(Calinou)''
+
* Run detach callbacks on player leave (''SmallJoker'')
* Fixed some caves having too many dead ends ''(unknown)''
+
* Localplayer: Fix disable_jump effect and getStandingNodePos() (''SmallJoker'')
* Fixed the looks of some plantlike nodes by using two long planes instead of four shorter planes ''(doserj)''
+
* Android stepheight: Only increase if 'touching ground' (''paramat'')
* Grass no longer turns into dirt below unloaded blocks ''(PilzAdam)''
+
* Respect object property hp_max field for players (''SmallJoker'')
* Fixed a crash when clicking "Configure" when no world is selected in Singleplayer menu ''(doserj)''
+
* Do not add base position to player selection box (''stujones11'')
* Fixed dropped item collision with nodeboxes ''(jordan4ibanez)''
+
* Abort if static_spawnpoint is an invalid setting instead of just giving an error log (''HybridDog'')
* Fixed a glitch where the player gets liquids in his inventory when a server lags ''(PilzAdam)''
+
* Fix error not printed to console when no name is provided (''juozaspo'')
 +
* Fix player coordinate rounding in collisionMoveSimple() (''JRottm'')
 +
* Sneak: Stripped down version (''SmallJoker'')
 +
* (Re)spawn players within 'mapgen_limit' (''paramat'')
 +
* Stop autoforward on BACKWARD key-press (''tukkek'')
 +
* Apply physics overrides correctly during anticheat calculations (''sfan5'')
  
=== Modding-related changes ===
+
==== Modding ====
 +
* Fix builtin Lua function os.tempfolder (''nOOb3167'')
 +
* Fix isNan check for object:set_yaw(..) (''nerzhul'')
 +
* Fix LuaJIT include directory not being found (''rubenwardy'')
 +
* Check argument types inside MetaDataRef Lua API (''sfan5'')
 +
* Fix buffer parameter not working in LuaPerlinNoiseMap::l_getMapSlice() (''pgimeno'')
 +
* Fix naming conventions of noise userdata (''rubenwardy'')
 +
* Fix rounding error in g/set_node caused by truncation to float (''rubenwardy'')
 +
* Vector fun
 +
* CAO footstep sounds: Reduce gain to balance volume (''paramat'')aramat'')
 +
* Fix default item callbacks to work with nil users (''raymoo'')
 +
* on_death: Fix callback number of pushed arguments (''SmallJoker'')
 +
* Fix core.wrap_text and make its behaviour consistent with the docs (''sfan5'')
 +
* Trigger on_rightclick regardless on the formspec meta field (''SmallJoker'')
 +
* LBM: use range based for and fixed a loop variable overloading in applyLBMs (''nerzhul'')
 +
* Fix deserialization of ItemDefinition (''Rui-Minetest'')
 +
* Plantlike meshoptions: Fix inverted random vertical offset (''numberZero'')
 +
* Player hand list: require init by mods (''SmallJoker'')
  
* Added ability to change the itemstack in placenode callbacks ''(PilzAdam)''
+
==== Debug ====
* Added ability to create multi-line textfields in formspecs ''(Jeija)''
+
* Fix missing logs from warningstream (or similar) (''HybridDog'')
* Add on_rightclick(pos, node, clicker) callback for nodes ''(PilzAdam)''
+
* Fix off-by-one in log output line length (''pgimeno'')
* Added minetest.show_fromspec(playername, formspec) to show formspecs via Lua ''(sapier)''
+
* Profiler: Fix var args not being passed to callback register function (''rubenwardy'')
  
== 0.4.3 → 0.4.4 ==
+
==== Internal / code quality ====
 +
* Add a MSVC / Windows compatible snprintf function (''nOOb3167'')
 +
* Fix memory leaks in mod storage (''nerzhul'', ''red-001'')
 +
* Fix rtt >= 0.0f assertion and free_move crash (''SmallJoker'')
 +
* Global new() or grab() to be managed in constructor only (''JDCodeIt'')
 +
* Node resolver: Make error on fallback optional, disable for mapgen aliases (''paramat'')
 +
* FOV: Raise lower limit to avoid zoom-loading of distant world (''paramat'')
 +
* Fix many issues reported by clang-tidy (''nerzhul'')
 +
* Fix various clang-tidy reported performance-type-promotion-in-math-fn (''nerzhul'')
 +
* Selected ItemStack: Reduce black magic and improve the stack swapping behavior (''SmallJoker'')
 +
* core.rotate_node: Do not trigger after_place_node (''SmallJoker'')
 +
* Sound: fix static initialization order dependency by not having one (''nOOb3167'')
 +
* Fix various Client class functions not marked as override (virtual) (''nerzhul'')
 +
* Guard sound manager initialization with "enable_sound" (''nOOb3167'')
 +
* Fix an alone if to be with a missing else (''nerzhul'')
 +
* Drop texture file list cache (''numberZero'')
 +
* Variable name fix + structure creation unrolling in lighting code (''nerzhul'')
 +
* getv3intfield: Fix logic of return bool (''paramat'')
 +
* Generate Notifier: Clear events once after all 'on generated' functions (''paramat'')
 +
* Fix Wstringop-overflow warning from util/srp.cpp (''HybridDog'')
 +
* Tool getDigParams: Fix selecting the best fitting time (''HybridDog'')
 +
* Fix undefined behaviour on getting pointer to data in empty vector (''nOOb3167'')
 +
* Use Irrlicht's mesh cache for animated meshes. (''lhofhansl'')
 +
* Shut down mapgen threads before other shutdown tasks (''raymoo'')
 +
* Allow zoom to actually show more data. (''lhofhansl'')
 +
* Make use of safe file writing in auth handler (''sfan5'')
 +
* Fix inventory drag drop flag (''asl97'')
 +
* Fix strict_protocol_version_checking functionality after ee9a442 (''SmallJoker'')
 +
* Fix empty legacy meta being persisted (''rubenwardy'')
 +
* Lint fix on localplayer.h (''nerzhul'')
 +
* Sort box corners correctly (''Thomas--S'')
 +
* Remove unused Map::getDayNightDiff + fix one undefined variable in mapblock.cpp (''nerzhul'')
 +
* Check node updates whether the blocks are known (''SmallJoker'')
 +
* Really delete things in fs::RecursiveDelete (''Vitality'')
 +
* Disable HW stereo for IrrLicht 1.9  (''numberZero'')
  
0.4.4 was released on December 6, 2012. 0.4.4-d1 (an interim release made due to a protocol change) was released on January 2, 2013.
+
==== Misc. ====
 +
* Fix for translating empty strings (''minduser00'')
 +
* Positional sound: Limit volume when closer than 1 node (''paramat'')
 +
* Change the server description after a search (''Dumbledor'')
 +
* Fix no sound bug (''Rui-Minetest'')
  
=== New features ===
+
=== Other / Misc ===
 
 
* Added animated 3D player and a new default skin, the default model also supports Minecraft skins ''(Taoki, skin by Jordach)''
 
* Added shaders support (can be disabled in Settings menu), makes water a bit smaller than a full block, makes lighting look prettier ''(kahrl and celeron55)''
 
* New default doors mod: doors have a 3D look, ability to create "double doors" added, added locked steel doors (only the owner of the door can open/close it) ''(PilzAdam)''
 
* Improve map generation speed a lot ''(hmmmm)''
 
* Day-night transitions are now smoother ''(celeron55)''
 
* Water textures are now animated ''(RealBadAngel (textures) and PilzAdam)''
 
* Added on-demand item previews (reduces load time/RAM usage), disabled by default ''(celeron55)''
 
* Added 3D anaglyph support (red-cyan glasses) ''(xyz)''
 
* Fire is now animated and causes damage to players ''(PilzAdam, Muadtralk (textures))''
 
* Tweaked some textures: apple, nyan cat, bricks, papyrus, steel sword ''(Calinou, VanessaE)''
 
* Tweaked digging animation (no more mining with the tip of your pickaxe!) ''(jordan4ibanez)''
 
* Changed apple, sapling and papyrus selection box size to be smaller ''(VanessaE)''
 
* Players who do not move no longer send their positions to save bandwidth ''(Taoki)''
 
* Make steel block and brick drop themselves when dug and make them craftable back into their materials ''(PilzAdam)''
 
* Glass now makes a sound when broken ''(PilzAdam)''
 
* Dead players are now visible ''(Taoki)''
 
* Changed default server tick to 0.1 second, decreasing server CPU usage ''(celeron55)''
 
* Clients now send their position every 0.1 second too, making other player movement look smoother ''(celeron55)''
 
* Use of /grant and /revoke commands is now logged ''(dannydark)''
 
* Added ability for server to tweak amount of bandwidth used to upload mods to clients ''(celeron55)''
 
 
 
=== Bug fixes ===
 
  
* Fixed falling sand and gravel sometimes incorrectly landing ''(PilzAdam)''
+
* Version scheme change: 0.5.0 -> 5.0.0 (''nerzhul'')
* Fixed empty bucket being named "emtpy bucket" (khonkhortisan and PilzAdam)
+
* Move ASCII art to std::cerr, to remove it from logs (''rubenwardy'')
* Fixed slab to full block transformation ''(PilzAdam)''
+
* PlayerSettings struct for player movement code (''bendeutsch'')
* Fixed smooth lighting between MapBlocks ''(celeron55)''
+
* Client eventmanager refactor (''nerzhul'')
* Prevent some blocks (leaves, falling sand and gravel) from giving air when dug when they disappear as you mine them ''(PilzAdam)''
+
* Update mesh collector and move it to a separate file (''numberZero'')
* Fixed papyruses and cacti growing inside trees ''(PilzAdam)''
+
* Add Voxelarea unittests (''nerzhul'')
* Fixed flowing liquid animation direction calculation ''(celeron55)''
+
* VoxelArea: add_{x,y,z,p} must be static (''nerzhul'')
* Fixed wielditem entity drawtype brightness control ''(celeron55)''
+
* Cleanup in flat lighting (''numberZero'')
* Fixed ObjectRef:punch() ''(celeron55)''
+
* Node definition manager refactor (''juhdanad'')
* Fixed a rare bug in leaf decay ''(PilzAdam)''
+
* Move 'setlocale' from Lua to C++. (''red-001'')
* Fixed trees growing into any type of node ''(xyz)''
+
* Rewrite rendering engine (''numberZero'')
* Fixed server crashing when "/clearpassword" is typed without an argument ''(Uberi)''
+
* Improve the path select GUI (''red-001'')
* Head no longer shifts downwards when you are inside transparent blocks such as glass or nodeboxes ''(Calinou)''
 
* Directories beginning with a "." are now ignored when searching for mods on Windows ''(matttpt)''
 
* Fixed the automagic render distance tuner ''(celeron55)''
 
  
=== Modding-related changes ===
+
== Older versions (pre-5.0.0) ==
 +
If you want to see older versions (older than 5.0.0), please go to [[OldChangelog|this page]].
  
* Added 3D model support for entities ''(Taoki)''
 
* Added attachment support (so that entities can "ride" other entities) ''(Taoki)''
 
* Backgrounds and images can now be used in formspecs ''(RealBadAngel)''
 
* Liquids can now be made non-renewable ''(xyz)''
 
* Added nodedef.on_blast() to lua_api.txt in order to support chained explosions of any explosives ''(celeron55)''
 
* Allow transparent image buttons ''(khonkhortisan)''
 
* Added shutdown hook interface to Lua API ''(matttpt)''
 
* Added "attached_node" group to make nodes which are not attached to any other walkable node drop ''(PilzAdam)''
 
 
[[Category:Root-Category]]
 
[[Category:Root-Category]]
 
[[Category:Compiling Minetest]]
 
[[Category:Compiling Minetest]]

Latest revision as of 11:55, 27 December 2023

Note that not all changes made to the code between releases are listed here. Fixes to bugs that were introduced after the previous release, small internal changes, code style fixes, and changes of the like are not listed. If you want a list of every change made between releases see the commit log.

5.7.0 → 5.8.0

Deprecations and compatibility notes

  • Minetest Game is no longer the default game and will no longer be shipped by Minetest. If you want it back, install it by using the “Content” tab
  • lua_api.txt has been converted to Markdown and renamed to lua_api.md
  • Android now builds via CMake (sfan5)
  • Compiling: C++17 support is now required
  • Node definition field air_equivalent is now documented—as deprecated.
  • Reading/defining initial object properties directly from an entity definition is deprecated; they should be moved to initial_properties

Client / Audiovisuals

  • Main menu: Redesign and unify settings interface (rubenwardy, grorp, icon by Zughy)
  • Main menu: better prompt to install a game when none is installed (ROllerozxa)
  • Main menu: various fixes (grorp, ROllerozxa)
  • ContentDB GUI: Load package list asynchronously (grorp)
  • Option to invert direction or disable mouse wheel for hotbar item selection (srifqi)
  • Inventory mouse shortcut improvements (OgelGames)
    • Holding down Shift+click while moving the mouse over item slots now continously moves items to other inventory (if available)
    • Press Shift+click on the crafting output slot to craft and move result to inventory
      • Left mouse button: Craft as many as possible
      • Mouse wheel: Craft 10 times
      • Right mouse button: Craft once
    • Drag an item stack over empty slots to split stacks evenly
    • Hold down Left mouse button while holding an item stack and move the cursor over the slots to pick up items of the same type
    • Double-click an item stack to pick up all items of the same type in this inventory
  • Implement check_offset for decorations (nephele-gh)
  • Touchscreen input improvements (srifqi)
  • Rendering-related performance improvements and fixes (numberZero)
  • Add antialiasing filters (FXAA, SSAA) (x2048)
  • Reverse eye-offset Z-coordinate in 3rd person front view (lhofhansl)
  • DPI-aware crosshair (grorp)
  • Prevent early respawns caused by up/down button in the death screen (srifqi)
  • Sounds and animations are now paused in pause menu in singleplayer (DS)
  • Android: Place nodes with single tap (grorp)
  • Android: Higher default graphics settings (grorp)
  • Android: Auto-detect locale (grorp)
  • Android: ignore broken language files (srifqi)
  • X11 (Linux): Add primary selection (copy & paste via select & middleclick) support (DS)

World / Server / Environment

  • Major speedup for crafting shapeless craft recipes (Hocroft-Karp algorithm) (DS)
  • Fix crash on handling wallmounted nodes with invalid param2 (savilli)
  • Fix biomes not repecting their Y limits (Radar6255)
    • Especially thin biomes will now be generated as intended.
  • Saner (HTTP) timeout limits and log messages (sfan5)

Script API / Modding

  • Reading/defining initial object properties directly from an entity definition is deprecated; they should be moved to initial_properties
  • Add ability to override item images using ItemMetaData (rubenwardy)
  • Add node pos to node damage HP change reason (Radar6255)
  • Add vector.in_area() utility function (AFCMS)
  • Add focused styling to buttons (rubenwardy)
  • Add min/max protocol version to minetest.get_version() (BuckarooBanzay)
  • Add additional texture modifiers (Treer)
  • Add node group disable_descend to disable actively descending down climbable nodes and nodes with liquid move physics (Wuzzy)
  • Add VoxelArea::intersect() (sfan5)
  • Allow nodes to have their post_effect_color affected by lighting (grorp)
  • Fix potential freeze in core.check_for_falling (savilli)
  • Send everlasting particle spawners to all players (chmodsayshello)
  • Allow place_param2 = 0 node placement predictions (SmallJoker)
  • New player physics overrides for climb speed, sneak speed, acceleration, liquid fluidity and liquid sink speed (#11465) (Wuzzy)
  • Allow to set custom third person front view camera offset (grorp)
  • Add script to update/generate mod translations: util/mod_translation_updater.py (Wuzzy)
    • See util/README_mod_translation_updater.md for details
  • Add start_time to sound parameter tables (part of #12764) (DS)

Misc / Maintenance

  • Entity/Object fixes and unittests (numberZero)
  • Lua environment cleanups and improvements (sfan5)
  • Various documentation improvements (Zughy, Wuzzy)
  • Inventory code fixes (SmallJoker, DS)
  • Many various code fixes (sfan5, grorp, srifqi)
  • Opt-out option for Doxygen generation on build (nerzhul)
  • Sound code cleanups and improvements (#12764) (DS)
    • Long sounds in sound packs, or sent via dynamic media, no longer cause client freezes on load
    • Positional sounds can be faded now
    • Documentation
    • Other improvements listed elsewhere
  • Faster client load times (#12764 and irr#233) (DS)

Minetest Game

  • Minetest Game is no longer the default game and no longer installed by default
  • New water textures (the old ones were non-free) (Lopano)
  • Improve leaves textures in "Opaque Leaves" mode (Wuzzy)
  • When a player dies in protected air, bones now spawn as a block instead of dropping as an item (OgelGames)
  • Add API for sapling growth (aegroto)
  • Hook callbacks for default.set_inventory_action_loggers (appgurueu)
  • Fix logic error in bed rotation (fluxionary)
  • Fix coral and kelp duplication glitch with sticky piston from Mesecons mod (zmv7)
  • Fix players being able to skip many nights at once by spam-clicking bed (appgurueu)
  • Fix not updating vessel shelf infotext (Niklp)
  • Fix bookshelf infotext not updating when adding, removing or moving items inside (Montandalar, appgurueu)
  • Update translations: German (Wuzzy), Spanish (David Leal), Ukrainian (Andriy), French (xin)

5.6.0 → 5.7.0

Released on 8 April 2023

Deprecations and compatibility notes

Client / Audiovisuals

  • Fix main menu error when submitting invalid port numbers (GoodClover)
  • Fix ChatPrompt crash in very narrow windows (DS)
  • Fix missing shadows when sun tilt is zero (x2048)
  • Android: Make OpenGLES 2 the default driver (ROllerozxa)
  • 8x block meshes for improved performance (x2048)
    • Configuration options and bugfixes (lhofhansl, x2048)
  • Decrease minimum for repeat_place_time (DS)
  • Fix Enter key after creating a new world (srifqi)
  • Improve chat history (TurkeyMcMac)
  • Add dynamic exposure correction (x2048)
    • This is also configurable by the Lua API
  • Improve the occlusion culling algorithm (i.e. better efficiency) (x2048)
  • Use multiple threads for mesh generation (i.e. faster rendering) (x2048)
  • Removed pageflip 3D mode (because broken) (ROllerozxa)
  • Fix progress bar look on HiDPI displays (kilbith)
  • Fix plantlike_rooted world-aligned node base textures (TurkeyMcMac)
  • Fix issues caused by attached node placement prediction (TurkeyMcMac)
  • Avoid shadow flicker at certain angles (x2048)
  • Chat: fix the unicode characters crowded together on prompt (snowyu)
  • Take geographic distance into account for server list ordering (sfan5)
  • Fix sneaking on nodes with large collision boxes (SmallJoker)
  • Faster light calculations for rendering (TurkeyMcMac)
  • Android: Improve double-tap for jump detection (srifqi)
  • Add Bloom shader (x2048)
  • Restore and enhance bouncy behavior (pecksin)
    • Bouncy nodes now let you control the jump height with the jump/sneak keys
  • Fix liquid drawtype faces sometimes not rendering (Wuzzy)
  • Apply DPI Scaling to the main menu (ElliottLester)
  • Improve shadow updates efficiency (x2048)
  • Textures: introduce world-align overrides (SmallJoker)
  • Fix crash when stars are reset (Zughy)

World / Server / Environment

  • Reduce server CPU consumed by occlusion culling (lhofhansl)
  • Improve loaded block handling (i.e. better efficiency) (lhofhansl)
  • Fix /help privs checks (TurkeyMcMac)
  • Add mod storage PostgreSQL backend (TurkeyMcMac)
  • Update floating nodes when liquid underneath vanishes (TurkeyMcMac)
  • Add zstd compression support to API function (20kdc)

Script API / Modding

  • Server: Fix error caused by sending too long chat messages (SmallJoker)
  • Correct handling of leftover items in core.item_eat (DS)
  • Various lua_api.txt clarifications and fixes (Wuzzy, jordan4ibanez, kab0u, veprogames, aerkiaga, DS)
  • Improve minetest.close_formspec server-side safety (luk3yx)
  • Handle nodes changed within another LBM and ABM loop (TurkeyMcMac)
  • Fix segfault caused by invalid PNG data in [png: (SmallJoker)
  • Add minetest.get_player_window_information() (rubenwardy, DS (bugfix))
  • Make body_orbit_tilt configurable (sofar)
  • Add chat HUD flag (#13189) (GreenXenith)
  • Improve MetaDataRef:{get,set}_float precision (TurkeyMcMac)
  • Fix error caused by an empty separator for string.split (TurkeyMcMac)
  • Add player:set_lighting( {saturation = float} ) (lhofhansl)
  • Add callback on_mapblocks_changed (TurkeyMcMac)
  • Improved Lua error handling (TurkeyMcMac)
  • Expose dtime_s to LBM handler (sfan5)
  • Let mods choose a forceload limit (TurkeyMcMac)
  • Add minetest.get_mapgen_edges (TurkeyMcMac)
  • Add minetest.get_game_info and allow reading game.conf (TurkeyMcMac)
  • Add support for facedir/4dir nodes to be attached with attached_node (Wuzzy)
  • Add additional attached_node options: always attach to ceiling, always attach to floor (Wuzzy)
  • Fix errors caused by schematic reading (TurkeyMcMac)
  • Fix set_nametag_attributes resetting the text in subsequent calls (snowyu)
  • game.conf: Add setting to use volatile a map backend (SmallJoker)
  • Allow rotating entity selectionboxes (appgurueu)
  • Add VoxelArea() constructor for easier use (TurkeyMcMac)
  • Fix formspec focus issue caused by empty element names (DS)
  • Faster vector, node and content ID access when using LuaJIT (TurkeyMcMac)
  • Speed up find_nodes_in_area (TurkeyMcMac)
  • Add an item pick up callback (DS)
  • Implement tool use sounds (sfan5)
  • Fix inconsistent craft replacement behavior (Wuzzy)
  • Fix potential error in craft recipes (savilli)
  • Add paramtype2s 4dir and color4dir for 4 horizontal rotations and 64 colors (Wuzzy)
  • Bugfix: Allow looped animation to be used safely with old clients (sfan5)
  • Reassure previous nil behaviour for tiles and special_tiles (Zughy)
  • Add buffer argument to VoxelManip:get_light_data (TurkeyMcMac)
  • Fix crash when crafting callbacks return strings (Zughy)

Misc / Maintenance

  • Fix crash while exiting to the main menu on macOS (x2048)
  • Rendering code cleanups (x2048)
  • Fix occasional black screen on startup (x2048)
  • Android: Build and logging improvements (sfan5)
  • Improve installation instructions (lynx197, sofar, tamara-schmitz)
  • Various code cleanups and optimizations (sfan5, ROllerozxa, nerzhul, GermanAizek)
  • Implement --debugger option to improve UX when debugging crashes (sfan5)
  • Various Development Test changes
    • Many, many additions and improvements (Wuzzy)
    • Add jukebox and branding iron (DS)
  • Development Test is no longer officially distributed with Minetest releases
  • Android: various maintenance and fixes (srifqi)
  • Unittest improvements (Wuzzy, TurkeyMcMac, rubenwardy)

Minetest Game

  • Limit and sanitize formspec fields (appgurueu)
  • Fix player_api.set_model not updating the animation (appgurueu)
  • Ensure chests close properly (fluxionary)
  • Ensure proper creative hand override (AntumDeluge)
  • Fix error if /home is executed with an invalid name (zmv7)
  • Fix wall craft registrations (alek13)
  • Screwdriver: 4dir node support (Wuzzy)

5.6.0 → 5.6.1

Released on 19 September 2022.

Client / Audiovisuals

  • Fix tooltips for dropdown, scrollbar and more (Desour)
  • Allow the comma as clickable URL component (pecksin)
  • Correct the entity glow calculation (x2048)
  • Get the setting texture_min_size to work again (fluxionary)
  • Scale hardcoded/integrated GUIs with the system-reported DPI (ElliottLester)
  • Overwriting a package via "Content" no longer triggers an error (rubenwardy)

World / Server / Environment

  • Fix potential use-after-free with item metadata (TurkeyMcMac)
  • Compatibility patch to not freeze older clients due to negative "frame_length" Tile Animation values (sfan5)
  • Dynamic shadows performance improvement by delaying non-urgent mapblocks (x2048)

Script API / Modding

  • Fix several crashes caused by clear_craft in combination with aliases (savilli)
  • Serialization: Restore (full) pre-5.6.0 compatibility (appgurueu)
  • LuaJIT: Workaround to allow larger serializations (appgurueu)
  • Enforced hp_max > 0 for entities (appgurueu)
  • Node Definition "tiles" and "special_tiles" again default to nil when not specified (Zughy)
  • Allow minetest.register_on_craft to return strings (was: ItemStack) (Zughy)
  • ObjectRef:set_stars to reset the stars no longer throws an error (Zughy)

Misc / Maintenance

  • x86 Android build fixes (savilli)

5.5.0 → 5.6.0

Released on 4 August 2022

Deprecations and compatibility notes

  • name in game.conf is deprecated for the game title
    • For specifying the game title from now on, use title instead

Client / Audiovisuals

  • Dynamic shader-based shadows for: nodes, entities, wield (x2048)
    • Includes many, many bugfixes and improvements (tuning, performance)
  • Fixed statbar HUD background scaling and numbering (appgurueu)
  • Apply texture pack main menu textures immediately (ROllerozxa)
  • Fix footsteps for players whose collision box min y != 0 (grorp)
  • Add depth sorting for node faces (x2048)
    • This fixes appearance issues when looking through multiple semi-transparent nodes.
    • This works only up to a distance of 16 nodes by default. Use the transparency_sorting_distance setting to adjust this
  • Optimize swapping nodes with equivalent lighting (TurkeyMcMac)
  • Fix item entity Z-fighting (appgurueu)
  • Use mod names/titles instead of technical names to display (GoodClover)
  • Fix texture packs not showing as enabled in mainmenu (rubenwardy)
  • Debug screen now shows "<unknown node>" at the top if an unknown node is pointed (Wuzzy)
  • Enable chat clickable weblinks by default (Ctrl+Click) (Froggo)
  • HUD: Fix outdated selection boxes (appgurueu)
  • Make no_screenshot image more clear (Zughy)
  • Add register dialog to separate login/register (rubenwardy)
  • No damage effects on hp_max change (appgurueu)
  • Fix updating glow and light calculation on entities (sfan5)
  • Fix unknown nodes sometimes displaying the "no texture" instead of the "unknown node" texture (Wuzzy)

World / Server / Environment

  • Distinct mod path values in world.mt to avoid issues with duplicated mod names (rubenwardy)
  • Fix broken server startup if curl is disabled (sfan5)
  • Increase max. objects per block defaults (appgurueu)
  • Builtin: Allow to revoke unknown privileges (SmallJoker)
  • Fix some textures not being sent correctly to older clients (Oblomov)
  • Fix several registration/authentication related issues (sfan5)
  • Fix dependency enabling of mods and modpacks (rubenwardy, TurkeyMcMac)
  • Fix cooking and fuel crafts with aliases (TurkeyMcMac)
  • Commands: Some numbers can be replaced or prepended with "~" for values relative to the current one (Wuzzy)
    • "~" is equivalent to "~0"
    • Supported commands: /deleteblocks, /emergeblocks, /fixlight, /spawnentity, /teleport, /time
    • Example: "/teleport 15 ~5 ~" teleports to (15, <current Y coordinate plus 5>, <current Z coordinate>)
  • Don't allow banning in singleplayer (sfan5)
  • Docs: Add description of privileges (x2048)
  • Increase max FPS on Android to 60 (ROllerozxa)
  • Add many limits to settingtypes + engine (Wuzzy, SmallJoker)
  • Reorganise settingtypes.txt (rubenwardy)

Script API / Modding

  • Improved formspec documentation (DS)
  • Optimization: Send HUD flags only if they changed (appgurueu)
  • Allow to set the displayed item count and its alignment via item meta: count_meta, count_alignment (DS)
  • Add support for 'seed' in disallowed_mapgen_settings (Wuzzy)
  • List of documentation improvements:
    • AreaStore (SmallJoker)
    • Lua vector helper class (sfan5)
    • spawn_by for decorations (Zughy)
    • LBM documentation (TurkeyMcMac)
    • Overall improvements (sfan5)
  • Allow get_sky to return a table of all sky-related parameters (Zughy)
  • Add basic_debug HUD flag to control display of debug info like position in the debug screen (on by default) (appgurueu)
  • Fix memory leak from SpatialAreaStore (setupminimal)
  • Add function ObjectRef:set_lighting() to control shadow intensity from the game/mod (x2048)
  • Fix '[combine' when EVDF_TEXTURE_NPOT is disabled (paradust7)
  • hud_get: Return precision field for waypoint (appgurueu)
  • Add Async environment for parallelized Lua code execution (sfan5)
    • minetest.handle_async
    • minetest.register_async_dofile
  • Fix Minetest blaming the wrong mod for errors (appgurueu)
  • Deprecate game.conf name, use title instead (#12030) (rubenwardy)
  • Protect a few more settings from being set from mods (sfan5)
  • Add function ObjectRef:respawn() to invoke player respawn (sfan5)
  • Handle Lua entity HP changes correctly (like punches) (sfan5)
  • Add tool helper function ItemStack:add_wear_by_uses() to add tool wear in such a way that it has a given number of uses (Wuzzy)
  • Add minetest.get_tool_wear_after_use to simulate tool wear when expecting it to break after a given number of uses (Wuzzy)
  • on_deactivate entity callback: distinguish removal and unloading (appgurueu)
  • Remove tile_images and special_materials obsolete code (Zughy)
  • set_stars: Allow to set maximum star opacity at daytime with day_opacity (Wuzzy)
  • FormSpec: 9-slice images, animated_image, and fgimg_middle (v-rob)
  • Animated particle spawners (velartrill)

Misc / Maintenance

Code details are intentionally omitted due to the changelog target audience's interests.

  • Fix macOS compile instructions (sfan5)
  • Various C++ code cleanups and improvements (TurkeyMcMac, sfan5, Oblomov, SmallJoker, Octavian, RichardTry, savilli, JosiahWI)
  • List of DevTest game improvements:
    • TGA test nodes (ehrlemann)
    • Test weapons and armorball modes (Wuzzy)
    • Nodes and items for testing overlays (Wuzzy)
    • Entity lifecycle and callbacks (sfan5)
    • Item metadata editor (Wuzzy)
  • Minetest now uses C++14
  • Remove direct OpenGL(ES) dependency (sfan5)
  • Compile Lua as C++ to properly catch exceptions (TurkeyMcMac)
  • Build system improvements (sfan5, ShadowNinja, LoneWolfHT)
  • Run automated tests when Lua files change (x2048)
  • Add JSON (de)serialization benchmarks (paradust7)
  • Performance optimizations by caching (mapblocks, collisionbox) (sfan5)
  • Add more Prometheus metrics (sfan5)
  • Add documentation to list breaking changes for the next major release (Zughy)
  • Patch built-in Lua to fix miscompile on Android (paradust7)
  • Fix BSD iconv declaration (savilli)
  • Fix Android input box crash (ROllerozxa)


Minetest Game

  • Improved cart movement behavior (SmallJoker)
    • Improved direction handling
    • Smoother-out 'end-of-rail' animation
    • Other improvements
  • Dynamic shadow intensity increases with cloud density (only has an effect if you have dynamic shadows enabled) (lhofhansl)
  • Allow mods to override player animation globalstep with player_api.globalstep (LoneWolfHT)
  • Log API added (nixnoxus)
  • Fix crash if player has no model (Lars Mueller)
  • Fix broken get_animation in player_api (bell07)
  • Fix furnace fire sound continuing to play after being destroyed (Wuzzy)
  • Fix TNT blowing up ignore nodes (Wuzzy)
  • Fix some hoes not breaking after the intended number of uses (Wuzzy)
  • Fix book duplication glitch (appgurueu)
  • Fix incorrect behavior of glass and obsidian glass if param2 was changed (appgurueu)
  • Fix cart sometimes facing the wrong way at slopes (not a 100% perfect bugfix tho) (SmallJoker)
  • New translation: Polish (mrubax10)
  • Translation updates: Ukrainian (baytuch), Russian (baytuch), German (Wuzzy), Lojban (Wuzzy), Esperanto (quarthex)

5.5.0 → 5.5.1

Released on 15 May 2022.

World / Server / Environment

  • Fix server crash due to duplicate user registrations (sfan5)
  • Fix cooking and fuel crafts with aliases (Jude Melton-Houghton)
  • Fix some textures not being sent correctly to older clients (Giuseppe Bilotta)
  • Fix broken server startup if curl is disabled (sfan5)
  • Fix password changing getting stuck if wrong password is entered once (sfan5)
  • Apply disallow_empty_password to password changes too (sfan5)

Client / Graphics

  • Fix various issues with Select Mods and Content (rubenwardy, Jude Melton-Houghton, Alex)
  • ContentDB: Fix ungraceful crash on aliases when list download fails (rubenwardy)
  • Fix performance issue due to hardware buffer counters (paradust7)
  • HUD: Update selection highlight every frame to avoid glitches (Lars Müller)
  • Fix '[combine' when EVDF_TEXTURE_NPOT is disabled (paradust7)
  • Fix footsteps for players whose collision box min y != 0 (Gregor Parzefall)
  • Fix undefined behavior in TileLayer (Daroc Alden)
  • Use absolute value for bouncy in collision (pecksin)
  • Fix builtin statbar backgrounds (Lars Mueller)

Misc

  • Fix possible unreliable behavior due to uninitialized variables (Octavian)
  • Fix Minetest blaming the wrong mod for errors (Lars Müller)
  • Fix some memory leaks (SmallJoker, Daroc Alden, Daroc Alden)

Minetest Game

  • player_api mod: Fix crash if player has no model (appgurueu)
  • player_api mod: Mods can now override globalstep by overriding player_api.globalstep (LoneWolfHT)
  • Shadow intensity (of dynamic shadows) changes with weather (lhofhansl)
  • Some cart movement behavior fixes (SmallJoker)
  • Fix some translations in uk and ru locales (baytuch)

5.4.0 → 5.5.0

Released on 30 Jan 2022.

Deprecations and compatibility notes

  • FORMSPEC_API_VERSION is now 5
  • New maps are now zstd compressed to reach faster and/or more efficient compression
  • Switched to our own fork of the rendering engine: IrrlichtMT
    • Removed support for DirectX
    • Dropped support for obscure and undocumented file formats: pcx, ppm, psd, wal, and rgb
  • Modding: Missing "mod.conf" is now deprecated. Results in warnings (rubenwardy)
    • Add mod.conf with name = yourmodname
  • Modding: depends.txt and description.txt are now deprecated
    • Specify dependencies using "depends" and "optional_depends" in mod.conf
    • Specify description using "description" in mod.conf
  • Modding: Creating vectors like this: {x=1, y=2, z=3} is now deprecated
    • Use vector.new instead
  • Bitmap fonts are no longer supported
    • Use TTF fonts instead

Features: General

  • Add game name to server status string (sfan5)
  • Improve TTF support for pixel-style fonts (v-rob)
  • Joystick support for DragonRise GameCube controller (Izzette)
  • Add "MINETEST_MOD_PATH" environment variable (emixa-d)
  • Touch UI support for desktop builds (#10729) (TheBrokenRail)
  • Switch MapBlock compression to zstd (lhofhansl)
  • Joystick sensitivity for player movement (NeroBurner) + fixes (sfan5)
  • Gettext support on Android (Pevernow)
  • Make web links in chat clickable (Feature disabled by default, use setting clickable_chat_weblinks) (pecksin)
  • Add a key to toggle display map block boundaries (F8 by default) (grapereader)
  • Improved wording of various chat command outputs (Wuzzy)
  • Normal texture support (for minimap shading) (again) (numberZero)
  • Scale mouse/joystick sensitivity depending on FOV (Elias Åström)
  • Various DevTest game additions and improvements (Wuzzy)
  • Chat commands: Show the execution time if the command takes a long time (HybridDog)
  • Improved item placement prediction (sfan5)
  • Anticheat: Faraway inventory access protection (SmallJoker)
  • Pause animations while game is paused (numberZero)

Features: Main menu and ContentDB

  • Chop game background in mainmenu (appgurueu)
  • ContentDB: Add support for package aliases / renaming (rubenwardy)
  • Improved "Join Game" tab (sfan5)
  • Builtin function translation (Wuzzy, Zughy)
  • Translation support for the builtin functions (Wuzzy, snowyu) + updates (Wuzzy, see CONTRIBUTING file)
  • Handle modpacks containing modpacks properly (Elias Fleckenstein)
  • Texture pack toggle by double clicking (Yaman Qalieh)

Features: Modding

  • Sky API: Reset by empty arguments (Zughy)
  • Use a database for mod storage (internal) + CSM auto-migration (TurkeyMcMac)
  • Add padding[] element to formspecs (#11821) (v-rob)
  • Disable inventory if player's inventory formspec is blank (ROllerozxa)
  • Add minetest.disconnect_player (Corey Powell)
  • Add Lua bitop library (Lejo)
  • Allow for game-specific menu music (ExeVirus)
  • Add minetest.rmdir, minetest.cpdir and minetest.mvdir (octacian)
  • Add no_texture.png as fallback for unspecified textures (Wuzzy)
  • Add minetest.get_server_max_lag() (Wuzzy)
  • Split node field 'liquid_viscosity' into two: liquid_viscosity (how fast liquid flows) and move_resistance (how much it slows players) (Wuzzy)
  • Improved dynamic_add_media functionality (sfan5)
  • Add group-based tool filtering for node drops (Treer)
  • Add disable_settings to game.conf to get rid of "Enable Damage"/"Creative Mode"/"Host Server" checkboxes (Df458)
  • Add a simple PNG image encoder with Lua API + texture modifier [png (hecks)
  • Add bold, italic and monospace font styling for HUD text elements (sfan5)
  • Add wallmounted support for plantlike and plantlike_rooted nodes (Wuzzy)
  • Add API for mods to hook liquid transformation events (Warr1024)
  • Add min_y and max_y checks for Active Block Modifiers (ABM) (sfence)
  • Add metatables to Lua vectors (DS)
  • Add minetest.compare_block_status function (SmallJoker)
  • Add minetest.colorspec_to_colorstring (v-rob)
  • Put torch/signlike node on floor if paramtype2=="none" (Wuzzy)
  • Return ObjectRef from minetest.spawn_falling_node() (benrob0329)
  • Modifyable player fall damage via armor group (Wuzzy)
  • Add vector.to_string and vector.from_string (#10323) (DS)
  • Add math.round and fix vector.round (v-rob)
  • Degrotate support for mesh nodes (numberZero) + fixes (sfan5, Wuzzy)
  • lua_api.txt: Fix style selector examples (Df458)
  • Nested Settings are now also contained in to_table (SmallJoker)

Bugfixes

  • Fix Minetest logo when installed system-wide (ROllerozxa)
  • Cancel emerge callbacks on shutdown (TurkeyMcMac)
  • Free arguments of cancelled minetest.after() jobs (sfan5)
  • Fix damage wraparound if very high damage (Wuzzy)
  • Cap damage overlay duration to 1 second (Wuzzy)
  • Rendering fixes: Add more neighbors on mesh update (numberZero)
  • Don't let HTTP API pass through untrusted function (sfan5)
  • Fix URL escaping in content store (sfan5)
  • Fix find_nodes_in_area misbehaving with out-of-map coordinates (sfan5)
  • Minimap: gamma-correct average texture colour calculation (HybridDog)
  • Fix item duplication if player dies during interact callback (sfan5)
  • View bobbing fixes (appgurueu)
  • Fix player HP desync between client and server (savilli)
  • Rendering fixes: Order drawlist by distance to the camera (x2048)
  • Fix crash when .conf release field is invalid (rubenwardy)
  • Performance: Fix client-side performance of chat UI (DS)
  • Fix HUD multiline text alignment (appgurueu)
  • Send correct updates to clients after node metadata clear (TurkeyMcMac)
  • Remove redundant on_dieplayer calls (savilli)
  • Fix 6th line of infotext being cut off in half (Wuzzy)
  • Validate staticdata and object property length limits (sfan5)
  • Fix scaled world-aligned textures being aligned inconsistently for non-normal drawtypes (Wuzzy)
  • Various lua_api.txt corrections and improvements (Df458, random-geek, Wuzzy, Francisco, Zughy)
  • Run on_grant and on_revoke callbacks after privs change (AFCMS)
  • Fix base64 validation and add unittests (appgurueu)
  • Fix cloud fog being broken for high clouds (Wuzzy)
  • Attachments: various bugfixes (SmallJoker)
  • Rendering engine fxes and cleanups (nerzhul)
  • Multiple OpenGL ES fixes (sfan5)
  • Make edit boxes respond to string input (IME) (yw05)
  • cURL timeout fixes and increased default timeout (sfan5)
  • Fix wield image of plantlike_rooted (Wuzzy)
  • Fix attached-to-object sounds volume (Desour)
  • Fix segfault for model[] without animation speed (kilbith)
  • Crash fix when models fail to load (sfan5)
  • Access protections for per-player detached inventories (SmallJoker)
  • mg_name and mg_flags can no longer be set by Lua (minetest.conf) (sfan5)
  • Interlaced 3D mode fixes (srifqi)
  • Fix hud_change and hud_remove functionality after hud_add calls (savilli)
  • Fix number of times a tool can be used before breaking being off by a number between 1 and 32767 (Wuzzy)
  • Various stability fixes (server and client crashes)

Maintenance

  • Rendering improvements: use dedicated GPU, improve frame calculations (sfan5)
  • Fully remove bitmap font support (use TTF now) (sfan5)
  • Restore GCC 5 compatibility (JosiahWI)
  • Remove creative/damage info in Esc/Pause menu (Wuzzy)
  • Update to Android target SDK 30 (rubenwardy)
  • Add macOS build docs (andkerr)
  • Android: Use scoped app storage (rubenwardy)
  • Make /status message easier to read (Wuzzy)
  • Clean up/improve some scriptapi error handling code (sfan5)
  • Add hint to error message on how to build with in-tree Irrlicht (20kdc)
  • Optimize vector length calculations (Lean Rada)
  • Remove hardcoded "You died." message in chat (Wuzzy)
  • Remove unsupported video drivers (hecks)
  • Document hypertext formspec element escaping (Wuzzy)
  • Drop --videomodes, fullscreen_bpp and high_precision_fpu settings (sfan5)
  • PostgreSQL fixes and improved error messages (sfan5)
  • Improved liquid documentation (Wuzzy)
  • Improved mipmapping-related code (sfan5)
  • Rendering engine was changed from Irrlicht to IrrlichtMt (Minetest's fork of Irrlicht) (sfan5)
  • Performance: Draw items as 2D images (instead of meshes) when possible (sfan5)
  • Sanity check: Block & report player self-interaction (appgurueu)
  • Multiple font code cleanups and improvements (sfan5)
  • IrrlichtMt switch related fixups (kilbith. sfan5, nerzhul))
  • Performance improvements during media/mesh loading (sfan5)
  • Json is now taken from the system by default (sfan5)
  • Various build bot and setup changes (sfan5)
  • Restructured "/teleport" command (HybridDog)
  • Consistent Aux1 key naming (Wuzzy)
  • Many many internal cleanups and fixes (sfan5, others)

Minetest Game

  • Add “Read” and “Write” tabs to book interface when you own the book (orbea)
  • Allow to write books without text or title (orbea)
  • Make identical keys stackable (Luis Royer)
  • Fix creative inventory trash slot not working for player named “trash” (Montandalar)
  • Fix sunlight propagation for glass stair/slab (An0n3m0us)
  • Fix glass bottle with firefly not being placable in vessels shelf (An0n3m0us)
  • Other bugfixes
  • Translations: Esperanto (Jason Cartwright), Russian (ptah-alexs), Japanese (nogajun), German (Wuzzy), Slovak (Daretmavi), French (Olivier Dragon), Swedish (ROllerozxa), Chinese (雷哲翰), Ukrainian (baytuch)

5.3.0 → 5.4.0

Released on 23 Feb 2021.

Deprecations and compatibility notes

  • Removed support for bumpmapping, generated normal maps, and parallax occlusion (Lars, hecks)
    • These features had fundamental issues, several bugs, and were broken on some platforms.
  • Deprecated node field value: use_texture_alpha = true/false
    • Fix: Use "clip", "blend" or "opaque" (see documentation)
  • Deprecated get_player_velocity and add_player_velocity (rubenwardy)
    • Fix: replace with get_velocity() and add_velocity()
  • Deprecated multiply and divide with two vectors (Schur product and quotient) (DS)
    • Fix: implement your own version
  • By default, the crosshair will now change to an "X" when pointing to objects. If your game had a custom crosshair, this might come as a surprise and break graphical consistency.
    • Fix: Specify object_crosshair.png image
  • Added deprecation warning for node field: alpha (only limited compatibility provided)
    • This was already deprecated and undocumented.
    • Fix: Replace by use_texture_alpha
  • Fixed deprecation warning when certain ores types ("sheet", "puff", "blob" and "vein") are missing noise_params (rubenwardy)
    • These ore types require noise_params. To keep the same behaviour, you can use the following values:
noise_params = {
    offset  = 0,
    scale   = 1,
    spread  = {x=250, y=250, z=250},
    seed    = 12345,
    octaves = 3,
    persist = 0.6,
    lacunarity = 2,
    flags = "defaults",
}

Features

General

  • Make 'place' and 'dig' keys freely configurable (only via minetest.conf for now: keymap_place and keymap_dig) (ANAND, Markus Koch)
  • Freely bindable mouse buttons (only via minetest.conf for now: KEY_LBUTTON, KEY_MBUTTON, KEY_RBUTTON) (ANAND, Markus Koch)
  • Add 'ores' global mapgen flag (Paramat)
  • Mapgen Flat: Add caverns, disabled by default (Paramat)
  • Semi-transparent background for nametags (Zughy, rubenwardy)
  • Disable object selectionboxes by default (LoneWolfHT)
  • Change crosshair when pointing to objects ("X" shape by default) (LoneWolfHT)
  • Shaders for Android (GLES 2) (Vitaliy)
  • Load media from subfolders (DS)
  • Allow configuring block disk and net compression. Change default disk level. (Lars)

Main menu and ContentDB

  • ContentDB: Add dependency resolution, update all, and download queues (rubenwardy)
  • ContentDB: Add overwrite dialog when content is already installed (rubenwardy)
  • ContentDB: Use icons for buttons (Zughy)
  • Add open user data button to main menu (rubenwardy)
  • Main menu: Add clear button and icon for search input (Andrey)
  • Improve layout of main menu 'local' tab (Paramat)

Modding: GUI (Formspecs) / HUD

  • Add sound effect style option (Pierre-Yves Rollo)
  • Add 3d model formspec element (Jean-Patrick Guerrero, SmallJoker, Thomas--S)
  • Add minimap and compass HUD elements (Pierre-Yves Rollo, Jean-Patrick Guerrero)
  • Make bgcolor tint button background images (Hugues Ross)
  • Add gradients and borders to FormSpec boxes (v-rob)
  • Add font styling options (v-rob)
  • Add set_focus[] to initially focus elements (v-rob)
  • Make dropdowns optionally return event based on index, not value (v-rob)
  • Avoid drawing clipped out formspec elements (EvidenceB)
  • Darken tabheader background color (Kezi)
  • Add inventory list styling: spacing, slot size, and noclip (v-rob)
  • Add support for custom object crosshair image: object_crosshair.png (LoneWolfHT)

Modding: Other

  • Add support for showing attached objects whilst in first person mode (Jordach)
  • Add ability to cancel a minetest.after call after it was started (tenplus1)
  • Add on_rightclickplayer callback (sorcerykid)
  • Add on_deactivate callback for luaentities (hecks)
  • Add minetest.get_objects_in_area (Elias Fleckenstein)
  • Add ObjectRef:get_children() (Zughy)
  • Add a short_description to be used by mods (DS)
  • Add minetest.get_artificial_light and minetest.get_natural_light (HybridDog)
  • Add register_on_chatcommand to SSM and CSM (Elijah Duffy)
  • Add vector.offset (DS)
  • Register missing get_texture_mod function (karamel59)
  • content_cao: Support texture animation for upright_sprite (sfan5)
  • Add PUT and DELETE request + specific method value to HTTP API (Lejo)
  • Nodes are now allowed to have the "liquid" or "flowingliquid" drawtype for non-liquids (liquidtype=none) (Wuzzy)
  • Play 'place_failed' sound if trying to place a node into an occupied space or it was an "attachable" node that failed to attach (Wuzzy)
  • Implement grouped mode for find_nodes_in_area (sfan5)
  • Clean up sound_fade (hecks)
  • Chat commands: Show help message if func returns false without message (HybridDog)
  • Node use_texture_alpha field supports now 3 modes "blend", "clip" and "opaque" (deprecated true/false values)

Other enhancements and maintenance

  • Cross-reference the node level manipulation functions (Oblomov)
  • Update fallback fonts and mark additional locales as broken (sfan5)
  • Clean up l_object.cpp (Zughy)
  • Devtest: Improve various things (Paramat, HybridDog, Wuzzy)
  • Android: Add CI with saving artifacts (Maksim)
  • Add NetBSD cpu affinity support code (David CARLIER)
  • Android: drop simple MainMenu (Maksim)
  • Add support for Haiku OS (David CARLIER)

Bug fixes

Security

  • Prevent players accessing inventories of other players (Lars Müller)
  • Inventory: Protect Craft and Drop actions (SmallJoker)
  • Prevent interacting with items out of the hotbar (Lejo)
  • Fix inventory swapping not calling all callbacks (Lars Müller)
  • Patch fast/teleport vulnerability when attached to an entity (Elias Fleckenstein)
  • Prevent games from setting secure settings (rubenwardy)
  • Prevent players from being able to modify ItemStack meta (luk3yx, rubenwardy)

Other

  • Fix dropped craftitems/tools not using light_source values (LoneWolfHT)
  • Fix when on_player_hpchange is called (SmallJoker)
  • Use JSON for favorites list, fixing many bugs (rubenwardy)
  • Fix hypertext and textarea elementing consuming scroll events (v-rob)
  • Fix ESC in error dialog from closing Minetest (Yaman Qalieh)
  • Remove null bytes from TOCLIENT_BLOCKDATA (luk3yx)
  • Load system-wide texture packs too (Zughy)
  • Fix Android support in bump version script (rubenwardy)
  • ContentDB: Ignore content not installed from ContentDB (rubenwardy)
  • Sanitize server IP field in mainmenu (Zughy)
  • Fix item tooltip background color not working (Lars Mueller)
  • Display Minetest header when menu_last_game value isn't available anymore (Zughy)
  • Fix minetest.is_nan (Lars Mueller)
  • Fix some minor code issues all over the place (sfan5)
  • Minor profiler fixes. (Lars)
  • Fix fallnode rotation of wallmounted nodebox/mesh (Wuzzy)
  • Make installer create its own Minetest folder (LoneWolfHT)
  • Implement mapblock camera offset correctly (hecks)
  • Fix MSAA stripes (HybridDog)
  • Fix certain connected nodeboxes crashing when falling (sfan5)
  • Avoid generating the same chunk more than once with multiple emerge threads. (Lars)
  • Fixed various issues with stars, sky, and clouds (numzero)
  • Fix falling image of torchlike if paramtype2="none" (Wuzzy)
  • Fix player sprite visibility in first person (sfan5)
  • Fix object interaction distance not being checked (rubenwardy)
  • Block attempts to connect to the client (red-001)
  • Fix segfault in deprecation logging due to tail call, log by default (rubenwardy, SmallJoker)
  • Player physics: Ensure larger dtime simulation steps (Lars Müller)
  • Avoid resending near blocks unnecessarily. (Lars)
  • Fix CSMs on arm64 (luk3yx)
  • Fix Media... 0% on loading screen (Maksim)
  • Implement unloading of static_save=false objects according to existing docs (sfan5)
  • Decouple entity minimap markers from nametags replacing with show_on_minimap property (sfan5)
  • Periodically release all mesh HW buffers to avoid an Irrlicht bottleneck. (Lars)
  • Fix float argument check in minetest.set_timeofday() (Zughy)
  • Avoid drawing invisible blocks on the client. (Lars)
  • Fix scroll bar overlapping text (again) (random-geek)
  • Reduce the FPS when the window is unfocused (HybridDog)
  • Android: replace InputDialogActivity on simple dialog window (Maksim)
  • Correct erroneous reported max lag with prometheus (Buckaroo Banzai)
  • Fix horizontal/vertical merging bug of hardware-colored framed glass (Paramat)
  • Fix chat/infotext overlap if many chat lines (Wuzzy)
  • Settings: Fix crash on exit (SmallJoker)
  • Record player existence in dummy database. (Lars)
  • Darwin platform build fix (David CARLIER)
  • Scale inventory image for scaled allfaces nodes (Wuzzy)
  • Fix NetBSD build (David CARLIER)
  • shaders: Fix transparency on GC7000L (mntmn)
  • Fix MSVC compiler warnings (adrido)
  • Fix light overflow of u8 if light is saturated at 255 (BenjaminRi)
  • Fix missing translation call in hypertext (Pierre-Yves Rollo)
  • Render nodeboxes with opaque material if possible (sfan5)
  • Fix precision not working in hud_change (Lars Müller)
  • Fix build for Visual Studio (explicitly cast pointers) (Seeker)
  • Fix GCC class-memaccess warnings (Paul Ouellette)
  • Falling: Fix error caused by missing param2 (SmallJoker)
  • Allow starting local server using --go again (SmallJoker)
  • decode_base64: Allow '=' padding character (SmallJoker)
  • Sanitize world directory names on create. Keep original name separate (Hugues Ross)
  • Improve bad/missing default inventory+wield images of node drawtypes, affecting: airlike, signlike, torchlike, raillike, plantlike, plantlike_rooted, firelike, flowingliquid (Wuzzy)
  • Android: Fix ConfirmRegistration and PasswordChange input and scale size (Maksim)
  • Formspecs: volume and key settings windows can now be closed by doubleclicking/tapping (Zughy)

Minetest Game

  • Add crafting guide (Paul Ouellette)
  • Added 5 wood variants of Mese Post Light (An0n3m0us)
  • Add environment sounds for lava and active furnace (An0n3m0us)
  • Change several block sounds (An0n3m0us)
  • Fix players sleeping in an occupied bed (An0n3m0us, Wuzzy)
  • Fix 'sleepwalking' in bed (An0n3m0us, Wuzzy)
  • Fix sleeping player flying off the bed when damaged and flying far away from the bed after death (An0n3m0us)
  • Fix sleeping player being immobilized and bed undiggable after death (An0n3m0us)
  • Fix furnace infotext not always updating when removing item (orbea)
  • New translation: Slovak (Daretmavi)
  • New translation: Brazilian Portuguese (ronaldo)
  • New translation: Lojban (admittedly not a very good translation) (robintown, Wuzzy and others)
  • Update existing translations (various people)

5.2.0 → 5.3.0

Released on 9 July 2020.

Modder Update Guide

  • Lua API: minetest.PLAYER_MAX_BREATH_DEFAULT set to 10 (was 11). This can cause problems with “statbar” mods (like [hudbars]) that rely on the old value, so those likely need updating
  • Default in Minetest Game was incorrectly overriding dropped items. Make sure to update any overrides to pass new arguments to on_step to the original function

Client / Audiovisuals

  • Smoother camera movement to fix jump glitches (paramat)
  • More precise player controls handling (TheTermos)
  • Fix bone-attached entities (hecktest)
  • Fix incorrect position data on attach (hecktest)
  • Fix HUD scaling (mainly for Android) (MoNTE48)
  • Fix incorrect entity light calculations (SmallJoker, sfan5)
  • Add chat_log_level and chat_font_size setting (SmallJoker)
  • New default sky color gradient (TheTermos)
  • Change default keys for camera/minimap to C/V (Wuzzy)
  • Fix breath bar scaling (ANAND)
  • Fix bone position changes breaking animations (theviper121)
  • No grey screen when C++ errors are thrown by Lua (pauloue)
  • Android: add OpenGL ES 2 support (MoNTE48)
  • Reuse object_shader for "wielditem" and "item" entities (dcbrwn)
  • Shaders: Fix OpenGL < 4.3 compatiblity (SmallJoker)
  • Formspec: properly display altered inventory lists (DS)
  • Android: Various input-related fixes (MoNTE48)
  • Android: Android Studio support, improve everything (MoNTE48)
  • Remove sound menu and show proper msgs if sound is off (Wuzzy)
  • Highlight hovered formspec elements when pressing F5, for testing (SmallJoker)
  • Implement DPI scaling for Windows (sfan5)
  • Allow relative directories for `screenshot_path` (Calinou)
  • Add (optional) tone mapping for entities (dcbrwn)
  • Add new mapgen options in world creation dialog (Wuzzy)
  • Add support for overriding item inventory/wield images in texture packs (Df458)

GUI (Formspec)

  • Fix wrong image button scaling (pyrollo)
  • Document *_hovered and *_pressed styles as deprecated (v-rob)
  • Add buttons to ContentDB in game bar and configure world (rubenwardy)
  • Add universal style selector “*” (v-rob)
  • Add content_offset and padding style properties for buttons (Df458)
  • Add scroll_container element (DS)
  • CSS-like state-selection for style elements (Df458)

World / Server / Environment

  • Fix liquids refusing to flow in X+ or Z+ in some cases (sfan5)
  • Rework functionality of leveled nodes (Wuzzy)
  • New Mapgen V7 floatland implementation (paramat)
  • Server: Better emerge multithreading, various fixes (sfan5)
  • Correctly indicate failure in /spawnentity (sfan5)
  • Add PostgreSQL authentication backend (nerzhul)
  • Add chat command "/revokeme (priv)" (Panquesito7)
  • Optimize get_objects_inside_radius calls (nerzhul)
  • Fix world migration to PostgreSQL (sfan5)
  • Collision detection fixes and follow-up bug fixes (TheTermos)
  • Many many networking improvements (sfan5)

Script API / Modding

  • Log warning when secure.enable_security is disabled (rubenwardy)
  • Exposed zoom key to the API (appgurueu)
  • Add LevelDB auth database (luk3yx)
  • Add vector functions useful for working with rotations (NetherEran)
  • Add minetest.is_creative_enabled (Wuzzy)
  • Add minetest.on_authplayer callback (sorcerykid)
  • HUD: Implement scalable texts (LoneWolfHT)
  • HUD: "off state" icon feature for statbars (Wuzzy)
  • set_fov: Add time-based transitions (ANAND)
  • Expose collision information to LuaEntity on_step (sfan5)
  • Enforced type checks for registration fields (SmallJoker)
  • Add server side translations capability (pyrollo)
  • Fix alias handling of minetest.get_content_id (sfan5)
  • Document inheritance of different noise seeds (paramat)
  • Add default stack size setting (nephele)
  • Play player_jump sound when player jumps (Wuzzy)
  • HUD: Better waypoints and new image variant (appgurueu)
  • CSM: Implement minetest.sound_fade() (sfan5)
  • Error on invalid mapgen alias (Wuzzy)
  • Add allowed_mapgens option in game.conf (wt)
  • Lua API documentation clarifications (Wuzzy)
  • minetest.PLAYER_MAX_BREATH_DEFAULT set to 10 (was 11) (ANAND)

Misc / Build

  • Android: Hide media from galleries etc (rubenwardy)
  • Minimal development test [minimal] renamed to “Development Test” [devtest] (Wuzzy)
  • Complete overhaul of Development Test, many new features added for testing the engine, more documentation added in README files, etc. (Wuzzy)
  • Particle & ParticleSpawner code cleanup (sfan5)
  • Add Prometheus support (nerzhul)
  • Fix detection of in-place path_locale when RUN_IN_PLACE=0 (sfan5)
  • List STATIC_LOCALEDIR in "--version" (sfan5)
  • Many code optimizations (sfan5)
  • Wireshark dissector update (sfan5)
  • Split and re-organize server object code (nerzhul)
  • Automatic build improvements (sfan5, nerzhul)

Minetest Game

  • Rename “Dry Dirt” and related blocks to “Savanna Dirt” and similar (paramat)
  • Added Wild Cotton: grows in savannas, drops Cotton Seeds (paramat)
  • Sort items into correct categories (An0n3m0us)
  • Tune cloud density variation (paramat)
  • Fix broken Creative inventory search in translation (sfan5)
  • Make Straw Stairs/Slabs usable as fuel (Paul Ouellette)
  • New textures: Dry Shrub, Brake Rail (Extex101, Hooded Ice)
  • Block particles when leaves decay, TNT explodes (sfan5)

5.1.0 → 5.2.0

Released on 5 April 2020.

Client / Audiovisuals

  • Fix alpha blending in texture modifiers (Warr1024)
  • Make natural night light as bright as MT 0.4.16 (paramat)
  • Shader fixes (lhofhansl, SmallJoker)
  • Clean up font caching, fix bitmap fonts (SmallJoker)
  • Waves generated with Perlin-type noise #8994 (lhofhansl)
  • Attachments: Fix glitches after detach (SmallJoker)
  • Let node 'place' and 'dug' sounds be heard by other players (sfan5)
  • Fix weird looking liquid source (Wuzzy)
  • Basic model shading (dcbrwn)
  • Improve arm inertia animations (kilbith)

GUI Improvements

  • Add visual feedback for button states (Df458)
  • Formspec: draw order and clipping for all elements (DS)
  • Refactor internal button styling/rendering code (Df458')
  • Formspec: Fix clicking on tooltip-obstructed elements (DS)
  • Formspec: change cursor on fields and co. (DS)
  • Various new formspec bug fixes (SmallJoker)
  • Formspec: Add 9-slice background support to button elements (Df458)
  • Formspec: add hypertext[] element (pyrollo)
  • Formspec: animated_image[] (Df458, kilbith)
  • Make clipping of formspec elements more consistent (Df458)
  • Remove outdated field_close_on_enter[] warnings in element parameters (SmallJoker)
  • Fix mouse events sent to wrong GUI elements when dragging (sfan5)
  • Restore intuitive click-through behaviour (DS)

Enhancements

  • Wear out tools on punch (sfan5)
  • Tunnels: Completely disable generation when 'cave width' >= 10.0 (paramat)
  • Randomwalk cave liquids: Remove deprecated 'lava depth' (paramat)
  • Automatically enable the mod's dependencies in the world config menu (HybridDog)
  • Clean up craft replacements docs (pauloue)
  • Falling nodes: add missing support for light sources, most drawtypes, and paramtype2s (Wuzzy)
  • Remove legacy flat-file map code and documentation (random-geek)
  • Fix packet receiving in server and client (sfan5)
  • Key settings: Cancel with escape, clear with delete (SmallJoker)

Script API / Modding

  • CSM: Introduce get_modpath() (sfan5)
  • CSM: Remove non-functional minetest.get_day_count() (sfan5)
  • Add z-index management to HUD (pyrollo)
  • Add table.key_value_swap and table.shuffle (HybridDog)
  • Map download: Escape ':' to '_' (NTFS/FAT* systems) (Montandalar)
  • Settings: Add get_flags API for mapgen flags (SmallJoker)
  • Improve minetest.sound_play with ephemeral sounds and player exclusion (sfan5)
  • Reworked validity checks for entities (sfan5)
  • Documentation: Add advice on lifetime of ObjectRefs (sfan5)
  • Allow texture modifiers in hotbar textures (Warr1024)
  • Nodes with torchlike drawtype and custom visual_scale now are rendered attached to surface instead of being centered (Wuzzy)
  • Add documentation of VoxelArea 'ystride', 'zstride' (paramat)
  • Lua API: Document HP, breath and damage limits (SmallJoker)
  • Various documentation improvements (Wuzzy)
  • CSM: Corrections to client_lua_api.txt (sfan5)
  • Make minetest.item_place_node return position of placed node (Bluebird)
  • Call on_secondary_use when object is right-clicked (sfan5)
  • CSM: Various fixes (sfan5)
  • Many pathfinder bugfixes and improvements (Wuzzy)
    • Fix failure to find path if start or end pos is over air (Wuzzy)
    • Fix very broken implementation of A* search (Wuzzy)
    • No longer jump through solid nodes (Wuzzy)
    • Return nil if start or end pos is solid (Wuzzy)
  • New set_sky, set_sun, set_moon and set_stars (Jordach)
  • Secure and document minetest.deserialize() (luk3yx)
  • minetest.get_content_id: throw error for unknown nodes (HybridDog)

Misc / Build

  • Don't install fonts on ENABLE_CLIENT=0 configurations (sfan5)
  • Fix memleaks in formspecs (SmallJoker)
  • Android: build fixes & compat fixes (MoNTE48, nerzhul)
  • Run luacheck in travis, add luacheck (rubenwardy)
  • Android: fix cyrillic characters (Maksim)
  • Various build issue fixes (Clang, Travis CI) (sfan5)

Minetest Game

  • Simple weather that varies the clouds (paramat)
  • More realistic boat physics (gang65)
  • Creative Inventory search: Item with exact match appears in first spot (sfan5)
  • Creative Inventory: More visual tweaks (Andrey2470T)
  • Improve player model animation (An0n3m0us)
  • Increase water opacity (lhofhansl)
  • Reset spawn position when bed is destroyed (Desour)
  • Papyrus now appears in rainforest swamps as well (paramat)
  • New/updated translations:
    • French (DrHackberrry)
    • Spanish (runsy)
    • Italian (h4ml3t)
    • Russian (Andrey2470T)
    • Swedish (Aresiel)
    • Malay (MuhdNurHidayat)
    • Chinese (zaoqi, IFRFSX)
  • Bugfix: TNT mod crashed when entities disappeared during explosion (sfan5)
  • Bugfix: Papyrus in savanna did not appear in 5.1.0, it has been added back (paramat)
  • Bugfix: Screwdriver was able to rotate torches into weird positions (An0n3m0us)
  • Bugfix: Players could be knocked back when attached (sfan5)

5.1.0 → 5.1.1

Released on 17 January 2020.

This release is based upon bugfixes from 5.2.0-dev.

Client / Audiovisuals

  • Fix player-bound sound playback (SmallJoker)
  • Fix item eat sound not played if last item (Wuzzy)

World / Server / Environment

  • Formspecs: Reset version number on rebuild (SmallJoker)
  • Rework packet receiving in ServerThread (sfan5)
  • Fix core.chat_format_message crashes (ClobberXD)
  • Fix spaces breaking formspec_version[] tag (rubenwardy)

Misc / Build

  • MacOS/BSD: Fix build issue due to conflicting s64 type definitions (AMDmi3)
  • Fix find_path for newer jsoncpp installations (vilhelmgray)
  • Update translations

5.0.1 → 5.1.0

Released on 12 October 2019.

Map generator

  • Mapgen Carpathian: Add optional rivers (paramat)
  • Move more dungeon parameter selection to mapgens (paramat)
  • Dungeons: Make multiple large rooms possible (paramat)

Client / Audiovisuals

  • Change pitch fly binding to 'P', add to change keys menu (rubenwardy)
  • Android settings: Use 'simple' leaves instead of 'fancy' (paramat)
  • Fix 3rd person selection range (srifqi)
  • Make scrollbars' bar variable in size (stujones11)
  • Damage: Play no damage sound when immortal (SmallJoker)
  • Increase upper limit of display_gamma to 10 (ClobberXD)
  • Optimize and unify mesh processing (Vitaliy)
  • Re-order mapgens in mainmenu and 'all settings' mapgen selection (paramat)
  • Scrollbars: Move directly to clicked pos if clicked into tray (DS-Minetest)
  • Fix broken attachments on join (SmallJoker)
  • Fix inventory_overlay for nodes without inventory_image (DS-Minetest)
  • Better F6 profiler (SmallJoker)
  • Fix minimap markers (theviper121)
  • Textures: Load base pack only as last fallback (SmallJoker)

Builtin (Lua / Media / Documentation)

  • Add /help formspec for commands and privileges (SmallJoker)
  • Lua API: Add link to Minetest Modding Book (ClobberXD)
  • Force item entities out of solid nodes (sfan5, based on Wuzzy`s work)
  • Lua API: Various fixes (DS-Minetest, SmallJoker)
  • Rename "private messages" to "direct messages" (Calinou)
  • Automatically enable depending mods in the dialogue (HybridDog)
  • All settings: Fix missing flags checkboxes (srifqi)

World / Server / Environment

  • Various network performance improvements (osjc)
  • Force send a mapblock to a player (sofar)
  • Revert ItemStacks being limited to the 'stack_size' value (ClobberXD)
  • Save forceloaded blocks file periodically (Thomas Rudin)
  • Improve ABM time budget handling (lhofhansl)
  • Group "immortal" also protects players from damage (Wuzzy)
  • Optimize usage of TOSERVER_GOTBLOCKS packet (sfan5)
  • Network: several bugfixes (sfan5)
  • Mapgen::spreadLight performance improvement (DS-Minetest)
  • Improve occlusion culling in corridors with additional check (sfan5)
  • Inventory: Delay dirty lists, and send changes incrementally (SmallJoker)
  • Other inventory bugfixes (sfan5, SmallJoker)
  • Move debug.txt after it grows too big (HybridDog)
  • Trigger on_place in many situations even if prediction failed (DS-Minetest)
  • Punchwear (improved) (sfan5)

Script API / Modding

  • Add deprecation warnings for ObjectRef:get/set_attribute (ClobberXD)
  • Nodedef 'drop' documentation: Improve (paramat)
  • Mark tool filtering in node drop documentation as deprecated (paramat)
  • Add node field to PlayerHPChangeReason table (pauloue)
  • Don't call on_hpchange callbacks if HP hasn't changed (ClobberXD)
  • Add disable_jump to liquids and ladders (SmallJoker)
  • Add support for 9-sliced backgrounds (rubenwardy)
  • Add compatible, consistent coordinate system to FormSpecs (v-rob)
  • Document ObjectRef:remove under Lua entity (ClobberXD)
  • Docs: Clarify where to check for 'protection_bypass' (SmallJoker)
  • Add vector.dot and vector.cross (HybridDog)
  • Improve documentation of mapgen aliases (paramat)
  • Remove debug.upvaluejoin to prevent leak of insecure environment (fluxionary)
  • Fix previously crashing minetest.get_craft_result() (pauloue)
  • Allow toolcaps to override the built-in times for dig_immediate (sfan5)
  • Formspec styling using style[] (rubenwardy)
  • Customizable chat message format (ClobberXD)
  • Velocity modifiers for players (sfan5)
  • Fix some issues with minetest.clear_craft (pauloue)
  • Add function `minetest.read_schematic` (paly2)
  • Formspecs: formspec_version[] element (SmallJoker)
  • Per-player FOV overrides and multipliers (ClobberXD)

Misc / Build

  • Find PostgreSQL correctly (adrido)
  • Add compatibility to vcpkg buildsystem (adrido)
  • Android: Use system provided path for default TMPFolder setting (stujones11)
  • Fix handling of --color and --worldlist command line arguments (mmattes)
  • Unified OpenGL ES support (sfan5)

Minetest Game

  • Added dry dirt and dry dirt with dry grass. Grass never spreads on dry dirt (paramat)
  • Savannas now have dry dirt and dry dirt with dry grass (paramat)
  • Added steel bar door and steel bar trap door
  • Added setting “enable_fence_tall” for fences that cannot be jumped over (mbartlett21)
  • Firefly in a bottle can now be placed into vessels shelf
  • Add flowing water sound
  • Underground biomes extend much deeper, down to Y=-255
  • Make the creative mod hand dig 'dig_immediate' nodes fast (paramat)
  • Add new TNT sounds (TumeniNodes)
  • Add missing infotext to nodes (An0n3m0us)
  • Added translation support
  • Added German, French, Spanish and Italian translations (Wuzzy, Hamlet, JDiaz, DrHackberry)

5.0.0 → 5.0.1

5.0.1 was released on March 31, 2019.

  • Fix detached inventory serialisation (rubenwardy)
  • Fix texture rotation for wallmounted nodeboxes (sfan5)
  • Fix build failing on some compilers (rubenwardy)
  • Warn about issues with the num_emerge_threads setting (paramat, sofar)
  • HPChange Reason: Fix issues with custom reasons (rubenwardy)
  • Fix FreeBSD build by handling std::time_t properly (rubenwardy)
  • Confirm registration GUI: Remove positional strings to fix Windows bug (paramat)
  • Prevent multi-line chat messages server-side (rubenwardy)
  • httpfetch: Disable IPv6 here too if requested by settings (sfan5)

0.4.16 → 5.0.0

Released March 4th


Note: 5.0.0 is based on 0.4.16, not 0.4.17. 0.4.17 was created by backporting changes from the development branch of 5.0.0

Highlights

  • Add online content repository (games, mods, modpacks, texture packs)
  • Add Carpathian mapgen
  • Automatic jumping
  • Android: Rewritten controls. Add joystick and modify up on-screen buttons
  • Mods and games can be translated
  • Rename 'subgame' to 'game'
  • Modding: More node drawtypes: disconnected nodeboxes (more ways to create connected blocks), plantlike_rooted (for underwater plants)
  • Modding: Custom player collision box
  • Modding: A great deal of new map generator features
  • Modding: Allow to rotate entities in all 3 axes

New Version Scheme

Basically, the leading 0 has been dropped. The version scheme was thus changed from

ZERO.MAJOR.MINOR.PATCH

(note: PATCH was left out when it was 0) to

MAJOR.MINOR.PATCH

.

This was chosen for a few reasons:

  • Shows that we aim to keep inter-version compatibility (which has mostly been the case since early 0.4.x)
  • Allows us to release patch/bug fix only releases without adding a silly 4th number
  • Doesn't imply that this version is the first stable/finished version as much as a 1.0.0 does.

For some context, read the issue that resulted in this change.

Breaking changes and deprecations

As a major release, 5.0.0 will break some mods written for 0.4.x versions. We tried to keep the breakages as small as possible whilst fixing long standing issues.

  • Minetest now uses C++11 instead of C++03, make sure you have a compatible system (Windows Vista, Debian 8, Ubuntu 16.04, CentOS 7, macOS 10.7, …)
  • Breaks network compatibility with 0.4.x. 0.4.x clients won't be able to connect to 5.x servers and vice-versa. Fix: update clients and servers to 5.x
  • Attachment and player positions have been shifted by 1 node, to allow support for custom player selection boxes. Fix: update default and player_api, subtract 10 from any attachment positions, shift the origin of player models to the feet
  • Formspec theming using prepended strings. This may cause wrong backgrounds to appear on formspecs. Fix: see https://forum.minetest.net/viewtopic.php?f=18&t=20646
  • depends.txt and description.txt have been deprecated. Fix: use description, depends, and optional_depends in mod.conf, game.conf, or texture_pack.conf instead
  • modpack.txt has been deprecated. Fix: rename to or add modpack.conf.
  • Use of deprecated methods such as object:setpos() is now warned about. Fix: replace them with correct functions
  • player:get/set_attribute() is now deprecated. Fix: use player:get_meta() instead
  • nodeupdate() was removed. Fix: replace with minetest.check_for_falling.
  • Clouds API: changed speed param from 'y' to 'z'
  • Player inventory list "hand" must now be manually initialized by mods (using set_size)
  • Some client-side scripting functions were removed (see below)

Note that a function being deprecated means that it still exists, but it may give a warning when used and may be removed in future. Deprecations are necessary to improve the consistency and efficiency of our API

Features

Games

  • Load a texture pack from the 'textures' subfolder of a game (red-001)

Map generators

  • Mapgen: Add Carpathian mapgen (Vaughan Lapsley)
  • Mapgen flags: Add 'biomes' global mapgen flag (paramat)
  • Dungeons: Add Y limits in all mapgens (paramat)
  • Dungeons: Add setting to prevent projecting dungeons (paramat)
  • Biomes: Add vertical biome blend (paramat)
  • Mgv7 floatlands: Add exponent parameter (paramat)

User interface

  • Add online content repository (mods, texture packs, mod packs, games) (rubenwardy)
  • Rename 'subgame' to 'game' (paramat)
  • Allow enter to select items from combobox's list (basicer)
  • Formspecs: Use mouse wheel to pick up and deposit single items (HybridDog)
  • Add player marker to both minimap types (nanoproject)
  • Delete world dialogue: Move buttons to avoid double click deletion (srifqi)
  • Add a refresh button to the server list (ThomasMonroe314)
  • Main menu: Change tabs to 'Start Game' and 'Join Game' (ThomasMonroe314)
  • Add password confirmation on new player registration (srifqi)
  • Adjust default console height (Ezhh)
  • Add coloured terminal output (HybridDog)
  • Add setting to display the itemstring after the tooltip in the inventory (DTA7)
  • Make world creation menu automatically generate a random world name (lisacvuk)
  • Change “Use” key name to “Special” (TeTpaAka)
  • Make number of maximum displayed chat messages configurable (Esteban)

Controls

  • Automatic jumping (bendeutsch)
  • Add pitch move mode, toggle with L key
  • Android: Rewritten controls. Add joystick and modify up on-screen buttons (srifqi)
  • More keys are changable in settings menu
  • Make direct item selection keys freely bindable via minetest.conf (Wuzzy)

World / server

  • Add setting for world start time, and change default to 5:15am (JRottm, paramat)
  • Allow for getting world name and path separately on the command line (Brian)
  • Add a server-sided way to remove color codes from incoming chat messages (red-001)
  • Object limits: Allow objects to exist outside the set 'mapgen limit' (paramat)

Chat commands and privileges

  • Add '/haspriv' chat command (ClobberXD)
  • Add '/kill' chat command (Wuzzy)
  • Remove 'zoom' privilege (zoom is now a player object property)
  • Do not grant all privileges to the admin - changes game behavior (lhofhansl)

Graphics

  • Fog effect when camera is inside cloud (bendeutsch)
  • Camera: Add and improve arm inertia (kilbith)
  • Update light decoding table size (numberZero)
  • New lighting curve (numberZero)
  • Add setting for near plane distance (basicer)
  • Add Android drivers to the video_driver drop-down menu (Wayward1)

Sounds

  • Sounds: Add falling node sounds (sofar)
  • Emit liquid sound if the player walks in liquid (juhdanad)
  • Play damage sound on player death (paramat)
  • Add mute setting (toggled by the mute key and in the volume menu) (DTA7)

Technical

  • Add support for authentication in an SQLite database (bendeutsch)
  • Add an optional readonly base database (lhofhansl)
  • Add crossview support (otdav33)
  • Optionally extend the active object in a players camera direction (lhofhansl)
  • Implement ability to set client node dig prediction result (sofar)

Misc.

  • Add check to pause game on lost window focus (rubenwardy)
  • Load files from subfolders in texture packs (numberZero)
  • Make HUD status messages translatable (Wuzzy)

Modding

  • Add on_mods_loaded callback (nerzhul)
  • MetaDataRef: Add contains() and get() (rubenwardy)
  • Allow dumping userdata (HybridDog)
  • Hint at problematic code when logging deprecated calls (sfan5)
  • Add minetest.rgba function that returns ColorString from RGBA or RGB values (Gael-de-Sailly)
  • World config: Add modpack descriptions (HybridDog)
  • get_node_drops: Make empty drop return empty table (tenplus1)
  • Add core.remove_detached_inventory (SmallJoker)
  • Add disable_repair group to prevent tool repair (Wuzzy)
  • clear_craft: Return false if recipe not found, don't throw error (paramat)
  • Fix string.split returning an empty table if string starts with sepearator (pyrollo)

Formspecs / HUD

  • Formspecs: Add tooltip element for area (rubenwardy)
  • Formspecs: Allow setting alpha value for the box[] element (Thomas--S)
  • Formspecs: Add an auto vertical scrollbar to the textarea (adelcoding1)
  • Formspecs: Add options to set background color and opacity (fullscreen mode + default mode) (nerzhul)
  • Formspecs: textarea with scrollbar improvements (adrido)
  • HUD: Make hud_get return alignment, offset and size. (lisacvuk)

Server-side

Metadata
  • Give games the ability to disallow specific mapgens (Ezhh)
  • Load mod dependencies and description from mod.conf (rubenwardy)
User interface
  • Add clientside translations. (Ekdohibs)
  • Add formspec theming using prepended strings (rubenwardy)
  • Zoom: Set zoom FOV per-player using a player object property (paramat)
  • Zoom: Move enabling zoom to a new player object property (paramat)
  • Minimap: Add new HUD flag for minimap radar mode (paramat)
Items
  • Allow overriding tool capabilities through itemstack metadata (raymoo)
  • Set placer to nil instead of a non-functional one in item_OnPlace (DTA7)
  • Overlays for wield and inventory images (juhdanad)
  • Make dropped items colorable (juhdanad)
  • Automatic item and node colorization (juhdanad)
  • Add eat sound (Wuzzy)
Nodes
  • Add slippery group for nodes (players/items slide) (Wuzzy)
  • Connected Nodeboxes: Add 'disconnected' boxes (Thomas--S)
  • Add callback to preserve node metadata as item metadata (ashtrayoz)
  • Add 'plantlike_rooted' drawtype (numberZero)
Objects/entities
  • ObjectRef: Add add_velocity() (HybridDog)
  • Allow damage for attached objects, add attach/detach callbacks (SmallJoker)
  • Optional alpha channel support for entities (stujones11)
  • Add static_save property to luaentites to not save them statically. (orwell96)
  • Object properties: Add 'glow', disables light's effect if negative (basicer)
  • core.get_objects_inside_radius: Omit removed objects (HybridDog)
  • Make entity selection and collision boxes independently settable (stujones11)
  • Add set_rotation/get_rotation to rotate entities in all 3 axes
Players
  • Customizeable max health and max breath for players (not persisted between server restarts) (SmallJoker)
  • Add reasons to on_dieplayer and on_hpchange (rubenwardy)
  • Add minetest.is_player (HybridDog)
  • Add on_grant and on_revoke callbacks (rubenwardy)
  • Player eye height: Make this a settable player object property (paramat)
  • Step height: Add as a player object property (paramat)
  • Player collisionbox: Make settable (TeTpaAka)
  • Add player inventory callbacks (SmallJoker)
Mapgen
  • Biomes: Add 'get_biome_name(biome_id)' API (paramat)
  • Biomes: Add 'min_pos'/'max_pos' xyz biome limits (paramat)
  • Biomes: Add decoration flags for underground decorations (paramat)
  • Biomes: Add function to deregister single biomes (zeuner)
  • Biomes / dungeons: Add biome-defined dungeon nodes (paramat)
  • Biomes / cavegen: Add definable cave liquid for a biome (paramat)
  • Biomes: Add 'get heat', 'get humidity', 'get biome data' APIs (paramat)
  • Biomes/decorations/ores: Make relative to 'water_level' setting (paramat)
  • Place schematic (on vmanip): Enable use of 'place center' flags (paramat)
  • Ores: Add stratum ore (paramat)
  • Stratum ore: Add option for a constant thickness stratum (paramat)
  • Stratum ore: Allow use with no noise for simple horizontal strata (paramat)
  • Simple decorations: Add 'param2_max' parameter for random param2 (paramat)
  • Schematic decorations: Add 'place_offset_y' placement parameter (paramat)
  • Decoration API: Add lightweight ability to have complete coverage (paramat)
  • Mgv6: Remove incorrectly defined and unused 'volume nodes' (paramat)
  • Mgv7: Add 'mount_zero_level' parameter (paramat)
  • Mgv7: Add option to repeat surface biomes in floatlands (paramat)
  • Mgvalleys: Make river depth variation and humidity drop optional (paramat)
  • CavesRandomWalk: Make 'lava_depth' a mapgen parameter (paramat)
  • Gennotify: Add 'minetest.get_decoration_id' API (paramat)
World
  • Spawn level: Add 'get_spawn_level(x, z)' API (paramat)
  • Add minetest.bulk_set_node call + optimize Environment::set_node call (nerzhul)
  • Implement minetest.register_can_bypass_userlimit (nerzhul)
Chat
  • Make the server status message customizable (SmallJoker)
  • Allow the join/leave message to be overridden by mods. (red-001)
Protection
  • is_area_protected: Rename from intersects_protection (SmallJoker)
  • Intersects_protection(): Move from Minetest Game to builtin (paramat)
Graphics and sounds
  • Real global textures (numberZero)
  • Clouds API: change speed from 'y' to 'z', ColorSpecs in Lua docs (bendeutsch)
  • In-cloud fog: Strengthen effect when small view range is used (lhofhansl)
  • Sound: Add pitch option (Rui-Minetest)
Utility features
  • Allow 'default' parameter in 'settings:get_bool' function (Jordan Irwin)
  • Add `on_auth_fail` callback (red-001)
  • Make core.auth_table private and structure builtin/auth.lua (sfan5)
  • Add sha1 to lua utils. (basicer)
  • Remove nodeupdate and nodeupdate_single (Rui-Minetest)
  • Expose getPointedThing to Lua (juhdanad)
  • Helper methods for hardware colorization (juhdanad)
  • httpfetch: Enable gzip support (sfan5)
  • Rename hasprivs command to haspriv (ezhh)

Client-side

  • Add flavour limits controlled by server (nerzhul)
  • Disallow exploitable clientside mod functions by default (paramat)
  • Rename CSM flavours to restrictions (SmallJoker)
  • Remove screenshot API (red-001)
  • Don't Load the package library (red-001)
  • Remove `on_connect` callback (red-001)
  • Add functions to create particles and particlespawners. (red-001)
  • Don't load the IO library. (red-001)
  • Add a way to get current locale from CSM (lisacvuk)
  • Add callback on open inventory (Dumbledor)
  • Implement mod communication channels (nerzhul)
  • Create a filesystem abstraction layer for CSM and only allow accessing files that are scanned into it. (red-001)
  • Add function to get player privileges (red-001)

Bug fixes and small improvements

Also a big thanks to paramat, ClobberXD, pauloue, gituser2194, lhofhansl, ashtrayoz, Wuzzy, and Ezhh for their contributions to documentation, in no particular order.

Critical

  • Fix crash caused by Lua error during startup (red-001)
  • Pointed_thing_to_face_pos: Avoid crash when player is inside a node (paramat)
  • Fix segfault in player migration and crash in log_deprecated (SmallJoker)
  • Fix crash guiConfirmRegistration quit menu (Vincent Glize)
  • Fix built-in inventory list crash when size = 0 (SmallJoker)
  • Fix a crash or random memory leak when resetting saved environment variable in test_servermodmanager.cpp (nerzhul)
  • Fix crash on can_bypass_userlimit returning non-boolean (rubenwardy)
  • Fix error if setting menu_last_game is not a valid game (nOOb3167)
  • Builtin: Fix handle_node_drops crash with nil digger (SmallJoker)
  • Fix issue Minetest crash when custom font path is not exist (srifqi)
  • Thread: fix a crash on Windows due to data race condition on Thread::m_start_finished_mutex (nerzhul)
  • Fix crash on revocation of removed privilege (rubenwardy)
  • Fix crash when using --go in command line (juozaspo)
  • Fix crash due to missing pointer validation (nerzhul)
  • Fix get_server_status() segfault due to uninitialized m_env (rubenwardy)

Build

  • Fix many Android build issues (nerzhul)
  • Fix i386 bit build at OpenBSD (mazocomp)
  • Fix compile error in OpenBSD (jcalve)
  • Fix MSVC compiling annoyances (adrido)
  • directiontables: Fix MSVC compiler error (adrido)
  • Fix MacOS builds (Pavel Puchkin)
  • Travis-ci build: fix osx jpeg installation failure, git ambiguous argument error (caused by merging commits) and add a workaround for travis commit range bug (juozaspo)

System-specific

  • Provide Xorg/net wm process ID (thoughtjigs)
  • Make os.tempfolder work correctly for MinGW & MSVC (nOOb3167)
  • Print error when HOME is not set (Midgard)
  • MacOS: don't require X11 libraries during compilation (D Tim Cummings)
  • Prevent Android from automatically locking display (Wayward1)
  • Windows: Cpack wix installer (adrido)

Rendering

  • Fix liquid bottoms not being rendered (numberZero)
  • Fix liquid post effect colour behaviour in third person view (red-001)
  • Fix dark liquids (numberZero)
  • Use crack animation on all tile layers (juhdanad)
  • Smoothed yaw rotation for objects (SmallJoker)
  • Disable shaders GUI on unsupported drivers (numberZero)
  • Fix missing ignore textures (HybridDog)
  • Make sure color returns to normal after a damage flash (lhofhansl)
  • Camera: Improve subpixel movement (SmallJoker)
  • Camera: Fix wieldmesh glitch after teleporting (kilbith)
  • upright_sprite: Fix texture position for players (SmallJoker)
  • Fix node-nodebox lighting difference in direct sunlight (numberZero)
  • Fix ambient occlusion and dark lines at mapblock borders (numberZero)
  • Don't recalculate statustext initial color every time & review fixes (nerzhul)
  • Clear colors when reading property info. Set vertex colors on upright_sprites. (basicer)
  • Fix items turning black (numberZero)
  • Fix dropped item look (HybridDog)
  • Fix item and wield meshes (numberZero)
  • Do not scale texture unless necessary. (lhofhansl)
  • Avoid filtering low-res textures for animated meshes (incl. players) (lhofhansl)
  • Reduce server FOV with forward speed (lhofhansl)
  • ParticleSpawner::step cleanup and rotation fix (SmallJoker)
  • Fix incorrect buffer size calculation on creation of HUD status messages (rubenwardy)
  • Particles: Do not add digging particles for airlike nodes (SmallJoker)
  • Fix animation frame_speed and blend loosing precision (sapier)
  • Fix undefined behaviour in arm movement when dividing by zero (nerzhul)
  • Fix render order of overlays (juhdanad)
  • Particles: Make collision with objects optional (paramat)
  • Fix stretched stars bug, change render order (Aspen)
  • Software inventorycube (Vitality)
  • Light curve: Simplify and improve code, fix darkened daytime sky (Vitality)
  • Smooth lighting: Fix light leaking through edge-connected corners (DTA7)
  • Darkness detection: Reduce chance of false positives darkening the skybox (lhofhansl)
  • Fix sky objects not rendering with OpenGL ES (stujones11)
  • Night clouds: Boost brightness for a moonlit appearence (paramat)
  • Night sky: Fix brightness threshold for applying night colours (paramat)

User interface

  • Fix debug and info text being the wrong color (rubenwardy)
  • Fix tooltip colors specified by formspec part (rubenwardy)
  • Make RTT display (F5 information) working correctly again (HybridDog)
  • Don't show Android edit dialog when tapping read-only field (srifqi)
  • Make sounds stop playing when entering game or mainmenu (nOOb3167)
  • Fix dancing text for formspec input fields (numberZero)
  • Chat: Remove prompt history duplicates (SmallJoker)
  • Statbars: fix incorrect half-images in non-standard orientations (Ekdohibs)
  • Advanced settings: Add range check for float type (srifqi)
  • Move the nametag back to the top of the player (TeTpaAka)
  • Chat: Move chat text down to not overlap 3rd line of debug text (paramat)
  • Fix console resize issue when changed game window (Ezhh, Zeno-)
  • Android buttons: Inset 'rare controls', inset and resize 'gear icon' (paramat)
  • Main menu: Clean up and improve advanced settings dialogues (SmallJoker)
  • Escape special characters when searching the server list (ChimneySwift)

Formspecs

  • Mitigate formspec exploits by verifying that the formspec was shown to the user by the server. (red-001)
  • Make container[] support fractional offsets (SmallJoker)
  • Remove accidental empty 'quit' field (SmallJoker)
  • Unify textarea and field parsing functions, fix wrong fallback text (SmallJoker)
  • Formspec verification: Fix show_formspec inside callbacks (SmallJoker
  • Fix wrong scrolling of formspec input fields (numberZero)
  • Inventory: Restrict access from too far away (SmallJoker)
  • Fix mousewheel behaviour in textarea (shivajiva101)
  • Fallback to 'label' in readonly textarea[] (backwards compatible) (SmallJoker)
  • Fix invalid background warning (SmallJoker)
  • Fix text clipped by scrollbars (random-geek)

Performance

  • Optimized MapBlock mesh generation (lhofhansl)
  • Optimize ABM checks (lhofhansl)
  • Fix bugs in networking which caused a performance loss (lhofhansl)
  • Builtin auth handler: Speed up file writing (SmallJoker)
  • Huge LBM lookup performance improvement on mapblock loading (nerzhul)
  • Fix last performance-type-promotion-in-math-fn problems (nerzhul)
  • Optimize a little bit isBlockInSight, adjustDist & collisions (nerzhul)
  • Line_of_sight: Improve using VoxelLineIterator (juhdanad)
  • Cache server config settings. (lhofhansl)
  • Very little performance fix on correctBlockNodeIds (nerzhul)
  • Don't search for locale folders if gettext is disabled (adrido)

Networking

  • Use server's zoom fov for distant world loading. (lhofhansl)
  • Fix ipv6_server=true not accepting IPv4 connections on Windows (sfan5)
  • Fix narrow/utf8 difference in incoming/outcoming messages (numberZero)
  • Fix day_night_ratio_do_override not being initialised server-side (rubenwardy)
  • Fix attached particle spawners far from spawn (raymoo)
  • Server: affect bind_addr on constructor instead of start() (nerzhul)
  • Network: Fix logging into older worlds with base64 hashes (SmallJoker)
  • Server: Calculate maximal total block sends dynamically (SmallJoker)
  • Have the server send the player list to the client (red-001)

Chat commands and privileges

  • Check if player exists on use of /privs (ClobberXD)
  • Reduce block load glitches (lhofhansl)
  • Make the /shutdown command work properly (dopik, SmallJoker)
  • Prevent /spawnentity from spawning unknown entity (Wuzzy)

World

  • Fix blocks written by VManip not being marked as modified (sfan5)
  • Set range of blocks to retrieve per roundtrip to 2. (lhofhansl)
  • Retrieve a small cone of blocks in the direction of the players velocity. (lhofhansl)

Map generator

  • Change mapgen order to ores > dungeons > decorations (paramat)
  • Biome API: Fix absent water decorations and dust, in deep water (paramat)
  • Biome-defined dungeon nodes: Use faster biome calculation (paramat)
  • Biomemap: Avoid empty biomemap entry to fix failing biome dust (paramat)
  • Biomes: Fix vertical biome blend (paramat)
  • Biome dust node: Only place on 'walkable' cubic non-liquid drawtypes (paramat)
  • Biome generation: Fix layers of 'filler' nodes at biome y limits (paramat)
  • Mgv5: Make spawn position search more reliable (paramat)
  • Mgv6 mudflow: Avoid partially removed stacked decorations (paramat)
  • Mgv7: Raise spawn point by 1 node for no mountain case (paramat)
  • Mgv7: Avoid rivergen removing mod-placed nodes when overgenerating (paramat)
  • Mgv7: Avoid divide-by-zero errors (paramat)
  • Mgv7: Fix undefined 'float_mount_height' (paramat)
  • Mgfractal: Improve spawning behaviour (paramat)
  • Mgv5/v7/fractal: Add 'large_cave_depth' parameter to replace fixed value (paramat)
  • Fix Mapgen Valleys getSpawnLevelAtPoint() (Treer)
  • Vein ore: Fix bug caused by changing perlinmap Y size (paramat)
  • Schematic decorations: Fix placement bug when centered and rotated (paramat)
  • Simple decorations: Make 'place_offset_y' usable with simple decorations (paramat)
  • Dungeons: Fix duplication of y limit parameters (paramat)
  • Dungeons: Mostly fix missing stair nodes (paramat)
  • Dungeons: Avoid generation in multiple liquid nodes and 'airlike' (paramat)
  • Dungeons: Use biome 'node_stone' if normal stone types not detected (paramat)
  • Cavegen: Fix errors when getting biome outside mapchunk (paramat)
  • Cavegen: Re-order generation to fix cavern bug (paramat)
  • Cavegen: Avoid unsupported biome 'top' or 'filler' nodes (paramat)
  • valleys mapgen: Fixed submarine valleys shape (Gael-de-Sailly)
  • settingtypes.txt: Fix valleys dungeon ymax error (paramat)
  • L-system: Fix leaves cutting through stems (HybridDog)

Items and nodes

  • Pointed thing to face pos: Use 'eye height' object property (paramat)
  • Ensure no item stack is being held before crafting (Luis Cáceres)
  • core.rotate_node: Run callbacks like with any regular placed node (SmallJoker)
  • Don't try to craft a non-existent item (Esteban)
  • Fix rotated node placement (tenplus1)
  • Item drop: Tune to land exactly 2 nodes away with level view (paramat)
  • Check item_drop amount clientside (rubenwardy)
  • Fix Android node selection distance (juhdanad)
  • Safe digging and placing (bendeutsch)
  • Fix for empty key/value when reading item string with wear but no metadata (Jesse McDonald)
  • Inventory: Fix wrong stack size behaviour and item loss (SmallJoker)

Objects/entities

  • Fix objects colliding with their children (SmallJoker)
  • core.spawn_falling_node: Keep metadata (SmallJoker)
  • Collision engine: Collide with 'ignore' nodes (paramat)
  • falling.lua: Delete falling node entities on contact with 'ignore' (paramat)
  • Position entity nametags relative to selection-box (stujones11)
  • Damage: Remove damage ignore timer (SmallJoker)
  • Item entities: Enable item collision detection for sudden movement (DTA7)
  • Ease selection of entities behind nodes (SmallJoker)
  • Object properties: Fix loss of custom selectionbox when it's not updated (SmallJoker)
  • GenericCAO: Fix light position for non-players, remove deprecated initialisation code (SmallJoker)
  • GenericCAO: Fix dark model below y = 0 (paramat)
  • CAO footstep sounds: Reduce gain to balance volume (paramat)

Players

  • Make player liquid speed independent of FPS (paramat)
  • Run detach callbacks on player leave (SmallJoker)
  • Localplayer: Fix disable_jump effect and getStandingNodePos() (SmallJoker)
  • Android stepheight: Only increase if 'touching ground' (paramat)
  • Respect object property hp_max field for players (SmallJoker)
  • Do not add base position to player selection box (stujones11)
  • Abort if static_spawnpoint is an invalid setting instead of just giving an error log (HybridDog)
  • Fix error not printed to console when no name is provided (juozaspo)
  • Fix player coordinate rounding in collisionMoveSimple() (JRottm)
  • Sneak: Stripped down version (SmallJoker)
  • (Re)spawn players within 'mapgen_limit' (paramat)
  • Stop autoforward on BACKWARD key-press (tukkek)
  • Apply physics overrides correctly during anticheat calculations (sfan5)

Modding

  • Fix builtin Lua function os.tempfolder (nOOb3167)
  • Fix isNan check for object:set_yaw(..) (nerzhul)
  • Fix LuaJIT include directory not being found (rubenwardy)
  • Check argument types inside MetaDataRef Lua API (sfan5)
  • Fix buffer parameter not working in LuaPerlinNoiseMap::l_getMapSlice() (pgimeno)
  • Fix naming conventions of noise userdata (rubenwardy)
  • Fix rounding error in g/set_node caused by truncation to float (rubenwardy)
  • Vector fun
  • CAO footstep sounds: Reduce gain to balance volume (paramat)aramat)
  • Fix default item callbacks to work with nil users (raymoo)
  • on_death: Fix callback number of pushed arguments (SmallJoker)
  • Fix core.wrap_text and make its behaviour consistent with the docs (sfan5)
  • Trigger on_rightclick regardless on the formspec meta field (SmallJoker)
  • LBM: use range based for and fixed a loop variable overloading in applyLBMs (nerzhul)
  • Fix deserialization of ItemDefinition (Rui-Minetest)
  • Plantlike meshoptions: Fix inverted random vertical offset (numberZero)
  • Player hand list: require init by mods (SmallJoker)

Debug

  • Fix missing logs from warningstream (or similar) (HybridDog)
  • Fix off-by-one in log output line length (pgimeno)
  • Profiler: Fix var args not being passed to callback register function (rubenwardy)

Internal / code quality

  • Add a MSVC / Windows compatible snprintf function (nOOb3167)
  • Fix memory leaks in mod storage (nerzhul, red-001)
  • Fix rtt >= 0.0f assertion and free_move crash (SmallJoker)
  • Global new() or grab() to be managed in constructor only (JDCodeIt)
  • Node resolver: Make error on fallback optional, disable for mapgen aliases (paramat)
  • FOV: Raise lower limit to avoid zoom-loading of distant world (paramat)
  • Fix many issues reported by clang-tidy (nerzhul)
  • Fix various clang-tidy reported performance-type-promotion-in-math-fn (nerzhul)
  • Selected ItemStack: Reduce black magic and improve the stack swapping behavior (SmallJoker)
  • core.rotate_node: Do not trigger after_place_node (SmallJoker)
  • Sound: fix static initialization order dependency by not having one (nOOb3167)
  • Fix various Client class functions not marked as override (virtual) (nerzhul)
  • Guard sound manager initialization with "enable_sound" (nOOb3167)
  • Fix an alone if to be with a missing else (nerzhul)
  • Drop texture file list cache (numberZero)
  • Variable name fix + structure creation unrolling in lighting code (nerzhul)
  • getv3intfield: Fix logic of return bool (paramat)
  • Generate Notifier: Clear events once after all 'on generated' functions (paramat)
  • Fix Wstringop-overflow warning from util/srp.cpp (HybridDog)
  • Tool getDigParams: Fix selecting the best fitting time (HybridDog)
  • Fix undefined behaviour on getting pointer to data in empty vector (nOOb3167)
  • Use Irrlicht's mesh cache for animated meshes. (lhofhansl)
  • Shut down mapgen threads before other shutdown tasks (raymoo)
  • Allow zoom to actually show more data. (lhofhansl)
  • Make use of safe file writing in auth handler (sfan5)
  • Fix inventory drag drop flag (asl97)
  • Fix strict_protocol_version_checking functionality after ee9a442 (SmallJoker)
  • Fix empty legacy meta being persisted (rubenwardy)
  • Lint fix on localplayer.h (nerzhul)
  • Sort box corners correctly (Thomas--S)
  • Remove unused Map::getDayNightDiff + fix one undefined variable in mapblock.cpp (nerzhul)
  • Check node updates whether the blocks are known (SmallJoker)
  • Really delete things in fs::RecursiveDelete (Vitality)
  • Disable HW stereo for IrrLicht 1.9 (numberZero)

Misc.

  • Fix for translating empty strings (minduser00)
  • Positional sound: Limit volume when closer than 1 node (paramat)
  • Change the server description after a search (Dumbledor)
  • Fix no sound bug (Rui-Minetest)

Other / Misc

  • Version scheme change: 0.5.0 -> 5.0.0 (nerzhul)
  • Move ASCII art to std::cerr, to remove it from logs (rubenwardy)
  • PlayerSettings struct for player movement code (bendeutsch)
  • Client eventmanager refactor (nerzhul)
  • Update mesh collector and move it to a separate file (numberZero)
  • Add Voxelarea unittests (nerzhul)
  • VoxelArea: add_{x,y,z,p} must be static (nerzhul)
  • Cleanup in flat lighting (numberZero)
  • Node definition manager refactor (juhdanad)
  • Move 'setlocale' from Lua to C++. (red-001)
  • Rewrite rendering engine (numberZero)
  • Improve the path select GUI (red-001)

Older versions (pre-5.0.0)

If you want to see older versions (older than 5.0.0), please go to this page.