6c42ebfafa
Escape special characters when searching the server list ( #7842 )
...
Simple fix to stop searching for "[" or other special characters causing a crash.
2018-11-10 14:46:51 +01:00
57a2f3e4c4
Conf.example generation: Remove quotation marks from noise flags ( #7844 )
2018-11-09 00:24:36 +00:00
9a151e0ae8
Content store: Add show_nonfree_packages setting to advanced settings ( #7846 )
2018-11-08 23:33:59 +00:00
bd81b5e4c8
Improve content store layout ( #7806 )
2018-11-08 21:55:38 +00:00
0e306c0842
Fix string.split returning an empty table if string starts with sepearator ( #7827 )
...
Calling string.split(":A:B:C:D", ":") returns an empty array.
This is due to first empty string not making repeat loop decreasing max_split which has a 0 value when reaching until.
Changing max_splits default value from -1 to -2 fixes that issue.
2018-11-01 21:07:01 +01:00
0d54399be2
Advanced settings: Fix noise parameter flags ( #7819 )
...
Populate the 'checkboxes' table with bools when creating the editing formspec.
2018-10-28 20:53:08 +00:00
ff35bffe18
Mainmenu: Clean up and improve advanced settings dialogues ( #7802 )
...
Improvements:
1. Formspec size and description box are calculated last
2. Width and height are now adjustable per setting type
3. Error message (dialogdata.error_message) shortens the description field and is placed below
4. Add more spacing for larger fonts
5. More comments and extensible by setting different height and width values
2018-10-20 19:14:34 +02:00
31a6dd9560
Settingtypes.txt: Various language improvements, document stable mapgens ( #7801 )
2018-10-20 09:35:39 +01:00
4e6b8062ec
Advanced settings tree menu: Resize, fix clipped values ( #7790 )
2018-10-18 05:42:15 +01:00
b6adb7f09e
Advanced settings menu: Centre setting edit box ( #7778 )
2018-10-11 05:09:03 +01:00
8fda8c9580
Settingtypes.txt: Limit comments to 90 columns to fix clipped lines ( #7777 )
2018-10-11 03:23:08 +01:00
5e9a46c7b0
Add a warning to the 'chunksize' setting ( #7775 )
...
Several users have been causing problems by increasing this value.
2018-10-10 21:23:37 +01:00
0a5e77132a
Add core.remove_detached_inventory ( #7684 )
...
Breaks backwards compatibility for good
Bump protocol version
2018-10-10 20:48:58 +02:00
d6f2a1c4b8
Various grammar improvements ( #7769 )
...
In builtin//pkgmgr.lua, README.md and settingtypes.txt.
Based on 2 pull requests by comradekingu.
2018-10-06 03:43:26 +01:00
a29bc8e8ba
Remove settings properly ( #7676 )
2018-09-30 19:57:31 +02:00
18a8fbf465
Software inventorycube ( #7651 )
...
Fixes missing/upside-down images on Android.
2018-09-29 19:40:17 +01:00
4a2a11262b
Builtin//misc_helpers: Various fixes ( #7737 )
...
Remove unused variable 'seplen'.
Fix 'cparam2'->'param2'.
Do not initialise variable 'p' twice.
2018-09-23 21:06:51 +01:00
6ed9c6fb3a
Menu content tab: Fix clipped description and missing depends ( #7703 )
2018-09-07 02:46:58 +01:00
a4f41e7bfc
get_node_drops: Make empty drop return empty table ( #7592 )
...
This stops get_node_drops from returning an empty string when using drop = "" and instead returns the supposed empty table instead {}
2018-08-30 20:32:33 +02:00
34f940dcca
Content tab: Fix clipped text in texture pack button ( #7667 )
...
Wider buttons to not clip 'Disable Texture Pack' text when using a
small game window (1024x600, the default).
2018-08-22 21:36:56 +01:00
4937c5007f
World config: Add modpack descriptions and remove dependencies there ( #7397 )
...
* Allow adding descriptions to modpacks using description.txt
* Use a proper multiline formspec element: textarea
2018-08-17 20:34:08 +02:00
4dff0021b8
Mgv5: Change tunnel parameters to those of other mapgens ( #7641 )
...
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-08-16 20:10:56 +02:00
ea26076bcb
Feature check for commit ac4884c3d6
( #7618 )
...
adds `entity_independent_selectionbox` to minetest.features
2018-08-12 13:37:17 +02:00
153fb211ac
Replace auth.txt with SQLite auth database ( #7279 )
...
* Replace auth.txt with SQLite auth database
2018-08-05 13:13:38 +02:00
6afbb06c7e
Make the primary, flow-advancing action the right-most ( #7594 )
2018-07-31 22:00:42 +02:00
4b217411ea
Settings: Fix indents, chat_message_*. Update translations ( #7580 )
2018-07-25 17:07:11 +01:00
c022ddce4b
Disable shaders GUI on unsupported drivers ( #7563 )
...
* Disable shaders GUI on unsupported drivers (#2060 )
* Disable shaders if unavailable
2018-07-21 09:26:40 +02:00
78a801e42d
Update mip mapping and textarea documentation ( #7315 )
...
* Fix textarea formspec documentation
The label is shown and the background isn't
* Document the missing gamma correction when generating mip maps
* Remove duplicate text (such as size parameter descriptions)
2018-07-19 18:28:26 +02:00
4b36a39d37
CSM: Disallow exploitable clientside mod functions by default ( #7547 )
2018-07-19 03:58:48 +01:00
bc9bb63aed
Mgvalleys: Make river depth variation and humidity drop optional ( #7532 )
...
Add 2 new mapgen flags to make river depth variation and humidity drop
with altitude independently optional, instead of both being enabled by
the 'humid rivers' flag.
Simplify and clarify related code by removing a low priority
optimisation regarding 't_heat'.
Remove unnecessary optimisation bools and use spflags directly instead.
Improve and fix documentation in settingtypes.txt.
A few minor code cleanups.
2018-07-18 03:34:05 +01:00
ade7a1cbcf
Builtin: Replace deprecated function calls ( #7561 )
2018-07-17 20:17:54 +02:00
a0635f6024
Check if player exists on use of /privs ( #7554 )
...
* /privs: Check if player exists
2018-07-16 14:55:03 +02:00
a95aed8800
Adjust some settings to modern environments and networks. ( #7549 )
2018-07-13 22:11:49 +02:00
7ebc229b0d
Android: Add 'aux' button ( #7477 )
...
Add 'aux' button.
Use joystick to trigger 'aux' button when forward and out of main circle, by enabling
'virtual_joystick_triggers_aux' setting.
2018-07-10 23:33:40 +01:00
0cf36454d6
core.spawn_falling_node: Keep metadata ( #7476 )
2018-07-09 23:33:21 +02:00
498078bfa0
Builtin/../misc.lua: Replace minetest. with core., improve codestyle ( #7540 )
2018-07-09 19:11:35 +01:00
6f22d14206
Make the server status message customizable ( #7357 )
...
Remove now redundant setting show_statusline_on_connect
Improve documentation of `minetest.get_server_status`
2018-07-01 12:31:28 +02:00
f3b7be97fe
Log usage of /pulverize ( #7503 )
2018-06-30 12:53:43 +02:00
4cd267a511
Mgvalleys: Fix 'mgvalleys_spflags' setting name ( #7495 )
2018-06-28 02:09:31 +01:00
db42542e27
Rename CSM flavours to restrictions
...
& Satisfy LINT
2018-06-26 15:38:42 +02:00
a38ec9dd06
Remove misleading documentation about IPv6 server announcing
2018-06-22 09:42:42 +02:00
ca502fc274
Update to new ContentDB API
2018-06-18 20:47:38 +01:00
10634f0443
Make os.tempfolder work correctly for MinGW & MSVC ( #7443 )
2018-06-13 13:22:17 +02:00
da9e4b1f4a
Add hasprivs chat command ( #7336 )
...
Require 'basic_privs' priv
Only the online players are listed.
2018-06-12 15:39:43 +02:00
409d04324f
Fix the /shutdown command ( #7431 )
2018-06-11 13:43:12 +02:00
90acb9b3a7
Fix typo (GH#7421)
2018-06-10 10:34:13 +02:00
0b23253447
Mapgen flags: Add 'biomes' global mapgen flag ( #7355 )
...
Previously the only way to disable biomes was to 'clear' the registered
biomes in a mod, but this method causes large amounts of unnecessary
processing:
1. Calculation of 4 2D noises.
2. Looping through all nodes of a mapchunk replacing nodes with identical
nodes.
The new flag disables those operations.
2018-06-08 23:24:36 +01:00
9f8582dcdf
Stop autoforward on BACKWARD key-press ( #7417 )
2018-06-06 14:31:34 +02:00
ccc3af128c
CSM/SSM: Add on_mods_loaded callback ( #7411 )
...
* CSM/SSM: Add on_mods_loaded callback
2018-06-06 12:53:59 +02:00
a2de439a91
Fix builtin lua function os.tempfolder ( #7368 )
...
* Fix builtin lua function os.tempfolder
2018-06-05 23:08:10 +02:00