aboutsummaryrefslogtreecommitdiff
path: root/doc/mkdocs/docs
diff options
context:
space:
mode:
authorLars <larsh@apache.org>2020-11-02 09:27:15 -0800
committerlhofhansl <larsh@apache.org>2020-11-03 16:23:47 -0800
commit39213bd00a8d00861616d94a29823cb2214f742e (patch)
tree4f5935deb6d3f1ce34291c2a8e09fc4999babf01 /doc/mkdocs/docs
parentaa4d3cb14837409b3cb5e17060776c6f5269d0be (diff)
downloadminetest-39213bd00a8d00861616d94a29823cb2214f742e.tar.gz
minetest-39213bd00a8d00861616d94a29823cb2214f742e.tar.bz2
minetest-39213bd00a8d00861616d94a29823cb2214f742e.zip
Slight simplification and optimization of RemoteClient.
Diffstat (limited to 'doc/mkdocs/docs')
0 files changed, 0 insertions, 0 deletions
| | chatcommand. (#5252) * Mainmenu: Brighter text colours for readabilityHybrid Dog2017-02-12 | * Use tree to list mods rather than textlistrubenwardy2017-02-10 | * Add textures for air and ignore items (#5196)Wuzzy2017-02-10 | * Change default nodetimer_interval to 0.2s. (#5193)Auke Kok2017-02-09 | | | | | | | | | | We want to reduce the chance that we get lots and lots of node timers all happening once a second, because we're better off doing small bits of work as they are available. Reducing this to 0.2 seconds will greatly reduce the total amount of nodetimers that elapse at the same instance, while not effecting total work load. This results in a far better chance of the server keeping up with work loads. * Serverlist: Add ping indicators (#5164)kilbith2017-02-03 | * Make facedir_to_dir and wallmounted_to_dir work with coloured nodes as well. ↵Nathanaël Courant2017-01-31 | | | | (#5153) * Add console height setting (#5136)Ezhh2017-01-30 | * Zoom FOV: Reduce minimum zoom FOV to 7 degreesparamat2017-01-23 | | | | | | | | The default of 15 is unchanged. 7 degrees is x10 magnification which is common for binoculars. Alter hardcoded limits in camera.cpp: Minimum 7 degrees. Maximum 160 degrees to match upper limits in advanced settings. * core: Add dir_to_yaw and yaw_to_dir helpersAuke Kok2017-01-23 | | | | | These are needed to go from things like entity yaw to a vector and vice versa. * Vector: Add vector.sort(a, b): return box edgesAuke Kok2017-01-23 | | | | | This function returns the box corners of the smallest box that includes the two given coordinates. * Add show_statusline_on_connect setting (#5084)Loïc Blot2017-01-21 | | | Add show_statusline_on_connect setting * Add chatcommand unregister and override API (#5076)Elijah Duffy2017-01-20 | | | | | Introduces two functions to unregister and override chatcommands. minetest.unregister_chatcommand("<name>") and minetest.override_chatcommand("<name>", {<redifinition>}) * Add minetest.player_exists() (#5064)rubenwardy2017-01-18 | * Add search to advanced settings (#4806)rubenwardy2017-01-18 | | | | | | | | * Add search to advanced settings * Press enter again to go to next result * Use keyword based search, auto select best option * Improve priv descriptions (#5047)Ezhh2017-01-17 | * Remove client-side chat prediction. (#5055)red-0012017-01-17 | | | Network lag isn't really a big issue with chat and chat prediction makes writing mods harder. * Adjust formspec spacing on the Client tab of the mainmenurubenwardy2017-01-16 | * Add keyword based search to serverlistred-0012017-01-15 | * Documentation: Correct biome heat / humidity noise parametersparamat2017-01-15 | | | | | | When the new set of biomes was added in MTGame the 'spread' for heat and humidity noise parameters was increased to 1000, i forgot to update settingtypes.txt and minetest.conf. * Main menu tweaksShadowNinja2017-01-13 | * Enable mod security by defaultShadowNinja2017-01-13 | * Add staticdata parameter to add_entity (#5009)Rui2017-01-09 | | | | | * Add staticdata parameter to add_entity * Add add_entity_with_staticdata to core.features * builtin/.../falling.lua: Avoid crash when hitting unknown nodessfan52017-01-09 | * Make column alignment consistent in advanced settings (#5004)Ezhh2017-01-07 | * Expose and document chatcommands as minetest.registered_chatcommandsrubenwardy2017-01-04 | * Fix /grant & /revoke not working with custom auth handler (#4974)Dorian Wouters2016-12-31 | | | core.auth_table is not supposed to be accessed directly. * Redo light.cpp.Auke Kok2016-12-28 | | | | | | | | | | | | | | | | | |