<feed xmlns='http://www.w3.org/2005/Atom'>
<title>minetest.git/doc, branch 5.3.0</title>
<subtitle>lizzy's patches for luanti
</subtitle>
<id>https://git.vlhl.dev/lizzy/luanti/minetest.git/atom?h=5.3.0</id>
<link rel='self' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/atom?h=5.3.0'/>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/'/>
<updated>2020-06-23T16:59:02+00:00</updated>
<entry>
<title>Document deprecation of *_hovered and *_pressed styles (#10092)</title>
<updated>2020-06-23T16:59:02+00:00</updated>
<author>
<name>v-rob</name>
<email>robinsonvincent89@gmail.com</email>
</author>
<published>2020-06-23T16:59:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=f7c78993f61e410f969f981c31833e465e015fde'/>
<id>urn:sha1:f7c78993f61e410f969f981c31833e465e015fde</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix typo (#10043)</title>
<updated>2020-06-17T17:59:02+00:00</updated>
<author>
<name>oilboi</name>
<email>47129783+oilboi@users.noreply.github.com</email>
</author>
<published>2020-06-17T17:59:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=a1b444bb61e6c9dcb0581a8550fd7795a3555cec'/>
<id>urn:sha1:a1b444bb61e6c9dcb0581a8550fd7795a3555cec</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make shading of CAOs optional (#10033)</title>
<updated>2020-06-16T19:48:31+00:00</updated>
<author>
<name>Danila Shutov</name>
<email>dcbrwn2@gmail.com</email>
</author>
<published>2020-06-16T19:48:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=3a6dfda358112e2fb5d6f887a1a1e936eacddadd'/>
<id>urn:sha1:3a6dfda358112e2fb5d6f887a1a1e936eacddadd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Exposing the zoom key to Lua API (#9903)</title>
<updated>2020-06-13T20:46:20+00:00</updated>
<author>
<name>Lars Müller</name>
<email>34514239+appgurueu@users.noreply.github.com</email>
</author>
<published>2020-06-13T20:46:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=e7e065f553b430173e9112ad55c7046cfc02f2c5'/>
<id>urn:sha1:e7e065f553b430173e9112ad55c7046cfc02f2c5</id>
<content type='text'>

Co-authored-by: Raul Ferriz &lt;raul.ferriz@gmail.com&gt;</content>
</entry>
<entry>
<title>Server pushing media at runtime (#9961)</title>
<updated>2020-06-13T17:03:26+00:00</updated>
<author>
<name>sfan5</name>
<email>sfan5@live.de</email>
</author>
<published>2020-06-13T17:03:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=2424dfe007e451bb02f87884c2b272cf307d6e7c'/>
<id>urn:sha1:2424dfe007e451bb02f87884c2b272cf307d6e7c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add LevelDB player database (#9982)</title>
<updated>2020-06-12T16:54:20+00:00</updated>
<author>
<name>luk3yx</name>
<email>luk3yx@users.noreply.github.com</email>
</author>
<published>2020-06-12T16:54:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=982a030f330bd4f4953ed7d4a7f88286f6fd645d'/>
<id>urn:sha1:982a030f330bd4f4953ed7d4a7f88286f6fd645d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Some vector functions useful for working with rotations (#9572)</title>
<updated>2020-06-09T17:38:39+00:00</updated>
<author>
<name>NetherEran</name>
<email>55532075+NetherEran@users.noreply.github.com</email>
</author>
<published>2020-06-09T17:38:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=7148834440d10bc211628aa2652e31166bdd58a0'/>
<id>urn:sha1:7148834440d10bc211628aa2652e31166bdd58a0</id>
<content type='text'>
* 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 &lt;nethereran@hotmail.com&gt;</content>
</entry>
<entry>
<title>Restore visual_scale support for nodeboxes (and allfaces) (#9906)</title>
<updated>2020-06-06T20:25:18+00:00</updated>
<author>
<name>Vitaliy</name>
<email>numzer0@yandex.ru</email>
</author>
<published>2020-06-06T20:25:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=e746607d0f8531e3a8b12cc45294aecf36217b17'/>
<id>urn:sha1:e746607d0f8531e3a8b12cc45294aecf36217b17</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add HTTP API to main menu (#9998)</title>
<updated>2020-06-06T16:17:08+00:00</updated>
<author>
<name>rubenwardy</name>
<email>rw@rubenwardy.com</email>
</author>
<published>2020-06-06T16:17:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=60bab8b2d7b61383188c10f5d931dc7b5522d042'/>
<id>urn:sha1:60bab8b2d7b61383188c10f5d931dc7b5522d042</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add disable_jump check for the player's feet</title>
<updated>2020-05-29T20:53:58+00:00</updated>
<author>
<name>MoNTE48</name>
<email>MoNTE48@mail.ua</email>
</author>
<published>2019-12-11T19:03:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=34862a644256f2717923de6d35288114a84acd19'/>
<id>urn:sha1:34862a644256f2717923de6d35288114a84acd19</id>
<content type='text'>
</content>
</entry>
</feed>
