<feed xmlns='http://www.w3.org/2005/Atom'>
<title>godot.git/platform/iphone/SCsub, branch master</title>
<subtitle>Godot Engine – Multi-platform 2D and 3D game engine https://godotengine.org
</subtitle>
<id>https://git.neuromancer.sk/godot.git/atom?h=master</id>
<link rel='self' href='https://git.neuromancer.sk/godot.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/'/>
<updated>2017-09-30T05:16:42Z</updated>
<entry>
<title>Merged iphone and osx audio drivers into drivers/coreaudio</title>
<updated>2017-09-30T05:16:42Z</updated>
<author>
<name>Marcelo Fernandez</name>
</author>
<published>2017-09-29T18:22:42Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=12d40fa03f95cccfb6af994b03576f78af314891'/>
<id>urn:sha1:12d40fa03f95cccfb6af994b03576f78af314891</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Buildsystem: Improve detect.py readability and fix issues</title>
<updated>2017-07-01T06:20:51Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2017-06-30T17:21:38Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=e91a267a7c9e1e82118ab4f98ed60908c34de115'/>
<id>urn:sha1:e91a267a7c9e1e82118ab4f98ed60908c34de115</id>
<content type='text'>
Tried to organize the configure(env) calls in sections, using the same order
for all platforms whenever possible.

Apart from cosmetic changes, the following issues were fixed:
- Android: cleanup linkage, remove GLESv1_CM and GLESv2
- iPhone: Remove obsolete "ios_gles22_override" option
- OSX:
  * Fix bits detection (default to 64) and remove obsolete "force_64_bits" option
    (closes #9449)
  * Make "fat" bits argument explicit
- Server: sync with X11
- Windows: clean up old DirectX 9 stuff
- X11:
  * Do not require system OpenSSL for building (closes #9443)
  * Fix typo'ed use_leak_sanitizer option
  * Fix .llvm suffix overriding custom extra_suffix
</content>
</entry>
<entry>
<title>Removing rasterizer from iphone</title>
<updated>2017-05-20T00:17:47Z</updated>
<author>
<name>BastiaanOlij</name>
</author>
<published>2017-05-20T00:17:47Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=87b4776cbff781b251979db3677422145f5ffaa1'/>
<id>urn:sha1:87b4776cbff781b251979db3677422145f5ffaa1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>iphone: Drop unused Appirater thirdparty API</title>
<updated>2017-03-05T13:53:56Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2017-03-05T13:53:56Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=481e511082fbe746a9436d2a79d42c62ba2b039a'/>
<id>urn:sha1:481e511082fbe746a9436d2a79d42c62ba2b039a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>style: Various other PEP8 fixes in Python files</title>
<updated>2016-10-31T23:35:16Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2016-10-31T23:24:30Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=f34151ff0f91e8f0df8eaf829334b2205eb7da3c'/>
<id>urn:sha1:f34151ff0f91e8f0df8eaf829334b2205eb7da3c</id>
<content type='text'>
Done with `autopep8 --select=E7`, fixes:

- E701 - Put colon-separated compound statement on separate lines.
- E702 - Put semicolon-separated compound statement on separate lines.
- E703 - Put semicolon-separated compound statement on separate lines.
- E711 - Fix comparison with None.
- E712 - Fix (trivial case of) comparison with boolean.
- E713 - Fix (trivial case of) non-membership check.
- E721 - Fix various deprecated code (via lib2to3).
</content>
</entry>
<entry>
<title>style: Fix PEP8 whitespace issues in Python files</title>
<updated>2016-10-31T23:35:16Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2016-10-30T17:57:40Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=d4c17700aa2f36f69978beda04e42ff2749de270'/>
<id>urn:sha1:d4c17700aa2f36f69978beda04e42ff2749de270</id>
<content type='text'>
Done with `autopep8 --select=E2,W2`, fixes:

- E201 - Remove extraneous whitespace.
- E202 - Remove extraneous whitespace.
- E203 - Remove extraneous whitespace.
- E211 - Remove extraneous whitespace.
- E221 - Fix extraneous whitespace around keywords.
- E222 - Fix extraneous whitespace around keywords.
- E223 - Fix extraneous whitespace around keywords.
- E224 - Remove extraneous whitespace around operator.
- E225 - Fix missing whitespace around operator.
- E226 - Fix missing whitespace around operator.
- E227 - Fix missing whitespace around operator.
- E228 - Fix missing whitespace around operator.
- E231 - Add missing whitespace.
- E231 - Fix various deprecated code (via lib2to3).
- E241 - Fix extraneous whitespace around keywords.
- E242 - Remove extraneous whitespace around operator.
- E251 - Remove whitespace around parameter '=' sign.
- E261 - Fix spacing after comment hash.
- E262 - Fix spacing after comment hash.
- E265 - Format block comments.
- E271 - Fix extraneous whitespace around keywords.
- E272 - Fix extraneous whitespace around keywords.
- E273 - Fix extraneous whitespace around keywords.
- E274 - Fix extraneous whitespace around keywords.
- W291 - Remove trailing whitespace.
- W293 - Remove trailing whitespace.
</content>
</entry>
<entry>
<title>style: Start applying PEP8 to Python files, indentation issues</title>
<updated>2016-10-31T23:33:51Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2016-10-30T17:44:57Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=97c8508f5e4f57b1048830d44e76e1f4517fd449'/>
<id>urn:sha1:97c8508f5e4f57b1048830d44e76e1f4517fd449</id>
<content type='text'>
Done with `autopep8 --select=E1`, fixes:

- E101 - Reindent all lines.
- E112 - Fix under-indented comments.
- E113 - Fix over-indented comments.
- E115 - Fix under-indented comments.
- E116 - Fix over-indented comments.
- E121 - Fix a badly indented line.
- E122 - Fix a badly indented line.
- E123 - Fix a badly indented line.
- E124 - Fix a badly indented line.
- E125 - Fix indentation undistinguish from the next logical line.
- E126 - Fix a badly indented line.
- E127 - Fix a badly indented line.
- E128 - Fix a badly indented line.
- E129 - Fix a badly indented line.
</content>
</entry>
<entry>
<title>SCsub: Add python shebang as a hint for syntax highlighting</title>
<updated>2016-10-17T18:10:46Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2016-10-17T06:50:25Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=fc8ccd5b8c8b779bffd0f4d7f22f2f964c939163'/>
<id>urn:sha1:fc8ccd5b8c8b779bffd0f4d7f22f2f964c939163</id>
<content type='text'>
Also switch existing shebangs to "better" /usr/bin/env python.
</content>
</entry>
<entry>
<title>disabled appirater</title>
<updated>2016-04-29T16:03:46Z</updated>
<author>
<name>Ariel Manzur</name>
</author>
<published>2016-04-29T16:03:46Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=6aae63fce24dad69a90eac5afe7e7b33149eb2b7'/>
<id>urn:sha1:6aae63fce24dad69a90eac5afe7e7b33149eb2b7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>merged iphoen changes</title>
<updated>2016-04-29T13:50:56Z</updated>
<author>
<name>Ariel Manzur</name>
</author>
<published>2016-04-29T13:50:56Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=b50c00ff9065ee0073c79bd5c3f11296a5f6965f'/>
<id>urn:sha1:b50c00ff9065ee0073c79bd5c3f11296a5f6965f</id>
<content type='text'>
</content>
</entry>
</feed>
