Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-24 | Merge pull request #40598 from vnen/gdscript-2.0 | Rémi Verschelde | |
GDScript 2.0 (again) | |||
2020-07-22 | Wrap up GDScript 2.0 base implementation | George Marques | |
2020-07-21 | Update core documentation to match recent C# changes | Aaron Franke | |
Also a few minor API changes like adding AABB.abs() Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2020-07-20 | Reintroduce code completion | George Marques | |
2020-07-20 | Reenable GDScript LSP server | George Marques | |
2020-07-20 | Added support for enums to be used as types in GDScript | George Marques | |
2020-07-20 | Add warning checks in GDScript analyzer | George Marques | |
Reenable checking those when validating code. | |||
2020-07-20 | Add new GDScript type checker | George Marques | |
2020-07-20 | Add better local variable detection in GDScript parser | George Marques | |
Also store Variant operator to avoid needing to do it repeatedly in later compiling stages. | |||
2020-07-20 | Add GDScript cache singleton | George Marques | |
2020-07-20 | Add support for properties | George Marques | |
2020-07-20 | Fix comments in beginning of file | George Marques | |
Also improve error for unknown characters. | |||
2020-07-20 | New GDScript tokenizer and parser | George Marques | |
Sometimes to fix something you have to break it first. This get GDScript mostly working with the new tokenizer and parser but a lot of things isn't working yet. It compiles and it's usable, and that should be enough for now. Don't worry: other huge commits will come after this. | |||
2020-07-14 | Include gdscript warning name in LSP message. | Ryan Roden-Corrent | |
My initial attempt changed this in the gdscript code, which resulted in a duplicate warning name in the builtin editor. We should just append the warning name in the LSP instead. This uses parens to match what is shown in the builtin editor. | |||
2020-07-14 | Revert "Include gdscript warning name in the warning message." | Ryan Roden-Corrent | |
This reverts commit de3ad3b30ecb8de1aa112df7d61630102f077b5b. | |||
2020-07-11 | Extract Syntax highlighting from TextEdit and add EditorSyntaxHighlighter | Paulb23 | |
- Extacted all syntax highlighting code from text edit - Removed enable syntax highlighting from text edit - Added line_edited_from signal to text_edit - Renamed get/set_syntax_highlighting to get/set_syntax_highlighter - Added EditorSyntaxHighligher | |||
2020-07-11 | Expose Syntax highlighter for editor plugins | Paulb23 | |
2020-07-11 | Convert syntax highlighters into a resource | Paulb23 | |
2020-07-10 | Add override keywords. | Marcel Admiraal | |
2020-07-06 | Fix GDScriptEditorTranslationParserPlugin instance leak | SkyJJ | |
2020-07-06 | Merge pull request #40155 from rcorre/warning-names | Rémi Verschelde | |
Include gdscript warning name in the warning message. | |||
2020-07-06 | Merge pull request #40116 from ThakeeNathees/editor-crash-on-super-constructor | Rémi Verschelde | |
Fix: editor crash on super constructor called | |||
2020-07-06 | Include gdscript warning name in the warning message. | Ryan Roden-Corrent | |
Occasionally you want to ignore a warning with a `warning-ignore` comment, and you have to go into the settings to look up what the actual name of the warning is. This patch appends the warning name to the end of the warning so you know what string to use to ignore it, similar to other linters like pylint. For example ``` "The signal 'blah' is declared but never emitted."; ``` is now ``` "The signal 'blah' is declared but never emitted. (UNUSED_SIGNAL)"; ``` | |||
2020-07-05 | Change translation parser plugin API to parse_file() | SkyJJ | |
2020-07-04 | Fix: editor crash on super constructor called | Thakee Nathees | |
Fix: #39909 | |||
2020-07-02 | Add translation parser plugin support | SkyJJ | |
2020-07-01 | Merge pull request #38713 from aaronfranke/string-64bit | Rémi Verschelde | |
Make all String integer conversion methods be 64-bit | |||
2020-06-28 | Improve the preload and load descriptions | Tomasz Chabora | |
2020-06-17 | Merge pull request #38067 from ThakeeNathees/elif-error-line-fixed | Rémi Verschelde | |
GDScript debugger incorrect error line fixed | |||
2020-06-17 | GDScript debugger incorrect error line fixed | Thakee Nathees | |
if the first line of an else or an elif throws a runtime error the debugger shows incorrect line number. | |||
2020-06-16 | Merge pull request #39275 from ThakeeNathees/shadowed-warning-for-loop-counter | Rémi Verschelde | |
Added shadowed var warning for `for` loop counter | |||
2020-06-16 | Merge pull request #39314 from ThakeeNathees/debugger-incorrect-line-fix | Rémi Verschelde | |
GDScript debugger stepping to incorrect line fix | |||
2020-06-16 | Merge pull request #39315 from ThakeeNathees/ctrl-click-fix-for-subclasses | Rémi Verschelde | |
Fix: Ctrl + Click not working for subclasses | |||
2020-06-15 | GDScript LSP: Fix wrong error checks added in #39385 | Rémi Verschelde | |
Reverts `latest_client_id` back to 0, as I misunderstood how the client IDs are assigned and, without further testing and debugging, I can't say if this was a bug or a valid default value. Similarly, a `latest_client_id` of -1 is no longer raising an error. Fixes #39548. | |||
2020-06-08 | GDScript LSP: Fix crash in notify_client | Rémi Verschelde | |
`latest_client_id` now defaults to `-1` (invalid ID) instead of `0`. Also fix typo in notification `gdscrip_client/changeWorkspace`, and fix argument names in method binds. Fixes #39375. | |||
2020-06-05 | Merge pull request #39301 from Calinou/fix-argument-parameter-confusion | Rémi Verschelde | |
Tweak the GDScript error message about passed argument type mismatch | |||
2020-06-05 | Merge pull request #39276 from ThakeeNathees/predefined-check-for-loop-counter | Rémi Verschelde | |
Added predefined var check for `for` loop counter | |||
2020-06-05 | Fix: Ctrl + Click not working for subclasses | Thakee Nathees | |
2020-06-05 | Debugger stepping to incorrect line fix | Thakee Nathees | |
Fix: #39296 | |||
2020-06-04 | Tweak the GDScript error message about passed argument type mismatch | Hugo Locurcio | |
This makes it less confusing. This closes https://github.com/godotengine/godot-proposals/issues/670. | |||
2020-06-04 | predefined var check for `for` loop counter | Thakee Nathees | |
2020-06-04 | shodowed var warning for `for` loop counter | Thakee Nathees | |
Fix: #39268 | |||
2020-06-03 | Rename String bin_to_int64 to bin_to_int | Aaron Franke | |
And also change String static to_int(const char *) to return int64_t | |||
2020-06-03 | Remove 32-bit String hex_to_int method | Aaron Franke | |
2020-06-03 | Remove 32-bit String to_int method | Aaron Franke | |
2020-05-29 | Actually set GDScript static reference | George Marques | |
2020-05-27 | Merge pull request #39074 from vnen/gdscript-assert-message | Rémi Verschelde | |
Fix assert message when no custom message is set | |||
2020-05-26 | GDScript: Fix assert message when no custom message is set | George Marques | |
2020-05-25 | Merge pull request #39015 from ↵ | Rémi Verschelde | |
ThakeeNathees/dict-key-autocomplete-regression-fix regression: dictionary key no autocomplete fix | |||
2020-05-24 | regression: dictionary key no autocomplete fix | Thakee Nathees | |
Fix: #38998 |