aboutsummaryrefslogtreecommitdiff
path: root/platform/android (follow)
Commit message (Collapse)AuthorAgeFilesLines
* renamed joystick to joypad everywhere around source code!Juan Linietsky2017-01-083-8/+8
|
* Memory pool vectors (DVector) have been enormously simplified in code, and ↵Juan Linietsky2017-01-072-32/+32
| | | | renamed to PoolVector
* Editor settings categories are now tidy and beautiful!Juan Linietsky2017-01-051-25/+25
|
* -Changed most project settings in the engine, so they have major and minor ↵Juan Linietsky2017-01-055-18/+19
| | | | | | | | categories. -Changed SectionedPropertyEditor to support this -Renamed Globals singleton to GlobalConfig, makes more sense. -Changed the logic behind persisten global settings, instead of the persist checkbox, a revert button is now available
* ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵Juan Linietsky2017-01-025-7/+7
| | | | | | | | Variant. All usages of "type" to refer to classes were renamed to "class" ClassDB has been exposed to GDScript. OBJ_TYPE() macro is now GDCLASS()
* Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-0148-48/+48
| | | | | | | | That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games!
* Add alert window on Androidvolzhs2016-11-284-5/+38
|
* Update/fix Android buildPedro J. Estébanez2016-11-131-7/+7
| | | | | Fix wrong path for 32-bit Windows, which fixes #7084 Exclude 32-bit Windows from multi-threaded linking because it's not supported by the NDK Remove 32-bit Linux as there is no NDK variant for it
* Merge pull request #7079 from RandomShaper/quicker-android-exportRémi Verschelde2016-11-111-19/+19
|\ | | | | Make Android export quicker (especially on Windows)
| * Make Android export quicker (especially on Windows)Pedro J. Estébanez2016-11-081-19/+19
| |
* | Fix Directory.dir_exist/get_current_dir for 'res://' on Androidvolzhs2016-11-092-2/+7
|/ | | | Fix #7014
* scons: Reorder options for clarityRémi Verschelde2016-11-031-1/+0
| | | | Also prefix all thirdparty-related toggles with `builtin`.
* Improve Android build (Clang + tidyness)Pedro J. Estébanez2016-11-021-87/+100
|
* style: Various other PEP8 fixes in Python filesRémi Verschelde2016-11-011-2/+2
| | | | | | | | | | | | 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).
* style: Fix PEP8 blank lines issues in Python filesRémi Verschelde2016-11-011-2/+5
| | | | | | | | | | | Done with `autopep8 --select=E3,W3`, fixes: - E301 - Add missing blank line. - E302 - Add missing 2 blank lines. - E303 - Remove extra blank lines. - E304 - Remove blank line following function decorator. - E309 - Add missing blank line. - W391 - Remove trailing blank lines.
* style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-012-148/+148
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde2016-11-012-221/+221
| | | | | | | | | | | | | | | | | | | 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.
* Fixed tiny error in detect.py causing compilation for Android to fail.Randy Tan Shaoxian2016-10-221-1/+1
| | | | (cherry picked from commit c9d7f77c6ffea4691fba2071caec2d63d927b4d1)
* Merge pull request #6850 from akien-mga/pr-scsub-shebangRémi Verschelde2016-10-171-0/+2
|\ | | | | SCsub: Add python shebang as a hint for syntax highlighting
| * SCsub: Add python shebang as a hint for syntax highlightingRémi Verschelde2016-10-171-0/+2
| | | | | | | | Also switch existing shebangs to "better" /usr/bin/env python.
* | Merge pull request #6846 from volzhs/android-dir-existsRémi Verschelde2016-10-171-1/+0
|\ \ | | | | | | Fix crash when using Directory.dir_exists(path) on Android
| * | Fix crash when using Directory.dir_exists(path) on Androidvolzhs2016-10-171-1/+0
| |/
* | Merge pull request #6723 from bvbfan/patch-1Rémi Verschelde2016-10-171-8/+9
|\ \ | | | | | | Correct OS architecture detection
| * | Correct OS architecture detectionAnthony Fieroni2016-10-111-8/+9
| | | | | | | | | | | | Signed-off-by: Anthony Fieroni <bvbfan@abv.bg>
* | | Theora: Don't compile unnecessary files, rename "x86_opt_*"Błażej Szczygieł2016-10-161-1/+1
| |/ |/|
* | zlib: Split thirdparty files, simplify scons optionRémi Verschelde2016-10-151-1/+0
| |
* | ogg/vorbis/opus: Make them modules and unbundle thirdparty libsRémi Verschelde2016-10-151-1/+2
| | | | | | | | | | | | | | | | | | Took the opportunity to undo the Godot changed made to the opus source. The opus module should eventually be built in its own environment to avoid polluting others with too many include dirs and defines. TODO: Fix the platform/ stuff for opus.
* | Drop nedmalloc which is apparently not used anymoreRémi Verschelde2016-10-141-3/+2
| |
* | Fix compile flags not getting to the Android buildPedro J. Estébanez2016-10-041-3/+3
|/
* removed confusing "if(true)" statement with empty "else" blocksyskrank2016-09-261-9/+4
|
* Fix manifest generation bug in Android exportPedro J. Estébanez2016-09-211-6/+4
|
* Revert "Change Android float ABI to hard"Juan Linietsky2016-09-101-8/+5
|
* Merge pull request #5920 from 29jm/fix-warningsJuan Linietsky2016-09-101-17/+17
|\ | | | | Fix some more warnings
| * Fix some comparisons between signed and unsigned integersJohan Manuel2016-08-131-11/+11
| |
| * Remove some unused variablesJohan Manuel2016-08-131-6/+6
| |
* | Merge pull request #6438 from RandomShaper/android-hard-float-abiJuan Linietsky2016-09-101-5/+8
|\ \ | | | | | | Change Android float ABI to hard
| * | Change Android float ABI to hardPedro J. Estébanez2016-09-091-5/+8
| | |
* | | Fix (potentially) Android libs packaging issue (#5645)Pedro J. Estébanez2016-09-071-1/+0
|/ /
* | Android: Rename values-zh to values-zh-rCN (#6063)Skyfrit2016-08-081-1/+1
| |
* | Android: Add support for Traditional Chinese (HK) (#6061)Skyfrit2016-08-081-0/+4
| |
* | Android: Add support for Traditional Chinese (TW) (#6061)Skyfrit2016-08-081-0/+4
|/
* Merge pull request #5415 from volzhs/improve-android-paymentJuan Linietsky2016-07-242-190/+313
|\ | | | | Improve android payment
| * Add querying details of IAP items for androidvolzhs2016-07-182-148/+279
| |
| * Fix can't get all info if user purchases many items and not consumedvolzhs2016-07-181-42/+34
| |
* | Minor code formatting in platform/androidMario Schlack2016-07-2113-47/+69
| |
* | Merge pull request #5835 from volzhs/issue-5831Rémi Verschelde2016-07-211-7/+7
|\ \ | | | | | | Fix compile error if use android_stl=yes
| * | Fix compile error if use android_stl=yesvolzhs2016-07-211-7/+7
| | |
* | | Merge pull request #5819 from hurikhan/android_getScreenDPIRémi Verschelde2016-07-214-3/+28
|\ \ \ | |/ / |/| | Implement get_screen_dpi() on Android
| * | Implement get_screen_dpi() on AndroidMario Schlack2016-07-204-3/+28
| |/
* / Fixed properly not save signals that already exist in their base scenes, ↵Juan Linietsky2016-07-191-1/+1
|/ | | | closes #5656