Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-12-02 | Fix missing parent class name identifier crash | Adam Scott | |
2022-12-02 | Merge pull request #69166 from souplamp/icon-annotation-not-working | Yuri Sizov | |
Update docs to clarify `@icon` only works with global script classes | |||
2022-12-01 | Update docs to mention `@icon` only works with global script classes | souplamp | |
Update the docs to clarify that the `@icon` annotation does not work when only attaching a script to a node, and clarify that the script itself must be a globally accessible script type. | |||
2022-12-01 | Merge pull request #69423 from KoBeWi/parenture | Rémi Verschelde | |
Improve parent signature error | |||
2022-12-01 | Merge pull request #68481 from dalexeev/gds-fix-dyn-arg-def-val | Rémi Verschelde | |
GDScript 2.0: Fix shift due to skip of non-constant default argument values | |||
2022-12-01 | Improve parent signature error | kobewi | |
2022-12-01 | Merge pull request #69303 from Chaosus/gds_fix_loops | Rémi Verschelde | |
Reset unassigned local variables to null in the loops | |||
2022-11-30 | Merge pull request #69269 from red1939/red1939/master | Rémi Verschelde | |
Acknowledge that a CLASS kind of a DataType might not have an identifier | |||
2022-11-30 | Acknowledge that a CLASS kind of a DataType might not have an identifier | Bartosz Bielecki | |
2022-11-29 | Use forward-declarations in big editor classes | trollodel | |
2022-11-28 | Reset unassigned local variables to null in the loops | Yuri Rubinsky | |
2022-11-28 | Merge pull request #69224 from adamscott/fix-PackedScene-reload_from_file | Rémi Verschelde | |
Add `PackedScene::reload_from_file()` override | |||
2022-11-28 | Add PackedScene::reload_from_file() override | Adam Scott | |
2022-11-28 | Fix lookup code to pass functions with the same name as built-ins | Yuri Rubinsky | |
2022-11-28 | Merge pull request #69259 from adamscott/fix-cyclic-reference-base-issue | Rémi Verschelde | |
Fix cyclic reference base being loaded but not valid (which is ok) | |||
2022-11-27 | Fix cyclic reference base being loaded but not valid (which is ok) | Adam Scott | |
2022-11-27 | GDScript: Avoid using `get_global_class_native_base` | rune-scape | |
2022-11-25 | Merge pull request #69079 from adamscott/fix-singleton-scene-cyclic-load | Rémi Verschelde | |
Fix singleton scene cyclic loading | |||
2022-11-25 | Fix singleton scene cyclic loading | Adam Scott | |
2022-11-24 | Merge pull request #69134 from jquinl/export_range_int_fix | Rémi Verschelde | |
GDScript: Properly respect `int` type hint for `@export_range` | |||
2022-11-24 | GDScript: Properly respect `int` type hint for `@export_range` | unknown | |
Fixes #69104. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2022-11-24 | Ensure class name is printed in STATIC_CALLED_ON_INSTANCE warning | clayjohn | |
2022-11-24 | GDScript: Only check if ignoring warnings in debug build | Rémi Verschelde | |
2022-11-23 | [godot#68977] Fix constants parameters | Adam Scott | |
2022-11-22 | GDScript: Don't warn about RETURN_VALUE_DISCARDED by default | Rémi Verschelde | |
This happens too often with normal usage of the API. The warning can still be useful to find actual bugs where discarding the return value wasn't intentional, but this should stay enabled manually, at least until we either improve the API to remove false positives, or improve the warning (e.g. to only warn about unused return value on const functions). | |||
2022-11-22 | Merge pull request #68970 from Chaosus/gds_fix_lambda_signal | Rémi Verschelde | |
Fix using signals in lambda functions | |||
2022-11-22 | Fix using signals in lambda functions | Yuri Rubinsky | |
2022-11-22 | Merge pull request #68987 from ↵ | Rémi Verschelde | |
adamscott/fix-godot#61386-autoload-scenes-implicit-types Fix autoload scenes implicit types | |||
2022-11-22 | Merge pull request #68972 from adamscott/fix-godot#68971-cached-scene | Rémi Verschelde | |
Fetch cached scene if it exists in `GDScriptCache::get_packed_scene()` | |||
2022-11-22 | Merge pull request #68911 from souplamp/return-value-discarded-error | Rémi Verschelde | |
Clarify what happens when return value is discarded in GDScript warning text | |||
2022-11-21 | [godot#61386] Fix autoload scenes implicit types | Adam Scott | |
2022-11-21 | change RETURN_VALUE_DISCARDED GDScript warn text | souplamp | |
changed RETURN_VALUE_DISCARDED GDscript warning text to mention how the return value of a function is discarded; update GDScript parser warning test to include new warning text. | |||
2022-11-21 | [godot#68971] Fetch cached scene if it exists in `GDScriptCache` | Adam Scott | |
2022-11-21 | Fix GDScript completion crash | Yuri Rubinsky | |
2022-11-20 | Merge pull request #68929 from adamscott/add-rename-check | Rémi Verschelde | |
Add `GDScriptCache::move_script` check before executing logic | |||
2022-11-20 | Merge pull request #68927 from rune-scape/rune-cache-parse-error | Rémi Verschelde | |
GDScript: Cache scripts after parse error | |||
2022-11-20 | Add move_script check before executing logic | Adam Scott | |
2022-11-20 | GDScript: Cache scripts after parse error | rune-scape | |
2022-11-20 | GDScript: Fix setting to disable all warnings | Rémi Verschelde | |
The boolean was never set with the value from the project settings. Fixes #64559. | |||
2022-11-20 | Fix empty text in editor | rune-scape | |
2022-11-18 | Remove fix leftover that caused cyclic load issues | Adam Scott | |
2022-11-18 | Merge pull request #68854 from anvilfolk/highlight-var | Rémi Verschelde | |
Add error highlighting for duplicate variables/constants | |||
2022-11-18 | Merge pull request #67714 from adamscott/fix-preload-cyclic-references-part2 | Rémi Verschelde | |
Fix cyclic references in GDScript 2.0 | |||
2022-11-18 | Fix cyclic references in GDScript 2.0 | Adam Scott | |
2022-11-18 | Add error highlighting for duplicate variables/constants | ocean (they/them) | |
2022-11-17 | Fix ability to overload "script" variable | ocean (they/them) | |
2022-11-16 | Merge pull request #68717 from rune-scape/rune-compiler-regression | Yuri Rubinsky | |
Fixes https://github.com/godotengine/godot/issues/68716 | |||
2022-11-15 | GDScript Compiler: regression fix | Rune | |
2022-11-15 | Merge pull request #65372 from Mickeon/fix-treat-warnings-as-errors | Rémi Verschelde | |
Fix "Treat Warnings as Errors" Project Setting doing nothing | |||
2022-11-15 | Merge pull request #68663 from Chaosus/gds_fix_completion | Yuri Rubinsky | |