Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-23 | Merge pull request #42173 from nekomatata/popup-menu-click-delay | Rémi Verschelde | |
Fix popup menu item selected when opening the menu | |||
2020-09-23 | Merge pull request #42260 from kotelifelif/42255 | Rémi Verschelde | |
CPUParticles emission shape values update dynamically | |||
2020-09-23 | Merge pull request #42181 from Leleat/document-open-open_script_create_dialog | Rémi Verschelde | |
Add description for ScriptEditor.open_script_create_dialog() | |||
2020-09-23 | Merge pull request #42187 from m4gr3d/main_android_subview_init_update | Rémi Verschelde | |
Add overridable init method for the Godot fragment instance. | |||
2020-09-23 | Fixes updating CPUParticles emmision shape values | booer | |
2020-09-23 | Merge pull request #42195 from extrawurst/patch-1 | Rémi Verschelde | |
add iOS Simulator platform | |||
2020-09-23 | Merge pull request #42196 from Calinou/fix-file-access-zip-crash | Rémi Verschelde | |
Fix crash when opening a ZIP data pack | |||
2020-09-23 | Merge pull request #42203 from rcorre/physicsmat_hint | Rémi Verschelde | |
Fix hints on PhysicsMaterial bounce/friction. | |||
2020-09-23 | Merge pull request #42217 from Calinou/doc-richtextlabel-append-bbcode-no-close | Rémi Verschelde | |
Document `RichTextLabel.append_bbcode()` not closing previously open tags | |||
2020-09-22 | Merge pull request #42254 from Chaosus/vs_fix_expressions | Yuri Roubinsky | |
Fix expressions nodes in visual shaders | |||
2020-09-22 | Fix expressions nodes in visual shaders | Yuri Roubinsky | |
2020-09-22 | Merge pull request #41912 from skyace65/NavigationMesh | Rémi Verschelde | |
Document some properties of NavigationMesh | |||
2020-09-22 | Merge pull request #42215 from Chaosus/forbid_invalid_varyings | Rémi Verschelde | |
Forbids varying declaration in particles and sky shaders | |||
2020-09-22 | Merge pull request #41430 from Lunatoid/no-icon-resize | Rémi Verschelde | |
Fixes DefaultProjectIcon scaling with editor scale | |||
2020-09-22 | Fixes DefaultProjectIcon scaling with editor scale | Lunatoid | |
Should fix #27009 where the DefaultProjectIcon was scaling with the EDSCALE. Now it checks if the icon name is equal to "DefaultProjectIcon" and sets the scale to 1.0 instead of EDSCALE. | |||
2020-09-22 | Merge pull request #42171 from Pineapple/fix-custom-modules-vs-master | Rémi Verschelde | |
Fix custom modules in Visual Studio | |||
2020-09-22 | Forbids varying declaration in particles and sky shaders | Yuri Roubinsky | |
2020-09-22 | Merge pull request #42243 from Chaosus/vs_fix_bug | Yuri Roubinsky | |
Fix UniformRef invalid updating when LineEdit focus out | |||
2020-09-22 | Fix UniformRef invalid updating when LineEdit focus out | Yuri Roubinsky | |
2020-09-21 | Merge pull request #42225 from Chaosus/vs_fix_bugs | Yuri Roubinsky | |
Fix some bugs in visual shader editor | |||
2020-09-21 | Fix some bugs in visual shader editor | Yuri Roubinsky | |
2020-09-21 | Merge pull request #42227 from Calinou/doc-array-fix-typo | Rémi Verschelde | |
Fix a typo in the Array class documentation | |||
2020-09-21 | Fix a typo in the Array class documentation | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/4049. | |||
2020-09-21 | Merge pull request #42226 from Calinou/doc-rect2-aabb | Rémi Verschelde | |
Cross-reference AABB and Rect2 in the class reference | |||
2020-09-21 | Cross-reference AABB and Rect2 in the class reference | Hugo Locurcio | |
2020-09-20 | Document `RichTextLabel.append_bbcode()` not closing previously open tags | Hugo Locurcio | |
This closes #42216. | |||
2020-09-20 | Merge pull request #42211 from Calinou/doc-javascript-build-time-disable | Rémi Verschelde | |
Document that the JavaScript singleton may be disabled at build-time | |||
2020-09-20 | Document that the JavaScript singleton may be disabled at build-time | Hugo Locurcio | |
2020-09-20 | Merge pull request #41426 from madmiraal/fix-bullet-zero-scale | Rémi Verschelde | |
Check and correct for zero scaling when unscaling Bullet basis. | |||
2020-09-19 | Fix hints on PhysicsMaterial bounce/friction. | Ryan Roden-Corrent | |
These values are only meaningful in the range 0 to 1. Make sure the editor enforces reasonable values. Fixes #42202. | |||
2020-09-19 | Fix crash when opening a ZIP data pack | Hugo Locurcio | |
Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> | |||
2020-09-19 | add iOS Simulator platform | Stephan Dilly | |
without this we have to manually drop a `x86_64` builds of gdnative libs into the Xcode project to allow running in `iOS Simulator` | |||
2020-09-18 | Add overridable init method for the Godot fragment instance. | Fredia Huya-Kouadio | |
2020-09-19 | add description for ScriptEditor.open_script_create_dialog() | Leleat | |
2020-09-18 | Merge pull request #42174 from akien-mga/zstd-1.4.5 | Rémi Verschelde | |
zstd: Update to upstream version 1.4.5 | |||
2020-09-18 | zstd: Update to upstream version 1.4.5 | Rémi Verschelde | |
2020-09-18 | Fix popup menu item selected when opening the menu | PouleyKetchoupp | |
In order to allow selecting items by either holding left click, or click to open and click again to select, mouse button release was invalidated based on the amount of mouse motion. This was causing issues in some scenarios where an item could be selected while opening the menu if the mouse moved enough between button press and release. This case could happen in the language selection of the project manager, especially on linux, because of the order and timing of the mouse events on x11. This change invalidates mouse release based on a timing condition rather than moved distance to handle any case from the display server properly. | |||
2020-09-18 | Fix custom modules in Visual Studio | Bartłomiej T. Listwon | |
2020-09-18 | Merge pull request #41861 from Razoric480/fix-vscript-value-by-type | Rémi Verschelde | |
Add a function to sanitize variant values in visual script | |||
2020-09-18 | Add a VScript func to sanitize variant values | Francois Belair | |
Fixes #27611 | |||
2020-09-18 | Merge pull request #41930 from RandomShaper/fix_gdscript_leaks | Rémi Verschelde | |
Fix leaks in GDScript | |||
2020-09-18 | Merge pull request #42165 from akien-mga/codespell | Rémi Verschelde | |
Fix typos with codespell | |||
2020-09-18 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 1.17.1. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick fave findn leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ``` | |||
2020-09-18 | Merge pull request #42157 from akien-mga/math-RANDOM_MAX-netbsd | Rémi Verschelde | |
Linux/BSD: Fix support for NetBSD | |||
2020-09-18 | X11: Try to load libXrandr.so.3 if libXrandr.so.2 isn't found | Rémi Verschelde | |
All Linux distros, and FreeBSD and OpenBSD seem to have libXrandr.so.2, but for some reason recent NetBSD versions seem to have libXrandr.so.3 now. | |||
2020-09-18 | NetBSD: Implement OS_Unix::get_executable_path() | Rémi Verschelde | |
Same implementation as OpenBSD seems to work fine. | |||
2020-09-18 | Linux/BSD: Fix support for NetBSD | Rémi Verschelde | |
Add __NetBSD__ to `platform_config.h` so that it can find `alloca` and use the proper `pthread_setname_np` format. Rename RANDOM_MAX to avoid conflict with NetBSD stdlib. Fixes #42145. | |||
2020-09-17 | Merge pull request #41528 from keegano/physics-fix-wrap-angle | Rémi Verschelde | |
Wrap angles to (-pi, pi) in momentum calculation. | |||
2020-09-17 | Merge pull request #39944 from bruvzg/click-through-4 | Rémi Verschelde | |
Add mouse event pass-through support for window. | |||
2020-09-17 | Add window click-through support. | bruvzg | |