Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-30 | Merge pull request #65044 from YuriSizov/editor-fix-theme-n-stuff | Rémi Verschelde | |
Fix some editor theme regressions | |||
2022-08-30 | Merge pull request #64883 from RandomShaper/vk_swapchain_sizing | Rémi Verschelde | |
Let platforms override the sizing of Vulkan swapchain and window | |||
2022-08-29 | Merge pull request #65049 from paulloz/dotnet/win10-export | Ignacio Roldán Etcheverry | |
C#: Fix .NET export template compilation on Windows | |||
2022-08-29 | Merge pull request #65046 from ↵ | Ignacio Roldán Etcheverry | |
neikeq/dotnet-fix-exported-game-uninitialized-callbacks C#: Fix exported game crash because of uninitialized callbacks | |||
2022-08-29 | Merge pull request #64987 from raulsntos/dotnet/linux-export | Ignacio Roldán Etcheverry | |
Fix .NET exporting in Linux | |||
2022-08-29 | Fix .NET export template compilation on Windows 10 | Paul Joannon | |
2022-08-29 | C#: Fix exported game crash because of uninitialized callbacks | Ignacio Roldán Etcheverry | |
This was a regression from 2c180f62d985194060f1a8d2070c130081177c90, where I forgot to update the source generator. | |||
2022-08-29 | Fix some editor theme regressions | Yuri Sizov | |
2022-08-29 | Merge pull request #65036 from KoBeWi/import_on_diet | Rémi Verschelde | |
2022-08-29 | Merge pull request #65003 from MewPurPur/fix-number-coloring | Rémi Verschelde | |
2022-08-29 | Merge pull request #57234 from rafallus/doc/collision_obj_mouse_functions | Rémi Verschelde | |
2022-08-29 | Merge pull request #65031 from akien-mga/os-drop-obsolete-resource-debugging | Rémi Verschelde | |
2022-08-29 | Fix Import dock being too wide | kobewi | |
2022-08-29 | Expose input interaction virtual functions in CollisionObject | rafallus | |
2022-08-29 | Merge pull request #64119 from YuriSizov/theme-init-database | Rémi Verschelde | |
2022-08-29 | Merge pull request #63938 from FlashViper/patch-2 | Yuri Sizov | |
Modified descriptions of 'command' and 'meta' | |||
2022-08-29 | Merge pull request #65023 from Faless/js/4.x_is_web | Rémi Verschelde | |
2022-08-29 | Drop obsolete resource usage debug methods from OS class | Rémi Verschelde | |
These methods exist since the dawn of (open source) Godot and have hardly been updated over time, so they barely work and I'm fairly sure nobody is using them. (See #46505 for details.) While some of the functionality they aimed to provide might be useful for optimization work and introspection, this should likely be redesigned from scratch with a cleaner and more modern interface (e.g. exposed via the Performance singleton, or ResourceLoader, and a better API overall). | |||
2022-08-29 | InputEventWithModifiers: Improve docs of 'command' and 'meta' | FlashViper | |
Ported forward from 3.x | |||
2022-08-29 | Merge pull request #64980 from TokageItLab/fix-animedit-draw-and-find-key | Rémi Verschelde | |
2022-08-29 | Merge pull request #65025 from akien-mga/revert-62846 | Rémi Verschelde | |
2022-08-29 | [Web] Rename JavaScript platform to Web. | Fabio Alessandrelli | |
Also rename export name from "HTML5" to "Web". | |||
2022-08-29 | Fix number highlighting | VolTer | |
2022-08-29 | Revert "Remove NOTIFICATION_ENTER_TREE when paired with ↵ | Rémi Verschelde | |
NOTIFICATION_THEME_CHANGED" This reverts commit 4b817a565cab8af648c88cfc7ab6481e86ee3625. Fixes #64988. Fixes #64997. This caused several regressions (#64988, #64997, https://github.com/godotengine/godot/issues/64997#issuecomment-1229970605) which point at a flaw in the current logic: - `Control::NOTIFICATION_ENTER_TREE` triggers a *deferred* notification with `NOTIFCATION_THEME_CHANGED` as introduced in #62845. - Some classes use their `THEME_CHANGED` to cache theme items in member variables (e.g. `style_normal`, etc.), and use those member variables in `ENTER_TREE`, `READY`, `DRAW`, etc. Since the `THEME_CHANGE` notification is now deferred, they end up accessing invalid state and this can lead to not applying theme properly (e.g. for EditorHelp) or crashing (e.g. for EditorLog or CodeEdit). So we need to go back to the drawing board and see if `THEME_CHANGED` can be called earlier so that the previous logic still works? Or can we refactor all engine code to make sure that: - `ENTER_TREE` and similar do not depend on theme properties cached in member variables. - Or `THEME_CHANGE` does trigger a general UI update to make sure that any bad theme handling in `ENTER_TREE` and co. gets fixed when `THEME_CHANGE` does arrive for the first time. But that means having a temporary invalid (and possibly still crashing) state, and doing some computations twice which might be heavy (e.g. `EditorHelp::_update_doc()`). | |||
2022-08-29 | Merge pull request #64964 from MewPurPur/reorganize-label-properties | Rémi Verschelde | |
Reorganize Label and RichTextLabel properties | |||
2022-08-29 | Merge pull request #65019 from timothyqiu/anim-docs-null | Rémi Verschelde | |
Improve documentation for `get_animation()` | |||
2022-08-29 | Improve documentation for `get_animation()` | Haoyu Qiu | |
2022-08-29 | Merge pull request #64943 from MatthewZelriche/FixUnMappedAncestor | Rémi Verschelde | |
2022-08-29 | Merge pull request #64960 from YeldhamDev/more_hl_stuff | Rémi Verschelde | |
2022-08-29 | Merge pull request #64967 from YeldhamDev/pm_up_fix | Rémi Verschelde | |
2022-08-29 | Merge pull request #64972 from YeldhamDev/you_too_menubar | Rémi Verschelde | |
2022-08-29 | Merge pull request #64386 from timothyqiu/anim-disable | Rémi Verschelde | |
Fix crash when loading Animation Library after reloading a scene | |||
2022-08-29 | Merge pull request #65013 from sakrel/patch-1 | Rémi Verschelde | |
Fix updating OccluderPolygon shapes | |||
2022-08-29 | Merge pull request #64956 from raulsntos/dotnet/format-ci | Rémi Verschelde | |
Add `dotnet format` to CI to check C# style | |||
2022-08-29 | Fix updating OccluderPolygon shapes | sakrel | |
2022-08-29 | Fixed AnimationTrackEditor redraw/deselect timing and find key compearation | Silc Renew | |
2022-08-29 | Merge pull request #64900 from raulsntos/dotnet/fix-exceptions | Ignacio Roldán Etcheverry | |
Fix various C# exceptions | |||
2022-08-29 | Merge pull request #64994 from raulsntos/dotnet/property-indexers | Ignacio Roldán Etcheverry | |
C#: Ignore property indexers and report if exported | |||
2022-08-29 | Merge pull request #64989 from mhilbrunner/upnp-docs | Rémi Verschelde | |
[DOCS] Update UPnP documentation | |||
2022-08-28 | Merge pull request #64555 from ↵ | Rémi Verschelde | |
nongvantinh/inspector_resource_preview_incorrect_size Fixed inspector resource preview shows up with incorrect size | |||
2022-08-28 | Merge pull request #64981 from Chaosus/vs_fix | Yuri Rubinsky | |
2022-08-28 | Merge pull request #64999 from Chaosus/fix_packed_scene_crash | Rémi Verschelde | |
2022-08-28 | Merge pull request #64957 from RandomShaper/subscene_edit_state | Rémi Verschelde | |
2022-08-28 | Prevent crash at loading some scenes | Yuri Rubinsky | |
2022-08-28 | Make local-to-scene resources behavior consistent in child scenes | Pedro J. Estébanez | |
2022-08-28 | Update UPnP documentation | Max Hilbrunner | |
Adds more details, especially about caveats, failure modes and pitfalls | |||
2022-08-28 | C#: Ignore property indexers and report if exported | Raul Santos | |
Ignore property indexers since they are unsupported and report a diagnostic if an user tries to export it. | |||
2022-08-28 | Merge pull request #64961 from ↵ | Rémi Verschelde | |
faisal-alam09/Bugfix-#64836-Placeholder-scene-tab-not-removed-when-new-scene-created Added a placeholder tab check before creating a new scene. | |||
2022-08-28 | Merge pull request #64885 from Mickeon/rename-tooltip-hint | Rémi Verschelde | |
Rename `hint_tooltip` to `tooltip_text` & setter getter | |||
2022-08-28 | Merge pull request #64526 from Rindbee/improve-packed-scene-instantiate | Rémi Verschelde | |
Improve PackedScene instantiate |