Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix build with libstdc++ | kwolekr | 2015-05-19 | 1 | -0/+2 | |
| | | | | libstdc++ doesn't include <cstring> inside of <string>, unlike libc++. | |||||
* | Split ObjDef/ObjDefManager out to objdef.cpp | kwolekr | 2015-05-18 | 10 | -247/+297 | |
| | ||||||
* | Lower log level for unexpected behaviour | est31 | 2015-05-19 | 2 | -8/+8 | |
| | | | | | Its a possible mistake to log in to a server with twice the same name. Before, it triggered a server wide error message, now it logs to actionstream. | |||||
* | Enforce hiding nametag | est31 | 2015-05-18 | 1 | -0/+5 | |
| | | | | | Work around irrlicht bug and hide nametag if its alpha is set to 0. Thanks @TeTpaAka for pointing out workaround. | |||||
* | Make nametags white again | est31 | 2015-05-18 | 1 | -4/+6 | |
| | | | | | | | | Commit 11a96e4901ce54c4646e47866f7a66cd9034c16b commented out version parsing, resulting in the version byte being parsed as part of the color, making nametags dark grey. Re-introduces version parsing and ignores the packet if the version is more recent than ours, fixing the unused variable warning (should have been done anyway). | |||||
* | Fix null dereference when loading schematic from definition without a ↵ | kwolekr | 2015-05-17 | 1 | -1/+2 | |
| | | | | NodeDefManager | |||||
* | Record MapBlock modification reasons as flags instead of strings | kwolekr | 2015-05-17 | 6 | -233/+286 | |
| | | | | | This improves performance of MapBlock::raiseModified by a factor of 6. Also, clean up mapblock.h a bit and inline small functions. | |||||
* | SAPI/Noise: Add PerlinNoiseMap:getMapSlice() function | kwolekr | 2015-05-17 | 5 | -0/+160 | |
| | | | | | | This adds the ability to grab 'slices' of noise calculated by PerlinNoiseMap. Retrieving smaller slices of noise from the computation result as needed optimizes memory usage while maintaining a reasonable amount of CPU overhead. | |||||
* | Mapgen v5/v7: Detect sandstone, enable sandstone brick dungeons | paramat | 2015-05-17 | 5 | -34/+69 | |
| | ||||||
* | Add optional buffer param for bulk data array writes in Lua | kwolekr | 2015-05-17 | 2 | -22/+38 | |
| | ||||||
* | Noise: Fix interpolation at negative coordinates | kwolekr | 2015-05-17 | 1 | -2/+4 | |
| | ||||||
* | Fix current mod name change missed during rebase | ShadowNinja | 2015-05-16 | 1 | -4/+4 | |
| | ||||||
* | Add -Wsign-compare for Clang builds and fix some signed/unsigned compiler ↵ | kwolekr | 2015-05-16 | 4 | -30/+31 | |
| | | | | warnings | |||||
* | SAPI: Accept either ARGB8 table or ColorString to specify colors | kwolekr | 2015-05-16 | 4 | -50/+63 | |
| | ||||||
* | Add core.get_dir_list | ShadowNinja | 2015-05-16 | 3 | -26/+28 | |
| | ||||||
* | Add core.request_insecure_environment() | ShadowNinja | 2015-05-16 | 3 | -1/+33 | |
| | ||||||
* | Add core.mkdir | ShadowNinja | 2015-05-16 | 2 | -1/+20 | |
| | ||||||
* | Add mod security | ShadowNinja | 2015-05-16 | 19 | -79/+800 | |
| | | | | Due to compatibility concerns, this is temporarily disabled. | |||||
* | Fix build since last commit | est31 | 2015-05-16 | 2 | -5/+5 | |
| | | | | Also rename method to better match what it does. | |||||
* | Finalize init packets and enable protocol v25 | est31 | 2015-05-16 | 6 | -28/+38 | |
| | | | | This enables srp. | |||||
* | Add push_ARGB8 to script/common/c_converter | TeTpaAka | 2015-05-15 | 3 | -9/+15 | |
| | ||||||
* | Generalize core.get/set_nametag_color into core.get/set_nametag_attributes | TeTpaAka | 2015-05-15 | 6 | -20/+25 | |
| | ||||||
* | Noise: Make buffer size parameters unsigned | kwolekr | 2015-05-15 | 2 | -7/+7 | |
| | ||||||
* | Schematics: Fix probability values for .mts version 1 | kwolekr | 2015-05-15 | 1 | -1/+1 | |
| | ||||||
* | Add minetest.register_on_punchplayer | Brandon | 2015-05-15 | 4 | -9/+60 | |
| | ||||||
* | Add get and set functions for the nametag color | TeTpaAka | 2015-05-15 | 8 | -2/+98 | |
| | ||||||
* | ANDROID: Do not limit situations where fast is enabled | Craig Robbins | 2015-05-15 | 1 | -10/+3 | |
| | | | | Before this commit autofast for Android was ignored if the user was sneaking, digging or building. There is no reason for this and it impedes movement control | |||||
* | Fix compiler warning about sign comparison | est31 | 2015-05-13 | 1 | -1/+1 | |
| | ||||||
* | Build and link gmp correctly on MSVC | SmallJoker | 2015-05-12 | 2 | -2/+5 | |
| | | | | Also optimize json's library | |||||
* | is_player() is no player-only function | est31 | 2015-05-12 | 2 | -13/+13 | |
| | ||||||
* | Mapgen v5/6/7: Cleanup node resolver and aliases | paramat | 2015-05-12 | 6 | -111/+93 | |
| | ||||||
* | Make early protocol auth mechanism generic, and add SRP | est31 | 2015-05-11 | 24 | -308/+3346 | |
| | | | | | | | Adds everything needed for SRP (and everything works too), but still deactivated, as protocol v25 init packets aren't final yet. Can be activated by changing the LATEST_PROTOCOL_VERSION header to 25 inside networkprotocol.h. | |||||
* | Add LibGMP | est31 | 2015-05-11 | 5 | -0/+4395 | |
| | | | | Uses system provided libgmp if found, if not it falls back to mini-gmp. | |||||
* | Change lower limit of display_gamma to 1.0 (linear light) | Craig Robbins | 2015-05-11 | 1 | -1/+1 | |
| | | | | Now matches function comment | |||||
* | Schematics: Add per-node force placement option | kwolekr | 2015-05-09 | 6 | -92/+153 | |
| | ||||||
* | Fix typo in WieldMesh::setItem() | kwolekr | 2015-05-08 | 1 | -1/+1 | |
| | ||||||
* | Ensure that Map::findNodesWithMetadata() reports nodes strictly within the ↵ | kwolekr | 2015-05-08 | 1 | -2/+9 | |
| | | | | node-granular area | |||||
* | Replace Wieldmesh::setItem assertion that could be triggered by the server ↵ | kwolekr | 2015-05-08 | 1 | -2/+7 | |
| | | | | with an error | |||||
* | Fix release build warning | est31 | 2015-05-08 | 1 | -0/+1 | |
| | ||||||
* | Fix compilation for non-client builds, and fix signed comparison warning | kwolekr | 2015-05-08 | 2 | -2/+3 | |
| | ||||||
* | Tests: Add schematic unittests | kwolekr | 2015-05-08 | 7 | -32/+328 | |
| | | | | | Improve schematic file-saving interface Add ability to create temporary test files | |||||
* | Gracefully handle PacketErrors | est31 | 2015-05-08 | 1 | -2/+5 | |
| | ||||||
* | Fix missing Y component assignment in check_v3f | kwolekr | 2015-05-08 | 1 | -1/+1 | |
| | ||||||
* | Remove duplicate lua_getfield() in c_converter.cpp | Kevin Ott | 2015-05-07 | 1 | -1/+0 | |
| | | | | Fixes #2678 | |||||
* | Schematics: Add indent-with-space option for schematic Lua table serialization | kwolekr | 2015-05-07 | 3 | -12/+19 | |
| | ||||||
* | NodeResolver: Remove NodeResolveMethod | kwolekr | 2015-05-07 | 8 | -160/+103 | |
| | | | | This simplifies NodeResolver logic and makes some interfaces cleaner. | |||||
* | Fix connection speed unit names | ShadowNinja | 2015-05-06 | 1 | -3/+3 | |
| | ||||||
* | Fix error messages for type-checking Lua reading functions | ShadowNinja | 2015-05-06 | 1 | -17/+40 | |
| | ||||||
* | Improve Redis error messages | ShadowNinja | 2015-05-06 | 1 | -14/+25 | |
| | ||||||
* | Fix build on Debian broken by b45df9d (missing include, somehow?) | kwolekr | 2015-05-05 | 1 | -0/+1 | |
| |