summaryrefslogtreecommitdiff
path: root/platform
AgeCommit message (Collapse)Author
2017-05-27Merge pull request #8935 from volzhs/get-locale-masterRémi Verschelde
Make OS.get_locale() returns same value
2017-05-27Allow custom CCFLAGS for iPhone buildsPedro J. Estébanez
plus disable exceptions by default
2017-05-27Make OS.get_locale() returns same valuevolzhs
2017-05-26Merge pull request #8916 from sanikoyes/Pr-fix_audio_stoped_iOSRémi Verschelde
Fix audio can't resume in iOS platform
2017-05-26Merge pull request #8923 from volzhs/fix-android-build-masterRémi Verschelde
Fix android build regression by be7ced4
2017-05-26Fix android build regression by be7ced4volzhs
2017-05-26Fixed audio can not resume if it is interrupted cause by an incoming phone callsanikoyes
2017-05-26Merge pull request #8912 from RandomShaper/ios-alertRémi Verschelde
Implement OS.alert() for iOS
2017-05-25Implement OS.alert() for iOSPedro J. Estébanez
2017-05-25Merge pull request #8878 from BastiaanOlij/ios_make_arm64_defaultRémi Verschelde
Make arm64 the default option and set minimum to iOS 9
2017-05-23Fix UWP compilation issuesGeorge Marques
Also fix VS2017 compilation problems.
2017-05-23Make arm64 the default option and set minimum to iOS 9BastiaanOlij
2017-05-23Merge pull request #8877 from BastiaanOlij/fix_ios_godot3Rémi Verschelde
More fixes for iOS Godot 3.0
2017-05-23More fixes for iOS Godot 3.0BastiaanOlij
- 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
2017-05-23Fix a few issues compiling windows and using VS2015 and earlierBastiaanOlij
2017-05-22added modifier key to scroll eventtoger5
2017-05-22fixed osx input eventtoger5
2017-05-20Removal of InputEvent as built-in Variant type..Juan Linietsky
this might cause bugs I haven't found yet..
2017-05-20Merge pull request #8841 from BastiaanOlij/osx_cleanup_old_classesRémi Verschelde
Removing unused files and old GLFW comments on OSX
2017-05-20Merge pull request #8824 from volzhs/android-payment-masterRémi Verschelde
Fix android payment logical error
2017-05-20Removing rasterizer from iphoneBastiaanOlij
2017-05-20Doing a little bit of cleanupBastiaanOlij
2017-05-19Fix android payment logical errorvolzhs
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
2017-05-18Merge pull request #8756 from BastiaanOlij/mfi_support_3.0Rémi Verschelde
MFI gamepad support for iPhone
2017-05-17Use new Godot icon consistently everywhereRémi Verschelde
2017-05-17MFI gamepad support for iPhoneBastiaanOlij
2017-05-17Removal of Image from Variant, converted to a Resource.Juan Linietsky
2017-05-16Upgrade Android build tools to the latestPedro J. Estébanez
2017-05-12Merge pull request #8725 from volzhs/android-jni-masterRémi Verschelde
Fix compile error when use "android_add_jni_dir"
2017-05-12Merge pull request #8723 from volzhs/fix-android-masterRémi Verschelde
Fix possible memory leak for Android and update gradle
2017-05-12Fix compile error when use "android_add_jni_dir"volzhs
2017-05-12Update to latest gradlevolzhs
2017-05-12Fix possible memory leak for Androidvolzhs
/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
2017-05-08Put brave old bb10 platform to a well-deserved restRémi Verschelde
Add some 🔥 to appease @reduz. Fixes #8692.
2017-05-07Implemented scrolling factor for smooth trackpad scrollingtoger5
Working platforms platform: OSX, Windows. Support for almost all ui elements, including project list.
2017-05-07Improve documentation of thirdparty code snippetsRémi Verschelde
2017-05-06X11: Abort build if using OpenSSL 1.1.0+Rémi Verschelde
Workaround until #8624 is fixed.
2017-05-05Merge pull request #8656 from Faless/fix_udp_waitRémi Verschelde
Fix UDP::wait() deadlock
2017-05-05Merge pull request #8625 from eska014/html5-cursorshapeRémi Verschelde
HTML5: Cursor style control
2017-05-05Fix UDP wait() not returning after first received packetFabio Alessandrelli
2017-05-02Implement cursor style control in HTML5 platformL. Krause
2017-05-02Merge pull request #8574 from eska014/html5-noglutRémi Verschelde
Remove GLUT usage in HTML5 platform
2017-05-02Merge pull request #8576 from eska014/html5-mousemodesRémi Verschelde
HTML5: Implement mouse lock/capture and hiding
2017-05-02Implement mouse capture and hiding in HTML5 exportL. Krause
MOUSE_MODE_CONFINED cannot be implemented.
2017-05-01Merge pull request #8586 from vnen/uwp-3Rémi Verschelde
Fix compilation for UWP
2017-04-29Fix compilation for UWPGeorge Marques
2017-04-29Merge pull request #8572 from akien-mga/thirdpartyRémi Verschelde
Moving more thirdparty stuff (minizip, some single-file external libs) to the thirdparty directory
2017-04-29Fix HTML5 key eventsL. Krause
Regression from 86f5ac3
2017-04-28Remove GLUT usage in HTML5 platformL. Krause
2017-04-28Move core thirdparty files to thirdparty/{minizip,misc}Rémi Verschelde