summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-02Fix missing LightmapGI gizmo icon in the 3D editorHugo Locurcio
2023-02-02Merge pull request #72334 from tbxMb/conv-ext-shaderRémi Verschelde
Allow .gdshader files in 3to4 conversion
2023-02-02Merge pull request #72576 from Maran23/4-x-rmb-new-menuRémi Verschelde
Fix rightclick on some files changes the 'New' menu entry to 'Show in File Manager'
2023-02-02Allow .gdshader files in 3to4 conversiontbxMb
2023-02-02Merge pull request #72559 from Maran23/4-x-improve-layout-dialogRémi Verschelde
Improve editor layout dialog
2023-02-02Merge pull request #72557 from vonagam/fix-make-value-protectionRémi Verschelde
GDScript: Fix getting reduced value of incomplete subscript for autocomplete
2023-02-02Fix rightclick on some files changes the 'New' menu entry to 'Show in File ↵Marius Hanl
Manager' due to no fixed index for the 'New' menu
2023-02-02Merge pull request #72307 from zoeesilcock/fix/splash-minimum-display-time-macosRémi Verschelde
[MacOS] Fix so that the main window is displayed before the splash screen minimum display time starts counting
2023-02-02Merge pull request #72562 from 0xafbf/patch-1Rémi Verschelde
Fix bad variable name in TileMap documentation
2023-02-02Merge pull request #72549 from m4gr3d/cleanup_xr_export_logic_mainRémi Verschelde
Clean up the XR export logic
2023-02-02Merge pull request #72542 from smix8/rvoagent_to_navagent_rename_4.xRémi Verschelde
Rename NavigationServer internal RvoAgent to NavAgent
2023-02-02Merge pull request #72528 from aaronfranke/dont-have-slashesRémi Verschelde
Remove unused `has_slashes` from NodePath
2023-02-02Merge pull request #72521 from KoBeWi/simplesize_itRémi Verschelde
Simplify Connect Dialog layout and sizing
2023-02-02Merge pull request #72513 from TokageItLab/remove-rename-param-animRémi Verschelde
Remove the meaningless API `rename_parameter()` in AnimationTree
2023-02-02Merge pull request #72471 from mbrlabs/blinkRémi Verschelde
Always show caret when moving in LineEdit
2023-02-02Merge pull request #72567 from dalexeev/gds-fix-72539Rémi Verschelde
GDScript: Fix crash in export group annotations
2023-02-02Merge pull request #72550 from KoBeWi/camera_of_the_endRémi Verschelde
Fix Camera2D crashes
2023-02-02GDScript: Fix crash in export group annotationsDanil Alexeev
2023-02-01Fix bad variable name in TileMap documentationAndrés Botero
2023-02-02Improve editor layout dialogMarius Hanl
- Disable the 'Save' button in the dialog if no layout name is selected and no text is set - Use a small min height for the layout names list to make the dialog more clear if no layout has been created yet
2023-02-02GDScript: Fix getting reduced value of incomplete subscriptDmitrii Maganov
2023-02-01Fix Camera2D crasheskobewi
2023-02-01Clean up the XR export logicFredia Huya-Kouadio
Remove the XR export logic from the legacy build system: - On Android, Godot 4 export requires the use of Android plugins which are not supported by the legacy build system - Provides added flexibility for configuring the Android manifest for XR specific capabilities.
2023-02-01Rename NavigationServer internal RvoAgent to NavAgentsmix8
Renames the NavigationServer internal RvoAgent to NavAgent.
2023-02-01Remove unused `has_slashes` from NodePathAaron Franke
2023-02-01Simplify Connect Dialog layout and sizingkobewi
2023-02-01Fix so that the main window is displayed before the splash screen minimum ↵Zoee Silcock
display time starts counting on Mac OS
2023-02-01Remove meaningless `rename_parameter` in AnimationTreeSilc Renew
2023-02-01Merge pull request #71800 from akien-mga/ci-codespell-actionRémi Verschelde
CI: Add official codespell action with PR annotations
2023-02-01Merge pull request #72434 from Treer/masterRémi Verschelde
Qualify Console's namespace to avoid mixup with plugin's objects
2023-02-01Merge pull request #71482 from ↵Rémi Verschelde
Calinou/editor-android-web-hide-show-in-file-manager Hide non-functional "Show in File Manager" buttons in Android/web editor
2023-02-01Hide non-functional "Show in File Manager" buttons in Android/web editorHugo Locurcio
The editor filesystem isn't readily accessible by OS applications on those platforms.
2023-02-01CI: Add official codespell action with PR annotationsRémi Verschelde
2023-02-01More codespell fixes, do more changes from previous ignore listRémi Verschelde
2023-02-01Merge pull request #72440 from V-Sekai/gltf_embed_as_uncompressedRémi Verschelde
gltf: Add GLTFHandleBinary::HANDLE_BINARY_EMBED_AS_UNCOMPRESSED
2023-02-01SCons: Fix wrong `debug_symbols` default value in --helpRémi Verschelde
The actual default value is neither true nor false but depends on the value of `dev_build`. Fixes #71812.
2023-02-01Merge pull request #72495 from m4gr3d/implement_file_providerRémi Verschelde
Implement file provider capabilities
2023-02-01Merge pull request #67331 from Sauermann/fix-subviewport-no-stretch-updateRémi Verschelde
Fix stretch transform when resizing SubViewports
2023-02-01Merge pull request #72104 from bruvzg/popup-non-popupsRémi Verschelde
Extend special popup window handling to any non-popup child of a popup.
2023-02-01Merge pull request #72499 from vonagam/fix-typed-array-disassemblyRémi Verschelde
GDScript: Fix disassembly of typed array assignment and construction
2023-02-01Merge pull request #72497 from bruvzg/x11_ime_popup_focusRémi Verschelde
[X11] Fix IME subwindow in the popup not getting input focus.
2023-02-01Revert "GDScript: Add warnings that are set to error by default"Rémi Verschelde
This reverts commit a166833bfa23a21a7bff196a85a20b014e7c1396. This caused multiple regressions. Needs to be redone with more testing before merge. Fixes #72501.
2023-02-01gltf: Add GLTFHandleBinary::HANDLE_BINARY_EMBED_AS_UNCOMPRESSEDLyuma
This option allows for a safe fallback for embedded gltf textures in cases where VRAM compression is not needed. Add an is_editor_hint guard around GLTFHandleBinary::HANDLE_BINARY_EXTRACT_TEXTURES, to use EMBED_AS_UNCOMPRESSED by default at runtime. This provides an option for pixel art to be stored losslessly. Additionally, respect project importer defaults for texture import settings. Avoid writing and reimporting extracted textures identical to version on disk.
2023-02-01GDScript: Fix disassembly of typed array assignment and constructionDmitrii Maganov
2023-02-01[X11] Fix IME subwindow in the popup not getting input focus.bruvzg
2023-02-01Implement file provider capabilitiesFredia Huya-Kouadio
The previously used file sharing api was restricted after Android N causing the engine to crash whenever used on devices running Android N or higher.
2023-02-01Merge pull request #58610 from Sauermann/fix-physics-mouseRémi Verschelde
Fix execution of physics picking events at unexpected times
2023-02-01Fix blend runner copyright headersRémi Verschelde
2023-02-01Fix various typos with codespellRémi Verschelde
Finally do the childs -> children rename too.
2023-02-01Fix stretch transform when resizing SubViewportsMarkus Sauermann
Move calculation of stretch transform from outside to inside of `Viewport::_set_size` function.