Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-29 | Fix error message when exporting a write-only property without a setter | Eduardo Rodrigues | |
2020-09-28 | Merge pull request #38704 from aaronfranke/mono-dotgodot | Rémi Verschelde | |
Rename the ".mono" folder to ".godot/mono" | |||
2020-09-28 | Merge pull request #42262 from akien-mga/ios-pvrtc-fixes | Rémi Verschelde | |
iOS: Fix multiple issues with PVRTC import, disable ETC1 | |||
2020-09-26 | Avoid infinite loop in GDScript at shutdown | Pedro J. Estébanez | |
2020-09-25 | Style: Fix black formatting after #42332 | Rémi Verschelde | |
Somehow it did not run CI checks so we missed that one. Also pin `black` version to latest upstream release. | |||
2020-09-25 | Enable the `copy_mono_root` SCons option by default | Hugo Locurcio | |
This closes #41652. | |||
2020-09-24 | Merge pull request #42283 from Calinou/doc-print-push-error-warning | Rémi Verschelde | |
Improve documentation related to printing error/warning messages | |||
2020-09-24 | Merge pull request #42070 from Razoric480/ignore-cancel-request | Rémi Verschelde | |
Make LSP ignore $/cancelRequest msgs | |||
2020-09-24 | Improve documentation related to printing error/warning messages | Hugo Locurcio | |
2020-09-24 | Merge pull request #42293 from ricardoalcantara/fix_basis_csharp | Rémi Verschelde | |
Basis RotationQuat should be public. | |||
2020-09-24 | Basis RotationQuat should be public. | Ricardo Alcantara | |
2020-09-23 | Rename the ".mono" folder to ".godot/mono" | Aaron Franke | |
2020-09-23 | Merge pull request #42259 from zaevi/fix-mono-IsAbsPath | Rémi Verschelde | |
Fix C# string.IsAbsPath() | |||
2020-09-23 | Merge pull request #42126 from Calinou/doc-videoplayer-formats | Rémi Verschelde | |
Improve documentation about VideoPlayer video formats | |||
2020-09-23 | Improve documentation about VideoPlayer video formats | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/4021. | |||
2020-09-23 | iOS: Fix multiple issues with PVRTC import, disable ETC1 | Vasiliy Makarov | |
Fixes: #28683, #28621, #28596 and maybe others For iOS we enable pvrtc feature by default for all backends Etc1 for iOS doesn't have any sense, so it disabled. Fixed checks in export editor. Fixed pvrtc encoding procedure. Edit by Akien: Forward-ported from #38076, this may not make sense as is for Godot 4.0, but it's important that we have the latest code in sync with 3.2 for when more rendering backends and proper iOS support are added back. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2020-09-23 | Merge pull request #42195 from extrawurst/patch-1 | Rémi Verschelde | |
add iOS Simulator platform | |||
2020-09-23 | Fix C# string.IsAbsPath() | Zae | |
2020-09-20 | Merge pull request #41426 from madmiraal/fix-bullet-zero-scale | Rémi Verschelde | |
Check and correct for zero scaling when unscaling Bullet basis. | |||
2020-09-19 | add iOS Simulator platform | Stephan Dilly | |
without this we have to manually drop a `x86_64` builds of gdnative libs into the Xcode project to allow running in `iOS Simulator` | |||
2020-09-18 | Merge pull request #41861 from Razoric480/fix-vscript-value-by-type | Rémi Verschelde | |
Add a function to sanitize variant values in visual script | |||
2020-09-18 | Add a VScript func to sanitize variant values | Francois Belair | |
Fixes #27611 | |||
2020-09-18 | Merge pull request #41930 from RandomShaper/fix_gdscript_leaks | Rémi Verschelde | |
Fix leaks in GDScript | |||
2020-09-18 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 1.17.1. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick fave findn leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ``` | |||
2020-09-16 | Fix ExprMatch stackoverflow | Raul Santos | |
2020-09-15 | Fix certificate generation with mbedtls 2.16.8 . | Fabio Alessandrelli | |
When generating certificates with `Crypto.generate_self_signed_certificate` we generate the PEM in a buffer via `mbedtls_x509write_crt_pem`. Since version 2.16.8, mbedtls adds spurious data at the end of the buffer due to internal optimizations, this breaks our logic when we try to immediately parse it and return a proper `X509Certificate` object. This commit updates the code to find the actual PEM length to parse using `strlen`, takes extra caution always adding the terminator to the buffer, and slightly improve error messages. | |||
2020-09-15 | Make LSP ignore $/ messages | Francois Belair | |
Fixes #38814 | |||
2020-09-15 | Merge pull request #42061 from madmiraal/fix-41743 | Rémi Verschelde | |
Fix Bullet prioritised list of Areas a RigidBody is a member of element shift. | |||
2020-09-14 | Fix RigidBodyBullet areasWhereIam element shift. | Marcel Admiraal | |
2020-09-14 | Several documentation improvements | Danil Alexeev | |
2020-09-13 | Add mono log message to error for fatal errors | Tom Daffin | |
2020-09-13 | Merge pull request #42000 from aaronfranke/cs-arr-concat | Rémi Verschelde | |
Add concatenation support and a new constructor to Godot.Collections.Array | |||
2020-09-13 | C#: Fix csproj not synced on file move/removal from FS dock | Ignacio Etcheverry | |
When NormalizePath was called with an absolute path (with drive letter) on Windows, it would prepend a file path separator to the path, e.g.: '\C:\Program Files\'. Apparently this was still accepted as a valid path by DotNetGlob and it stopped working when we switched to MSBuildGlob. | |||
2020-09-12 | Add concatenation support and a new ctor to Godot.Collections.Array | Aaron Franke | |
2020-09-11 | Move GDNative `String` tests to respective module | Andrii Doroshenko (Xrayez) | |
GDNative-specific tests moved out of main `tests/` folder into `modules/gdnative/tests`. Include path for GDNative headers are still hardcoded in `tests/SCsub`, but made conditional now. Also fixed test case tag typos. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> | |||
2020-09-11 | Remove unused Python local variables. | Marcel Admiraal | |
2020-09-10 | Add main_gutter (breakpoints, bookmarks, execution lines) to code_edit | Paulb23 | |
2020-09-10 | Merge pull request #41806 from AndreaCatania/AndreaCatania-patch-4 | Rémi Verschelde | |
Avoid adding margin twice along capsule Y axis | |||
2020-09-10 | Remove unused Python imports. | Marcel Admiraal | |
2020-09-10 | Ensure cyclic dependencies between scripts are broken at exit | Pedro J. Estébanez | |
2020-09-10 | Prevent cyclic reference between script and its members | Pedro J. Estébanez | |
2020-09-09 | Make EXR import format support all depths and channel configurations | reduz | |
2020-09-09 | stb_vorbis: Increase max alloc buffer size for big Vorbis comments | Rémi Verschelde | |
The previous max worked OK for audio data, but stb_vorbis recently gained support for Vorbis comments, which can embed up to 2^32-1 bytes of data (e.g. cover art encoded as base64). We use 2^30 as max which should be sufficient for most files. Fixes #41913. | |||
2020-09-09 | Merge pull request #41904 from akien-mga/fix-clang6-compat-mutexlock | Rémi Verschelde | |
GDScript: Fix MutexLock usage, fixes Clang 6 compat | |||
2020-09-09 | GDScript: Fix MutexLock usage, fixes Clang 6 compat | Rémi Verschelde | |
Fixes #41852. | |||
2020-09-08 | Change inequality comparison operators to use exact equality | Aaron Franke | |
2020-09-08 | Merge pull request #41709 from ThakeeNathees/dictionary-indexing-bug-fix | Rémi Verschelde | |
Fixed parser error when indexing a dictionary. | |||
2020-09-08 | Merge pull request #41888 from neikeq/sln-bom | Rémi Verschelde | |
C#: Use BOM when creating a solution | |||
2020-09-08 | C#: Use BOM when creating a solution | Ignacio Etcheverry | |
At least on Windows there seems to be issues if the solution has no BOM and contains a project with cyrillic chars. | |||
2020-09-08 | C#: Fix endless reload loop if project has unicode chars | Ignacio Etcheverry | |
The assembly modified time wasn't picked properly as the path was treated as latin-1, so the file watcher was constantly firing the event. |