summaryrefslogtreecommitdiffstats
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
* GDScript: Remove `treat_warnings_as_errors` project settingDanil Alexeev2023-02-102-2/+1
|
* Merge pull request #72971 from vnen/gdscript-multiline-commentRémi Verschelde2023-02-095-21/+75
|\ | | | | | | GDScript: Allow strings as multiline comments
| * GDScript: Allow strings as multiline commentsGeorge Marques2023-02-095-21/+75
| | | | | | | | Bring back the behavior in 3.x that was left out by oversight.
* | Merge pull request #72975 from vnen/gdscript-no-ascii-spoof-checkRémi Verschelde2023-02-098-6/+67
|\ \ | | | | | | | | | GDScript: Be more lenient with identifiers
| * | GDScript: Be more lenient with identifiersGeorge Marques2023-02-098-6/+67
| |/ | | | | | | | | | | - Allow identifiers similar to keywords if they are in ASCII range. - Allow constants to be treated as regular identifiers. - Allow keywords that can be used as identifiers in expressions.
* | Merge pull request #69550 from Rindbee/fix-script-editor-not-reload-via-lspRémi Verschelde2023-02-091-0/+1
|\ \ | |/ |/| Fix internal editor not updating when using external editor via LSP
| * Fix internal editor not updating when using external editor via LSPRindbee2023-01-221-0/+1
| |
* | Improve some editor strings for localizationHaoyu Qiu2023-02-091-2/+4
| |
* | Fix null message in assert()kobewi2023-02-081-1/+4
| |
* | Merge pull request #72700 from fire/gltf-export-animationRémi Verschelde2023-02-082-95/+276
|\ \ | | | | | | | | | Fixes to the GLTF export with baking and null checks.
| * | Fixes for gltf export.K. S. Ernest (iFire) Lee2023-02-072-95/+276
| | | | | | | | | | | | | | | * Fix null crashes. * Bake tracks * Add some error messages.
* | | Merge pull request #72849 from RedworkDE/net-export-settingsRémi Verschelde2023-02-081-14/+2
|\ \ \ | | | | | | | | | | | | C#: Rename export settings `mono` -> `dotnet` and remove unused AOT settings
| * | | C#: Rename export settings `mono` -> `dotnet` and remove unused AOT settingsRedworkDE2023-02-071-14/+2
| |/ /
* | | Merge pull request #72493 from dalexeev/gds-export-flagsRémi Verschelde2023-02-072-14/+55
|\ \ \ | | | | | | | | | | | | GDScript: Improve validation and documentation of `@export_flags`
| * | | GDScript: Improve validation and documentation of `@export_flags`Danil Alexeev2023-02-072-14/+55
| |/ /
* | | Merge pull request #72789 from Vilcrow/fix-jump-to-definitionRémi Verschelde2023-02-071-0/+8
|\ \ \ | | | | | | | | | | | | Fixed the jumping to function definition using 'Ctrl+LMB'.
| * | | Fixed the jumping to function definition using 'Ctrl+LMB'.S.V.I. Vilcrow2023-02-071-0/+8
| | | |
* | | | Merge pull request #72061 from paulloz/csharp/better-logs-managementRémi Verschelde2023-02-078-20/+143
|\ \ \ \ | |_|/ / |/| | | | | | | C#: MSBuild logs and panel enhancements
| * | | Try and match MSBuild and Godot UI languagesPaul Joannon2023-02-071-8/+14
| | | |
| * | | Add new settings about MSBuildPaul Joannon2023-02-073-4/+89
| | | | | | | | | | | | | | | | | | | | | | | | - toggle creation of binary logs - manage log verbosity - toggle logging in console
| * | | Add button to open the msbuild logs folderPaul Joannon2023-02-073-2/+29
| | | |
| * | | Rename existing editor settings `mono` -> `dotnet`Paul Joannon2023-02-073-10/+15
| | | |
| * | | Remove script class checks when getting function signatureAdam Scott2023-02-0713-13/+65
| | | |
* | | | Some code simplificationsMarkus Sauermann2023-02-071-4/+1
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | 1. `number_width` isn't used later 2. `return_type` is used only once 3. AudioServer::get_singleton()->get_channel_count() always returns a channel_count of 1 or larger 4. negative `aa->backward` conditional 5. `current_canvas` == `find_world_2d()->get_canvas()` 6. identical if `render_shadows`
* | | Merge pull request #72802 from RedMser/blender-rpc-error-handlingRémi Verschelde2023-02-061-1/+12
|\ \ \ | | | | | | | | | | | | Better error handling for Blender RPC import
| * | | Better error handling for Blender RPC importRedMser2023-02-061-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - If RPC import fails, then try a direct import as well. While it's slower, it may be better than failing the import completely. - Connection errors will disable RPC automatically, to avoid having to wait the full 30 seconds timeout each time. This should be properly fixed by allowing to override the timeout per HTTPClient.
* | | | Merge pull request #72546 from vonagam/fix-typed-array-can-referenceYuri Sizov2023-02-061-0/+6
|\ \ \ \ | | | | | | | | | | GDScript: Fix can_reference check for typed arrays
| * | | | GDScript: Fix can_reference check for typed arraysDmitrii Maganov2023-02-061-0/+6
| | |/ / | |/| |
* | | | Merge pull request #72677 from dalexeev/gds-await-infer-typeYuri Sizov2023-02-065-13/+33
|\ \ \ \ | | | | | | | | | | GDScript: Fix `await` type inference
| * | | | GDScript: Fix `await` type inferenceDanil Alexeev2023-02-065-13/+33
| | | | |
* | | | | Merge pull request #72804 from vnen/gdscript-no-onready-without-nodeYuri Sizov2023-02-065-1/+19
|\ \ \ \ \ | | | | | | | | | | | | GDScript: Fix inheritance check of @onready for inner classes
| * | | | | GDScript: Fix inheritance check of @onready for inner classesGeorge Marques2023-02-065-1/+19
| | | | | |
* | | | | | Merge pull request #70002 from poohcom1/fix/static-subscript-autocompleteYuri Sizov2023-02-061-17/+19
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Fix code-completion suggesting non-static members for custom classes
| * | | | | Fix code-completion suggesting non-static memberspoohcom12023-01-161-17/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In GDScript code-completion: - Fixes class symbols not being marked as meta - Remove signal in static contexts Fixes #69928
* | | | | | Merge pull request #72708 from KoBeWi/PackedMultilineStringArrayYuri Sizov2023-02-061-0/+7
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix @export_multiline for PackedStringArray
| * | | | | | Fix @export_multiline for PackedStringArraykobewi2023-02-041-0/+7
| | | | | | |
* | | | | | | GDScript: Fix recently merged test not ignoring warningsRémi Verschelde2023-02-061-0/+3
| |_|/ / / / |/| | | | |
* | | | | | Merge pull request #72330 from MinusKube/unreachable_code_bugRémi Verschelde2023-02-061-0/+8
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Fix unreachable code warning for elif block
| * | | | | | Fix unreachable code warning for elif blockMinusKube2023-01-291-0/+8
| | | | | | |
* | | | | | | Merge pull request #72628 from lyuma/gltf-reimport-appendingRémi Verschelde2023-02-061-38/+25
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Use reimport_append api for importing embedded gltf images
| * | | | | | | Use reimport_append api for importing embedded gltf imagesLyuma2023-02-061-38/+25
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | Co-authored-by: K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com>
* | | | | | | Merge pull request #72512 from vonagam/fix-ternary-type-sourceYuri Sizov2023-02-065-1/+23
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | GDScript: Fix type certainty for result of ternary operator
| * | | | | | GDScript: Fix type certainty for result of ternary operatorDmitrii Maganov2023-02-015-1/+23
| | | | | | |
* | | | | | | Merge pull request #72794 from vnen/gdscript-no-onready-without-nodeRémi Verschelde2023-02-065-0/+19
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | GDScript: Don't allow @onready without inheriting Node
| * | | | | | | GDScript: Don't allow @onready without inheriting NodeGeorge Marques2023-02-065-0/+19
| | |_|_|_|/ / | |/| | | | |
* | | | | | | Merge pull request #72774 from bruvzg/spoof_loadRémi Verschelde2023-02-062-19/+34
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | [TextServer] Preload USpoofChecker to speed up GDScript parsing.
| * | | | | | | [TextServer] Preload USpoofChecker to speed up GDScript parsing.bruvzg2023-02-052-19/+34
| |/ / / / / /
* | | | | | | Merge pull request #72276 from dalexeev/gds-rpc-annotRémi Verschelde2023-02-063-13/+42
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | GDScript: Better handling of `@rpc` annotation and autocompletion
| * | | | | | | GDScript: Better handling of `@rpc` annotation and autocompletionDanil Alexeev2023-02-053-13/+42
| |/ / / / / /
* | | | | | | Merge pull request #72709 from RedworkDE/net-basedirectory-whoopsRémi Verschelde2023-02-061-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | C#: Fix AppContext.BaseDirectory