aboutsummaryrefslogtreecommitdiff
path: root/platform
Commit message (Collapse)AuthorAgeFilesLines
* OS.get_screen_size now returns the correct value on OSXmarcelofg552016-05-122-2/+2
| | | | (cherry picked from commit b697de92efab8ddd9796a1f396cebfb159be11b0)
* Fix windows 64-bits build.George Marques2016-05-061-0/+2
| | | | | | | | | The change in `tools/doc/doc_data.cpp` is needed because the MSVC compiler does not support variable length arrays. Fix #4113 (cherry picked from commit 9424c6c58f0b33f06807936958978e907574a845)
* Fixes 64 bit MSVC builds, disables bits parameterAleksandar Danilovic2016-05-061-0/+89
| | | | | | | | | Also Enables automatic detection of architecture for the MSVC compilers. Builds without assembly optimisations for x64 Closes issue #3098 Signed-off-by: Aleksandar Danilovic <greatgames.alexandar@gmail.com> (cherry picked from commit 7762e1afe60d6cf3ae310a4cf0af0e25ae5d18c6)
* Fixed behavior of OS.set_window_resizableMattias Cibien2016-05-061-1/+1
| | | | | | Should fix #4428. * Minimize button is not hidden anymore (cherry picked from commit 8fb7280f39600b1fec6f5a88fba29aecb0caa9b4)
* OSX: Fix lib suffix for Android lib (#4499)Rémi Verschelde2016-05-011-3/+1
| | | | | Fixes #1452. (cherry picked from commit 94274b9ab517aac175d205636f8561ff76d45eda)
* Implement OS.get_process_ID for WindowsGeorge Marques2016-05-012-0/+6
| | | | | | | Based on code by @ratsdiov. Closes #1733 (cherry picked from commit 2cd8e86aa016fe8c61a48889529aa81284f6d889)
* Fix launching from .app on OSXAriel Manzur2016-04-291-1/+9
| | | | (cherry picked from commit 6962fd91c6c03ceec91e8f25242ca5c638dfea03)
* Move export GUI debug toggle to export settings windoweska2016-04-294-4/+4
| | | | (cherry picked from commit ab4caa79538750d7557308dd4f83d6b17d9bdd22)
* NACL removal: fix leftoverRémi Verschelde2016-04-271-562/+0
|
* Drop NACL platformRémi Verschelde2016-04-2723-2928/+0
| | | | | | | | It's no longer maintained and Chrome-specific, so it's not a viable solution to deploy Godot games in browsers. The current prefered alternative is asm.js (platform/javascript), and we're looking forward to WebAssembly. (cherry picked from commit ec606f94dc259cd4d22b11e9147789b87ed73738)
* Drop obsolete WIP for Flash platformRémi Verschelde2016-04-2729-24483/+0
| | | | | | | | | It was apparently never fully functional and has not been maintained. Flash itself is nowadays clearly a deprecated technology, so there will not be further work on it. platform/javascript and the upcoming WebAssembly technologies should have a brighter future. (cherry picked from commit f368d380e708bd39589a309e2611b55306b78b3a)
* Add fallback to legacy KeyboardEvent in web exporteska2016-04-271-1/+21
| | | | | | | Fallback to KeyboardEvent property `charCode` is absence of both `key` and `char` for retrieval of unicode value. (cherry picked from commit 45b90f16ca080c601e6bf7038979eabb6b7eaa3e)
* Reimplement key input events in Emscripten exporteska2016-04-274-121/+435
| | | | | | | Scancodes work, but unicode values are now completely broken in some browser/OS combinations. (cherry picked from commit 0e9eefb7d4d3d3b10558ade0fea5ea9656a7cace)
* remove unused resources and add korean locale for androidvolzhs2016-04-272-3/+52
| | | | | | | - remove unused resources in platform/android/java/res/values/strings.xml - add korean language resource for apk expansion download screen (cherry picked from commit e94e710893960d9b6581c0c669a436173185d596)
* x11: Flush the X output buffer after changing mouse modeIgnacio Etcheverry2016-04-271-0/+2
| | | | (cherry picked from commit 5907a007dc2e9dd7c89649cfed42dbc0239e4b42)
* memdelete 'joy_thread' + 'joy_mutex' on ::~joystick_linux()MSC2016-04-061-0/+2
| | | | (cherry picked from commit 391095e0efe075268b892ff47a5885f5a6e2706f)
* Add support for gnu-libstc++-4.9 needed by recent NDK versionsblubee2016-04-021-7/+9
| | | | | | | | The 4.9 version is the default one, people can still build using 4.8 with older NDK versions by setting the (optional) NDK_TARGET and NDK_TARGET_X86 environment variables. (cherry picked from commit a0fb5b5f95f0d4ce90766301ddce4e5f199fb125)
* Remove trailing spacesRémi Verschelde2016-04-0220-217/+217
| | | | (cherry picked from commit 0a5472e697dee57956c2583a50bc5cf5faada5d8)
* Expose android/shutdown_adb_on_exit parameter and default to trueRémi Verschelde2016-04-021-0/+1
| | | | | | | | | | It was added in 30d0ca9 for the Steam build but only enabled when parsing a ._sc_ file that would define it. It is now available for all users to toggle, in and outside of Steam. Fixes #4073. (cherry picked from commit c58494038702876403687e5b76a100f077b8d9b3)
* Add -r flag to adb install for keep app user datasanikoyes2016-04-021-0/+1
| | | | (cherry picked from commit 9e026fecef94c5bc52ecddf6db5ec60c76b2e3be)
* remove trailing whitespaceHubert Jarosz2016-04-0249-412/+412
| | | | (cherry picked from commit 4a4f2479146aa33e235ed57cde311efda68d3c8f)
* osx: fix inverted horizontal scrollinghondres2016-04-021-1/+1
| | | | (cherry picked from commit 02eddbf7dae761c7763119271bb5cca5c0059c03)
* Added relative paths for DirAccess::remove()Zher Huei Lee2016-03-052-4/+7
| | | | | | Follows similar behaviour to DirAccess::rename() (cherry picked from commit d7052ddba334de3df1190837c6d8589b48799965)
* html5: workaround for echo key events.hondres2016-03-053-2/+27
| | | | (cherry picked from commit 352db6b17eaed84fef930723a67c6fba40a4b099)
* fix gradle build on windowsvolzhs2016-03-051-1/+1
| | | | (cherry picked from commit d6cc887627de8868d88fe93968978a90f243c8e1)
* added [presets] to ._sc_ and "android/shutdown_adb_on_exit" to editor_settingsAriel Manzur2016-02-291-0/+10
| | | | (cherry picked from commit 30d0ca97664a7645ce8b2af7d169f0cee3248953)
* theora on server buildAriel Manzur2016-02-271-1/+0
|
* x11: fix joysticks not recognizing some buttonshinsbart2016-02-271-3/+1
| | | | dpad on x360 pads with kernel < 4.3 is working now
* Reject any native video player calls on iOS that point to files within .pck ↵Aren Villanueva2016-02-193-65/+36
| | | | | | archives. Fix the paths for both res:// and user:// specified video files.
* Rename KEY_KP_SUBSTRACT to KEY_KP_SUBTRACTRémi Verschelde2016-02-175-5/+5
| | | | | The former name was incorrect in English, though for us latin lovers it's an understandable mistake. Second part of and closes #3626.
* Merge pull request #3715 from Hinsbart/libudev_includeRémi Verschelde2016-02-151-1/+4
|\ | | | | X11: include libudev only on udev builds
| * include libudev only on udev buildshondres2016-02-151-1/+4
| |
* | adding xcode project templateAriel Manzur2016-02-1439-0/+613
|/
* x11: make dependancy on libudev optionalhondres2016-02-143-11/+41
|
* win: fix xinput triggers not resetting correctlyHondres2016-02-121-1/+1
|
* fix platform bb10 compilationhondres2016-02-112-1/+5
|
* Merge pull request #3428 from Hinsbart/android-gamepadpunto-2016-02-089-160/+668
|\ | | | | support gamepad remapping on android
| * use fallback mapping from listHondres2016-01-271-1/+1
| |
| * can use fallback mapping on all platformshondres2016-01-241-1/+1
| |
| * support gamepad remapping on androidhondres2016-01-249-159/+667
| |
* | Added constant to retrieve Windows' Documents pathFranco Eusébio Garcia2016-02-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | According to MSDN's documentation (https://msdn.microsoft.com/en-us/library/windows/desktop/bb762181(v=vs.85).aspx), CSIDL_PERSONAL represents the default path to Windows Document's folder: "Previous to Version 6.0. The file system directory used to physically store a user's common repository of documents. A typical path is C:\Documents and Settings\username\My Documents. This should be distinguished from the virtual My Documents folder in the namespace. To access that virtual folder, use SHGetFolderLocation, which returns the ITEMIDLIST for the virtual location, or refer to the technique described in Managing the File System."
* | Merge pull request #3615 from Hinsbart/joy_check_fixpunto-2016-02-071-2/+4
|\ \ | | | | | | x11: more verbose checking for joystick capabilities
| * | x11: more verbose checking for joystick capabilitieshondres2016-02-071-2/+4
| | |
* | | added option to link libstdc++ staticallyJuan Linietsky2016-02-041-0/+4
| | |
* | | Removed PE-bliss, win32 binares so far remain without icon, had many issues ↵Juan Linietsky2016-02-042-374/+2
| | | | | | | | | | | | | | | | | | | | | | | | with it: -corrupted 32 binaries without reason -does not support upx binaries -forces dependency o libstdc++
* | | -removed buggy flags, makes mingw+32 bits+optimized work again,Juan Linietsky2016-02-041-1/+1
|/ /
* | support horizontal mouse wheel, use in text editorhondres2016-02-043-3/+35
| |
* | Merge pull request #3575 from Hinsbart/_net_wm_nameRémi Verschelde2016-02-041-0/+4
|\ \ | | | | | | x11: set _net_wm_name property
| * | x11: set _net_wm_name propertyhondres2016-02-041-0/+4
| | |
* | | Merge pull request #3493 from Hinsbart/wm_classRémi Verschelde2016-02-032-0/+18
|\ \ \ | | | | | | | | x11: use different strings for WM_CLASS depending on context