<feed xmlns='http://www.w3.org/2005/Atom'>
<title>godot.git/modules/nativescript, branch mirror</title>
<subtitle>Godot Engine – Multi-platform 2D and 3D game engine https://godotengine.org
</subtitle>
<id>https://git.neuromancer.sk/godot.git/atom?h=mirror</id>
<link rel='self' href='https://git.neuromancer.sk/godot.git/atom?h=mirror'/>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/'/>
<updated>2017-09-03T13:28:43Z</updated>
<entry>
<title>merged gdnative and nativescript module</title>
<updated>2017-09-03T13:28:43Z</updated>
<author>
<name>Karroffel</name>
</author>
<published>2017-09-03T10:40:41Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=7878329e6fc828dc7ca0a8300ebdbaa0674a769c'/>
<id>urn:sha1:7878329e6fc828dc7ca0a8300ebdbaa0674a769c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix files header</title>
<updated>2017-09-01T14:07:55Z</updated>
<author>
<name>Poommetee Ketson</name>
</author>
<published>2017-09-01T14:07:55Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=ed606ded52132f7afed03d99fabed7b111ce9a51'/>
<id>urn:sha1:ed606ded52132f7afed03d99fabed7b111ce9a51</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make GDNative work on Android</title>
<updated>2017-08-30T11:14:19Z</updated>
<author>
<name>Ruslan Mustakov</name>
</author>
<published>2017-08-18T14:17:35Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=5ccdeccb6ed6b8480a86b0db36f192526cba1274'/>
<id>urn:sha1:5ccdeccb6ed6b8480a86b0db36f192526cba1274</id>
<content type='text'>
The changes include work done to ensure that GDNative apps and Nim
integration specifically can run on Android. The changes have been
tested on our WIP game, which uses godot-nim and depends on several
third-party .so libs, and Platformer demo to ensure nothing got broken.

 - .so libraries are exported to lib/ folder in .apk, instead of assets/,
   because that's where Android expects them to be and it resolves the
   library name into "lib/&lt;ABI&gt;/&lt;name&gt;", where &lt;ABI&gt; is the ABI matching
   the current device. So we establish the convention that Android .so
   files in the project must be located in the folder corresponding to
   the ABI they were compiled for.

 - Godot callbacks (event handlers) are now called from the same thread
   from which Main::iteration is called. It is also what Godot now
   considers to be the main thread, because Main::setup is also called
   from there. This makes threading on Android more consistent with
   other platforms, making the code that depends on Thread::get_main_id
   more portable (GDNative has such code).

 - Sizes of GDNative API types have been fixed to work on 32-bit
   platforms.
</content>
</entry>
<entry>
<title>Fix GDNative API generator after changes to MethodBind</title>
<updated>2017-08-30T03:45:10Z</updated>
<author>
<name>Ruslan Mustakov</name>
</author>
<published>2017-08-29T07:47:53Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=415f7da02589be3055542e84c78cd8aba3812cfc'/>
<id>urn:sha1:415f7da02589be3055542e84c78cd8aba3812cfc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add enums in GDNative API generator</title>
<updated>2017-08-30T03:38:58Z</updated>
<author>
<name>Ruslan Mustakov</name>
</author>
<published>2017-08-23T06:33:31Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=bbb4ee90ce1682295420ba343fc750af6b6c8138'/>
<id>urn:sha1:bbb4ee90ce1682295420ba343fc750af6b6c8138</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use HTTPS URL for Godot's website in the headers</title>
<updated>2017-08-27T12:16:55Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2017-08-27T12:16:55Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=bd282ff43f23fe845f29a3e25c8efc01bd65ffb0'/>
<id>urn:sha1:bd282ff43f23fe845f29a3e25c8efc01bd65ffb0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Convert Object::cast_to() to the static version</title>
<updated>2017-08-24T21:08:24Z</updated>
<author>
<name>Hein-Pieter van Braam</name>
</author>
<published>2017-08-24T20:58:51Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=cacced7e507f7603bacc03ae2616e58f0ede122a'/>
<id>urn:sha1:cacced7e507f7603bacc03ae2616e58f0ede122a</id>
<content type='text'>
Currently we rely on some undefined behavior when Object-&gt;cast_to() gets
called with a Null pointer. This used to work fine with GCC &lt; 6 but
newer versions of GCC remove all codepaths in which the this pointer is
Null. However, the non-static cast_to() was supposed to be null safe.

This patch makes cast_to() Null safe and removes the now redundant Null
checks where they existed.

It is explained in this article: https://www.viva64.com/en/b/0226/
</content>
</entry>
<entry>
<title>-Code completion for enumerations</title>
<updated>2017-08-24T03:06:56Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2017-08-24T03:06:56Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=36e0a72c77348d4a1f2195937dff8dba88f7e044'/>
<id>urn:sha1:36e0a72c77348d4a1f2195937dff8dba88f7e044</id>
<content type='text'>
-Disabled GDNative and GDNativeScript so build compiles again
</content>
</entry>
<entry>
<title>Removed unnecessary assignments</title>
<updated>2017-08-21T19:15:55Z</updated>
<author>
<name>Wilson E. Alvarez</name>
</author>
<published>2017-08-21T19:15:36Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=738d2ab96997faa1e13b91e38cf8a0000d829f70'/>
<id>urn:sha1:738d2ab96997faa1e13b91e38cf8a0000d829f70</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Updated function argument names</title>
<updated>2017-08-12T19:12:49Z</updated>
<author>
<name>Wilson E. Alvarez</name>
</author>
<published>2017-08-12T16:52:50Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=428f03cf06d3841b2a593f46aa42912ef5c82f3c'/>
<id>urn:sha1:428f03cf06d3841b2a593f46aa42912ef5c82f3c</id>
<content type='text'>
</content>
</entry>
</feed>
