<feed xmlns='http://www.w3.org/2005/Atom'>
<title>godot.git/core, branch 3.0-stable</title>
<subtitle>Godot Engine – Multi-platform 2D and 3D game engine https://godotengine.org</subtitle>
<id>https://git.neuromancer.sk/godot.git/atom/core?h=3.0-stable</id>
<link rel='self' href='https://git.neuromancer.sk/godot.git/atom/core?h=3.0-stable'/>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/'/>
<updated>2018-01-27T14:11:39Z</updated>
<entry>
<title>Use the appropriate Variant hash and compare functions for Dictionaries</title>
<updated>2018-01-27T14:11:39Z</updated>
<author>
<name>Hein-Pieter van Braam</name>
</author>
<published>2018-01-27T14:08:16Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=7577252b1bd3e38a0aa6da1e5e6beee333af5e6f'/>
<id>urn:sha1:7577252b1bd3e38a0aa6da1e5e6beee333af5e6f</id>
<content type='text'>
Dictionaires did not use the VariantHasher and VariantComparator making
them unsafe for use with NaN values as keys. This PR uses the
appropriate Variant implementations for these functions.

   var d = {}
   d[Vector2(NAN, NAN)] = 0
   d[Vector2(NAN, NAN)] = 0
   print(d.size())

will now output '1' and not '2'

This fixes #16031
</content>
</entry>
<entry>
<title>- Improves portability in joystick buttons enum</title>
<updated>2018-01-24T22:12:54Z</updated>
<author>
<name>Ariel Manzur</name>
</author>
<published>2018-01-24T22:06:35Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=81426ff0a84b0b7f9c52f6f908fe30bec538fa8b'/>
<id>urn:sha1:81426ff0a84b0b7f9c52f6f908fe30bec538fa8b</id>
<content type='text'>
- Fixes linking bug in modules split library
</content>
</entry>
<entry>
<title>Merge pull request #15844 from letheed/better-error-msg</title>
<updated>2018-01-24T10:52:52Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-01-24T10:52:52Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=5342ec32b5c48295c9e45bfa107d7acd40f6df8f'/>
<id>urn:sha1:5342ec32b5c48295c9e45bfa107d7acd40f6df8f</id>
<content type='text'>
Make cyclic resource inclusion error message more helpful</content>
</entry>
<entry>
<title>fixed crash with StringBuilder</title>
<updated>2018-01-20T14:26:58Z</updated>
<author>
<name>karroffel</name>
</author>
<published>2018-01-20T14:23:03Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=30822e8ab7735f3a715d4375292df5f0989ab788'/>
<id>urn:sha1:30822e8ab7735f3a715d4375292df5f0989ab788</id>
<content type='text'>
When using a newly created StringBuilder then the as_string() method
will crash when trying to free an allocated 0-sized chunk of memory.

When 0 bytes get allocated with memnew_arr then a NULL pointer gets
returned. When trying to free that pointer the programm will crash.
</content>
</entry>
<entry>
<title>improves portability with some compilers</title>
<updated>2018-01-18T22:16:34Z</updated>
<author>
<name>Ariel Manzur</name>
</author>
<published>2018-01-18T22:10:07Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=e2b50e1abbc6cab58410a2ef4155bdcadf73efcf'/>
<id>urn:sha1:e2b50e1abbc6cab58410a2ef4155bdcadf73efcf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix typos in code and docs with codespell</title>
<updated>2018-01-18T21:01:42Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-01-18T20:37:17Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=9f479f096cb50fa8d1215e68c262f110116114ef'/>
<id>urn:sha1:9f479f096cb50fa8d1215e68c262f110116114ef</id>
<content type='text'>
Using v1.11.0 from https://github.com/lucasdemarchi/codespell
</content>
</entry>
<entry>
<title>Make cyclic resource inclusion error message more helpful</title>
<updated>2018-01-18T17:35:24Z</updated>
<author>
<name>letheed</name>
</author>
<published>2018-01-18T17:35:24Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=37c4bc64de38b746194d5cd6c7824bfd5c4331a9'/>
<id>urn:sha1:37c4bc64de38b746194d5cd6c7824bfd5c4331a9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>doc: Replace some more "val" with "value" + sync</title>
<updated>2018-01-17T09:43:23Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-01-17T09:43:23Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=6c46787749879e4afe37e652446801fc6f4cd8f1'/>
<id>urn:sha1:6c46787749879e4afe37e652446801fc6f4cd8f1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "Fix bad color to HTML conversion. Alpha channel was added before RGB."</title>
<updated>2018-01-16T09:22:22Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-01-16T09:22:22Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=09ca1006587cbb2219da93adebaf610b649f1122'/>
<id>urn:sha1:09ca1006587cbb2219da93adebaf610b649f1122</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Filled tutorial field in most relevent classes.</title>
<updated>2018-01-15T21:41:13Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2018-01-15T21:40:41Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=03475ba197a75b0f8431277954df1fdb0dc14913'/>
<id>urn:sha1:03475ba197a75b0f8431277954df1fdb0dc14913</id>
<content type='text'>
Added tutorial display in doc.
</content>
</entry>
</feed>
