| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2016-08-04 | Concluded base visual scripting! can edit but not run though. | Juan Linietsky | 7 | -6/+175 | |
| 2016-08-03 | More work on visual scripting.. | Juan Linietsky | 10 | -57/+349 | |
| 2016-08-03 | [ci skip] update Raycast documentation | Hubert Jarosz | 1 | -0/+2 | |
| clarification that set_cast_to needs LOCAL point and get_collision_point gives GLOBAL point | |||||
| 2016-08-03 | Bump version to 2.2-alpha | Rémi Verschelde | 2 | -4/+4 | |
| There are now new developments that will not be in 2.1-stable | |||||
| 2016-08-03 | Added missing license and quotation typo | Paulb23 | 2 | -1/+58 | |
| 2016-08-03 | More progress on visual script editing | Juan Linietsky | 15 | -109/+1019 | |
| 2016-08-03 | Fix translatable strings in VisualScript | Rémi Verschelde | 1 | -6/+6 | |
| 2016-08-02 | Fix set_window_size not setting the correct size on OSX | marcelofg55 | 1 | -0/+10 | |
| 2016-08-02 | WIP visual scripting, not working yet but you can check out stuff | Juan Linietsky | 79 | -1161/+10470 | |
| 2016-08-02 | DynamicFont caches now accounts for texture flags | Zher Huei Lee | 2 | -65/+67 | |
| CacheID added for future-proofing | |||||
| 2016-08-02 | Added extra spacing support for DynamicFont | Zher Huei Lee | 3 | -7/+77 | |
| Side effect is that label min-size will now take into account kerning. | |||||
| 2016-08-02 | Added texture mipmaps and filtering to DynamicFont | Zher Huei Lee | 2 | -10/+88 | |
| 2016-08-01 | Auto import project folder, confirm scan multiple folders or non-project folder | Dima Granetchi | 2 | -8/+50 | |
| 2016-08-01 | Added Scene tree dock shortcuts | Paulb23 | 1 | -6/+8 | |
| 2016-08-01 | Fix help page title indentation | Mario Schlack | 1 | -6/+4 | |
| 2016-07-31 | Improve dialog title when scanning for projects | Rémi Verschelde | 1 | -0/+1 | |
| 2016-07-31 | dnd folder open scan window if engine.cfg not found | Dima Granetchi | 1 | -0/+6 | |
| 2016-07-31 | fix run button availability check | Dima Granetchi | 2 | -14/+10 | |
| 2016-07-30 | Document FuncRef, GDFunctionState, InstancePlaceholder, RID, World2D | eska | 3 | -4/+28 | |
| 2016-07-31 | Fix String::is_valid_integer() for single symbols + and - | allkhor | 1 | -1/+1 | |
| 2016-07-30 | UI navigation via JOYSTICK_MOTION. | Andreas Haas | 1 | -0/+1 | |
| Previously, you could assign joystick axis events to "ui_*" actions but they had no effect. See https://godotengine.org/qa/6232 | |||||
| 2016-07-30 | Fix infinite loop when replacing text | Ignacio Etcheverry | 1 | -4/+6 | |
| 2016-07-29 | Project Manager: Import projects using filesystem drag'n'drop. | Andreas Haas | 2 | -0/+18 | |
| Can drop an engine.cfg file over the window to import it ;) | |||||
| 2016-07-29 | Explicitly initialize 'pending_auto_reload' to false. | Saracen | 1 | -0/+1 | |
| 2016-07-28 | New http request and tutorials icon | Daniel J. Ramirez | 7 | -1034/+77 | |
| Remove garbage in group icon | |||||
| 2016-07-29 | keep selected_list up to date | Dima Granetchi | 2 | -22/+35 | |
| 2016-07-28 | Fix editor icons source file generation | George Marques | 2 | -52/+1 | |
| Also removes the unused make_icons.py file. | |||||
| 2016-07-28 | World2D: Fix typo in default_density deprecation check | Rémi Verschelde | 1 | -1/+1 | |
| 2016-07-28 | Exposed enable syntax highlighting to properties | Paulb23 | 1 | -0/+1 | |
| 2016-07-28 | Fix regression with str() improvements for math types | Ignacio Etcheverry | 6 | -23/+44 | |
| 2016-07-27 | Fix Windows resource script | George Marques | 1 | -2/+2 | |
| 2016-07-27 | LineEdit: Fix event handled as text when a mod key is pressed | Ignacio Etcheverry | 1 | -1/+1 | |
| 2016-07-27 | AboutDialog: Popup respecting its minimum size | Ignacio Etcheverry | 1 | -1/+1 | |
| 2016-07-27 | Improve Windows application details | George Marques | 1 | -4/+10 | |
| 2016-07-27 | Project Settings: Use containers for the Input Map tab content | Ignacio Etcheverry | 1 | -16/+17 | |
| 2016-07-27 | Prettier str() for some math types | Ignacio Etcheverry | 5 | -10/+17 | |
| 2016-07-27 | Fix reading of empty StringArray-s in .tscn | Bojidar Marinov | 1 | -1/+3 | |
| Closes #5912 | |||||
| 2016-07-27 | Array has() documentation | Pawel Kowal | 1 | -0/+9 | |
| 2016-07-27 | Command-F focus filter input field in project manager | Dima Granetchi | 1 | -0/+4 | |
| 2016-07-26 | Fix GraphEdit dragging issues at scales != 1 | Rémi Verschelde | 2 | -1/+5 | |
| Works around the issue originally described in #5907 (that was then hijacked to describe the broader issue it exposes). | |||||
| 2016-07-26 | Changed the way the step decimals are computed to a safer way, fixes many ↵ | Juan Linietsky | 6 | -22/+27 | |
| issues. | |||||
| 2016-07-26 | Windows: Make alert message box use MB_TASKMODAL | Rémi Verschelde | 1 | -1/+1 | |
| This flag pauses the current running thread, allowing for the user to see the alert and acknowledge it before the thread continues (and e.g. crashes :)). Thanks to @SuperUserNameMan for finding it. Ref: https://msdn.microsoft.com/en-us/library/windows/desktop/ms645505(v=vs.85).aspx | |||||
| 2016-07-26 | Add gamepad mapping for the steam controller userspace driver. | Andreas Haas | 1 | -0/+1 | |
| 2016-07-25 | Stop baking process if there is no geometry in the BakedLightInstance. | Daniel J. Ramirez | 4 | -2/+20 | |
| moved missing baked light warning to BakedLightInstance configuration warning | |||||
| 2016-07-25 | GLES2: Check for GPU capabilities to display an error | Rémi Verschelde | 1 | -1/+10 | |
| The engine will still segfault, but the error message should be displayed by the OS in a blocking manner, so that it will only crash once users have acknowledged the error dialog. Closes #1162. | |||||
| 2016-07-25 | Update Tween class documentation | Javier López Úbeda | 1 | -3/+3 | |
| 2016-07-25 | Fix some warnings | Johan Manuel | 3 | -6/+6 | |
| 2016-07-25 | Fix default ranges of the inspector | Bojidar Marinov | 1 | -2/+2 | |
| Probably closes #3091 (Should apply to Variant::REAL and Variant::INT) | |||||
| 2016-07-24 | Update documentation. | MarianoGNU | 2 | -2/+2 | |
| 2016-07-24 | expose bottom panel button to EditorPlugin scripts | MarianoGNU | 2 | -3/+4 | |
