<feed xmlns='http://www.w3.org/2005/Atom'>
<title>minetest.git/builtin/common, branch serversoundpack</title>
<subtitle>lizzy's patches for luanti
</subtitle>
<id>https://git.vlhl.dev/lizzy/luanti/minetest.git/atom?h=serversoundpack</id>
<link rel='self' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/atom?h=serversoundpack'/>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/'/>
<updated>2021-03-05T15:29:48+00:00</updated>
<entry>
<title>Translate builtin (#10693)</title>
<updated>2021-03-05T15:29:48+00:00</updated>
<author>
<name>Wuzzy</name>
<email>wuzzy2@mail.ru</email>
</author>
<published>2021-03-05T15:27:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=cafad6ac03348aa77e8ee4bb035840e73de4b2a9'/>
<id>urn:sha1:cafad6ac03348aa77e8ee4bb035840e73de4b2a9</id>
<content type='text'>
This PR is the second attempt to translate builtin.
Server-sent translation files can be added to `builtin/locale/`, whereas client-side translations depend on gettext.
</content>
</entry>
<entry>
<title>Replace 'minetest.' with 'core.' in builtin</title>
<updated>2021-02-11T10:18:22+00:00</updated>
<author>
<name>rubenwardy</name>
<email>rw@rubenwardy.com</email>
</author>
<published>2021-02-10T11:02:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=4db7fb4a3be9de29460919ff2dc042e0812f31bd'/>
<id>urn:sha1:4db7fb4a3be9de29460919ff2dc042e0812f31bd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix minetest.is_nan</title>
<updated>2020-12-24T21:07:04+00:00</updated>
<author>
<name>Lars Mueller</name>
<email>appgurulars@gmx.de</email>
</author>
<published>2020-12-24T13:48:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=8f72d4b2940f0bd5486e38bd58127d14a1762be8'/>
<id>urn:sha1:8f72d4b2940f0bd5486e38bd58127d14a1762be8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Ability to remove minetest.after once set (#10103)</title>
<updated>2020-09-23T17:11:56+00:00</updated>
<author>
<name>tenplus1</name>
<email>tenplus1@users.noreply.github.com</email>
</author>
<published>2020-09-23T17:11:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=34e3ede8eeb05e193e64ba3d055fc67959d87d86'/>
<id>urn:sha1:34e3ede8eeb05e193e64ba3d055fc67959d87d86</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add vector.offset (#10321)</title>
<updated>2020-08-29T15:41:29+00:00</updated>
<author>
<name>DS</name>
<email>vorunbekannt75@web.de</email>
</author>
<published>2020-08-29T15:41:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=28e87ce9d5fdf163c1eb0daf83279e949f84765d'/>
<id>urn:sha1:28e87ce9d5fdf163c1eb0daf83279e949f84765d</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>LuaItemStack: Add __tostring metamethod (#8785)</title>
<updated>2020-06-09T17:37:25+00:00</updated>
<author>
<name>Paul Ouellette</name>
<email>oue.paul18@gmail.com</email>
</author>
<published>2020-06-09T17:37:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=b16f841756ef86e83710ad2fddf2cd5bafdf4bcc'/>
<id>urn:sha1:b16f841756ef86e83710ad2fddf2cd5bafdf4bcc</id>
<content type='text'>
* LuaItemStack: Add __tostring metamethod

* Clean up LuaItemStack::checkobject</content>
</entry>
<entry>
<title>Add minetest.is_creative_enabled</title>
<updated>2020-05-29T20:45:40+00:00</updated>
<author>
<name>Wuzzy</name>
<email>Wuzzy2@mail.ru</email>
</author>
<published>2020-05-26T00:11:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=65a6a316d081d3951438bbbcfce74c9c65db407a'/>
<id>urn:sha1:65a6a316d081d3951438bbbcfce74c9c65db407a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>builtin: Move common/async_event.lua to mainmenu/async_event.lua</title>
<updated>2020-05-17T19:37:01+00:00</updated>
<author>
<name>sfan5</name>
<email>sfan5@live.de</email>
</author>
<published>2020-05-15T14:38:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=11723cffe011e99c1092388958fb1a047ab1c09c'/>
<id>urn:sha1:11723cffe011e99c1092388958fb1a047ab1c09c</id>
<content type='text'>
It only works in the context of the mainmenu.
</content>
</entry>
<entry>
<title>Allow placing auto-rotating nodes on other nodes in on_rightclick (#9859)</title>
<updated>2020-05-13T11:57:05+00:00</updated>
<author>
<name>Yaman Qalieh</name>
<email>ybq987@gmail.com</email>
</author>
<published>2020-05-13T11:57:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=6c607e20828f97f950038dfb86891a74afb6f755'/>
<id>urn:sha1:6c607e20828f97f950038dfb86891a74afb6f755</id>
<content type='text'>
</content>
</entry>
</feed>
