-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge commit godotengine/godot@61accf0 #814
Commits on Mar 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ab30c68 - Browse repository at this point
Copy the full SHA ab30c68View commit details
Commits on Jun 24, 2024
-
Add default keyboard shortcuts to various actions in the FileSystem dock
Some of these shortcuts are inspired by Visual Studio Code's defaults. - Ctrl + Alt + C: Copy Absolute Path - Ctrl + Alt + Shift + C: Copy UID - Ctrl + Alt + R: Open in File Manager - Ctrl + Alt + E: Open in External Program - Ctrl + Alt + T: Open in Terminal - Note: On Linux distributions that have Ctrl + Alt + T as a default shortcut to open a terminal, the system shortcut takes priority over this one. The "Open Containing Folder in Terminal" text was shortened so that the context menu doesn't become too wide with the default shortcut annotations.
Configuration menu - View commit details
-
Copy full SHA for c1cd863 - Browse repository at this point
Copy the full SHA c1cd863View commit details
Commits on Aug 6, 2024
-
Use the Dummy audio driver in the project manager
This prevents Godot from appearing in the list of applications outputting sound in the OS while the user is in the project manager.
Configuration menu - View commit details
-
Copy full SHA for da4683c - Browse repository at this point
Copy the full SHA da4683cView commit details
Commits on Sep 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 16f3d52 - Browse repository at this point
Copy the full SHA 16f3d52View commit details
Commits on Sep 14, 2024
-
Fixed resource loader using not fully loaded scripts
Moritz Burgdorff committedSep 14, 2024 Configuration menu - View commit details
-
Copy full SHA for fd5fc9f - Browse repository at this point
Copy the full SHA fd5fc9fView commit details
Commits on Sep 20, 2024
-
ColorPicker: ignore TextureRect expand mode during legacy picking
The color picker has a "legacy" fallback mode when `FEATURE_SCREEN_CAPTURE` is not supported by the current `DisplayServer`. It works by "freezing" the current view by making a huge `Popup` with a `TextureRect` inside covering the screen. Before this patch, said `TextureRect` could get cut off if its buffer was nominally bigger than the parent popup, such as when the `canvas_items` content scale mode is active. This is because the default TextureRect scaling logic only allows expanding the texture up. `EXPAND_IGNORE_SIZE` fixes that by allowing the texture to logically "shrink", filling the whole screen independently of the actual buffer size. Special thanks to Federico Fausto Santoro for helping with the diagnosis :D Co-Authored-By: Federico Fausto Santoro <fedyfausto@hotmail.com>
Configuration menu - View commit details
-
Copy full SHA for ef48c4d - Browse repository at this point
Copy the full SHA ef48c4dView commit details
Commits on Sep 22, 2024
-
Fix
font_hover_pressed_color
andicon_hover_pressed_color
not wor……king for no stylebox use on `Button` You now don't need to have a `hover_pressed` stylebox to make use of `font_hover_pressed_color` and `icon_hover_pressed_color`.
Configuration menu - View commit details
-
Copy full SHA for 6d4d5f9 - Browse repository at this point
Copy the full SHA 6d4d5f9View commit details
Commits on Sep 23, 2024
-
Fixing TreeItem get_prev_xxx methods when p_wrap is true
Fixes #85032 The code that fix the issue is courtesy of @Jesusemora, I just added unit tests for it and did a rebase with the latest changes on master. Co-authored-by: Jesusemora <32273722+Jesusemora@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 9c0afbb - Browse repository at this point
Copy the full SHA 9c0afbbView commit details
Commits on Oct 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7377ca8 - Browse repository at this point
Copy the full SHA 7377ca8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 256699e - Browse repository at this point
Copy the full SHA 256699eView commit details
Commits on Oct 6, 2024
-
Build System: Extract
validate_arch
helper functionSigned-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7aacdaa - Browse repository at this point
Copy the full SHA 7aacdaaView commit details
Commits on Oct 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1a2c574 - Browse repository at this point
Copy the full SHA 1a2c574View commit details
Commits on Oct 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9ea357a - Browse repository at this point
Copy the full SHA 9ea357aView commit details
Commits on Oct 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 16aae0d - Browse repository at this point
Copy the full SHA 16aae0dView commit details
Commits on Oct 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ed3f990 - Browse repository at this point
Copy the full SHA ed3f990View commit details
Commits on Oct 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5adb489 - Browse repository at this point
Copy the full SHA 5adb489View commit details -
Configuration menu - View commit details
-
Copy full SHA for b4fd9d1 - Browse repository at this point
Copy the full SHA b4fd9d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd6138e - Browse repository at this point
Copy the full SHA fd6138eView commit details -
Don't swap Advanced Import Settings button position based on Swap OK …
…Cancel The "Advanced..." and "Reimport" buttons are not OK/Cancel buttons, so they shouldn't be swapped according to the editor setting (which itself is determined depending on the OS by default).
Configuration menu - View commit details
-
Copy full SHA for 567db2e - Browse repository at this point
Copy the full SHA 567db2eView commit details
Commits on Oct 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8baaa2d - Browse repository at this point
Copy the full SHA 8baaa2dView commit details
Commits on Oct 20, 2024
-
Add checks for valid base in String::num_int64, uint64().
- Ensure String::num_int64, uint64 returns an empty string for bases less than 2 or greater than 36. - Added corresponding test cases to verify the behavior. - Error messages are printed when invalid bases are encountered. These messages are suppressed in the test output.
Configuration menu - View commit details
-
Copy full SHA for b3b24de - Browse repository at this point
Copy the full SHA b3b24deView commit details
Commits on Oct 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for be41e6f - Browse repository at this point
Copy the full SHA be41e6fView commit details -
Allow use RID with
in
operator for Arrays and DictionariesSigned-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ee5d908 - Browse repository at this point
Copy the full SHA ee5d908View commit details -
Add some comments to #endif's where it will easier life
Also added some new line to improve readability Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com> Co-authored-by: Danil Alexeev <danil@alexeev.xyz>
Configuration menu - View commit details
-
Copy full SHA for 8c29ef3 - Browse repository at this point
Copy the full SHA 8c29ef3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ab72082 - Browse repository at this point
Copy the full SHA ab72082View commit details
Commits on Oct 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for eb8b989 - Browse repository at this point
Copy the full SHA eb8b989View commit details -
Configuration menu - View commit details
-
Copy full SHA for 82b53b1 - Browse repository at this point
Copy the full SHA 82b53b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34f5d01 - Browse repository at this point
Copy the full SHA 34f5d01View commit details -
Add
AudioServer.get_driver_name()
to get the actual audio driver nameThe project setting does not reflect CLI argument overrides (including `--headless` which sets the audio driver to `Dummy`), so it can't be reliably used to detect which audio driver is actually being used at run-time.
Configuration menu - View commit details
-
Copy full SHA for 77c31b9 - Browse repository at this point
Copy the full SHA 77c31b9View commit details
Commits on Oct 23, 2024
-
Fix race conditions in breadcrumbs
Adds "--accurate-breadcrumbs" CLI command Additionally, leave out breadcrumbs code in non-debug, non-dev builds. Fix regression introduced in #98388 where command_insert_breadcrumb() is called even in non-debug builds. Fixes #98338
Configuration menu - View commit details
-
Copy full SHA for 668c9b7 - Browse repository at this point
Copy the full SHA 668c9b7View commit details -
No freezing when size in header is too large
Give warning if the size in header mismatch the actual file size. If data chunk size is greater than the actual data size, try to import by treating all the remaining data as data chunk and give warning to users.
Configuration menu - View commit details
-
Copy full SHA for cd126a0 - Browse repository at this point
Copy the full SHA cd126a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for e2386de - Browse repository at this point
Copy the full SHA e2386deView commit details -
Increase range hint for StyleBoxFlat
border_width
,corner_radius
……and `expand_margin`
Configuration menu - View commit details
-
Copy full SHA for ad24dd4 - Browse repository at this point
Copy the full SHA ad24dd4View commit details
Commits on Oct 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8f7e8c5 - Browse repository at this point
Copy the full SHA 8f7e8c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 463e814 - Browse repository at this point
Copy the full SHA 463e814View commit details -
Configuration menu - View commit details
-
Copy full SHA for abb9c0f - Browse repository at this point
Copy the full SHA abb9c0fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 76208f7 - Browse repository at this point
Copy the full SHA 76208f7View commit details
Commits on Oct 25, 2024
-
Add Generate LODs, Shadow Mesh and Lightmap UV2 options to OBJ mesh i…
…mport This puts OBJ mesh import on parity with 3D scene import. It's now possible to have the same level of optimization as imported 3D scenes while using the OBJ mesh workflow. `optimize_indices_for_cache()` is now always called on import as well, similar to what the 3D scene import already does.
Configuration menu - View commit details
-
Copy full SHA for b8ee61f - Browse repository at this point
Copy the full SHA b8ee61fView commit details -
Merge pull request #98493 from KoBeWi/tfw_you_trade_CLASH_for_a_CRASH
Fix InputEvent crash when opening project
Configuration menu - View commit details
-
Copy full SHA for a9e5850 - Browse repository at this point
Copy the full SHA a9e5850View commit details -
Merge pull request #98480 from tetrapod00/link-project-settings-tutorial
Docs: Link to Project Settings tutorial from ProjectSettings class
Configuration menu - View commit details
-
Copy full SHA for 67dbb46 - Browse repository at this point
Copy the full SHA 67dbb46View commit details -
Merge pull request #98471 from dsnopek/openxr-composition-layers-visi…
…bility-bug Fix bug with OpenXR composition layers added after OpenXR is running
Configuration menu - View commit details
-
Copy full SHA for 7ebb3a4 - Browse repository at this point
Copy the full SHA 7ebb3a4View commit details -
Merge pull request #98400 from rune-scape/fix-typed-dict-cached-parser
GDScript: Fix cached parser error when using typed Dictionaries
Configuration menu - View commit details
-
Copy full SHA for 38f2144 - Browse repository at this point
Copy the full SHA 38f2144View commit details -
Merge pull request #98368 from KoBeWi/color_picking_active_your_color…
…_is_now_being_picked_please_pick_your_color Fix legacy picking label bounds
Configuration menu - View commit details
-
Copy full SHA for 6bd24cb - Browse repository at this point
Copy the full SHA 6bd24cbView commit details -
Merge pull request #98363 from dustdfg/rid_in_operator_fix
Allow using RID with `in` operator for Arrays and Dictionaries
Configuration menu - View commit details
-
Copy full SHA for b4ba0f9 - Browse repository at this point
Copy the full SHA b4ba0f9View commit details -
Merge pull request #98356 from dustdfg/gdscript_endif_readability_com…
…ments Add some comments to `#endif's` where it helps readability
Configuration menu - View commit details
-
Copy full SHA for b5368d5 - Browse repository at this point
Copy the full SHA b5368d5View commit details -
Merge pull request #98323 from Calinou/advanced-import-settings-butto…
…n-no-swap-ok-cancel Don't swap Advanced Import Settings button position based on Swap OK Cancel
Configuration menu - View commit details
-
Copy full SHA for 2a8869e - Browse repository at this point
Copy the full SHA 2a8869eView commit details -
Merge pull request #98305 from cadence-s/fix-ios-audio-driver-error
Fix iOS audio driver attempting to start output too early
Configuration menu - View commit details
-
Copy full SHA for a1c7998 - Browse repository at this point
Copy the full SHA a1c7998View commit details -
Merge pull request #98357 from yeojunh/valid-base-check-num-int64-uint64
Core: Fix String::num_int64(), uint64 for valid base check
Configuration menu - View commit details
-
Copy full SHA for 33db590 - Browse repository at this point
Copy the full SHA 33db590View commit details -
Merge pull request #98318 from alexkar598/mouse_emulation
Fix mouse emulation always sending events to the main window
Configuration menu - View commit details
-
Copy full SHA for f83a273 - Browse repository at this point
Copy the full SHA f83a273View commit details -
Merge pull request #97335 from SlienCode/master
Fix `font_hover_pressed_color` and `icon_hover_pressed_color` not working for no stylebox use on `Button`
Configuration menu - View commit details
-
Copy full SHA for cb618e4 - Browse repository at this point
Copy the full SHA cb618e4View commit details -
Merge pull request #98293 from timothyqiu/emptiness-is-indeed-form
Fix error when undo tile deletion in TileSetAtlasSourceEditor
Configuration menu - View commit details
-
Copy full SHA for e952651 - Browse repository at this point
Copy the full SHA e952651View commit details -
Merge pull request #98257 from Rudolph-B/94210-B
Fix to occlusion culling where all math is based on Euclidean distance.
Configuration menu - View commit details
-
Copy full SHA for 78a4e63 - Browse repository at this point
Copy the full SHA 78a4e63View commit details -
Expose
Geometry2D.bresenham_line()
methodCo-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
Configuration menu - View commit details
-
Copy full SHA for 9f0ae21 - Browse repository at this point
Copy the full SHA 9f0ae21View commit details -
Merge pull request #98448 from Chaosus/shader_global_builtins
Make `OUTPUT_IS_SRGB/CLIP_SPACE_FAR` shader built-ins global
Configuration menu - View commit details
-
Copy full SHA for 6732a0f - Browse repository at this point
Copy the full SHA 6732a0fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4dc5688 - Browse repository at this point
Copy the full SHA 4dc5688View commit details -
Merge pull request #98435 from Calinou/audio-add-get-driver-name
Add `AudioServer.get_driver_name()` to get the actual audio driver name
Configuration menu - View commit details
-
Copy full SHA for 1f346a5 - Browse repository at this point
Copy the full SHA 1f346a5View commit details -
Merge pull request #97157 from pafuent/fixing_tree_item_get_prev_wrap
Fix `TreeItem` `get_prev*` methods when `p_wrap` is `true`
Configuration menu - View commit details
-
Copy full SHA for 4aad050 - Browse repository at this point
Copy the full SHA 4aad050View commit details -
Merge pull request #93578 from Calinou/editor-filesystem-dock-context…
…-add-shortcuts Add default keyboard shortcuts to various actions in the FileSystem dock
Configuration menu - View commit details
-
Copy full SHA for f8f7e42 - Browse repository at this point
Copy the full SHA f8f7e42View commit details -
Merge pull request #92554 from Nazarwadim/implement_a_hash_map
Implement array based hash map `AHashMap`
Configuration menu - View commit details
-
Copy full SHA for 6e9907d - Browse repository at this point
Copy the full SHA 6e9907dView commit details -
Merge pull request #84368 from dalexeev/gds-rework-util-funcs-macros
GDScript: Rework `GDScriptUtilityFunctions` macros
Configuration menu - View commit details
-
Copy full SHA for 955c056 - Browse repository at this point
Copy the full SHA 955c056View commit details -
Merge pull request #96786 from passivestar/spin-slider-focus-fix
Fix EditorSpinSlider blocking viewport from getting focus
Configuration menu - View commit details
-
Copy full SHA for cf313e4 - Browse repository at this point
Copy the full SHA cf313e4View commit details -
Merge pull request #97555 from dustdfg/platform_methods/extract_valid…
…ate_arch Build System: Extract `validate_arch` helper functions
Configuration menu - View commit details
-
Copy full SHA for 17f06f6 - Browse repository at this point
Copy the full SHA 17f06f6View commit details -
Merge pull request #94108 from Calinou/obj-import-add-generate-lods-s…
…hadow-mesh-lightmap-uv2 Add Generate LODs, Shadow Mesh and Lightmap UV2 options to OBJ mesh import
Configuration menu - View commit details
-
Copy full SHA for de6814d - Browse repository at this point
Copy the full SHA de6814dView commit details -
Merge pull request #98332 from syntaxerror247/Improve-HttpRequest-Docs
Add missing `HTTPRequest` Result descriptions.
Configuration menu - View commit details
-
Copy full SHA for eb18b0d - Browse repository at this point
Copy the full SHA eb18b0dView commit details -
Merge pull request #96927 from HolonProduction/completion-inner-class…
…-base-crash Autocompletion: Don't use owner for inner classes
Configuration menu - View commit details
-
Copy full SHA for 7da6d60 - Browse repository at this point
Copy the full SHA 7da6d60View commit details -
Merge pull request #98477 from Calinou/styleboxflat-corner-radius-inc…
…rease-range-hint Increase range hint for StyleBoxFlat `border_width`, `corner_radius` and `expand_margin`
Configuration menu - View commit details
-
Copy full SHA for 2c87cb6 - Browse repository at this point
Copy the full SHA 2c87cb6View commit details -
Merge pull request #97966 from mh114/mh114-fix-control-doc-typo
Fix a documentation typo in `Control._drop_data()` C#-example.
Configuration menu - View commit details
-
Copy full SHA for 422535e - Browse repository at this point
Copy the full SHA 422535eView commit details -
Merge pull request #97711 from EAinsley/fix#94718
Fix freeze when data chunk size in WAV header is larger than the actual size
Configuration menu - View commit details
-
Copy full SHA for 851516e - Browse repository at this point
Copy the full SHA 851516eView commit details -
Merge pull request #97212 from Riteo/picking-the-right-expand-mode
ColorPicker: Ignore TextureRect expand mode during legacy picking
Configuration menu - View commit details
-
Copy full SHA for 814187d - Browse repository at this point
Copy the full SHA 814187dView commit details -
Merge pull request #90047 from ajreckof/fix-editing-exported-nodes-in…
…-array-as-text Fix editing exported nodes in array as text.
Configuration menu - View commit details
-
Copy full SHA for cd3c86d - Browse repository at this point
Copy the full SHA cd3c86dView commit details -
Merge pull request #38208 from Calinou/project-manager-use-dummy-audi…
…o-driver Use the Dummy audio driver in the project manager
Configuration menu - View commit details
-
Copy full SHA for 9554e3c - Browse repository at this point
Copy the full SHA 9554e3cView commit details -
Merge pull request #97090 from KoBeWi/secret_cloning_research
Don't rescan filesystem when duplicating
Configuration menu - View commit details
-
Copy full SHA for 6ad513b - Browse repository at this point
Copy the full SHA 6ad513bView commit details -
Merge pull request #98378 from dalexeev/doc-clarify-engine-debugger
Clarify `EngineDebugger` and `EditorDebugger*` documentation
Configuration menu - View commit details
-
Copy full SHA for a2e3473 - Browse repository at this point
Copy the full SHA a2e3473View commit details -
Merge pull request #74714 from dalexeev/expose-bresenham-line
Expose `Geometry2D.bresenham_line()` method
Configuration menu - View commit details
-
Copy full SHA for 02088ab - Browse repository at this point
Copy the full SHA 02088abView commit details -
Merge pull request #98395 from Repiteo/core/char-range-utils-update
Core: Update `char_range.inc` to Unicode 16
Configuration menu - View commit details
-
Copy full SHA for d3298fe - Browse repository at this point
Copy the full SHA d3298feView commit details -
Merge pull request #97771 from dsnopek/openxr-linux-egl
OpenXR: Add support for Wayland on Linux
Configuration menu - View commit details
-
Copy full SHA for 07e759b - Browse repository at this point
Copy the full SHA 07e759bView commit details -
Merge pull request #96499 from beev1s/shallow-script-cache-error
Fix resource loader not resolving shallow loaded scripts through dependencies
Configuration menu - View commit details
-
Copy full SHA for 2584f75 - Browse repository at this point
Copy the full SHA 2584f75View commit details -
Merge pull request #98421 from Calinou/doc-backbuffercopy-screen-read…
…ing-shaders-tutorial Link to Screen-reading shaders tutorial in BackBufferCopy documentation
Configuration menu - View commit details
-
Copy full SHA for 15bec19 - Browse repository at this point
Copy the full SHA 15bec19View commit details -
Merge pull request #98425 from darksylinc/matias-breadcrumbs-race-fix
Fix race conditions in breadcrumbs
Configuration menu - View commit details
-
Copy full SHA for edad871 - Browse repository at this point
Copy the full SHA edad871View commit details -
Merge pull request #97535 from HolonProduction/gizmo-cylinder
Editor: Improve cylinder gizmos
Configuration menu - View commit details
-
Copy full SHA for 61accf0 - Browse repository at this point
Copy the full SHA 61accf0View commit details
Commits on Oct 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 953af98 - Browse repository at this point
Copy the full SHA 953af98View commit details