| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #10658 from henkz1/android-build | Rémi Verschelde | 2017-08-26 | 1 | -3/+3 |
| |\ | | | | | Fix Android build | ||||
| | * | Fix refactored Object::cast_to in NO_SAFE_CAST branch | Henrik Andersson | 2017-08-26 | 1 | -3/+3 |
| | | | |||||
| * | | Fix double single quotes in `connect` error print | Poommetee Ketson | 2017-08-27 | 1 | -1/+1 |
| | | | |||||
| * | | Merge pull request #10648 from Xrayez/image-get-size | Rémi Verschelde | 2017-08-26 | 2 | -0/+7 |
| |\ \ | | | | | | | Add handy get_size() method to Image class | ||||
| | * | | Add handy get_size() method to Image class | Andrii Doroshenko (Xrayez) | 2017-08-26 | 2 | -0/+7 |
| | |/ | |||||
| * / | Cleanup tons of obsolete commented out code | Rémi Verschelde | 2017-08-26 | 1 | -12/+9 |
| |/ | | | | | Mostly in EditorNode, dropping some obsolete editor plugins and also a cleanup of ProjectSettings/EditorSettings. | ||||
| * | Convert Object::cast_to() to the static version | Hein-Pieter van Braam | 2017-08-24 | 13 | -74/+34 |
| | | | | | | | | | | | | | Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/ | ||||
| * | Add a static version of Object::cast_to() | Hein-Pieter van Braam | 2017-08-24 | 1 | -0/+40 |
| | | | | | | This is to prepare to replace all instances of the member version of cast_to(). | ||||
| * | Show proper string with InputEvent.as_text() | volzhs | 2017-08-25 | 2 | -0/+84 |
| | | |||||
| * | GCC fixes | Juan Linietsky | 2017-08-24 | 1 | -2/+0 |
| | | |||||
| * | -Code completion for enumerations | Juan Linietsky | 2017-08-24 | 2 | -8/+17 |
| | | | | | -Disabled GDNative and GDNativeScript so build compiles again | ||||
| * | Changed MethodBind API to request information from methods. It's much claner ↵ | Juan Linietsky | 2017-08-23 | 9 | -109/+131 |
| | | | | | | | now. Also changed PropertyInfo to include informatino about class names. | ||||
| * | Moved member variables to initializer list | Wilson E. Alvarez | 2017-08-22 | 1 | -7/+7 |
| | | |||||
| * | Merge pull request #10520 from RandomShaper/fix-double-parsing | Juan Linietsky | 2017-08-22 | 1 | -3/+1 |
| |\ | | | | | Fix tokenization of doubles | ||||
| | * | Fix tokenization of doubles | Pedro J. Estébanez | 2017-08-21 | 1 | -3/+1 |
| | | | | | | | | | Fixes #9600. | ||||
| * | | Merge pull request #10487 from marcelofg55/curscr_as_default | Rémi Verschelde | 2017-08-22 | 3 | -9/+9 |
| |\ \ | | | | | | | 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 | 3 | -9/+9 |
| | | | | |||||
| * | | | Merge pull request #10340 from Rubonnek/remove-unnecessary-assignments | Rémi Verschelde | 2017-08-22 | 2 | -3/+1 |
| |\ \ \ | | | | | | | | | Removed unnecessary assignments | ||||
| | * | | | Removed unnecessary assignments | Wilson E. Alvarez | 2017-08-21 | 2 | -3/+1 |
| | | | | | |||||
| * | | | | Merge pull request #10254 from marcelofg55/master | Rémi Verschelde | 2017-08-22 | 2 | -1/+7 |
| |\ \ \ \ | | | | | | | | | | | Added notification const NOTIFICATION_WM_ABOUT | ||||
| | * | | | | Added notification const NOTIFICATION_WM_ABOUT | Marcelo Fernandez | 2017-08-17 | 2 | -1/+7 |
| | | | | | | |||||
| * | | | | | Merge pull request #10351 from neikeq/enums-are-for-the-weak | Juan Linietsky | 2017-08-21 | 21 | -780/+910 |
| |\ \ \ \ \ | | | | | | | | | | | | | ClassDB: Provide the enum name of integer constants | ||||
| | * | | | | | ClassDB: Provide the enum name of integer constants | Ignacio Etcheverry | 2017-08-20 | 21 | -780/+910 |
| | | |_|/ / | |/| | | | |||||
| * | | | | | Merge pull request #10415 from tagcup/euler_hack | Rémi Verschelde | 2017-08-22 | 1 | -13/+4 |
| |\ \ \ \ \ | | | | | | | | | | | | | Fix incorrect workaround for pure Y (X) rotations in XYZ (YXZ) conven… | ||||
| | * | | | | | Fix incorrect workaround for pure Y (X) rotations in XYZ (YXZ) convention. | Ferenc Arn | 2017-08-18 | 1 | -13/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #10352. | ||||
| * | | | | | | Merge pull request #10225 from Noshyaar/map | Rémi Verschelde | 2017-08-22 | 1 | -2/+8 |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | GDScript Built-in: add inverse_lerp & range_lerp | ||||
| | * | | | | | | GDScript Built-in: add inverse_lerp & range_lerp | Poommetee Ketson | 2017-08-18 | 1 | -2/+8 |
| | | | | | | | | |||||
| * | | | | | | | Merge pull request #10433 from djrm/pr_svg_support | Rémi Verschelde | 2017-08-21 | 2 | -4/+4 |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | SVG support | ||||
| | * | | | | | | | Added support for SVG | Daniel J. Ramirez | 2017-08-20 | 2 | -4/+4 |
| | | | | | | | | | |||||
| * | | | | | | | | Merge pull request #10484 from Sipaha/pr_mt_queue_deadlock_fix | Rémi Verschelde | 2017-08-21 | 2 | -18/+47 |
| |\ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / |/| | | | | | | | Fix deadlock in CommandQueueMT | ||||
| | * | | | | | | | Move wait_for_flush out of queue lock | Sipaha | 2017-08-21 | 2 | -18/+47 |
| | |/ / / / / / | |||||
| * | | | | | | | Merge pull request #10471 from akien-mga/args-doubledash | Rémi Verschelde | 2017-08-21 | 3 | -12/+0 |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | 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 | 3 | -12/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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 binary object marshalling, closes #9472 | Juan Linietsky | 2017-08-21 | 1 | -1/+6 |
| |/ / / / / / / | |||||
| * / / / / / / | simplify the way window is allowed to steal focus, no longer relying on ↵ | Juan Linietsky | 2017-08-20 | 1 | -2/+0 |
| |/ / / / / / | | | | | | | | | | | | | | | | | | | project.godot. Closes #9459 | ||||
| * | | | | | | Merge pull request #10319 from neikeq/pr-engine-editor-hint | Juan Linietsky | 2017-08-20 | 4 | -0/+28 |
| |\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | Adds Engine::is_editor_hint() method | ||||
| | * | | | | | Adds editor_hint to Engine class | Ignacio Etcheverry | 2017-08-19 | 4 | -0/+28 |
| | | |_|/ / | |/| | | | |||||
| * | | | | | Merge pull request #10481 from neikeq/water-store-remark | Rémi Verschelde | 2017-08-20 | 1 | -1/+6 |
| |\ \ \ \ \ | | | | | | | | | | | | | Fixes Ref's GetTypeInfo missing with ptrcall disabled | ||||
| | * | | | | | Fixes Ref's GetTypeInfo missing with ptrcall disabled | Ignacio Etcheverry | 2017-08-20 | 1 | -1/+6 |
| | | | | | | | |||||
| * | | | | | | Exposed Transform.interpolate_with() | Przemysław Gołąb (n-pigeon) | 2017-08-20 | 1 | -1/+3 |
| |/ / / / / | | | | | | | | | | | | | | | | Additionaly changed values names for 2D version to more descriptive ones. | ||||
| * | | | | | Revert "Second take at making command-line arguments more UNIX-like + ↵ | Juan Linietsky | 2017-08-19 | 3 | -0/+12 |
| | | | | | | | | | | | | | | | | | | | | | main.cpp and help cleanup" | ||||
| * | | | | | Fixes for new two-dash long command line arguments | Rémi Verschelde | 2017-08-19 | 3 | -12/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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 | ||||
| * | | | | | Rename localization method to `tr` again | Rémi Verschelde | 2017-08-18 | 2 | -6/+6 |
| | | | | | | | | | | | | | | | | | | | | | Partial revert of #10380 based on contributor ~~bullying~~ feedback. | ||||
| * | | | | | Properly manage drawing of primitives when they lack an area, fixes #8930 | Juan Linietsky | 2017-08-18 | 1 | -2/+2 |
| | | | | | | |||||
| * | | | | | -Properly check limits to objects sent (regarding to size), fixes #9034 | Juan Linietsky | 2017-08-18 | 8 | -116/+195 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | -Changed the way objects are marshalled and sent to the debugger -Editing debugged objects happens in the remote inspector now | ||||
| * | | | | | Merge pull request #10406 from marcelofg55/closest_power_of_2 | Rémi Verschelde | 2017-08-18 | 6 | -21/+38 |
| |\ \ \ \ \ | |_|_|/ / |/| | | | | Add closest_power_of_2 func and implement mix_rate/latency on OS X | ||||
| | * | | | | Add closest_power_of_2 func and implement mix_rate/latency on OS X | Marcelo Fernandez | 2017-08-17 | 6 | -21/+38 |
| | | |_|/ | |/| | | |||||
| * | | | | Merge pull request #10380 from akien-mga/XL_MESSAGE | Rémi Verschelde | 2017-08-17 | 2 | -12/+5 |
| |\ \ \ \ | |/ / / |/| | | | Rename `XL_MESSAGE`/`tr` to `localize` | ||||
| | * | | | Rename `XL_MESSAGE` aka `tr` to `localize` | Rémi Verschelde | 2017-08-17 | 2 | -12/+5 |
| | | | | | | | | | | | | | | | | | | | | | Also renames `set_message_translation` to `set_message_localization` for consistency. | ||||
| * | | | | Merge pull request #8899 from toger5/BetterFlatStylebox | Rémi Verschelde | 2017-08-16 | 2 | -0/+9 |
| |\ \ \ \ | |/ / / |/| | | | Better flat stylebox with rounded corners | ||||
