<feed xmlns='http://www.w3.org/2005/Atom'>
<title>minetest.git/src/unittest, branch 0.4.14</title>
<subtitle>lizzy's patches for luanti
</subtitle>
<id>https://git.vlhl.dev/lizzy/luanti/minetest.git/atom?h=0.4.14</id>
<link rel='self' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/atom?h=0.4.14'/>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/'/>
<updated>2016-04-23T17:54:11+00:00</updated>
<entry>
<title>Escape more strings: formspecs, item descriptions, infotexts...</title>
<updated>2016-04-23T17:54:11+00:00</updated>
<author>
<name>Ekdohibs</name>
<email>nathanael.courant@laposte.net</email>
</author>
<published>2016-04-04T16:31:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=48939df9a5ef1ff20f4f9717d1341b51a50dff14'/>
<id>urn:sha1:48939df9a5ef1ff20f4f9717d1341b51a50dff14</id>
<content type='text'>
Also, change the escape character to the more standard \x1b
Thus, it can be used in the future for translation or colored text,
for example.
</content>
</entry>
<entry>
<title>Implement AreaStore serialization</title>
<updated>2016-03-07T21:33:20+00:00</updated>
<author>
<name>ShadowNinja</name>
<email>shadowninja@minetest.net</email>
</author>
<published>2015-10-30T23:27:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=821551a2669123ac9a476894d65b5efe10026040'/>
<id>urn:sha1:821551a2669123ac9a476894d65b5efe10026040</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move AreaStore to util</title>
<updated>2016-03-07T21:33:20+00:00</updated>
<author>
<name>ShadowNinja</name>
<email>shadowninja@minetest.net</email>
</author>
<published>2015-10-30T03:26:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=0079887b645e0ee441bd2cfcd7874a1148fdd656'/>
<id>urn:sha1:0079887b645e0ee441bd2cfcd7874a1148fdd656</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Simplify AreaStore ID management</title>
<updated>2016-03-07T21:33:20+00:00</updated>
<author>
<name>ShadowNinja</name>
<email>shadowninja@minetest.net</email>
</author>
<published>2015-10-30T03:08:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=095db16990eea878ce01b29c1eb85a128f98381a'/>
<id>urn:sha1:095db16990eea878ce01b29c1eb85a128f98381a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Don't pass non-const references to collision methods</title>
<updated>2016-01-29T14:53:54+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2016-01-24T23:06:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=4e93ba06a749fa2503786bf8d7dbda3d1e36a65a'/>
<id>urn:sha1:4e93ba06a749fa2503786bf8d7dbda3d1e36a65a</id>
<content type='text'>
Non const references cause a lot of confusion with behaviour of code,
and are disallowed by minetest style guide.
</content>
</entry>
<entry>
<title>Add server side ncurses terminal</title>
<updated>2015-11-06T07:51:14+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2015-07-25T05:43:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=5e507c9829942c434a6f1ae7a4f3a488c7e50bef'/>
<id>urn:sha1:5e507c9829942c434a6f1ae7a4f3a488c7e50bef</id>
<content type='text'>
This adds a chat console the server owner can use for administration
or to talk with players.
It runs in its own thread, which makes the user interface immune to
the server's lag, behaving just like a client, except timeout.
As it uses the same console code as the f10 console, things like nick
completion or a scroll buffer basically come for free.
The terminal itself is written in a general way so that adding a
client version later on is just about implementing an interface.

Fatal errors are printed after the console exists and the ncurses
terminal buffer gets cleaned up with endwin(), so that the error still
remains visible.

The server owner can chose their username their entered text will
have in chat and where players can send PMs to.
Once the username is secured with a password to prevent anybody to
take over the server, the owner can execute admin tasks over the
console.

This change includes a contribution by @kahrl who has improved ncurses
library detection.
</content>
</entry>
<entry>
<title>Remove some abort() calls</title>
<updated>2015-10-26T03:45:00+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2015-10-26T03:13:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=5f342aa0154e59503fbb22e46ac95ef655aaad1a'/>
<id>urn:sha1:5f342aa0154e59503fbb22e46ac95ef655aaad1a</id>
<content type='text'>
abort() doesn't benefit from the high level abstractions from FATAL_ERROR.
</content>
</entry>
<entry>
<title>Fix some threading things and add additional thread unittests</title>
<updated>2015-10-24T06:31:23+00:00</updated>
<author>
<name>kwolekr</name>
<email>kwolekr@minetest.net</email>
</author>
<published>2015-10-18T02:42:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=964be640cb1072b122e5047ddfed19907c6b9dab'/>
<id>urn:sha1:964be640cb1072b122e5047ddfed19907c6b9dab</id>
<content type='text'>
- Fix thread name reset on start()
- Fully reset thread state on kill()
- Add unittests to check for correct object states under various circumstances
</content>
</entry>
<entry>
<title>Add BufReader and vector-based serialization methods</title>
<updated>2015-10-15T05:31:31+00:00</updated>
<author>
<name>kwolekr</name>
<email>kwolekr@minetest.net</email>
</author>
<published>2015-08-06T04:26:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=1a5b4b38f3457a8f1423305cef4e85d05da47d62'/>
<id>urn:sha1:1a5b4b38f3457a8f1423305cef4e85d05da47d62</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rename macros with two leading underscores</title>
<updated>2015-10-14T06:39:37+00:00</updated>
<author>
<name>ShadowNinja</name>
<email>shadowninja@minetest.net</email>
</author>
<published>2015-10-14T06:39:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=6f2d785d0ff761961912d7e79a7d16c4adf86861'/>
<id>urn:sha1:6f2d785d0ff761961912d7e79a7d16c4adf86861</id>
<content type='text'>
These names are reserved for the compiler/library implementations.
</content>
</entry>
</feed>
