aboutsummaryrefslogtreecommitdiff
path: root/src/settings_translation_file.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add option to not send pre v25 init packetest312016-03-151-0/+2
| | | | | | | | | | | | | | | | | The legacy init packet (pre v25) sends information about the client's password that a server could use to log in to other servers if the username and password are the same. All the other benefits of SRP of protocol v25 are missed if the legacy init packet is still sent during connection creation. This patch adds an option to not send the v25 init packet. Not sending the v25 packet means breaking compat with pre v25 servers, but as the option is not enabled by default, no servers are affected unless the user explicitly flips the switch. More than 90% of the servers on the serverlist support post v25 protocols. The patch also fixes a bug with greying out of non compliant servers being done wrongly, the min and max params were mixed.
* Add options for screenshot format and qualityDiego Martinez2016-03-121-0/+4
|
* Documentation: Auto-update conf.example and settings_translation_file.cppparamat2016-03-121-5/+5
|
* Update po files, minetest.conf.example and settings_translation_file.cppest312016-02-271-24/+64
|
* Remove preload_item_visuals codeRealBadAngel2016-02-211-2/+0
| | | | Closes #3748
* Fix some setting documentationest312015-12-101-26/+38
| | | | | | | * Horizontal and vertical are used wrongly. Use height and width because horizontal/vertical describes different things. Thanks @kilbith for pointing out. * Update minetest.conf.example and settings_translation_file.cpp * Correct maximum/minimum copy paste mistake.
* Update minetest.conf.example and src/settings_translation_file.cppest312015-11-081-3/+36
|
* Escape " in generated settings_translation_file.cppPilzAdam2015-10-251-10/+10
|
* Improve Lua settings menuPilzAdam2015-10-241-0/+511
* Add key settings to setting table and ignore them later This way they are added to the auto-generated minetest.conf.example * Add flags type * Add input validation for int, float and flags * Break in-game graphic settings into multiple sections * Parse settingtpes.txt in mods and games * Improve description for a lot of settings * Fix typos and wording in settingtypes.txt * Convert language setting to an enum