summaryrefslogtreecommitdiff
path: root/builtin
Commit message (Collapse)AuthorAge
* Settingtypes: Correct documentation for mgfractalparamat2015-11-05
| | | | Use type 'string' for v3fs and add comments
* Mgfractal: Add documentation to conf.example and settingtypesparamat2015-11-04
|
* Add callback parameter for core.emerge_area()kwolekr2015-11-02
|
* minetest. to core.Rui9142015-10-31
|
* findSpawnPos: Add setting for max height above water levelparamat2015-10-29
| | | | | | | | Increase default from 6 to 16 to help with mgv7 and mgfractal Large-scale or alternative mapgens can result in a lowland spawn point not being found, causing a spawn at (0, 0, 0) possibly buried underground The max height is now settable to allow correct player spawn in any mapgen or when using custom noise parameters
* Fix parameter passing to gettext callPilzAdam2015-10-25
|
* Check if hitter has inventory when punching itemBlockMen2015-10-25
| | | | Fixes #3280
* Credits: Remove my nameRui2015-10-25
|
* Escape " in generated settings_translation_file.cppPilzAdam2015-10-25
|
* Fix setting commentsPilzAdam2015-10-24
|
* Don't allow games or mods to add secure. settingsPilzAdam2015-10-24
|
* Better gettext support for protocol version mismatch messagesest312015-10-24
| | | | | Previously, xgettext failed to resolve the dynamic call. Thanks to @JakubVanek for pointing this out.
* Improve Lua settings menuPilzAdam2015-10-24
| | | | | | | | | | | | * 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
* Add more ways to pass data to check_player_privsRobert Zenz2015-10-22
| | | | | | | | | | | The callback can now be invoked with either the player object or name as the first parameter, and with either a table or a list of strings, like this: minetest.check_player_privs(player_name, { shout = true, fly = true }) minetest.check_player_privs(player_name, "shout", "fly") minetest.check_player_privs(player, { shout = true, fly = true }) minetest.check_player_privs(player, "shout", "fly")
* Display sane output for empty descriptionsest312015-10-18
| | | | | | | | | | According to its man page, the function gettext(3) "may return a nonempty string" when msgid is "". This commit fixes a bug where the comment "" for some settings caused gettext to return a "nonempty string", in this case header info of the po file.
* New settings tab contain all possible settingsPilzAdam2015-10-17
| | | | | Settings are automatically parsed from builtin/settingtypes.txt The edit dialog automatically adjust based on the type of setting
* Refactor loggingShadowNinja2015-10-14
| | | | | | | | | - Add warning log level - Change debug_log_level setting to enumeration string - Map Irrlicht log events to MT log events - Encapsulate log_* functions and global variables into a class, Logger - Unify dstream with standard logging mechanism - Unify core.debug() with standard core.log() script API
* Localize digprop_err functionRui2015-10-12
|
* Add viewing range GUI settingkilbith2015-10-06
|
* Added minetest.wallmounted_to_dirFernando Carmona Varo2015-10-04
|
* Some map border related fixesest312015-09-29
| | | | | | | | | | | | | 1. Check for entity addition success in spawn_item implementation 2. Check for success in item_drop callback, so that the player doesn't lose the item if they are outside bounds and try to drop it. 3. When existing player joins game, check that their position is inside map bounds. If not, set their position to the return value of findSpawnPos(). 4. Make findSpawnPos() respect the border 2 fixes a lua crash if a player drops an item outside map bounds. 3 fixes an assertion crash if a player leaves when being outside map bounds, and then rejoins.
* Add /emergeblocks command and core.emerge_area() Lua APIkwolekr2015-09-23
|
* Replace "self program" with "this program" in fstk boilerplatesest312015-09-21
| | | | ... and remove trailing whitespace.
* Minor tweaks handle_settings_buttonsRui9142015-09-14
|
* Change my emailRui9142015-09-03
|
* Small fixes of minetest.has_featureRui2015-09-03
|
* Minor tweaks __builtin:falling_nodeRui2015-09-01
|
* Credits tab: fix accidental merger of two contributorsest312015-08-31
| | | | Fixes #3125
* Use gettext to "None" of texture pack listRui9142015-08-25
|
* Remove some emails from credits tabkwolekr2015-08-19
|
* Update credits tabkwolekr2015-08-19
|
* Client: disable mmdb modstoreest312015-08-19
| | | | | The service isn't online, and on the long term, mmdb will likekly be replaced with other services from the modding community.
* Don't do formspec escaping twice for loading descriptionest312015-08-14
|
* SAPI: Track last executed mod and include in error messageskwolekr2015-08-12
|
* Fix FSAA dropdown option reset after changing another dropdown optionjeanpatrick.guerrero@gmail.com2015-07-25
|
* Remove drivers dropdown in the settings tabkilbith2015-07-25
|
* Update my nameNovatux2015-07-24
|
* Optional reconnect functionalityest312015-07-23
| | | | | | Enable the server to request the client to reconnect. This can be done with the now extended minetest.request_shutdown([reason], [reconnect]) setting.
* Fix crash in mainmenu when loaded subgame does not have a "menu" directorysfan52015-07-21
|
* Allow random menu images for subgamessfan52015-07-21
|
* Add antialiasing UI settingMark Schreiber2015-07-18
| | | | | | | | | The Irrlicht engine supports antialiasing, and Minetest already supports saving an antialiasing setting in its configuration file. However, Minetest lacked UI elements to set this setting, and previously the only way to enable the feature was by hand-editing the configuration file. Add a drop-down menu that can enable antialiasing.
* Add ability to specify coordinates for /spawnentityMarcin2015-07-18
|
* Change texture pack description file nameExcaliburZero2015-07-18
| | | | | | Change the name for texture pack description files from "info.txt" to "description.txt" in order to keep the naming consistent between description files for both mods and texture packs. Also add backwards compatibility for texture packs that use "info.txt", and note in the log that "info.txt" is depreciated.
* Fix remnant bugs on mainmenujp2015-07-10
| | | | | - Stop attempting to start a world when no world's created/selected in server tab - Better world's indexes handling between subgames lists
* Add new leaves style - simple (glasslike drawtype)RealBadAngel2015-07-08
|
* Fix attempt to start a world when no world is selected/createdjeanpatrick.guerrero@gmail.com2015-07-04
|
* Set server_announce to world.mt and respect modes when changing subgameSokomine2015-07-02
|
* Fix world.mt not written when selecting modeSokomine2015-07-01
|
* Fix single click world selectest312015-06-30
|
* Fix bugs in mainmenujeanpatrick.guerrero@gmail.com2015-06-30
|