aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Replace Wieldmesh::setItem assertion that could be triggered by the server ↵kwolekr2015-05-081-2/+7
| | | | with an error
* Fix release build warningest312015-05-081-0/+1
|
* Fix compilation for non-client builds, and fix signed comparison warningkwolekr2015-05-082-2/+3
|
* Tests: Add schematic unittestskwolekr2015-05-088-32/+329
| | | | | Improve schematic file-saving interface Add ability to create temporary test files
* Gracefully handle PacketErrorsest312015-05-081-2/+5
|
* Fix missing Y component assignment in check_v3fkwolekr2015-05-081-1/+1
|
* Conf.example: Update recommended maximum cloud radius to 26paramat2015-05-081-1/+1
|
* Remove duplicate lua_getfield() in c_converter.cppKevin Ott2015-05-071-1/+0
| | | | Fixes #2678
* Schematics: Add indent-with-space option for schematic Lua table serializationkwolekr2015-05-074-13/+22
|
* NodeResolver: Remove NodeResolveMethodkwolekr2015-05-079-169/+103
| | | | This simplifies NodeResolver logic and makes some interfaces cleaner.
* Fix connection speed unit namesShadowNinja2015-05-061-3/+3
|
* Fix error messages for type-checking Lua reading functionsShadowNinja2015-05-061-17/+40
|
* Improve Redis error messagesShadowNinja2015-05-061-14/+25
|
* Fix build on Debian broken by b45df9d (missing include, somehow?)kwolekr2015-05-051-0/+1
|
* NodeDefManager: Improve const-correctness of interfaceskwolekr2015-05-053-48/+46
| | | | | | - Add ability to explicitly reset NodeResolve state (useful for unittesting) - Remove non-essential NodeResolve methods modifying state from INodeDefManager - Add const qualifier to NodeDefManager and ContentFeatures serialize
* Add core.find_nodes_with_meta() script APIkwolekr2015-05-057-20/+89
|
* Tests: Add NodeResolver unittestskwolekr2015-05-058-25/+349
| | | | | | Minor misc. NodeResolver cleanups Prefix faux content type constants for testing with t_ to avoid confusion or name collisions
* Make Git version detection use VERSION_STRING instead of tagsShadowNinja2015-05-054-19/+38
| | | | | | | | | | This fixes the problem where 0.4.12-dev versions were erroneously shown as 0.4.11-dev because the tag was added on a separate branch. It also fixes a similar issue when builders didn't fetch new tags when updating. This also removes the number-of-commits-since-tag field, since it's incompatible with this. Said field doesn't seem to be useful anyway if you have the commit hash.
* Fix GCC compiler warningShadowNinja2015-05-041-2/+2
|
* Stop NetworkPacket methods from producing bloated packetsJay Arndt2015-05-052-19/+7
|
* Update Turkish LanguageMahmut Elmas2015-05-051-58/+233
| | | | | Added some new translations Fixed some overlenght lines
* Cache enable_3d_clouds flagest312015-05-042-3/+5
| | | | Small improvement on clouds rendering performance
* Clouds: Make cloud area radius settable in .confparamat2015-05-044-22/+28
|
* Add a check for animation when getting an extruded meshKevin Ott2015-05-042-5/+11
| | | | Fixes issue #2667
* Fix pathfinder to produce more useful pathsobneq2015-05-031-18/+7
| | | | | - Fix unintended negation of condition - Remove line_of_sight 'optimization'
* Tests: Add ObjDef unittestskwolekr2015-05-033-0/+109
|
* ObjDefManager: Set replacement object's handle info after calling set()kwolekr2015-05-032-3/+15
| | | | | Make gamedef optional when constructing an ObjDefManager Add note about object ownership
* Better version detection for shallow clonesest312015-05-031-2/+11
|
* RotateAlongYAxis: For facedir case, return if param2 >= 4paramat2015-05-031-0/+3
|
* Add .patch files to gitignoreest312015-05-011-0/+3
|
* Fix several MSVC issues numeric.hSmallJoker2015-05-013-2/+16
| | | | | -> Round negative numbers correctly CMakeLists.txt -> Link Json with the static run-time library
* Fix MSVC compatibilitykwolekr2015-04-294-20/+14
| | | | | | Make sure to include random unittests in android builds, too Use SWAP() macro Ensure that negative ranges are tested as well in random unittests
* Tests: Add random unittestskwolekr2015-04-293-1/+279
|
* Add Russian comment translation to minetest.desktopmich12015-04-271-0/+1
|
* Revert the upper-case PROJECT_NAME nonsense that was part of #2402sfan52015-04-2713-52/+53
|
* Revert "Only lowercase project name at compile time"sfan52015-04-274-11/+11
| | | | This reverts commit 3be9787e64362b8a5020746220c65abbe31f8097.
* Noise: Fix PcgRandom::randNormalDist() when range contains negative numberskwolekr2015-04-271-1/+1
| | | | | This fixes an issue with erroneous float-to-int rounding that resulted in truncation toward 0, causing a biased distribution.
* Replace PRNG assertions with PrngExceptionkwolekr2015-04-273-4/+13
|
* Fix minetest.clear_* creating new LOCAL table instead of clearing the ↵Tomas Brod2015-04-261-1/+3
| | | | | | | | | | | existing one. On calling clear_redistered_biomes the registered_biomes table is cleared by creating a new empty table, but the pointer is not updated to point to the new one. So after calling more register_biome, the registered_biome table always contains 0 items, which is an error. Instead, the table is cleared by removing all its items so the pointer (minetest.registered_*) remains valid.
* Update .gitignorekwolekr2015-04-261-0/+4
|
* Remove craftdef serialisationest312015-04-262-177/+2
| | | | | It isn't needed anymore, sending ICraftDefManager over the network has been obsoleted by protocol version 7.
* Craftdef refactorest312015-04-261-268/+217
| | | | | Fix style, refactor assert, use '"' instead of "\"", replace code duplicating craftGetItemName, rename iterators.
* Tests: Modularize unit testingkwolekr2015-04-2625-2502/+3402
| | | | | | Split unit tests into separate files under src/unittest/ Give better unittest diagnostics Clean up some code
* Update chinese translationfishyWET2015-04-271-58/+58
| | | | fixed some mistakes and added in some new translations
* Fix fast leaves with texture_clean_transparent enabled.Aaron Suen2015-04-262-17/+37
|
* Fix player pitch and yaw not being set properlyKevin Ott2015-04-261-1/+1
|
* Remove fly mode in simple main menuMuhammad Rifqi Priyo Susanto2015-04-261-13/+6
| | | | As the fly mode option is avaiable in-game, this is not used anymore.
* German translation: shorter setting nameest312015-04-241-1/+1
|
* Remove unused variable Client::m_active_blocksnerzhul2015-04-241-1/+0
|
* DecoSchematic: Fix missing trees in rough terrainparamat2015-04-231-12/+9
| | | | | | Move place_on check to before place_center_x/y/z displacement of p Reduce displacement of p by place_center_x/y/z flags to correctly position schematics