summaryrefslogtreecommitdiffstats
path: root/modules/mono
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Merge pull request #96301 from scgm0/Delete-old-C#-dataRémi Verschelde2024-09-121-2/+8
|\ \ \ \ | | | | | | | | | | | | | | | C#: Clear existing data directory extracted from PCK
| * | | | C#: Clear existing data directory extracted from PCKscgm02024-09-121-2/+8
| | | | |
* | | | | Merge pull request #95840 from raulsntos/char_metadataRémi Verschelde2024-09-121-0/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Add metadata for `char16_t` and `char32_t`
| * | | | | Add metadata for `char16_t` and `char32_t`Raul Santos2024-09-121-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We don't seem to expose any API that uses `char16_t` yet, but I added it anyway since we make the type info for it. I didn't add anything for `wchar_t` because we are not making a type info so maybe we don't have a need for it yet, it could be added in the future. To prevent breaking compatibility with the C# bindings, we ignore the `char32_t` metadata and still use `System.Int64`.
* | | | | | Extract editor main screenkit2024-09-091-1/+2
|/ / / / /
* | | | | Merge pull request #78656 from Repiteo/typed-dictionaryRémi Verschelde2024-09-066-5/+94
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Implement typed dictionaries
| * | | | | Implement typed dictionariesThaddeus Crews2024-09-046-5/+94
| |/ / / /
* / / / / C# Assemblies can now be built with deprecated=noFelix Bytow2024-09-053-5/+18
|/ / / /
* | | | Cleanup of raw `nullptr` checks with `Ref`A Thousand Ships2024-08-312-2/+2
| | | | | | | | | | | | | | | | Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
* | | | C#: Use export platform to determine the target OS and log errorsRaul Santos2024-08-302-34/+31
| | | | | | | | | | | | | | | | | | | | - Use the export platform's `get_os_name` to determine the platform name instead of guessing from the features. - Use the export platform's `add_message` to add error messages instead of a custom error dialog. Integrates .NET error messages with the export log dialog.
* | | | Fix build logger unable to handle an event without an associated fileRedOrbweaver2024-08-291-2/+2
| | | |
* | | | Merge pull request #92316 from alula/msvc-clangRémi Verschelde2024-08-291-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | Add support for compiling with VS clang-cl toolset
| * | | | Add support for compiling with VS clang-cl toolsetAlula2024-08-281-0/+2
| | | | |
* | | | | [Windows] Fix OS.open_dynamic_librarybruvzg2024-08-281-1/+1
|/ / / /
* | | | Merge pull request #91018 from ↵Rémi Verschelde2024-08-264-6/+7
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | Daylily-Zeleen/daylily-zeleen/optionally_postinitialization_for_extension_owner Allow ClassDB to create a Object without postinitialization for GDExtension.
| * | | Allow ClassDB to create a Object without postinitialization for GDExtension.Daylily-Zeleen2024-08-204-6/+7
| | | |
* | | | Merge pull request #95921 from akien-mga/scons-validate-opt-in-driversRémi Verschelde2024-08-221-2/+4
|\ \ \ \ | | | | | | | | | | | | | | | SCons: Better validation for platform-specific opt-in drivers
| * | | | SCons: Better validation for platform-specific opt-in driversRémi Verschelde2024-08-211-2/+4
| |/ / / | | | | | | | | | | | | | | | | This replaces cryptic compilation errors with a clear error message and early build termination.
* | | | Merge pull request #95790 from aaronfranke/rect-aabb-supportRémi Verschelde2024-08-222-7/+34
|\ \ \ \ | |/ / / |/| | | | | | | Simplify Rect2/AABB `get_support` function
| * | | Simplify and fix Rect2/AABB get_support functionAaron Franke2024-08-192-7/+34
| | | |
* | | | Merge pull request #95808 from ↵Rémi Verschelde2024-08-201-2/+8
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | paulloz/bugfix/dotnet-globalclass-icon-relative-paths Fix relative paths for global class icons in C#
| * | | | Fix relative paths for global class icons in C#Paul Joannon2024-08-191-2/+8
| |/ / /
* | | | Merge pull request #95269 from raulsntos/dotnet/determinantRémi Verschelde2024-08-201-8/+9
|\ \ \ \ | |/ / / |/| | | | | | | C#: Expose `Transform2D.Determinant()`
| * | | C#: Expose `Transform2D.Determinant()`Raul Santos2024-08-081-8/+9
| | | |
* | | | Merge pull request #93172 from raulsntos/dotnet/clear-instance-bindingsRémi Verschelde2024-08-191-2/+11
|\ \ \ \ | | | | | | | | | | | | | | | C#: Clear instance bindings callbacks on finalizing the language
| * | | | C#: Clear instance bindings callbacks on finalizing the languageRaul Santos2024-06-141-2/+11
| | | | | | | | | | | | | | | | | | | | When finalizing the C# language every C# instance is disposed and the instance bindings callbacks are no longer valid. Clearing the instance bindings ensures these callbacks are not called, and since we dispose of every C# instance there should be no leaks.
* | | | | Merge pull request #95676 from raulsntos/dotnet/clear-owner-orderRémi Verschelde2024-08-191-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | C#: Destroy script before clearing owner
| * | | | | C#: Destroy script before clearing ownerRaul Santos2024-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | The C# script destructor needs to access the owner (i.e.: to disconnect signals) so we now clear it after the script has been destroyed.
* | | | | | C#: Use Godot's LipO implementation instead of Xcode's lipo commandRaul Santos2024-08-174-106/+30
| | | | | |
* | | | | | Merge pull request #94766 from Z0rb14n/fix-vector3-slerpRémi Verschelde2024-08-161-1/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | C#: Fix Vector3 `Slerp` normalization error
| * | | | | | Fix Vector3 Slerp Normalizing Zero VectorsZ0rb14n2024-07-261-1/+9
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | Ported the existing zero length check in C++ into C#.
* | | | | | Merge pull request #94599 from juanjp600/node-array-export-diagnosticRémi Verschelde2024-08-163-19/+99
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | C#: Fix GD0107 not applying to arrays and dictionaries containing nodes
| * | | | | | Fix GD0107 not applying to arrays and dictionaries containing nodesJuan Pablo Arce2024-07-243-19/+99
| |/ / / / /
* | | | | | Merge pull request #95431 from Joy-less/Fix-#10418Rémi Verschelde2024-08-161-1/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | C#: Add `NotNullWhenAttribute` to `IsInstanceValid`
| * | | | | | Add NotNullWhenAttribute to IsInstanceValidJoyless2024-08-121-1/+2
| | |_|_|/ / | |/| | | |
* | | | | | Merge pull request #94693 from jonatanrojderd/masterRémi Verschelde2024-08-161-7/+9
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | [C#] Change the `VisualShaderNodeCustom` template to use the correct override types and signatures
| * | | | | * Changed the VisualShaderNodeCustom template to use the correct overrides ↵Jonatan Röjder Delnavaz2024-08-161-7/+9
| | |/ / / | |/| | | | | | | | | | | | | and added the GlobalClass attribute
* | | | | Bump version to 4.4-devRémi Verschelde2024-08-154-4/+4
| |/ / / |/| | | | | | | | | | | Mr. Godot still didn't show up...
* | | | Fix doc on Vector2.cs's / operatorMax2024-07-271-1/+1
|/ / /
* | | Style: Optimize `.svg` files with `svgo`Thaddeus Crews2024-06-232-2/+2
| | |
* | | C#: Escape generated membersRaul Santos2024-06-1522-1040/+1041
| | |
* | | Fix freeze after building C#Hilderin2024-06-094-8/+10
|/ /
* | C#: Skip method name when checking CallErrorRaul Santos2024-06-051-2/+6
| | | | | | | | When invoking `call`, the arguments contain the method name. This argument must be skipped; otherwise, the `error.argument` index will be off.
* | Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-213-12/+4
| |
* | Merge pull request #91557 from AThousandShips/dotnet_doc_fixRémi Verschelde2024-05-216-41/+4
|\ \ | | | | | | | | | [C#] Unexpose `GodotSharp`
| * | [C#] Unexpose `GodotSharp`A Thousand Ships2024-05-046-41/+4
| | | | | | | | | | | | | | | This class seems to have been exposed accidentally, and breaks documentation on non-mono builds, requiring hacks
* | | Merge pull request #88919 from nongvantinh/fix-88834Rémi Verschelde2024-05-211-3/+3
|\ \ \ | | | | | | | | | | | | Revise implementation of C# `Aabb.GetSupport` to match the implementation in `core`
| * | | Revise implementation to match the implementation in `core`Nông Văn Tình2024-02-271-3/+3
| | | | | | | | | | | | | | | | Fixes: #88834
* | | | Fix ContextMenu Copy Error is off in MSBuild PanelMarius Hanl2024-05-151-1/+1
| |_|/ |/| |
* | | Remove useless isFirstEntry and useless source.Append("else ")Gaoyao Massimo Hu2024-05-1410-301/+276
| | |