Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | 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 |
| | |||
* | Move scriptapi to separate folder (by sapier) | sapier | 2013-05-25 |
| | | | | | | | | | | | On the lua side, notably minetest.env:<function>(<args>) should now be replaced by minetest.<function>(<args>). The old way is and will stay supported for a long time. Also: Update and clean up lua_api.txt (by celeron55) Move EnvRef to lua and remove add_rat and add_firefly (by kahrl) Add separate src/util/CMakeLists.txt, other minor fixes (by kahrl) | ||
* | Dont load mods that have no entry in world.mt | PilzAdam | 2013-05-19 |
| | |||
* | Clear custom player HUDs when emerging players. Fixes #711. | Aaron Suen | 2013-05-10 |
| | |||
* | Optional dependencies and properly handle mod name conflicts again | Kahrl | 2013-05-03 |
| | |||
* | Server: force block send of pointed_pos_under after predicted node place | Kahrl | 2013-05-03 |
| | |||
* | Generalize hud_builtin_enable into hud_set_flags | kwolekr | 2013-04-25 |
| | |||
* | Added support to disable built-in HUD elements | Diego Martínez | 2013-04-24 |
| | |||
* | Add option to not prepend "Server -!- " to messages sent with ↵ | ShadowNinja | 2013-04-23 |
| | | | | minetest.chat_send_player() | ||
* | Added offset support for HUD items | Diego Martínez | 2013-04-23 |
| | |||
* | Added support for alignment in HUD items | Diego Martínez | 2013-04-23 |
| | |||
* | Fix findSpawnPos() | kwolekr | 2013-04-21 |
| | |||
* | Split HUD code off to hud.cpp, make into a class, extensive Lua HUD modification | kwolekr | 2013-04-18 |
| | |||
* | Lua HUD | Jonathon Anderson | 2013-04-18 |
| | |||
* | fix various memory leaks | sapier | 2013-04-09 |
| | |||
* | Add Mapgen V7, reorganize biomes | kwolekr | 2013-04-07 |
| | |||
* | Masterserver: report gameid, uptime, cosmetic fixes on server web page | proller | 2013-03-30 |
| | |||
* | New damage system, add damageGroups to ToolCapabilities, bump protocol version | PilzAdam | 2013-03-29 |
| |