Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-03 | Merge pull request #43768 from sjml/mac-mono-export-fix | Rémi Verschelde | |
Mono/macOS: Separate data dir into frameworks and resources for codesigning | |||
2021-03-03 | Mono/macOS: Separate data dir into frameworks and resources for codesigning | Shane Liesegang | |
Co-authored-by: Ignacio Etcheverry <ignalfonsore@gmail.com> | |||
2021-03-02 | Fixed match for expression pattern | David Sichma | |
equality comparison now writes to right target address | |||
2021-03-02 | Merge pull request #42029 from ThakeeNathees/export-type-infer-bug-fix | George Marques | |
GDScript export array/dictionary type infer bug fix | |||
2021-03-02 | Merge pull request #46559 from asmaloney/fix-code-completion | Rémi Verschelde | |
Script editor: Fix two special cases not being checked in code completion | |||
2021-03-02 | Merge pull request #41897 from strank/not-in-conditional-done | Rémi Verschelde | |
Add a "not in" operator to GDScript. | |||
2021-03-01 | [script editor] Fix two special cases not being checked in code completion | Andy Maloney | |
When this code was changed for 4.0, a "break" statement inside a for loop in 3.x was changed to "return". This means that the two special cases (autoloads and input actions) are never checked. Removing the return lets these work properly in the editor. (Also reorder conditionals to short-circuit and avoid expensive methods.) | |||
2021-02-27 | Merge pull request #46470 from Faless/net/4.x_enet_timeout | Rémi Verschelde | |
Add set_peer_timeout to NetworkedMultiplayerENet. | |||
2021-02-27 | Add set_peer_timeout to NetworkedMultiplayerENet. | Fabian | |
2021-02-25 | Add generic support to PackedScene.Instance | Aaron Franke | |
2021-02-25 | Merge pull request #46379 from ThakeeNathees/signal-idf-not-found-fix | Rémi Verschelde | |
GDScript: False positive "Identifier not found" error on signals fixed | |||
2021-02-25 | Document seamless noise having a lower contrast than non-seamless noise | Hugo Locurcio | |
See #41787. | |||
2021-02-25 | Merge pull request #40276 from Taywee/master | Rémi Verschelde | |
remove invalid codeLensProvider value from lsp | |||
2021-02-25 | Added GridMap description to get_bake_meshes() | Jack Linhart | |
2021-02-25 | Fix C# bindings generator for default value types | Aaron Franke | |
2021-02-24 | false positive "Identifier not found" error or signals fixed | Thakee Nathees | |
2021-02-24 | Merge pull request #46045 from bruvzg/text_server_bmp_create | Rémi Verschelde | |
[TextServer] Restores bitmap font dynamic construction functions. | |||
2021-02-22 | Merge pull request #46307 from RandomShaper/fix_crash_mono_glue | Rémi Verschelde | |
Make glue generation shutdown more graceful | |||
2021-02-22 | Make glue generation shutdown more graceful | Pedro J. Estébanez | |
2021-02-21 | Add missing semicolons to webxr.eterns.js | Marcel Admiraal | |
2021-02-20 | Merge pull request #45158 from aaronfranke/cs-packedarray | Rémi Verschelde | |
Add C# array features from core PackedArrays | |||
2021-02-19 | Merge pull request #46221 from akien-mga/doc-sync-classref | Rémi Verschelde | |
doc: Sync classref with current source | |||
2021-02-19 | doc: Sync classref with current source | Rémi Verschelde | |
And fix various bogus bindings following previous PRs. | |||
2021-02-19 | Make FreeType optional for export templates. | bruvzg | |
2021-02-18 | Merge pull request #45617 from RandomShaper/modernize_atomics | Rémi Verschelde | |
Modernize atomics (and fix `volatile`) | |||
2021-02-18 | Modernize atomics | Pedro J. Estébanez | |
- Based on C++11's `atomic` - Reworked `SafeRefCount` (based on the rewrite by @hpvb) - Replaced free atomic functions by the new `SafeNumeric<T>` - Replaced wrong cases of `volatile bool` by the new `SafeFlag` - Platform-specific implementations no longer needed Co-authored-by: Hein-Pieter van Braam-Stewart <hp@tmm.cx> | |||
2021-02-18 | Removed hardcoded shortcuts from /scene and converted to input actions | Eric M | |
This removes hardcoded actions from things like LineEdit and TextEdit. Previously, things like copy, paste, etc were all hardcoded to Ctrl+C, Ctrl+V, etc. They could not be changed. This allows the possibility of them being changed, by making them use the action map. This has the added benefit of greatly simplifying the input handling logic in those controls. The logic which was previously in a huge and hard to follow switch statement has been extracted to individual methods. | |||
2021-02-18 | Reorganize Project Settings | reduz | |
-Advanced Settings toggle also hides advanced properties when disabled -Simplified Advanced Bar (errors were just plain redundant) -Reorganized rendering quality settings. -Reorganized miscelaneous settings for clean up. | |||
2021-02-18 | Merge pull request #45032 from neikeq/classdb-tests-for-44856 | Rémi Verschelde | |
Add ClassDB tests to look for core API deps on editor API | |||
2021-02-18 | Fixed Invalid function bindings #46135 | Vignesh1-art | |
Fixed GDScriptLanguageProtocol::notify_client - have 3 arguments, but only 2 are binded | |||
2021-02-17 | Merge pull request #45955 from angad-k/fix-set-joint-i-to-name | Rémi Verschelde | |
fix set_joint_i_to_name to use the provided argument | |||
2021-02-17 | glTF: Fix set_joint_i_to_name not using its argument | Angad Kambli | |
Fixes #45371. | |||
2021-02-16 | Add C# array features from core PackedArrays | Aaron Franke | |
2021-02-16 | Added signed_angle_to for Vector3 | JestemStefan | |
2021-02-16 | Merge pull request #46083 from ellenhp/mono_ogg_fix | Rémi Verschelde | |
Fix mono->stereo conversion for oggs | |||
2021-02-16 | Merge pull request #46039 from ellenhp/fix-empty-mp3-crash | Rémi Verschelde | |
Warn and return when attempting to load invalid MP3s | |||
2021-02-15 | Fix mono->stereo conversion for oggs (see #40630) | Ellen Poe | |
2021-02-15 | Fail mp3 loading when attempting to load invalid mp3s | Ellen Poe | |
This also adds a warning for unspecified MP3 loading error codes | |||
2021-02-15 | [Text Server] Restores bitmap font dynamic construction functions. | bruvzg | |
2021-02-15 | [TextServer] Restore character and space extra spacing support. | bruvzg | |
2021-02-14 | [CTL] Fix scaling of the underline position and size. | bruvzg | |
2021-02-14 | Merge pull request #45953 from BastiaanOlij/no_unload_non_reloadable | Rémi Verschelde | |
Only unload the library if the reloadable flag is true | |||
2021-02-14 | Merge pull request #46009 from qarmin/xatlas_leak | Rémi Verschelde | |
Fix memory leak in Xatlas module | |||
2021-02-14 | Fix memory leak in Xatlas module | Rafał Mikrut | |
2021-02-14 | Only unload the library when no NativeScript objects exist if the reloadable ↵ | Bastiaan Olij | |
flag is true. If it is false it is likely the library does other things and can't be unloaded | |||
2021-02-13 | Fix Mono build after resource load cache changes | Xartorx | |
2021-02-12 | Fix LineEdit minimum width | reduz | |
-Changed theme setting name to make more sense of what it does -Reduced amount of minimum characters, so minimum size is smaller. | |||
2021-02-11 | Improve resource load cache | reduz | |
-Added a new method in Resource: reset_state , used for reloading the same resource from disk -Added a new cache mode "replace" in ResourceLoader, which reuses existing loaded sub-resources but resets their data from disk (or replaces them if they chaged type) -Because the correct sub-resource paths are always loaded now, this fixes bugs with subresource folding or subresource ordering when saving. | |||
2021-02-11 | Fix broken gdnative variant test | Henry Conklin | |
2021-02-11 | Merge pull request #45847 from vnen/gdnative-bindings | Rémi Verschelde | |
Improve GDNative API and JSON generation further |