summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-03-16[macOS] Remove unnecessary debug prints.bruvzg
(cherry picked from commit 42a30c76d9495d15c6f403f47b1adcf39f998969)
2023-03-15i18n: Sync translations with WeblateRémi Verschelde
2023-03-14Merge pull request #74907 from YuriSizov/4.0-cherrypicksYuri Sizov
Cherry-picks for the 4.0 branch (future 4.0.1) - 3rd batch
2023-03-14Redraw 2d viewport when guides are clearedthe-sink
(cherry picked from commit 0c051f41b16af834ad8b1fb46682aeef16fc88d6)
2023-03-14Fix typo in Window class.pcamp
"event as" -> "events will be" (cherry picked from commit 112977be262256b5cd3ac6713557dba74d905f44)
2023-03-14Convert OpenSimplexNoise to FastNoiseLiteMarius Hanl
- class name and octaves property (cherry picked from commit 862296273b3f446f4bbcfc5ea682a866ffe1ebcf)
2023-03-14Make sure Script Debugger is updated with the editor themeYuri Sizov
(cherry picked from commit 239eb31c900682f1d4fea56546096b5282d2a352)
2023-03-14Use linear filtering without mipmaps for ProceduralSkyMaterial and ↵clayjohn
PhysicalSkyMaterial (cherry picked from commit 572ac915145e7ccb6d32ab5c356076820e964433)
2023-03-14Fix exported type for Menubar start_indexjustchen1369
(cherry picked from commit dbfecdb3b04956db58ee199fdbd9f7c03794e269)
2023-03-14GDScript: Fix autocomplete inside a block with a type test conditionDmitrii Maganov
(cherry picked from commit e289a4ab2c404991d684b6c77b65d24f41be5b63)
2023-03-14clear filter input in Project Settings when opening Layersyedpodtrzitko
(cherry picked from commit e13bcf5b845fba1dbb2bbb02c8f14e7d3733a188)
2023-03-14Fix extension bindings for motion collision/result structsMikael Hermansson
(cherry picked from commit be64ffd25d0be68dce2b568c79347bab8101ac23)
2023-03-14Add missing TTRs in tiles editor and array inspectorHaoyu Qiu
(cherry picked from commit bef7f14885ab6ee9cdf4116f67dfa12239746677)
2023-03-14Vulkan: Fix VMA build with GCC 13Rémi Verschelde
Fixes #74647. (cherry picked from commit b113e6d4ff18dc1b1e6f4ec1bd0e307fd1d8623d)
2023-03-14Fix errors when closing floating docksHayden Leete
dock->get_index() on line 4463 was not behaving as expected due to dock having an internal sibling, so now we just get the index excluding internal nodes. line 4742 would throw an error if you made multiple docks floating then redocked the end docks first, but no longer (cherry picked from commit 21578e0bb4f3dd99bb288a1d631b064fa76b884f)
2023-03-14Tweak command syntax in Vulkan renderer failure messageHugo Locurcio
This quotes the executable name so that copying it always works (even if the path contains spaces). The command is also indented from the rest of the text and is no longer single-quoted, as that can prevent the command from running if the line is copied in its entirety (with the quotes). (cherry picked from commit ddc9cc3e492861dff43617cecb24ae919e122455)
2023-03-14increased max touches to 32 for iosChris Weber
(cherry picked from commit 54bd204377fb73a5871946005bd7cbbad4b91df9)
2023-03-14Document using `String.uri_encode()` with `OS.shell_open()`Hugo Locurcio
(cherry picked from commit 81ac3c3e7157a290c02548e7ad6adf50fd6e5118)
2023-03-14[Linux/X11] Add some missing keycodes/scancodes.bruvzg
(cherry picked from commit 5d35c600d5e4d6fc553246407e766d600f5b774e)
2023-03-14Fix error spam when naming a func at the end of the scriptVolTer
(cherry picked from commit 07dd627728b71dd3ea30bab9761a847a7e0c911e)
2023-03-14Fix buffer overrun in CPUParticles3DRedworkDE
(cherry picked from commit 89980dd9c98a01b6d353a9a087f5a4caec2dd1aa)
2023-03-14Fix coloring of the renderer options buttonHaoyu Qiu
(cherry picked from commit ac7a4f6e879715f1fece59facffbed3f78ab9b94)
2023-03-14Fix instance uniforms breaking when setting a new mesh.Johan Aires Rastén
Fixes #58113 (cherry picked from commit 26aecbfe572c7c1164cfb36088aaf443a73f99df)
2023-03-14Don't unset local_coords on starting transform.Ryan Roden-Corrent
This fixes a bug introduced by 806425621cfa3daba3ba9f6b020726490a3152a4, where dragging the gizmo no longer respected local transforms. I'm not sure why I called set_local_coords_enabled(false) in _compute_edit. Removing this line seems to fix gizmo-dragging local transforms, without breaking anything else. I also noticed that confirming a transform leaves the gizmo axis lines on the screen. This is fixed by calling update_transform_gizmo after clearing the edit mode/instant flags, so update_transform_gizmo knows not to render any axes. (cherry picked from commit d3d1223b970140b6a37d0c23e3b234c878be510a)
2023-03-14Propogate errors when creating an OpenGL context fails in X11clayjohn
(cherry picked from commit e7ea3ef53189d4bc94c784e4805a5311701ba9aa)
2023-03-14Fixes a canvas item set to clip children being drawn as black if no children ↵SlugFiller
are visible (cherry picked from commit f25508befb4f0358ba8a8aaa35cdee4d9c20637c)
2023-03-14Fix AABB calculation for meshes using Skeleton2DSlugFiller
(cherry picked from commit 06a1fe03644c57256b90b2840db1ef902187145a)
2023-03-14Fixed incorrect ERROR message when setting new PrimitiveMeshJohan Aires Rastén
If calling set_mesh with a PrimitiveMesh that has pending update, the _mesh_changed function would be called twice. The first time before set_base had been called, which could lead to an ERROR message about trying to set an invalid surface override material. (cherry picked from commit 007b488a5c23b33c6e0b741b55a482e5229f2b90)
2023-03-14Disable local space for blender transforms.Ryan Roden-Corrent
Having local_space enabled when starting a transform changed the behavior of VIEW space transforms. Now we disable local_space when starting a blender transform (there was already logic to restore the setting after the transform ends). This also hides the gizmo while performing a blender transform, otherwise the user will see it snap back and forth between the local and global alignment. I think the transform looks cleaner with the gizmo hidden anyways. Fixes #59392. (cherry picked from commit 806425621cfa3daba3ba9f6b020726490a3152a4)
2023-03-14Fix broken shortcut key inputRindbee
(cherry picked from commit 91e460d500c52505557ed79af4547f188b635589)
2023-03-14Modify JSON.stringify so that it doesn't create unnecessary empty lines from ↵Jakub Mateusz Marcowski
empty arrays (cherry picked from commit 0a55a320857b5ddb8ba4e3b6c096acf617f24733)
2023-03-14FBX: Disable importer when canceling FBX2glTF setupRémi Verschelde
Pretty hacky solution but it's better than an infinite loop. All this import setup needs to be redone, it's very difficult to properly bail out from an invalid import without triggering reimport loops. Also fix underline not visible at default editor scale in LinkButton. Fixes #73319. (cherry picked from commit d81e6ee024a8c64b80ac25c96b33c749ba1db79d)
2023-03-14Avoid overflow when calculating ptr address for 3D textures in ↵clayjohn
RenderingDevice texture update (cherry picked from commit 06042a23b676c36f0afc1f3696d52cd60e79dc80)
2023-03-14Merge pull request #74884 from YuriSizov/4.0-cherrypicksYuri Sizov
Cherry-picks for the 4.0 branch (future 4.0.1) - 2nd batch
2023-03-13Add missing handler for removing font sizes in ThemesYuri Sizov
(cherry picked from commit 5a3dbea3ed95b6b1ff0847daf1669aa88515801b)
2023-03-13Set properties of ImageTexture3D when creatingclayjohn
(cherry picked from commit e9d80a821d2b1e547ed82361f467e05846f8d611)
2023-03-13Fix blend-file import when using custom color management in blenderjuliuse98
When using custom color management in blender the --version command will output additional information infront of the "normal" output and this prevented the import. Fixes #74439. (cherry picked from commit 7a0d12182e2808df083a58511f3d6b6023487e70)
2023-03-13[TextServer] Fix justification on punctuation characters.bruvzg
(cherry picked from commit 016b2f3555d7a516c60cfda5c11ded276bb59de5)
2023-03-13Fix NavigationServer free error printsmix8
Fixes error print for NavigationServer free when a RID can not be found. (cherry picked from commit 73dc680fc127014ad805e5968f98ebb3e0281de7)
2023-03-13Fix type icons in `PropertySelector`Ninni Pipping
And adding a check to prevent future issues. (cherry picked from commit ca86d53e7f9c6f9785f5ef48917e92d41296f984)
2023-03-13remove incorrect rename of get_used_cells_by_idThomas Lobig
renaming get_used_cells_by_id to get_used_cells is not only unecessary, it introduces hard to debug issues (cherry picked from commit d6a2197b3d5b50bc8d0b31c97d0abeaafe80269e)
2023-03-13[TextEdit] Do not draw virtual spaces (word break / justification points).bruvzg
(cherry picked from commit 25bc62ad13372490e7ba2c889174ceca34d1f33f)
2023-03-13Windows: Workaround missing DWRITE_FONT_WEIGHT value in old MinGWRémi Verschelde
Fixes #74339. (cherry picked from commit b7ecb9584a1fc141d70140f6b0e573d870fa0dcb)
2023-03-13Get the unlit / unshaded extension when importing GLTF and set it when exportingHakim
(cherry picked from commit e14fa5532bd87addc8c019e2b3770758b36d0c09)
2023-03-13[Windows] Update modifier key status during IME input.bruvzg
(cherry picked from commit ba995c6ea1aa7f7eaff4e5d6673c7d6a096011dc)
2023-03-13[Web] Fix some missing keycode mappings.bruvzg
(cherry picked from commit 0b0587af9775dc5e6fe5707f99634f280e22f4c7)
2023-03-13Add proper default texture filter and repeat modes for Canvas shaders in the ↵clayjohn
OpenGL3 renderer (cherry picked from commit 46b416f3b1376c78e3ad8c8cd05e619f7b01f407)
2023-03-13Notify child controls when BackBufferCopy's rect changedHaoyu Qiu
(cherry picked from commit 602a0d2fbc84d598cffc79eccd5110f650b6e3c9)
2023-03-13C#: Get singleton instances using the Core nameRedworkDE
(cherry picked from commit 16a2a164feef75b486dfb96d93cd993341a60faf)
2023-03-13C#: Ignore explicit interface implementationsRaul Santos
(cherry picked from commit 0372bd56b69fd3a0f8efd6067deb30ee7a60e17d)