aboutsummaryrefslogtreecommitdiff
path: root/platform (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | Allow custom CCFLAGS for iPhone buildsPedro J. Estébanez2017-05-271-4/+4
| | | | | | | | plus disable exceptions by default
* | Merge pull request #8916 from sanikoyes/Pr-fix_audio_stoped_iOSRémi Verschelde2017-05-262-0/+10
|\ \ | | | | | | Fix audio can't resume in iOS platform
| * | Fixed audio can not resume if it is interrupted cause by an incoming phone callsanikoyes2017-05-262-0/+10
| |/
* | Merge pull request #8923 from volzhs/fix-android-build-masterRémi Verschelde2017-05-261-5/+0
|\ \ | |/ |/| Fix android build regression by be7ced4
| * Fix android build regression by be7ced4volzhs2017-05-261-5/+0
| |
* | Merge pull request #8912 from RandomShaper/ios-alertRémi Verschelde2017-05-264-0/+16
|\ \ | | | | | | Implement OS.alert() for iOS
| * | Implement OS.alert() for iOSPedro J. Estébanez2017-05-254-0/+16
| | |
* | | Merge pull request #8878 from BastiaanOlij/ios_make_arm64_defaultRémi Verschelde2017-05-251-8/+9
|\ \ \ | | | | | | | | Make arm64 the default option and set minimum to iOS 9
| * | | Make arm64 the default option and set minimum to iOS 9BastiaanOlij2017-05-231-8/+9
| | | |
* | | | Fix UWP compilation issuesGeorge Marques2017-05-235-87/+74
|/ / / | | | | | | | | | Also fix VS2017 compilation problems.
* | | Merge pull request #8877 from BastiaanOlij/fix_ios_godot3Rémi Verschelde2017-05-232-10/+16
|\ \ \ | | | | | | | | More fixes for iOS Godot 3.0
| * | | More fixes for iOS Godot 3.0BastiaanOlij2017-05-232-10/+16
| | |/ | |/| | | | | | | | | | | | | - nicely exit if initialisation fails - fix a few issues around new event handling - use 16bit single channel framebuffer as 32bit is not supported on iOS
* / | Fix a few issues compiling windows and using VS2015 and earlierBastiaanOlij2017-05-232-3/+2
|/ /
* | added modifier key to scroll eventtoger52017-05-221-34/+34
| |
* | fixed osx input eventtoger52017-05-221-135/+141
| |
* | Removal of InputEvent as built-in Variant type..Juan Linietsky2017-05-2017-548/+498
| | | | | | | | this might cause bugs I haven't found yet..
* | Merge pull request #8841 from BastiaanOlij/osx_cleanup_old_classesRémi Verschelde2017-05-206-518/+2
|\ \ | | | | | | Removing unused files and old GLFW comments on OSX
| * | Doing a little bit of cleanupBastiaanOlij2017-05-206-518/+2
| | |
* | | Merge pull request #8824 from volzhs/android-payment-masterRémi Verschelde2017-05-201-24/+23
|\ \ \ | | | | | | | | Fix android payment logical error
| * | | Fix android payment logical errorvolzhs2017-05-191-24/+23
| | | | | | | | | | | | | | | | | | | | getting sku detail runs only if mod != 0 which means querying 20*n will not get sku details. referenced from https://github.com/googlesamples/android-play-billing/blob/master/TrivialDrive/app/src/main/java/com/example/android/trivialdrivesample/util/IabHelper.java#L1029-L1062
* | | | Removing rasterizer from iphoneBastiaanOlij2017-05-203-3467/+0
| |/ / |/| |
* | | Merge pull request #8756 from BastiaanOlij/mfi_support_3.0Rémi Verschelde2017-05-183-80/+451
|\ \ \ | | | | | | | | MFI gamepad support for iPhone
| * | | MFI gamepad support for iPhoneBastiaanOlij2017-05-173-80/+451
| | | |
* | | | Use new Godot icon consistently everywhereRémi Verschelde2017-05-171-0/+0
|/ / /
* / / Removal of Image from Variant, converted to a Resource.Juan Linietsky2017-05-1712-32/+34
|/ /
* / Upgrade Android build tools to the latestPedro J. Estébanez2017-05-161-1/+1
|/
* Merge pull request #8725 from volzhs/android-jni-masterRémi Verschelde2017-05-121-0/+1
|\ | | | | Fix compile error when use "android_add_jni_dir"
| * Fix compile error when use "android_add_jni_dir"volzhs2017-05-121-0/+1
| |
* | Merge pull request #8723 from volzhs/fix-android-masterRémi Verschelde2017-05-123-5/+6
|\ \ | | | | | | Fix possible memory leak for Android and update gradle
| * | Update to latest gradlevolzhs2017-05-122-3/+4
| | |
| * | Fix possible memory leak for Androidvolzhs2017-05-121-2/+2
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | /godot_dev/platform/android/java/src/com/google/android/vending/expansion/downloader/impl/DownloaderService.java:575: Error: The WIFI_SERVICE must be looked up on the Application context or memory will leak on devices < Android N. Try changing to .getApplicationContext() [WifiManagerLeak] mWifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Explanation for issues of type "WifiManagerLeak": On versions prior to Android N (24), initializing the WifiManager via Context#getSystemService can cause a memory leak if the context is not the application context. Change context.getSystemService(...) to context.getApplicationContext().getSystemService(...). 1 errors, 0 warnings
* | Put brave old bb10 platform to a well-deserved restRémi Verschelde2017-05-0819-3150/+0
| | | | | | | | Add some 🔥 to appease @reduz. Fixes #8692.
* | Implemented scrolling factor for smooth trackpad scrollingtoger52017-05-072-39/+30
| | | | | | | | | | Working platforms platform: OSX, Windows. Support for almost all ui elements, including project list.
* | Improve documentation of thirdparty code snippetsRémi Verschelde2017-05-0710-3/+170
| |
* | X11: Abort build if using OpenSSL 1.1.0+Rémi Verschelde2017-05-061-0/+9
| | | | | | | | Workaround until #8624 is fixed.
* | Merge pull request #8656 from Faless/fix_udp_waitRémi Verschelde2017-05-051-0/+2
|\ \ | | | | | | Fix UDP::wait() deadlock
| * | Fix UDP wait() not returning after first received packetFabio Alessandrelli2017-05-051-0/+2
| |/
* | Merge pull request #8625 from eska014/html5-cursorshapeRémi Verschelde2017-05-052-3/+33
|\ \ | |/ |/| HTML5: Cursor style control
| * Implement cursor style control in HTML5 platformL. Krause2017-05-022-3/+33
| |
* | Merge pull request #8574 from eska014/html5-noglutRémi Verschelde2017-05-023-75/+27
|\ \ | | | | | | Remove GLUT usage in HTML5 platform
| * | Remove GLUT usage in HTML5 platformL. Krause2017-04-283-75/+27
| | |
* | | Merge pull request #8576 from eska014/html5-mousemodesRémi Verschelde2017-05-022-10/+54
|\ \ \ | | |/ | |/| HTML5: Implement mouse lock/capture and hiding
| * | Implement mouse capture and hiding in HTML5 exportL. Krause2017-05-022-10/+54
| | | | | | | | | | | | MOUSE_MODE_CONFINED cannot be implemented.
* | | Merge pull request #8586 from vnen/uwp-3Rémi Verschelde2017-05-016-48/+160
|\ \ \ | | | | | | | | Fix compilation for UWP
| * | | Fix compilation for UWPGeorge Marques2017-04-296-48/+160
| |/ /
* | | Merge pull request #8572 from akien-mga/thirdpartyRémi Verschelde2017-04-291-4/+5
|\ \ \ | |/ / |/| | Moving more thirdparty stuff (minizip, some single-file external libs) to the thirdparty directory
| * | Move core thirdparty files to thirdparty/{minizip,misc}Rémi Verschelde2017-04-281-4/+5
| |/
* / Fix HTML5 key eventsL. Krause2017-04-291-3/+3
|/ | | | Regression from 86f5ac3
* Merge pull request #8547 from eska014/html5-pointer-inputRémi Verschelde2017-04-263-289/+212
|\ | | | | HTML5: Add (multi-)touch events, fix inverted scrolling
| * Implement HTML5 touch eventsL. Krause2017-04-262-206/+109
| |