summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* num_emerge_threads: Fix documentation of automatic selectionparamat2019-03-17
|
* Add newline before itemstring in item tooltip (#8213)Wuzzy2019-03-17
|
* core.after: Improve assertion message (#8388)ANAND2019-03-17
|
* Builtin: Add vector.angle(). Returns the angle between 2 vectors (#7738)ANAND2019-03-17
|
* Lua_api.txt: Document blockpos, coordinate conversion, map terminology (#8376)Paramat2019-03-16
| | | Also fix and improve LVM 'calc_lighting()' warning.
* num_emerge_threads: Warn of crashes when > 1 (#8357)Paramat2019-03-14
|
* LINT fixes since recent tooling updateLoïc Blot2019-03-14
|
* Update our tooling (Clang 5 -> 7, GCC 7 -> 8)Loïc Blot2019-03-14
| | | | | | | | This change permits to use up-to-date compilers, clang-tidy and clang-format It also refactor the tidy/format step to drop the binary selection from scripts and perform it directly in travis
* Valleys mapgen code rewrite (#8101)Paramat2019-03-14
| | | | | | | | | | | | Shorter, simpler, clearer and more consistent with other mapgens, while preserving functionality. Base terrain shape is unchanged. With the 'vary river depth' option disabled, river surface level is unchanged. Behaviour of the 4 heat/humidity/river depth options is very slightly changed due to bugfixes and code cleanup (the mapgen is 'unstable'). Apply heat and humidity gradients above water_level instead of above y = 0.
* Drop GUIConfirmRegistration::m_address unused fieldLoïc Blot2019-03-12
|
* Fix cast from const by accessing string data directly (#8354)rubenwardy2019-03-12
| | | Fixes #8327
* HPChange Reason: Fix push after free, and type being overwritten (#8359)rubenwardy2019-03-12
| | | | | | * HPChange Reason: Fix push after free, and type being overwritten Fixes #8227 and #8344
* Fix serialization of std::time_t by casting to u64 first (#8353)rubenwardy2019-03-10
| | | Fixes #8332
* Document the `float` special group (#8306)DS2019-03-10
|
* Display pitch angle in debug menu (#8321)Ragulan R2019-03-10
|
* Confirm registration GUI: Remove positional strings to fix Windows bug (#8258)Paramat2019-03-10
| | | | Positional strings don't work on some Windows builds. Remove server address string, leave player name string present.
* Abort when trying to set a not registered node (#7011)HybridDog2019-03-07
| | | | | | I removed the MapNode constructor which takes a nodename and gives the node's id or CONTENT_IGNORE The code which used this constructor (two places) now handles the situation of not registered nodes correctly: * minetest.set_node and similar functions make minetest crash when a not registered node is passed * reverting a node with rollback aborts if the node is not registered
* World config: Make depends easier to read (#7396)HybridDog2019-03-07
| | | | | | | | | | | | * Do not always show every depends textfieds When there are no dependencies, it does not longer show an empty list. * Adjust the list height to avoid a scrollbar when possible * change minimum height and no dependencies message * Do not get depends for modpacks
* Optimize string handling in path search (#8098)Jozef Behran2019-03-07
| | | | | | Use "append" method to construct the various game paths instead of wasteful string concatenation. Additionally, use a temporary to extract and reuse a result of a few common subexpressions to further reduce the overhead.
* Optimize interaction distance checker (#8193)Jozef Behran2019-03-07
| | | | | The "what" parameter is being passed by value, most likely by accident as the type is "const std::string". Convert it to a reference by adding the missing "&".
* Update a few dependency versions for buildbot (#8319)sfan52019-03-07
|
* Fix detach inventory serialisation (#8331)rubenwardy2019-03-07
|
* Fix incorrect string length check after castrubenwardy2019-03-06
|
* Fix clang tidy error due to incorrect use of quotes for characterrubenwardy2019-03-06
|
* Change 'num_emerge_threads' default to 1 (#8303)Paramat2019-03-05
|
* Add math.factorial (#8298)HybridDog2019-03-05
|
* Add Android keystore to the repositoryLoic Blot2019-03-05
| | | | Password is not included :)
* Add sounds for falling and attached nodes (#7719)DS2019-03-05
| | | | | | | | | * Add sounds for falling and attached nodes The sound specified in `node_definition.sounds.fall` is used. When a falling node is spawned at a position or an attached node drops, the sound is played at this position. * allow all sorts of soundspecs
* Fix --color command line parameter ignorance (#7173)HybridDog2019-03-05
| | | | | | | | | | | | | | | | | | | | * Fix color command line parameter ignorance * coloured log: Support detecting the tty on windows * Print an error message when setting something invalid as color mode instead of silently using mode never * Revert "coloured log: Support detecting the tty on windows" This reverts commit 4c9fc6366487ac0e6799e181796ca594797bb6f8. It didn't work for travis and belongs to a separate PR * Allow adjusting the log color with an environment variable If --color is not passed to minetest, is used to decide on the log colorization. Minetest settings can not be used instead of an environment variable because logs may appear before loading them. * fix empty if body
* Replace for loop with call to standard library function (#8194)Benjamin Lindley2019-03-05
| | | This loop makes multiple passes over m_stack (type std::list) in order to remove all elements with a specified value. Replacing the loop with a call to std::list::remove does the same job, but in only one pass.
* Hide uninstall package button on unmodifiable paths (#8255)rubenwardy2019-03-05
|
* Add referer to remote media requests. (#8135)sofar2019-03-05
| | | | | | | | | | This sends the following header to a remote media server: Referer: minetest://<server_name>:port This was verified with CTF and the Minetest Public Remove Media server. If the servername was a plain IPv6 address it will contain `:` characters and will be encapsulated in `[]` to be a valid URI.
* getS16NoEx() returns true unless syntactical error in conf. (#8304)sofar2019-03-05
| | | | | | | | | | | | | | | | The getS16NoEx() handler will return true unless there is a `[num_emerge_threads]` line in the `minetest.conf` at which point the excption handler part is reached. Due to the fact that `defaultsettings.cpp` has a default value set for this setting, that never will happen. Because of this, the code will never check the number of threads on the system, and keep `nthreads = 0`. If that happens, the value is changed to `1` and only 1 emerge thread will be used. The default should be set to `1` instead, due to the potential unsafe consequences for the standard sqlite map files, but that should be a separate commit that also adds documentation for that setting. This commit focuses on removing this `hiding` bug instead.
* Continue with 5.1.0-devsfan52019-03-04
|
* Bump version to 5.0.0sfan52019-03-04
|
* Bump android version codeLoïc Blot2019-03-03
|
* Don't include and link to gettext if gettext is not found (#8305)adrido2019-03-02
|
* README: Remove references to Minecraft and InfiniMiner (#8260)ANAND2019-03-02
|
* Fix particle spawners not visible since CSM spawner implementation (#8289)Loïc Blot2019-03-01
| | | | | * Drop the ID mapper, use a big u64 instead. This will permit to resync server ids properly with the manager code * Modernize some code parts (std::unordered_map, auto) * generate id on client part on U32_MAX + 1 ids, lower are for server ids
* Revert "Revert CSM particles commit to fix particle spawner bug for 5.0.0 ↵Loïc Blot2019-02-26
| | | | | | (#8288)" This reverts commit 01cd63bd3bca0192dab2834faf414b022706a77e.
* Fix build since translation updatesLoïc Blot2019-02-26
|
* Revert CSM particles commit to fix particle spawner bug for 5.0.0 (#8288)Paramat2019-02-26
| | | | Reverts 5dab7426451842793b183fbd961ad2ae83c8acbd "[CSM] Add functions to create particles and particlespawners."
* Run updatepo.shTranslations2019-02-24
|
* Update translationsTranslations2019-02-24
|
* Update minetest.conf.example and settings_translation_file.cpp (#8278)Paramat2019-02-23
|
* Fix files with CRLF line endings in translations (#8280)Nathanaël Courant2019-02-23
|
* Minimap: Fix radar restriction broken by 9649e47SmallJoker2019-02-23
| | | | | Server-side radar restriction is now possible again Thanks to @pgimeno for this nice catch.
* Settingtypes.txt: Remove 2 lines missed in a recent commit (#8277)Paramat2019-02-23
|
* Attend to LINT sillyness (#8276)Paramat2019-02-23
|
* Remove 's' from 'automatic forwards' (#8272)ANAND2019-02-23
|