Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Add minetest.set_noiseparam_defaults() Lua API | kwolekr | 2014-02-15 |
| | |||
* | Fix possible missing unlock of env_lock | sapier | 2014-02-12 |
| | |||
* | ServerEnvironment: Remove direct dependency on EmergeManager | kwolekr | 2014-02-09 |
| | |||
* | Add the option to bind to a specific address | ShadowNinja | 2014-02-05 |
| | |||
* | Huge overhaul of the entire MapgenParams system | kwolekr | 2014-02-03 |
| | | | | | | 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. | ||
* | Add additional check to avoid broadcasting private messages in error conditions | sapier | 2014-02-02 |
| | |||
* | Add player:override_day_night_ratio() for arbitrarily controlling sunlight ↵ | Perttu Ahola | 2014-02-01 |
| | | | | brightness | ||
* | Add player:set_sky() with simple skybox support | Perttu Ahola | 2014-02-01 |
| | |||
* | Add propper client initialization | sapier | 2014-01-31 |
| | | | | | | | | | | | | | -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 | ||
* | New HUD element - waypoint. | RealBadAngel | 2014-01-26 |
| | |||
* | Fix use of previously deallocated EmergeManager | kwolekr | 2014-01-26 |
| | |||
* | Pass pointed_thing to on_punch and minetest.register_on_punchnode callbacks | ShadowNinja | 2014-01-23 |
| | |||
* | Allow vertical axis particle rotation constraint | khonkhortisan | 2014-01-13 |
| | | | | | | | Use tables for adding particles, deprecate former way. separate particles(pawner) definition, add default values, work with no arguments | ||
* | Fixed minetest reliable udp implementation (compatible to old clients) | sapier | 2014-01-10 |
| | |||
* | Revert "Improve (re)spawn, add cache_block_before_spawn and max_spawn_height ↵ | ShadowNinja | 2014-01-06 |
| | | | | | | | | | | | settings" The commit didn't work because the blocks weren't loaded yet. This reverts commit 22dbbf0a6fc9547f0dbdb7f6076337b8c6acd48b. Conflicts: minetest.conf.example | ||
* | Send long announce as POST, show OS in useragent | proller | 2014-01-07 |
| | | | | | Add lag reporting to masterserver (average dtime) StyledWriter -> FastWriter in masterserver announce | ||
* | Initialize world before creating BanManager and RollbackManager | ShadowNinja | 2013-12-30 |
| | |||
* | Replace SimpleThread by JThread now implementing same features | sapier | 2013-12-15 |
| | |||
* | Update mapgen params in ServerMap after Mapgen init | kwolekr | 2013-12-14 |
| | |||
* | Rewrite client media download and support hash-based remote download | Kahrl | 2013-12-13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move most of the media-related code in client.cpp into a new class ClientMediaDownloader (clientmedia.cpp, clientmedia.h). Among other things, this class does the following things: - Download [remote_server][sha1] instead of [remote_server][name]. This is to support servers that provide the same file name with different contents. - Initially fetch [remote_server]index.mth. This file should follow the Minetest Hashset format (currently version 1) and contain a list of SHA1 hashes that exist on the server. - The list of needed SHA1s is uploaded (via HTTP POST) when index.mth is requested, so servers can optionally narrow down the list to the needs of the client. - If index.mth is missing (HTTP response code 404), we enter compat mode, fetching [remote_server][name] as before this commit. - remote_server can now contain multiple servers, separated by commas. The downloader code attempts to split requests between the different servers, as permitted by each server's index.mth. If one server claims to have a file but actually doesn't (or something fails), we ask a different server that also claims to have it. - As before, when none of the remote servers provide a particular file, we download it via the conventional method, i.e. using the minetest protocol: TOSERVER_REQUEST_MEDIA / TOCLIENT_MEDIA. - Bugfix: Every downloaded file's SHA1 is now verified against the SHA1 announced by the minetest server (before loading it and inserting it into the file cache). - Bugfix: Only send TOSERVER_RECEIVED_MEDIA when we actually have all media. This should fix #863. | ||
* | Add 'on_prejoinplayer' callback | kaeza | 2013-12-12 |
| | |||
* | Improve (re)spawn, add cache_block_before_spawn and max_spawn_height settings | sweetbomber | 2013-12-05 |
| | |||
* | Cleanup jthread and fix win32 build | sapier | 2013-12-01 |
| | |||
* | Add minetest.swap_node | Novatux | 2013-11-30 |
| | |||
* | Add a callback: minetest.register_on_craft(itemstack, player, | Novatux | 2013-11-01 |
| | | | | | | old_craft_grid, craft_inv) and minetest.register_craft_predict(itemstack, player, old_craft_grid, craft_inv) | ||
* | Masterserver update | proller | 2013-10-18 |
| | |||
* | Show git hash in version string at top left corner of window | Kahrl | 2013-09-28 |
| | |||
* | Fix some warnings and other minor details | kwolekr | 2013-09-16 |
| | |||
* | Always use builtin JThread library | kwolekr | 2013-09-15 |
| | |||
* | Use player:set_hotbar_image() instead of hardcoded hotbar.png | PilzAdam | 2013-09-05 |
| | |||
* | Server::ProcessData(): call getBanName once instead of twice (#639) | Ilya | 2013-09-03 |
| | |||
* | Send player damage to all clients and apply [brighten | PilzAdam | 2013-08-17 |
| | |||
* | Omnicleanup: header cleanup, add ModApiUtil shared between game and mainmenu | Kahrl | 2013-08-14 |
| | |||
* | Don't freak out when a client sends multiple TOSERVER_INIT packets; also log ↵ | Perttu Ahola | 2013-08-08 |
| | | | | one thing more. | ||
* | Clean up server's log messages and give a better error to client when its ↵ | Perttu Ahola | 2013-08-06 |
| | | | | player is in use | ||
* | Add texture pack selection to main menu | Novatux | 2013-08-04 |
| | |||
* | Fix server getting completely choked up on even a little of DoS | Perttu Ahola | 2013-08-04 |
| | | | | | | * If client count is unbearable, immediately delete denied clients * Re-prioritize the checking order of things about incoming clients * Remove a huge CPU-wasting exception in ReliablePacketBuffer | ||
* | Allow mods to listen to cheat detections using minetest.register_on_cheat() | Perttu Ahola | 2013-08-04 |
| | |||
* | Fix anticheat | Perttu Ahola | 2013-08-03 |
| | |||
* | Weather backward compatibility | proller | 2013-08-02 |
| | |||
* | Dont announce server in singleplayer | proller | 2013-07-27 |
| | |||
* | Cosmetic player info changes | proller | 2013-07-24 |
| | |||
* | Add set_breath and get_breath to lua API. | RealBadAngel | 2013-07-20 |
| | |||
* | Masterserver mods announse, ipv6, better curl errors | proller | 2013-07-13 |
| | |||
* | Disallow the name 'singleplayer' in a multiplayer server | PilzAdam | 2013-07-12 |
| | |||
* | Add Lua on_mapgen_init callback, and minetest.set_mapgen_params API | kwolekr | 2013-06-27 |
| | |||
* | Math mapgen fix, ip show on connect, pathfinder segfault fix | proller | 2013-06-23 |
| | |||
* | Add support for IPv6 | proller | 2013-06-23 |
| | | | | | | | Two new configuration options are added: - "enable_ipv6" to enable/disable the overall use of IPv6 - "ipv6_server" to enable/disable the use of IPv6 sockets when running a server (when "enable_ipv6" is enabled) | ||
* | Tweak IDropAction restriction handling in server.cpp | Kahrl | 2013-06-16 |
| | |||
* | Add ObjectRef.hud_set_hotbar_itemcount and add TOCLIENT_HUD_SET_PARAM | Kahrl | 2013-05-26 |
| |