Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-13 | Mono/C#: Fix class parser bug with 'where T : struct' | Ignacio Etcheverry | |
The struct decl parsing was outdated. Make both struct decl and class declparsing share the same code. | |||
2019-12-11 | Merge pull request #34181 from van800/rider | Rémi Verschelde | |
Support Rider as external editor for Godot mono version | |||
2019-12-11 | Merge pull request #34261 from timothyqiu/check-34255 | Rémi Verschelde | |
Fixes infinite loop when switching editor | |||
2019-12-11 | Merge pull request #34259 from timothyqiu/validate-texture-32982 | Rémi Verschelde | |
Fixes crash after set_piece_texture with invalid texture | |||
2019-12-11 | Support Rider as External Editor | Ivan Shakhov | |
2019-12-11 | Merge pull request #34241 from timothyqiu/sync-fallbacks-size-32701 | Rémi Verschelde | |
Fixes crash when using DynamicFont::set_font_data | |||
2019-12-11 | Merge pull request #34240 from timothyqiu/invalid-shader-io-29985 | Rémi Verschelde | |
Fixes crash when shader inputs/outputs is invalid string | |||
2019-12-11 | Merge pull request #34239 from timothyqiu/theme-clear-32702 | Rémi Verschelde | |
Fixes crash when using Theme::clear | |||
2019-12-11 | Merge pull request #34250 from flyingpimonster/fix-musl | Rémi Verschelde | |
Fix build on musl-based systems | |||
2019-12-11 | Fixes infinite loop when switching editor | Haoyu Qiu | |
2019-12-11 | Validates texture in set_piece_texture | Haoyu Qiu | |
2019-12-10 | Fix build on musl-based systems | James Westman | |
On some systems, including Alpine Linux, musl is used instead of glibc. This commit patches the third-party V-HACD module to provide a macro not provided by musl. Fixes #31555. | |||
2019-12-10 | Merge pull request #34238 from clayjohn/GLES2-use-renderbuffer-post-process | Rémi Verschelde | |
Use renderbuffer depth for post-process buffers when appropriate | |||
2019-12-10 | Merge pull request #34237 from clayjohn/GLES2-force-32bit-buffer-webgl | Rémi Verschelde | |
Force 32 bit depth buffer for WebGL | |||
2019-12-10 | Fixes crash when using DynamicFont::set_font_data | Haoyu Qiu | |
2019-12-10 | Merge pull request #34222 from Calinou/doc-collisionshapes | Rémi Verschelde | |
Improve the Shape/Shape2D classes documentation | |||
2019-12-10 | Fixes crash when shader inputs/outputs is invalid string | Haoyu Qiu | |
2019-12-10 | Fixes crash when using Theme::clear | Haoyu Qiu | |
2019-12-10 | Merge pull request #34040 from qarmin/unused_variable_more_precise_numbers | Rémi Verschelde | |
Removed unused variables, add some constants numbers | |||
2019-12-10 | Improve the Shape/Shape2D classes documentation | Hugo Locurcio | |
2019-12-10 | Merge pull request #34234 from KoBeWi/apparently | Rémi Verschelde | |
Update minimum size of SpinBox on theme change | |||
2019-12-09 | Use renderbuffer depth for post-process buffers when appropriate | clayjohn | |
2019-12-09 | Force 32 bit depth buffer for WebGL | clayjohn | |
2019-12-10 | Removed unused variables, add some constants numbers | Rafał Mikrut | |
2019-12-10 | Update minimum size of SpinBox on theme change | Tomasz Chabora | |
2019-12-09 | Merge pull request #34217 from timothyqiu/delete-lines | Rémi Verschelde | |
Fixes Delete Line doesn't delete first line in script | |||
2019-12-09 | Merge pull request #34220 from Calinou/doc-kinematicbody-axis-lock | Rémi Verschelde | |
Document the KinematicBody axis lock methods | |||
2019-12-09 | Document the KinematicBody axis lock methods | Hugo Locurcio | |
2019-12-09 | Merge pull request #34218 from akien-mga/gles3-unbind-buffers | Rémi Verschelde | |
GLES3: Properly unbind buffers after draw commands | |||
2019-12-09 | Merge pull request #34210 from madmiraal/fix-bullet-motion-test | Rémi Verschelde | |
Check that motion is not zero before doing a sweep test. | |||
2019-12-09 | Merge pull request #34164 from Calinou/pckpacker-optional-args | Rémi Verschelde | |
Make some arguments in PCKPacker methods optional | |||
2019-12-09 | Merge pull request #34163 from Calinou/doc-improve-pckpacker | Rémi Verschelde | |
Improve the PCKPacker class documentation | |||
2019-12-09 | Merge pull request #34144 from timothyqiu/closing | Rémi Verschelde | |
Fixes prompt closes the wrong scene on quit | |||
2019-12-09 | Fixes Delete Line doesn't delete first line in script | Haoyu Qiu | |
Also, match multi-line delete behavior in script with single line: If there are four lines: A, B, C, D. Before the change: Delete C: Cursor lands on D Delete B and C: Cursor lands on A After the change: Delete C: Cursor lands on D Delete B and C: Cursor lands on D | |||
2019-12-09 | GLES3: Properly unbind buffers after draw commands | Rémi Verschelde | |
Patch provided by @oeleo1. Fixes #34120. | |||
2019-12-09 | Check that motion is not zero before doing a sweep test. | Marcel Admiraal | |
Fixes #25476. | |||
2019-12-09 | Merge pull request #34203 from bruvzg/ime_placeholder | Rémi Verschelde | |
Hide LineEdit placeholder if IME composition string is not empty. | |||
2019-12-09 | Merge pull request #34208 from allkhor/fix_scroll_item_list | Rémi Verschelde | |
Fixed strange behaviour of scroll in the ItemList. | |||
2019-12-09 | Merge pull request #34202 from bruvzg/macos_resize_loop | Rémi Verschelde | |
[macOS] Send resize event without actually resizing window on backing change. | |||
2019-12-09 | Merge pull request #34188 from dankan1890/quick_fix | Rémi Verschelde | |
Fix TilesetEditorContext snaps separation. | |||
2019-12-09 | Fixed strange behaviour of scroll in the ItemList. | allkhor | |
2019-12-08 | [macOS] Send resize event without actually resizing window on backing change. | bruvzg | |
Co-authored-by: Haoyu Qiu <timothyqiu32@gmail.com> | |||
2019-12-08 | Hide LineEdit placeholder if IME composition string is not empty. | bruvzg | |
2019-12-08 | Fix TilesetEditorContext separation snap. | dankan1890 | |
Fixes #34182 | |||
2019-12-07 | Merge pull request #34167 from YeldhamDev/filediag_comma_spaces_strip | Rémi Verschelde | |
Add spaces after commas and strip extra ones in *FileDialog filter menu | |||
2019-12-06 | Add spaces after commas and strip extra ones in *FileDialog filter menu | Michael Alexsander | |
2019-12-07 | Make some arguments in PCKPacker methods optional | Hugo Locurcio | |
Those arguments aren't required for most common use cases, so making them optional should help with code readability. | |||
2019-12-07 | Improve the PCKPacker class documentation | Hugo Locurcio | |
2019-12-07 | Merge pull request #34160 from Calinou/add-makerst-git-hook | Rémi Verschelde | |
Add a pre-commit hook to check the class reference syntax | |||
2019-12-07 | Merge pull request #34159 from akien-mga/doc-enums-constants | Rémi Verschelde | |
doc: Markup fixes for enums and constants |