aboutsummaryrefslogtreecommitdiff
path: root/src/serialization.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-02-03Update minetest.conf.examplekwolekr1-3/+6
2014-02-03Huge overhaul of the entire MapgenParams systemkwolekr24-622/+405
MapgenParams is no longer a polymorphic class, eliminating the need for messy and bug-prone reallocations. Separation between the common and mapgen-specific parameters is now strongly defined. Mapgen parameters objects are now properly encapsulated within the proper subsystems.
2014-02-03Settings: Add no-exception variants of each get methodkwolekr1-4/+123
2014-02-03Fix crash when a error occurs in a globalstep callbackShadowNinja1-1/+6
2014-02-03Escape texture pack namesShadowNinja1-2/+2
2014-02-03Add minetest.kick_player(name, reason)sapier6-17/+67
2014-02-03Remove noisy error messages, prepend "pathfinder: " to pathfinder messagessapier1-5/+5
2014-02-02Add missing "-" to list of allowed chars in media filenamessapier1-1/+1
2014-02-02Add additional check to avoid broadcasting private messages in error conditionssapier1-0/+4
2014-02-01Add player:override_day_night_ratio() for arbitrarily controlling sunlight ↵Perttu Ahola11-2/+107
brightness
2014-02-01Add player:set_sky() with simple skybox supportPerttu Ahola11-5/+181
2014-01-31Add propper client initializationsapier10-1582/+1791
-add client states to avoid server sending data to uninitialized clients -don't show uninitialized clients to other players -propper client disconnect handling Minor comment fixes in server Minor bugfixes in connection -improved peer id calculation -honor NDEBUG flag -improved disconnect handling -increased initial send window Remove some dead code
2014-01-26New HUD element - waypoint.RealBadAngel8-9/+85
2014-01-26Fix bug only half of unreliable queue handled per step in worst casesapier1-1/+2
2014-01-26Fix use of previously deallocated EmergeManagerkwolekr3-8/+46
2014-01-24Fix error on mod download failureShadowNinja1-1/+1
2014-01-23Pass pointed_thing to on_punch and minetest.register_on_punchnode callbacksShadowNinja7-38/+28
2014-01-23Include system info in the HTTP user agent on WindowsSfan53-22/+52
2014-01-21Add pointed_thing to minetest.register_on_placenodeShadowNinja2-3/+14
As suggested by qwrwed.
2014-01-21Connection: Stop processing malformed packet when encounteredkwolekr1-0/+1
2014-01-21Fix curl dll not getting installed when sound is disabledSfan51-3/+3
2014-01-19Fix minetest.rotate_and_place() calling on_rightclick() with nil/random ↵PilzAdam1-1/+1
param for node
2014-01-19Update lua_api.txt documentationkwolekr1-2/+10
2014-01-19LuaVoxelManip: Add get_param2_data and set_param2_datakwolekr2-0/+47
2014-01-19Schematic: Read slice probability table from schematic descriptorskwolekr2-3/+24
2014-01-18Fixed mainmenu lua errors because of changes in get_textlist_indexDániel Varga2-17/+20
Fixed lua error when none of the worlds or servers selected are and connect, delete or configure buttons used.
2014-01-16Deindent HTTPFetchRequest::HTTPFetchRequest()ShadowNinja1-15/+15
2014-01-16Prevent player jumping into nodes from belowBlockMen1-1/+1
Fixes camera glitch and cheating at drowning
2014-01-15Prevent placing node when player would be inside new nodeBlockMen1-15/+31
2014-01-15Fix win32 reading semaphore count not working (broke all queues)sapier1-6/+33
2014-01-15Make default User-agent follow RFC 2616ShadowNinja1-3/+4
2014-01-15Fix building with MinGWSfan51-2/+2
2014-01-14Fix building under MSVCBlockMen1-0/+1
2014-01-13Fix spelling of "attempt"ShadowNinja1-3/+3
2014-01-13Add minetest.override_itemShadowNinja2-0/+22
2014-01-13Add formspec tableKahrl13-246/+1798
2014-01-13Allow vertical axis particle rotation constraintkhonkhortisan10-86/+259
Use tables for adding particles, deprecate former way. separate particles(pawner) definition, add default values, work with no arguments
2014-01-13Fix some errors reported by clang static analyzer.Ilya Zhuravlev2-1/+5
2014-01-12Mapgen V6: Add flag to stop mud flowkwolekr3-1/+4
2014-01-12Fix doc and forceloading crash.Novatux2-1/+3
2014-01-11Add maximum recursion depth to read_json_valueShadowNinja2-3/+7
2014-01-11Rename get_json_value to read_json_valueShadowNinja3-4/+4
2014-01-11Add InvRef::get/set_lists()ShadowNinja3-0/+56
2014-01-11Compare values instead of pointers in Inventory::operator==Kahrl1-1/+1
2014-01-11Add operator!= to Inventory(List), make operator== a const methodKahrl2-5/+13
2014-01-11Add forceloadingNovatux9-1/+136
2014-01-11Deepcopy pointed_thing for after_place_node, give it to on_rightclick too.Novatux3-7/+16
2014-01-10Fix check for max_fd == -1 should actually be max_fd != -1sapier1-1/+1
2014-01-10Fixed minetest reliable udp implementation (compatible to old clients)sapier8-975/+2663
2014-01-10Make MutexQueue use jsemaphore for signalingsapier13-101/+250