demolke
076f30c19d
Thirdparty: Update re-spirv to 29a77fc
2026-05-25 18:39:34 +02:00
Thaddeus Crews
fa6cad230f
Merge pull request #119665 from clayjohn/blit-screen-texture
...
Forbid using hint_screen_texture in unsupported shader types
2026-05-22 19:24:23 -05:00
Thaddeus Crews
8a5af716e1
Merge pull request #119644 from Calinou/doc-object-get-thread-safe
...
Document `Object._get()` and `_get_property_list()` thread-safe requirement
2026-05-22 19:24:21 -05:00
Thaddeus Crews
44a215ec06
Merge pull request #117217 from uno1982/fix/viewport-texture-path-update-null-common-parent
...
Fix Viewport path update error when dock is reparented during tree
2026-05-22 19:24:21 -05:00
Thaddeus Crews
f756463116
Merge pull request #118613 from YeldhamDev/game_view_fixes
...
Fix a pair of regressions in the Game view node selection
2026-05-22 19:24:19 -05:00
Thaddeus Crews
f7d37c74c1
Merge pull request #118190 from Hrothdel/web-fix-poll-export
...
[Web] Fix `poll_export` changing current export_preset
2026-05-22 19:24:18 -05:00
Thaddeus Crews
330e012b53
Merge pull request #119634 from shiena/android-fix-proxy-equals-infinite-recursion
...
Android: Fix infinite recursion in proxy equals handler
2026-05-22 19:24:16 -05:00
Clay John
57ab62b421
Forbid using hint_screen_texture in unsupported shader types
2026-05-22 10:38:52 -07:00
Thaddeus Crews
f08e003ff2
Merge pull request #119620 from bruvzg/ios_godot_path_list
...
[iOS] Fix resource directory path when using `godot_path`.
2026-05-22 10:57:58 -05:00
Thaddeus Crews
4b72c6c1ab
Merge pull request #119450 from norepro/filesystem-split-styles
...
Fix FileSystem dock styles across split modes
2026-05-22 10:57:57 -05:00
Thaddeus Crews
6137953493
Merge pull request #119651 from Ivorforce/clarify-hash-compare
...
Clarify `hash_compare` semantics on `Variant`.
2026-05-22 10:57:56 -05:00
Thaddeus Crews
df3168ad6e
Merge pull request #119648 from bruvzg/hb_typo
...
[HarfBuzz] Fix typo in 13.0.0-14.1.0 branch.
2026-05-22 10:57:55 -05:00
Thaddeus Crews
a75108ba01
Merge pull request #104481 from kleonc/editor_resource_picker_set_create_options_docs
...
Improve docs for `EditorResourcePicker::_set_create_options`
2026-05-22 10:57:55 -05:00
Thaddeus Crews
cc6d153fb6
Merge pull request #115533 from YeldhamDev/this_time_it_will_work_surely
...
Fix buttons in `EditorProperty` overlapping with values
2026-05-22 10:57:54 -05:00
Thaddeus Crews
2d7b307004
Merge pull request #119625 from barthy-koeln/fix/text_server_fallback--zero_width_codes
...
TextServerFB: Fix zero-width space detection and rendering
2026-05-22 10:57:54 -05:00
KOGA Mitsuhiro
fcc194c585
Android: Fix infinite recursion in proxy equals handler
...
Kotlin's `==` on the proxy compiles to `proxy.equals(args[0])`, which
the JDK proxy dispatches back through the InvocationHandler, hitting
the same branch and recursing into StackOverflowError. Use `===` for
reference equality, matching the default Object#equals behavior.
2026-05-22 22:22:45 +09:00
Muteem
471a4a79c0
Android: Fix ClassCastException in proxy hashCode when ObjectID is returned as Long
...
Object.hashCode() must return Int (32-bit), but the proxy InvocationHandler
returned godotObjectID directly (Long, 64-bit). When a HashMap-like container
called proxy.hashCode(), the auto-generated proxy did (Integer) result on a
java.lang.Long and threw ClassCastException.
Signed-off-by: Muteem <29696635+Muteem@users.noreply.github.com >
2026-05-22 22:20:52 +09:00
Lukas Tenbrink
103b82048f
Clarify hash_compare semantics on Variant.
2026-05-22 12:00:02 +02:00
Leonard Pop
610e334d4c
[Web] Fix poll_export changing current export_preset
2026-05-22 11:08:20 +03:00
Pāvels Nadtočajevs
1fa9400b2d
[HarfBuzz] Fix typo in 13.0.0-14.1.0 branch.
2026-05-22 08:37:31 +03:00
Hugo Locurcio
15689c1a95
Document Object._get() and _get_property_list() thread-safe requirement
2026-05-21 23:44:15 +02:00
kleonc
cd0b2a140c
Improve docs for EditorResourcePicker::_set_create_options
2026-05-21 22:01:46 +02:00
Michael Alexsander
582a8ef44a
Fix buttons in EditorProperty overlapping with values
2026-05-21 14:48:30 -03:00
Thaddeus Crews
8608217082
Merge pull request #119608 from YeldhamDev/assetlib_duck_typing_no_more
...
Fix template assets not being exclusive to the project manager
2026-05-21 09:25:07 -05:00
Thaddeus Crews
a8a2ea14a5
Merge pull request #119624 from bruvzg/co_ios
...
[CODEOWNERS] Update `/drivers/apple*`.
2026-05-21 09:25:07 -05:00
Thaddeus Crews
78ff43f995
Merge pull request #119241 from YeldhamDev/gridmap_is_so_crusty
...
Fix incorrect grid floor position before input in the `GridMap` editor
2026-05-21 09:25:06 -05:00
Thaddeus Crews
41f4d70682
Merge pull request #119627 from KoBeWi/K.O.lon
...
Remove colon from Favorites in FileSystem
2026-05-21 09:25:05 -05:00
Thaddeus Crews
6b735de563
Merge pull request #119630 from Repiteo/thirdparty/re-spirv
...
Thirdparty: Update re-spirv to `ff2b1a506`
2026-05-21 09:25:04 -05:00
Thaddeus Crews
ed97644b60
Thirdparty: Update re-spirv to ff2b1a506
2026-05-21 09:17:28 -05:00
barthy-koeln
cfcec5ccca
fix(text_server_fb): zero-width space detection and rendering
2026-05-21 10:56:54 +02:00
Pāvels Nadtočajevs
73a771dd02
[CODEOWNERS] Update /drivers/apple*.
2026-05-21 11:30:27 +03:00
Pāvels Nadtočajevs
abb6d4531a
[iOS] Fix resource directory path when using godot_path.
2026-05-21 10:01:55 +03:00
kobewi
7263d9c8e0
Remove colon from Favorites in FileSystem
2026-05-21 00:08:37 +02:00
Will Sheehan
95ab8e16fe
Two commits for scroll hints had impact on FileSystem dock style:
...
- f187b8b2bf introduced `TreeSecondary` for the tree pane, but only applied it in horizontal split mode.
- a45bdce763 removed the existing `ItemListSecondary` from the file list in vertical split mode.
The combination results in vertical split and tree-only not having background styles while horizontal split does.
Apply `TreeSecondary` and `ItemListSecondary` styles in all split modes. This gives consistency between the modes and with other elements.
Fixes #119359
2026-05-20 13:22:20 -07:00
Thaddeus Crews
3bfa50fd32
Merge pull request #117805 from BenLubar/gl-compatibility-drawable-texture
...
Fix `convert_to_srgb` uniform being set as the wrong data type.
2026-05-20 14:33:23 -05:00
Thaddeus Crews
d9f03f2f92
Merge pull request #119596 from bruvzg/ed_pop
...
[Tree] Fix editor popup opening outside the window.
2026-05-20 14:33:22 -05:00
Thaddeus Crews
0389590b8f
Merge pull request #119494 from YeldhamDev/export_dialog_del_fixes
...
Fix a couple of issues when deleting presets in the export dialog
2026-05-20 14:33:21 -05:00
Thaddeus Crews
89f3bc1847
Merge pull request #118489 from xuhuisheng/dev/tree-order
...
Fix filter tree node order
2026-05-20 14:33:20 -05:00
Thaddeus Crews
5d5052428b
Merge pull request #119581 from YeldhamDev/asset_author_verification
...
Show "Verified" badge for verified asset authors
2026-05-20 14:33:19 -05:00
Thaddeus Crews
1f020a6c4f
Merge pull request #119558 from YeldhamDev/project_export_ttrc
...
Use `TTRC()` instead of `TTR()` in the project export dialog
2026-05-20 14:33:17 -05:00
Thaddeus Crews
c79f191ee9
Merge pull request #119583 from bruvzg/icon_exp_cache
...
Do not use cache for icon/splash during export.
2026-05-20 14:33:16 -05:00
Thaddeus Crews
79811ccc98
Merge pull request #119601 from Muteem/fix/android-proxy-null-args-npe
...
Android: Fix NPE in JavaClassWrapper proxy when interface method has no arguments
2026-05-20 14:33:16 -05:00
Thaddeus Crews
344b64e508
Merge pull request #119506 from KosumovicDenis/fix-reparent-to-new-node-selection
...
Editor: Fix 'Reparent to New Node' when selecting from bottom to top
2026-05-20 14:33:15 -05:00
Michael Alexsander
cec95a3305
Fix template assets not being exclusive to the project manager
2026-05-20 15:21:32 -03:00
Michael Alexsander
0a8101a25d
Show "Verified" badge for verified asset authors
2026-05-20 14:55:53 -03:00
Muteem
08c08bfef2
Android: Fix NPE when proxy interface method has no arguments
...
JDK contract: InvocationHandler.invoke's args parameter is null when
the proxied interface method takes no arguments. The proxy handlers
in AndroidRuntimePlugin used `*args` directly, which spread-deref'd
null and threw NullPointerException.
Signed-off-by: Muteem <29696635+Muteem@users.noreply.github.com >
2026-05-20 16:23:30 +08:00
Pāvels Nadtočajevs
9106caa709
[Tree] Fix editor popup opening outside the window.
2026-05-20 09:13:29 +03:00
Pāvels Nadtočajevs
c5ad427e02
Do not use cache for icon/splash during export.
2026-05-19 23:59:16 +03:00
Ben Lubar
d55190dfde
Fix convert_to_srgb uniform being set as the wrong data type.
2026-05-19 14:48:58 -05:00
Thaddeus Crews
8a33751039
Merge pull request #110469 from shiena/fix/vswhere
...
fix: relax vswhere command conditions for broader compatibility
2026-05-19 11:18:33 -05:00