Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Fix property type of Sprite3D `frame_coords` to Vector2i from Vector2 | Silc Lizard (Tokage) Renew | 2024-07-06 | 1 | -0/+7 | |
| | | ||||||
* | | Remove duplicate styling from editor | Kristopher A | 2024-07-03 | 1 | -1/+0 | |
|/ | | | The \#status-notice styling had a duplicate visibility styling. | |||||
* | Merge pull request #93511 from Repiteo/style/relocate-pretty-print | Rémi Verschelde | 2024-06-25 | 1 | -23/+25 | |
|\ | | | | | | | Style: Relocate `godot_gdb_pretty_print.py` | |||||
| * | Style: Relocate `godot_gdb_pretty_print.py` | Thaddeus Crews | 2024-06-23 | 1 | -23/+25 | |
| | | ||||||
* | | Style: Optimize `.svg` files with `svgo` | Thaddeus Crews | 2024-06-23 | 17 | -235/+17 | |
| | | ||||||
* | | CI: Add `svgo` pre-commit hook | Thaddeus Crews | 2024-06-23 | 1 | -0/+20 | |
|/ | ||||||
* | Merge pull request #91382 from adamscott/sample-player | Rémi Verschelde | 2024-06-19 | 1 | -0/+7 | |
|\ | | | | | Add sample playback support | |||||
| * | Add samples playback support | Adam Scott | 2024-06-18 | 1 | -0/+7 | |
| | | ||||||
* | | CI: Add pre-commit hook for `clang-tidy` | Thaddeus Crews | 2024-06-17 | 1 | -33/+0 | |
|/ | | | | | • Set to "manual" so it isn't invoked in normal workflow • Modernize `.clang-tidy` file | |||||
* | Fix extension API validation warning after #92861 | Rémi Verschelde | 2024-06-11 | 1 | -9/+4 | |
| | ||||||
* | Fix seeking Animation immediate after playback for Discrete track | Silc Lizard (Tokage) Renew | 2024-06-08 | 1 | -0/+6 | |
| | ||||||
* | Make displayed Web errors more meaningful | Adam Scott | 2024-05-30 | 2 | -6/+16 | |
| | ||||||
* | [iOS] Change default iPad landscape orientation from "left" to "right". | bruvzg | 2024-05-29 | 1 | -1/+1 | |
| | ||||||
* | Display custom data name instead of indices in TileData inspector | Gilles Roudière | 2024-05-25 | 1 | -0/+7 | |
| | ||||||
* | Upgrade to eslint 9 | patwork | 2024-05-22 | 1 | -2/+0 | |
| | ||||||
* | Update pre-commit hooks configuration to use `ruff` instead of `black` | Jakub Marcowski | 2024-05-21 | 1 | -2/+2 | |
| | ||||||
* | CI: Fix incorrect executable perms | Thaddeus Crews | 2024-05-17 | 4 | -0/+0 | |
| | ||||||
* | Merge pull request #91416 from Calinou/d3d12-sdk-update-install-script | Rémi Verschelde | 2024-05-15 | 1 | -10/+28 | |
|\ | | | | | | | Update dependencies in D3D12 SDK installer script | |||||
| * | Update dependencies in D3D12 SDK installer script | Hugo Locurcio | 2024-05-07 | 1 | -10/+28 | |
| | | | | | | | | - Add colored console output. | |||||
* | | Merge pull request #91954 from Repiteo/scons/pyproject.toml | Rémi Verschelde | 2024-05-15 | 1 | -13/+0 | |
|\ \ | | | | | | | | | | CI: Consolidate pysettings via `pyproject.toml` | |||||
| * | | SCons: Consolidate pysettings via `pyproject.toml` | Thaddeus Crews | 2024-05-14 | 1 | -13/+0 | |
| | | | ||||||
* | | | Merge pull request #91377 from bruvzg/macos_privacy | Rémi Verschelde | 2024-05-15 | 1 | -0/+8 | |
|\ \ \ | |/ / |/| | | | | | [macOS export] Add support for privacy manifest configuration. | |||||
| * | | [macOS export] Add support for privacy manifest configuration. | bruvzg | 2024-04-30 | 1 | -0/+8 | |
| | | | ||||||
* | | | Add Dutch tranlsation for Linux desktop file | sgilissen | 2024-05-14 | 1 | -0/+2 | |
| | | | ||||||
* | | | Merge pull request #91852 from patwork/fix-splash-bg-color | Rémi Verschelde | 2024-05-13 | 1 | -1/+1 | |
|\ \ \ | | | | | | | | | | | | | [Web] Fix splash screen background color in HTML shell | |||||
| * | | | Fix splash screen background color in HTML shell | patwork | 2024-05-12 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Add antialias support for CanvasItem draw primitives | Yaohua Xiong | 2024-05-13 | 1 | -0/+13 | |
|/ / / | | | | | | | | | | | | | | | | including - rect, circle; both filled and unfilled. - polyline, multiline | |||||
* | | | Create a GDB pretty printing file for String, StringName, and Vector | Mitten Orvan | 2024-05-11 | 1 | -0/+116 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GDB supports custom pretty-printers implemented in Python. When debugging Godot, checking the values of Strings and StringNames in the debugger was very inconvenient as the data is fairly deep in the structure. This makes the values immediately visible. The custom pretty printer can be taken into use manually by calling `source misc/scripts/godot_gdb_pretty_print.py` in the GDB console. In VS code, it can be activated by default by adding the source command to the `setupCommands` of the configuration in launch.json. Like this: ```json // launch.json { "configurations": [ { "name": "C/C++: debug, "type": "cppdbg", ... "MIMode": "gdb", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true }, { "description": "Load custom pretty-printers for Godot types.", "text": "source ${workspaceRoot}/misc/scripts/godot_gdb_pretty_print.py" } ], "miDebuggerPath": "gdb" } ], "version": "2.0.0" } ``` Extended the pretty-printer python script to support Vectors. The printer needs to be uncomfortably aware of CowData implementation details, but I don't think there is any way around that. | |||||
* | | | Merge pull request #91597 from Repiteo/ci/pre-commit-handle-everything | Rémi Verschelde | 2024-05-08 | 8 | -201/+211 | |
|\ \ \ | | | | | | | | | | | | | CI: Overhaul static checks to use `pre-commit` | |||||
| * | | | CI: Overhaul static checks to use `pre-commit` | Thaddeus Crews | 2024-05-08 | 8 | -201/+211 | |
| | | | | ||||||
* | | | | Style: Trim trailing whitespace and ensure newline at EOF | Rémi Verschelde | 2024-05-08 | 3 | -4/+2 | |
|/ / / | | | | | | | | | | Found by apply the file_format checks again via #91597. | |||||
* | / | Fix various typos with codespell | Rémi Verschelde | 2024-05-07 | 1 | -1/+1 | |
| |/ |/| | | | | | | | | | | | | | | | Using 2.2.7.dev217+g10c2abcf. Had to add `colour` to the ignore list as we used it as an alias/keyword for the documentation of color-related APIs. Also ignore recommendations to change `thirdparty` to either `third-party` or `third party`, which are correct but we use the former fairly consistently. | |||||
* | | Implement `amplitude` to Input.vibrate_handheld | Radiant | 2024-05-02 | 1 | -0/+7 | |
| | | | | | | | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: m4gr3d <m4gr3d@users.noreply.github.com> | |||||
* | | [RTL] Adds extra argument to `remove_paragraph` to skip cache invalidation ↵ | bruvzg | 2024-05-02 | 1 | -0/+7 | |
| | | | | | | | | and a method for manual cache invalidation. | |||||
* | | Extend `CanvasItem::draw_circle()` with filled, width, and antialiased options | Yaohua Xiong | 2024-05-02 | 1 | -0/+7 | |
|/ | | | | Make it possible to draw unfilled circle, like draw_rect(). Antialising is only implemented for unfilled version. | |||||
* | Merge pull request #91128 from patwork/splash-image-in-web-export | Rémi Verschelde | 2024-04-30 | 1 | -142/+64 | |
|\ | | | | | | | Splash image support and new progress bar for HTML5 Web Export | |||||
| * | Added splash image support and new progress bar for web export | patwork | 2024-04-25 | 1 | -142/+64 | |
| | | ||||||
* | | Merge pull request #86978 from kitbdev/multicaret-overhaul | Rémi Verschelde | 2024-04-30 | 1 | -0/+8 | |
|\ \ | | | | | | | | | | Overhaul multicaret editing and selection in TextEdit | |||||
| * | | Overhaul multiple caret editing in TextEdit. | kit | 2024-04-26 | 1 | -0/+8 | |
| |/ | | | | | | | Use a multicaret edit to delay merging overlapping carets until the end. | |||||
* | | Merge pull request #90375 from bruvzg/ios_privacy | Rémi Verschelde | 2024-04-29 | 2 | -0/+14 | |
|\ \ | |/ |/| | | | [iOS export] Add support for privacy manifest configuration. | |||||
| * | [iOS export] Add support for privacy manifest configuration. | bruvzg | 2024-04-16 | 2 | -0/+14 | |
| | | ||||||
* | | Improve TextEdit/LineEdit word selection. | bruvzg | 2024-04-22 | 1 | -0/+7 | |
| | | ||||||
* | | Merge pull request #90645 from Malcolmnixon/unified-xr-trackers | Rémi Verschelde | 2024-04-22 | 1 | -0/+21 | |
|\ \ | | | | | | | | | | Rework XR Trackers to have a common ancestor | |||||
| * | | Rework XR Trackers to have a common ancestor. Allow creation of XRNode3D to ↵ | Malcolm Nixon | 2024-04-18 | 1 | -0/+21 | |
| | | | | | | | | | | | | drive node positions and visibility. | |||||
* | | | Merge pull request #90797 from Geometror/vsnode-comment-compat | Rémi Verschelde | 2024-04-18 | 1 | -3/+3 | |
|\ \ \ | | | | | | | | | | | | | [Compatibility] Add stub for VisualShaderNodeComment | |||||
| * | | | [Compatibility] Add stub for VisualShaderNodeComment | Hendrik Brucker | 2024-04-18 | 1 | -3/+3 | |
| |/ / | ||||||
* / / | Add SkeletonIK3D get/set_interpolation compat from #87888 | Lyuma | 2024-04-18 | 1 | -3/+0 | |
|/ / | ||||||
* | | Merge pull request #90759 from dsnopek/openxr-hand-revert | Rémi Verschelde | 2024-04-17 | 1 | -3/+0 | |
|\ \ | | | | | | | | | | Revert `OpenXRHand` to its pre-`SkeletonModifier3D` state | |||||
| * | | Revert `OpenXRHand` to its pre-`SkeletonModifier3D` state | David Snopek | 2024-04-16 | 1 | -3/+0 | |
| |/ | ||||||
* / | Remove experimental constrain_avoidance from NavigationRegion2D | smix8 | 2024-04-16 | 1 | -0/+13 | |
|/ | | | | Removes experimental constrain_avoidance feature from NavigationRegion2D. |