<feed xmlns='http://www.w3.org/2005/Atom'>
<title>godot.git/modules/regex/regex.cpp, branch 3.0.1-stable</title>
<subtitle>Godot Engine – Multi-platform 2D and 3D game engine https://godotengine.org</subtitle>
<id>https://git.neuromancer.sk/godot.git/atom/modules/regex/regex.cpp?h=3.0.1-stable</id>
<link rel='self' href='https://git.neuromancer.sk/godot.git/atom/modules/regex/regex.cpp?h=3.0.1-stable'/>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/'/>
<updated>2018-01-11T22:58:14Z</updated>
<entry>
<title>Bind many more properties to scripts</title>
<updated>2018-01-11T22:58:14Z</updated>
<author>
<name>Bojidar Marinov</name>
</author>
<published>2018-01-11T22:35:12Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=9b8e8b2220b4e2bac3310262d3d1cd7a8eb3b0a5'/>
<id>urn:sha1:9b8e8b2220b4e2bac3310262d3d1cd7a8eb3b0a5</id>
<content type='text'>
Notable potentially breaking changes:
- PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL
- Some properties were renamed, and sometimes even shadowed by new ones
- New getter methods (some virtual) were added
</content>
</entry>
<entry>
<title>Fixes RegEx::sub injecting null character (issue 15409)</title>
<updated>2018-01-07T14:00:33Z</updated>
<author>
<name>Bernhard Liebl</name>
</author>
<published>2018-01-06T23:59:38Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=57e77db0ed9680aee38e8477a950e2bc616b96c3'/>
<id>urn:sha1:57e77db0ed9680aee38e8477a950e2bc616b96c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update copyright statements to 2018</title>
<updated>2018-01-01T13:40:47Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-01-01T13:40:08Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=b50a9114b105dafafdda8248a38653bca314a6f3'/>
<id>urn:sha1:b50a9114b105dafafdda8248a38653bca314a6f3</id>
<content type='text'>
Happy new year to the wonderful Godot community!
</content>
</entry>
<entry>
<title>Added RegEx.search_all() for multiple matches</title>
<updated>2017-11-14T05:04:25Z</updated>
<author>
<name>Zher Huei Lee</name>
</author>
<published>2017-11-11T00:07:50Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=2eba585d38d29b9ee31f8132fca912d0f26d8154'/>
<id>urn:sha1:2eba585d38d29b9ee31f8132fca912d0f26d8154</id>
<content type='text'>
And updated the docs
</content>
</entry>
<entry>
<title>Fix signed and unsigned comparisons</title>
<updated>2017-09-01T06:13:12Z</updated>
<author>
<name>Hein-Pieter van Braam</name>
</author>
<published>2017-08-31T21:30:35Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=f9467ec1ea6c0dac2ea513b7dfe58d0349788e02'/>
<id>urn:sha1:f9467ec1ea6c0dac2ea513b7dfe58d0349788e02</id>
<content type='text'>
The first in my quest to make Godot 3.x compile with -Werror on GCC7
</content>
</entry>
<entry>
<title>Merge pull request #10148 from leezh/pcre2</title>
<updated>2017-08-31T09:56:19Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2017-08-31T09:56:19Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=0cee288c1147f0f719682c544ea21b13faddf347'/>
<id>urn:sha1:0cee288c1147f0f719682c544ea21b13faddf347</id>
<content type='text'>
Replacement of internal RegEx with PCRE2</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>Replacement of internal RegEx with PCRE2</title>
<updated>2017-08-19T11:29:14Z</updated>
<author>
<name>Zher Huei Lee</name>
</author>
<published>2017-08-07T15:13:15Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=e3e2f063244804bb147418dc219ba6db8219304b'/>
<id>urn:sha1:e3e2f063244804bb147418dc219ba6db8219304b</id>
<content type='text'>
The pattern and replacement matching behaviour has been changed purely
due to the nature of switching to a standards-compliant library.

One mistake in the previous behaviour was that named groups didn't have
a number. This has been corrected.

As names are actually just an alias of numbered groups,
RegExMatch::get_name_dict() is now get_names() and is a dict
referring to the group number it represents.

Duplicate names are enabled and the with the first matching instance
used.

Due the lack of a suitable equivalent in PCRE2, RegExMatch::expand() was
removed.
</content>
</entry>
<entry>
<title>Removes type information from method binds</title>
<updated>2017-08-10T05:17:50Z</updated>
<author>
<name>Ignacio Etcheverry</name>
</author>
<published>2017-08-09T11:19:41Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=2f290038d63b55e6ce40296602f36bc98ab26015'/>
<id>urn:sha1:2f290038d63b55e6ce40296602f36bc98ab26015</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "Revert "Fixed RegEx::search missing return type hint""</title>
<updated>2017-06-26T20:38:11Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2017-06-26T20:38:11Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=a50fb2f729f7d554c7394256e5944d7bf59bdd87'/>
<id>urn:sha1:a50fb2f729f7d554c7394256e5944d7bf59bdd87</id>
<content type='text'>
</content>
</entry>
</feed>
