Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-04 | GDScript: Fix member assignment with operation | George Marques | |
It was wrongly updating the assigned value with the result of the operation. | |||
2021-10-04 | Merge pull request #53303 from akien-mga/53295-gdscript-completion-quote-style | Rémi Verschelde | |
2021-10-04 | Merge pull request #53338 from briansemrau/gdscript-handle-for-with-null-list | Rémi Verschelde | |
2021-10-04 | GDScript completion: Handle quote style ad-hoc to remove editor dependency | Rémi Verschelde | |
`core` and `scene` shouldn't depend on `editor`, so they can't query this style setting in `get_argument_options`. But we can handle it after the fact in GDScript's completion code. Also cleans up a couple extra unused invalid includes in `core`. | |||
2021-10-03 | Allow void as return type for constructors | kobewi | |
2021-10-02 | GDScript Check for null list in `for` loop | Brian Semrau | |
2021-10-01 | Merge pull request #53290 from Faless/mp/4.x_opts_names | Fabio Alessandrelli | |
[Net] Rename RPC constants and annotation arguments. | |||
2021-10-01 | [Net] Rename RPC constants and annotation arguments. | Fabio Alessandrelli | |
any -> any_peer sync -> call_local ordered -> unreliable_ordered Multiplayer.RPC_MODE_ANY -> RPC_MODE_ANY_PEER Multiplayer.TRANSFER_MODE_ORDERED -> TRANSFER_MODE_UNRELIABLE_ORDERED | |||
2021-10-01 | Fix empty line hover; fix open non-res:// script | Francois Belair | |
2021-10-01 | Merge pull request #38397 from Calinou/doc-range-backwards-example | Rémi Verschelde | |
2021-09-30 | Use range iterators for `Map` | Lightning_A | |
2021-09-30 | Add an example on iterating an array backwards | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/3472. | |||
2021-09-30 | Revert "GdScript: Use reduced constant expression result when doing binary ↵ | Rémi Verschelde | |
operations. Fixes #50293" This reverts commit 62077086076fb99fb7fe014522c44ae83f87dc4d. It broke a GDScript test (which didn't exist back when the PR was made, so was missed prior to the merge). It choked on: ``` prints("a", test_instance.a, test_instance.a == Named.VALUE_A) ``` With: ``` Invalid operands "VALUE_A (enum value)" and "int" for "==" operator. ``` | |||
2021-09-30 | Merge pull request #51818 from MarianoGnu/gdscript2-enum-fixes | Rémi Verschelde | |
2021-09-29 | Merge pull request #53216 from vnen/gdscript-builtin-type-not-id | Rémi Verschelde | |
2021-09-29 | GDScript: Don't allow builtin type names as identifiers | George Marques | |
2021-09-29 | GDScript: Fix assignment with operation for properties | George Marques | |
2021-09-29 | Merge pull request #53092 from Razoric480/lsp-report-_init | Rémi Verschelde | |
2021-09-29 | Make LSP report _init instead of Object::new | Francois Belair | |
2021-09-29 | Merge pull request #52800 from akien-mga/gdscript-remove-exp_range | Rémi Verschelde | |
2021-09-27 | Fix check for freed object during cast | Pedro J. Estébanez | |
2021-09-27 | Fix inverted error messages about null object | Pedro J. Estébanez | |
2021-09-25 | Remove duplicate WorkspaceEdit from LSP | Francois Belair | |
2021-09-25 | Merge pull request #50378 from Razoric480/apply-edit-40 | Rémi Verschelde | |
2021-09-25 | Merge pull request #52849 from KoBeWi/know_no_binds | Rémi Verschelde | |
2021-09-24 | Remove binds from Signal.connect | kobewi | |
2021-09-21 | Merge pull request #52906 from vnen/gdscript-show-error-on-yield | Rémi Verschelde | |
2021-09-21 | Merge pull request #52905 from vnen/gdscript-single-line-declaration | Rémi Verschelde | |
2021-09-21 | GDScript: Show specific error when "yield" is used | George Marques | |
To help people porting code, it gives a hint to use "await" instead of a generic error. | |||
2021-09-21 | GDScript: Allow classes declaration to be done in single line | George Marques | |
Incidentally, allow multiple statements in single line functions when using semicolon as a terminator. | |||
2021-09-21 | GDScript: Allow multiple lines in signal parameters declaration | George Marques | |
2021-09-21 | GDScript: Remove conversion assign mistakenly done when unneeded | George Marques | |
2021-09-21 | Merge pull request #52852 from Chaosus/gds_fix_constants | Yuri Roubinsky | |
Prevent local constant default value from incorrect overriding by a global constant in GDScript autocompletion | |||
2021-09-21 | Merge pull request #51655 from ↵ | Rémi Verschelde | |
RevoluPowered/improve-gdscript-code-editor-performance Improve GDScript Editor performance | |||
2021-09-21 | Merge pull request #52718 from Calinou/gdscript-add-integration-tests-2 | Rémi Verschelde | |
2021-09-21 | Improve GDScript Editor and Improve latency | Gordon MacPherson | |
Improvements: - GDScript Highlighter is faster by 25% as keys are smaller (hashes instead of strings) - Removes message queue from _apply_settings_change to allow resize to work correctly - Some performance fixes are pending still Note: this resolves the code editor behaving badly when resizing in debug builds | |||
2021-09-21 | Prevent local constant default value from incorrect override by a global | Yuri Roubinsky | |
2021-09-20 | Don't generate empty doc sections and reduce code duplication | Aaron Franke | |
2021-09-20 | LSP: Add support for custom host setting | John J. Donna II | |
You can now configure host in the `language_server` settings in the editor settings. | |||
2021-09-17 | GDScript: Remove reference to remove `@export_exp_range` | Rémi Verschelde | |
It was removed in 75688772b3efadb8a36b1bb7ccde9c08819bc58e to be replaced by `@export_range` with an `"exp"` hint string. | |||
2021-09-17 | Merge pull request #52792 from vnen/gdscript-subscript-missing-index | Rémi Verschelde | |
2021-09-17 | Merge pull request #52788 from vnen/gdscript-compare-with-null | Rémi Verschelde | |
2021-09-17 | GDScript: Properly catch error when missing index in subscript | George Marques | |
2021-09-17 | Allow comparing equality between builtin types and null | George Marques | |
2021-09-17 | Merge pull request #51671 from RandomShaper/fix_gdscript_crash | George Marques | |
Fix some GDScript bugs | |||
2021-09-17 | GDScript: Avoid inferred types from giving hard errors | George Marques | |
2021-09-15 | Add more integration tests to the GDScript test suite | Hugo Locurcio | |
This also fixes a typo in the `bitwise_float_right_operand.gd` test. | |||
2021-09-15 | Merge pull request #52706 from vnen/gdscript-ternary-operator-crash | Rémi Verschelde | |
GDScript: Show error when missing expression after ternary else | |||
2021-09-15 | Merge pull request #52705 from vnen/gdscript-error-unary-no-arg | Rémi Verschelde | |
GDScript: Show error on unary operators without argument | |||
2021-09-15 | GDScript: Show error when missing expression after ternary else | George Marques | |