MoNTE48
695e833477
Merge remote-tracking branch 'upstream/stable-0.4' into sync
2019-04-01 20:18:54 +02:00
Maksim Gamarnik
b75c72f95e
Move killme to builtin, TNT fix and new chicken model by @stujones11
2018-08-31 23:21:40 +02:00
MoNTE48
4602e0cac8
Small fix
2018-08-23 00:39:24 +02:00
MoNTE48
2542d798f5
stack_max = 64, fix loadingworld background
2018-08-22 00:39:35 +02:00
stujones11
a573ff7435
Restrict mapgens available to Android & iOS by default
2018-08-19 23:41:36 +02:00
MoNTE48
64ae5c54cc
Update mainmenu and iOS defaultsettings, iOS: v.1.1.20
2018-08-11 14:57:14 +02:00
MoNTE48
4b7b744bf7
Minor upd menu, tmp fix sign_wall
2018-07-20 14:32:08 +02:00
MoNTE48
88135921a6
iOS: 1.1.18 - fix text on ja, ko, he; compress logo
2018-06-13 23:41:09 +02:00
SmallJoker
14d20f5827
Builtin auth handler: Speed up file writing ( #7252 )
2018-06-03 17:32:00 +02:00
SmallJoker
fe41725e50
core.rotate_node: Do not trigger after_place_node ( #6900 )
2018-06-03 17:32:00 +02:00
Muhammad Rifqi Priyo Susanto
c2e39b9363
Delete world dialog: Move buttons to avoid double click deletion
...
Move confirmation delete button to never overlap initial delete button,
to avoid world deletion by accidental double click.
2018-06-03 17:32:00 +02:00
dopik
f8cc92c190
/shutdown can't do countdown when using reconnect and/or shutdown message ( #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-06-03 17:32:00 +02:00
you
2a4fbbbff8
Fix "Ignoring CONTENT_IGNORE redefinition" warning ( #4393 )
...
minetest.override_item still passes to core
2018-06-03 17:32:00 +02:00
paramat
6d346a817b
Item entity: Delete in 'ignore' nodes
2018-06-03 17:32:00 +02:00
paramat
529f00a240
Falling.lua: Delete falling node entities on contact with 'ignore'
...
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.
2018-06-03 17:32:00 +02:00
you
7725030067
Allow dumping userdata ( #7012 )
2018-06-03 17:32:00 +02:00
red-001
bb28afcfc3
Move setlocale
from Lua to C++.
2018-06-03 17:32:00 +02:00
you
880a25c921
Add minetest.is_player ( #7013 )
...
* Add minetest.is_player
* First use for is_player
2018-06-03 17:32:00 +02:00
SmallJoker
8a849e893a
Builtin: Fix handle_node_drops crash with nil digger
2018-06-03 17:32:00 +02:00
SmallJoker
8fba3c93d5
core.rotate_node: Run callbacks like with any regular placed node ( #6648 )
2018-06-03 17:32:00 +02:00
ezhh
222fab3d20
Improve Settings tab button alignments
2018-06-03 17:32:00 +02:00
Ezhh
6f803b9c89
Remove incorrect entry from settingtypes
2018-06-03 17:32:00 +02:00
sfan5
0fe3e7574d
Make use of safe file writing in auth handler ( fixes #6576 )
2018-06-03 17:32:00 +02:00
Ezhh
a65a46b889
Fix Settings tab formspec alignment ( #6585 )
2018-06-03 17:32:00 +02:00
raymoo
7b8288d605
Fix default item callbacks to work with nil users ( #5819 )
...
* Fix default item callbacks to work with nil users
* item.lua: Handle node drops for invalid players
The if-condition for the dropping loop is the same as `inv`, which means that the 2nd possible definition of `give_item` is never used.
Remove redundant `local _, dropped_item`
2018-06-03 17:32:00 +02:00
rubenwardy
cc48c95ca7
Profiler: Fix var args not being passed to callback register function
...
Fixes #6517
2018-06-03 17:31:59 +02:00
Rob Blanckaert
c56c3d8d6f
Add setting for near plane distance. ( #6395 )
...
* Allow setting the near plane
* - Add near_plane limit of 0.5 to prevent x-ray.
- Add more details to near_plane setting.
2018-06-03 17:31:59 +02:00
DTA7
e8286e8894
Set placer to nil instead of a non-functional one in item_OnPlace ( #6449 )
...
* Set placer to nil instead of a non-functional one
This requires nil checks in core.rotate_node and core.rotate_and_place.
2018-06-03 17:31:59 +02:00
tenplus1
b1fae4c7be
Fix Rotate Node Placement ( #6424 )
...
This properly checks for creative mode or privilege when using fixed rotate_node() function.
2018-06-03 17:31:59 +02:00
sfan5
5b2461c713
Fix core.wrap_text and make its behaviour consistent with the docs
...
Code based on initial implementation by @dsohler.
2018-06-03 17:31:59 +02:00
Dániel Juhász
9d40d89d27
Make dropped items colorable
2018-06-03 17:31:59 +02:00
Dániel Juhász
322e5aaf92
Automatic item and node colorization ( #5640 )
...
* Automatic item and node colorization
Now nodes with a palette yield colored item stacks, and colored items
place colored nodes by default. The client predicts the colorization.
* Backwards compatibility
* Use nil
* Style fixes
* Fix code style
* Document changes
2018-06-03 17:31:59 +02:00
red-001
0664b5f772
Add a server-sided way to remove color codes from incoming chat messages ( #5948 )
...
These code be generated by CSM, a modded client or just copy and pasted by the player.
Changes
- Update configuration example and setting translation file.
- Remove colour codes before logging chat.
- Add setting to remove colour codes before processing the chat.
2018-06-03 17:31:59 +02:00
red-001
c399f5a541
Fix sending color codes to clients that don't support them. ( #5950 )
...
Also remove `disable_escape_sequences` since it's not needed anymore.
2018-06-03 17:31:59 +02:00
DS
f736226c1a
make ret variable in /builtin/mainmenu/tab_credits.lua local ( #5942 )
2018-06-03 17:31:59 +02:00
Maksim Gamarnik
ec3b665a7f
iOS: 1.0.13 release
2018-03-19 21:56:18 +02:00
kilbith
c67e8048d0
New Main Menu design ( #101 )
2017-09-04 15:51:09 +03:00
Maksim Gamarnik
099ba7bea9
iOS minor fix
2017-08-29 23:05:03 +03:00
sfan5
4e05929a8b
Add libcurl to iOS and enable multiplayer
2017-08-16 17:54:50 +03:00
Paramat
04aa74f68a
Mono font path setting: Fix path to missing font ( #96 )
...
Previous path was to 'liberationmono.ttf' which does not exist, this caused
a crash when trying to test mgv7p.
Change to 'Cousine-Regular.ttf' as in latest Minetest.
2017-08-02 01:44:28 +03:00
Paramat
48f77eb4a9
Credits menu: Make undeclared global variable 'ret' local ( #86 )
2017-07-21 08:02:33 +03:00
Maksim Gamarnik
4d948c4b9c
Fix builtin
2017-07-20 00:36:10 +03:00
Maksim Gamarnik
97a8512c76
Fix iOS port [Part1]
2017-06-16 23:57:19 +03:00
Maksim Gamarnik
567db6b2b0
Fix builtin and textures
2017-06-12 03:05:57 +03:00
Maksim Gamarnik
4cd987b653
Merge Minetest 0.4.16
2017-06-06 23:03:34 +03:00
rubenwardy
fe046fab8a
Update credits
...
The following algorithm was used when selecting contributors:
* Every non-trivial contributor from the current release,
Non-trivial meaning more than X non-trivial commits, not counting documentation/translation changes
* The top Y contributors from the last 4 years.
* Previous contributor means no contributions since a few months before the last release.
In the future this should be automated
2017-06-03 14:28:36 -04:00
red-001
994802a774
Remove unimplemented setting movement_speed_descend
( #5892 )
2017-06-03 14:44:04 +02:00
Wuzzy
80fe516e4e
Remove “inf” argument from shutdown command help ( #5880 )
2017-06-02 17:16:30 +02:00
Nathan Salapat
c09e16ff5b
Added missing levels to logging menu ( #5836 )
...
* Added missing levels to logging menu
Added none and error options to the debug_log_level in the advance settings.
2017-05-28 09:23:06 +02:00
berkut
d08b2be960
Update tab_credits.lua ( #76 )
2017-05-24 12:35:53 +03:00