Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-04 | Improve app name and system permission message localization. | bruvzg | |
Add localizable string (Dictionary<Lang Code, String>) property editor and property hint. Add localized "app name" property to the project settings. Add localized permission and copyright properties to the macOS and iOS export settings. Remove some duplicated ("app name") and deprecated ("info") macOS and iOS export properties. | |||
2022-03-04 | Merge pull request #58185 from V-Sekai/explicit_variant_assignment_fix | Rémi Verschelde | |
2022-03-04 | Merge pull request #58201 from V-Sekai/debugger_locals | Rémi Verschelde | |
2022-03-04 | Merge pull request #58320 from mphe/fix_object_typed_arrays | Rémi Verschelde | |
2022-03-04 | Merge pull request #58250 from V-Sekai/typed_array_fix | Rémi Verschelde | |
2022-03-04 | Merge pull request #58626 from groud/fix_gdscript_analyser_crash | Rémi Verschelde | |
2022-03-04 | Merge pull request #58512 from Calinou/light3d-add-distance-fade | Rémi Verschelde | |
2022-03-04 | Merge pull request #58673 from Calinou/smooth-trimesh-collision-always-setting | Rémi Verschelde | |
2022-03-04 | Merge pull request #58691 from miremrie/absolute-file-path-in-file-browser | Rémi Verschelde | |
2022-03-04 | Merge pull request #58687 from YeldhamDev/the_beast_has_been_slain | Rémi Verschelde | |
2022-03-04 | Merge pull request #58742 from timothyqiu/x11-leak | Rémi Verschelde | |
Fix X11 memory leak after drag & drop file into the editor | |||
2022-03-04 | Merge pull request #58739 from Calinou/control-add-constructors | Rémi Verschelde | |
Add optional constructor arguments to more Control nodes | |||
2022-03-04 | Merge pull request #58741 from ↵ | Rémi Verschelde | |
Calinou/editor-visual-profiler-fix-light-font-color Fix font color in the editor visual profiler when using light theme | |||
2022-03-04 | Merge pull request #58738 from bruvzg/mac_resize_crash | Rémi Verschelde | |
[macOS] Disable window redraw during resize, when rendering in the separate thread. | |||
2022-03-04 | Merge pull request #58740 from timothyqiu/text-editor-separator | Rémi Verschelde | |
Remove extra separator when `TextEdit` is read only and unselectable | |||
2022-03-04 | Merge pull request #58733 from bruvzg/plist_locale | Rémi Verschelde | |
2022-03-04 | Fix X11 memory leak after drag & drop file into the editor | Haoyu Qiu | |
2022-03-04 | Merge pull request #58670 from KoBeWi/internal_debugger | Rémi Verschelde | |
2022-03-04 | Add optional constructor arguments to more Control nodes | Hugo Locurcio | |
This can be used to make editor code more compact. However, as of writing, these constructor arguments cannot be used from the scripting API. This was already provided for Label and CheckBox, but it was missing for other Control nodes where it made sense to provide a default value. | |||
2022-03-04 | Merge pull request #58731 from Calinou/editor-theme-clamp-base-colors | Rémi Verschelde | |
Clamp the editor theme's base colors to avoid various issues | |||
2022-03-04 | Fix font color in the editor visual profiler when using light theme | Hugo Locurcio | |
Previously, white text would be drawn on a white background. | |||
2022-03-04 | [macOS] Disable window redraw during resize, when rendering in the separate ↵ | bruvzg | |
thread. | |||
2022-03-04 | Remove extra separator when TextEdit is read only and unselectable | Haoyu Qiu | |
2022-03-04 | Merge pull request #58730 from ↵ | Rémi Verschelde | |
Calinou/editor-visual-profiler-use-background-color Use the editor background color for the visual profiler graph | |||
2022-03-04 | Merge pull request #58725 from fire-forge/sprite2d_menu_icons | Rémi Verschelde | |
Add node icons to the Sprite2D menu | |||
2022-03-04 | Clamp the editor theme's base colors to avoid various issues | Hugo Locurcio | |
This fixes the profiler backgrounds being black when using the light editor theme (which is a regression from using a negative contrast setting by default for the Light preset). | |||
2022-03-04 | [macOS and iOS export] Add localized application name to the translation ↵ | bruvzg | |
.plist files. | |||
2022-03-04 | Use the editor background color for the visual profiler graph | Hugo Locurcio | |
This was already done for the general profiler. | |||
2022-03-04 | Add node icons to the Sprite2D menu | FireForge | |
2022-03-04 | Merge pull request #58721 from raulsntos/csharp-docgen | Rémi Verschelde | |
Various fixes to C# documentation generator | |||
2022-03-03 | Make `TabContainer` use `TabBar` internally | Michael Alexsander | |
2022-03-03 | Refactor `bbcode_to_xml` into multiple specific methods | Raul Santos | |
The specific `_append_xml_*` methods implement the logic that generates the proper XML documentation for the given BBCode tag and target and appends it to the output. | |||
2022-03-03 | Find inherited members in C# documentation generator | Raul Santos | |
2022-03-03 | Add theme_item support to C# documentation generator | Raul Santos | |
2022-03-03 | Fix checking for `@GlobalScope` in C# documentation generator | Raul Santos | |
2022-03-03 | Check for missing methods/members in C# documentation generator | Raul Santos | |
- Outputs errors for missing members or methods when generating the C# documentation. - Hardcodes a special case for the `_init` method, in C# we'll reference the constructor. - Ignores properties with slashes (since they are not declared in C# and can't be referenced in the documentation). | |||
2022-03-03 | Fix references to global constants in C# documentation generator | Raul Santos | |
Tries to find the referenced constants in the GlobalScope if not found in the target class or if no class is specified. | |||
2022-03-03 | Merge pull request #58711 from lyuma/fix_gltf_blend_export | Rémi Verschelde | |
glTF export for new TYPE_BLEND_SHAPE tracks | |||
2022-03-03 | Merge pull request #57478 from FelixNemis/physics-signal-doc-fix | Rémi Verschelde | |
Fix snippet for getting collisionshape node in body/area signal docs | |||
2022-03-03 | Merge pull request #58705 from timothyqiu/ttr-vformat | Rémi Verschelde | |
Use `vformat()` instead of string concatenation inside `TTR()` | |||
2022-03-03 | glTF export for new TYPE_BLEND_SHAPE tracks | Lyuma | |
2022-03-03 | Merge pull request #58643 from KoBeWi/👀 | Max Hilbrunner | |
Update some docs regarding SubViewports | |||
2022-03-03 | Merge pull request #57466 from Sauermann/fix-rect2i-intersect-doc | Max Hilbrunner | |
Fix Rect2i.intersects doc: Remove nonexistent parameter from documentation | |||
2022-03-03 | Merge pull request #58262 from Sauermann/fix-range-doc | Max Hilbrunner | |
Describe usage of float in range documentation | |||
2022-03-03 | Merge pull request #58162 from KoBeWi/RY | Max Hilbrunner | |
Update description of LINE_TEXTURE constants | |||
2022-03-03 | Use vformat() instead of string concatenation inside TTR() | Haoyu Qiu | |
2022-03-03 | Merge pull request #58699 from Calinou/lineedit-textedit-fix-caret-disappearing | Rémi Verschelde | |
Fix LineEdit and TextEdit carets disappearing at theme scales below 1.0 | |||
2022-03-03 | Fix LineEdit and TextEdit carets disappearing at theme scales below 1.0 | Hugo Locurcio | |
This fixes carets disappearing in the editor when the Editor Scale setting is set below 100%. | |||
2022-03-02 | Merge pull request #58684 from ↵ | Rémi Verschelde | |
IgorKordiukiewicz/atlas-source-editor-properties-errors Added property hint to id property in tile set atlas source editor | |||
2022-03-02 | Added property hint to id property in tile set atlas source editor | Igor Kordiukiewicz | |