aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-09Remove fgettext("") in builtinWuzzy
This call is useless and wrong, the empty string has a special meaning in Gettext.
2019-02-09Fix Address::isLocalhost algorithmLoic Blot
2019-02-09Disable confirmation dialog on localhostrubenwardy
2019-02-09numeric: Fix clang, broken since d5456daSmallJoker
2019-02-09Don't append itemname to itemname in tooltip (#8176)Wuzzy
2019-02-07Use true pitch/yaw/roll rotations without loss of precision by pgimeno (#8019)Paul Ouellette
Store the rotation in the node as a 4x4 transformation matrix internally (through IDummyTransformationSceneNode), which allows more manipulations without losing precision or having gimbal lock issues. Network rotation is still transmitted as Eulers, though, not as matrix. But it will stay this way in 5.0.
2019-02-04Fix cloud color in loading screen and main menu (#8174)random-geek
2019-02-04Update color of main menu clouds (#8172)random-geek
2019-02-04Update manpage (#8169)Paul Ouellette
2019-02-03Content store: Fix assertion failed on unsuccessful package list fetchrubenwardy
Fixes #8168
2019-02-03Rename 'Content Store' to 'Online Content Repository' in Advanced Settingsrubenwardy
2019-02-03Add setting to hide mature content from ContentDBrubenwardy
2019-02-03Fix core.download_file() creating empty files on HTTP errorrubenwardy
2019-02-03Fix rename modpack dialog not appearing to take affectrubenwardy
2019-02-03Fix modpack rename dialog selecting the wrong modnumber Zero
2019-02-03DragonFly BSD is somewhat identical to FreeBSD (#8159)Leonid Bobrov
2019-02-03Force player save before kicking on player shutdown (#8157)Loïc Blot
2019-02-03Protocol Docs: Python check bump to Python 3Julien Palard
2019-02-03Content store: Fix overlapping labelsrubenwardy
2019-02-02Update translationsTranslations
2019-02-02Move missing translations warnings to verbosestream (#8156)Nathanaël Courant
They should not spam the console and logs.
2019-01-31Settings: Slightly increase block generate, block send, object send ↵Paramat
distances (#8147)
2019-01-31Content store: Fix storage leak by storing screenshots in cache (#8137)rubenwardy
2019-01-30Content store: Use composite key to track installations (#8054)rubenwardy
Fixes #7967 'Package manager doesn't track content reliably'.
2019-01-28Cleanup translation filesLoïc Blot
These were broken on the previous commits
2019-01-28Fix wrong it minetest.po fileLoïc Blot
2019-01-27Run updatepo.shLoic Blot
2019-01-27Update translationsTranslations
2019-01-26Add setting to disable confirmation on new player registration (#8102)Muhammad Rifqi Priyo Susanto
2019-01-26Rename 'Advanced Settings' button to 'All Settings' (#8131)Paramat
2019-01-26Fix pkgmgr game install with RUN_IN_PLACE=0 (#8113)Paul Ouellette
2019-01-25blitToVManip: Check out-of-bounds using node position not index (#8127)Paramat
Previously, when using 'place on vmanip' to add a schematic to a lua voxelmanip, if part of the schematic was outside the voxelmanip volume, the outside part would often appear in a strange place elsewhere inside the voxelmanip instead of being trimmed off. This was due to the out-of-bounds check checking the index. A position outside the voxelmanip can have an index that satisfies '0 <= index <= voxelmanip volume', causing the node to be placed at a strange position inside the voxelmanip. Use 'vm->m_area.contains(pos)' instead. Move index calculation to later in the code to optimise.
2019-01-22Fix warnings about dungeongen.cpp memcpy() and unused variable in ↵Paramat
MapBlock::deSerializeNetworkSpecific() (#8122) * Fix warning about dungeongen.cpp memcpy() * Fix unused variable in MapBlock::deSerializeNetworkSpecific() * Fix unused variable a simpler way
2019-01-21Fix randomly rejected form field submits (#8091)Jozef Behran
If a formspec is submitted from a form fields handling callback of another form (or "formspec shown from another formspec"), the fields submitted for it can get rejected by the form exploit mitigation subsystem with a message like "'zorman2000' submitted formspec ('formspec_error:form2') but server hasn't sent formspec to client, possible exploitation attempt" being sent to logs. This was already reported as #7374 and a change was made that fixed the simple testcase included with that bug report but the bug still kept lurking around and popping out in more complicated scenarios like the advtrains TSS route programming UI. Deep investigation of the problem revealed that this sequence of events is entirely possible and leads to the bug: 1. Server: show form1 2. Client *shows form1* 3. Client: submits form1 4. Server: show form2 5. Client: says form1 closed 6. Client *shows form2* 7. Client: submits form2 What happens inside the code is that when the server in step 4 sends form2, the registry of opened forms is updated to reflect the fact that form2 is now the valid form for the client to submit. Then when in step 5 client says "form1 was closed", the exploit mitigation subsystem code deletes the registry entry for the client without bothering to check whether the form client says was closed just now is indeed the form that is recorded in that entry as the valid form. Then later, in step 7 the client tries to submit its valid form fields, these will be rejected because the entry is missing. It turns out the procedure where the broken code resides already gets the form name so a simple "if" around the offending piece of code fixes the whole thing. And advtrains TSS agrees with that.
2019-01-20Make advanced settings noiseparams strings translatable (#8062)Wuzzy
Various minor language improvements in settingtypes.txt.
2019-01-19Advanced settings noiseparams: No tailing comma for empty flagssrifqi
Previously, when editing noiseparams and disabling all the noise flags, the noiseparam is displyed in advanced settings with a tailing comma.
2019-01-19Advanced settings noiseparams: Remove '}' left in .confSmallJoker
Previously, when editing noiseparams then restoring them to the default, the final '}' was not removed from minetest.conf.
2019-01-19Remove incorrect feature flag (#8086)Paul Ouellette
And document the versions that introduced the features.
2019-01-18Optimize subgames search a little bit (#8096)Jozef Behran
Reserve space for the list of games in findWorldSubgame. The performance gain is pretty much negligible but this change also gets rid of a performance warning by CLANG TIDY.
2019-01-16Fix some misspellings (#8104)Paul Ouellette
2019-01-13world.mt: Only accept true/false/nil values (#8055)SmallJoker
This patch will make distinguishable mods in modpacks possible in the future `nil` checks are required to provide backwards-compatibility for fresh configured worlds
2019-01-13Speed up the craft definition handling (#8097)Jozef Behran
The craft definition handling code that collects the names of the craftable nodes suffers from vector reallocation performance hits, slowing down instances with lots of crafting recipes (VanessaE's DreamBuilder and most public server some to my mind when thinking about this). As in each instance the size of the resulting vector is already known, add a reserve() call before the offending loops to allocate the needed chunk of memory within the result vector in one go, getting rid of the overhead.
2019-01-12Optimize path finalization in pathfinder (#8100)Jozef Behran
The pathfinder needs quite a bunch of items to add to the resulting list. It turns out the amount of the space needed for the finalized path is known in advance so preallocate it to avoid a burst of reallocation calls each time something needs to look for a path.
2019-01-12Fix fake LINT check success (#8092)Jozef Behran
The code 'if [ -z ${something} ]; then ... fi' means "if ${something} is an empty string, yell at the command line about 'binary operator expected' and ignore the body of the if statement, if ${something} is not an empty string, the condition is false so ignore the body of the if statement" which clearly isn't what the author wanted. Fix it by adding a few quotes around the offending ${something}.
2019-01-10Make sqlite3 the default auth backend (#8085)Paul Ouellette
2019-01-10Import strstr function from FreeBSD 11 libcLoic Blot
2019-01-09Android build fixesLoïc Blot
This fixes #8079
2019-01-09pkgmgr: Fix games list not being updated after game installrubenwardy
Fixes #8074
2019-01-09Settingtypes.txt: Rewrite documentation of 'num_emerge_threads' (#8066)Paramat
2019-01-07Fix a crash on Android with Align2Npot2 (#8070)Loïc Blot
* Fix a crash on Android with Align2Npot2 glGetString can be NULL. If stored in a string it triggers a SIGSEGV. Instead do a basic strstr and verify the pointer * Better Align2Npot2 check (+ performance)