Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-03 | Unix: Remove now unnecessary I/O defines, cleanup | Rémi Verschelde | |
- `LIBC_FILEIO_ENABLED` wasn't defined anywhere, even in _other platforms_. - `NO_NETWORK` is also never defined. It probably isn't enough anyway to disable network APIs in the current codebase. - `UNIX_SOCKET_UNAVAILABLE` is never defined in this code but used by some other platforms, clarify that. - `NO_STATVFS` can be removed as Android supports it since API level 19, which is our current min SDK level. It's also only used for `DirAccessUnix::get_space_left()` which is anyway overridden by `DirAccessJAndroid::get_space_left()` so it shouldn't make a difference. * Fixed documentation for `DirAccess.get_space_left()`. - `NO_FCNTL` is likely also a remnant of early Android days, in current NDK r23 it seems to be available. Also cleaned up unused `fcntl.h` includes. - `NO_ALLOCA` is never defined, and we use alloca in many places now. | |||
2022-10-02 | Allow shortcut input to be JoypadButton. | EricEzaM | |
2022-09-28 | Merge pull request #58995 from Sauermann/fix-mouse-cursor-change-2 | Rémi Verschelde | |
Update mouse cursor shape after changes | |||
2022-09-27 | Merge pull request #66160 from dpalais/double_time | Rémi Verschelde | |
Use double instead of real_t type for time-related parameters and variables | |||
2022-09-26 | Change time parameters and variables to double type | Dave Palais | |
Addresses #65313 | |||
2022-09-26 | Force window position if spawned outside screen | kobewi | |
2022-09-22 | [macOS extend-to-title] Add scene/project name to the editor title, fix ↵ | bruvzg | |
incorrect window button position/order when system primary language is RTL. | |||
2022-09-20 | Merge pull request #63740 from Faless/net/4.x_http_request_decompress | Rémi Verschelde | |
[HTTP] Implement streaming decompression. | |||
2022-09-20 | [HTTPRequest] Cleanup, refactor deferred call. | Fabio Alessandrelli | |
2022-09-20 | [HTTPRequest] Body streaming decompresison. | Fabio Alessandrelli | |
Using a StreamPeerGZIP (which acts as a ringbuffer). | |||
2022-09-19 | Change return type of `get_configuration_warnings` to `PackedStringArray` | Marc Gilleron | |
2022-09-18 | Update mouse cursor shape after changes | Markus Sauermann | |
This fixes some cases where the mouse cursor shape did not change automatically, but instead required a MouseMove to update. | |||
2022-09-16 | Merge pull request #65496 from MinusKube/popup-capture-mouse-bug | Rémi Verschelde | |
Fix MOUSE_MODE_CAPTURED not working correctly with popups | |||
2022-09-16 | Merge pull request #65550 from MinusKube/small-popup-bug | Rémi Verschelde | |
Use embedding viewport instead of parent viewport to determine popup rect | |||
2022-09-14 | Fix XR rendering in 'opengl3' driver and expose true size via the Viewport node | David Snopek | |
2022-09-11 | Add ability to flag classes as experimental or deprecated. | SaracenOne | |
2022-09-10 | Merge pull request #65595 from KoBeWi/minus_children | Rémi Verschelde | |
Allow negative indices in `move_child()` | |||
2022-09-10 | Allow negative indices in move_child() | kobewi | |
2022-09-09 | Remove Remove and Skip | VolTer | |
2022-09-09 | Use embedding viewport instead of parent viewport to determine popup rect | MinusKube | |
2022-09-08 | Merge pull request #60108 from KoBeWi/arise_to_top | Rémi Verschelde | |
Rename raise() to move_to_front() | |||
2022-09-08 | Merge pull request #63596 from Jayman2000/issue-27640 | Rémi Verschelde | |
Rename `change_scene()` and `change_scene_to()` | |||
2022-09-08 | Merge pull request #65460 from Faless/net/4.x_ssl_to_tls_more | Rémi Verschelde | |
[Net] Rename "ssl" references to "tls" in methods and members. | |||
2022-09-08 | [Net] Rename "ssl" references to "tls" in methods and members. | Fabio Alessandrelli | |
2022-09-07 | Rename change_scene() and change_scene_to() | Jason Yundt | |
Before this change, the SceneTree had methods named “change_scene” and “change_scene_to”. One of them accepted a String as a parameter and the other accepted a PackedScene, but you couldn’t tell which one was which just by looking at their names. This change renames those two methods to “change_scene_to_file” and “change_scene_to_packed”. These new names came from this suggestion [1]. These new names make the difference between the two methods more clear and hint at the fact that there’s more than one change_scene method. [1]: <https://github.com/godotengine/godot/issues/27640#issuecomment-1081870955> Fixes #27640. | |||
2022-09-07 | Fix MOUSE_MODE_CAPTURED not working correctly with popups | MinusKube | |
2022-09-07 | Remove / Replace old Navigation Debug Visualization | smix8 | |
- removes / replaces leftovers from old navigation debug code - cleanes SceneTree and ProjectSettings from old navigation debug | |||
2022-09-07 | Rename `legible_unique_name` param to `force_readable_name` | Micky | |
With the introduction of Scene Unique Nodes, `is_unique_in_owner`, "Unique Name in Scene" and other descriptions related to the feature, the second parameter of add_child() and add_simbling() could be misunderstood to be related, at first glance. | |||
2022-09-06 | Rename raise() to move_to_front() | kobewi | |
2022-09-03 | Merge pull request #65285 from YuriSizov/window-theme-change-is-imminent | Rémi Verschelde | |
Un-defer the initial theme changed notification in `Window` | |||
2022-09-03 | Un-defer the initial theme changed notification in Window | Yuri Sizov | |
2022-09-03 | Some improvements to the SceneTreeTimer | Xwdit | |
2022-09-02 | Merge pull request #65250 from YuriSizov/theme-owner-rises | Rémi Verschelde | |
2022-09-02 | Un-defer the initial theme changed notification | Yuri Sizov | |
Co-authored-by: Rindbee <idleman@yeah.net> | |||
2022-09-02 | Add ThemeOwner type for managing theme propagation and lookup | Yuri Sizov | |
2022-09-02 | Rename `or_lesser` range property hint to `or_less` | Hugo Locurcio | |
"less" should be used for quantity, rather than "lesser". Existing scripts that use `or_lesser` in `_get_property_list()` will need to be updated to account for this change. | |||
2022-09-02 | Merge pull request #64735 from KoBeWi/viewportshifter | Rémi Verschelde | |
2022-09-02 | Merge pull request #64952 from Chaosus/vs_rename_uniform_to_param | Rémi Verschelde | |
2022-09-02 | Fix getting an error message when repeatedly entering and exiting the tree | Rindbee | |
2022-09-01 | Simplify network GDExtension bindings using EXBIND macros. | Fabio Alessandrelli | |
Simplify StreamPeer, PacketPeer, MultiplayerPeer extension. Simplify and update WebRTC*Extension with newly supported types. | |||
2022-09-01 | Add dumb and manual theme caching systems to Window | Yuri Sizov | |
2022-09-01 | Rename `uniform` to `parameter` across the engine | Yuri Rubinsky | |
2022-09-01 | Merge pull request #65108 from MinusKube/subwindow-focused-bug | Rémi Verschelde | |
Prevent subwindow_focused from pointing to a window that is not a subwindow | |||
2022-08-31 | Implement Physical Light Units as an optional setting. | clayjohn | |
This allows light sources to be specified in physical light units in addition to the regular energy multiplier. In order to avoid loss of precision at high values, brightness values are premultiplied by an exposure normalization value. In support of Physical Light Units this PR also renames CameraEffects to CameraAttributes. | |||
2022-08-30 | Prevent subwindow_focused from pointing to a window that is not a subwindow | MinusKube | |
2022-08-30 | Merge pull request #47744 from KoBeWi/press_F_to_play_exit | Rémi Verschelde | |
2022-08-30 | Change _redraw_callback to callable_mp | kobewi | |
2022-08-30 | Merge pull request #63003 from Geometror/msaa-2d | Rémi Verschelde | |
2022-08-30 | Merge pull request #64377 from Mickeon/rename-canvas-redraw | Rémi Verschelde | |
Rename `CanvasItem.update()` to `queue_redraw()` | |||
2022-08-30 | Allow to change the Stop shortcut used at runtime | kobewi | |