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

[pull] master from godotengine:master #133

Merged
merged 91 commits into from
Jan 3, 2025
Merged

Conversation

pull[bot]
Copy link

@pull pull bot commented Jan 3, 2025

See Commits and Changes for more details.


Created by pull[bot] (v2.0.0-alpha.1)

Can you help keep this open source service alive? 💖 Please sponsor : )

Chaosus and others added 30 commits August 15, 2024 10:49
Signals with typed arrays were generating EmitSignal methods with untyped array parameters.
The wslay library, somehow unintuitively, will call the frame recv end
callback for control frames.

This has the side effect that while receiving a long message (i.e. a
multi-frame message), if a control frame (e.g. a ping or pong) is
received it may seem that a FIN frame has been received, resulting in
the current code truncating the message.

To avoid this, this commit now ignores the frame recv end callback, and
instead rely on the msg recv callback where we can check the opcode, and
is guaranteed to be called only when the FIN frame is received for text
and binary frames.
- Tweak property hint ranges for some networking settings to ensure
  the minimum values don't break the debugger entirely.
- Ensure shader time rollover is set to at least 1, as 0 causes a division by
  zero to occur.

All relevant project settings are now covered by a range hint.
When profiling Dome Keeper, I found that in physics_process a HashMap
gets cleared a lot, which ends up calling the Variant destructor.
Calling Variant::clear() dominates this operation.

By not uselessly setting the Type to NIL on destruction we save about
50% of time. This is likely because if there is a simple type in the
Variant that doesn't need destructing, but now we write when we should
just drop the Variant altogether.

Since the value of Variant::type should be unobservable after
destruction this doesn't change any outward behavior.
When using `queue_free()` on GraphNodes, `p_from` can become `nullprt`.
This PR adds a check to prevent crashes in these situations.
Don't set `Variant::Type` in destructor
Make transform elements BitField in RetargetModifier
Add `Color.from_rgba8` and deprecate Color8
astcenc: Misc improvements and optimizations
CI: Fix GHA bug by defining a single concurrency
Respect `PROPERTY_USAGE_NEVER_DUPLICATE` with Make Sub-Resources Unique
…tion-in-okhsl

ColorPicker: Fix cursor position in OKHSL wheel
…-focus-when-recreating-full-inspector-

Fix dictionary editor steals focus when reloading script.
Style: Enforce `AllowShortFunctionsOnASingleLine`
Respect system user setting for (un)installing APK
Improve performance with many static/sleeping bodies when using Jolt Physics
Windows: Implement native menu close callback
Fix looking at with 180 degree arc
Fix nullptr crash with freed `GraphNode` in GraphEditArranger
Add NavigationLink debug direction indicator
Make NavMeshQueries use NavRegionIteration polygons directly
Revert "Stop reporting contacts for sleeping bodies when using Jolt Physics"
SCons: Don't update node count when cleaning
Change `VisualShaderNodeVec4Constant` type to vec4
Remove unused OS `_display_driver_id` member
[Web] Fix `DirAccess::unlink()` not updating the IDBFS
[.NET] Fix EmitSignal with typed array parameters
Fix icon UIDs in Project Manager
ProjectManager: Update project list placeholder when project is created
…toff

GLTF: Always read `alphaCutoff` property
@pull pull bot added the ⤵️ pull label Jan 3, 2025
@pull pull bot merged commit bdf625b into kp-forks:master Jan 3, 2025
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.