Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-09 | Fix Minetest blaming the wrong mod for errors (#12241) | Lars Müller | |
Covers the case where mods insert their callbacks manually into "minetest.registered_<callbacks>" (often to achieve a particular order of execution). | |||
2022-05-08 | item_entity: Cache collisionbox for use in on_step | sfan5 | |
I don't have absolute numbers but if calls to get_properties() take up 30%+ of on_step() execution time that's bound to matter. | |||
2022-05-08 | Remove unused variable WARN_INIT | Zughy | |
2022-05-08 | Enable dependencies when enabling modpacks (#12202) | Jude Melton-Houghton | |
2022-05-08 | Fix enabling of dependencies with identical names (#12253) | Jude Melton-Houghton | |
2022-05-08 | Fix mods not being recursively enabled | rubenwardy | |
Fixes #12290 | |||
2022-05-07 | Fix texture packs showing as "Nil (enabled)" in Content tab | rubenwardy | |
Fixes #12285 | |||
2022-05-06 | Enable chat clickable weblinks by default (#12115) | Froggo | |
Co-authored-by: rubenwardy <rw@rubenwardy.com> | |||
2022-05-04 | Make logging cost free when there is no output target (#12247) | paradust7 | |
The logging streams now do almost no work when there is no output target for them. For example, if LL_VERBOSE has no output targets, then `verbosestream << x` will return a StreamProxy with a null target. Any further `<<` operations applied to it will do nothing. | |||
2022-05-04 | Add vector.combine (#11920) | Lars Müller | |
2022-05-03 | ContentDB: Fix ungraceful crash on aliases when list download fails | rubenwardy | |
Fixes #12267 and fixes #12154 | |||
2022-05-02 | Async environment for mods to do concurrent tasks (#11131) | sfan5 | |
2022-05-02 | Reorganize some builtin functions in preparation for async env | sfan5 | |
2022-04-28 | Apply disallow_empty_password to password changes too | sfan5 | |
2022-04-24 | Fix texture packs not showing as enabled in mainmenu | rubenwardy | |
Fixes #12219 | |||
2022-04-24 | Fix invalid queued package element and path (#12218) | Alex | |
2022-04-24 | Use mod names/titles instead of technical names (#12192) | olive | |
2022-04-24 | Builtin: Allow to revoke unknown privileges | SmallJoker | |
2022-04-16 | Send chat error when attemping to /set a secure setting (#12193) | olive | |
Attempting to /set a secure setting will now say that is disallowed. Previously this would shut down the server. Reading secure settings via /set is still allowed. | |||
2022-04-10 | Fix item entity Z-fighting | Lars Mueller | |
2022-04-08 | Fix typo and update settings files | ShadowNinja | |
2022-04-08 | Fix spaces generated by settings file generator | ShadowNinja | |
2022-04-02 | Add depth sorting for node faces (#11696) | x2048 | |
Use BSP tree to order transparent triangles https://en.wikipedia.org/wiki/Binary_space_partitioning | |||
2022-04-01 | Avoid negation of comparison operator (luacheck warning) | Dmitry Kostenko | |
2022-03-31 | Tune shadow perspective distortion (#12146) | x2048 | |
* Pass perspective distortion parameters as uniforms * Set all perspective bias parameters via ShadowRenderer * Recalibrate perspective distortion and shadow range to render less shadow geometry with the same quality and observed shadow distance | |||
2022-03-29 | Store vector metatable in registry | Jude Melton-Houghton | |
2022-03-26 | Add API to control shadow intensity from the game/mod (#11944) | x2048 | |
* Also Disable shadows when sun/moon is hidden. Fixes #11972. | |||
2022-03-05 | Allow get_sky to return a table (#11963) | Zughy | |
2022-02-24 | Fix broken dependency enabling due to missing `enabled` field (#12093) | rubenwardy | |
2022-02-12 | Apply texture pack main menu textures immediately (#12018) | ROllerozxa | |
2022-02-12 | Add support for 'seed' in disallow_mapgen_settings (#12023) | Wuzzy | |
2022-02-08 | Increase max objects per block defaults (#12055) | Lars Müller | |
2022-02-08 | Noise params serialization fixup | Gaël C | |
2022-02-04 | Fix types of get_mapgen_setting_noiseparams (#12025) | Lars Müller | |
2022-01-31 | Revert "Disable dynamic shadows for the 5.5.0 release" (#12032) | rubenwardy | |
2022-01-31 | Fix builtin statbar backgrounds | Lars Mueller | |
see #12000 | |||
2022-01-30 | Use virtual paths to specify exact mod to enable (#11784) | rubenwardy | |
2022-01-30 | Update credits for 5.5.0 release (#12001) | sfan5 | |
2022-01-30 | Get rid of `basic_debug` last minute | sfan5 | |
This isn't a revert but rather just disables the codepaths. also see #12011 | |||
2022-01-30 | Update German builtin translation | Wuzzy | |
2022-01-30 | Update builtin translation templates | Wuzzy | |
2022-01-30 | Fix Minetest logo when installed system-wide | ROllerozxa | |
2022-01-30 | Raise max mapgen limit constant to align with mapblock size | sfan5 | |
2022-01-29 | Disable dynamic shadows for the 5.5.0 release | SmallJoker | |
The dynamic shadows are yet not in the desired state to justify the inclusion into version 5.5.0. A stable release is long overdue, hence this allows fixes to continue in 5.6.0-dev to finally release an acceptable version of the dynamic shadows feature. Reverting this commit is highly recommended to proceed in development. | |||
2022-01-27 | Builtin: Sanity-check /time inputs (#11993) | SmallJoker | |
This enforces the documented bounds for the /time command. | |||
2022-01-19 | Free arguments of cancelled minetest.after() jobs | sfan5 | |
2022-01-19 | Main menu: Fix automatic dependency enables on doubleclick | SmallJoker | |
When mods were toggled by double-click, the hard dependencies were no longer enabled automatically. However, the 'Enabled' checkbox did still work. This commit restores the behaviour as seen before commit c401a06 | |||
2022-01-09 | Mainmenu game-related changes (#11887) | sfan5 | |
fixes: * Switching between games does not immediately hide creative mode / damage buttons if so specified * World creation menu has a game selection list even though the menu already provides a gamebar * Showing gameid in world list is unnecessary * Choice of mapgen parameters in menu persists between games (and was half-broken) | |||
2022-01-08 | Fully remove bitmap font support (#11863) | sfan5 | |
Freetype is now a build requirement. | |||
2022-01-02 | Fix vector.from_string returning a table without vector metatable | Desour | |