aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Add group-based tool filtering for node drops (#10141)Treer2021-08-272-3/+46
| | | | | | Supports both AND and OR requirements, e.g. * "a tool that's in any of these groups" * "a tool that's in all of these groups"
* Optimize vector length calculations (#11549)Lean Rada2021-08-272-10/+3
|
* Add debian 11 to Gitlab-CI (#11571)Loïc Blot2021-08-272-2/+29
| | | | * feat(gitlab-ci): add debian 11 support
* fix: update to alpine 3.14 (#11570)Loïc Blot2021-08-241-2/+2
|
* Set policies through CMake 3.9 to allow enabling IPO (#11560)JosiahWI2021-08-231-0/+7
|
* Fix 6th line of infotext being cut off in half (#11456)Wuzzy2021-08-232-5/+10
|
* Inventory: Fix rare out-of-bounds accessSmallJoker2021-08-231-4/+12
| | | Co-authored-by: Thomas--S <info@thomas-stangl.de>
* Use utf-8 for the Irrlicht clipboard (#11538)DS2021-08-232-11/+9
|
* Fix server-only builds on older CMake versions (#11566)sfan52021-08-231-3/+5
| | | closes #11564
* HUD: Reject and warn on invalid stat types (#11548)SmallJoker2021-08-217-44/+86
| | | | This comes into play on older servers which do not know the "stat" type. Warnings are only logged once to avoid spam within globalstep callbacks
* Allow lib/irrlichtmt to work for server builds (headers-only)sfan52021-08-211-7/+13
|
* Show status message when changing block bounds (#11556)Wuzzy2021-08-213-12/+30
|
* Validate staticdata and object property length limits (#11511)sfan52021-08-194-1/+61
| | | | | | Some games provide users with enough freedom to create items with metadata longer than 64KB, preventing this from causing issues is on them but we'll still do the minimum not to abort the server if this happens.
* Fix scaled world-aligned textures being aligned inconsistently for ↵Wuzzy2021-08-191-7/+7
| | | | non-normal drawtypes
* Add fwgettext util functionrubenwardy2021-08-195-38/+35
|
* Fix inconsistent integer comparison warningsSmallJoker2021-08-172-5/+5
|
* Clarify the meaning of "rightclick"/"use" in documentation (#11471)Wuzzy2021-08-161-7/+16
|
* Start sprite animation at the beginning (#11509)Lean Rada2021-08-161-0/+1
| | | When setting a sprite animation, do not keep the last animation's frame number. Setting a new animation should start the animation at the start of the new animation.
* Cap iterations of imageCleanTransparent sanelysfan52021-08-161-2/+7
| | | | fixes #11513 performance regression with 256x textures
* Fix access violation in create_schematic() (#11534)Treer2021-08-161-2/+3
| | | | | fixes #11533 Schematics saved from y locations greater than 0 would cause an access violation if layer probabilities were specified
* Fix segfault caused by shadow map on exitSmallJoker2021-08-121-3/+3
|
* Add disable_settings to game.conf to get rid of "Enable Damage"/"Creative ↵Hugues Ross2021-08-122-13/+89
| | | | | | | | | Mode"/"Host Server" checkboxes (#11524) This adds support for disable_settings to game.conf. In this you can specify a list of settings that should not be visible in the "local game" (or however it is called nowadays) tab. Enable Damage, Creative Mode and Host Server are supported. Co-authored-by: Wuzzy <Wuzzy2@mail.ru> Co-authored-by: Aaron Suen <warr1024@gmail.com> Co-authored-by: rubenwardy <rw@rubenwardy.com>
* Move updating shadows outside of RenderingCore::drawAll. (#11491)x20482021-08-127-66/+65
| | | | Fixes indirect rendering modes such as some 3D modes mentioned in #11437 and undersampled rendering. Does not fully fix anaglyph 3d mode.
* Fix a segfault caused by wrong textdomain lines in translation files (#11530)DS2021-08-121-1/+7
| | | | | | * The problem were lines like these: "# textdomain:" * str_split does not add an empty last part if there is a delimiter at the end, but this was probably assumed here.
* Remove statement semicolons from a lua scripthecks2021-08-091-3/+3
|
* Fix GUIEditBoxWithScrollBar using a smaller steps than intlGUIEditBox (#11519)DS2021-08-082-4/+13
|
* Gettext support on Android (#11435)Pevernow2021-08-086-6/+23
| | | | Co-authored-by: sfan5 <sfan5@live.de> Co-authored-by: =?UTF-8?q?Olivier=20Samyn=20=F0=9F=8E=BB?= <code@oleastre.be>
* OpenAL: Free buffers on quitSmallJoker2021-08-031-0/+8
|
* ContentDB: Add support for package aliases / renaming (#11484)rubenwardy2021-08-021-3/+17
|
* Mods: Combine mod loading checks and deprection logging (#11503)SmallJoker2021-07-314-29/+34
| | | | This limits the logged deprecation messages to the mods that are loaded Unifies the mod naming convention check for CSM & SSM
* Fix /emergeblocks crashing in debug builds (#11461)Wuzzy2021-07-315-24/+29
| | | The reason for the bug was an u16 overflow, thus failing the assert. This only happened in Debug build but not in Release builds.
* Update IrrlichtMt-related stuff in READMEsfan52021-07-311-4/+4
|
* Remove unsupported formats from the media enumeratorhecks2021-07-291-3/+2
|
* Remove unsupported extensions from list in tile.cpphecktest2021-07-291-6/+2
|
* Add a simple PNG image encoder with Lua API (#11485)hecks2021-07-299-1/+278
| | | | | | | | | * Add a simple PNG image encoder with Lua API Add ColorSpec to RGBA converter Make a safety wrapper for the encoder Create devtest examples Co-authored-by: hecktest <> Co-authored-by: sfan5 <sfan5@live.de>
* buildbot: Readd missing IrrlichtMt DLLssfan52021-07-272-0/+2
|
* Add bold, italic and monospace font styling for HUD text elements (#11478)sfan52021-07-2712-24/+127
| | | Co-authored-by: Elias Fleckenstein <eliasfleckenstein@web.de>
* Take advantage of IrrlichtMt CMake target (#11287)JosiahWI2021-07-279-140/+62
| | | | With the CMake changes to IrrlichtMt, it's now possible to use a target for IrrlichtMt. Besides greatly improving the ease of setting up IrrlichtMt for users building the client, it removes the need for Minetest's CMake to include transitive dependencies such as image libraries, cleaning it up a tiny bit. The PR works by finding the IrrlichtMt package and linking to the target it provides. If the package isn't found and it isn't building the client, it will still fall back to using just the headers of old Irrlicht or IrrlichtMt.
* Improve documentation of tools (#11128)Wuzzy2021-07-271-62/+122
|
* ContentDB: Add reason to downloads (#10876)rubenwardy2021-07-271-15/+26
|
* Distribute shadow map update over multiple frames to reduce stutter (#11422)x20482021-07-2510-73/+225
| | | | | | | | | | Reduces stutter and freezes when playing. * Maintains double SM and SM Color textures * Light frustum update triggers incremental generation of shadow map into secondary 'future' textures. * Every incremental update renders a portion of the shadow draw list (split equally). * After defined number of frames (currently, 4), 'future' and 'current' textures are swapped, and DirectionalLight 'commits' the new frustum to use when rendering shadows on screen. Co-authored-by: sfan5 <sfan5@live.de>
* Add smooth light-shadow transition at noon (#11430)x20482021-07-251-2/+2
| | | | Node faces with normals pointing East/West (+X/-X) will transition between light and shadow at noon. This code makes the transition smooth.
* Document glasslikeliquidlevel merge bits (#11479)random-geek2021-07-251-6/+11
|
* Remove unused ITextSceneNode header (#11476)hecks2021-07-221-1/+0
| | | Co-authored-by: hecktest <>
* Remove unused header includeshecks2021-07-213-4/+0
|
* Fix no locales being generated when APPLY_LOCALE_BLACKLIST=0sfan52021-07-201-2/+3
| | | | Also enable `ky` which appears to work fine.
* CSM: Do not index files within hidden directoriesSmallJoker2021-07-171-0/+3
| | | | CSM would previously scan for files within .git or .svn directories, and also special files such as .gitignore
* Add wallmounted support for plantlike and plantlike_rooted nodes (#11379)Wuzzy2021-07-159-7/+90
|
* Fix documented default colors for set_skyHugues Ross2021-07-141-3/+3
|
* Remove hardcoded "You died." message in chat (#11443)Wuzzy2021-07-121-1/+0
|