Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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 | |||
2020-09-06 | Handle csproj "Remove" globs | Alex de la Mare | |
MSBuild Item returns empty strings if an attribute isn't set (which caused an IndexOutOfRangeException in NormalizePath). We were treating Excludes incorrectly, Remove directives provide the intended behaviour in the auto-including csproj format. | |||
2020-09-05 | Adds PCK encryption support (using script encryption key for export). | bruvzg | |
Change default encryption mode from ECB to CFB. | |||
2020-09-04 | Fix Mono path utils char types. | bruvzg | |
2020-09-04 | Merge pull request #41760 from ↵ | Rémi Verschelde | |
ThakeeNathees/null-dereference-on-gdscript-function-fix null pointer dereference at GDScriptFunction::call crash fix | |||
2020-09-04 | null pointer dereference at GDScriptFunction::call fix | Thakee Nathees | |
2020-09-04 | Merge pull request #41753 from neikeq/csharp-hide-build-button-if-no-proj | Rémi Verschelde | |
C#: Hide Build button if there's no solution to build | |||
2020-09-04 | Merge pull request #41747 from neikeq/issue-41446 | Rémi Verschelde | |
Fix parsing of C# files with spaces in the path | |||
2020-09-04 | Merge pull request #41750 from neikeq/issue-41745 | Rémi Verschelde | |
C#: Fix Godot failing to find class namespace | |||
2020-09-04 | Merge pull request #41748 from neikeq/issue-41712 | Rémi Verschelde | |
Fix 'Parameter "assembly" is null' error | |||
2020-09-04 | C#: Hide Build button if there's no solution to build | Ignacio Etcheverry | |
Same as we do with the bottom panel. Mainly to avoid bothering if the project is not using C#. | |||
2020-09-04 | C#: Fix Godot failing to find class namespace | Ignacio Etcheverry | |
2020-09-04 | Fix 'Parameter "assembly" is null' error | Ignacio Etcheverry | |
This error was normally being printed when trying to open the project assembly while the project was not yet built. The error should not be printed. It's the job of this method's caller to decide whether to print an error or not if loading failed. | |||
2020-09-04 | Fix parsing of C# files with spaces in the path | Ignacio Etcheverry | |
2020-09-03 | [Complex Test Layouts] Change `String` to use UTF-32 encoding on all platforms. | bruvzg | |
2020-09-03 | fixed parser error when indexing a dictionary. | Thakee Nathees | |
Fix: #41707 | |||
2020-09-03 | Ensure header guards enclose entire header. | Marcel Admiraal | |
2020-09-03 | Merge pull request #41459 from Paulb23/nested_color_regions | Rémi Verschelde | |
Fix colour region end key seach and start key order | |||
2020-09-03 | C#: Fix Windows detection for copying MSBuild stub | Ignacio Etcheverry | |
Previous condition checked only the host platform. This was a problem as our official builds are from Linux. | |||
2020-09-02 | Fix GDScript codegen leak. | bruvzg | |
2020-09-02 | Merge python EnvironmentError, IOError and WindowsError into OSError. | Marcel Admiraal | |
2020-09-02 | Register GDScript test tools as test commands to run via command-line | Andrii Doroshenko (Xrayez) | |
2020-09-02 | Move GDScript tests to respective folder under modules | Andrii Doroshenko (Xrayez) | |
2020-09-01 | Add GDScript disassembler | George Marques | |
2020-09-01 | Change GDScript compiler to use codegen abstraction | George Marques | |
2020-09-01 | Add GDScript code generation interface | George Marques | |
Implement the abstraction by targeting the current VM. |