Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-13 | C#: Always show "Create C# solution" option | Raul Santos | |
Prevents ending up with an empty C# menu. The option to create the C# solution no longer disappears, to avoid confusing users. If an user tries to use it when a C# solution already exists they are warned that it will override their sln and csproj files. (cherry picked from commit a1a2fc22558af4b368a6f8a7686399cb0a19f220) | |||
2023-03-13 | Fix GDScript code style regarding colon | Danil Alexeev | |
(cherry picked from commit ea5fd3d732a85029e8372425904971ad26153ff1) | |||
2023-03-13 | Document GLTFNode and some of GLTFState | Aaron Franke | |
(cherry picked from commit 2cc22fb964a94cdb031dd95f473812eef274c903) | |||
2023-03-13 | Fix various typos in the classref | Haoyu Qiu | |
(cherry picked from commit 03fcac3aa5deecb9a4009b0a7889bb5d6be252fb) | |||
2023-03-13 | C#: Fix crash when errors occur before language initialization. | RedworkDE | |
(cherry picked from commit c0ebc281360c7df1acae4b0510d8310573491acc) | |||
2023-03-13 | Prevent crashing on startup if project has scripted theme types | Yuri Sizov | |
Also avoid order of operation conflicts by moving C# binding generation hook to main.cpp (cherry picked from commit 8402927d3f55f06651045a6a94e163327e26c2ab) | |||
2023-03-13 | [TextServer] Add invalid font scaling check, restrict Linux/BSD system fonts ↵ | bruvzg | |
lookup to TrueType/CFF only. (cherry picked from commit 8d501a2dc31f3bef6d5a7f6b0d060c8915082011) | |||
2023-03-13 | Prevent cache corruption when saving resources in the editor | Yuri Sizov | |
(cherry picked from commit 496bd94c21dbda01fc7d9d0a108eecef21924024) | |||
2023-03-13 | [TextServer] Ensure ICU data is initialised only one and cleaned only at exit. | bruvzg | |
(cherry picked from commit 7f24433e15081044aa8bcc3a646ded5129048bf5) | |||
2023-03-13 | Fix glTF mesh importer not freeing nodes correctly on import | Abdulrahman Al Zeidi | |
(cherry picked from commit 5e0641ea9af03491889d89f9bdac0785e5bc3158) | |||
2023-03-01 | Bump version to 4.0.1-rc | Rémi Verschelde | |
2023-02-28 | Minor typo and docs URL fixes | Rémi Verschelde | |
2023-02-27 | Merge pull request #74028 from voidedWarranties/scriptlanguage_unused | Rémi Verschelde | |
Remove unused `ScriptLanguage` methods | |||
2023-02-27 | Merge pull request #74010 from lyuma/fix_last_basis_lod | Rémi Verschelde | |
Loop over the last mipmap lod in basis universal | |||
2023-02-26 | Remove unused `ScriptLanguage` methods | voidedWarranties | |
2023-02-26 | basisu: Loop over the last mipmap lod | Lyuma | |
2023-02-26 | GLTF: Delete unused skeleton_to_node | Aaron Franke | |
2023-02-26 | Merge pull request #73990 from bruvzg/ts_dext_fix | Rémi Verschelde | |
Fix text server GDExtension build. | |||
2023-02-26 | Merge pull request #73948 from V-Sekai/mip-map-basisu | Rémi Verschelde | |
Fix basisu texture mipmaps | |||
2023-02-26 | Merge pull request #73915 from vonagam/fix-conversions-from-native-member | Rémi Verschelde | |
GDScript: Fix conversions from native members accessed by identifier | |||
2023-02-26 | Fix text server GDExtension build. | bruvzg | |
2023-02-26 | Merge pull request #73964 from vonagam/fix-coroutine-compiler-type | Rémi Verschelde | |
GDScript: Fix address type for coroutine results | |||
2023-02-26 | Merge pull request #73957 from vonagam/fix-binary-op-safety | Rémi Verschelde | |
GDScript: Fix wrong unsafety mark for binary operator | |||
2023-02-26 | Merge pull request #73899 from vnen/gdscript-init-defaults-beforehand | Rémi Verschelde | |
GDScript: Initialize all defaults beforehand in implicit constructor | |||
2023-02-26 | Patch `VideoStreamPlaybackTheora::set_file` to only look for header packets ↵ | Davi | |
of one stream type | |||
2023-02-26 | GDScript: Fix address type for coroutine results | Dmitrii Maganov | |
2023-02-26 | GDScript: Fix wrong unsafety mark for binary operator | Dmitrii Maganov | |
2023-02-25 | Fix basisu mipmaps | K. S. Ernest (iFire) Lee | |
Previously basisu was storing mip maps as an array of basisu in the internal format for Texture. The new work makes sense and it generates smaller files with one image. This pull request fixes the basisu decompression and keep the approach of 1 image. If we need to change the format in 4.x, we can still support the old format with some limitations too. Basisu from gltfpack can only output with mipmaps. The single image will not work for StreamedTexture. We should support both approaches for CompressedTexture we use one, and for StreamedTexture we use another. Additional error checking for hdr images and for nullptr. | |||
2023-02-25 | Revert "GDScript: Fix groups and categories been seen as members" | George Marques | |
This reverts commit 6f2a8434c675b3df2aceca4e5200aaf799eeb2bd. The commit introduces a bug where it creates spurious entries for member information. | |||
2023-02-25 | GDScript: Fix conversions from native members accessed by identifier | Dmitrii Maganov | |
2023-02-24 | GDScript: Initialize all defaults beforehand in implicit constructor | George Marques | |
Set all the default values for typed variables before actually trying to initialize them, including `@onready` ones. This ensures that if validated calls are being used there will be a value of the correct type, even if the resolution is done out of order or deferred because of `@onready`. | |||
2023-02-25 | Merge pull request #73881 from vnen/max-min-only-for-numbers | Rémi Verschelde | |
Make max() and min() global functions only accept numbers | |||
2023-02-24 | GDScript: Don't use validated call for vararg methods | George Marques | |
Since they may have runtime type validation, we cannot use the validated call. | |||
2023-02-24 | C#: Check if a class is a singleton using the Core name | Raul Santos | |
Use the name of the class in Core, rather than the C# rename, when checking if a class is registered as a singleton. | |||
2023-02-24 | Fixup GDScript test using non-deterministic ids | Rémi Verschelde | |
Follow-up to #73870. | |||
2023-02-24 | Merge pull request #73870 from vnen/gdscript-dont-reference-group-properties | Rémi Verschelde | |
GDScript: Fix groups and categories been seen as members | |||
2023-02-24 | GDScript: Fix groups and categories been seen as members | George Marques | |
2023-02-24 | Merge pull request #73841 from vonagam/fix-range-regression | Rémi Verschelde | |
GDScript: Fix range regression | |||
2023-02-24 | GDScript: Fix range regression | Dmitrii Maganov | |
2023-02-23 | Fix GridMap 'cell_size_changed' signal not disconnecting properly | smix8 | |
Fixes that a GridMap node would not disconnect from the 'cell_size_changed' signal when the new selected node is another valid GridMap. | |||
2023-02-23 | Merge pull request #73815 from RedworkDE/net-missing-editor-message | Rémi Verschelde | |
C#: Fix editor crashing without a message when .NET is not installed | |||
2023-02-23 | Merge pull request #73811 from Vsono/master | Rémi Verschelde | |
Fix WebSocketMultiplayerPeer server crash when a client tries to connect. | |||
2023-02-23 | Merge pull request #73798 from vonagam/fix-bad-continue-in-lambda | Rémi Verschelde | |
GDScript: Fix parsing unexpected break/continue in lambda | |||
2023-02-23 | Merge pull request #73796 from vonagam/fix-enum-in-range-call | Rémi Verschelde | |
GDScript: Fix usage of enum value as range argument | |||
2023-02-23 | C#: Fix editor crashing without a message when .NET is not installed | RedworkDE | |
2023-02-23 | Fix WebSocketMultiplayerPeer server crash | Vsono | |
2023-02-23 | [MP] Fix replication config not updating sync/spawn props from code. | Fabio Alessandrelli | |
2023-02-23 | GDScript: Fix parsing unexpected break/continue in lambda | Dmitrii Maganov | |
2023-02-23 | GDScript: Fix usage of enum value as range argument | Dmitrii Maganov | |
2023-02-22 | Merge pull request #73715 from clayjohn/HDR-import | Rémi Verschelde | |
Use multiple threads to import HDR images |