Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-21 | remove trailing whitespace | Hubert Jarosz | |
2016-05-20 | Added 'fat' option for bits param on scons for osx, this will produce a fat ↵ | marcelofg55 | |
binary that contains both 32 bits and 64 bits binaries | |||
2016-05-19 | Android buildsystem: Drop obsolete NDK_TOOLCHAIN argument | Rémi Verschelde | |
It was a duplicate of NDK_TARGET, and not used for anything. | |||
2016-05-11 | OS.get_screen_size now returns the correct value on OSX | marcelofg55 | |
2016-05-09 | Working even when re-entering window. | Mattias Cibien | |
2016-05-09 | Cursor hides only in client area | Mattias Cibien | |
At the moment is however restored when going out and then in again. | |||
2016-05-03 | Fix windows 64-bits build. | George Marques | |
The change in `tools/doc/doc_data.cpp` is needed because the MSVC compiler does not support variable length arrays. Fix #4113 | |||
2016-05-03 | Fixed behavior of OS.set_window_resizable | Mattias Cibien | |
Should fix #4428. * Minimize button is not hidden anymore | |||
2016-05-02 | Merge pull request #4274 from Griefchief/master | Rémi Verschelde | |
Fixes 64 bit MSVC builds, disables bits parameter | |||
2016-05-01 | OSX: Fix lib suffix for Android lib (#4499) | Rémi Verschelde | |
Fixes #1452. | |||
2016-04-29 | Implement OS.get_process_ID for Windows | George Marques | |
Based on code by @ratsdiov. Closes #1733 | |||
2016-04-29 | disabled appirater | Ariel Manzur | |
2016-04-29 | rate url on iOS and properly launching from .app on OSX | Ariel Manzur | |
2016-04-29 | I think this is ok, "resizable" property might change | Ariel Manzur | |
2016-04-29 | merged iphoen changes | Ariel Manzur | |
2016-04-28 | Move export GUI debug toggle to export settings window | eska | |
2016-04-25 | Drop NACL platform | Rémi Verschelde | |
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. | |||
2016-04-25 | Drop obsolete WIP for Flash platform | Rémi Verschelde | |
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. | |||
2016-04-19 | Merge pull request #4377 from eska014/web-keys | Rémi Verschelde | |
Fix key events in web export | |||
2016-04-19 | Add fallback to legacy KeyboardEvent in web export | eska | |
Fallback to KeyboardEvent property `charCode` is absence of both `key` and `char` for retrieval of unicode value. | |||
2016-04-19 | Reimplement key input events in Emscripten export | eska | |
Scancodes work, but unicode values are now completely broken in some browser/OS combinations. | |||
2016-04-19 | remove unused resources and add korean locale for android | volzhs | |
- remove unused resources in platform/android/java/res/values/strings.xml - add korean language resource for apk expansion download screen | |||
2016-04-12 | x11: Flush the X output buffer after changing mouse mode | Ignacio Etcheverry | |
2016-04-10 | Fixes 64 bit MSVC builds, disables bits parameter | Aleksandar Danilovic | |
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> | |||
2016-04-03 | memdelete 'joy_thread' + 'joy_mutex' on ::~joystick_linux() | MSC | |
2016-04-02 | Remove trailing spaces | Rémi Verschelde | |
2016-03-20 | Merge pull request #4105 from akien-mga/pr-android-shutdown-adb | Rémi Verschelde | |
Expose android/shutdown_adb_on_exit parameter | |||
2016-03-20 | Expose android/shutdown_adb_on_exit parameter and default to true | Rémi Verschelde | |
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. | |||
2016-03-20 | Add support for gnu-libstc++-4.9 needed by recent NDK versions | blubee | |
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. | |||
2016-03-18 | Add -r flag to adb install for keep app user data | sanikoyes | |
2016-03-13 | Fixes the month consistency issue in enums and get_date etc | Kyle Luce | |
- Also updated the docs to reflect this. - Added some vim temp files to gitignore - Changed NaCL to be consistent with the other OS_Unix::get_date implementation (added 1 to month to map to 1-12) Ticket: https://github.com/godotengine/godot/issues/4025 | |||
2016-03-12 | Borderless window support for the Win32 build. Default window position is ↵ | Saracen | |
now also centred. | |||
2016-03-09 | fix possible crash in platform/x11/joystick_linux.cpp | Hubert Jarosz | |
ev may be tainted and out of MAX_KEY range, which will cause joy->key_map[ev.code] to crash | |||
2016-03-09 | remove trailing whitespace | Hubert Jarosz | |
2016-03-07 | osx: fix inverted horizontal scrolling | hondres | |
2016-03-05 | Merge pull request #3893 from leezh/diraccess_fix | Rémi Verschelde | |
Added relative paths for DirAccess::remove() | |||
2016-03-04 | html5: workaround for echo key events. | hondres | |
2016-03-02 | fix gradle build on windows | volzhs | |
2016-03-01 | Added relative paths for DirAccess::remove() | Zher Huei Lee | |
Follows similar behaviour to DirAccess::rename() | |||
2016-02-27 | added [presets] to ._sc_ and "android/shutdown_adb_on_exit" to editor_settings | Ariel Manzur | |
2016-02-25 | theora on server build | Ariel Manzur | |
2016-02-24 | x11: fix joysticks not recognizing some buttons | hinsbart | |
dpad on x360 pads with kernel < 4.3 is working now | |||
2016-02-19 | Reject any native video player calls on iOS that point to files within .pck ↵ | Aren Villanueva | |
archives. Fix the paths for both res:// and user:// specified video files. | |||
2016-02-17 | Rename KEY_KP_SUBSTRACT to KEY_KP_SUBTRACT | Rémi Verschelde | |
The former name was incorrect in English, though for us latin lovers it's an understandable mistake. Second part of and closes #3626. | |||
2016-02-15 | Merge pull request #3715 from Hinsbart/libudev_include | Rémi Verschelde | |
X11: include libudev only on udev builds | |||
2016-02-15 | include libudev only on udev builds | hondres | |
2016-02-14 | adding xcode project template | Ariel Manzur | |
2016-02-14 | x11: make dependancy on libudev optional | hondres | |
2016-02-12 | win: fix xinput triggers not resetting correctly | Hondres | |
2016-02-11 | fix platform bb10 compilation | hondres | |