Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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 | 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. | |||
2020-09-08 | Merge pull request #41875 from nekomatata/webrtc-doc-turn-server | Rémi Verschelde | |
Fix TURN server example in WebRTC documentation | |||
2020-09-08 | Fix TURN server example in WebRTC documentation | PouleyKetchoupp | |
WebRTC GDNative plugin uses `credential` and not `credentials`. https://github.com/godotengine/webrtc-native/blob/74f2c78db5cdffa5b2b6ba9cd041061d7694400c/src/WebRTCLibPeerConnection.cpp#L35-L37 | |||
2020-09-07 | Merge pull request #38308 from bruvzg/sad_security_circus | Rémi Verschelde | |
Adds PCK encryption support (using script encryption key for export). | |||
2020-09-06 | Merge pull request #41813 from madmiraal/add-missing-header-guards | Rémi Verschelde | |
Fix header guards in modules. | |||
2020-09-06 | Fix header guards in modules: | Marcel Admiraal | |
- Add missing header guards to various modules' register_types.h - Add header guard to basis_universal/texture_basisu.h. - Ensure header guard encloses entire header in webrtc/webrtc_data_channel_js.h. | |||
2020-09-06 | Merge pull request #41803 from ThakeeNathees/parameter-type-infer-bug-fix | Rémi Verschelde | |
GDScript: parameter infer type bug fix | |||
2020-09-06 | Avoid adding margin twice along capsule Y axis | Andrea Catania | |
2020-09-06 | GDScript: parameter infer type bug fix | Thakee Nathees | |
Fix: #41772 |