aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-13Translated using Weblate (Chinese (Simplified))Mivik
Currently translated at 89.1% (1148 of 1288 strings)
2020-06-13Translated using Weblate (Romanian)f0roots
Currently translated at 42.7% (551 of 1288 strings)
2020-06-13Translated using Weblate (Hungarian)Balázs Vámos
Currently translated at 70.7% (911 of 1288 strings)
2020-06-13Translated using Weblate (Lithuanian)restcoser
Currently translated at 15.3% (198 of 1288 strings)
2020-06-13Translated using Weblate (Polish)Dominik Kacprzak
Currently translated at 77.1% (994 of 1288 strings)
2020-06-13Translated using Weblate (Russian)Anonymous
Currently translated at 96.0% (1237 of 1288 strings)
2020-06-13Translated using Weblate (Russian)Andrei Stepanov
Currently translated at 96.0% (1237 of 1288 strings)
2020-06-13Translated using Weblate (Estonian)Janar Leas
Currently translated at 30.4% (392 of 1288 strings)
2020-06-13Translated using Weblate (Russian)Anonymous
Currently translated at 95.4% (1230 of 1288 strings)
2020-06-13Translated using Weblate (Russian)Andrei Stepanov
Currently translated at 95.4% (1230 of 1288 strings)
2020-06-13Translated using Weblate (Russian)Anonymous
Currently translated at 95.3% (1228 of 1288 strings)
2020-06-13Translated using Weblate (Russian)Andrei Stepanov
Currently translated at 95.3% (1228 of 1288 strings)
2020-06-13Translated using Weblate (Italian)Matteo Gheza
Currently translated at 95.4% (1229 of 1288 strings)
2020-06-13Translated using Weblate (Czech)Roman Ondráček
Currently translated at 58.9% (759 of 1288 strings)
2020-06-13Translated using Weblate (Czech)Marek Sebera
Currently translated at 58.9% (759 of 1288 strings)
2020-06-13Translated using Weblate (Czech)Anonymous
Currently translated at 58.9% (759 of 1288 strings)
2020-06-13Translated using Weblate (French)Jeannette L
Currently translated at 96.6% (1245 of 1288 strings)
2020-06-13Translated using Weblate (Malay)Muhammad Nur Hidayat Yasuyoshi
Currently translated at 100.0% (1288 of 1288 strings)
2020-06-13Translated using Weblate (Chinese (Simplified))ERDwaYbR
Currently translated at 87.8% (1132 of 1288 strings)
2020-06-13Translated using Weblate (Russian)pitchblack
Currently translated at 94.8% (1222 of 1288 strings)
2020-06-13Translated using Weblate (Polish)anonymous
Currently translated at 77.0% (993 of 1288 strings)
2020-06-13Translated using Weblate (French)William Desportes
Currently translated at 96.6% (1245 of 1288 strings)
2020-06-13Translated using Weblate (Hungarian)An0n3m0us
Currently translated at 69.9% (901 of 1288 strings)
2020-06-13Translated using Weblate (Dutch)SwampTurtle
Currently translated at 61.1% (788 of 1288 strings)
2020-06-13Translated using Weblate (Dutch)anonymous
Currently translated at 61.1% (788 of 1288 strings)
2020-06-13Translated using Weblate (Romanian)Larissa Piklor
Currently translated at 18.7% (242 of 1288 strings)
2020-06-13Translated using Weblate (Hungarian)Larissa Piklor
Currently translated at 69.8% (900 of 1288 strings)
2020-06-13Translated using Weblate (Turkish)Oğuz Ersen
Currently translated at 100.0% (1288 of 1288 strings)
2020-06-13Translated using Weblate (Hungarian)Ács Zoltán
Currently translated at 69.6% (897 of 1288 strings)
2020-06-13Translated using Weblate (Hindi)Eyekay49
Currently translated at 6.5% (85 of 1288 strings)
2020-06-13Added translation using Weblate (Hindi)sfan5
2020-06-13Exposing the zoom key to Lua API (#9903)Lars Müller
Co-authored-by: Raul Ferriz <raul.ferriz@gmail.com>
2020-06-13Server pushing media at runtime (#9961)sfan5
2020-06-12Add LevelDB player database (#9982)luk3yx
2020-06-11Use multiple light positions for CAO lightingsfan5
2020-06-11content_cao: Do not expire visuals for texture updatessfan5
2020-06-10Fix build error on Ubuntu 16.04 (again)sfan5
2020-06-10Fix build error on Ubuntu 16.04sfan5
2020-06-09Fix broken coloring of wielditems (#9969)Danila Shutov
Fixes a regression that appeared in 5.3.0-dev.
2020-06-09Some vector functions useful for working with rotations (#9572)NetherEran
* added vector.rotate * added vector.forward_from_rotation and vector.up_from_rotation * added vector.forward_up_to_rotatiton * fixed some bugs and formatting with vector functions * shortened name of some new vector functions and added documentation * made vector.rotate not require a unit vector as axis * fixed crash with vector.forward_up_to_rot * renamed new vector functions, made vector.rotate apply a rotation matrix, old vector.rotate is now called vector.rotate_around_axis * documented vector function changes * removed some whitespace to appease luacheck * implemented and fixed optimization of vector.rotate_around_axis by SmallJoker * added some unit tests for rotation vector functions * clarified that rotation vectors are in radians and according to the left hand rule * hopefully appeased luacheck * renamed rotation_to_horizontal to forward_at_rotation, rotation_to_vertical to up_at_rotation * handled cases where sin or cos are 0 in rotation vector functions * added more comments * clarified documentation of rotation vector functions * added more unit tests * changed way in which vector.rotate_around_axis is adjusted for left handed coordinate systems * made vector.rotate_around_axis actually left handed * unrolled matrix multiplication * removed vector.forward_at_rotation and vector.up_at_rotation * prettified vector.rotate_around_axis, made previous commits not break anything * removed references to removed vector.forward_at_rotation and vector.up_at_rotation * removed documentation of removed vector functions * clarified documentation and fixed styling of rotation vector functions * restyled comments minorly * spelling fixes and some hopefully better comments * allowed 'up' to be missing from vector.directions_to_rotation and removed requirement for unit vectors as arguments * made vector.rotate_around_axis() right handed again for consistency * documented previous changes * made matrix multiplication actually multiply * renamed vector.directions_to_rotation() to vector.dir_to_rotation() * optimized a distance comparison * Fixed potential false positive in unit tests. Co-authored-by: NetherEran <nethereran@hotmail.com>
2020-06-09LuaItemStack: Add __tostring metamethod (#8785)Paul Ouellette
* LuaItemStack: Add __tostring metamethod * Clean up LuaItemStack::checkobject
2020-06-09Fix player-to-object attachment teleport bug (#10008)hecktest
Fixes two bugs: * The camera offset was not applied to an object while detaching, briefly placing the irrlicht matrixnode in world space. * When attaching, the matrixnode's absolute position was evaluated without evaluating the parent first, resulting in zeroed positions.
2020-06-09TouchScreenGUI: fix some bugs, cleanupMoNTE48
2020-06-09TouchScreen Control: fix some bugs, cleanupMoNTE48
2020-06-09Fix real keyboard movements on touchscreen devicesMaksim
2020-06-09Hide tooltip after ETIE_LEFT_UP (for touch control)MoNTE48
2020-06-08devtest: Improve tool and formspec usabilitysfan5
also fix the yawsprite test entity
2020-06-07Reset touching_ground when in free_movesfan5
This corrects local player animation after enabling fly while standing on ground.
2020-06-07Fix Lua panic when error() message is not a stringPaul Ouellette
2020-06-07Recalculate mesh normals for CAOs (#10000)Danila Shutov