| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | HTML5 start-up overhaul | Leon Krause | 2017-09-11 | 7 | -392/+392 |
| | | | | | | | | | | | | | | | | | - Implement promise-based JS interface for custom HTML page integration - Add download progress callback - Add progress bar and indeterminate spinner to default HTML page - Try downloading files multiple times when failing - Get rid of godotfs.js - Separate steps for engine initialization, game initialization and game start - Allow multiple games on one HTML page - Substitution placeholders only used in .html file - Placeholders renamed: $GODOT_BASE => $GODOT_BASENAME, $GODOT_TMEM -> $GODOT_TOTAL_MEMORY - Emscripten Module is now Engine.RuntimeEnvironment (no longer a global) | ||||
| * | Merge pull request #10575 from henkz1/android_quit_error | Rémi Verschelde | 2017-08-23 | 3 | -3/+3 |
| |\ | | | | | fix UnsatisfiedLinkError when quitting on android | ||||
| | * | fix UnsatisfiedLinkError when quitting | Henrik Andersson | 2017-08-23 | 3 | -3/+3 |
| | | | |||||
| * | | Removed unnecessary returns and break statements | Wilson E. Alvarez | 2017-08-22 | 1 | -1/+0 |
| | | | |||||
| * | | Merge pull request #10487 from marcelofg55/curscr_as_default | Rémi Verschelde | 2017-08-22 | 9 | -17/+38 |
| |\ \ | |/ |/| | p_screen param from get_screen_* funcs now default to the current screen | ||||
| | * | p_screen param from get_screen_* funcs now default to the current screen | Marcelo Fernandez | 2017-08-21 | 9 | -17/+38 |
| | | | |||||
| * | | Merge pull request #10340 from Rubonnek/remove-unnecessary-assignments | Rémi Verschelde | 2017-08-22 | 7 | -23/+11 |
| |\ \ | | | | | | | Removed unnecessary assignments | ||||
| | * | | Removed unnecessary assignments | Wilson E. Alvarez | 2017-08-21 | 7 | -23/+11 |
| | | | | |||||
| * | | | Merge pull request #10254 from marcelofg55/master | Rémi Verschelde | 2017-08-22 | 1 | -1/+6 |
| |\ \ \ | |/ / |/| | | Added notification const NOTIFICATION_WM_ABOUT | ||||
| | * | | Added notification const NOTIFICATION_WM_ABOUT | Marcelo Fernandez | 2017-08-17 | 1 | -1/+6 |
| | | | | |||||
| * | | | Merge pull request #10471 from akien-mga/args-doubledash | Rémi Verschelde | 2017-08-21 | 7 | -26/+25 |
| |\ \ \ | | | | | | | | | Third take at making command-line arguments more UNIX-like + main.cpp and help cleanup | ||||
| | * | | | Fixes for new two-dash long command line arguments | Rémi Verschelde | 2017-08-21 | 7 | -26/+25 |
| | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | - Fixes some single-dash leftovers that were missed in the previous commit - Reorder the help output for clarity, and document missing options - Drop obsolete options: --noop, --pack, --editor-scene, --level, --import, --import-script, --no-quit - Improve error message on malformed arguments and do not display help on error - Always use long form of arguments when starting a new Godot process from C++, for clarity and easy grepping - Cleanup obsolete code here and there | ||||
| * / | | Fix y axis for set_window_position on OS X | Marcelo Fernandez | 2017-08-21 | 1 | -3/+8 |
| |/ / | |||||
| * | | Revert "Second take at making command-line arguments more UNIX-like + ↵ | Juan Linietsky | 2017-08-19 | 7 | -25/+26 |
| | | | | | | | | | main.cpp and help cleanup" | ||||
| * | | Fixes for new two-dash long command line arguments | Rémi Verschelde | 2017-08-19 | 7 | -26/+25 |
| | | | | | | | | | | | | | | | | | - Fixes some single-dash leftovers that were missed in the previous commit - Reorder the help output for clarity, and document missing options - Drop obsolete options: --noop, --pack, --editor-scene, --level, --import, --import-script, --no-quit - Improve error message on malformed arguments and do not display help on error - Cleanup obsolete code here and there | ||||
| * | | Set the X11 class hint before mapping the window | Richard Adenling | 2017-08-19 | 2 | -11/+14 |
| | | | | | | | | | | | | | | | | | | | | | Setting the class hint before mapping the window will allow some window managers to determine if a window should be treated specially. This is also in accordance with the ICCCM spec which says that WM_CLASS should only be changed when a window is in a withdrawn (unmapped) state. Fixes #10429 | ||||
| * | | Windows: Drop support for obsolete MinGW | Rémi Verschelde | 2017-08-18 | 1 | -35/+20 |
| | | | | | | | | | | | | | | | | | The version we support is MinGW-w64: https://sourceforge.net/p/mingw-w64 The old original MinGW from which it was forked (https://sourceforge.net/projects/mingw), is no longer maintained and useless for us. Fixes #10396. | ||||
| * | | Workaround missing WM_TOUCH on mingw-w64 < 4.0 | Rémi Verschelde | 2017-08-18 | 1 | -4/+3 |
| | | | | | | | | | Upstream bug report: https://sourceforge.net/p/mingw-w64/bugs/460/ | ||||
| * | | Windows: Drop support for Vista (0x0600) | Rémi Verschelde | 2017-08-18 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | We need the efficient SRWLock methods which are not supported on Vista, and loading them dynamically while providing fallbacks is not worth the effort. Closes #10243. Sorry Vista users... As you are running a supported which is no longer supported by Microsoft (https://support.microsoft.com/en-us/help/13853/windows-lifecycle-fact-sheet), we can only encourage you to upgrade to a more recent version if you can, or switch to Linux, which should give your old hardware a new youth. | ||||
| * | | Add closest_power_of_2 func and implement mix_rate/latency on OS X | Marcelo Fernandez | 2017-08-17 | 4 | -39/+71 |
| | | | |||||
| * | | Removed unused variable | Wilson E. Alvarez | 2017-08-17 | 1 | -1/+0 |
| | | | |||||
| * | | Synchronize parameter names in definition and declaration | TwistedTwigleg | 2017-08-16 | 7 | -26/+26 |
| | | | | | | | | | Fixes #10244. | ||||
| * | | Merge pull request #10264 from Rubonnek/use-const-reference | Rémi Verschelde | 2017-08-16 | 5 | -6/+6 |
| |\ \ | | | | | | | Use const reference where favorable | ||||
| | * | | Use const reference where favorable | Wilson E. Alvarez | 2017-08-14 | 5 | -6/+6 |
| | |/ | |||||
| * / | Fix get_screen_* funcs returning old values after resolution changes on Windows | Marcelo Fernandez | 2017-08-14 | 2 | -48/+96 |
| |/ | |||||
| * | Merge pull request #10142 from bruvzg/3.0-osx-ime | Rémi Verschelde | 2017-08-11 | 2 | -10/+142 |
| |\ | | | | | Add IME support (macOS) | ||||
| | * | Implement NSTextInputClient protocol for IME | bruvzg | 2017-08-09 | 2 | -10/+142 |
| | | | |||||
| * | | Removes type information from method binds | Ignacio Etcheverry | 2017-08-10 | 1 | -1/+1 |
| |/ | |||||
| * | removed calls to cursor_set_visible on all platforms fixes #10167 | toger5 | 2017-08-08 | 4 | -4/+4 |
| | | |||||
| * | Merge pull request #10141 from ISylvox/lower_case_godot_api | Rémi Verschelde | 2017-08-07 | 12 | -25/+25 |
| |\ | | | | | Makes all Godot API's Methods lower_case | ||||
| | * | Makes all Godot API's methods Lower Case | Indah Sylvia | 2017-08-07 | 12 | -25/+25 |
| | | | |||||
| * | | Merge pull request #10127 from bruvzg/3.0-osx-logging | Rémi Verschelde | 2017-08-07 | 2 | -0/+44 |
| |\ \ | | | | | | | Duplicate error messages to macOS logging system (Console.app) | ||||
| | * | | Duplicate error messages to macOS logging system | bruvzg | 2017-08-06 | 2 | -0/+44 |
| | | | | |||||
| * | | | Merge pull request #10106 from BastiaanOlij/ios_fix_buttons | Rémi Verschelde | 2017-08-07 | 1 | -5/+3 |
| |\ \ \ | | | | | | | | | iOS copy touch coordinate as is | ||||
| | * | | | Copy point into mouse event as is | BastiaanOlij | 2017-08-05 | 1 | -5/+3 |
| | |/ / | |||||
| * | | | Merge pull request #10105 from eska014/html5-touch-hint | Rémi Verschelde | 2017-08-07 | 1 | -1/+5 |
| |\ \ \ | | | | | | | | | Implement OS.has_touchscreen_ui_hint() in HTML5 platform | ||||
| | * | | | Implement touch-screen check in HTML5 platform | L. Krause | 2017-07-28 | 1 | -1/+5 |
| | | | | | |||||
| * | | | | Merge pull request #10104 from eska014/canvas-mgmt | Rémi Verschelde | 2017-08-07 | 2 | -49/+71 |
| |\ \ \ \ | | | | | | | | | | | Improve HTML5 canvas management | ||||
| | * | | | | Improve HTML5 canvas management | L. Krause | 2017-08-05 | 2 | -49/+71 |
| | |/ / / | | | | | | | | | | | | | | | | | | | | | - set_window_maximized hides page content - Fix sporadic full-screen render-size bug in Chromium - Smoother resizing for maximized canvas | ||||
| * | | | | Merge pull request #10099 from bruvzg/3.0-fix-osx-warp_mouse_pos | Rémi Verschelde | 2017-08-07 | 1 | -8/+3 |
| |\ \ \ \ | | | | | | | | | | | Fix warp_mouse_pos on macOS | ||||
| | * | | | | Fix warp_mouse_pos on macOS | bruvzg | 2017-08-04 | 1 | -8/+3 |
| | | |/ / | |/| | | |||||
| * | | | | Merge pull request #10045 from marcelofg55/audioserver_finish | Rémi Verschelde | 2017-08-07 | 2 | -8/+0 |
| |\ \ \ \ | | | | | | | | | | | Fix double finalisation of audio drivers | ||||
| | * | | | | Fix double finalisation of audio drivers | Marcelo Fernandez | 2017-08-02 | 2 | -8/+0 |
| | | | | | | |||||
| * | | | | | UWP: Add Gamepad vibration support | George Marques | 2017-08-07 | 2 | -10/+63 |
| | | | | | | |||||
| * | | | | | UWP: Fix Gamepad removal logic | George Marques | 2017-08-07 | 1 | -9/+1 |
| | |_|_|/ |/| | | | | | | | | | | | Fix #9209 | ||||
| * | | | | Rename KEY_RETURN to KEY_ENTER and KEY_ENTER to KEY_KP_ENTER | Bojidar Marinov | 2017-08-06 | 6 | -8/+8 |
| | |/ / |/| | | | | | | | | Closes #7695 | ||||
| * | | | Merge pull request #9976 from ISylvox/update-gradle-android-master | Rémi Verschelde | 2017-08-04 | 5 | -12/+24 |
| |\ \ \ | |/ / |/| | | [3.0] Update Gradle-Android buildtool | ||||
| | * | | update gradle-android buildtool for master | ISylvox | 2017-07-30 | 5 | -12/+24 |
| | | | | |||||
| * | | | Merge pull request #9838 from RandomShaper/android-arm64 | Rémi Verschelde | 2017-08-01 | 4 | -14/+43 |
| |\ \ \ | | | | | | | | | Add support for ARMv8 (64-bit) on Android | ||||
| | * | | | Add support for ARMv8 (64-bit) on Android | Pedro J. Estébanez | 2017-07-25 | 4 | -14/+43 |
| | | | | | |||||
