summaryrefslogtreecommitdiffstats
path: root/misc
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix property type of Sprite3D `frame_coords` to Vector2i from Vector2Silc Lizard (Tokage) Renew2024-07-061-0/+7
| |
* | Remove duplicate styling from editorKristopher A2024-07-031-1/+0
|/ | | The \#status-notice styling had a duplicate visibility styling.
* Merge pull request #93511 from Repiteo/style/relocate-pretty-printRémi Verschelde2024-06-251-23/+25
|\ | | | | | | Style: Relocate `godot_gdb_pretty_print.py`
| * Style: Relocate `godot_gdb_pretty_print.py`Thaddeus Crews2024-06-231-23/+25
| |
* | Style: Optimize `.svg` files with `svgo`Thaddeus Crews2024-06-2317-235/+17
| |
* | CI: Add `svgo` pre-commit hookThaddeus Crews2024-06-231-0/+20
|/
* Merge pull request #91382 from adamscott/sample-playerRémi Verschelde2024-06-191-0/+7
|\ | | | | Add sample playback support
| * Add samples playback supportAdam Scott2024-06-181-0/+7
| |
* | CI: Add pre-commit hook for `clang-tidy`Thaddeus Crews2024-06-171-33/+0
|/ | | | | • Set to "manual" so it isn't invoked in normal workflow • Modernize `.clang-tidy` file
* Fix extension API validation warning after #92861Rémi Verschelde2024-06-111-9/+4
|
* Fix seeking Animation immediate after playback for Discrete trackSilc Lizard (Tokage) Renew2024-06-081-0/+6
|
* Make displayed Web errors more meaningfulAdam Scott2024-05-302-6/+16
|
* [iOS] Change default iPad landscape orientation from "left" to "right".bruvzg2024-05-291-1/+1
|
* Display custom data name instead of indices in TileData inspectorGilles Roudière2024-05-251-0/+7
|
* Upgrade to eslint 9patwork2024-05-221-2/+0
|
* Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-211-2/+2
|
* CI: Fix incorrect executable permsThaddeus Crews2024-05-174-0/+0
|
* Merge pull request #91416 from Calinou/d3d12-sdk-update-install-scriptRémi Verschelde2024-05-151-10/+28
|\ | | | | | | Update dependencies in D3D12 SDK installer script
| * Update dependencies in D3D12 SDK installer scriptHugo Locurcio2024-05-071-10/+28
| | | | | | | | - Add colored console output.
* | Merge pull request #91954 from Repiteo/scons/pyproject.tomlRémi Verschelde2024-05-151-13/+0
|\ \ | | | | | | | | | CI: Consolidate pysettings via `pyproject.toml`
| * | SCons: Consolidate pysettings via `pyproject.toml`Thaddeus Crews2024-05-141-13/+0
| | |
* | | Merge pull request #91377 from bruvzg/macos_privacyRémi Verschelde2024-05-151-0/+8
|\ \ \ | |/ / |/| | | | | [macOS export] Add support for privacy manifest configuration.
| * | [macOS export] Add support for privacy manifest configuration.bruvzg2024-04-301-0/+8
| | |
* | | Add Dutch tranlsation for Linux desktop filesgilissen2024-05-141-0/+2
| | |
* | | Merge pull request #91852 from patwork/fix-splash-bg-colorRémi Verschelde2024-05-131-1/+1
|\ \ \ | | | | | | | | | | | | [Web] Fix splash screen background color in HTML shell
| * | | Fix splash screen background color in HTML shellpatwork2024-05-121-1/+1
| | | |
* | | | Add antialias support for CanvasItem draw primitivesYaohua Xiong2024-05-131-0/+13
|/ / / | | | | | | | | | | | | | | | including - rect, circle; both filled and unfilled. - polyline, multiline
* | | Create a GDB pretty printing file for String, StringName, and VectorMitten Orvan2024-05-111-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-everythingRémi Verschelde2024-05-088-201/+211
|\ \ \ | | | | | | | | | | | | CI: Overhaul static checks to use `pre-commit`
| * | | CI: Overhaul static checks to use `pre-commit`Thaddeus Crews2024-05-088-201/+211
| | | |
* | | | Style: Trim trailing whitespace and ensure newline at EOFRémi Verschelde2024-05-083-4/+2
|/ / / | | | | | | | | | Found by apply the file_format checks again via #91597.
* | / Fix various typos with codespellRémi Verschelde2024-05-071-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_handheldRadiant2024-05-021-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 ↵bruvzg2024-05-021-0/+7
| | | | | | | | and a method for manual cache invalidation.
* | Extend `CanvasItem::draw_circle()` with filled, width, and antialiased optionsYaohua Xiong2024-05-021-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-exportRémi Verschelde2024-04-301-142/+64
|\ | | | | | | Splash image support and new progress bar for HTML5 Web Export
| * Added splash image support and new progress bar for web exportpatwork2024-04-251-142/+64
| |
* | Merge pull request #86978 from kitbdev/multicaret-overhaulRémi Verschelde2024-04-301-0/+8
|\ \ | | | | | | | | | Overhaul multicaret editing and selection in TextEdit
| * | Overhaul multiple caret editing in TextEdit.kit2024-04-261-0/+8
| |/ | | | | | | Use a multicaret edit to delay merging overlapping carets until the end.
* | Merge pull request #90375 from bruvzg/ios_privacyRémi Verschelde2024-04-292-0/+14
|\ \ | |/ |/| | | [iOS export] Add support for privacy manifest configuration.
| * [iOS export] Add support for privacy manifest configuration.bruvzg2024-04-162-0/+14
| |
* | Improve TextEdit/LineEdit word selection.bruvzg2024-04-221-0/+7
| |
* | Merge pull request #90645 from Malcolmnixon/unified-xr-trackersRémi Verschelde2024-04-221-0/+21
|\ \ | | | | | | | | | Rework XR Trackers to have a common ancestor
| * | Rework XR Trackers to have a common ancestor. Allow creation of XRNode3D to ↵Malcolm Nixon2024-04-181-0/+21
| | | | | | | | | | | | drive node positions and visibility.
* | | Merge pull request #90797 from Geometror/vsnode-comment-compatRémi Verschelde2024-04-181-3/+3
|\ \ \ | | | | | | | | | | | | [Compatibility] Add stub for VisualShaderNodeComment
| * | | [Compatibility] Add stub for VisualShaderNodeCommentHendrik Brucker2024-04-181-3/+3
| |/ /
* / / Add SkeletonIK3D get/set_interpolation compat from #87888Lyuma2024-04-181-3/+0
|/ /
* | Merge pull request #90759 from dsnopek/openxr-hand-revertRémi Verschelde2024-04-171-3/+0
|\ \ | | | | | | | | | Revert `OpenXRHand` to its pre-`SkeletonModifier3D` state
| * | Revert `OpenXRHand` to its pre-`SkeletonModifier3D` stateDavid Snopek2024-04-161-3/+0
| |/
* / Remove experimental constrain_avoidance from NavigationRegion2Dsmix82024-04-161-0/+13
|/ | | | Removes experimental constrain_avoidance feature from NavigationRegion2D.