| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|
|
|
| |
Fix create_test.py missing Redot copyright reference
|
| |
|
|
|
|
| |
As a result of `misc/dist/macos_tools.app/Contents/Info.plist` referencing Redot.icns
|
|
|
|
| |
`misc/dist/macos_tools.app/Contents/Resources/Project.icns` still has as its icon, will need to be fixed later
|
| |
|
|
|
|
| |
(cherry picked from commit a2c29bdf789cac71e001092777e4a28016d77b1f)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084)
Credits:
Co-authored-by: Skogi <skogi.b@gmail.com>
Co-authored-by: Spartan322 <Megacake1234@gmail.com>
Co-authored-by: swashberry <swashdev@pm.me>
Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: radenthefolf <radenthefolf@gmail.com>
Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com>
Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com>
Co-authored-by: decryptedchaos <nixgod@gmail.com>
Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com>
Co-authored-by: Mister Puma <MisterPuma80@gmail.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: SingleError <isaaconeoneone@gmail.com>
Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
|
| |
|
|
|
|
| |
And update CI base branch to 4.3.
|
|\
| |
| | |
Fix `header_guards.py` so it detects the copyright header properly.
|
| |
| |
| |
| |
| | |
Having hardcoded offsets is a problem if the copyright header ever changes
or when running on forks with different copyright header formats.
|
|\ \
| | |
| | |
| | | |
SCons: Fix output with `vsproj=yes`
|
| | | |
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This switches to 64-bit integers in select locations of the Image
class, so that image resolutions of 16384×16384 (used by
lightmap texture arrays) can be used properly. Values that are larger
should also work.
VRAM compression is also supported, although most VRAM-compressed
formats are limited to individual slices of 16384×16384. WebP
is limited to 16383×16383 due to format limitations.
|
| | |
|
| | |
|
| | |
|
|/
|
| |
The \#status-notice styling had a duplicate visibility styling.
|
|\
| |
| |
| | |
Style: Relocate `godot_gdb_pretty_print.py`
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
Add sample playback support
|
| | |
|
|/
|
|
|
| |
• Set to "manual" so it isn't invoked in normal workflow
• Modernize `.clang-tidy` file
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| | |
Update dependencies in D3D12 SDK installer script
|
| |
| |
| |
| | |
- Add colored console output.
|
|\ \
| | |
| | |
| | | |
CI: Consolidate pysettings via `pyproject.toml`
|
| | | |
|
|\ \ \
| |/ /
|/| |
| | | |
[macOS export] Add support for privacy manifest configuration.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
[Web] Fix splash screen background color in HTML shell
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
including
- rect, circle; both filled and unfilled.
- polyline, multiline
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| | | |
| | | |
| | | | |
CI: Overhaul static checks to use `pre-commit`
|
| | | | |
|
|/ / /
| | |
| | |
| | | |
Found by apply the file_format checks again via #91597.
|