summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-06Merge pull request #72741 from KoBeWi/connect!_but_whereRémi Verschelde
Improve Connect Dialog navigation
2023-02-06Improve Connect Dialog navigationkobewi
2023-02-06Merge pull request #71677 from Sauermann/fix-emulate-touch-passthroughRémi Verschelde
Fix MOUSE_FILTER_STOP not affecting emulated mouse events
2023-02-06Merge pull request #72770 from Kabiirk/Control-has-point-doc-updateRémi Verschelde
Fix description and argument name in `Control._has_point`
2023-02-06Merge pull request #72552 from m4gr3d/cleanup_custom_build_mainRémi Verschelde
Rename Godot's 'custom build' to 'gradle build' to better reflect the underlying build process
2023-02-06Merge pull request #72805 from TokageItLab/fix-apRémi Verschelde
Fix AnimationTrackEditor doesn't open when selecting AnimationPlayer node while another Editor is open
2023-02-06Merge pull request #69185 from Sauermann/fix-optionpopup-screentransformRémi Verschelde
Fix Screen-Transform missing in Button Size in OptionButton::show_popup
2023-02-06Merge pull request #72810 from clayjohn/cull_maskRémi Verschelde
Implement cull_mask for decals and lights in mobile and compatibility backends
2023-02-06Merge pull request #72806 from m4gr3d/add_vulkan_filter_when_necessaryRémi Verschelde
Improve logic to detect whether vulkan is used for rendering
2023-02-06Merge pull request #72786 from timothyqiu/no-libcRémi Verschelde
Remove unnecessary `stdio.h` from gdextension interface
2023-02-06Merge pull request #72802 from RedMser/blender-rpc-error-handlingRémi Verschelde
Better error handling for Blender RPC import
2023-02-06Fix MOUSE_FILTER_STOP not affecting emulated mouse eventsMarkus Sauermann
Touch and Drag events are now stopped by MOUSE_FILTER_STOP
2023-02-07Fix description and argument name in Control._has_pointKabiir
2023-02-06Merge pull request #72546 from vonagam/fix-typed-array-can-referenceYuri Sizov
GDScript: Fix can_reference check for typed arrays
2023-02-06Merge pull request #72677 from dalexeev/gds-await-infer-typeYuri Sizov
GDScript: Fix `await` type inference
2023-02-06Merge pull request #72727 from TokageItLab/fix-audio-retrieveYuri Sizov
Fixed animation audio to play considering time when seeking
2023-02-06Implement cull_mask for decals and lights in mobile and compatibility backendsclayjohn
2023-02-06Merge pull request #72804 from vnen/gdscript-no-onready-without-nodeYuri Sizov
GDScript: Fix inheritance check of @onready for inner classes
2023-02-06GDScript: Fix `await` type inferenceDanil Alexeev
2023-02-06Merge pull request #70002 from poohcom1/fix/static-subscript-autocompleteYuri Sizov
Fix code-completion suggesting non-static members for custom classes
2023-02-06Merge pull request #72708 from KoBeWi/PackedMultilineStringArrayYuri Sizov
Fix @export_multiline for PackedStringArray
2023-02-06GDScript: Fix can_reference check for typed arraysDmitrii Maganov
2023-02-06Fix Screen-Transform missing in Button Size in OptionButton::show_popupMarkus Sauermann
The button size is affected by the screen transform, which was previously not taken into consideration.
2023-02-06Merge pull request #72801 from akien-mga/ci-linux-custom-repos-swiftshaderYuri Sizov
CI: Remove custom Linux deps and SwiftShader
2023-02-06Improve logic to detect whether vulkan is used for renderingFredia Huya-Kouadio
2023-02-07Fix AnimationTrackEditor doesn't open when selecting AnimationPlayerSilc Renew
2023-02-06Merge pull request #71523 from YeldhamDev/dserver_doc_recomsYuri Sizov
Make `DisplayServer` docs tell users to change some window values in the `Window` node
2023-02-06GDScript: Fix inheritance check of @onready for inner classesGeorge Marques
2023-02-06Better error handling for Blender RPC importRedMser
- If RPC import fails, then try a direct import as well. While it's slower, it may be better than failing the import completely. - Connection errors will disable RPC automatically, to avoid having to wait the full 30 seconds timeout each time. This should be properly fixed by allowing to override the timeout per HTTPClient.
2023-02-06CI: Remove custom Linux deps and SwiftShaderRémi Verschelde
The default environment already includes everything we need to build all our configurations. Remove custom SwiftShader setup as lavapipe should now be good enough, but we need to install the latest one.
2023-02-06GDScript: Fix recently merged test not ignoring warningsRémi Verschelde
2023-02-06Merge pull request #72330 from MinusKube/unreachable_code_bugRémi Verschelde
Fix unreachable code warning for elif block
2023-02-06Merge pull request #72791 from CorentinBrule/patch-1Rémi Verschelde
Complete FontFile ref and update example
2023-02-06Merge pull request #72628 from lyuma/gltf-reimport-appendingRémi Verschelde
Use reimport_append api for importing embedded gltf images
2023-02-06Merge pull request #72796 from KoBeWi/toggle_game_over_pluginRémi Verschelde
More fixes to over plugin handling
2023-02-06Merge pull request #72703 from lyuma/stringname_constructor_mistakeRémi Verschelde
StringName: fix returning dangling data from char constructor.
2023-02-06Merge pull request #72512 from vonagam/fix-ternary-type-sourceYuri Sizov
GDScript: Fix type certainty for result of ternary operator
2023-02-06Complete FontFile ref and update exampleCorentinBrulé
I complete the ref items according to [TextServer ref](https://docs.godotengine.org/en/latest/classes/class_textserver.html) and update example with new properties path
2023-02-06StringName: fix returning dangling data from char constructor.Lyuma
Fixes a copy paste mistake in the `StringName(const char *,bool)` constructor, to match the same form as the other two constrcutors. This fixes a case where this constructor can return a dangling pointer and cause use-after-free.
2023-02-06Use reimport_append api for importing embedded gltf imagesLyuma
Co-authored-by: K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com>
2023-02-06Merge pull request #72794 from vnen/gdscript-no-onready-without-nodeRémi Verschelde
GDScript: Don't allow @onready without inheriting Node
2023-02-06Merge pull request #72774 from bruvzg/spoof_loadRémi Verschelde
[TextServer] Preload USpoofChecker to speed up GDScript parsing.
2023-02-06Merge pull request #72780 from m4gr3d/add_vulkan_filter_when_necessaryRémi Verschelde
Improve vulkan capability detection on Android
2023-02-06Merge pull request #72455 from reduz/allow-reimport-appendingRémi Verschelde
Support reimport appending
2023-02-06Merge pull request #72276 from dalexeev/gds-rpc-annotRémi Verschelde
GDScript: Better handling of `@rpc` annotation and autocompletion
2023-02-06Merge pull request #72709 from RedworkDE/net-basedirectory-whoopsRémi Verschelde
C#: Fix AppContext.BaseDirectory
2023-02-06Merge pull request #68492 from Sauermann/fix-picking-sortRémi Verschelde
Fix propagation order for 2D physics picking events
2023-02-06Merge pull request #72663 from akien-mga/project-converter-fix-no-regex-buildRémi Verschelde
Fix no-regex build for ProjectConverter3to4
2023-02-06More fixes to over plugin handlingkobewi
2023-02-06GDScript: Don't allow @onready without inheriting NodeGeorge Marques