summaryrefslogtreecommitdiffstats
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | | POT Generator: Add support for `TRANSLATORS:` and `NO_TRANSLATE` commentsDanil Alexeev2024-10-134-10/+105
| | |/ / / / / /
| * | | | | | | Merge pull request #99276 from kiroxas/fixBrokenNavigationObstacle2DThaddeus Crews2024-11-151-12/+32
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix broken Navigation Obstacle regression
| | * | | | | | | fixed navigation obstacle carving broken during 07b7f76Kiro2024-11-151-12/+32
| | | |_|_|/ / / | | |/| | | | |
| * / | | | | | Add back `AnimationPlayer.get_argument_options`HolonProduction2024-11-157-0/+46
| |/ / / / / /
| * | / / / / Fix incorrect order: `TTR(vformat` instead of `vformat(TTR`Chaosus2024-11-141-2/+2
| | |/ / / / | |/| | | |
| * | | | | Merge pull request #99170 from ↵Thaddeus Crews2024-11-131-5/+11
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Nodragem/fix-gridmap-action-shortcut-3deditor-conflict Fix Gridmap shortcut conflicts with 3d editor
| | * | | | | fix shortcut conflicts with 3d editorNodragem2024-11-131-5/+11
| | | |_|_|/ | | |/| | | | | | | | | | | | | | | Now the action shorcuts (A,S,D,Z,X,C) are going through the right processing and their events are captured so they are not passed to the 3D editor. This avoids conflicts/weird behaviours if the users has set up shortcuts on these keys.
| * / | | | OpenXR: Fix pose recenter signal to be omitted properlyBastiaan Olij2024-11-133-5/+13
| |/ / / /
* | | | | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-1239-438/+825
|\| | | |
| * | | | Merge pull request #97218 from wenqiangwang/local_debuggger_expr_evalulationThaddeus Crews2024-11-121-1/+25
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Add support for `print` command in local (command line `-d`) debugger
| | * | | | Added support for 'print' command in local (command line -d) debuggerWenqiang2024-09-281-1/+25
| | | | | |
| * | | | | Merge pull request #99002 from Mickeon/documentation-more-miscellaneous-odditiesThaddeus Crews2024-11-122-4/+4
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Fix more miscellaneous oddities around the class reference
| | * | | | | Fix more miscellaneous oddities around the class referenceMicky2024-11-122-4/+4
| | | | | | |
| * | | | | | Merge pull request #98995 from Faless/mbetls/insestent_ioThaddeus Crews2024-11-121-27/+35
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | [mbedTLS] Keep reading/writing partial until "would block"
| | * | | | | | [mbedTLS] Keep reading/writing partial until "would block"Fabio Alessandrelli2024-11-091-27/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Them mbedTLS read and write functions will never read or write more than the negotiated fragment length at every iteration (which usually depends on MBEDTLS_SSL_IN_CONTENT_LEN and MBEDTLS_SSL_OUT_CONTENT_LEN). For this reason, when reading or writing partial data, we must always keep retrying until we receive a "would block" (no bytes read or wrote), or we have fulfilled the read or write.
| * | | | | | | [WS] Implement wslay unbuffered message parsingFabio Alessandrelli2024-11-126-17/+72
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ensure we never read more than we can store during poll. Raise default max packets to 4096 to maintain the same performance for the first 2048 packets.
| * | | | | | Merge pull request #97913 from Faless/fix/websocket_closing_transitionThaddeus Crews2024-11-121-6/+31
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | [WS] Detect disconnection due to protocol errors
| | * | | | | | [WS] Detect disconnection due to protocol errorsFabio Alessandrelli2024-11-041-6/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When wslay receives a message that is too big or cause a protocol error, it automatically sends a close request to the remote peer but it also completely stop calling the receive callback resulting in the state being "stuck" as CONNECTED (even if both client and server have disconnected). We now check if we sent a close message and reading has been disabled to manually transition to the "closed" state with the proper reason.
| * | | | | | | Merge pull request #99030 from tracefree/obstacle_2d_transformThaddeus Crews2024-11-121-3/+10
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Make use of NavigationObstacle2D's transform
| | * | | | | | | Make use of NavigationObstacle2D's transformRie2024-11-111-3/+10
| | | |/ / / / / | | |/| | | | |
| * | | | | | | Merge pull request #99020 from Mickeon/documentation-example-pruning-2Thaddeus Crews2024-11-122-4/+3
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Clean up more `[b]Example:[/b]` lines from the class reference
| | * | | | | | | Clean up more `[b]Example:[/b]` lines from the class referenceMicky2024-11-112-4/+3
| | | | | | | | |
| * | | | | | | | Merge pull request #91707 from Faless/ws/heartbeatThaddeus Crews2024-11-125-1/+53
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [WebSocket] Add optional heartbeat via "ping" control frames.
| | * | | | | | | | [WebSocket] Add optional heartbeat via "ping" control frames.Fabio Alessandrelli2024-11-075-1/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Has no effect in Web exports since the browsers do not expose a way to send ping control frames.
| * | | | | | | | | Merge pull request #98616 from dalexeev/doc-nested-subgroupsThaddeus Crews2024-11-121-1/+13
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Document exporting nested subgroups
| | * | | | | | | | | Document exporting nested subgroupsDanil Alexeev2024-11-111-1/+13
| | | |_|_|_|_|_|/ / | | |/| | | | | | |
| * | | | | | | | | Merge pull request #98467 from zaevi/fix_csharp_stringname_leakThaddeus Crews2024-11-121-2/+8
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | C#: Fix StringName leak when converting `Variant` to `Signal` / `Callable`
| | * | | | | | | | | C#: Fix StringName leak when converting `Variant` to `Signal` / `Callable`Zae2024-10-241-2/+8
| | | | | | | | | | |
| * | | | | | | | | | Merge pull request #95774 from Mickeon/documentation-miscellaneous-odditiesThaddeus Crews2024-11-121-1/+1
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix miscellaneous oddities around the class reference
| | * | | | | | | | | | Fix miscellaneous oddities around the class referenceMicky2024-08-181-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Merge pull request #98459 from zaevi/fix_csharp_signal_parametersThaddeus Crews2024-11-122-5/+5
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | C#: Escape signal parameters
| | * | | | | | | | | | | C#: Escape signal parametersZae2024-10-232-5/+5
| | | |/ / / / / / / / / | | |/| | | | | | | | |
| * | | | | | | | | | | Merge pull request #99088 from Mickeon/documentation-truth-oopsie-last-oneThaddeus Crews2024-11-121-1/+1
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix untagged `true` in GLTFState's documentation
| | * | | | | | | | | | | Fix untagged `true` in GLTFState's documentationMicky2024-11-111-1/+1
| | | |_|/ / / / / / / / | | |/| | | | | | | | |
| * | | | | | | | | | | Merge pull request #89051 from Calinou/csharp-vscode-add-codium-supportThaddeus Crews2024-11-111-8/+30
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Codium support to C# external editors
| | * | | | | | | | | | | Add Codium support to C# external editorsHugo Locurcio2024-11-021-8/+30
| | | |_|_|_|_|_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Selecting the VS Code option will now work if Codium is installed, picking it as the last option after attempting to run VS Code.
| * | | | | | | | | | | Merge pull request #96730 from tracefree/properly_transforming_obstaclesThaddeus Crews2024-11-111-5/+14
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make use of NavigationObstacle3D's transform
| | * | | | | | | | | | | Make use of NavigationObstacle3D's transformRie2024-11-101-5/+14
| | | |_|_|_|_|_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: a0kami <dev.aokami@netc.fr>
| * | | | | | | | | | | Merge pull request #97363 from reduz/deterministic-gen-suberesources-idThaddeus Crews2024-11-115-5/+5
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow passing UID to importer
| | * | | | | | | | | | | Allow passing UID to importerJuan2024-11-115-5/+5
| | | |_|/ / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This helps, for importers spitting out new resources to the res:// filesystem to actually hash them to generate deterministic UIDs. This PR also fixes the determinism for translations.
| * | | | | | | | | | | Merge pull request #97471 from kevinkuo52/debug-raycast-heightmapThaddeus Crews2024-11-111-1/+5
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [GodotPhysics] Fix raycasts don't reliably collide with HeightMapShape3D
| | * | | | | | | | | | | Fix issue #68238 where raycasts don't reliably collide with ↵Kevin Kuo2024-09-251-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | HeightMapShape3D, by fixing the value bounds_grid_width and bounds_grid_depth passed
| * | | | | | | | | | | | Merge pull request #92986 from Repiteo/core/ref-instantiate-integrationThaddeus Crews2024-11-117-13/+13
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Core: Integrate Ref `instantiate` where possible
| | * | | | | | | | | | | | Core: Integrate `Ref::instantiate` where possibleThaddeus Crews2024-11-107-13/+13
| | | |/ / / / / / / / / / | | |/| | | | | | | | | |
| * | | | | | | | | | | | Merge pull request #98472 from rune-scape/sort-rpcThaddeus Crews2024-11-112-13/+1
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SceneRPCInterface: Sort rpc names using `StringLikeVariantOrder`
| | * | | | | | | | | | | | SceneRPCInterface: Sort rpc names using `StringLikeVariantOrder`rune-scape2024-10-242-13/+1
| | | |_|_|_|/ / / / / / / | | |/| | | | | | | | | |
| * | | | | | | | | | | | Merge pull request #94751 from RadiantUwU/patch-2Thaddeus Crews2024-11-111-1/+1
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GLTF: Return the error file path when an import fails.
| | * | | | | | | | | | | | Return the actual error when an import fails.Radiant2024-10-301-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge pull request #96922 from Nodragem/moving-gridmap-panel-one-commitThaddeus Crews2024-11-112-198/+427
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move GridMapEditor to bottom panel
| | * | | | | | | | | | | | | Move GridMapEditor to bottom panelNodragem2024-11-092-198/+427
| | | |_|_|_|_|_|_|/ / / / / | | |/| | | | | | | | | | |