Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-29 | [Web] Rename JavaScript platform to Web. | Fabio Alessandrelli | |
Also rename export name from "HTML5" to "Web". | |||
2022-08-29 | Merge pull request #64956 from raulsntos/dotnet/format-ci | Rémi Verschelde | |
Add `dotnet format` to CI to check C# style | |||
2022-08-29 | Merge pull request #64900 from raulsntos/dotnet/fix-exceptions | Ignacio Roldán Etcheverry | |
Fix various C# exceptions | |||
2022-08-29 | Merge pull request #64994 from raulsntos/dotnet/property-indexers | Ignacio Roldán Etcheverry | |
C#: Ignore property indexers and report if exported | |||
2022-08-28 | C#: Ignore property indexers and report if exported | Raul Santos | |
Ignore property indexers since they are unsupported and report a diagnostic if an user tries to export it. | |||
2022-08-28 | Merge pull request #64885 from Mickeon/rename-tooltip-hint | Rémi Verschelde | |
Rename `hint_tooltip` to `tooltip_text` & setter getter | |||
2022-08-28 | Merge pull request #64959 from raulsntos/dotnet/fix-malloc-size | Ignacio Roldán Etcheverry | |
C#: Fix byteCount in `NativeMemory.Alloc` | |||
2022-08-27 | Merge pull request #64860 from raulsntos/dotnet/sync-math | Rémi Verschelde | |
Sync C# cubic interpolation with core | |||
2022-08-27 | Merge pull request #64922 from akien-mga/dotnet-fix-app-host-version-detection | Rémi Verschelde | |
.NET: Change NETCore.App version detection to use highest match | |||
2022-08-27 | C#: Fix byteCount in `NativeMemory.Alloc` | Raul Santos | |
`NativeMemory.Alloc` takes the byte count as parameter, this is calculated by multiplying the element size in bytes by the length of the array. | |||
2022-08-27 | C#: Add `CubicInterpolateAngle` | Raul Santos | |
2022-08-27 | C#: Add `CubicInterpolateInTime` | Raul Santos | |
2022-08-27 | C#: Rename and fix `Quaternion.SphericalCubicInterpolate` | Raul Santos | |
2022-08-27 | C#: Fix `Quaternion.CubicSlerp` | Raul Santos | |
2022-08-27 | C#: Add `Exp` and `Log` to Quaternion | Raul Santos | |
2022-08-27 | C#: Add `GetAngle` and `GetAxis` to Quaternion | Raul Santos | |
2022-08-27 | C#: Fix `Transform3D` interpolation and add spherical interpolation | Raul Santos | |
2022-08-27 | C#: Add missing match check in `Quaternion.Slerpni` | Raul Santos | |
2022-08-27 | Merge pull request #64942 from paulloz/cs-fix-color-names | Rémi Verschelde | |
C#: Fix dictionary keys in Colors | |||
2022-08-27 | Fix C# style with `dotnet format` | Raul Santos | |
2022-08-27 | Rename `hint_tooltip` to `tooltip_text` & setget | Micky | |
`hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too. | |||
2022-08-26 | C#: Fix dictionary keys in Colors | Paul Joannon | |
2022-08-26 | Merge pull request #64367 from Mickeon/rename-var-to-str | Rémi Verschelde | |
Rename `str2var` to `str_to_var` and similar | |||
2022-08-26 | Fix various C# exceptions | Raul Santos | |
- Replace `IndexOutOfRangeException` with `ArgumentOutOfRangeException` - Replace `Exception` with a more specific exception - Add the parameter name to argument exception - Update documentation for methods that throw exceptions - Use `StringBuilder` to build exception messages - Ensure exception messages end with a period | |||
2022-08-26 | Rename `str2var` to `str_to_var` and similar | Micky | |
Affects the Math class, a good chunk of the audio code, and a lot of other miscellaneous classes, too. - `var2str` -> `var_to_str` - `str2var` -> `str_to_var` - `bytes2var` -> `bytes_to_var` - `bytes2var_with_objects` -> `bytes_to_var_with_objects` - `var2bytes` -> `var_to_bytes` - `var2bytes_with_objects` -> `var_to_bytes_with_objects` - `linear2db` -> `linear_to_db` - `db2linear` -> `db_to_linear` - `deg2rad` -> `deg_to_rad` - `rad2deg` -> `rad_to_deg` - `dict2inst` -> `dict_to_inst` - `inst2dict` -> `inst_to_dict` | |||
2022-08-26 | .NET: Change NETCore.App version detection to use highest match | Rémi Verschelde | |
`libnethost.a` detection failed on my Linux system (Mageia 9, using Fedora 36 dotnet repos), because it used the first match which isn't the one matching the rest of the SDK: ``` $ dotnet --list-runtimes Microsoft.AspNetCore.App 3.1.28 [/usr/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.AspNetCore.App 6.0.8 [/usr/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.NETCore.App 3.1.28 [/usr/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 6.0.5 [/usr/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 6.0.8 [/usr/share/dotnet/shared/Microsoft.NETCore.App] ``` No idea why I still have 6.0.5 installed but it should pick the highest I guess. | |||
2022-08-26 | Restore RigidBody2/3D, SoftBody names in physics | fabriceci | |
2022-08-26 | Merge pull request #64901 from raulsntos/dotnet/equals | Ignacio Roldán Etcheverry | |
C#: Use pattern matching to simplify `Equals` | |||
2022-08-26 | Remove `[Signal]` attribute from events | Raul Santos | |
- Remove event as a valid target of `SignalAttribute` - Stop adding the `[Signal]` attribute to events in bindings_generator - Make bindings_generator use the `EventHandler` suffix to be consistent with the C# source generator - Remove obsolete comment about the signal's delegate name | |||
2022-08-25 | Merge pull request #64852 from paulloz/dotnet6-export-category-attribute | Ignacio Roldán Etcheverry | |
C#: Preserve order of exported fields/categories | |||
2022-08-25 | Merge pull request #64898 from neikeq/dotnet-fix-find-arch | Rémi Verschelde | |
2022-08-25 | C#: Preserve order of exported fields/categories | Paul Joannon | |
2022-08-25 | C#: Fix buildsystem when `dotnet --info` does not specify arch | Ignacio Roldán Etcheverry | |
For some installations the architecture information is not printed. | |||
2022-08-25 | Merge pull request #52815 from magian1127/temp3 | Ignacio Roldán Etcheverry | |
C# Generate SnakeName const | |||
2022-08-25 | Various C# documentation improvements | Raul Santos | |
Fixes wrong/invalid documentation and add documentation to some OS members. | |||
2022-08-25 | C# Generate StringName(SnakeName) for all class members | Magian | |
2022-08-25 | Merge pull request #55778 from aaronfranke/use-arch-btw | Rémi Verschelde | |
[skip ci] | |||
2022-08-25 | Merge pull request #64869 from bruvzg/dotnet_arch | Ignacio Roldán Etcheverry | |
[macOS] Check .NET binary architecture, and search for the cross compile SDK in the subfolders. | |||
2022-08-25 | Unify bits, arch, and android_arch into env["arch"] | Aaron Franke | |
Fully removes the `bits` option and adapts the code that relied on it. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2022-08-25 | [macOS] Check .NET binary architecture, and search for the cross compile SDK ↵ | bruvzg | |
in the subfolders. | |||
2022-08-25 | Merge pull request #64731 from raulsntos/dotnet6-variant-generics-analyzer | Rémi Verschelde | |
C#: Add `MustBeVariant` attribute and analyzer | |||
2022-08-25 | Merge pull request #64781 from raulsntos/csharp_children | Rémi Verschelde | |
Add `includeInternal` to C# NodeExtensions and avoid printing errors in `GetChildOrNull` | |||
2022-08-25 | Add MustBeVariant attribute and analyzer | Raul Santos | |
- MustBeVariant attribute can be used to enforce that generic types must be a marshable from/to Variant. - Also renames all diagnostic ids to be valid unicode identifiers. | |||
2022-08-24 | Remove mentions of the Server platform from the Mono module | Aaron Franke | |
2022-08-24 | Merge pull request #64742 from zaevi/csharp_add_grouping_attributes | Ignacio Roldán Etcheverry | |
C#: Add grouping attributes for properties. | |||
2022-08-24 | Merge pull request #64743 from raulsntos/dotnet6-signal-analyzer | Ignacio Roldán Etcheverry | |
Improve C# signal analyzer errors | |||
2022-08-24 | Use pattern matching to simplify `Equals` | Raul Santos | |
- Simplify and unify `Equals` implementation of C# struct types - Also add pattern matching to replace a cast in `DebuggingUtils` | |||
2022-08-24 | Update C# named colors to use HEX codes | Raul Santos | |
2022-08-24 | Avoid printing an error in GetChildOrNull | Raul Santos | |
`GetChildOrNull` won't print an error when the given index is out of range, similar to how the LINQ `ElementAtOrDefault` method works. | |||
2022-08-24 | Merge pull request #64727 from raulsntos/csharp-remove-ctors | Ignacio Roldán Etcheverry | |
Remove copy constructors in C# structs |