<feed xmlns='http://www.w3.org/2005/Atom'>
<title>minetest.git/.gitignore, 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-28T16:28:42+00:00</updated>
<entry>
<title>Upgrade Android build to Gradle build system</title>
<updated>2016-04-28T16:28:42+00:00</updated>
<author>
<name>ShadowNinja</name>
<email>shadowninja@minetest.net</email>
</author>
<published>2016-04-13T18:14:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=e41673820ffe200df78b1ec185ccb9d9ca962ae1'/>
<id>urn:sha1:e41673820ffe200df78b1ec185ccb9d9ca962ae1</id>
<content type='text'>
The old Ant build system has been deprecated for a while and new development is focused on Gradle.
I also removed a hardcoded string that lint caught and moved the patch files to a subdirectory.
I left the JNI files in the root directory.
</content>
</entry>
<entry>
<title>Update .gitignore to ignore symlinks to non-static Minetest directories and sort into an editor section</title>
<updated>2015-09-26T19:28:50+00:00</updated>
<author>
<name>Tim</name>
<email>t4im@users.noreply.github.com</email>
</author>
<published>2015-09-20T13:19:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=89e8f3a9182f5ec15b0c43389a516b10a54741d9'/>
<id>urn:sha1:89e8f3a9182f5ec15b0c43389a516b10a54741d9</id>
<content type='text'>
[ci skip]
</content>
</entry>
<entry>
<title>Clean up threading</title>
<updated>2015-08-24T02:04:06+00:00</updated>
<author>
<name>ShadowNinja</name>
<email>shadowninja@minetest.net</email>
</author>
<published>2015-04-07T10:13:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=e4bff8be94c0db4f94e63ad448d0eeb869ccdbbd'/>
<id>urn:sha1:e4bff8be94c0db4f94e63ad448d0eeb869ccdbbd</id>
<content type='text'>
  * Rename everything.
    * Strip J prefix.
    * Change UpperCamelCase functions to lowerCamelCase.
  * Remove global (!) semaphore count mutex on OSX.
  * Remove semaphore count getter (unused, unsafe, depended on internal
    API functions on Windows, and used a hack on OSX).
  * Add `Atomic&lt;type&gt;`.
  * Make `Thread` handle thread names.
  * Add support for C++11 multi-threading.
  * Combine pthread and win32 sources.
  * Remove `ThreadStarted` (unused, unneeded).
  * Move some includes from the headers to the sources.
  * Move all of `Event` into its header (allows inlining with no new includes).
  * Make `Event` use `Semaphore` (except on Windows).
  * Move some porting functions into `Thread`.
  * Integrate logging with `Thread`.
  * Add threading test.
</content>
</entry>
<entry>
<title>Android: fix sound issue, and gitignore</title>
<updated>2015-08-02T17:23:17+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2015-08-02T08:08:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=47225346be9ab0d55bc2dbc71b6c0f085f47a75e'/>
<id>urn:sha1:47225346be9ab0d55bc2dbc71b6c0f085f47a75e</id>
<content type='text'>
Previously, sound failed due to errors with hardfp abi build
instructions. As the problem couldn't be found, the softfp
compatible abi was chosen instead.

This move will cause a small performance overhead, but due to the
abi being armeabi-v7a, the internal calculations will still be done
using the FPU.

We also fix some issues with ABI information passing. However, the
fixes aren't sufficient to get sound working.

The patch also fixes an issue with the gitignore file.
</content>
</entry>
<entry>
<title>Android: Add githash header to spare rebuilds after new commits</title>
<updated>2015-08-01T18:42:07+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2015-07-31T14:38:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=c39a85a88d1f905014c1ced6b87638cdb01e6ddf'/>
<id>urn:sha1:c39a85a88d1f905014c1ced6b87638cdb01e6ddf</id>
<content type='text'>
Before, android_version.h got changed at every new commit. Now, we
only change it with new minetest releases. Analogous to how cmake
does it,  we add an android_version_githash.h file that communicates
the git hash to C++ code.

Also, unify VERS_MAJOR, VERS_MINOR and VERS_PATCH variable
calculation inside the whole makefile.
</content>
</entry>
<entry>
<title>Add android tools environment to gitignore</title>
<updated>2015-07-01T02:12:55+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2015-07-01T02:12:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=d75009a75853bd188f132e93165622c5e1315f70'/>
<id>urn:sha1:d75009a75853bd188f132e93165622c5e1315f70</id>
<content type='text'>
Previously, if you did `make envpaths` (as described in README.android), the new file got listed by git as new file.
</content>
</entry>
<entry>
<title>Add more swp files to gitignore</title>
<updated>2015-05-18T19:24:57+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2015-05-18T19:24:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=5b03857c625633e8daea3e0118bf701a93109127'/>
<id>urn:sha1:5b03857c625633e8daea3e0118bf701a93109127</id>
<content type='text'>
Specifically, the added rule matches .kate-swp files.
</content>
</entry>
<entry>
<title>Add LibGMP</title>
<updated>2015-05-11T15:48:33+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2015-04-12T04:18:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=181f7baa453c58d4070de7196fd74663110946a8'/>
<id>urn:sha1:181f7baa453c58d4070de7196fd74663110946a8</id>
<content type='text'>
Uses system provided libgmp if found, if not it falls back to mini-gmp.
</content>
</entry>
<entry>
<title>Add .patch files to gitignore</title>
<updated>2015-05-01T05:42:08+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2015-05-01T05:42:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=aef1b41b021a41a85ddd83d9ba33cfe9abc0b19d'/>
<id>urn:sha1:aef1b41b021a41a85ddd83d9ba33cfe9abc0b19d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update .gitignore</title>
<updated>2015-04-26T19:40:19+00:00</updated>
<author>
<name>kwolekr</name>
<email>kwolekr@minetest.net</email>
</author>
<published>2015-04-26T19:40:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/luanti/minetest.git/commit/?id=068d561a3c0e2f01f4ea9387b88b6f2b787dbbc1'/>
<id>urn:sha1:068d561a3c0e2f01f4ea9387b88b6f2b787dbbc1</id>
<content type='text'>
</content>
</entry>
</feed>
