summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-04-26Provide an example on how to use ImmediateMeshVolTer
(cherry picked from commit 4eabad6c265c0c068b5ab2c26e911ac99cd03c3b)
2023-04-26Err when trying to build the editor without its required modulesYuri Sizov
(cherry picked from commit a14519426871341890b4257a64914b2761f8b055)
2023-04-26Document automatic center mode using shape originsWinston
(cherry picked from commit 7b30d7da51e40a69b464e501dbc02fcaa99deb5b)
2023-04-26Add information about how `Engine.time_scale` affects TimersNinni Pipping
(cherry picked from commit 16a1465380df708edebffc53c77011cd771f6b91)
2023-04-26Fix issue with resizing the display on Android when using the compatibility ↵Fredia Huya-Kouadio
renderer. (cherry picked from commit b438b4a490f81e06c4d850ddd19884b554307018)
2023-04-26Fix crash caused by invalid mix_rate assignment due to bogusEoin O'Neill
project settings. We'll default to a sensible value in the case that a user has somehow managed to modify the configuration file incorrectly. Closes 69819 (cherry picked from commit 5a08091168782a924cd3a23baf31c5cd4cd63906)
2023-04-26Fix the uid field of the tscn/res file is lost when the external dependency ↵Rindbee
is updated (cherry picked from commit 41ac40c44c058b5f9aa0d033787b2acb8e8020ea)
2023-04-26ios splash screen rotation fixRoman Vasilyev
(cherry picked from commit 8fcca194a16279ac5c22f702e544733056801b2a)
2023-04-26Document why Gradient.reverse() doesn't reverse constant gradientsVolTer
(cherry picked from commit f21d13600e41817646789a2b45221d8f5c2b2564)
2023-04-26Fix wrong file on function call errorsodaJar
(cherry picked from commit 464a299d2ef352f7b62fde08ec51b7ad824f4948)
2023-04-26Fix inconsistent file dialog settings usageHaoyu Qiu
* Project Manager ignores display mode settings. * EditorFileDialog's default display mode and show hidden files settings are not updated when corresponding editor settings change. (cherry picked from commit 2ccc9e14563977ae9707d6511727f5d6a20b0f9b)
2023-04-26Fix issues with Vulkan layout transitionsPedro J. Estébanez
(cherry picked from commit 882b8692204e8db465670dbb3150a848197ad576)
2023-04-26Create an "Editor-only" section in the online class referenceYuri Sizov
This helps to find such classes without digging through the rest of the class reference. Editor-only classes can still be found under your normal "Node" and "Resource" types. This also fixes a typo and a missed case from the recent platform docs PR. (cherry picked from commit 3ae282b452c1b35015cf327b376ef635b08393b5)
2023-04-26Fix `line_spacing` in code editor will not take effect immediately on changeRindbee
Previously, in CodeTextEditor, `line_spacing` was forgotten to update when the editor setting property changed. (cherry picked from commit 23d6225c1e59f33cc6cfe0df3a00961c0c93155f)
2023-04-26Add missing PhysicalBone2D iconVolTer
(cherry picked from commit 048f94f6629d5672fa9ae3b8702c22d3f07c027c)
2023-04-26Fix GDScript LSP variable renameAdam Scott
(cherry picked from commit 10fe6f14bba67950bde486051f1fd5e06c7f6dcd)
2023-04-26Fix editor spin slider remaining editable if set read_only during an edit ↵Samuele Panzeri
and fix related animation player crash (cherry picked from commit b6abb347595faa7bad57afff1f10e8c7b8528e5d)
2023-04-26Fix TouchScreenButton not redrawn when texture changesHaoyu Qiu
(cherry picked from commit a15126915d028a4487e6e9fb4b901b73f5cec3f1)
2023-04-26Fix layout list not resizing in editor layout dialogHaoyu Qiu
(cherry picked from commit dfc628bc548a571f1dcf6d1969b7b9c553f738e1)
2023-04-26Make tab's close button responsive to touch tapsFredia Huya-Kouadio
(cherry picked from commit 7325ffdd464c4efe6b7c118c0e6dae2b0ae501fa)
2023-04-26Make `EditorPropertyLayersGrid` responsive to touch tapsFredia Huya-Kouadio
(cherry picked from commit aa7a4d56f029fb5e3a3f2f4b569047bc546bf134)
2023-04-26Downgrade android gradle plugin to version 7.2.1.Fredia Huya-Kouadio
Version 7.3.0 changes the build layout which causes updates to the generated shared libraries to not be picked up. (cherry picked from commit 4507d3a38c4820fb456532d3a0715139f12985e4)
2023-04-26Fix invalid global position when read outside treekobewi
(cherry picked from commit 727a4ed79a371d87be06a8101c9eedd48ecc3e01)
2023-04-26Validate renderer selection in project manager and change default renderer ↵clayjohn
editor setting to expose an enum to users (cherry picked from commit 48ebae7812c7dda1bbe39e419e75ba9c0c32eea7)
2023-04-26Document custom mouse cursors larger than 128×128 potentially having issuesHugo Locurcio
(cherry picked from commit 92730fb07dbeb7e3640d0bed60c9b9033bc30577)
2023-04-26Fix lerp error messagePaweł
(cherry picked from commit 899da2200215b3863067719463915c968c5a3a21)
2023-04-26Fix for mixed tabs and spaces in gdscriptMistMage
(cherry picked from commit fecbc12d17add3fd3e3ac624bfefa7fbc0b44a73)
2023-04-26CI: Fix checks fallback logic when changed files listing is missingRémi Verschelde
The file would be one byte (newline) so the check with '-s' failed. (cherry picked from commit 39d24ee80bf53a742cc37ec9b8ffce7570cfdbfe)
2023-04-26CI: Fixup failure to get changed files on mergeRémi Verschelde
The checkout might be too shallow so the before commit isn't available. The logic was already written to take this into account (it then generates an empty 'changed.txt' which falls back to testing everything), but the error code would still force terminate the job. Hopefully we can find a way to make the logic work for merge events too in the future, but for now this is a quick fix. (cherry picked from commit 9063e907a7db07d0d59f3f649b27d39eae56b94b)
2023-04-26CI: Speed up static checks by checking only changed filesRémi Verschelde
- file_format, header_guards and clang-format benefit from this short list. - dotnet-format, Python and JS checks don't, but they're only relevant for PRs changing a specific set of files, so we skip them when those files aren't modified. The logic to get changed files only works reliably for: - Pull request events - Non-force pushed push events So when force pushing a branch in your fork, or creating a new branch, it will still scan all files as fallback. Upgraded CI runner to Ubuntu 22.04 so we get clang-format 14 out of the box, so we don't need to install a custom version (saves ~15 s). We also cache the APT dependencies to speed up the build and avoid flaky Ubuntu/Microsoft repos. (cherry picked from commit 068f89307245d062bf2bf995de3726e33faef5d8)
2023-04-26Fix expected argument count in Callable call error textkleonc
(cherry picked from commit 7a871212edd7c146331338638f5c9cf4fe7d3fdc)
2023-04-26mbedtls: Update to upstream version 2.28.3Rémi Verschelde
Rediff patch from PR 1453, lstrlenW is no longer used upstream so that part of the patch was dropped. (cherry picked from commit 1fde2092d0b6e840f026abaf438c4e591138125a)
2023-04-26Fix editor lock on sdf collision bake on errorSamuele Panzeri
(cherry picked from commit a2be742f97cb9f027082483dc56ec0822b23aceb)
2023-04-26[Windows] Cleanup COM library initialization/uninitialization.bruvzg
(cherry picked from commit 83dc545ea2599458fab4f4aaf46ab61d8ca98fbd)
2023-04-26Remove wrong Ctrl from 2D editor tooltipkobewi
(cherry picked from commit 75f2d7f5c459fba21bde2ae05ffd3bc66540e83d)
2023-04-26Fix NavigationMesh baking for HeightMapShapesmix8
Fixes NavigationMesh baking for HeightMapShape. (cherry picked from commit 71c453a4263d4ae5cd92acdce5901ec5b1978136)
2023-04-26[Windows TTS] Fix queuing utterances in rapid succession.bruvzg
(cherry picked from commit a9d326db60bba859b5c6eaee658167ef050887a1)
2023-04-26[Image Font] Fix fractional ascent for font with odd height.bruvzg
(cherry picked from commit 41f7bb2025d3cdaf89ae4e22a906484a620d4ab2)
2023-04-26Fix multi-line string highlighting with single quotes.HolonProduction
(cherry picked from commit bdb7045e2c4ab181b95c7699f76807fe4b6509ef)
2023-04-26Document using AnimatableBody when needed in StaticBody descriptionHugo Locurcio
(cherry picked from commit 68117d2fc7b68c544e16f8968b13d40b145c5bf4)
2023-04-26TileMap Fix rendering odd-sized tileskleonc
(cherry picked from commit c49a7feae3418d0732369b203d0bc9e28723b9db)
2023-04-25Merge pull request #76405 from YuriSizov/4.0-cherrypicksRémi Verschelde
Cherry-picks for the 4.0 branch (future 4.0.3) - 2nd batch
2023-04-24Update changelog for 4.0.3Yuri Sizov
2023-04-24Fix typo when parsing LSP function parametersAdam Scott
(cherry picked from commit 879791e305128bcb3c1bf4c6420c9fd0f7c7df0b)
2023-04-24Fix various typos in the classrefHaoyu Qiu
(cherry picked from commit 766807506c4f40bca1fafd16ac467a33694f6269)
2023-04-24Remove double thes from documentationPaweł
(cherry picked from commit 4431cdd154b8fa0494148980646903e824c0bdb1)
2023-04-24Fix blurry borders on antialiased FlatStyleBoxDavid Giardi
This is a fix of the antialiasing logic of FlatStyleBox. It is now possible to have smooth rounded corners while keeping the edges sharp on the pixels. The antialiasing gradient positioning is ajusted so that the "hard" border corresponds to the middle of that gradient instead of one end. Checked against rendering of rounded rectangles in a vector graphics software. (cherry picked from commit 2ef20045b1282369585c3395ff9f9ae418394817)
2023-04-24Add missing LineEdit constants in editor themekobewi
(cherry picked from commit f462efd7f11c54c5113273055c788364ef65abb5)
2023-04-24Remove unnecessary zero multiplicationsMichael Alexsander
(cherry picked from commit f057d755abdb0328113ab9472c243b94694a8b04)
2023-04-24Improve description of `Callable.bind/unbind`Ninni Pipping
(cherry picked from commit 0332fd5e8f71c1292bfa75ac2288bb4355f77567)