<feed xmlns='http://www.w3.org/2005/Atom'>
<title>godot.git/editor, 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/editor?h=3.0.1-stable</id>
<link rel='self' href='https://git.neuromancer.sk/godot.git/atom/editor?h=3.0.1-stable'/>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/'/>
<updated>2018-02-25T14:29:28Z</updated>
<entry>
<title>Fix version.txt validation logic for export templates .tpz</title>
<updated>2018-02-25T14:29:28Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-02-25T14:24:33Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=be771e71652f14b5bb3fd1c6c62a39a4ccd85417'/>
<id>urn:sha1:be771e71652f14b5bb3fd1c6c62a39a4ccd85417</id>
<content type='text'>
It assumed that the version would always be `x.y-status`,
with no dot possible in `status`, so:
- It would not work for 3.0.1-stable (nor 3.0.1.stable with new version logic)
- It would not support Mono templates when we provide them

The validation it did was not really useful anyway, so we just use the raw
string.

(cherry picked from commit eec9261a75699723f6e4b722910e5bb762b736db)
</content>
</entry>
<entry>
<title>Refactor version macros and fix related bugs</title>
<updated>2018-02-24T00:34:34Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-02-23T18:48:49Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=d79a7a27735fde30a843bbd931a663ffaa5884c9'/>
<id>urn:sha1:d79a7a27735fde30a843bbd931a663ffaa5884c9</id>
<content type='text'>
The previous logic with VERSION_MKSTRING was a bit unwieldy, so there were
several places hardcoding their own variant of the version string, potentially
with bugs (e.g. forgetting the patch number when defined).

The new logic defines:

- VERSION_BRANCH, the main 'major.minor' version (e.g. 3.1)
- VERSION_NUMBER, which can be 'major.minor' or 'major.minor.patch',
  depending on whether the latter is defined (e.g. 3.1.4)
- VERSION_FULL_CONFIG, which contains the version status (e.g. stable)
  and the module-specific suffix (e.g. mono)
- VERSION_FULL_BUILD, same as above but with build/reference name
  (e.g. official, custom_build, mageia, etc.)
  Note: Slight change here, as the previous format had the build name
  *before* the module-specific suffix; now it's after
- VERSION_FULL_NAME, same as before, so VERSION_FULL_BUILD prefixed
  with "Godot v" for readability

Bugs fixed thanks to that:

- Export templates version matching now properly takes VERSION_PATCH
  into account by relying on VERSION_FULL_CONFIG.
- ClassDB hash no longer takes the build name into account, but limits
  itself to VERSION_FULL_CONFIG (build name is cosmetic, not relevant
  for the API hash).
- Docs XML no longer hardcode the VERSION_STATUS, this was annoying.
- Small cleanup in Windows .rc file thanks to new macros.

(cherry picked from commit 23ebae01dc7e3df9c842ca7d017f7b233837721d)
</content>
</entry>
<entry>
<title>i18n: Sync translation templates with current source</title>
<updated>2018-02-22T17:47:07Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-02-22T17:47:07Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=07e24619959af256c9e51304c396bccfa99e1b4c'/>
<id>urn:sha1:07e24619959af256c9e51304c396bccfa99e1b4c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>i18n: Sync translations with Weblate</title>
<updated>2018-02-22T17:42:25Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-02-22T17:42:07Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=ca5f3b9f8df9455032f525883dccc3112cc497b8'/>
<id>urn:sha1:ca5f3b9f8df9455032f525883dccc3112cc497b8</id>
<content type='text'>
(cherry picked from commit 661ab3c88e7a8bfe69acd90dae7574a11afcea84)
</content>
</entry>
<entry>
<title>Delete all selected lines using the delete line shortcut in script editor</title>
<updated>2018-02-22T12:09:02Z</updated>
<author>
<name>Yan Pas</name>
</author>
<published>2018-02-16T16:50:11Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=3e8c214a19c7afb01fb7ba13efbaa4321e0f1d0b'/>
<id>urn:sha1:3e8c214a19c7afb01fb7ba13efbaa4321e0f1d0b</id>
<content type='text'>
(cherry picked from commit 7368978a48127a4c238f51bd0dbdf4c8d091809f)
</content>
</entry>
<entry>
<title>Clean up some bad words from code comments</title>
<updated>2018-02-22T11:22:41Z</updated>
<author>
<name>Artem Varaksa</name>
</author>
<published>2018-02-17T13:00:39Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=eacd66e78431354d0cce21e07c791aeb2206cef6'/>
<id>urn:sha1:eacd66e78431354d0cce21e07c791aeb2206cef6</id>
<content type='text'>
(cherry picked from commit d35e48622800f6686dbdfba380e25170005dcc2b)
</content>
</entry>
<entry>
<title>Improve error reporting of ProjectSettings::setup()</title>
<updated>2018-02-22T11:19:28Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2018-02-19T13:53:59Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=f55b376d7815bee578a84d50322766276b9a5727'/>
<id>urn:sha1:f55b376d7815bee578a84d50322766276b9a5727</id>
<content type='text'>
And use it to better report errors in the console and project manager
when a project.godot file is corrupted.

Fixes #14963.

(cherry picked from commit 7839076f95679c85e7adfdccdd671b2927c82f2f)
</content>
</entry>
<entry>
<title>Made the Debugger's Stack Frames items reselectable.</title>
<updated>2018-02-22T11:18:45Z</updated>
<author>
<name>Michael Alexsander Silva Dias</name>
</author>
<published>2018-02-20T02:35:52Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=fdac09a0aa0a682b1ffd39ae15c7bf8a44e189d6'/>
<id>urn:sha1:fdac09a0aa0a682b1ffd39ae15c7bf8a44e189d6</id>
<content type='text'>
(cherry picked from commit 32e3f257ace9b24df47510e036f80438bfe9a177)
</content>
</entry>
<entry>
<title>Fix typos with codespell</title>
<updated>2018-02-22T11:17:06Z</updated>
<author>
<name>luz.paz</name>
</author>
<published>2018-02-21T16:30:55Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=751806b5c7c2b63c47d228664c3425b6f3fdb5ac'/>
<id>urn:sha1:751806b5c7c2b63c47d228664c3425b6f3fdb5ac</id>
<content type='text'>
Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt`
Whitelist consists of:
```
ang
doubleclick
lod
nd
que
te
unselect
```

(cherry picked from commit 612ab4bbc6f2396f4dcd68c3f142f7dfa2f5f0a5)
</content>
</entry>
<entry>
<title>Insert proper copy icon to debugger</title>
<updated>2018-02-22T11:02:41Z</updated>
<author>
<name>Artem Varaksa</name>
</author>
<published>2018-02-22T07:50:38Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=29089b715d258cccf82d97bdaf2ae7971b774120'/>
<id>urn:sha1:29089b715d258cccf82d97bdaf2ae7971b774120</id>
<content type='text'>
(cherry picked from commit db2a1544c01e7f52a0a95b58509419c6de949e5d)
</content>
</entry>
</feed>
