summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2022-12-16Merge pull request #69867 from raulsntos/dotnet/colorIgnacio Roldán Etcheverry
C#: Synchronize Color with Core
2022-12-16C#: Synchronize Color with CoreRaul Santos
- Add `Luminance` readonly property. - Add `LinearToSrgb` and `SrgbToLinear` static methods. - Add `FromOkHsl` static method. - Add `FromRgbe9995` static method. - Add `FromString` static method. - Expose `FromHtml` static method. - Expose `HtmlIsValid` static method. - Add and update some Color documentation.
2022-12-16Merge pull request #70131 from rune-scape/preload-type-regressionRémi Verschelde
Fix preload type regression
2022-12-15Merge pull request #70126 from stmSi/fixed-gdscript-unary-unary-crashRémi Verschelde
Fixed GDScript crashed when two consecutive unary operators are analyzed/(script is saved).
2022-12-15Merge pull request #70125 from TokageItLab/cs-sync-usage-flagsRémi Verschelde
Fix out of sync PropertyUsageFlags for cs
2022-12-16Fixed GDScript crashed when two consecutive unary operators are analysedstmSi
2022-12-15Fix preload type regressionrune-scape
2022-12-16Fix out of sync PropertyUsageFlags for csSilc Renew
2022-12-15[RTL/TextServer] Add baseline inline alignment mode for objects and RTL tables.bruvzg
2022-12-15Merge pull request #70113 from adamscott/fix-crash-gdscript-from-variantRémi Verschelde
Fix `GDScript::_get_gdscript_from_variant()` crash
2022-12-15Fix `GDScript::_get_gdscript_from_variant()` crashAdam Scott
The crash would happen, theoretically, when getting the type of a invalid variant.
2022-12-15Added Projection to ConvertTo<T> and CreateFrom<T>Alberto Vilches
2022-12-15Fix typos with codespellRémi Verschelde
2022-12-15Merge pull request #69471 from rune-scape/rune-out-of-orderRémi Verschelde
GDScript: Out of order member resolution
2022-12-14GDScript: Allow out of order member resolutionrune-scape
2022-12-14Merge pull request #69971 from neikeq/csharp-vararg-ret-premature-freeRémi Verschelde
C#: Fix premature free of returned Variant in vararg methods
2022-12-14Merge pull request #69968 from raulsntos/dotnet/signalRémi Verschelde
C#: Rename `SignalInfo` to `Signal` and make awaitable
2022-12-13Merge pull request #68528 from BastiaanOlij/openxr_actionmap_changesRémi Verschelde
Various fixes for OpenXR action map meta data and editing
2022-12-13Merge pull request #70010 from akien-mga/graphite-mitRémi Verschelde
graphite: Update to latest Git, switch to MIT license
2022-12-13Merge pull request #69992 from rune-scape/stringname-not-compatRémi Verschelde
GDScript Analyzer: Fix String type compatibility being too permissive
2022-12-13graphite: Update to latest Git, switch to MIT licenseRémi Verschelde
Graphite is now available under: MIT OR MPL-2.0 OR LGPL-2.1-or-later OR GPL-2.0-or-later We pick MIT which is the same as Godot's main license for simplicity. Remove define to skip deprecation warnings, upstream fixed those.
2022-12-12Improve architecture support logic in Raycast moduleAaron Franke
2022-12-12C#: Fix premature free of returned Variant in vararg methodsIgnacio Roldán Etcheverry
Notably, this fixes obscure issues after calling `script.New()` when the returned instance is a `RefCounted`.
2022-12-12C#: Rename SignalInfo to Signal and make awaitableRaul Santos
2022-12-12C#: Fix bindings generator for methods that return signalsRaul Santos
2022-12-12Merge pull request #69629 from smix8/agent_wild_callback_pointer_4.xRémi Verschelde
Fix Navigation agent callback wild pointer crash
2022-12-12Fix String type compatibility being too permissiverune-scape
2022-12-12Fix Navigation agent callback wild pointer crashsmix8
Fixes crash in sanitizer builds when callback agent or object are already freed.
2022-12-12Merge pull request #69718 from groud/finally_rename_gdnative_to_gdextensionRémi Verschelde
Rename all gdnative occurences to gdextension
2022-12-12Rename all gdnative occurences to gdextensionGilles Roudière
Non-exhaustive list of case-sensitive renames: GDExtension -> GDNative GDNATIVE -> GDEXTENSION gdextension -> gdnative ExtensionExtension ->Extension (for where there was GDNativeExtension) EXTENSION_EXTENSION ->EXTENSION (for where there was GDNATIVE_EXTENSION) gdnlib -> gdextension gdn_interface -> gde_interface gdni -> gde_interface
2022-12-12Merge pull request #69925 from aaronfranke/gltf-export-pref-stateRémi Verschelde
Pass GLTFState to the export_preflight method
2022-12-11Merge pull request #69416 from anvilfolk/default-valRémi Verschelde
Add GDScript implicit type conversion for member variables with initializers
2022-12-11Merge pull request #69933 from neikeq/issue-69822Rémi Verschelde
C#: Fix exported properties of GodotObject[] type
2022-12-11Add GDScript member initializer implicit type conversionocean (they/them)
2022-12-11Merge pull request #69869 from raulsntos/dotnet/attributesIgnacio Roldán Etcheverry
C#: Expose attribute properties and add documentation
2022-12-11Merge pull request #69894 from evan-gordon/text-server-uppercase-fixRémi Verschelde
check for empty string TextServer _string_to_upper
2022-12-11Merge pull request #66733 from MewPurPur/unary-op-warningsRémi Verschelde
Fix unary op warnings never showing
2022-12-11C#: Fix exported properties of GodotObject[] typeIgnacio Roldán Etcheverry
This was a regression from 17b2838f39c634324710166d2f36458906ecaf4a. `MarshalUtils` was changed in the source generators to use `ConvertTo<T>` and `CreateFrom<T>`, which don't support `GodotObject[]` because it would need reflection. As such, we need to keep the custom cases for `GodotObject[]` in `MarshalUtils`.
2022-12-11check for empty string TextServer _string_to_upperevan-gordon
2022-12-11Pass GLTFState to the export_preflight methodAaron Franke
2022-12-11Merge pull request #69897 from poohcom1/fix/function-return-completionRémi Verschelde
Fix autocomplete on functions returning variants
2022-12-11Fix subscript of preloaded scriptrune-scape
2022-12-11Merge pull request #69883 from adamscott/fix-gdscript-cache-clear-crashRémi Verschelde
Fix `GDScriptCache::clear()` crash when clearing packed scenes
2022-12-11Fix autocomplete on functions returning variantspoohcom1
- When guessing return type, check type hints before last return value
2022-12-10Fix `GDScriptCache::clear()` crash when clearing packed scenesAdam Scott
2022-12-10Consistently use `p_` for parameters in GLTFDocumentAaron Franke
2022-12-10Merge pull request #69857 from bruvzg/bim_font_no_cleanRémi Verschelde
[TextServer] Do not clean up font texture cache when setting `allow_system_fallback` property.
2022-12-10Merge pull request #67399 from Calinou/rename-precision-double-sconsRémi Verschelde
Rename `float=64` SCons option to `precision=double`
2022-12-10Merge pull request #66729 from DarkKilauea/nav-ownersRémi Verschelde
Enable assigning an owner to navigation regions and links
2022-12-10Merge pull request #69587 from ↵Rémi Verschelde
adamscott/fix-constant-base-typing-in-extended-class Fix constants scope in extended or inner GDScript classes