summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-29Fix lack of ProjectManager nullptr initializationsMarios Staikopoulos
Initialize all pointers to nullptr, fixes a crash with asset_library caused by uninitialized memory.
2022-03-28Merge pull request #59525 from fire-forge/fix-group-namesRémi Verschelde
2022-03-28Merge pull request #59636 from akien-mga/string-remove-ttrRémi Verschelde
2022-03-28Fix inspector group name capitalizationFireForge
2022-03-28Merge pull request #59641 from Sauermann/fix-encoder-compiler-warningRémi Verschelde
2022-03-28Merge pull request #59626 from lufog/const_refRémi Verschelde
2022-03-28String: Remove TTR and DTR defines in non-tools buildRémi Verschelde
This ensures we don't use TTR in runtime code, as it's specifically meant to source translations for the editor.
2022-03-28Merge pull request #59555 from Sauermann/fix-mouseover-dragRémi Verschelde
2022-03-28Merge pull request #59631 from akien-mga/websocket-no-tools-disable-editor-codeRémi Verschelde
Modules: Don't build editor-specific classes in templates
2022-03-28Merge pull request #59635 from akien-mga/script-templates-editor-onlyRémi Verschelde
Refactor GDScript/C# script templates logic to be editor-only
2022-03-28basisu_uastc_enc.cpp was included twice in encoder_sourcesMarkus Sauermann
2022-03-28Modules: Don't build editor-specific classes in templatesRémi Verschelde
They're moved to an `editor` subfolder so that we can easily handle them separately.
2022-03-28Refactor GDScript/C# script templates logic to be editor-onlyRémi Verschelde
Not a full refactor as it still goes through ScriptLanguage so it's hacky, but at least it can now compile without this.
2022-03-28CI: Limit Windows cache size again, otherwise we run out of spaceRémi Verschelde
And force a full rebuild as the cache is now broken.
2022-03-28Merge pull request #59426 from timothyqiu/name-style-masterRémi Verschelde
2022-03-28Merge pull request #59548 from akien-mga/obj-remove-unused-categoriesRémi Verschelde
2022-03-28Merge pull request #59456 from Calinou/color-expose-to-linear-srgbRémi Verschelde
2022-03-28Merge pull request #59553 from reduz/script-extension-supportRémi Verschelde
2022-03-28Merge pull request #59629 from ↵Juan Linietsky
godotengine/revert-58931-proposals/4189-better-code-completion Revert "Sort autocomplete/code completion options in a better way"
2022-03-28Revert "Sort autocomplete/code completion options in a better way"Juan Linietsky
2022-03-28Add property name style toggle to InspectorHaoyu Qiu
2022-03-28Merge pull request #59565 from SirQuartz/masterRémi Verschelde
2022-03-28Merge pull request #59453 from DanielKriz/masterRémi Verschelde
2022-03-28Expose Color's `to_linear()` and `to_srgb()` to scriptingHugo Locurcio
2022-03-28Merge pull request #59621 from bruvzg/icu_externalRémi Verschelde
2022-03-28Hide "Normal Map" import option when using lossless compression on TextureNicholas Huelin
This pull request resolves an issue where images being imported with lossless compression allowed you to select a normal map, but the normal map only applies if you're using VRAM compression. Thereby making it redundant to appear when using lossless compression. This pull request hides the normal map option when lossless compression is selected. Resolves: #59435
2022-03-28Merge pull request #59612 from YeldhamDev/style_and_graceRémi Verschelde
2022-03-28Replace copies with constant refsAleksey Smirnov
2022-03-28Merge pull request #59614 from timothyqiu/debug-colors-masterRémi Verschelde
2022-03-28Fix TextServer build with `builtin_icu=no`.bruvzg
2022-03-28Merge pull request #59118 from Sauermann/fix-window-input-event-coordinatesRémi Verschelde
2022-03-28Merge pull request #59611 from mashumafi/const-ref-callableRémi Verschelde
Const Ref Callable for custom sort/search
2022-03-28Merge pull request #58931 from EricEzaM/proposals/4189-better-code-completionRémi Verschelde
Sort autocomplete/code completion options in a better way
2022-03-28Merge pull request #59064 from Chaosus/gds_fix_narrowing_conv_warningRémi Verschelde
Prevent NARROWING_CONVERSION warning for `int(float)` function in GDScript
2022-03-28Merge pull request #59600 from Bromeon/feature/extension_to_stringRémi Verschelde
GDExtension: change to_string signature to accept `GDNativeStringPtr` instead of returning `const char*`
2022-03-28Merge pull request #59574 from Sauermann/proposal-rename-warp-mouseRémi Verschelde
Rename warp mouse functions to warp_mouse
2022-03-28Make script templates follow the GDScript style guideMichael Alexsander
2022-03-28Update SceneTree debug colors when settings changedHaoyu Qiu
2022-03-27Const Ref Callable for custom sort/searchmashumafi
2022-03-28Merge pull request #59603 from YeldhamDev/meta_regression_fixRémi Verschelde
Fix "Script Create" dialog errors with metadata
2022-03-28Merge pull request #59584 from Faless/net/4.x_http_request_timeout_doubleRémi Verschelde
[Net] Change HTTPRequest timeout type to double.
2022-03-28Merge pull request #59599 from YeldhamDev/node_picking_lawyerRémi Verschelde
Fix errors when locking nodes
2022-03-27Fix "Script Create" dialog errors with metadataMichael Alexsander
2022-03-27GDExtension: change to_string signature to accept GDNativeStringPtr instead ↵Jan Haller
of returning const char*
2022-03-27Fix errors when locking nodesMichael Alexsander
2022-03-27[Net] Change HTTPRequest timeout type to double.Fabio Alessandrelli
For consistency with the Timer class and general time representation inside the engine.
2022-03-27Add GDExtension support to Scriptreduz
* Ability to create script languages from GDExtension * Some additions to gdnative_extension.h to make this happen * Moved the GDExtension binder to core This now allows creating scripting languages from GDExtension, with the same ease as if it was a module. It replaces the old PluginScript from Godot 3.x. Warning: GodotCPP will need to be updated to support this (it may be a bit of work as ScriptInstance needs to be created over there again).
2022-03-27Send Mouse Enter/Exit Notifications independently of mouse focusMarkus Sauermann
2022-03-27Rename warp mouse functions to warp_mouseMarkus Sauermann
2022-03-27Merge pull request #59561 from akien-mga/js-export-explain-why-no-templatesRémi Verschelde