- Oct 27, 2015
-
-
kwolekr authored
-
- Oct 26, 2015
-
-
BlockMen authored
-
BlockMen authored
-
kwolekr authored
Also fix a potential seed truncation issue on platforms where the range of ptrdiff_t (the underlying type of lua_Integer) is too small.
-
kwolekr authored
-
est31 authored
abort() doesn't benefit from the high level abstractions from FATAL_ERROR.
-
kwolekr authored
-
kwolekr authored
-
est31 authored
Remove outdated loglevel list from a l_util.cpp comment, and rather point to the updated code.
-
- Oct 25, 2015
-
-
PilzAdam authored
-
BlockMen authored
Fixes #3280
-
Rui authored
-
BlockMen authored
- Disabled by default (except players) - Fixes #2984
-
PilzAdam authored
-
est31 authored
Previously, the invocation of Logger::addOutput(ILogOutput *out) led to an out of bounds write of the m_outputs vector, resulting in the m_silenced_levels array being modified. Fortunately, the only caller of that method was android system logging, and only since a few commits ago.
-
- Oct 24, 2015
-
-
PilzAdam authored
-
PilzAdam authored
-
paramat authored
Complete set of parameters for each of mandelbrot and julia sets The julia set structure often needs different iterations and scale
-
est31 authored
Fixes #3291 Thanks to @arpruss for reporting the bug, and suggesting the fix. Also, remove trailing whitespaces.
-
est31 authored
-
est31 authored
Previously, xgettext failed to resolve the dynamic call. Thanks to @JakubVanek for pointing this out.
-
est31 authored
-> Get rid of Logger::logToSystem and use normal downstream output system for android instead -> Give the downstream output system more information: enrich the log function of ILogOutput with information and add ICombinedLogOutput for easier use. -> Make Logger::getLevelLabel() static and public so that it can be used by downstream log output. -> Add g_ and m_ prefixes where required
-
PilzAdam authored
* 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
-
kwolekr authored
Thanks to SmallJoker for pointing this out.
-
BlockMen authored
fixes https://github.com/minetest/minetest_game/issues/537
-
cheapie authored
Index more columns in the action table of the rollback DB to improve the performance of /rollback_check
-
est31 authored
Flushes the buffer of rollback actions that wait to get saved in two more situations: 1. Flushes in the destructor of the rollback. This makes the server not forget the last < 500 rollback entries when it shuts down. 2. Flushes the rollback when /rollback_check is invoked. This is neccessary as otherwise it leads to confusion if users want to test the rollback functionality by placing a node and then executing the check on it, or if the actions were very recent out of other reasons.
-
kwolekr authored
- Fix thread name reset on start() - Fully reset thread state on kill() - Add unittests to check for correct object states under various circumstances
-
- Oct 23, 2015
-
-
paramat authored
Add findLiquidSurface() function to mapgen.cpp Update lua_api.txt
-
- Oct 22, 2015
-
-
Robert Zenz authored
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")
-
Leonardo authored
Currently translated at 72.6% (202 of 278 strings)
-
Rui authored
Currently translated at 100.0% (278 of 278 strings)
-
est31 authored
Currently translated at 100.0% (278 of 278 strings)
-
- Oct 19, 2015
-
-
Jun Zhang authored
Fixes #3262.
-
- Oct 18, 2015
-
-
paramat authored
Default is true for backwards compatibility Update lua_api.txt
-
Kahrl authored
-
Kahrl authored
-
est31 authored
Everywhere where wstrgettext was used, its output was converted back to utf8. As wstrgettext internally converts the return value from utf8 to wstring, it has been a waste. Remove the function, and use strgettext instead.
-
est31 authored
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.
-
- Oct 17, 2015
-
-
Kahrl authored
- setOpenedTrees(): this internal function was calling setSelected() to update m_selected. Since setSelected() calls autoScroll(), this caused the scrollbar to scroll back to the selected row in some cases when that shouldn't be done. For example, clicking the "+" to open a tree caused autoscroll. Fix this by making setOpenedTrees() modify m_selected directly. - setDynamicData(): set scrollbar position after calling setSelected(), not before. This avoids setSelected()'s autoscroll messing up the scrollbar position again. - setSelected(): If an invisible row is selected, open all parents of the selected row in order to make the selected row visible. This fixes the issue where all the trees are closed again whenever you return from the setting edit dialog to the settings tab.
-