Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Using codespell 1.14.0.
Method:
```
$ cat > ../godot-word-whitelist.txt << EOF
ang
doubleclick
lod
nd
numer
que
te
unselect
EOF
$ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po"
$ git diff // undo unwanted changes
```
|
|
|
|
Happy new year to the wonderful Godot community!
|
|
|
|
|
|
When creating script and file selected in filesystem dock,
between file name and directory path there is no "/" symbol.
This commit fix that bug.
|
|
|
|
Remove the thumnail-only view from the filesystem dock
|
|
Small capitalization fixes across the editor
|
|
|
|
|
|
|
|
|
|
Make folders clicked in the filesystem dock open the selected folder
|
|
|
|
If the user tried to create folder with *, | or > in its name it would
return a generic error "Could not create folder."
Now the same message is shown when creating a folder with /, \\, :, *,
|, > or ending with . or an empty space.
|
|
Prior to this, file references in autoload were not updated when a
script was moved or renamed. This adds extra logic to update the
autoload references when updating project settings.
Fixes #22995.
|
|
|
|
FileSystem dock
|
|
|
|
|
|
|
|
Fix import tab not updating when selecting in the tree view
|
|
|
|
|
|
Prevent built-in-scripts from being made from FileSystem dock
|
|
|
|
Fixes filesystem display mode not updating at startup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This allows more consistency in the manner we include core headers,
where previously there would be a mix of absolute, relative and
include path-dependent includes.
|