aboutsummaryrefslogtreecommitdiff
path: root/minetest.conf.example
AgeCommit message (Collapse)Author
2020-04-03Update minetest.conf.example, settings_translation_file.cppupdatepo.sh
2020-03-28Ignore near_plane setting on non-Android platforms (#8749)ANAND
Camera's near-plane will be hard-coded to 0.1 on all non-Android platforms. The upper-bound of this setting has been reduced to 0.25, as 0.5 is just way too high.
2020-01-24Update translation sourcesrubenwardy
2020-01-24Update settingtypes.txt for new languagesrubenwardy
2019-10-12Update minetest.conf.exampleupdatepo.sh
2019-09-09Update minetest.conf.exampleupdatepo.sh
2019-08-08Allow customizing chat message format (#8529)ANAND
2019-04-03Change pitch fly binding to 'P', add to change keys menu (#8314)rubenwardy
2019-03-17num_emerge_threads: Fix documentation of automatic selectionparamat
2019-03-14num_emerge_threads: Warn of crashes when > 1 (#8357)Paramat
2019-03-05Change 'num_emerge_threads' default to 1 (#8303)Paramat
2019-02-23Update minetest.conf.example and settings_translation_file.cpp (#8278)Paramat
2019-02-14 Update minetest.conf.example, settings strings and locale files (#8230)Wuzzy
2019-01-20Make advanced settings noiseparams strings translatable (#8062)Wuzzy
Various minor language improvements in settingtypes.txt.
2019-01-02autojump setting: Remove repeated doc line (#8041)Moose
2018-12-31Extend pitch fly mode to swimming (#7943)random-geek
2018-12-24CSM: add requested CSM_RF_READ_PLAYERINFO (#8007)Loïc Blot
* CSM: add requested CSM_RF_READ_PLAYERINFO This new CSM limit permit to limit PLAYERINFO read from server. It affects get_player_names call
2018-12-09Update minetest.conf.example and run updatepo.sh (#7947)Update Script
2018-12-01Added pitch fly mode (#7817)Gaël C
In pitch fly mode, you fly to the exact direction you are pointing at, using the forward key. Other move directions are also pitched accordingly. It allows smoother and more complex movements. Can be enabled/disabled by L key by default (set keymap_pitchfly in minetest.conf)
2018-11-22Client-side autojump. Remove Android-only stepheight autojump (#7228)Ben Deutsch
Works by detecting a collision while moving forward and then simulating a jump. If the simulated jump is more successful, an artificial jump key press is injected in the client. Includes setting and key change GUI element for enabling and disabling this feature.
2018-11-18Remove obsolete section in ipv6_server descriptionsfan5
This section no longer applies since c66d97726931aa8dde7d8a1ffa5b8e41234f4660.
2018-09-29Software inventorycube (#7651)Vitaliy
Fixes missing/upside-down images on Android.
2018-08-16Mgv5: Change tunnel parameters to those of other mapgens (#7641)Paramat
Make tunnels wider and use the noise parameters of most other mapgens. All other underground features are already identical to all other non-mgv6 mapgens, this final change modernises and improves the tunnels.
2018-07-25Settings: Fix indents, chat_message_*. Update translations (#7580)SmallJoker
2018-07-13Document config updates in minetest.conf.example.Lars Hofhansl
2018-07-01Make the server status message customizable (#7357)SmallJoker
Remove now redundant setting show_statusline_on_connect Improve documentation of `minetest.get_server_status`
2018-06-26Update settings translationsSmallJoker
2018-06-22Remove misleading documentation about IPv6 server announcingsfan5
2018-04-10Android: Replace movement buttons with joystick (#7126)Muhammad Rifqi Priyo Susanto
* Android: Replace movement buttons with joystick Replace movement control buttons (arrows at bottom left screen) with virtual joystick. Joystick has 8 directions (same as keyboard). Basically, just map it to keyboard input. Joystick applies only on left 1/3 of screen. Joystick's position can be fixed by enabling fixed_virtual_joystick setting. Three new images: (1) placeholder joystick, (2) joystick container (background), and (3) joystick cursor. Remove unused images: movement control buttons (*_arrow.png). New data type: touch_gui_joystick_move_id Joystick's fixed position is spaced one button size from bottom and from left of screen. Remove unused variable: m_joystick_downlocation
2017-12-26Add check to pause game on lost window focusrubenwardy
2017-12-17Adjust default console heightEzhh
#6797
2017-12-11CSM fixes: load mods after flavours & add flavour to block mod loading (#6738)Loïc Blot
* CSM fixes: load mods after flavours & add flavour to block mod loading * Don't permit to load mods twice * Prepare builtin integrity global algorithm * Add missing doc & use a nicer byteflag for LOAD_CLIENT_MODS flavour * flag typo fix * Invert CSM_FL_LOOKUP_NODES & CSM_FL_LOAD_CLIENT_MODS ids
2017-11-12Remove incorrect entry from settingtypesEzhh
2017-10-31Rewrite rendering engine (#6253)Vitaliy
* Clean draw_*() arguments * Split rendering core * Add anaglyph 3D * Interlaced 3D * Drop obsolete methods
2017-10-23Minetest.conf.example(.extra): Updates due to noise group formatparamat
Autogenerate minetest.conf.example to convert noises to the now standard 'group format'. Delete the now unnecessary minetest.conf.example.extra.
2017-10-17don't pass g_settings around, and use it directlyEsteban I. RM
2017-10-17Regenerate minetest.conf.example and translation fileEsteban I. RM
2017-10-15Real global textures (#6105)Vitaliy
* Real global textures * Add world-aligned textures * Update minimal to support world-aligned tiles * Update minimal
2017-09-26Implement mod communication channels (#6351)Loïc Blot
Implement network communication for channels * Implement ModChannel manager server side to route incoming messages from clients to other clients * Add signal handler switch on client & ModChannelMgr on client to handle channels * Add Lua API bindings + client packet sending + unittests * Implement server message sending * Add callback from received message handler to Lua API using registration method
2017-09-12Network: Remove large parts of deprecated legacy code (#6404)SmallJoker
Also remove the setting 'send_pre_v25_init' Keep old enum entries for obsolete commands
2017-09-09Server: Calculate maximal total block sends dynamically (#6393)SmallJoker
The block sends per client is 1/2 when reaching the maximal player count.
2017-09-05Remove DSTACK keybind setting (#6378)Rui
2017-09-05Conf.example: Update using auto-generationparamat
2017-09-02Remove 3D noise from getSteps function (#6360)Vaughan Lapsley
2017-08-29Formspec: Add options to set background color and opacity (fullscreen mode + ↵Loïc Blot
default mode) (#5493) * Formspec: Add options to set background color and opacity (fullscreen mode) * Enhance previous comment: Set formspec background when regenerate UI. * This permit to do the calcul only at regen and override it with bgcolor tag * Add a setting for default background color into formspec, separated from fullscreen * Add a little performance gain on formspecs using a const ref instead of copying formspec string
2017-08-24Safe digging and placing (#6127)Ben Deutsch
* Setting: Safe digging and placing * New setting 'safe_dig_and_place' under Controls * If set, digging and placing will not auto-repeat * Releasing buttons unblocks the respective action again * Useful for inexperienced users in creative mode where default repeat times may be too short * Safe placing (right click repetition) does not need a guarding flag * Added new setting to minetest.conf.example
2017-08-17Reduce dedicated server step to 0.09 (#6252)Loïc Blot
Minetest performance improvement has been huge since months, server step reduction will permit to handle client events a little bit faster without too many penalty costs due to core engine
2017-08-17New lighting curve (#5279)Vitaliy
* New lighting curve * Make polynomial lighting curve * Update default lighting settings
2017-08-14Advanced settings: Re-organise mapgen settings for ease of useparamat
Add a comment about the auto-generated minetest.conf.example possibly appearing in the bin folder.
2017-08-13Change “Use” key name to “Special”TeTpaAka