aboutsummaryrefslogtreecommitdiff
path: root/platform (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Prevent to stop music in another background app on iOSvolzhs2017-11-061-0/+3
| | |
* | | Merge pull request #12691 from eska014/webaudioRémi Verschelde2017-11-066-1119/+16
|\ \ \ | | | | | | | | Fix WebAudio and HTML5 build
| * | | Fix WebAudio and HTML5 buildLeon Krause2017-11-066-1119/+16
| | | |
* | | | Convert DOS line endings to Unix line endingsRémi Verschelde2017-11-051-90/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Should fix issues some of us have with `misc/dist/uwp_template/AppxManifest.xml` always showing up as modified. Might cause issues on Windows due to the removal of BOMs or change of line endings in some of the Mono, UWP or gradlew.bat files, we will test and adapt if need be.
* | | | Merge pull request #12262 from AndreaCatania/pplugJuan Linietsky2017-11-0321-145/+4
|\ \ \ \ | | | | | | | | | | Physics server plug
| * | | | Implemented physics plugAndreaCatania2017-11-0421-145/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | SCons: make use_lto a global option and opt-in for iphoneRémi Verschelde2017-11-023-4/+6
| | | | | | | | | | | | | | | | | | | | Supersedes #12553, see discussion in #12552.
* | | | | Add Colemak keybindings to editor for osxN0hbdy2017-10-302-2/+4
| | | | |
* | | | | Implemented OS get_latin_keyboard_variant on x11Marcelo Fernandez2017-10-302-0/+34
| |/ / / |/| | |
* | | | Merge pull request #12467 from marcelofg55/emscripten_detectRémi Verschelde2017-10-301-2/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Detect javascript platform using EMSCRIPTEN env as well [ci skip]
| * | | | Detect javascript platform using EMSCRIPTEN env as wellMarcelo Fernandez2017-10-281-2/+5
| | | | |
* | | | | Disable logging until the logs location is sorted outRémi Verschelde2017-10-295-5/+15
|/ / / / | | | | | | | | | | | | Temporary workaround for #12277.
* | | | Merge pull request #12442 from mhilbrunner/patch-1Rémi Verschelde2017-10-271-4/+1
|\ \ \ \ | | | | | | | | | | detect.py: Fix KeyError if using MinGW and LTO
| * | | | detect.py: Fix KeyError if using MinGW and LTOmhilbrunner2017-10-271-4/+1
| | |/ / | |/| |
* / | | Travis: Simplify matrix, disable iphone and add X11 tools=no/clangRémi Verschelde2017-10-271-0/+4
|/ / / | | | | | | | | | | | | | | | | | | 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.
* | / Sound support for Javascript (untested).Juan Linietsky2017-10-262-3/+92
| |/ |/|
* | Implemented vsync OS functions for OS XMarcelo Fernandez2017-10-232-0/+20
| |
* | Add WindowsTerminalLogger to UWP buildGeorge Marques2017-10-221-0/+1
| |
* | Cleanup unnecessary debug printsRémi Verschelde2017-10-212-2/+0
| |
* | Merge pull request #12252 from MednauN/masterRémi Verschelde2017-10-202-17/+62
|\ \ | | | | | | iOS GameCenter fixes
| * | Fix iOS GameCenter connection flowEvgeny Zuev2017-10-202-17/+62
| |/ | | | | | | Add method for secure authentication to GameCenter
* | update GKScore init functionsersoong2017-10-201-1/+1
| | | | | | | | (cherry picked from commit 5ed8826dd07eab83b6f6b6b7d3af602926a54ae6)
* | Fix BSD compile issuesMarcelo Fernandez2017-10-172-0/+9
|/
* SCons: Disable server platform as it does not buildRémi Verschelde2017-10-171-0/+3
| | | | See #8361. [ci skip]
* Sign iOS dylibs before packagingRuslan Mustakov2017-10-161-9/+9
| | | | | | 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.
* Merge pull request #12074 from J08nY/fix/use-bin-nameRémi Verschelde2017-10-153-10/+10
|\ | | | | Use binary names instead of absolute paths in calls to OS::execute.
| * Use binary names instead of absolute paths in calls to OS::execute.fix/use-bin-nameJ08nY2017-10-133-10/+10
| | | | | | | | | | | | 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.
* | export onBackPress for Android ModuleRamesh Ravone2017-10-152-8/+10
| |
* | Fixed wrong Virtual-KeyCode(0x12) pair on Windows platform (#12073)Indah Sylvia2017-10-141-1/+1
|/
* Drop unusued LEGACYGL_ENABLED checkRémi Verschelde2017-10-1310-12/+12
| | | | [ci skip]
* Merge pull request #12010 from eska014/jsevalRémi Verschelde2017-10-111-29/+53
|\ | | | | Improve JavaScript calls, allow passing byte arrays to GDScript
| * Improve JavaScript callsLeon Krause2017-10-111-29/+53
| | | | | | | | | | | | - 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
* | Merge pull request #11775 from endragor/android-keyboard-inputAndreas Haas2017-10-102-106/+30
|\ \ | | | | | | Improve input handling on Android
| * | Improve input handling on AndroidRuslan Mustakov2017-10-042-106/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | | Merge pull request #11926 from RameshRavone/patch-11Rémi Verschelde2017-10-091-0/+10
|\ \ \ | | | | | | | | | | | | | | | | flatDir support [Android] (Master) [ci skip]
| * | | flatDir support [Android]Ramesh Ravone2017-10-071-0/+10
| | | |
* | | | Merge pull request #11878 from endragor/gradle-repository-urlsRémi Verschelde2017-10-091-2/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Use additional repositories for gradle build dependencies too [ci skip]
| * | | | Use additional repositories for gradle build dependencies tooRuslan Mustakov2017-10-061-2/+3
| | | | |
* | | | | Merge pull request #11826 from endragor/fix-game-center-player-idRémi Verschelde2017-10-091-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Fix returning Game Center player ID
| * | | | | Fix returning Game Center player IDRuslan Mustakov2017-10-041-1/+1
| | | | | |
* | | | | | Merge pull request #11824 from endragor/ios-loggingRémi Verschelde2017-10-094-16/+18
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix logging on iOS
| * | | | | | Fix logging on iOSRuslan Mustakov2017-10-044-16/+18
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | RotatedFileLogger needs data_dir on iOS to be initialized, so setting data_dir has been moved to initialize_core.
* | | | | | Merge pull request #11810 from marcelofg55/osx_export_improvRémi Verschelde2017-10-095-273/+181
|\ \ \ \ \ \ | | | | | | | | | | | | | | OS X export code improvements
| * | | | | | Improvements on the export code on OS XMarcelo Fernandez2017-10-031-269/+177
| | | | | | |
| * | | | | | OS::execute can now read from stderr too when executing with a pipeMarcelo Fernandez2017-10-034-4/+4
| | | | | | |
* | | | | | | Merge pull request #11718 from poke1024/retinaRémi Verschelde2017-10-092-53/+60
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | Fixes some retina problems on multi monitor setups
| * | | | | | fixes several scaling problems on multi monitor retina/non-retina setups on OS XBernhard Liebl2017-10-052-53/+60
| | |_|/ / / | |/| | | |
* | | | | | Fix python 3 build in osx-specific platformN0hbdy2017-10-071-1/+1
| | | | | |
* | | | | | Added the set/get_setting function in Editor/Project settings. Renamed has() ↵Juan Linietsky2017-10-052-2/+2
|/ / / / / | | | | | | | | | | | | | | | to has_setting. Fixes #11844
* | | | | Merge pull request #11823 from endragor/virtual-keyboard-heightGilles Roudiere2017-10-0410-3/+101
|\ \ \ \ \ | | | | | | | | | | | | Allow to obtain virtual keyboard height