Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Update clang-format pre-commit hook to 19.1.0 #97483

Merged
merged 1 commit into from
Sep 26, 2024

Conversation

akien-mga
Copy link
Member

No description provided.

@@ -48,9 +48,9 @@ Error AudioDriverXAudio2::init() {
int latency = Engine::get_singleton()->get_audio_output_latency();
buffer_size = closest_power_of_2(latency * mix_rate / 1000);

samples_in = memnew_arr(int32_t, buffer_size * channels);
samples_in = memnew_arr(int32_t, size_t(buffer_size) * channels);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was needed to prevent it from becoming:

Suggested change
samples_in = memnew_arr(int32_t, size_t(buffer_size) * channels);
samples_in = memnew_arr(int32_t, buffer_size *channels);

That's a bug, but it's understandable that it gets confused. memnew_arr is a macro and it literally takes a type as first parameter, but the second parameter should be a size_t int.

Copy link
Member

@AThousandShips AThousandShips left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM and the workarounds aren't obtrusive

core/math/convex_hull.cpp Outdated Show resolved Hide resolved
@akien-mga akien-mga merged commit a4c1804 into godotengine:master Sep 26, 2024
19 checks passed
@akien-mga akien-mga deleted the clang-format-19.1.0 branch September 26, 2024 10:50
PerceptiveGames added a commit to PerceptiveGames/godot that referenced this pull request Sep 28, 2024
commit 76a135926aef1f02f27e4e09093787f2c670956d
Merge: ac3eadf976 dbcc7f3051
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 14:57:34 2024 +0200

    Merge pull request #97517 from syntaxerror247/android-themed-icon

    Add support for Android Themed Icons (monochrome)

commit dbcc7f3051f24663c7215daba1c6a725c5b66096
Author: Anish Mishra <[email protected]>
Date:   Fri Sep 27 04:42:41 2024 +0530

    Add support for Android Themed Icons (monochrome)

commit ac3eadf976006e859b0a3c1b298138cf31c66637
Merge: ab1f55e738 e0478fe3a3
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:41 2024 +0200

    Merge pull request #97524 from BastiaanOlij/openxr_1141

    Update thirdparty OpenXR to 1.1.41

commit ab1f55e738443ca97ab1f79ea65ba36a006026ce
Merge: 58ec7a95a4 2eb069f40b
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:38 2024 +0200

    Merge pull request #97489 from TokageItLab/deferred-skin-registration

    Move skin registration process into deferred on ready

commit 58ec7a95a42dd1c90a6ba9887b9031633ac12594
Merge: 7b393c6cee 77202e08b4
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:33 2024 +0200

    Merge pull request #97477 from m4gr3d/update_xr_editor_excluded_permissions

    [XR Editor] Update the set of excluded permissions

commit 7b393c6ceec12529352a30b9f7290ef2b45f78e4
Merge: b537d2f15c c15fe90ac4
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:29 2024 +0200

    Merge pull request #97453 from Calinou/project-manager-enter-accepts-dialog

    Make pressing Enter confirm project creation/import in the project manager

commit b537d2f15c94fd54e3621b23b38a1e58761b38ae
Merge: 61fce325ca 49212b81e5
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:26 2024 +0200

    Merge pull request #97450 from megalon/alpha_curve-docs-fix

    Update notes for Color Curve members in ParticleProcessMaterial

commit 61fce325cad7e7587de90ac27df1d534138387e7
Merge: 83b2ca3107 76691afd94
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:22 2024 +0200

    Merge pull request #96548 from timothyqiu/item-list-signals

    Improve documentation of some `ItemList` signals

commit 83b2ca3107625d54c2ec2946763cf2af3db9672a
Merge: 8a9a26ef19 cc9f2b58a0
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:19 2024 +0200

    Merge pull request #95930 from aaronfranke/bind-array-set

    Bind Array and Packed*Array `get` and `set` functions

commit 8a9a26ef1980f149c6466329a989bbb930612902
Merge: 543fa16b4c c2af6bcb59
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:16 2024 +0200

    Merge pull request #93311 from dsnopek/gdextension-required-virtuals

    GDExtension: Mark virtual function as `is_required` in `extension_api.json`

commit 543fa16b4ce821a0118da3ef0904a105aaa046e9
Merge: 506d6e427a da37998dc8
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:11 2024 +0200

    Merge pull request #68233 from raulsntos/dotnet/raise-events

    C#: Generate strongly-typed method to raise signal events and fix event accessibility

commit 76691afd945c2c0da11b13fc3bf23636325d2d9f
Author: Haoyu Qiu <[email protected]>
Date:   Wed Sep 4 13:57:56 2024 +0800

    Improve documentation of some ItemList signals

commit e0478fe3a3d3a28330e051bd065776e13efb4691
Author: Bastiaan Olij <[email protected]>
Date:   Fri Sep 27 14:34:43 2024 +1000

    Update thirdparty OpenXR to 1.1.41

commit 49212b81e50303277cafc7bdd195a609bf900391
Author: megalon <[email protected]>
Date:   Wed Sep 25 10:04:33 2024 -0400

    Update alpha_curve and emission_curve notes in ParticleProcessMaterial

    Update doc/classes/ParticleProcessMaterial.xml

    Co-authored-by: Hugo Locurcio <[email protected]>
    Update doc/classes/ParticleProcessMaterial.xml

    Co-authored-by: Hugo Locurcio <[email protected]>

commit cc9f2b58a0b928ce1a8f30b855ace1e18d0049fc
Author: Aaron Franke <[email protected]>
Date:   Wed Aug 21 19:26:21 2024 -0700

    Bind Array get and set functions

commit da37998dc84dcf05c91fdfe7481445c0cb10af2e
Author: Raul Santos <[email protected]>
Date:   Thu Nov 3 20:10:33 2022 +0100

    C#: Generate On{EventName} method to raise signal events

commit 506d6e427a4eecfc1e5e5ee1180019a876119701
Merge: b181ff28e8 0fdbd22f56
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:54:05 2024 +0200

    Merge pull request #89486 from AThousandShips/owners_fix

    Update CODEOWNERS

commit b181ff28e8b034614225d08e7d8ed0add77d8240
Merge: 645af49919 a83ea6b57d
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:56 2024 +0200

    Merge pull request #97491 from akien-mga/fix-filesystem-invalid-icon-crash

    Fix EditorFileSystem crash when fetching icons for unknown file types

commit 645af49919d8149001766d34bd16afa3fc620d57
Merge: 8126d81d0c 4b734aeda9
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:53 2024 +0200

    Merge pull request #97488 from KoBeWi/zakaz_tłumaczeń

    Disable auto translation in EditorDirDialog

commit 8126d81d0c9d67eaa88e10a742f202dda6a15117
Merge: 3cde5a37f9 e117ed9cd4
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:50 2024 +0200

    Merge pull request #97487 from Ivorforce/patch-2

    Rename `Vector4.components` -> `coord` for consistency

commit 3cde5a37f98552ef10b73091c058a5802ace08db
Merge: 807136b679 b3d413d4b4
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:46 2024 +0200

    Merge pull request #97455 from Calinou/doc-lineedit-text-submitted

    Clarify when LineEdit's `text_submitted` signal is emitted

commit 807136b679e9160a7819adc6ccbcff4ef975d598
Merge: 56d50c30a2 2cfe6d9f64
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:42 2024 +0200

    Merge pull request #97425 from CrayolaEater/better-description-multiplayer-spawner-signals

    Better description for multiplayer spawner signals

commit 56d50c30a295a1b3bf70b17b07ec03402c7736a4
Merge: 01d567ba1b 56f095296c
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:38 2024 +0200

    Merge pull request #97414 from AThousandShips/code_highlight_fix

    Fix editing of some properties in `CodeHighlighter`

commit 01d567ba1b8d18e5a177d41b163c4c6aed5165e8
Merge: 9a8dcc1eeb 78801f61da
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:35 2024 +0200

    Merge pull request #97406 from timothyqiu/tooltip-atm

    Add auto translate mode for tooltips

commit 9a8dcc1eebaaab5223d2f39ac2509d3f130c45d4
Merge: 775edd568b 6a7183119f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:31 2024 +0200

    Merge pull request #97397 from timothyqiu/shortcut-in-tooltips

    Make `_make_custom_tooltip` receive raw tooltip for buttons with shortcut enabled

commit 775edd568b6a03a151374c4e9e24bed9422e147d
Merge: 344ce2b047 0f98b32448
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:28 2024 +0200

    Merge pull request #97389 from timothyqiu/button-autowrap-min-size

    Fix button text autowrap overflow when inside a container

commit 344ce2b047c707db1f465cf84bcc72dfe2fb6e38
Merge: c4f079a6b0 163753949e
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:24 2024 +0200

    Merge pull request #97344 from pafuent/editor_file_dialog_filter_sort

    Add filter & sort to editor file dialog

commit c4f079a6b065968b1e217c3a4ab07818f20f83b7
Merge: 8eab2b52ed ef840f935f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:20 2024 +0200

    Merge pull request #97283 from timothyqiu/fs-buttons

    Make FileSystem dock buttons consistent

commit 8eab2b52ed7e746a5abf4a51688e388bf19d7ef2
Merge: eeaca3a439 3e93970ef5
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:15 2024 +0200

    Merge pull request #96835 from Malcolmnixon/animation-optimize

    Expose the optimize method of the Animation class to gdscript.

commit eeaca3a439750bfaa78e7c8dec3b2f877e570656
Merge: 35459bd182 a1e409c58b
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:10 2024 +0200

    Merge pull request #96610 from adamscott/emscripten-minimum-requirements

    [Web] Update minimum requirements for emscripten to 3.1.62

commit 35459bd18266d888f8de39f08e2520ce09c110f9
Merge: f8f2ab6fbe 8ffb7699af
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:07 2024 +0200

    Merge pull request #96394 from Faless/mbedtls/tls_1.3

    [mbedTLS] Enable TLS 1.3 support

commit f8f2ab6fbeaa0f0da3dcafbfa57d44db320d74e4
Merge: a4c1804cab 3e0d3c433b
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:03 2024 +0200

    Merge pull request #94744 from matheusmdx/fix-pink-gradient2d

    Fix pink GradientTexture2D

commit 8ffb7699af98790b6a39c0d425945145e199e67a
Author: Fabio Alessandrelli <[email protected]>
Date:   Sat Aug 31 16:37:44 2024 +0200

    [mbedTLS] Enable TLS 1.3 support

    Move library initialization to module registration functions.

    Only set library debug threshold when verbose output is enabled.

    TLSv1.3 functions seems to be a bit more verbose then expected, and
    generate a lot of noise. Yet, some level of debugging without
    recompiling the engine would be nice. We should discuss this upstream.

commit 78801f61da872d3df03d21b36626af6cfb7f2c00
Author: Haoyu Qiu <[email protected]>
Date:   Tue Sep 24 19:11:49 2024 +0800

    Add auto translate mode for tooltips

commit a1e409c58b22f1a38a535accf71b8a9f02615206
Author: Adam Scott <[email protected]>
Date:   Thu Sep 5 10:17:52 2024 -0400

    Update minimum requirements for emscripten to 3.1.62

commit 163753949e31ec71ea5aeda902e69947369955af
Author: Pablo Andres Fuente <[email protected]>
Date:   Sun Sep 22 20:47:20 2024 -0300

    Add filter & sort to editor file dialog

    Closes https://github.com/godotengine/godot-proposals/issues/2721

    On `EditorFileDialog`:
     * Add filter box that only shows folders and files in current directory that match
     * Add sort button to sort files and directories
     * Add a shortcut for CTRL+F for selecting the filter box

    Also moved common code between `EditorFileDialog` and `FileSystemDock`
    to it's own file.

    Co-authored-by: fox <[email protected]>

commit a83ea6b57ddbfbce656cd47a6d21cd6a13c37d5a
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 15:52:39 2024 +0200

    Fix EditorFileSystem crash when fetching icons for unknown file types

    Fixes crash reported in https://github.com/godotengine/godot/pull/97421#issuecomment-2376684690.

commit 2eb069f40b64809d144d86373c9b42d824dbc50e
Author: Silc Lizard (Tokage) Renew <[email protected]>
Date:   Thu Sep 26 22:22:19 2024 +0900

    Move skin registration process into deferred on ready

commit 3e0d3c433bde1f2e0b18c3f05e43c3bf3c0804bc
Author: matheusmdx <[email protected]>
Date:   Thu Jul 25 13:55:02 2024 -0300

    Fix pink GradientTexture2D

commit 4b734aeda96cc6b0bf1c8ea184572790e5f47bf7
Author: kobewi <[email protected]>
Date:   Thu Sep 26 13:48:21 2024 +0200

    Disable auto translation in EditorDirDialog

commit e117ed9cd42666a98ac8253fd3d880ca97c414cf
Author: Lukas Tenbrink <[email protected]>
Date:   Thu Sep 26 14:02:00 2024 +0200

    Rename Vector4.components -> coord

commit a0d1ba4a3d1760f48ef3297a6299ee3dbc1260e1
Merge: a4c1804cab 395a4fc5f2
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:50:14 2024 +0200

    Merge pull request #97458 from Faless/fix/imagine_its_2024_and_your_os_cant_handle_few_kbs_of_text

    [SCons] Remove MAXLINELENGTH override for MSVC

commit a4c1804cab2ace8c7496390132c8cdc019b55078
Merge: b64b464ba7 c92a6c7e27
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:46:04 2024 +0200

    Merge pull request #97483 from akien-mga/clang-format-19.1.0

    CI: Update `clang-format` pre-commit hook to 19.1.0

commit b64b464ba72ae54f6a1b90e403c6dfa2a7ccede6
Merge: 8493a39e91 3828d45e31
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:46:01 2024 +0200

    Merge pull request #97481 from Chaosus/shader_fix_void_return

    Fix shader crash when return a void function call

commit 8493a39e912f91b375119d1d417f1180acca2113
Merge: dbf1efbd19 e3eb5ee607
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:58 2024 +0200

    Merge pull request #97479 from dustdfg/csg_redudant_3d_disabled_check

    Remove redundant `_3D_DISABLED` check from csg module

commit dbf1efbd19d97d0aa1bd0e081faed4794e0e4069
Merge: bfe74eca3b 415607784f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:54 2024 +0200

    Merge pull request #97442 from dustdfg/disable_xr/missing_disable_3d_ifndefs

    Add missing `#ifndef _3D_DISABLED` to main file

commit bfe74eca3b912b162310a2cc0490366e0b8a32b1
Merge: 841061d50e 0eb06da057
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:50 2024 +0200

    Merge pull request #97428 from clayjohn/shadow-filter-jitter-rebase

    Jitter shadow map dithering pattern across frames when TAA is enabled

commit 841061d50ea6bbd31e57e724a9898b5ded823423
Merge: 2912cb9975 e4cf4fcb2f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:46 2024 +0200

    Merge pull request #97421 from SaNeOr/fix#97387

    Fix GDExtension classes inheriting from Resource not using icons in FileSystem

commit 2912cb99756dede609548503eeb3f6f1a2f2dfbf
Merge: 991e6c92ab d3be030ea6
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:42 2024 +0200

    Merge pull request #97118 from mihe/patch-exports

    Add ability to export patch packs

commit 991e6c92abd26435169ad7ea0df2622685cac6d1
Merge: 052b122108 32c83a228d
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:38 2024 +0200

    Merge pull request #96923 from Repiteo/style/warning-admonition

    Style: Add `WARNING:` as new comment admonition

commit 052b1221085eb874fe4020ffc45a2cbbebebc4f1
Merge: ef7547384c 1536f5ec79
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:35 2024 +0200

    Merge pull request #96184 from biswas08433/patch-1

    Clarify transform data ordering in `RenderingServer.multimesh_set_buffer`

commit ef7547384c962f536b9020b74cf0984a534007bb
Merge: 9d5b59b2ae 21f7c8a25f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:31 2024 +0200

    Merge pull request #95678 from Hilderin/fix-slow-load-on-large-project-v2

    Fix slow editor load on large projects (v2)

commit 9d5b59b2ae456a1f9a98c918cef6ef217f52d31c
Merge: a90da7e87b a84c480049
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:27 2024 +0200

    Merge pull request #94864 from rune-scape/add-missing-method-bind

    Add missing CallableCustomMethodPointer for const methods

commit a90da7e87b2b0c01065fcacca6685617e911d88c
Merge: f7c567e2f5 9f9ee0c813
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:21 2024 +0200

    Merge pull request #93058 from Repiteo/scons/scons_hints

    SCons: Add unobtrusive type hints in SCons files

commit 395a4fc5f27b5cc8b9ebce3d66fd95be2eea9b3b
Author: Fabio Alessandrelli <[email protected]>
Date:   Wed Sep 25 17:38:34 2024 +0200

    [SCons] Remove MAXLINELENGTH override for MSVC

    It's not clear what is the actual max value that windows support, but
    despite their claim of it being 8191 we have been seeing failure with
    just 8150.

commit c92a6c7e27cc51e1161425fd2d6e85a63d4b81fb
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 11:26:17 2024 +0200

    CI: Update `clang-format` pre-commit hook to 19.1.0

commit 3828d45e31697e2d6b8d411fbca310b7f57cbe35
Author: Chaosus <[email protected]>
Date:   Thu Sep 26 11:20:39 2024 +0300

    Fix shader crash when return a void function call

commit e3eb5ee60713e46365d3f6ddb9cb882102e1a11a
Author: Yevhen Babiichuk (DustDFG) <[email protected]>
Date:   Thu Sep 26 10:24:10 2024 +0300

    Remove redudant _3D_DISABLED check from csg module

    It even won't be considered for building so there is no any sense
    for compile time checks

    Signed-off-by: Yevhen Babiichuk (DustDFG) <[email protected]>

commit 77202e08b4794dd28ff626ac3a33348e4d13b13a
Author: Fredia Huya-Kouadio <[email protected]>
Date:   Wed Sep 25 23:21:16 2024 -0700

    Update the set of excluded permissions for the XR Editor

    A few permissions including the `USE_SCENE` permission are being renamed with the launch of the Meta Spatial SDK, so we update the excluded list to avoid requesting them on app start.

commit c15fe90ac427175273079157ddacd1ec9123c026
Author: Hugo Locurcio <[email protected]>
Date:   Wed Sep 25 16:01:36 2024 +0200

    Make pressing Enter confirm project creation/import in the project manager

    This makes the project manager more friendly to keyboard usage.

    You can now create projects more easily without touching the mouse
    by opening the project manager, pressing Ctrl + N, entering a project
    name and pressing Enter.

commit 6a7183119f1eed8871fe73a45880033cfb02f3d9
Author: Haoyu Qiu <[email protected]>
Date:   Tue Sep 24 14:34:20 2024 +0800

    Make _make_custom_tooltip receive raw tooltip for buttons with shortcut enabled

commit 21f7c8a25f23c40541925c95d7d25f52f81c9811
Author: Hilderin <[email protected]>
Date:   Fri Aug 16 21:55:03 2024 -0400

    Fix slow editor load on large projects (v2)

commit b3d413d4b4eec44d7651a75f2c4ed7aebfbf044e
Author: Hugo Locurcio <[email protected]>
Date:   Wed Sep 25 17:31:51 2024 +0200

    Clarify when LineEdit's `text_submitted` signal is emitted

commit f7c567e2f56d6e63f4749387a67e5ea4903c4696
Merge: 0a9d8f04c1 36293a2dbf
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 19:34:11 2024 +0200

    Merge pull request #97447 from dsnopek/x11-focus-bugs-take-twenty-seven-million-and-seven

    Fix renaming nodes on X11

commit d3be030ea6f3e295603ccf6cc9080a1d32051332
Author: Mikael Hermansson <[email protected]>
Date:   Tue Sep 17 12:48:10 2024 +0200

    Add ability to export patch packs

    Co-authored-by: Poq Xert <[email protected]>

commit 0fdbd22f560973cb16f6e198978bc83a596295e9
Author: A Thousand Ships <[email protected]>
Date:   Thu Mar 14 16:55:01 2024 +0100

    Update CODEOWNERS

    * Added shared responsibilities for documentation and tests
    * Made buildsystem manage all build scripts (uniquely)
    * Cleaned up unused cases
    * Added unmanaged cases

commit 32c83a228dff7a1f485ab208dff773c3fa74b133
Author: Thaddeus Crews <[email protected]>
Date:   Thu Sep 12 12:03:59 2024 -0500

    Style: Add `WARNING:` as new comment admonition

commit 9f9ee0c813443333a49c797083ff456629c009fb
Author: Thaddeus Crews <[email protected]>
Date:   Tue Jun 11 15:19:07 2024 -0500

    SCons: Add unobtrusive type hints in SCons files

commit 36293a2dbfd8fb6019d77b63e841b8c5f781e43b
Author: David Snopek <[email protected]>
Date:   Wed Sep 25 08:52:27 2024 -0500

    Fix renaming nodes on X11

commit 415607784f348c7e67e7bdd72aea3ace04e4dac0
Author: Yevhen Babiichuk (DustDFG) <[email protected]>
Date:   Wed Sep 25 13:13:35 2024 +0300

    Add missing `#ifndef _3D_DISABLED` to main file

    XR is disabled when 3D is disbled so there is no sense in
    setting xr specific settings and adding `--xr-mode` option

    Signed-off-by: Yevhen Babiichuk (DustDFG) <[email protected]>

commit 0a9d8f04c10870c0f9f7bbd2e0505edc8494e299
Merge: ca1a390050 7aef30c2a8
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:32 2024 +0200

    Merge pull request #97410 from KoBeWi/it's_redover

    Discard additional redo on commiting actions

commit ca1a390050e79374ab40965bc6e0fa4ba3f93f53
Merge: 5d5cdc02c5 2e57089135
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:29 2024 +0200

    Merge pull request #97398 from timothyqiu/color-picker-etr

    Add missing `ETR` macros in `ColorPicker`

commit 5d5cdc02c591cd0006ae407ef62587a0cf60fe66
Merge: 4c5e879cc5 660ba0578d
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:25 2024 +0200

    Merge pull request #97392 from BastiaanOlij/xr_cleanup_action_map_dialogs

    Cleanup of action map dialogs

commit 4c5e879cc57c47f6225a22a56a1acdc016c95470
Merge: 65c94ec873 633df0b29c
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:22 2024 +0200

    Merge pull request #97380 from TheSofox/handle_modes_default_fix

    Ensure `handle_modes` is given default values rather than flagging error if undefined

commit 65c94ec8731914fbadafc9ba2535dd83a00cca14
Merge: 95e7e653f2 dd9525be04
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:18 2024 +0200

    Merge pull request #97290 from fire/fix-animation-compression

    Fix animation compression going the wrong way

commit 95e7e653f2ff31245b6c1e52416579a5f9afc4b9
Merge: 73bf121ceb 7d7e0344ee
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:14 2024 +0200

    Merge pull request #97101 from aryan-11825114/fix-network-profiler-not-disabling-buttons

    Fix Network Profiler not disabling buttons

commit 73bf121ceb8637c88d5ed4bb8721a1feda80dc42
Merge: 70fede82c5 3f9bb59606
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:10 2024 +0200

    Merge pull request #93786 from alvinhochun/viewport-pixel-snap-fix

    Apply "snap 2D transforms to pixel" to viewport

commit 70fede82c52998bc3fc7201d8406d21b4e8a6023
Merge: 26340e0b91 5efa6ba489
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:06 2024 +0200

    Merge pull request #93324 from tracefree/reinhard-fix

    Fix incorrect Reinhard tonemap operator

commit 26340e0b918eb6d3047b63227320034b0eb506af
Merge: c3e16cda00 b88585abfc
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:03 2024 +0200

    Merge pull request #53666 from pkowal1982/camera

    Add Linux camera support

commit 5efa6ba4892aa03f56215719a347be2f1629e206
Author: Rie <[email protected]>
Date:   Sat Jun 15 23:27:00 2024 +0200

    Fix incorrect Reinhard tonemap operator

commit b88585abfc794281a6dd8a77d53272676f23c212
Author: Paweł <[email protected]>
Date:   Mon Jun 5 18:56:34 2023 +0200

    Add linux camera support

commit 2e57089135b4fc56760abe1d3b4ab06efea3f4b3
Author: Haoyu Qiu <[email protected]>
Date:   Tue Sep 24 15:49:30 2024 +0800

    Add missing ETR macros in ColorPicker

commit 0eb06da057e8e912d6f9b3de4b3efbd3dc46624c
Author: Hugo Locurcio <[email protected]>
Date:   Fri May 26 18:32:01 2023 +0200

    Jitter shadow map dithering pattern across frames when TAA is enabled

    This improves shadow quality by reducing the visibility of the noisy
    pattern caused by dithering.

    This jittering also applies when FSR2 is enabled, as it provides its own
    form of temporal antialiasing.

    Co-authored-by: Clay John <[email protected]>

commit 2cfe6d9f640a92bfc43abf61e5f5067c82e9eeb1
Author: Bogdan Inculet <[email protected]>
Date:   Tue Sep 24 23:15:51 2024 +0300

    Better description for multiplayer spawner signals

commit e4cf4fcb2f272f27742ea47c758feb60591a55a0
Author: SaNeOr <[email protected]>
Date:   Wed Sep 25 02:33:41 2024 +0800

    fix GDExtension classes inheriting from Resource are not using icons in FileSystem

commit 56f095296c23cb66b3aa7077ccf0f7801d6875b3
Author: A Thousand Ships <[email protected]>
Date:   Tue Sep 24 16:48:11 2024 +0200

    Fix editing of some properties in `CodeHighlighter`

commit 7aef30c2a80f8fac30487f180f89743a3f41bcc0
Author: kobewi <[email protected]>
Date:   Tue Sep 24 15:47:55 2024 +0200

    Discard additional redo on commiting actions

commit c3e16cda00a9fbec4515142f4c59bc5134f1bfb0
Merge: 9355845d29 0305e437ff
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:21 2024 +0200

    Merge pull request #97379 from clayjohn/webgl-errors

    Clean up two recently introduced WebGL errors

commit 9355845d29bac0c92235aee78f0747cbfe830f5d
Merge: 63d16a9bc3 9b474e3a8e
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:16 2024 +0200

    Merge pull request #97367 from AdriaandeJongh/clarify-canvasitem-visibility-followup

    Clarify CanvasItem's visibility signal descriptions (followup)

commit 63d16a9bc3d86cd92a819b4f9979783b29796497
Merge: 6c1bbb3143 011954fea3
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:12 2024 +0200

    Merge pull request #97357 from Manik2607/master

    Refactor signal documentation to improve clarity.

commit 6c1bbb314361fd95efe86d8e34c73277d852650f
Merge: fc960cdf80 246150453b
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:08 2024 +0200

    Merge pull request #97275 from timothyqiu/how-many

    Better undo action names for localization editor

commit fc960cdf800dceedd16e4e944f81d49028b618d4
Merge: 39115be8eb 430e5658f1
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:04 2024 +0200

    Merge pull request #97013 from Hilderin/fix-load-errors-popup-empty

    Fix empty load errors popup

commit 39115be8eb9be8da7fdb1478eb6a017b53294f1e
Merge: 6bea41d68f 7c4c4b9987
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:56:59 2024 +0200

    Merge pull request #95261 from rburing/2d_physics_module

    Move Godot Physics 2D into a module; add dummy 2D physics server

commit 6bea41d68f0511f7854880854d052eafb5382224
Merge: 4254946de9 b5cd06b9ae
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:56:52 2024 +0200

    Merge pull request #88363 from Delsin-Yu/master

    C#: Implement proper generic type name printing for Godot Editor

commit 9b474e3a8e16d4e1128475cbab3abba27abef41d
Author: Adriaan de Jongh <[email protected]>
Date:   Mon Sep 23 17:06:55 2024 +0200

    doc: clarify CanvasItem's visibility signal descriptions

commit 0f98b3244805d61ef9edcfa4671ab77c1c5167a7
Author: Haoyu Qiu <[email protected]>
Date:   Tue Sep 24 09:55:48 2024 +0800

    Fix button text autowrap overflow when inside a container

commit 633df0b29c7ec602377ea7367f7ad047f90b90f1
Author: Sofox <[email protected]>
Date:   Mon Sep 23 19:59:44 2024 +0100

    Handle handle_modes being undefined by giving default values rather than flagging error

commit 0305e437ffec0315c369723952a9a667a99a4fb9
Author: clayjohn <[email protected]>
Date:   Mon Sep 23 10:50:36 2024 -0700

    Clean up two recently introduced WebGL errors

commit a84c480049420796184804230e40f2c6ea00b19a
Author: rune-scape <[email protected]>
Date:   Sun Jul 28 01:14:56 2024 -0700

    Add missing CallableCustomMethodPointer for const methods

commit 011954fea35e1761033f99b71b98e00690c04237
Author: manik2607 <[email protected]>
Date:   Mon Sep 23 22:58:06 2024 +0530

    Refactor signal documentation to improve clarity

commit 7c4c4b998716922fcf62f1fe50473bf2f59087c8
Author: Ricardo Buring <[email protected]>
Date:   Wed Aug 7 21:15:17 2024 +0200

    Move Godot Physics 2D into a module; add dummy 2D physics server

    If the module is enabled (default), 2D physics works as it did before.

    If the module is disabled and no other 2D physics server is registered
    (via a module or GDExtension), then we fall back to a dummy
    implementation which effectively disables 2D physics functionality (and
    a warning is printed).

    The dummy 2D physics server can also be selected explicitly, in which
    case no warning is printed.

commit 4254946de93bab0cc1fb36a7b9039c9ec43be924
Merge: 2017006879 a751c05b15
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:14:08 2024 +0200

    Merge pull request #97323 from timothyqiu/drop-unicode-identifier

    Fix script editor wrongly replaces and quotes non-ASCII letters

commit 2017006879833d346a967dc8fcce4b846a8ed1c6
Merge: 2c1b8dda74 eb5a9c3b33
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:14:04 2024 +0200

    Merge pull request #97314 from tetrapod00/visual-shader-remap

    Visual Shader: Add vector operations to Remap node

commit 2c1b8dda748a27ef6cf9498ef3cc2786a4fc413a
Merge: c47eb5c301 b7416bf693
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:14:00 2024 +0200

    Merge pull request #97284 from timothyqiu/optimized-translation-gen

    Document that `OptimizedTranslation.generate()` only works in editor

commit c47eb5c3015795fd9ac0db17f5de3b57746c3bf8
Merge: f97defb375 267bb98231
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:13:56 2024 +0200

    Merge pull request #97282 from timothyqiu/force-advanced-settings-when-searching

    Keep advanced toggle on when searching for settings

commit f97defb375d524540cb7e7772adce8279d38e5ba
Merge: ea8d20d35b 330f91d32b
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:13:53 2024 +0200

    Merge pull request #97223 from AdriaandeJongh/clarify-canvasitem-visility-changed

    Docs: Clarify `CanvasItem` visibility properties and signals

commit ea8d20d35b5171a3ddaebad4b5649ba8f67b51c9
Merge: 8c273eb14c 307224927c
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:13:49 2024 +0200

    Merge pull request #96955 from Delsin-Yu/generator-based-CreateManagedForGodotObjectBinding

    [.NET] Replace Reflection-Based implementation with Generated one in `CreateManagedForGodotObjectBinding`

commit 8c273eb14ceeecc08f1262e7fccc8cdf260958ae
Merge: d5aadc38b4 d49ec39d63
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:13:41 2024 +0200

    Merge pull request #90955 from AThousandShips/print_to_stdout

    [Core] Add `Engine.print_to_stdout` setting to control printing

commit 3f9bb596064b0fb15ad2e5a6a59a9efd339a1974
Author: Mark DiBarry <[email protected]>
Date:   Mon Sep 23 20:34:46 2024 +0800

    Prevent jitter in Parallax2D

commit 1bd66af54ce86d5882830ce5170cdfeb914bb873
Author: Alvin Wong <[email protected]>
Date:   Sun Jun 30 23:51:13 2024 +0800

    Apply snap 2D transforms to pixel to viewport

    We shall not leave the viewport transform to be rounded by the code for
    rounding canvas items. Since the viewport transform is inverse to the
    camera transform, we get incorrect rounding at the halfway point that
    misaligns the viewport and the canvas item which the camera is
    following.

    Instead, reintroduce viewport rounding, but do it in a way that matches
    the rounding of canvas items. Also take into account the half-pixel
    offset of the centre point when viewport dimension is not divisible by
    two.  For `CanvasLayer`s that follows viewport, take into account the
    scale when rounding. Overall this should work better compared to the
    rounding in Godot 4.2 (and earlier).

commit d5aadc38b459762fa74850777edb2ec8f6a02c16
Merge: e3aa152509 50ad99bdc0
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:34:19 2024 +0200

    Merge pull request #97337 from Ivorforce/patch-1

    In make_rst.py, include the parent class in 'Inherits:' even if it is not known.

commit e3aa15250923b266ad8c49ae0ec8ff9cc8bbf0ce
Merge: b9b793237c 15f344173e
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:21 2024 +0200

    Merge pull request #97319 from Giganzo/groups-add-button-style

    Fix Add button style in GroupsEditor

commit b9b793237c0b45132c26a8c4bdf6ff1f1266b88c
Merge: 9c9e704a2b 6764338e09
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:17 2024 +0200

    Merge pull request #97315 from lawnjelly/fix_character_platform

    Fix physics platform behaviour regression

commit 9c9e704a2b6d932734f942fbbfd23138adb2de50
Merge: ec4bd1e062 7b7164c80c
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:14 2024 +0200

    Merge pull request #97286 from Rynzier/master

    Clarify PCK path argument in `PCKPacker.pck_start`

commit ec4bd1e062e5c4770d16fa63d32512f39f6c5cb9
Merge: b030638863 388869574c
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:10 2024 +0200

    Merge pull request #97274 from Giganzo/button-pressed-doc

    Clarify docs for when toggling `button_pressed` emits `toggled`

commit b030638863303853c3f57406702da7a6a76a40c9
Merge: 833be1f00d f7e5e7a400
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:07 2024 +0200

    Merge pull request #97252 from dsnopek/gdext-android-surface-swapchain

    OpenXR: Allow extending Android surface swapchain creation from GDExtension

commit 833be1f00d6ba1ef714b545d9c0f173d931d5210
Merge: 648b21b9ba 4c72d599f0
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:03 2024 +0200

    Merge pull request #97139 from akien-mga/miniupnpc-2.2.8

    miniupnpc: Update to 2.2.8 (new major 18)

commit 648b21b9ba3f174291813ca710206522b515140c
Merge: dd71bc2d3b df0a88b128
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:59 2024 +0200

    Merge pull request #96813 from Repiteo/scons/fix-clang-cl-flags

    SCons: Fix `clang-cl` link/ar flags

commit dd71bc2d3b613d3c63f75e671f36427f838f7396
Merge: 1b19ecb360 0333648cea
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:55 2024 +0200

    Merge pull request #95252 from rburing/3d_physics_module

    Move Godot Physics 3D into a module; add dummy 3D physics server

commit 1b19ecb360124b4f46d767e56b8f8d9a1f1ed20e
Merge: c65ab71230 714357e55c
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:51 2024 +0200

    Merge pull request #95166 from aaronp64/variant_op_err_return

    Assign return value on `Variant` operator failure

commit c65ab71230c6dd6d60dd87423950d5599269cce7
Merge: 510bc3dc6a f3841d644e
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:45 2024 +0200

    Merge pull request #94953 from raulsntos/dotnet/signals-with-typed-arrays

    C#: Generate signal delegates with typed arrays

commit 510bc3dc6a91978aa70b2586b0e4efa03ba2b02f
Merge: 720c236fc0 bc3dcf3d40
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:40 2024 +0200

    Merge pull request #90969 from Naros/expose-resource-and-saver-methods

    Expose several resource/resource-saver functions

commit 720c236fc09e5453612a1ce71f3e7cc9e75d34c9
Merge: 155fcd00b0 504e0656bb
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:35 2024 +0200

    Merge pull request #90743 from timothyqiu/empty-selection-clipboard

    Add TextEdit option to prevent copying without a selection

commit 330f91d32b807adb6049db350cc532789c9ca49e
Author: Adriaan de Jongh <[email protected]>
Date:   Fri Sep 20 10:12:44 2024 +0200

    clarify CanvasItem's visible property, and its visibility_changed and hidden signals

commit 6764338e096f5ca72fa4f7750f85d8ed5d9d5a65
Author: lawnjelly <[email protected]>
Date:   Sun Sep 22 08:29:30 2024 +0100

    Fix physics platform behaviour regression

    Lifetime checks for stored `RIDs` for collision objects assumed they had valid `object_ids`.
    It turns out that some are not derived from `Object` and thus checking `ObjectDB` returns false for some valid `RIDs`.
    To account for this we only perform lifetime checks on valid `object_ids`.

commit 7b7164c80c9827c686d3a81af954ef65e95443eb
Author: Rynzier <[email protected]>
Date:   Sat Sep 21 11:56:40 2024 -0400

    Clarify PCK path argument in `PCKPacker.pck_start`

    Co-authored-by: Rémi Verschelde <[email protected]>

commit b5cd06b9ae2c25f8965eded3c19a7c238d2eeaed
Author: DE-YU_H14 <[email protected]>
Date:   Thu Feb 15 22:34:02 2024 +0800

    C#: Implement proper generic type name printing for Godot Editor

    Co-authored-by: Raul Santos <[email protected]>

commit 388869574c841729cf586ce1cacadb4e37f474b3
Author: Giganzo <[email protected]>
Date:   Sat Sep 21 11:42:06 2024 +0200

    Clarify docs for when toggling `button_pressed` emits `toggled`

commit 1536f5ec7929d46b04bee5030bc7be2b8b42a36f
Author: biswas08433 <[email protected]>
Date:   Wed Aug 28 01:30:25 2024 +0530

    Clarify transform data ordering in RenderingServer.multimesh_set_buffer

commit 155fcd00b0ce722d06a8cd2a165ab29bb1c0d4b1
Merge: 2d6af000e7 ccca41a086
Author: Clay John <[email protected]>
Date:   Sun Sep 22 19:58:51 2024 -0700

    Merge pull request #97279 from AThousandShips/fix_gles3_include

    Remove direct render include in `ExternalTexture`

commit 445e822bcf2dc2cbc4391ce3df18803bd26c0f79
Author: Raul Santos <[email protected]>
Date:   Thu Nov 3 20:10:11 2022 +0100

    C#: Generate signal event with the same accessibility as the delegate

commit 2d6af000e763b64967672bb8603c699eaef40949
Merge: d3e3b7379a 864d4fb32a
Author: Clay John <[email protected]>
Date:   Sun Sep 22 13:33:35 2024 -0700

    Merge pull request #97326 from jj11hh/master

    Fix hash calculation for NTSliceKey

commit d3e3b7379ad1e0ad001c957e5a18b27a6fb1c32e
Merge: e4e024ab88 21fb753bbd
Author: Clay John <[email protected]>
Date:   Sun Sep 22 13:26:23 2024 -0700

    Merge pull request #97338 from Ivorforce/patch-2

    Fix a typo in make_rst.py (Packedfloat64Array -> PackedFloat64Array)

commit bc3dcf3d404046a9ae8ac5a1aeab4853cb7c082b
Author: Chris Cranford <[email protected]>
Date:   Fri Apr 19 13:26:21 2024 -0400

    Expose several resource/resource-saver functions

commit 21fb753bbd4b149295618d5fa38eac32135ecc0e
Author: Lukas Tenbrink <[email protected]>
Date:   Sun Sep 22 21:09:08 2024 +0200

    Fix a typo in make_rst.py (Packedfloat64Array -> PackedFloat64Array)

commit 50ad99bdc0338e3257e0e131ed09f12e1642714f
Author: Lukas Tenbrink <[email protected]>
Date:   Sun Sep 22 20:56:20 2024 +0200

    In make_rst.py, include the parent class in 'Inherits:' even if it is not known.

commit eb5a9c3b332e1709286068df0c888b5836c2cec5
Author: tetrapod00 <[email protected]>
Date:   Sat Sep 21 17:22:51 2024 -0700

    Visual Shader: Add vector operations to Remap node

commit a751c05b15e75904cc949934f95061f1c0ee40e4
Author: Haoyu Qiu <[email protected]>
Date:   Sun Sep 22 19:31:58 2024 +0800

    Fix script editor wrongly replaces and quotes non-ASCII letters

commit 864d4fb32a8b2ad51ad2611e45e9a9f33efff5f6
Author: Jiang Yiheng <[email protected]>
Date:   Sun Sep 22 21:08:18 2024 +0800

    Fix hash calculation for NTSliceKey

    A bug was introduced from 057367bf by adding FSR 2.2.1 support.
    Which increases hash collision and hurts performance.

commit d49ec39d630d63d54301389e15c9510a83766756
Author: A Thousand Ships <[email protected]>
Date:   Sat Apr 20 20:19:48 2024 +0200

    [Core] Add `Engine.print_to_stout` setting to control printing

    Also added notes to the related project settings pointing to the
    `Engine` properties.

commit 307224927ced54943e1ce3da393c63b35160bd2e
Author: DE YU <[email protected]>
Date:   Thu Sep 12 20:24:06 2024 +0800

    Replace Reflection-Based implementation with Generated one

    Co-authored-by: Raul Santos <[email protected]>
    Co-authored-by: A Thousand Ships <[email protected]>

commit 15f344173e9ee00b6083dd1f6e6bc9897b310f90
Author: Giganzo <[email protected]>
Date:   Sun Sep 22 11:17:06 2024 +0200

    Fix Add button style in GroupsEditor

commit dd9525be040518bfbc401f5cb9c3a9fd2f34c442
Author: K. S. Ernest (iFire) Lee <[email protected]>
Date:   Sat Sep 21 06:28:11 2024 -0700

    Fix animation compression going the wrong way

    When compressing animation key frame indices the truncation breaks the animation near the border of pages.

    We use banker's rounding (FE_TONEAREST) as implemented by fast_ftoi to get the nearest integer frame.

commit 0333648cea0483edce0131722789b54d4daa7d5a
Author: Ricardo Buring <[email protected]>
Date:   Wed Aug 7 16:20:21 2024 +0200

    Move Godot Physics 3D into a module; add dummy 3D physics server

    If the module is enabled (default), 3D physics works as it did before.

    If the module is disabled and no other 3D physics server is registered
    (via a module or GDExtension), then we fall back to a dummy
    implementation which effectively disables 3D physics functionality (and
    a warning is printed).

    The dummy 3D physics server can also be selected explicitly, in which
    case no warning is printed.

commit ccca41a0862c341d70c200556f6b6f350560a734
Author: A Thousand Ships <[email protected]>
Date:   Sat Sep 21 15:00:02 2024 +0200

    Remove direct render include in `ExternalTexture`

    This include introduces `windows/platform_gl.h` into the include
    hierarchy which adds defines which break building on MSVC

commit b7416bf6933af73c7d9dc947f9aa834db82e488c
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 23:17:38 2024 +0800

    Document `OptimizedTranslation.generate()` only works in editor

commit ef840f935f18a5bf1c34203cb56c6f26cb8ecb60
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 22:02:56 2024 +0800

    Make FileSystem dock buttons consistent

commit 267bb982319c5dbd0c5341bd85f6319b873db6d2
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 21:11:58 2024 +0800

    Keep advanced toggle on when searching for settings

commit 246150453b7ef0dd37a2af15478ec44e6385628d
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 19:58:17 2024 +0800

    Better undo action names for localization editor

commit e4e024ab88efe74677769395886bc1b09eccbac7
Merge: 2daea4bb0b e8462bf3ac
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:51:06 2024 +0200

    Merge pull request #97273 from timothyqiu/unicode-autoload

    Allow using Unicode identifier for Autoload name

commit 2daea4bb0b23199b1163822c3dc2476620ca8222
Merge: 0df4a85129 208797d54e
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:51:02 2024 +0200

    Merge pull request #97269 from timothyqiu/underline-unicode-identifier

    Fix script editor not underlining Unicode identifiers when Ctrl-hovered

commit 0df4a851292c2a5f455cc87e0ab8c59ab215f13e
Merge: 1ef1c4ee0f c4e4810e93
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:59 2024 +0200

    Merge pull request #97268 from MonterraByte/wayland-opengl3-fallback

    Fallback to OpenGL 3 if Vulkan isn't available on Wayland

commit 1ef1c4ee0f9918479005e2eab7a399cae00c3806
Merge: 5f5c690481 07546006e8
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:55 2024 +0200

    Merge pull request #97264 from clayjohn/obj-no-uv-crash

    Fix crash when importing a surface with no UVs after another surface in the same OBJ file that had UVs

commit 5f5c6904815a5a0ae8690fff1409303a60f02680
Merge: f246419c58 e75900e1ad
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:52 2024 +0200

    Merge pull request #97260 from clayjohn/pixel_snap

    Calculate pixel snap in canvas space instead of world space

commit f246419c58f4331082be6cb7e63960f51a7a079c
Merge: cc26cacc08 daa4704c44
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:49 2024 +0200

    Merge pull request #97259 from alesliehughes/openxr_copy_paste

    OpenXR: Correctly set the Depth swapchain name

commit cc26cacc080d936056dcf73906f06df20e414396
Merge: aa5c69bfd5 aa4f7bc2e3
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:45 2024 +0200

    Merge pull request #97242 from timothyqiu/meta-text

    Fix wrong displayed category name in `EditorHelpSearch`

commit aa5c69bfd5b785ccae1cb35f0c0f7998f42c3e9f
Merge: afb1d82bb8 107675f785
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:42 2024 +0200

    Merge pull request #97239 from Calinou/editor-system-info-add-display-driver-window-mode

    Mention display driver and window mode in Copy System Info text

commit afb1d82bb8330fa4a6ed003da23889cacc214b5b
Merge: d39f53439f fdc6ffd264
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:38 2024 +0200

    Merge pull request #97237 from Repiteo/style/update-mypy-ruff

    Style: Update `ruff` & `mypy` to latest versions

commit d39f53439f603f8ecd3290807210baf741fc3542
Merge: b271a88a9e 1a6f8512bc
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:35 2024 +0200

    Merge pull request #96982 from dsnopek/external-texture

    Add external texture support (GLES3)

commit b271a88a9e5bf90858629ab3b50c133f32a8837a
Merge: dd7cb059f5 b36bebc6da
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:31 2024 +0200

    Merge pull request #96871 from KoBeWi/borrow_container

    Add `SCROLL_MODE_RESERVE` to ScrollContainer

commit dd7cb059f588e120122341cd26fbd300d2eda898
Merge: 621cadcf65 203d3be200
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:24 2024 +0200

    Merge pull request #87344 from AThousandShips/signal_connected

    [Core] Add way to check if a signal has any connections

commit e8462bf3acd0747489c3ed1e87d6f3cbc203016a
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 16:47:19 2024 +0800

    Allow using Unicode identifier for Autoload name

commit 208797d54ee64a93d41d88b1b4af3d62e3e2116b
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 14:10:05 2024 +0800

    Fix script editor not underlining Unicode identifiers when Ctrl-hovered

commit c4e4810e93b29068a90486f14fbb215f4a9eacc0
Author: Joaquim Monteiro <[email protected]>
Date:   Sat Sep 21 06:35:35 2024 +0100

    Fallback to OpenGL 3 if Vulkan isn't available on Wayland

commit 07546006e86732d2be1355a1ecf5f73c87ad6482
Author: clayjohn <[email protected]>
Date:   Fri Sep 20 19:22:37 2024 -0700

    Fix crash when importing a surface with no UVs after another surface in the same OBJ file that had UVs

commit e75900e1ad1a2c699829335ad3be27b4e01afec1
Author: clayjohn <[email protected]>
Date:   Fri Sep 20 17:43:33 2024 -0700

    Calculate pixel snap in canvas space instead of world space

    This ensures that you are actually snapping to pixels in the viewport and not an arbitrary amount

commit daa4704c44e40fa942b32f32e3f664e98857acc1
Author: Alistair Leslie-Hughes <[email protected]>
Date:   Sat Sep 21 09:56:19 2024 +1000

    openxr: Correct set the Depth swapchain name

    Introduced in 08ffa5d89e4bbd427eb3d5ce0c0de1382d21f18a.

commit f7e5e7a40053648584e1d69f25fc398a8142da8d
Author: David Snopek <[email protected]>
Date:   Thu Sep 19 16:54:05 2024 -0500

    OpenXR: Allow extending Android surface swapchain creation from GDExtension

commit 621cadcf651b93757d5dbf8969023ae62a16f1a4
Merge: 2be730a05b 9638220473
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 21:35:08 2024 +0200

    Merge pull request #97168 from Hilderin/fix-reloading-scripts-already-in-use

    Fix reloading scripts already in use

commit 107675f785912a17474ffcc8fa8bd762f2a73233
Author: Hugo Locurcio <[email protected]>
Date:   Fri Sep 20 17:07:11 2024 +0200

    Mention display driver and window mode in Copy System Info text

    This is useful information to know, as the X11 display driver can be
    used both on X11 natively and on Wayland through XWayland.

    Certain editor issues only occur in multi-window mode
    (or only in single-window mode). Some issues also only occur
    on multi-monitor setups, so the monitor count is now listed.

commit 96382204736cbc131fbc2640ba6ba238c53017c0
Author: Hilderin <[email protected]>
Date:   Wed Sep 18 19:37:12 2024 -0400

    Fix reloading scripts already in use

commit aa4f7bc2e37cf713aba8db757ad8274daaf980cb
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 00:07:11 2024 +0800

    Fix wrong displayed category name in EditorHelpSearch

commit 1a6f8512bc5fd2b226a9db5e622b1a85350625c4
Author: David Snopek <[email protected]>
Date:   Sat Oct 14 03:58:59 2023 -0700

    Add external texture support (GLES3)

    Co-authored-by: Fredia Huya-Kouadio <[email protected]>
    Co-authored-by: Mauricio Narvaez <[email protected]>

commit 203d3be200c9b607e5eaba82d9a267813a6700cd
Author: A Thousand Ships <[email protected]>
Date:   Thu Jan 18 17:20:56 2024 +0100

    [Core] Add way to check if a signal has any connections

    Added to `Object` and `Signal`

commit fdc6ffd264d015d4f6ba22488a4e7ab78d365b24
Author: Thaddeus Crews <[email protected]>
Date:   Fri Sep 20 09:34:11 2024 -0500

    Style: Update `ruff` & `mypy` to latest versions

commit 2be730a05b7ff221b89c967981f7caee6e164ef0
Merge: 77f779d326 9e1121a18c
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:26:35 2024 +0200

    Merge pull request #97231 from timothyqiu/missing-period

    Add missing period for sentences in classref

commit 77f779d326e56bde89f11aa12be692ff4c4fb489
Merge: 8738aae9fc f7a7ecc10a
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:26:32 2024 +0200

    Merge pull request #97167 from MewPurPur/reveal-undoredo

    Expose `has_undo()` and `has_redo()` of LineEdit

commit 8738aae9fc5e5f8193ec980e329486bfb2d26355
Merge: efc7c628b0 84e278cbfd
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:26:23 2024 +0200

    Merge pull request #94569 from Calinou/script-editor-tweak-zoom-presets

    Tweak script editor zoom presets to be more useful

commit efc7c628b06771773f89eb0030666fab6fa62e19
Merge: 8ea7f5eac2 f169616cc6
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:07:09 2024 +0200

    Merge pull request #97224 from timothyqiu/transition-names

    Update `AnimationTree` parameter list when updating `AnimationNodeTransition` input names

commit 8ea7f5eac26121733fe0f6ee25406fd68608c01f
Merge: 34dd5e0c37 b1000d1830
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:07:06 2024 +0200

    Merge pull request #97222 from timothyqiu/csv-not-translation

    Don't list CSV as a valid extension for `Translation` resource

commit 34dd5e0c37c9a6efc0ef045fb43c5e0dfb081a58
Merge: 25c4caa5d7 e826ab9ba9
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:07:03 2024 +0200

    Merge pull request #97217 from stuartcarnie/97185_subpixel_rendering

    Metal: Fix subpixel blending; fix inconsistent blend state

commit 25c4caa5d7cdd3aa00fc3d0c89bb3f920a2e6633
Merge: 5070db2575 3d6814e5d2
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:59 2024 +0200

    Merge pull request #97209 from kitbdev/fix-tab-container-ensure-visible-offset

    Fix TabContainer tab offset moving when not needed

commit 5070db2575ed7c77e8fcd5acd422fc7613300a61
Merge: 2834342a78 3bfadeff25
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:56 2024 +0200

    Merge pull request #97208 from kleonc/transform3d_aabb_multiplication_fix_csharp

    Fix C# `operator *(Transform3D, Aabb)`

commit 2834342a78bcdd5d0219839859b4a7baa513326c
Merge: 93150ffab8 e2b25cfc0d
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:52 2024 +0200

    Merge pull request #97203 from ev13bird/docs_inspector_plugin_typo

    Fix minor typo in EditorPlugin `remove_inspector_plugin`

commit 93150ffab8daca14a06162a41e50c36a01ce80ea
Merge: 2f078e501c c4bea28e17
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:49 2024 +0200

    Merge pull request #97202 from jirisvd/fix-typo

    Fix typo in CompositorEffect documentation

commit 2f078e501cbc92eb603713d8c592706b7687798a
Merge: 90a119225e ec189b1574
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:46 2024 +0200

    Merge pull request #97198 from raulsntos/dotnet/open-visual-studio-with-dotnet-cli

    C#: Use dotnet CLI to launch `OpenVisualStudio.dll`

commit 90a119225e5984250740efe7ffbf3c2eabb612bb
Merge: 7ce8e4fd6b d6c0a53ecf
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:42 2024 +0200

    Merge pull request #97194 from RobProductions/godot-sharp-error-improvement

    Add error messages to `BindingsGenerator`

commit 7ce8e4fd6b9791285fcb62d100a0096a19216959
Merge: c2564f42aa bdcee836ad
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:39 2024 +0200

    Merge pull request #97159 from noidexe/Expose-viewport-get-audio-listener

    Expose Viewport methods to get current 2D/3D audio listener

commit c2564f42aac63f7045572cfbaf0fefe6792788f3
Merge: 330cb45c5a 3b839347df
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:35 2024 +0200

    Merge pull request #97142 from SheepYhangCN/master

    Fallback to OpenGL 3 if other rendering drivers are not supported

commit 330cb45c5a9846a2a4ae1affaf7a5741dcb97a97
Merge: d2a5153c66 d33f4820cd
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:31 2024 +0200

    Merge pull request #96981 from ItzCog/patch-1

    Change "deconstructor" to "destructor"

commit d2a5153c6608d0172ebfed3c5984cc6c76ee9c6f
Merge: 7e62565f1e a3158d89bb
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:28 2024 +0200

    Merge pull request #96677 from Wierdox/fix_audio_stream_player_3d_still_processing_when_out_of_range

    Fix AudioStreamPlayer3D still processing when out of range

commit 7e62565f1e075cb5a2b090e320739daa4a8dce9a
Merge: 99a1eb7147 818acb4290
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:23 2024 +0200

    Merge pull request #95787 from timothyqiu/domestic

    Add translation domain

commit 99a1eb7147ad3e13a2302d172708db909195c89c
Merge: 6bf8a3e3f8 4f11a0a987
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:18 2024 +0200

    Merge pull request #95482 from kleonc/bmp_import_1_2_4_bpp_of_any_size

    Support importing 1/2/4-bpp BMP images of size non-divisible by 8/4/2

commit 6bf8a3e3f8dadf485f733b8fd5a502a7d21a2ff1
Merge: da9764ad43 89491f4403
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:13 2024 +0200

    Merge pull request #95449 from SlashScreen/array_functions

    Add callable support for `find` and `rfind` `Array` methods

commit da9764ad438a0dab31f74791d1cf84612ed52c69
Merge: 0a4aedb360 e90c5a4604
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:08 2024 +0200

    Merge pull request #93313 from Repiteo/ci/clang-format

    CI: Update `clang-format` pre-commit hook to latest version

commit d33f4820cd14e38571f0998b59fc72c0d67dfb1e
Author: Dungeon Master <[email protected]>
Date:   Sat Sep 14 05:09:22 2024 +0800

    Change "deconstructor" to "destructor" in `NOTIFICATION_PREDELETE` docs

commit 84e278cbfd2b645a2b5acb0ec1ad869e6d50c971
Author: Hugo Locurcio <[email protected]>
Date:   Sun Jul 21 05:32:35 2024 +0200

    Tweak script editor zoom presets to be more useful

    The presets are now 50%, 75%, 90%, 100%, 110%, 125%, 150%.

    This also mentions Ctrl + mouse wheel in the tooltip.

commit e90c5a46042feb4b1781062dc4d4e8f075009638
Author: Thaddeus Crews <[email protected]>
Date:   Wed Jun 26 11:13:31 2024 -0500

    Ignore `clang-format` changes commit

commit b37fc1014abf7adda70dc30b0822d775b3a4433f
Author: Thaddeus Crews <[email protected]>
Date:   Wed Jun 26 11:13:05 2024 -0500

    Style: Apply new `clang-format` changes

commit 9e1121a18c4011d039037378bedf8138b2f79649
Author: Haoyu Qiu <[email protected]>
Date:   Fri Sep 20 19:33:32 2024 +0800

    Add missing period for sentences in classref

commit f169616cc6b394b5ba95e2d1d99f217552dab60f
Author: Haoyu Qiu <[email protected]>
Date:   Fri Sep 20 16:21:03 2024 +0800

    Update AnimationTree parameter list when updating AnimationNodeTransition input names

commit b1000d1830e2a0486a68e787d032ef5c2bc6a576
Author: Haoyu Qiu <[email protected]>
Date:   Fri Sep 20 15:21:50 2024 +0800

    Don't list CSV as a valid extension for Translation resource

commit a3158d89bb7cba513fc2aa47cdc23fe39d2a1ad3
Author: Wierdox <[email protected]>
Date:   Sat Sep 7 02:13:54 2024 -0700

    Fix AudioStreamPlayer3D still processing when out of range

commit e826ab9ba90595007b698df36622b725697ec26c
Author: Stuart Carnie <[email protected]>
Date:   Fri Sep 20 15:11:08 2024 +1000

    [2D,Metal]: Fix subpixel blending; fix inconsistent blend state in Metal

commit 3d6814e5d2c9e7dc88d7f2ff3611236a1298fd8f
Author: kit <[email protected]>
Date:   Thu Sep 19 19:19:34 2024 -0400

    Fix TabContainer tab offset moving when not needed

commit 3bfadeff25c5d86a65a17ee172465e626c9741ba
Author: kleonc <[email protected]>
Date:   Fri Sep 20 00:18:54 2024 +0200

    Fix C# operator *(Transform3D, AABB)

commit 3b839347df1714cab08d373a551da2602e1a7cdf
Author: SheepYhangCN <[email protected]>
Date:   Wed Sep 18 19:10:59 2024 +0800

    Added fallback_to_opengl3

commit bdcee836adf52f38d5d89f3304556bd707a79705
Author: Lisandro Lorea <[email protected]>
Date:   Wed Sep 18 16:07:47 2024 -0300

    Expose Viewport::get_audio_listener_2d and Viewport::get_audio_listener_3d to scripting

    Document exposed methods

    Apply suggestions from code review

    Co-authored-by: Micky <[email protected]>

    Document default behavior when no audio listeners are active

commit 72c183ce8ba6f5c78213d49dd3a135690ef0bfd3
Author: Thaddeus Crews <[email protected]>
Date:   Tue Jun 18 10:36:58 2024 -0500

    CI: Update pre-commit `clang-format` to 18.1.8

    • Modernized `.clang-format` file against latest LLVM config settings

commit c4bea28e1734e2d13fa9a7e01d48059c65e22113
Author: Jiří Švejda <[email protected]>
Date:   Thu Sep 19 22:26:23 2024 +0200

    Fix typo in CompositorEffect documentation

commit e2b25cfc0de38ac1a09de7f570cc67eced9ca887
Author: ev13bird <[email protected]>
Date:   Fri Sep 20 06:17:15 2024 +1000

    Fix minor typo in EditorPlugin remove_inspector_plugin

commit d6c0a53ecf3e02aba625b5a70de4454645216b2f
Author: Matt Enad <[email protected]>
Date:   Thu Sep 19 13:31:05 2024 -0400

    Add error messages to binding generator

commit ec189b1574d24fda24f13210be0fb79a309b22da
Author: Raul Santos <[email protected]>
Date:   Thu Sep 19 19:21:48 2024 +0200

    C#: Use dotnet CLI to launch OpenVisualStudio.dll

    Use the DLL instead of the EXE, so we can rely on the dotnet CLI handling the architecture.

commit 714357e55cf77902cbb41f45f6d75b314b6b2993
Author: aaronp64 <[email protected]>
Date:   Mon Aug 5 11:03:14 2024 -0400

    Assign return value on Variant operator failure

    Variant operators for String formatting and "in" could result in errors, which would return from validated_evaluate without assigning r_ret.  This would cause scripts using the return value from these operators to get results from previously run code.  Updated to return the original String value in the String formatting case, and false for "in" when an error occurs.

commit 0a4aedb36065f66fc7e99cb2e6de3e55242f9dfb
Merge: c8d76c1edd b277a2985d
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:56 2024 +0200

    Merge pull request #97187 from KoBeWi/do_not

    Don't store project metadata when loading

commit c8d76c1edd53cb835fa172b7aad061ea87e345b6
Merge: d788205826 5901a7a3d1
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:53 2024 +0200

    Merge pull request #97185 from KoBeWi/ID_war

    Fix FileSystemDock's EditorContextMenuPlugins

commit d788205826d23f5afb0cd8fea17069784b68bc2e
Merge: 6a1ab24a34 14321b8ed5
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:50 2024 +0200

    Merge pull request #97173 from timothyqiu/drag-preview-translation

    Set auto translate mode for drag previews

commit 6a1ab24a34f85b2017e5b379bfb9b0dedfbc7417
Merge: d427a60970 593744b733
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:46 2024 +0200

    Merge pull request #97166 from Repiteo/ci/godot-cpp

    CI: Improve `godot-cpp` actions

commit d427a60970b8dde5bf3f1cb8a94b3207abd84630
Merge: ff2b5a5422 8ab9205617
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:43 2024 +0200

    Merge pull request #97145 from KoBeWi/supersecretsettings

    Don't show project settings starting with underscore

commit ff2b5a542288b8c5089d5a41e2e57a775a59f7cd
Merge: ae872a4ed5 ad99c79472
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:39 2024 +0200

    Merge pull request #97075 from KoBeWi/better_new_folder_(not_to_be_confused_with_new_better_folder)

    Rework creating new folders in editor

commit ae872a4ed58e49205f6845de912cb774d7a329de
Merge: 575c3212c5 7df5b78aca
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:34 2024 +0200

    Merge pull request #97014 from hayahane/fix_script_property_order

    Reorder C# script properties to fix editor serialization

commit 575c3212c5e4d83d654466e9003eab6e7cc6f8c6
Merge: b1b4c5da4b 30ad025f8d
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:30 2024 +0200

    Merge pull request #96954 from HolonProduction/highlighter-duplicate-docs

    Docs: Add warning about sharing a syntax highlighter to `TextEdit`

commit b1b4c5da4b79946e5201c5834e9022af64581b31
Merge: 71a7e37a43 7d56b09f23
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:27 2024 +0200

    Merge pull request #96928 from dsnopek/rename-and-expose-texture-create-external

    Expose a function to create textures from a native handle in the compatibility renderer

commit 71a7e37a43397e16a0946686a9cfb384c0c91724
Merge: ff334cd1dd 92b3e5fe8a
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:20 2024 +0200

    Merge pull request #96766 from ryevdokimov/hide-white-circle-outline

    Hide white circle outline during instant transformations

commit ff334cd1dd31d15987acafc06ea941b76d8384f7
Merge: a05e06f9cf 5aa8f8dfee
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:16 2024 +0200

    Merge pull request #97169 from Dowsley/fix/undo-redo-bezier-anim-editor

    Fix Undo/Redo not working in Bezier Animation Editor when moving keys

commit a05e06f9cf81e313781c6bb238ef89bd1f085bc1
Merge: bea22d8c64 b638967d01
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:13 2024 +0200

    Merge pull request #97180 from akien-mga/revert-95508

    Revert "Return error when no ResourceFormatLoader found."

commit bea22d8c649639174f124fa6042bb53ffc60b83d
Merge: 694d3c2930 454251660c
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 17:13:10 2024 +0200

    Merge pull request #97188 from alvinhochun/binutils-ar-tempfile-fix

    Fix using Binutils `AR` with `TEMPFILE` on Windows

commit 30ad025f8dcd61bbe029c6a82b93e86bb5fd073c
Author: HolonProduction <[email protected]>
Date:   Fri Sep 13 11:55:12 2024 +0200

    Docs: Add warning about sharing a syntax highlighter to `TextEdit`

commit 454251660c4c227121be6a6bab67b2998ffbf81a
Author: Alvin Wong <[email protected]>
Date:   Thu Sep 19 22:04:55 2024 +0800

    Fix using Binutils AR with TEMPFILE on Windows

    Set `TEMPFILEARGESCFUNC`[1] to replace backslashes with forward slashes
    in paths.

    [1]: https://scons.org/doc/production/HTML/scons-user/apa.html#cv-TEMPFILEARGESCFUNC

commit 7d56b09f2375a32e1adbfaa3aca54823abcd2508
Author: David Snopek <[email protected]>
Date:   Thu Sep 12 12:54:57 2024 -0500

    Expose a function to create textures from a native handle in the compatibility renderer

commit b277a2985d81efd4e15d8606ddd6ee12db0b2ed1
Author: kobewi <[email protected]>
Date:   Thu Sep 19 15:57:02 2024 +0200

    Don't store project metadata when loading

commit 593744b733e7a765c721e93a72419bc44278d69d
Author: Thaddeus Crews <[email protected]>
Date:   Wed Sep 18 15:29:00 2024 -0500

    CI: Improve `godot-cpp` actions

commit 5901a7a3d13c29480cc61a9706cf456211af049a
Author: kobewi <[email protected]>
Date:   Thu Sep 19 15:33:05 2024 +0200

    Fix FileSystemDock's EditorContextMenuPlugins

commit 14321b8ed5e151987c0e2a0dd28d7a4e2483faba
Author: Haoyu Qiu <[email protected]>
Date:   Thu Sep 19 08:14:00 2024 +0800

    Set auto translate mode for drag previews

    - Controls
      - `LineEdit`, `TextEdit`: Always disabled since it's dragging user input.
      - `TabBar`: Use the same auto translate mode as the node.
      - `RichTextLabel`: Always disable since auto translation is done
        differently from other controls (selection text you get
        programmatically is always after auto translation).
    - Editor
      - Disable drag preview auto translation if the text is user input,
        filename, or class name.
      - Also disabled unexpected auto translation for audio bus effect names.

commit b638967d0102fbb8dbd19f52a549d32b7aa1a442
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 19 12:41:28 202…
PerceptiveGames added a commit to PerceptiveGames/godot that referenced this pull request Sep 30, 2024
commit e3213aaef5e0e72b8272e65d989d3d8222be17ca
Merge: 72cff2ed59 1d3c4e192c
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 21:06:40 2024 +0200

    Merge pull request #97622 from Repiteo/scons/msvc-prerelease-fix

    SCons: Include pre-release in MSVC detection

commit 1d3c4e192c61e8decb9e350dc76d64763dbb1e6e
Author: Thaddeus Crews <[email protected]>
Date:   Sun Sep 29 10:44:05 2024 -0500

    SCons: Include pre-release in MSVC detection

commit 72cff2ed591ca6da76ef287d2afcca35d59402df
Merge: 1fc8208765 9a8fcd5263
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 16:51:14 2024 +0200

    Merge pull request #97618 from Repiteo/scons/decode-fix

    SCons: Fix MSVC decode error

commit 9a8fcd52637d6e61003bd5ba8a25d48ec6cce989
Author: Thaddeus Crews <[email protected]>
Date:   Sun Sep 29 07:52:51 2024 -0500

    SCons: Fix MSVC decode error

commit 1fc82087658066935bed9e1350d62e334c7e0309
Merge: 0e2a76d57f 0178bb88e0
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:47:15 2024 +0200

    Merge pull request #97589 from pkowal1982/fix_97454

    Fix error message on startup when camera is busy

commit 0e2a76d57fed51f77faa30e782926bec0e64b41d
Merge: 99aec99421 2caaa2cae5
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:47:12 2024 +0200

    Merge pull request #97547 from lalitshankarchowdhury/audio-code-fix

    Vorbis: Remove redundant bounds check

commit 99aec994217d618a59164252bc2654c67fee672b
Merge: a53d0a36e4 38d7ec1640
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:47:09 2024 +0200

    Merge pull request #97534 from j20001970/camerafeed-setter

    Expose CameraFeed setters

commit a53d0a36e402913077a4097d6c998279878741c0
Merge: 422306ef87 cb9a457153
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:47:05 2024 +0200

    Merge pull request #97503 from Repiteo/ci/merge_queue

    CI: Support merge queues with default runner

commit 422306ef873d96d8ec8439cd97c06e3a902e83b4
Merge: 3fbd33af85 2167157aaf
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:47:02 2024 +0200

    Merge pull request #97325 from BlueCube3310/bcdec

    Replace squish with bcdec for BC decompression

commit 3fbd33af85ab89a90c16773c6f853ba577c48ee1
Merge: a11f970f91 b4460c6ba3
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:46:59 2024 +0200

    Merge pull request #97229 from aryan-11825114/ctrl-x-visual-shader

    Add `GraphEdit.cut_nodes_request` signal

commit a11f970f91f8e049501d2077a3de3fba26bba1ba
Merge: d6c0509b5a 85dfd89653
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:46:55 2024 +0200

    Merge pull request #96290 from Macksaur/export-action-callable

    Add `@export_tool_button` annotation for easily creating inspector buttons.

commit d6c0509b5a7f746b06d06b03b1bce10fcd7a047c
Merge: 285ebed828 1043c00137
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:46:52 2024 +0200

    Merge pull request #91069 from Repiteo/scons/msvc-detect-compiler

    SCons: Detect MSVC compiler version

commit 285ebed828286574d6ff9f41ec3d01f09bb40bac
Merge: e7a9104f37 0a9ad8f9de
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:46:48 2024 +0200

    Merge pull request #83360 from ywmaa/vertex_shading

    Implement vertex shading

commit e7a9104f3768e41b292d805e7ba8369bd7caa226
Merge: b2b13d46c2 4d635b7a3a
Author: Rémi Verschelde <[email protected]>
Date:   Sun Sep 29 00:46:44 2024 +0200

    Merge pull request #97554 from clayjohn/batching-uniform-sets

    Combine texture and instance data into one uniform set in the 2D renderer

commit 0a9ad8f9de825a14d112d9ebd0674a9c82f56e12
Author: ywmaa <[email protected]>
Date:   Sun Oct 15 03:48:52 2023 +0300

    Implement vertex shading

    This adds support in all backends, but the Compatibility renderer works the best.
    Mobile and Forward+ can only support one directional light shader (the first in the tree)
    While the Compatibility renderer supports any number of shadows.

    Co-authored-by: Clay John <[email protected]>

commit b2b13d46c2fcd75502eec12c768caa23ee952900
Merge: 76a135926a ae45d19ad6
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 28 17:42:38 2024 +0200

    Merge pull request #97581 from AThousandShips/owners_fix_3

    Add a few missing CODEOWNERS

commit 0178bb88e0eac442399d915ba9392530e05e1f68
Author: Paweł <[email protected]>
Date:   Fri Sep 27 21:04:28 2024 +0200

    Fix error message on startup when camera is busy

commit ae45d19ad69d4a23146ab04c85adca00188a0d94
Author: A Thousand Ships <[email protected]>
Date:   Sat Sep 28 11:55:28 2024 +0200

    Add a few missing CODEOWNERS

commit 85dfd896536ff04dba4afd7d461a28e0ac4b9aee
Author: Danil Alexeev <[email protected]>
Date:   Thu Sep 26 20:34:29 2024 +0300

    Add `@export_tool_button` annotation for easily creating inspector buttons

    Co-authored-by: jordi <[email protected]>
    Co-authored-by: K. S. Ernest (iFire) Lee <[email protected]>
    Co-authored-by: Mack <[email protected]>

commit 4d635b7a3afafb62e9d9e2e09f00e5d62d317a8b
Author: clayjohn <[email protected]>
Date:   Fri Sep 27 11:05:46 2024 -0700

    Combine texture and instance data into one uniform set in the 2D renderer

    Co-authored-by: Stuart Carnie <[email protected]>

commit 1043c00137adfe8ef61937f15078ccc448f3437c
Author: Thaddeus Crews <[email protected]>
Date:   Tue Apr 23 11:00:46 2024 -0500

    SCons: Detect msvc compiler version

    • C standard now passed on msvc if the version is supported

commit 2caaa2cae5c05e48274886c2968475f24d979c99
Author: Lalit Shankar Chowdhury <[email protected]>
Date:   Fri Sep 27 21:04:46 2024 +0530

    Vorbis: Remove redundant bounds check

commit 76a135926aef1f02f27e4e09093787f2c670956d
Merge: ac3eadf976 dbcc7f3051
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 14:57:34 2024 +0200

    Merge pull request #97517 from syntaxerror247/android-themed-icon

    Add support for Android Themed Icons (monochrome)

commit 38d7ec1640ece8cdf6774ff5ae1f9f37d0a5cc66
Author: Jason Kuo <[email protected]>
Date:   Fri Sep 27 18:10:59 2024 +0800

    Expose CameraFeed setters

commit dbcc7f3051f24663c7215daba1c6a725c5b66096
Author: Anish Mishra <[email protected]>
Date:   Fri Sep 27 04:42:41 2024 +0530

    Add support for Android Themed Icons (monochrome)

commit ac3eadf976006e859b0a3c1b298138cf31c66637
Merge: ab1f55e738 e0478fe3a3
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:41 2024 +0200

    Merge pull request #97524 from BastiaanOlij/openxr_1141

    Update thirdparty OpenXR to 1.1.41

commit ab1f55e738443ca97ab1f79ea65ba36a006026ce
Merge: 58ec7a95a4 2eb069f40b
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:38 2024 +0200

    Merge pull request #97489 from TokageItLab/deferred-skin-registration

    Move skin registration process into deferred on ready

commit 58ec7a95a42dd1c90a6ba9887b9031633ac12594
Merge: 7b393c6cee 77202e08b4
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:33 2024 +0200

    Merge pull request #97477 from m4gr3d/update_xr_editor_excluded_permissions

    [XR Editor] Update the set of excluded permissions

commit 7b393c6ceec12529352a30b9f7290ef2b45f78e4
Merge: b537d2f15c c15fe90ac4
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:29 2024 +0200

    Merge pull request #97453 from Calinou/project-manager-enter-accepts-dialog

    Make pressing Enter confirm project creation/import in the project manager

commit b537d2f15c94fd54e3621b23b38a1e58761b38ae
Merge: 61fce325ca 49212b81e5
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:26 2024 +0200

    Merge pull request #97450 from megalon/alpha_curve-docs-fix

    Update notes for Color Curve members in ParticleProcessMaterial

commit 61fce325cad7e7587de90ac27df1d534138387e7
Merge: 83b2ca3107 76691afd94
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:22 2024 +0200

    Merge pull request #96548 from timothyqiu/item-list-signals

    Improve documentation of some `ItemList` signals

commit 83b2ca3107625d54c2ec2946763cf2af3db9672a
Merge: 8a9a26ef19 cc9f2b58a0
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:19 2024 +0200

    Merge pull request #95930 from aaronfranke/bind-array-set

    Bind Array and Packed*Array `get` and `set` functions

commit 8a9a26ef1980f149c6466329a989bbb930612902
Merge: 543fa16b4c c2af6bcb59
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:16 2024 +0200

    Merge pull request #93311 from dsnopek/gdextension-required-virtuals

    GDExtension: Mark virtual function as `is_required` in `extension_api.json`

commit 543fa16b4ce821a0118da3ef0904a105aaa046e9
Merge: 506d6e427a da37998dc8
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 27 13:53:11 2024 +0200

    Merge pull request #68233 from raulsntos/dotnet/raise-events

    C#: Generate strongly-typed method to raise signal events and fix event accessibility

commit 76691afd945c2c0da11b13fc3bf23636325d2d9f
Author: Haoyu Qiu <[email protected]>
Date:   Wed Sep 4 13:57:56 2024 +0800

    Improve documentation of some ItemList signals

commit e0478fe3a3d3a28330e051bd065776e13efb4691
Author: Bastiaan Olij <[email protected]>
Date:   Fri Sep 27 14:34:43 2024 +1000

    Update thirdparty OpenXR to 1.1.41

commit b4460c6ba3ef56b19713b86485aea37d5f136b5e
Author: aryan-11825114 <[email protected]>
Date:   Fri Sep 20 15:49:16 2024 +0530

    Add cut_nodes_request signal to GraphEdit

commit 49212b81e50303277cafc7bdd195a609bf900391
Author: megalon <[email protected]>
Date:   Wed Sep 25 10:04:33 2024 -0400

    Update alpha_curve and emission_curve notes in ParticleProcessMaterial

    Update doc/classes/ParticleProcessMaterial.xml

    Co-authored-by: Hugo Locurcio <[email protected]>
    Update doc/classes/ParticleProcessMaterial.xml

    Co-authored-by: Hugo Locurcio <[email protected]>

commit cc9f2b58a0b928ce1a8f30b855ace1e18d0049fc
Author: Aaron Franke <[email protected]>
Date:   Wed Aug 21 19:26:21 2024 -0700

    Bind Array get and set functions

commit da37998dc84dcf05c91fdfe7481445c0cb10af2e
Author: Raul Santos <[email protected]>
Date:   Thu Nov 3 20:10:33 2022 +0100

    C#: Generate On{EventName} method to raise signal events

commit 506d6e427a4eecfc1e5e5ee1180019a876119701
Merge: b181ff28e8 0fdbd22f56
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:54:05 2024 +0200

    Merge pull request #89486 from AThousandShips/owners_fix

    Update CODEOWNERS

commit cb9a457153e8d8242ab2c94424211af3c96d61fd
Author: Thaddeus Crews <[email protected]>
Date:   Thu Sep 26 10:37:40 2024 -0500

    CI: Support merge queues with default runner

commit b181ff28e8b034614225d08e7d8ed0add77d8240
Merge: 645af49919 a83ea6b57d
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:56 2024 +0200

    Merge pull request #97491 from akien-mga/fix-filesystem-invalid-icon-crash

    Fix EditorFileSystem crash when fetching icons for unknown file types

commit 645af49919d8149001766d34bd16afa3fc620d57
Merge: 8126d81d0c 4b734aeda9
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:53 2024 +0200

    Merge pull request #97488 from KoBeWi/zakaz_tłumaczeń

    Disable auto translation in EditorDirDialog

commit 8126d81d0c9d67eaa88e10a742f202dda6a15117
Merge: 3cde5a37f9 e117ed9cd4
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:50 2024 +0200

    Merge pull request #97487 from Ivorforce/patch-2

    Rename `Vector4.components` -> `coord` for consistency

commit 3cde5a37f98552ef10b73091c058a5802ace08db
Merge: 807136b679 b3d413d4b4
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:46 2024 +0200

    Merge pull request #97455 from Calinou/doc-lineedit-text-submitted

    Clarify when LineEdit's `text_submitted` signal is emitted

commit 807136b679e9160a7819adc6ccbcff4ef975d598
Merge: 56d50c30a2 2cfe6d9f64
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:42 2024 +0200

    Merge pull request #97425 from CrayolaEater/better-description-multiplayer-spawner-signals

    Better description for multiplayer spawner signals

commit 56d50c30a295a1b3bf70b17b07ec03402c7736a4
Merge: 01d567ba1b 56f095296c
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:38 2024 +0200

    Merge pull request #97414 from AThousandShips/code_highlight_fix

    Fix editing of some properties in `CodeHighlighter`

commit 01d567ba1b8d18e5a177d41b163c4c6aed5165e8
Merge: 9a8dcc1eeb 78801f61da
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:35 2024 +0200

    Merge pull request #97406 from timothyqiu/tooltip-atm

    Add auto translate mode for tooltips

commit 9a8dcc1eebaaab5223d2f39ac2509d3f130c45d4
Merge: 775edd568b 6a7183119f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:31 2024 +0200

    Merge pull request #97397 from timothyqiu/shortcut-in-tooltips

    Make `_make_custom_tooltip` receive raw tooltip for buttons with shortcut enabled

commit 775edd568b6a03a151374c4e9e24bed9422e147d
Merge: 344ce2b047 0f98b32448
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:28 2024 +0200

    Merge pull request #97389 from timothyqiu/button-autowrap-min-size

    Fix button text autowrap overflow when inside a container

commit 344ce2b047c707db1f465cf84bcc72dfe2fb6e38
Merge: c4f079a6b0 163753949e
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:24 2024 +0200

    Merge pull request #97344 from pafuent/editor_file_dialog_filter_sort

    Add filter & sort to editor file dialog

commit c4f079a6b065968b1e217c3a4ab07818f20f83b7
Merge: 8eab2b52ed ef840f935f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:20 2024 +0200

    Merge pull request #97283 from timothyqiu/fs-buttons

    Make FileSystem dock buttons consistent

commit 8eab2b52ed7e746a5abf4a51688e388bf19d7ef2
Merge: eeaca3a439 3e93970ef5
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:15 2024 +0200

    Merge pull request #96835 from Malcolmnixon/animation-optimize

    Expose the optimize method of the Animation class to gdscript.

commit eeaca3a439750bfaa78e7c8dec3b2f877e570656
Merge: 35459bd182 a1e409c58b
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:10 2024 +0200

    Merge pull request #96610 from adamscott/emscripten-minimum-requirements

    [Web] Update minimum requirements for emscripten to 3.1.62

commit 35459bd18266d888f8de39f08e2520ce09c110f9
Merge: f8f2ab6fbe 8ffb7699af
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:07 2024 +0200

    Merge pull request #96394 from Faless/mbedtls/tls_1.3

    [mbedTLS] Enable TLS 1.3 support

commit f8f2ab6fbeaa0f0da3dcafbfa57d44db320d74e4
Merge: a4c1804cab 3e0d3c433b
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 18:45:03 2024 +0200

    Merge pull request #94744 from matheusmdx/fix-pink-gradient2d

    Fix pink GradientTexture2D

commit 8ffb7699af98790b6a39c0d425945145e199e67a
Author: Fabio Alessandrelli <[email protected]>
Date:   Sat Aug 31 16:37:44 2024 +0200

    [mbedTLS] Enable TLS 1.3 support

    Move library initialization to module registration functions.

    Only set library debug threshold when verbose output is enabled.

    TLSv1.3 functions seems to be a bit more verbose then expected, and
    generate a lot of noise. Yet, some level of debugging without
    recompiling the engine would be nice. We should discuss this upstream.

commit 78801f61da872d3df03d21b36626af6cfb7f2c00
Author: Haoyu Qiu <[email protected]>
Date:   Tue Sep 24 19:11:49 2024 +0800

    Add auto translate mode for tooltips

commit a1e409c58b22f1a38a535accf71b8a9f02615206
Author: Adam Scott <[email protected]>
Date:   Thu Sep 5 10:17:52 2024 -0400

    Update minimum requirements for emscripten to 3.1.62

commit 163753949e31ec71ea5aeda902e69947369955af
Author: Pablo Andres Fuente <[email protected]>
Date:   Sun Sep 22 20:47:20 2024 -0300

    Add filter & sort to editor file dialog

    Closes https://github.com/godotengine/godot-proposals/issues/2721

    On `EditorFileDialog`:
     * Add filter box that only shows folders and files in current directory that match
     * Add sort button to sort files and directories
     * Add a shortcut for CTRL+F for selecting the filter box

    Also moved common code between `EditorFileDialog` and `FileSystemDock`
    to it's own file.

    Co-authored-by: fox <[email protected]>

commit a83ea6b57ddbfbce656cd47a6d21cd6a13c37d5a
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 15:52:39 2024 +0200

    Fix EditorFileSystem crash when fetching icons for unknown file types

    Fixes crash reported in https://github.com/godotengine/godot/pull/97421#issuecomment-2376684690.

commit 2eb069f40b64809d144d86373c9b42d824dbc50e
Author: Silc Lizard (Tokage) Renew <[email protected]>
Date:   Thu Sep 26 22:22:19 2024 +0900

    Move skin registration process into deferred on ready

commit 3e0d3c433bde1f2e0b18c3f05e43c3bf3c0804bc
Author: matheusmdx <[email protected]>
Date:   Thu Jul 25 13:55:02 2024 -0300

    Fix pink GradientTexture2D

commit 2167157aaf0c4b2993ad67b929b3b51279360e29
Author: BlueCube3310 <[email protected]>
Date:   Fri Jan 19 20:22:21 2024 +0100

    Replace squish with bcdec for BC decompression

commit 4b734aeda96cc6b0bf1c8ea184572790e5f47bf7
Author: kobewi <[email protected]>
Date:   Thu Sep 26 13:48:21 2024 +0200

    Disable auto translation in EditorDirDialog

commit e117ed9cd42666a98ac8253fd3d880ca97c414cf
Author: Lukas Tenbrink <[email protected]>
Date:   Thu Sep 26 14:02:00 2024 +0200

    Rename Vector4.components -> coord

commit a0d1ba4a3d1760f48ef3297a6299ee3dbc1260e1
Merge: a4c1804cab 395a4fc5f2
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:50:14 2024 +0200

    Merge pull request #97458 from Faless/fix/imagine_its_2024_and_your_os_cant_handle_few_kbs_of_text

    [SCons] Remove MAXLINELENGTH override for MSVC

commit a4c1804cab2ace8c7496390132c8cdc019b55078
Merge: b64b464ba7 c92a6c7e27
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:46:04 2024 +0200

    Merge pull request #97483 from akien-mga/clang-format-19.1.0

    CI: Update `clang-format` pre-commit hook to 19.1.0

commit b64b464ba72ae54f6a1b90e403c6dfa2a7ccede6
Merge: 8493a39e91 3828d45e31
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:46:01 2024 +0200

    Merge pull request #97481 from Chaosus/shader_fix_void_return

    Fix shader crash when return a void function call

commit 8493a39e912f91b375119d1d417f1180acca2113
Merge: dbf1efbd19 e3eb5ee607
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:58 2024 +0200

    Merge pull request #97479 from dustdfg/csg_redudant_3d_disabled_check

    Remove redundant `_3D_DISABLED` check from csg module

commit dbf1efbd19d97d0aa1bd0e081faed4794e0e4069
Merge: bfe74eca3b 415607784f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:54 2024 +0200

    Merge pull request #97442 from dustdfg/disable_xr/missing_disable_3d_ifndefs

    Add missing `#ifndef _3D_DISABLED` to main file

commit bfe74eca3b912b162310a2cc0490366e0b8a32b1
Merge: 841061d50e 0eb06da057
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:50 2024 +0200

    Merge pull request #97428 from clayjohn/shadow-filter-jitter-rebase

    Jitter shadow map dithering pattern across frames when TAA is enabled

commit 841061d50ea6bbd31e57e724a9898b5ded823423
Merge: 2912cb9975 e4cf4fcb2f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:46 2024 +0200

    Merge pull request #97421 from SaNeOr/fix#97387

    Fix GDExtension classes inheriting from Resource not using icons in FileSystem

commit 2912cb99756dede609548503eeb3f6f1a2f2dfbf
Merge: 991e6c92ab d3be030ea6
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:42 2024 +0200

    Merge pull request #97118 from mihe/patch-exports

    Add ability to export patch packs

commit 991e6c92abd26435169ad7ea0df2622685cac6d1
Merge: 052b122108 32c83a228d
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:38 2024 +0200

    Merge pull request #96923 from Repiteo/style/warning-admonition

    Style: Add `WARNING:` as new comment admonition

commit 052b1221085eb874fe4020ffc45a2cbbebebc4f1
Merge: ef7547384c 1536f5ec79
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:35 2024 +0200

    Merge pull request #96184 from biswas08433/patch-1

    Clarify transform data ordering in `RenderingServer.multimesh_set_buffer`

commit ef7547384c962f536b9020b74cf0984a534007bb
Merge: 9d5b59b2ae 21f7c8a25f
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:31 2024 +0200

    Merge pull request #95678 from Hilderin/fix-slow-load-on-large-project-v2

    Fix slow editor load on large projects (v2)

commit 9d5b59b2ae456a1f9a98c918cef6ef217f52d31c
Merge: a90da7e87b a84c480049
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:27 2024 +0200

    Merge pull request #94864 from rune-scape/add-missing-method-bind

    Add missing CallableCustomMethodPointer for const methods

commit a90da7e87b2b0c01065fcacca6685617e911d88c
Merge: f7c567e2f5 9f9ee0c813
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 12:45:21 2024 +0200

    Merge pull request #93058 from Repiteo/scons/scons_hints

    SCons: Add unobtrusive type hints in SCons files

commit 395a4fc5f27b5cc8b9ebce3d66fd95be2eea9b3b
Author: Fabio Alessandrelli <[email protected]>
Date:   Wed Sep 25 17:38:34 2024 +0200

    [SCons] Remove MAXLINELENGTH override for MSVC

    It's not clear what is the actual max value that windows support, but
    despite their claim of it being 8191 we have been seeing failure with
    just 8150.

commit c92a6c7e27cc51e1161425fd2d6e85a63d4b81fb
Author: Rémi Verschelde <[email protected]>
Date:   Thu Sep 26 11:26:17 2024 +0200

    CI: Update `clang-format` pre-commit hook to 19.1.0

commit 3828d45e31697e2d6b8d411fbca310b7f57cbe35
Author: Chaosus <[email protected]>
Date:   Thu Sep 26 11:20:39 2024 +0300

    Fix shader crash when return a void function call

commit e3eb5ee60713e46365d3f6ddb9cb882102e1a11a
Author: Yevhen Babiichuk (DustDFG) <[email protected]>
Date:   Thu Sep 26 10:24:10 2024 +0300

    Remove redudant _3D_DISABLED check from csg module

    It even won't be considered for building so there is no any sense
    for compile time checks

    Signed-off-by: Yevhen Babiichuk (DustDFG) <[email protected]>

commit 77202e08b4794dd28ff626ac3a33348e4d13b13a
Author: Fredia Huya-Kouadio <[email protected]>
Date:   Wed Sep 25 23:21:16 2024 -0700

    Update the set of excluded permissions for the XR Editor

    A few permissions including the `USE_SCENE` permission are being renamed with the launch of the Meta Spatial SDK, so we update the excluded list to avoid requesting them on app start.

commit c15fe90ac427175273079157ddacd1ec9123c026
Author: Hugo Locurcio <[email protected]>
Date:   Wed Sep 25 16:01:36 2024 +0200

    Make pressing Enter confirm project creation/import in the project manager

    This makes the project manager more friendly to keyboard usage.

    You can now create projects more easily without touching the mouse
    by opening the project manager, pressing Ctrl + N, entering a project
    name and pressing Enter.

commit 6a7183119f1eed8871fe73a45880033cfb02f3d9
Author: Haoyu Qiu <[email protected]>
Date:   Tue Sep 24 14:34:20 2024 +0800

    Make _make_custom_tooltip receive raw tooltip for buttons with shortcut enabled

commit 21f7c8a25f23c40541925c95d7d25f52f81c9811
Author: Hilderin <[email protected]>
Date:   Fri Aug 16 21:55:03 2024 -0400

    Fix slow editor load on large projects (v2)

commit b3d413d4b4eec44d7651a75f2c4ed7aebfbf044e
Author: Hugo Locurcio <[email protected]>
Date:   Wed Sep 25 17:31:51 2024 +0200

    Clarify when LineEdit's `text_submitted` signal is emitted

commit f7c567e2f56d6e63f4749387a67e5ea4903c4696
Merge: 0a9d8f04c1 36293a2dbf
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 19:34:11 2024 +0200

    Merge pull request #97447 from dsnopek/x11-focus-bugs-take-twenty-seven-million-and-seven

    Fix renaming nodes on X11

commit d3be030ea6f3e295603ccf6cc9080a1d32051332
Author: Mikael Hermansson <[email protected]>
Date:   Tue Sep 17 12:48:10 2024 +0200

    Add ability to export patch packs

    Co-authored-by: Poq Xert <[email protected]>

commit 0fdbd22f560973cb16f6e198978bc83a596295e9
Author: A Thousand Ships <[email protected]>
Date:   Thu Mar 14 16:55:01 2024 +0100

    Update CODEOWNERS

    * Added shared responsibilities for documentation and tests
    * Made buildsystem manage all build scripts (uniquely)
    * Cleaned up unused cases
    * Added unmanaged cases

commit 32c83a228dff7a1f485ab208dff773c3fa74b133
Author: Thaddeus Crews <[email protected]>
Date:   Thu Sep 12 12:03:59 2024 -0500

    Style: Add `WARNING:` as new comment admonition

commit 9f9ee0c813443333a49c797083ff456629c009fb
Author: Thaddeus Crews <[email protected]>
Date:   Tue Jun 11 15:19:07 2024 -0500

    SCons: Add unobtrusive type hints in SCons files

commit 36293a2dbfd8fb6019d77b63e841b8c5f781e43b
Author: David Snopek <[email protected]>
Date:   Wed Sep 25 08:52:27 2024 -0500

    Fix renaming nodes on X11

commit 415607784f348c7e67e7bdd72aea3ace04e4dac0
Author: Yevhen Babiichuk (DustDFG) <[email protected]>
Date:   Wed Sep 25 13:13:35 2024 +0300

    Add missing `#ifndef _3D_DISABLED` to main file

    XR is disabled when 3D is disbled so there is no sense in
    setting xr specific settings and adding `--xr-mode` option

    Signed-off-by: Yevhen Babiichuk (DustDFG) <[email protected]>

commit 0a9d8f04c10870c0f9f7bbd2e0505edc8494e299
Merge: ca1a390050 7aef30c2a8
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:32 2024 +0200

    Merge pull request #97410 from KoBeWi/it's_redover

    Discard additional redo on commiting actions

commit ca1a390050e79374ab40965bc6e0fa4ba3f93f53
Merge: 5d5cdc02c5 2e57089135
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:29 2024 +0200

    Merge pull request #97398 from timothyqiu/color-picker-etr

    Add missing `ETR` macros in `ColorPicker`

commit 5d5cdc02c591cd0006ae407ef62587a0cf60fe66
Merge: 4c5e879cc5 660ba0578d
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:25 2024 +0200

    Merge pull request #97392 from BastiaanOlij/xr_cleanup_action_map_dialogs

    Cleanup of action map dialogs

commit 4c5e879cc57c47f6225a22a56a1acdc016c95470
Merge: 65c94ec873 633df0b29c
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:22 2024 +0200

    Merge pull request #97380 from TheSofox/handle_modes_default_fix

    Ensure `handle_modes` is given default values rather than flagging error if undefined

commit 65c94ec8731914fbadafc9ba2535dd83a00cca14
Merge: 95e7e653f2 dd9525be04
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:18 2024 +0200

    Merge pull request #97290 from fire/fix-animation-compression

    Fix animation compression going the wrong way

commit 95e7e653f2ff31245b6c1e52416579a5f9afc4b9
Merge: 73bf121ceb 7d7e0344ee
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:14 2024 +0200

    Merge pull request #97101 from aryan-11825114/fix-network-profiler-not-disabling-buttons

    Fix Network Profiler not disabling buttons

commit 73bf121ceb8637c88d5ed4bb8721a1feda80dc42
Merge: 70fede82c5 3f9bb59606
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:10 2024 +0200

    Merge pull request #93786 from alvinhochun/viewport-pixel-snap-fix

    Apply "snap 2D transforms to pixel" to viewport

commit 70fede82c52998bc3fc7201d8406d21b4e8a6023
Merge: 26340e0b91 5efa6ba489
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:06 2024 +0200

    Merge pull request #93324 from tracefree/reinhard-fix

    Fix incorrect Reinhard tonemap operator

commit 26340e0b918eb6d3047b63227320034b0eb506af
Merge: c3e16cda00 b88585abfc
Author: Rémi Verschelde <[email protected]>
Date:   Wed Sep 25 12:39:03 2024 +0200

    Merge pull request #53666 from pkowal1982/camera

    Add Linux camera support

commit 5efa6ba4892aa03f56215719a347be2f1629e206
Author: Rie <[email protected]>
Date:   Sat Jun 15 23:27:00 2024 +0200

    Fix incorrect Reinhard tonemap operator

commit b88585abfc794281a6dd8a77d53272676f23c212
Author: Paweł <[email protected]>
Date:   Mon Jun 5 18:56:34 2023 +0200

    Add linux camera support

commit 2e57089135b4fc56760abe1d3b4ab06efea3f4b3
Author: Haoyu Qiu <[email protected]>
Date:   Tue Sep 24 15:49:30 2024 +0800

    Add missing ETR macros in ColorPicker

commit 0eb06da057e8e912d6f9b3de4b3efbd3dc46624c
Author: Hugo Locurcio <[email protected]>
Date:   Fri May 26 18:32:01 2023 +0200

    Jitter shadow map dithering pattern across frames when TAA is enabled

    This improves shadow quality by reducing the visibility of the noisy
    pattern caused by dithering.

    This jittering also applies when FSR2 is enabled, as it provides its own
    form of temporal antialiasing.

    Co-authored-by: Clay John <[email protected]>

commit 2cfe6d9f640a92bfc43abf61e5f5067c82e9eeb1
Author: Bogdan Inculet <[email protected]>
Date:   Tue Sep 24 23:15:51 2024 +0300

    Better description for multiplayer spawner signals

commit e4cf4fcb2f272f27742ea47c758feb60591a55a0
Author: SaNeOr <[email protected]>
Date:   Wed Sep 25 02:33:41 2024 +0800

    fix GDExtension classes inheriting from Resource are not using icons in FileSystem

commit 56f095296c23cb66b3aa7077ccf0f7801d6875b3
Author: A Thousand Ships <[email protected]>
Date:   Tue Sep 24 16:48:11 2024 +0200

    Fix editing of some properties in `CodeHighlighter`

commit 7aef30c2a80f8fac30487f180f89743a3f41bcc0
Author: kobewi <[email protected]>
Date:   Tue Sep 24 15:47:55 2024 +0200

    Discard additional redo on commiting actions

commit c3e16cda00a9fbec4515142f4c59bc5134f1bfb0
Merge: 9355845d29 0305e437ff
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:21 2024 +0200

    Merge pull request #97379 from clayjohn/webgl-errors

    Clean up two recently introduced WebGL errors

commit 9355845d29bac0c92235aee78f0747cbfe830f5d
Merge: 63d16a9bc3 9b474e3a8e
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:16 2024 +0200

    Merge pull request #97367 from AdriaandeJongh/clarify-canvasitem-visibility-followup

    Clarify CanvasItem's visibility signal descriptions (followup)

commit 63d16a9bc3d86cd92a819b4f9979783b29796497
Merge: 6c1bbb3143 011954fea3
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:12 2024 +0200

    Merge pull request #97357 from Manik2607/master

    Refactor signal documentation to improve clarity.

commit 6c1bbb314361fd95efe86d8e34c73277d852650f
Merge: fc960cdf80 246150453b
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:08 2024 +0200

    Merge pull request #97275 from timothyqiu/how-many

    Better undo action names for localization editor

commit fc960cdf800dceedd16e4e944f81d49028b618d4
Merge: 39115be8eb 430e5658f1
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:57:04 2024 +0200

    Merge pull request #97013 from Hilderin/fix-load-errors-popup-empty

    Fix empty load errors popup

commit 39115be8eb9be8da7fdb1478eb6a017b53294f1e
Merge: 6bea41d68f 7c4c4b9987
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:56:59 2024 +0200

    Merge pull request #95261 from rburing/2d_physics_module

    Move Godot Physics 2D into a module; add dummy 2D physics server

commit 6bea41d68f0511f7854880854d052eafb5382224
Merge: 4254946de9 b5cd06b9ae
Author: Rémi Verschelde <[email protected]>
Date:   Tue Sep 24 12:56:52 2024 +0200

    Merge pull request #88363 from Delsin-Yu/master

    C#: Implement proper generic type name printing for Godot Editor

commit 9b474e3a8e16d4e1128475cbab3abba27abef41d
Author: Adriaan de Jongh <[email protected]>
Date:   Mon Sep 23 17:06:55 2024 +0200

    doc: clarify CanvasItem's visibility signal descriptions

commit 0f98b3244805d61ef9edcfa4671ab77c1c5167a7
Author: Haoyu Qiu <[email protected]>
Date:   Tue Sep 24 09:55:48 2024 +0800

    Fix button text autowrap overflow when inside a container

commit 633df0b29c7ec602377ea7367f7ad047f90b90f1
Author: Sofox <[email protected]>
Date:   Mon Sep 23 19:59:44 2024 +0100

    Handle handle_modes being undefined by giving default values rather than flagging error

commit 0305e437ffec0315c369723952a9a667a99a4fb9
Author: clayjohn <[email protected]>
Date:   Mon Sep 23 10:50:36 2024 -0700

    Clean up two recently introduced WebGL errors

commit a84c480049420796184804230e40f2c6ea00b19a
Author: rune-scape <[email protected]>
Date:   Sun Jul 28 01:14:56 2024 -0700

    Add missing CallableCustomMethodPointer for const methods

commit 011954fea35e1761033f99b71b98e00690c04237
Author: manik2607 <[email protected]>
Date:   Mon Sep 23 22:58:06 2024 +0530

    Refactor signal documentation to improve clarity

commit 7c4c4b998716922fcf62f1fe50473bf2f59087c8
Author: Ricardo Buring <[email protected]>
Date:   Wed Aug 7 21:15:17 2024 +0200

    Move Godot Physics 2D into a module; add dummy 2D physics server

    If the module is enabled (default), 2D physics works as it did before.

    If the module is disabled and no other 2D physics server is registered
    (via a module or GDExtension), then we fall back to a dummy
    implementation which effectively disables 2D physics functionality (and
    a warning is printed).

    The dummy 2D physics server can also be selected explicitly, in which
    case no warning is printed.

commit 4254946de93bab0cc1fb36a7b9039c9ec43be924
Merge: 2017006879 a751c05b15
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:14:08 2024 +0200

    Merge pull request #97323 from timothyqiu/drop-unicode-identifier

    Fix script editor wrongly replaces and quotes non-ASCII letters

commit 2017006879833d346a967dc8fcce4b846a8ed1c6
Merge: 2c1b8dda74 eb5a9c3b33
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:14:04 2024 +0200

    Merge pull request #97314 from tetrapod00/visual-shader-remap

    Visual Shader: Add vector operations to Remap node

commit 2c1b8dda748a27ef6cf9498ef3cc2786a4fc413a
Merge: c47eb5c301 b7416bf693
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:14:00 2024 +0200

    Merge pull request #97284 from timothyqiu/optimized-translation-gen

    Document that `OptimizedTranslation.generate()` only works in editor

commit c47eb5c3015795fd9ac0db17f5de3b57746c3bf8
Merge: f97defb375 267bb98231
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:13:56 2024 +0200

    Merge pull request #97282 from timothyqiu/force-advanced-settings-when-searching

    Keep advanced toggle on when searching for settings

commit f97defb375d524540cb7e7772adce8279d38e5ba
Merge: ea8d20d35b 330f91d32b
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:13:53 2024 +0200

    Merge pull request #97223 from AdriaandeJongh/clarify-canvasitem-visility-changed

    Docs: Clarify `CanvasItem` visibility properties and signals

commit ea8d20d35b5171a3ddaebad4b5649ba8f67b51c9
Merge: 8c273eb14c 307224927c
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:13:49 2024 +0200

    Merge pull request #96955 from Delsin-Yu/generator-based-CreateManagedForGodotObjectBinding

    [.NET] Replace Reflection-Based implementation with Generated one in `CreateManagedForGodotObjectBinding`

commit 8c273eb14ceeecc08f1262e7fccc8cdf260958ae
Merge: d5aadc38b4 d49ec39d63
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 16:13:41 2024 +0200

    Merge pull request #90955 from AThousandShips/print_to_stdout

    [Core] Add `Engine.print_to_stdout` setting to control printing

commit 3f9bb596064b0fb15ad2e5a6a59a9efd339a1974
Author: Mark DiBarry <[email protected]>
Date:   Mon Sep 23 20:34:46 2024 +0800

    Prevent jitter in Parallax2D

commit 1bd66af54ce86d5882830ce5170cdfeb914bb873
Author: Alvin Wong <[email protected]>
Date:   Sun Jun 30 23:51:13 2024 +0800

    Apply snap 2D transforms to pixel to viewport

    We shall not leave the viewport transform to be rounded by the code for
    rounding canvas items. Since the viewport transform is inverse to the
    camera transform, we get incorrect rounding at the halfway point that
    misaligns the viewport and the canvas item which the camera is
    following.

    Instead, reintroduce viewport rounding, but do it in a way that matches
    the rounding of canvas items. Also take into account the half-pixel
    offset of the centre point when viewport dimension is not divisible by
    two.  For `CanvasLayer`s that follows viewport, take into account the
    scale when rounding. Overall this should work better compared to the
    rounding in Godot 4.2 (and earlier).

commit d5aadc38b459762fa74850777edb2ec8f6a02c16
Merge: e3aa152509 50ad99bdc0
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:34:19 2024 +0200

    Merge pull request #97337 from Ivorforce/patch-1

    In make_rst.py, include the parent class in 'Inherits:' even if it is not known.

commit e3aa15250923b266ad8c49ae0ec8ff9cc8bbf0ce
Merge: b9b793237c 15f344173e
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:21 2024 +0200

    Merge pull request #97319 from Giganzo/groups-add-button-style

    Fix Add button style in GroupsEditor

commit b9b793237c0b45132c26a8c4bdf6ff1f1266b88c
Merge: 9c9e704a2b 6764338e09
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:17 2024 +0200

    Merge pull request #97315 from lawnjelly/fix_character_platform

    Fix physics platform behaviour regression

commit 9c9e704a2b6d932734f942fbbfd23138adb2de50
Merge: ec4bd1e062 7b7164c80c
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:14 2024 +0200

    Merge pull request #97286 from Rynzier/master

    Clarify PCK path argument in `PCKPacker.pck_start`

commit ec4bd1e062e5c4770d16fa63d32512f39f6c5cb9
Merge: b030638863 388869574c
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:10 2024 +0200

    Merge pull request #97274 from Giganzo/button-pressed-doc

    Clarify docs for when toggling `button_pressed` emits `toggled`

commit b030638863303853c3f57406702da7a6a76a40c9
Merge: 833be1f00d f7e5e7a400
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:07 2024 +0200

    Merge pull request #97252 from dsnopek/gdext-android-surface-swapchain

    OpenXR: Allow extending Android surface swapchain creation from GDExtension

commit 833be1f00d6ba1ef714b545d9c0f173d931d5210
Merge: 648b21b9ba 4c72d599f0
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:28:03 2024 +0200

    Merge pull request #97139 from akien-mga/miniupnpc-2.2.8

    miniupnpc: Update to 2.2.8 (new major 18)

commit 648b21b9ba3f174291813ca710206522b515140c
Merge: dd71bc2d3b df0a88b128
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:59 2024 +0200

    Merge pull request #96813 from Repiteo/scons/fix-clang-cl-flags

    SCons: Fix `clang-cl` link/ar flags

commit dd71bc2d3b613d3c63f75e671f36427f838f7396
Merge: 1b19ecb360 0333648cea
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:55 2024 +0200

    Merge pull request #95252 from rburing/3d_physics_module

    Move Godot Physics 3D into a module; add dummy 3D physics server

commit 1b19ecb360124b4f46d767e56b8f8d9a1f1ed20e
Merge: c65ab71230 714357e55c
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:51 2024 +0200

    Merge pull request #95166 from aaronp64/variant_op_err_return

    Assign return value on `Variant` operator failure

commit c65ab71230c6dd6d60dd87423950d5599269cce7
Merge: 510bc3dc6a f3841d644e
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:45 2024 +0200

    Merge pull request #94953 from raulsntos/dotnet/signals-with-typed-arrays

    C#: Generate signal delegates with typed arrays

commit 510bc3dc6a91978aa70b2586b0e4efa03ba2b02f
Merge: 720c236fc0 bc3dcf3d40
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:40 2024 +0200

    Merge pull request #90969 from Naros/expose-resource-and-saver-methods

    Expose several resource/resource-saver functions

commit 720c236fc09e5453612a1ce71f3e7cc9e75d34c9
Merge: 155fcd00b0 504e0656bb
Author: Rémi Verschelde <[email protected]>
Date:   Mon Sep 23 12:27:35 2024 +0200

    Merge pull request #90743 from timothyqiu/empty-selection-clipboard

    Add TextEdit option to prevent copying without a selection

commit 330f91d32b807adb6049db350cc532789c9ca49e
Author: Adriaan de Jongh <[email protected]>
Date:   Fri Sep 20 10:12:44 2024 +0200

    clarify CanvasItem's visible property, and its visibility_changed and hidden signals

commit 6764338e096f5ca72fa4f7750f85d8ed5d9d5a65
Author: lawnjelly <[email protected]>
Date:   Sun Sep 22 08:29:30 2024 +0100

    Fix physics platform behaviour regression

    Lifetime checks for stored `RIDs` for collision objects assumed they had valid `object_ids`.
    It turns out that some are not derived from `Object` and thus checking `ObjectDB` returns false for some valid `RIDs`.
    To account for this we only perform lifetime checks on valid `object_ids`.

commit 7b7164c80c9827c686d3a81af954ef65e95443eb
Author: Rynzier <[email protected]>
Date:   Sat Sep 21 11:56:40 2024 -0400

    Clarify PCK path argument in `PCKPacker.pck_start`

    Co-authored-by: Rémi Verschelde <[email protected]>

commit b5cd06b9ae2c25f8965eded3c19a7c238d2eeaed
Author: DE-YU_H14 <[email protected]>
Date:   Thu Feb 15 22:34:02 2024 +0800

    C#: Implement proper generic type name printing for Godot Editor

    Co-authored-by: Raul Santos <[email protected]>

commit 388869574c841729cf586ce1cacadb4e37f474b3
Author: Giganzo <[email protected]>
Date:   Sat Sep 21 11:42:06 2024 +0200

    Clarify docs for when toggling `button_pressed` emits `toggled`

commit 1536f5ec7929d46b04bee5030bc7be2b8b42a36f
Author: biswas08433 <[email protected]>
Date:   Wed Aug 28 01:30:25 2024 +0530

    Clarify transform data ordering in RenderingServer.multimesh_set_buffer

commit 155fcd00b0ce722d06a8cd2a165ab29bb1c0d4b1
Merge: 2d6af000e7 ccca41a086
Author: Clay John <[email protected]>
Date:   Sun Sep 22 19:58:51 2024 -0700

    Merge pull request #97279 from AThousandShips/fix_gles3_include

    Remove direct render include in `ExternalTexture`

commit 445e822bcf2dc2cbc4391ce3df18803bd26c0f79
Author: Raul Santos <[email protected]>
Date:   Thu Nov 3 20:10:11 2022 +0100

    C#: Generate signal event with the same accessibility as the delegate

commit 2d6af000e763b64967672bb8603c699eaef40949
Merge: d3e3b7379a 864d4fb32a
Author: Clay John <[email protected]>
Date:   Sun Sep 22 13:33:35 2024 -0700

    Merge pull request #97326 from jj11hh/master

    Fix hash calculation for NTSliceKey

commit d3e3b7379ad1e0ad001c957e5a18b27a6fb1c32e
Merge: e4e024ab88 21fb753bbd
Author: Clay John <[email protected]>
Date:   Sun Sep 22 13:26:23 2024 -0700

    Merge pull request #97338 from Ivorforce/patch-2

    Fix a typo in make_rst.py (Packedfloat64Array -> PackedFloat64Array)

commit bc3dcf3d404046a9ae8ac5a1aeab4853cb7c082b
Author: Chris Cranford <[email protected]>
Date:   Fri Apr 19 13:26:21 2024 -0400

    Expose several resource/resource-saver functions

commit 21fb753bbd4b149295618d5fa38eac32135ecc0e
Author: Lukas Tenbrink <[email protected]>
Date:   Sun Sep 22 21:09:08 2024 +0200

    Fix a typo in make_rst.py (Packedfloat64Array -> PackedFloat64Array)

commit 50ad99bdc0338e3257e0e131ed09f12e1642714f
Author: Lukas Tenbrink <[email protected]>
Date:   Sun Sep 22 20:56:20 2024 +0200

    In make_rst.py, include the parent class in 'Inherits:' even if it is not known.

commit eb5a9c3b332e1709286068df0c888b5836c2cec5
Author: tetrapod00 <[email protected]>
Date:   Sat Sep 21 17:22:51 2024 -0700

    Visual Shader: Add vector operations to Remap node

commit a751c05b15e75904cc949934f95061f1c0ee40e4
Author: Haoyu Qiu <[email protected]>
Date:   Sun Sep 22 19:31:58 2024 +0800

    Fix script editor wrongly replaces and quotes non-ASCII letters

commit 864d4fb32a8b2ad51ad2611e45e9a9f33efff5f6
Author: Jiang Yiheng <[email protected]>
Date:   Sun Sep 22 21:08:18 2024 +0800

    Fix hash calculation for NTSliceKey

    A bug was introduced from 057367bf by adding FSR 2.2.1 support.
    Which increases hash collision and hurts performance.

commit d49ec39d630d63d54301389e15c9510a83766756
Author: A Thousand Ships <[email protected]>
Date:   Sat Apr 20 20:19:48 2024 +0200

    [Core] Add `Engine.print_to_stout` setting to control printing

    Also added notes to the related project settings pointing to the
    `Engine` properties.

commit 307224927ced54943e1ce3da393c63b35160bd2e
Author: DE YU <[email protected]>
Date:   Thu Sep 12 20:24:06 2024 +0800

    Replace Reflection-Based implementation with Generated one

    Co-authored-by: Raul Santos <[email protected]>
    Co-authored-by: A Thousand Ships <[email protected]>

commit 15f344173e9ee00b6083dd1f6e6bc9897b310f90
Author: Giganzo <[email protected]>
Date:   Sun Sep 22 11:17:06 2024 +0200

    Fix Add button style in GroupsEditor

commit dd9525be040518bfbc401f5cb9c3a9fd2f34c442
Author: K. S. Ernest (iFire) Lee <[email protected]>
Date:   Sat Sep 21 06:28:11 2024 -0700

    Fix animation compression going the wrong way

    When compressing animation key frame indices the truncation breaks the animation near the border of pages.

    We use banker's rounding (FE_TONEAREST) as implemented by fast_ftoi to get the nearest integer frame.

commit 0333648cea0483edce0131722789b54d4daa7d5a
Author: Ricardo Buring <[email protected]>
Date:   Wed Aug 7 16:20:21 2024 +0200

    Move Godot Physics 3D into a module; add dummy 3D physics server

    If the module is enabled (default), 3D physics works as it did before.

    If the module is disabled and no other 3D physics server is registered
    (via a module or GDExtension), then we fall back to a dummy
    implementation which effectively disables 3D physics functionality (and
    a warning is printed).

    The dummy 3D physics server can also be selected explicitly, in which
    case no warning is printed.

commit ccca41a0862c341d70c200556f6b6f350560a734
Author: A Thousand Ships <[email protected]>
Date:   Sat Sep 21 15:00:02 2024 +0200

    Remove direct render include in `ExternalTexture`

    This include introduces `windows/platform_gl.h` into the include
    hierarchy which adds defines which break building on MSVC

commit b7416bf6933af73c7d9dc947f9aa834db82e488c
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 23:17:38 2024 +0800

    Document `OptimizedTranslation.generate()` only works in editor

commit ef840f935f18a5bf1c34203cb56c6f26cb8ecb60
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 22:02:56 2024 +0800

    Make FileSystem dock buttons consistent

commit 267bb982319c5dbd0c5341bd85f6319b873db6d2
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 21:11:58 2024 +0800

    Keep advanced toggle on when searching for settings

commit 246150453b7ef0dd37a2af15478ec44e6385628d
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 19:58:17 2024 +0800

    Better undo action names for localization editor

commit e4e024ab88efe74677769395886bc1b09eccbac7
Merge: 2daea4bb0b e8462bf3ac
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:51:06 2024 +0200

    Merge pull request #97273 from timothyqiu/unicode-autoload

    Allow using Unicode identifier for Autoload name

commit 2daea4bb0b23199b1163822c3dc2476620ca8222
Merge: 0df4a85129 208797d54e
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:51:02 2024 +0200

    Merge pull request #97269 from timothyqiu/underline-unicode-identifier

    Fix script editor not underlining Unicode identifiers when Ctrl-hovered

commit 0df4a851292c2a5f455cc87e0ab8c59ab215f13e
Merge: 1ef1c4ee0f c4e4810e93
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:59 2024 +0200

    Merge pull request #97268 from MonterraByte/wayland-opengl3-fallback

    Fallback to OpenGL 3 if Vulkan isn't available on Wayland

commit 1ef1c4ee0f9918479005e2eab7a399cae00c3806
Merge: 5f5c690481 07546006e8
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:55 2024 +0200

    Merge pull request #97264 from clayjohn/obj-no-uv-crash

    Fix crash when importing a surface with no UVs after another surface in the same OBJ file that had UVs

commit 5f5c6904815a5a0ae8690fff1409303a60f02680
Merge: f246419c58 e75900e1ad
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:52 2024 +0200

    Merge pull request #97260 from clayjohn/pixel_snap

    Calculate pixel snap in canvas space instead of world space

commit f246419c58f4331082be6cb7e63960f51a7a079c
Merge: cc26cacc08 daa4704c44
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:49 2024 +0200

    Merge pull request #97259 from alesliehughes/openxr_copy_paste

    OpenXR: Correctly set the Depth swapchain name

commit cc26cacc080d936056dcf73906f06df20e414396
Merge: aa5c69bfd5 aa4f7bc2e3
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:45 2024 +0200

    Merge pull request #97242 from timothyqiu/meta-text

    Fix wrong displayed category name in `EditorHelpSearch`

commit aa5c69bfd5b785ccae1cb35f0c0f7998f42c3e9f
Merge: afb1d82bb8 107675f785
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:42 2024 +0200

    Merge pull request #97239 from Calinou/editor-system-info-add-display-driver-window-mode

    Mention display driver and window mode in Copy System Info text

commit afb1d82bb8330fa4a6ed003da23889cacc214b5b
Merge: d39f53439f fdc6ffd264
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:38 2024 +0200

    Merge pull request #97237 from Repiteo/style/update-mypy-ruff

    Style: Update `ruff` & `mypy` to latest versions

commit d39f53439f603f8ecd3290807210baf741fc3542
Merge: b271a88a9e 1a6f8512bc
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:35 2024 +0200

    Merge pull request #96982 from dsnopek/external-texture

    Add external texture support (GLES3)

commit b271a88a9e5bf90858629ab3b50c133f32a8837a
Merge: dd7cb059f5 b36bebc6da
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:31 2024 +0200

    Merge pull request #96871 from KoBeWi/borrow_container

    Add `SCROLL_MODE_RESERVE` to ScrollContainer

commit dd7cb059f588e120122341cd26fbd300d2eda898
Merge: 621cadcf65 203d3be200
Author: Rémi Verschelde <[email protected]>
Date:   Sat Sep 21 11:50:24 2024 +0200

    Merge pull request #87344 from AThousandShips/signal_connected

    [Core] Add way to check if a signal has any connections

commit e8462bf3acd0747489c3ed1e87d6f3cbc203016a
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 16:47:19 2024 +0800

    Allow using Unicode identifier for Autoload name

commit 208797d54ee64a93d41d88b1b4af3d62e3e2116b
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 14:10:05 2024 +0800

    Fix script editor not underlining Unicode identifiers when Ctrl-hovered

commit c4e4810e93b29068a90486f14fbb215f4a9eacc0
Author: Joaquim Monteiro <[email protected]>
Date:   Sat Sep 21 06:35:35 2024 +0100

    Fallback to OpenGL 3 if Vulkan isn't available on Wayland

commit 07546006e86732d2be1355a1ecf5f73c87ad6482
Author: clayjohn <[email protected]>
Date:   Fri Sep 20 19:22:37 2024 -0700

    Fix crash when importing a surface with no UVs after another surface in the same OBJ file that had UVs

commit e75900e1ad1a2c699829335ad3be27b4e01afec1
Author: clayjohn <[email protected]>
Date:   Fri Sep 20 17:43:33 2024 -0700

    Calculate pixel snap in canvas space instead of world space

    This ensures that you are actually snapping to pixels in the viewport and not an arbitrary amount

commit daa4704c44e40fa942b32f32e3f664e98857acc1
Author: Alistair Leslie-Hughes <[email protected]>
Date:   Sat Sep 21 09:56:19 2024 +1000

    openxr: Correct set the Depth swapchain name

    Introduced in 08ffa5d89e4bbd427eb3d5ce0c0de1382d21f18a.

commit f7e5e7a40053648584e1d69f25fc398a8142da8d
Author: David Snopek <[email protected]>
Date:   Thu Sep 19 16:54:05 2024 -0500

    OpenXR: Allow extending Android surface swapchain creation from GDExtension

commit 621cadcf651b93757d5dbf8969023ae62a16f1a4
Merge: 2be730a05b 9638220473
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 21:35:08 2024 +0200

    Merge pull request #97168 from Hilderin/fix-reloading-scripts-already-in-use

    Fix reloading scripts already in use

commit 107675f785912a17474ffcc8fa8bd762f2a73233
Author: Hugo Locurcio <[email protected]>
Date:   Fri Sep 20 17:07:11 2024 +0200

    Mention display driver and window mode in Copy System Info text

    This is useful information to know, as the X11 display driver can be
    used both on X11 natively and on Wayland through XWayland.

    Certain editor issues only occur in multi-window mode
    (or only in single-window mode). Some issues also only occur
    on multi-monitor setups, so the monitor count is now listed.

commit 96382204736cbc131fbc2640ba6ba238c53017c0
Author: Hilderin <[email protected]>
Date:   Wed Sep 18 19:37:12 2024 -0400

    Fix reloading scripts already in use

commit aa4f7bc2e37cf713aba8db757ad8274daaf980cb
Author: Haoyu Qiu <[email protected]>
Date:   Sat Sep 21 00:07:11 2024 +0800

    Fix wrong displayed category name in EditorHelpSearch

commit 1a6f8512bc5fd2b226a9db5e622b1a85350625c4
Author: David Snopek <[email protected]>
Date:   Sat Oct 14 03:58:59 2023 -0700

    Add external texture support (GLES3)

    Co-authored-by: Fredia Huya-Kouadio <[email protected]>
    Co-authored-by: Mauricio Narvaez <[email protected]>

commit 203d3be200c9b607e5eaba82d9a267813a6700cd
Author: A Thousand Ships <[email protected]>
Date:   Thu Jan 18 17:20:56 2024 +0100

    [Core] Add way to check if a signal has any connections

    Added to `Object` and `Signal`

commit fdc6ffd264d015d4f6ba22488a4e7ab78d365b24
Author: Thaddeus Crews <[email protected]>
Date:   Fri Sep 20 09:34:11 2024 -0500

    Style: Update `ruff` & `mypy` to latest versions

commit 2be730a05b7ff221b89c967981f7caee6e164ef0
Merge: 77f779d326 9e1121a18c
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:26:35 2024 +0200

    Merge pull request #97231 from timothyqiu/missing-period

    Add missing period for sentences in classref

commit 77f779d326e56bde89f11aa12be692ff4c4fb489
Merge: 8738aae9fc f7a7ecc10a
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:26:32 2024 +0200

    Merge pull request #97167 from MewPurPur/reveal-undoredo

    Expose `has_undo()` and `has_redo()` of LineEdit

commit 8738aae9fc5e5f8193ec980e329486bfb2d26355
Merge: efc7c628b0 84e278cbfd
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:26:23 2024 +0200

    Merge pull request #94569 from Calinou/script-editor-tweak-zoom-presets

    Tweak script editor zoom presets to be more useful

commit efc7c628b06771773f89eb0030666fab6fa62e19
Merge: 8ea7f5eac2 f169616cc6
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:07:09 2024 +0200

    Merge pull request #97224 from timothyqiu/transition-names

    Update `AnimationTree` parameter list when updating `AnimationNodeTransition` input names

commit 8ea7f5eac26121733fe0f6ee25406fd68608c01f
Merge: 34dd5e0c37 b1000d1830
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:07:06 2024 +0200

    Merge pull request #97222 from timothyqiu/csv-not-translation

    Don't list CSV as a valid extension for `Translation` resource

commit 34dd5e0c37c9a6efc0ef045fb43c5e0dfb081a58
Merge: 25c4caa5d7 e826ab9ba9
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:07:03 2024 +0200

    Merge pull request #97217 from stuartcarnie/97185_subpixel_rendering

    Metal: Fix subpixel blending; fix inconsistent blend state

commit 25c4caa5d7cdd3aa00fc3d0c89bb3f920a2e6633
Merge: 5070db2575 3d6814e5d2
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:59 2024 +0200

    Merge pull request #97209 from kitbdev/fix-tab-container-ensure-visible-offset

    Fix TabContainer tab offset moving when not needed

commit 5070db2575ed7c77e8fcd5acd422fc7613300a61
Merge: 2834342a78 3bfadeff25
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:56 2024 +0200

    Merge pull request #97208 from kleonc/transform3d_aabb_multiplication_fix_csharp

    Fix C# `operator *(Transform3D, Aabb)`

commit 2834342a78bcdd5d0219839859b4a7baa513326c
Merge: 93150ffab8 e2b25cfc0d
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:52 2024 +0200

    Merge pull request #97203 from ev13bird/docs_inspector_plugin_typo

    Fix minor typo in EditorPlugin `remove_inspector_plugin`

commit 93150ffab8daca14a06162a41e50c36a01ce80ea
Merge: 2f078e501c c4bea28e17
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:49 2024 +0200

    Merge pull request #97202 from jirisvd/fix-typo

    Fix typo in CompositorEffect documentation

commit 2f078e501cbc92eb603713d8c592706b7687798a
Merge: 90a119225e ec189b1574
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:46 2024 +0200

    Merge pull request #97198 from raulsntos/dotnet/open-visual-studio-with-dotnet-cli

    C#: Use dotnet CLI to launch `OpenVisualStudio.dll`

commit 90a119225e5984250740efe7ffbf3c2eabb612bb
Merge: 7ce8e4fd6b d6c0a53ecf
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:42 2024 +0200

    Merge pull request #97194 from RobProductions/godot-sharp-error-improvement

    Add error messages to `BindingsGenerator`

commit 7ce8e4fd6b9791285fcb62d100a0096a19216959
Merge: c2564f42aa bdcee836ad
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:39 2024 +0200

    Merge pull request #97159 from noidexe/Expose-viewport-get-audio-listener

    Expose Viewport methods to get current 2D/3D audio listener

commit c2564f42aac63f7045572cfbaf0fefe6792788f3
Merge: 330cb45c5a 3b839347df
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:35 2024 +0200

    Merge pull request #97142 from SheepYhangCN/master

    Fallback to OpenGL 3 if other rendering drivers are not supported

commit 330cb45c5a9846a2a4ae1affaf7a5741dcb97a97
Merge: d2a5153c66 d33f4820cd
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:31 2024 +0200

    Merge pull request #96981 from ItzCog/patch-1

    Change "deconstructor" to "destructor"

commit d2a5153c6608d0172ebfed3c5984cc6c76ee9c6f
Merge: 7e62565f1e a3158d89bb
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:28 2024 +0200

    Merge pull request #96677 from Wierdox/fix_audio_stream_player_3d_still_processing_when_out_of_range

    Fix AudioStreamPlayer3D still processing when out of range

commit 7e62565f1e075cb5a2b090e320739daa4a8dce9a
Merge: 99a1eb7147 818acb4290
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:23 2024 +0200

    Merge pull request #95787 from timothyqiu/domestic

    Add translation domain

commit 99a1eb7147ad3e13a2302d172708db909195c89c
Merge: 6bf8a3e3f8 4f11a0a987
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:18 2024 +0200

    Merge pull request #95482 from kleonc/bmp_import_1_2_4_bpp_of_any_size

    Support importing 1/2/4-bpp BMP images of size non-divisible by 8/4/2

commit 6bf8a3e3f8dadf485f733b8fd5a502a7d21a2ff1
Merge: da9764ad43 89491f4403
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:13 2024 +0200

    Merge pull request #95449 from SlashScreen/array_functions

    Add callable support for `find` and `rfind` `Array` methods

commit da9764ad438a0dab31f74791d1cf84612ed52c69
Merge: 0a4aedb360 e90c5a4604
Author: Rémi Verschelde <[email protected]>
Date:   Fri Sep 20 16:06:08 2024 +0200

    Merge pull request #93313 from Repiteo/ci/clang-format

    CI: Update `clang-format` pre-commit hook to latest version

commit d33f4820cd14e38571f0998b59fc72c0d67dfb1e
Author: Dungeon Master <[email protected]>
Date:   Sat Sep 14 05:09:22 2024 +0800

    Change "deconstructor" to "destructor" in `NOTIFICATION_PREDELETE` docs

commit 84e278cbfd2b645a2b5acb0ec1ad869e6d50c971
Author: Hugo Locurcio <[email protected]>
Date:   Sun Jul 21 05:32:35 2024 +0200

    Tweak script editor zoom presets to be more useful

    The presets are now 50%, 75%, 90%, 100%, 110%, 125%, 150%.

    This also mentions Ctrl + mouse wheel in the tooltip.

commit e90c5a46042feb4b1781062dc4d4e8f075009638
Author: Thaddeus Crews <[email protected]>
Date:   Wed Jun 26 11:13:31 2024 -0500

    Ignore `clang-format` changes commit

commit b37fc1014abf7adda70dc30b0822d775b3a4433f
Author: Thaddeus Crews <[email protected]>
Date:   Wed Jun 26 11:13:05 2024 -0500

    Style: Apply new `clang-format` changes

commit 9e1121a18c4011d039037378bedf8138b2f79649
Author: Haoyu Qiu <[email protected]>
Date:   Fri Sep 20 19:33:32 2024 +0800

    Add missing period for sentences in classref

commit f169616cc6b394b5ba95e2d1d99f217552dab60f
Author: Haoyu Qiu <[email protected]>
Date:   Fri Sep 20 16:21:03 2024 +0800

    Update AnimationTree parameter list when updating AnimationNodeTransition input names

commit b1000d1830e2a0486a68e787d032ef5c2bc6a576
Author: Haoyu Qiu <[email protected]>
Date:   Fri Sep 20 15:21:50 2024 +0800

    Don't list CSV as a valid extension for Translation resource

commit a3158d89bb7cba513fc2aa47cdc23fe39d2a1ad3
Author: Wierdox <[email protected]>
Date:   Sat Sep 7 02:13:54 2024 -0700

    Fix AudioStreamPlayer3D still processing when out of range

commit e826ab9ba90595007b698df36622b725697ec26c
Author: Stuart Carnie <[email protected]>
Date:   Fri Sep 20 15:11:08 2024 +1000

    [2D,Metal]: Fix subpixel blending; fix inconsistent blend state in Metal

commit 3d6814e5d2c9e7dc88d7f2ff3611236a1298fd8f
Author: kit <[email protected]>
Date:   Thu Sep 19 19:19:34 2024 -0400

    Fix TabContainer tab offset moving when not needed

commit 3bfadeff25c5d86a65a17ee172465e626c9741ba
Author: kleonc <[email protected]>
Date:   Fri Sep 20 00:18:54 2024 +0200

    Fix C# operator *(Transform3D, AABB)

commit 3b839347df1714cab08d373a551da2602e1a7cdf
Author: SheepYhangCN <[email protected]>
Date:   Wed Sep 18 19:10:59 2024 +0800

    Added fallback_to_opengl3

commit bdcee836adf52f38d5d89f3304556bd707a79705
Author: Lisandro Lorea <[email protected]>
Date:   Wed Sep 18 16:07:47 2024 -0300

    Expose Viewport::get_audio_listener_2d and Viewport::get_audio_listener_3d to scripting

    Document exposed methods

    Apply suggestions from code review

    Co-authored-by: Micky <[email protected]>

    Document default behavior when no audio listeners are active

commit 72c183ce8ba6f5c78213d49dd3a135690ef0bfd3
Author: Thaddeus Crews <[email protected]>
Date:   Tue Jun 18 10:36:58 2024 -0500

    CI: Update pre-commit `clang-format` to 18.1.8

    • Modernized `.clang-format` file against latest LLVM config settings

commit c4bea28e1734e2d13fa9a7e01d48059c65e22113
Author: Jiří Švejda <[email protected]>
Date:   Thu Sep 19 22:26:23 2024 +0200

    Fix typo in CompositorEffect documentation

commit e2b25cfc0de38ac1a09de7f570cc67eced9ca887
Author: ev13bird <[email protected]>
Date:   Fri Sep 20 06:17:15 2024 +1000

    Fix minor typo in EditorPlugin remove_inspector_plugin

commit d6c0a53ecf3e02aba625b5a70de4454645216b2f
Author: Matt Enad <[email protected]>
Date:   Thu Sep 19 13:31:05 2024 -0400

    Add error messages to binding generator

commit ec189b1574d24fda24f13210be0fb79a309b22da
Author: Raul Santos <[email protected]>
Date:   Thu Sep 19 19:21:48 2024 +0200

    C#: Use dotnet CLI to launch OpenVisualStudio.dll

    Use the DLL instead of the…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants