aboutsummaryrefslogtreecommitdiff
path: root/builtin
AgeCommit message (Collapse)Author
2018-07-10Android: Add 'aux' button (#7477)Muhammad Rifqi Priyo Susanto
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-09core.spawn_falling_node: Keep metadata (#7476)SmallJoker
2018-07-09Builtin/../misc.lua: Replace minetest. with core., improve codestyle (#7540)ClobberXD
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-30Log usage of /pulverize (#7503)Anand S
2018-06-28Mgvalleys: Fix 'mgvalleys_spflags' setting name (#7495)Paramat
2018-06-26Rename CSM flavours to restrictionsSmallJoker
& Satisfy LINT
2018-06-22Remove misleading documentation about IPv6 server announcingsfan5
2018-06-18Update to new ContentDB APIrubenwardy
2018-06-13Make os.tempfolder work correctly for MinGW & MSVC (#7443)nOOb3167
2018-06-12Add hasprivs chat command (#7336)Anand S
Require 'basic_privs' priv Only the online players are listed.
2018-06-11Fix the /shutdown command (#7431)SmallJoker
2018-06-10Fix typo (GH#7421)number Zero
2018-06-08Mapgen flags: Add 'biomes' global mapgen flag (#7355)Paramat
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-06Stop autoforward on BACKWARD key-press (#7417)tukkek
2018-06-06CSM/SSM: Add on_mods_loaded callback (#7411)Loïc Blot
* CSM/SSM: Add on_mods_loaded callback
2018-06-05Fix builtin lua function os.tempfolder (#7368)nOOb3167
* Fix builtin lua function os.tempfolder
2018-05-29Add crossview support (#7361)otdav33
2018-05-29Tidy up dlg_config_world.lua (#5351)you
Move code to pkgmgr
2018-05-20Fix missing ignore textures (#7326)you
2018-05-20Small usage changes for air and ignore items (#7305)Wuzzy
* Remove “you hacker you!” from node description * Prevent placement of ignore in builtin * Prevent giving of "unknown" explicitly
2018-05-20Add screenshots to online content browserrubenwardy
2018-05-16Add updating to online content browserrubenwardy
2018-05-16Pointed_thing_to_face_pos: Avoid crash when player is inside a node (#7342)Paramat
Avoid crash in some situations when player is inside a node, causing 'above' to equal 'under'. In this situation return 'under' which is the node position very close to the face position that would normally be returned.
2018-04-26Fix description wrapping in browse online contentrubenwardy
2018-04-24Mgvalleys: Update settingtypes.txtParamat
2018-04-19Add online content repositoryrubenwardy
Replaces mods and texture pack tabs with a single content tab
2018-04-19Builtin auth handler: Speed up file writing (#7252)SmallJoker
2018-04-15FOV: Raise lower limit to avoid zoom-loading of distant world (#7234)Paramat
In the client, raise lower limit from 30 to 45 degrees, to avoid server seeing this as a zoom and loading world beyond the server-set limit. Add minimum in settingtypes.txt and enforce lower limit when set using minetest.conf. In the server, distrust the client-sent FOV if below the heuristic zoom threshold and use the player object property 'zoom_fov' to check it, to protect against hacked clients.
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
2018-04-05Mgcarpathian: Remove insignificant 'base' noise variation (#7209)Paramat
Was only +-1 node over a scale of thousands of nodes. Replace with 'base_level' parameter value.
2018-04-02Add player inventory callbacksSmallJoker
2018-03-31ObjectRef: Add add_velocity() (#3208)you
Allow changing the velocity of objects relatively to their current velocity
2018-03-29core.rotate_node: Do not trigger after_place_node (#6900)SmallJoker
2018-03-29Optional alpha channel support for entitiesstujones11
2018-03-28Load dependencies and description from mod.confAndrew Ward
2018-03-28Add reasons to on_dieplayer and on_hpchangeAndrew Ward
2018-03-20Mgfractal / chunksize: Improve documentationparamat
2018-03-13Rename 'subgame' to 'game'paramat
2018-03-04Fix missing warningstream (or similar problem) (#7034)you
Use the --color command line parameter instead of a setting for coloured logs This fixes the missing warningstream bug, g_settings->get mustn't be used there. Also, the decision about en- or disabling log colours fits better to the command line parameters than minetest settings.
2018-02-25is_area_protected: Rename from intersects_protection (#7073)SmallJoker
* is_area_protected: Rename from intersects_protection Return first protected position Clarify docs: Mods may overwrite the function
2018-02-21Settingtypes.txt: Fix valleys dungeon ymax errorparamat
2018-02-20Dungeons: Add Y limits in all mapgensparamat
Preserve the upper limit used in mgvalleys.
2018-02-20Delete world dialog: Move buttons to avoid double click deletionMuhammad Rifqi Priyo Susanto
Move confirmation delete button to never overlap initial delete button, to avoid world deletion by accidental double click.
2018-02-19/shutdown can't do countdown when using reconnect and/or shutdown message ↵dopik
(#7055) Delay was converted from the param string and not the delay value, thus never using the actual given delay value when used in combination with other string values in the param, in this case reconnect and the shutdown messsage.
2018-02-19Add a refresh button to the serverlist (#6957)Tre
* add refresh button * Make search and refresh buttons smaller * Change to image button
2018-02-18Fix "Ignoring CONTENT_IGNORE redefinition" warning (#4393)you
minetest.override_item still passes to core
2018-02-15Add `on_auth_fail` callback (#7039)red-001
Called when a client fails to supply the correct password for the account it's attempting to login as.
2018-02-13Item entity: Delete in 'ignore' nodesparamat
2018-02-13Falling.lua: Delete falling node entities on contact with 'ignore'paramat
Prevents falling node entities entering the ignore at a world edge and resting on unloaded nodes 16 nodes below, unreachable, undiggable and still being processed by 'on step' because they don't revert to nodes.