summaryrefslogtreecommitdiff
path: root/platform
AgeCommit message (Collapse)Author
2017-11-03Merge pull request #12262 from AndreaCatania/pplugJuan Linietsky
Physics server plug
2017-11-04Implemented physics plugAndreaCatania
Moved init_physics Implemented physics 2D plug Fix clang Fix clang Fix static check Fix clang Fix static check Moved physics server initialization Moved physics server settings initialization
2017-11-02SCons: make use_lto a global option and opt-in for iphoneRémi Verschelde
Supersedes #12553, see discussion in #12552.
2017-10-30Add Colemak keybindings to editor for osxN0hbdy
2017-10-30Implemented OS get_latin_keyboard_variant on x11Marcelo Fernandez
2017-10-30Merge pull request #12467 from marcelofg55/emscripten_detectRémi Verschelde
Detect javascript platform using EMSCRIPTEN env as well [ci skip]
2017-10-29Disable logging until the logs location is sorted outRémi Verschelde
Temporary workaround for #12277.
2017-10-28Detect javascript platform using EMSCRIPTEN env as wellMarcelo Fernandez
2017-10-27Merge pull request #12442 from mhilbrunner/patch-1Rémi Verschelde
detect.py: Fix KeyError if using MinGW and LTO
2017-10-27detect.py: Fix KeyError if using MinGW and LTOmhilbrunner
2017-10-27Travis: Simplify matrix, disable iphone and add X11 tools=no/clangRémi Verschelde
Travis always has massive backlog of macOS builds, so we can't rely on them too much. The iphone build was mostly useful to spot tools=no or target=release_debug issues, so replacing it by an appropriate X11 build.
2017-10-26Sound support for Javascript (untested).Juan Linietsky
2017-10-23Implemented vsync OS functions for OS XMarcelo Fernandez
2017-10-22Add WindowsTerminalLogger to UWP buildGeorge Marques
2017-10-21Cleanup unnecessary debug printsRémi Verschelde
2017-10-20Merge pull request #12252 from MednauN/masterRémi Verschelde
iOS GameCenter fixes
2017-10-20update GKScore init functionsersoong
(cherry picked from commit 5ed8826dd07eab83b6f6b6b7d3af602926a54ae6)
2017-10-20Fix iOS GameCenter connection flowEvgeny Zuev
Add method for secure authentication to GameCenter
2017-10-17Fix BSD compile issuesMarcelo Fernandez
2017-10-17SCons: Disable server platform as it does not buildRémi Verschelde
See #8361. [ci skip]
2017-10-16Sign iOS dylibs before packagingRuslan Mustakov
These changes allow to open the exported project in XCode and Run it immediately to begin debugging. Before these changes you'd have to sign GDNative libs and change Build Configuration manually.
2017-10-15Merge pull request #12074 from J08nY/fix/use-bin-nameRémi Verschelde
Use binary names instead of absolute paths in calls to OS::execute.
2017-10-15export onBackPress for Android ModuleRamesh Ravone
2017-10-14Fixed wrong Virtual-KeyCode(0x12) pair on Windows platform (#12073)Indah Sylvia
2017-10-13Use binary names instead of absolute paths in calls to OS::execute.J08nY
Now that #12009 is merged, we should let the system find the binary on the users $PATH and don't assume we know where to look for them in different distributions.
2017-10-13Drop unusued LEGACYGL_ENABLED checkRémi Verschelde
[ci skip]
2017-10-11Merge pull request #12010 from eska014/jsevalRémi Verschelde
Improve JavaScript calls, allow passing byte arrays to GDScript
2017-10-11Improve JavaScript callsLeon Krause
- Allow returning ArrayBuffer and views as PoolByteArray - Return real_t for integral numbers - Read all color channels as 0.0 - 1.0 floating point numbers
2017-10-10Merge pull request #11775 from endragor/android-keyboard-inputAndreas Haas
Improve input handling on Android
2017-10-09Merge pull request #11926 from RameshRavone/patch-11Rémi Verschelde
flatDir support [Android] (Master) [ci skip]
2017-10-09Merge pull request #11878 from endragor/gradle-repository-urlsRémi Verschelde
Use additional repositories for gradle build dependencies too [ci skip]
2017-10-09Merge pull request #11826 from endragor/fix-game-center-player-idRémi Verschelde
Fix returning Game Center player ID
2017-10-09Merge pull request #11824 from endragor/ios-loggingRémi Verschelde
Fix logging on iOS
2017-10-09Merge pull request #11810 from marcelofg55/osx_export_improvRémi Verschelde
OS X export code improvements
2017-10-09Merge pull request #11718 from poke1024/retinaRémi Verschelde
Fixes some retina problems on multi monitor setups
2017-10-07flatDir support [Android]Ramesh Ravone
2017-10-07Fix python 3 build in osx-specific platformN0hbdy
2017-10-06Use additional repositories for gradle build dependencies tooRuslan Mustakov
2017-10-05Added the set/get_setting function in Editor/Project settings. Renamed has() ↵Juan Linietsky
to has_setting. Fixes #11844
2017-10-05fixes several scaling problems on multi monitor retina/non-retina setups on OS XBernhard Liebl
2017-10-04Merge pull request #11823 from endragor/virtual-keyboard-heightGilles Roudiere
Allow to obtain virtual keyboard height
2017-10-04Fix logging on iOSRuslan Mustakov
RotatedFileLogger needs data_dir on iOS to be initialized, so setting data_dir has been moved to initialize_core.
2017-10-04Allow to obtain virtual keyboard heightRuslan Mustakov
On mobile platforms virtual keyboards take up significant amount of screen space and UI containing a text box may need to be adjusted after the keyboard appears to keep the text box visible to user. This commit adds a way to obtain virtual keyabord height so that controls are aware of how much they need to move.
2017-10-04Fix returning Game Center player IDRuslan Mustakov
2017-10-04Improve input handling on AndroidRuslan Mustakov
- Dispatch input immediately as it comes, instead of delaying it to the next step(). - Fix text box input handling when caret is at the middle of the text. - Minimize queueEvent calls on Java side.
2017-10-03fixed the OS.has_feature() API, and added support for 32 and 64.Juan Linietsky
2017-10-03Improvements on the export code on OS XMarcelo Fernandez
2017-10-03OS::execute can now read from stderr too when executing with a pipeMarcelo Fernandez
2017-10-03Merge pull request #11782 from eska014/persistent-userfs-testHein-Pieter van Braam
Add OS::is_userfs_persistent, allow starting HTML5 platform in private mode
2017-10-02Merge pull request #11568 from endragor/loggersAndreas Haas
Extract logging logic