summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2022-11-16Merge pull request #68717 from rune-scape/rune-compiler-regressionYuri Rubinsky
Fixes https://github.com/godotengine/godot/issues/68716
2022-11-15GDScript Compiler: regression fixRune
2022-11-15Merge pull request #67948 from DeeJayLSP/split_webpRémi Verschelde
Overhaul WebP packer and split compression options
2022-11-15Merge pull request #65372 from Mickeon/fix-treat-warnings-as-errorsRémi Verschelde
Fix "Treat Warnings as Errors" Project Setting doing nothing
2022-11-15Merge pull request #66516 from DeeJayLSP/update_theoraRémi Verschelde
Update libtheora to GIT (2020.10)
2022-11-15Merge pull request #68663 from Chaosus/gds_fix_completionYuri Rubinsky
2022-11-15Overhaul WebP packer and split compression optionsDeeJayLSP
2022-11-15Merge pull request #68671 from raulsntos/dotnet/c-escape-hellRémi Verschelde
C#: Remove "?" from CEscape and CUnescape
2022-11-15C#: Remove "?" from CEscape and CUnescapeRaul Santos
2022-11-14Merge pull request #68657 from Sauermann/fix-redundant-initializationRémi Verschelde
Remove redundant non-trivial Variant types initializations
2022-11-14Merge pull request #68658 from Calinou/message-fix-periodsRémi Verschelde
Fix periods in editor strings and messages
2022-11-14Merge pull request #68488 from dsnopek/master-webxr-no-exit-runtimeFabio Alessandrelli
Fix WebXR after changing Emscripten configuration noExitRuntime to false
2022-11-14Fix completion popup for the variables created with `get_node` callYuri Rubinsky
2022-11-14Fix periods in editor strings and messagesHugo Locurcio
- Ensure all strings with ellipsis end with 3 periods instead of 2. - Fix extraneous period in "Error calling from signal '...' to callable" messages.
2022-11-14Remove redundant Variant-types initializationsMarkus Sauermann
2022-11-14Merge pull request #65712 from Chaosus/gds_fix_completionRémi Verschelde
fix https://github.com/godotengine/godot/issues/64477
2022-11-14Merge pull request #68374 from rune-scape/rune-gdscript-compiler-bugfixesRémi Verschelde
Fixes https://github.com/godotengine/godot/issues/65953 Fixes https://github.com/godotengine/godot/issues/68291 Fixes https://github.com/godotengine/godot/issues/68561 Fixes https://github.com/godotengine/godot/issues/64915 Fixes https://github.com/godotengine/godot/issues/61848 Fixes https://github.com/godotengine/godot/issues/61268
2022-11-14[MP] Move engine and editor profilers to a plugin.Fabio Alessandrelli
Also refactor the editor plugin out of the ReplicationEditor.
2022-11-14Merge pull request #64530 from bruvzg/svg_in_otRémi Verschelde
2022-11-14Merge pull request #67975 from BastiaanOlij/implement_uv2_on_primitivesRémi Verschelde
Add optional UV2 logic for lightmapping to primitive shapes
2022-11-13Merge pull request #68594 from dzil123/fix_wtype_limits_warning_openxrRémi Verschelde
Fix -Wtype-limits warning in openxr_interface.cpp
2022-11-13Merge pull request #68603 from HolonProduction/zipRémi Verschelde
Fix problem with ZIPPacker
2022-11-13Merge pull request #60684 from trollodel/lightweight_editor_pluginRémi Verschelde
Use forward-declarations in EditorPlugin where possible
2022-11-13Fix problem with ZIPPackerHolonProduction
The Zipfile Reference should be set to `NULL` when the `ZIPPacker` is closed not when a file in it is closed. When calling `ZIPPacker.close` without this nothing happens because `zf` is `NULL`. (7zip could still extract the file but warned about unexpected end of file.)
2022-11-13GDScript compiler subclass bugfixesRune
2022-11-13Add optional UV2 logic for lightmapping to primitive shapesBastiaan Olij
2022-11-12Fix -Wtype-limits warning in openxr_interface.cppdzil123
2022-11-11Use forward-declarations in EditorPlugin where possibletrollodel
2022-11-11Add index check to OpenXRInterface::get_projection_for_view and ↵avemort
OpenXRInterface::get_transform_for_view
2022-11-10Fix WebXR after changing Emscripten configuration noExitRuntime to falseDavid Snopek
2022-11-09[openxr] Remove unnecessary fallbacks for native handles on X11David Snopek
2022-11-09Fix default values on virtual classes causing errors in projectsAaron Franke
2022-11-08Add support for OpenGL to OpenXRDavid Snopek
2022-11-08Fix named enums to use int64 typeYuri Rubinsky
2022-11-07Merge pull request #68202 from zaevi/fix_Web_WebSocket_failedRémi Verschelde
Fix WebSocket connection failed on Web.
2022-11-04Merge pull request #68253 from dzil123/fix_array_shuffleIgnacio Roldán Etcheverry
Fix c# Array.Shuffle incorrect mono bindings
2022-11-04Fix c# Array.Shuffle incorrect mono bindingsdzil123
2022-11-04Implement SVG in OT support.bruvzg
2022-11-04Merge pull request #68080 from akien-mga/vulkan-sdk-1.3.231.1Rémi Verschelde
vulkan: Update all components to Vulkan SDK 1.3.231.1
2022-11-03Merge pull request #68102 from BastiaanOlij/fix_render_issues_xrRémi Verschelde
Fix several render issues found while debugging XR
2022-11-03Merge pull request #68092 from raulsntos/dotnet/variant-from-arrayIgnacio Roldán Etcheverry
C#: Add implicit conversion from arrays to Variant
2022-11-03vulkan: Update all components to Vulkan SDK 1.3.231.1Rémi Verschelde
Updates to volk, vulkan headers, `vk_enum_string_helper.h`, glslang, spirv-reflect. No update to VMA which still has 3.0.1 as it's last tagged release.
2022-11-03Fix WebSocket connection failed on Web.Zae
2022-11-02Allow getting Quaternion rotation in different Euler ordersAaron Franke
2022-11-02Merge pull request #66747 from aaronfranke/move-euler-orderRémi Verschelde
Move EulerOrder enum to math_defs.h and global scope
2022-11-02C#: Add implicit conversion from arrays to VariantRaul Santos
Adds an implicit conversion from supported array types (the ones that are equivalent to `Packed*Array` types in Godot) to Variant.
2022-11-02Move EulerOrder enum to math_defs.h and global scopeAaron Franke
2022-11-02Style: Misc docs and comment style and language fixesRémi Verschelde
- Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`.
2022-11-02Merge pull request #65062 from KoBeWi/RedoUndoRémi Verschelde
Unify usage of undo_redo in editor
2022-11-02Merge pull request #67917 from Faless/mp/4.x_authRémi Verschelde
[MP] Add peer authentication support to the default MultiplayerAPI.