Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-29 | Merge pull request #65023 from Faless/js/4.x_is_web | Rémi Verschelde | |
2022-08-29 | Merge pull request #64980 from TokageItLab/fix-animedit-draw-and-find-key | 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 | 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 #64386 from timothyqiu/anim-disable | Rémi Verschelde | |
Fix crash when loading Animation Library after reloading a scene | |||
2022-08-29 | Fixed AnimationTrackEditor redraw/deselect timing and find key compearation | Silc Renew | |
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 #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 #64847 from Mickeon/editor-docs-hierarchy-icons | Rémi Verschelde | |
Add type icons to editor docs' hierarchy | |||
2022-08-28 | Fix category of new added visual shader functions | Yuri Rubinsky | |
2022-08-28 | Merge pull request #64248 from paddy-exe/built-in-shader-functions | Yuri Rubinsky | |
2022-08-27 | Implement custom non-trivial shader functions | Patrick Exner | |
2022-08-27 | Merge pull request #62846 from ↵ | Rémi Verschelde | |
AaronRecord/remove_redundant_theme_updates_in_enter_tree Remove `NOTIFICATION_ENTER_TREE` when paired with `NOTIFICATION_THEME_CHANGED` | |||
2022-08-28 | Added a placeholder tab check before creating a new scene. | faisal-alam09 | |
2022-08-27 | Remove NOTIFICATION_ENTER_TREE when paired with NOTIFICATION_THEME_CHANGED | Aaron Record | |
2022-08-27 | Fix editor shortcuts overrides overwriting user configured shortcuts. | bruvzg | |
2022-08-27 | Merge pull request #64951 from TokageItLab/value-track-optimizer | Rémi Verschelde | |
Fix optimizer miscalculation and add optimization for `Animation::ValueTrack` | |||
2022-08-27 | Add optimization for Animation::ValueTrack | Silc Renew | |
2022-08-27 | Merge pull request #63249 from V-Sekai/animation_tree_editor_read_only | Rémi Verschelde | |
Add read-only mode to AnimationTreeEditor plugins | |||
2022-08-27 | Rename `hint_tooltip` to `tooltip_text` & setget | Micky | |
`hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too. | |||
2022-08-27 | Add linear/cubic angle interpolation to Animation interpolation type | Silc Renew | |
2022-08-26 | Merge pull request #64928 from YuriSizov/editor-tooltip-or-not-tooltip | Rémi Verschelde | |
Remove Inspector tooltip hack that never actually worked | |||
2022-08-26 | Merge pull request #64367 from Mickeon/rename-var-to-str | Rémi Verschelde | |
Rename `str2var` to `str_to_var` and similar | |||
2022-08-26 | Merge pull request #64777 from bruvzg/extend_to_title | Rémi Verschelde | |
[macOS] Extend editor contents to the window title bar for better space usage. | |||
2022-08-26 | Merge pull request #64207 from bruvzg/rcs | Rémi Verschelde | |
[macOS export] Simplify code signing options, add support for rcodesign tool for signing and notarization. | |||
2022-08-26 | Remove Inspector tooltip hack that never actually worked | Yuri Sizov | |
2022-08-26 | Rename `str2var` to `str_to_var` and similar | Micky | |
Affects the Math class, a good chunk of the audio code, and a lot of other miscellaneous classes, too. - `var2str` -> `var_to_str` - `str2var` -> `str_to_var` - `bytes2var` -> `bytes_to_var` - `bytes2var_with_objects` -> `bytes_to_var_with_objects` - `var2bytes` -> `var_to_bytes` - `var2bytes_with_objects` -> `var_to_bytes_with_objects` - `linear2db` -> `linear_to_db` - `db2linear` -> `db_to_linear` - `deg2rad` -> `deg_to_rad` - `rad2deg` -> `rad_to_deg` - `dict2inst` -> `dict_to_inst` - `inst2dict` -> `inst_to_dict` | |||
2022-08-26 | [macOS] Extend editor contents to the window titlebar for better space usage. | bruvzg | |
2022-08-26 | [macOS export] Simplify code signing options, add support for rcodesign tool ↵ | bruvzg | |
for signing and notarization. | |||
2022-08-26 | Restore RigidBody2/3D, SoftBody names in physics | fabriceci | |
2022-08-26 | Merge pull request #64768 from bruvzg/popups_hide_if_visible | Rémi Verschelde | |
2022-08-26 | Merge pull request #64422 from bruvzg/make_fonts_unbearably_ugly_2.0 | Rémi Verschelde | |
2022-08-26 | Merge pull request #62845 from AaronRecord/dont_update_theme_outside_of_tree | Rémi Verschelde | |
Refactor and remove excessive calls of `NOTIFICATION_THEME_CHANGED` | |||
2022-08-26 | Merge pull request #58665 from KoBeWi/run_current_forever | Rémi Verschelde | |
Improve scene playing and reloading | |||
2022-08-26 | Merge pull request #64601 from MinusKube/alternative-tile-popup-bug | Rémi Verschelde | |
Fix alternative tile popup menu not being openable | |||
2022-08-26 | Merge pull request #64570 from KoBeWi/node🧳ing | Rémi Verschelde | |
Unify node casing adjustment | |||
2022-08-26 | Merge pull request #64879 from TokageItLab/cubic-to-cubicintime | Rémi Verschelde | |
Replace `Cubic` to `CubicInTime` in the animation track interpolation type | |||
2022-08-26 | Merge pull request #64566 from Mickeon/rename-particle-material | Rémi Verschelde | |
Rename ParticlesMaterial to ParticleProcessMaterial | |||
2022-08-26 | Add drag and drop support to shader list | kobewi | |
2022-08-26 | Rename ParticlesMaterial to ParticleProcessMaterial | Micky | |
Also affects their file names, related classes and documentation. | |||
2022-08-26 | Merge pull request #64572 from KoBeWi/forsake_the_names | Rémi Verschelde | |
Clear built-in name field when creating new script | |||
2022-08-26 | Merge pull request #64573 from KoBeWi/signal_name_plagiarism | Rémi Verschelde | |
Add "Copy Name" option to signal menu | |||
2022-08-26 | Make Cubic to CubicInTime and reduce items in the track intrp type | Silc Renew | |
2022-08-25 | Merge pull request #64597 from MinusKube/tileset-disappear-bug | Rémi Verschelde | |
2022-08-25 | Refactor and remove excessive calls of `NOTIFICATION_THEME_CHANGED` | Aaron Record | |
2022-08-25 | Improve scene playing and reloading | kobewi | |
2022-08-25 | Merge pull request #64804 from Mickeon/rename-path-progress | Rémi Verschelde | |
2022-08-25 | Merge pull request #64824 from Mickeon/rename-polygon-invert | Rémi Verschelde | |