summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
2023-02-15Merge pull request #73340 from TokageItLab/diamond-audioRémi Verschelde
Fix display for no-length audio stream keys
2023-02-15Fix display for no-length audio stream keysSilc Renew
2023-02-15Fix editor language dropdown incomplete in some localesHaoyu Qiu
2023-02-14Fix `texture_format/bptc` export optionRedworkDE
2023-02-14Merge pull request #68558 from dzil123/remove_duplicate_wireframeRémi Verschelde
Node3DEditorViewport - Remove duplicate wireframe check and cleanup
2023-02-14Merge pull request #73277 from RandomShaper/fix_pck_errorsRémi Verschelde
Reword misleading error messages in PCK export
2023-02-14Reword misleading error messages in PCK exportPedro J. Estébanez
2023-02-14Merge pull request #73259 from KoBeWi/spaghetti_mapRémi Verschelde
Fix some TileMap errors and crashes
2023-02-14Merge pull request #72259 from Paulb23/json-editingRémi Verschelde
Support editing JSON in ScriptEditor
2023-02-14Merge pull request #67707 from ↵Rémi Verschelde
Cykyrios/hide-private-prop-description-in-classdoc Fix private properties appearing in custom class doc Property Descriptions
2023-02-14Fix some TileMap errors and crasheskobewi
2023-02-13Merge pull request #61411 from snailrhymer/tilemap-editor-scatteringRémi Verschelde
Fix random placement behaviour in new TileMap Editor
2023-02-13Merge pull request #67523 from zaevi/fix_ProjectManager_sortingRémi Verschelde
Fix sorting issue in Project Manager.
2023-02-13Prevent recursive importing (hack)Juan Linietsky
Prevents recursion when importing files due to the ill nature of EditorProgress. The progress dialog will have to be entirely rewritten after 4.0 is out due to it being a constant source of bugs. In the meantime, this fixes the problem. Fixes #53871. Supersedes #73159.
2023-02-12Rework code editor multiline operationsaXu-AP
Fix bugs if 2 selections were on same line. Fix bugs when selection ended at new line. Make carets stay in place after operation and on undo. Affects: delete lines, move lines, toggle comments, bookmarks and breakpoints.
2023-02-12Round 2: Fix mesh library remove selected item menu optionMmAaXx500
Previous pr: #46435 Fixes: #45969
2023-02-12Add more property capitalizationsHaoyu Qiu
* glTF * LODs (plural form of LOD) * Skeleton modification algorithms: CCDIK and FABRIK
2023-02-11Merge pull request #73033 from akien-mga/gdscript-fix-gd4-renames-buildRémi Verschelde
Clean up ProjectConverter3To4 architecture, move renames map to separate file
2023-02-11Merge pull request #46435 from Hassan-A/MeshLibrary-RemoveItem-FixRémi Verschelde
Fix mesh library remove selected item menu option
2023-02-11Merge pull request #71740 from Jummit/dict-array-missing-typesRémi Verschelde
Support signals and callables in exposed dictionaries
2023-02-11Merge pull request #73106 from YuriSizov/editor-help-theming-2000Rémi Verschelde
Improve EditorHelp theming and make font size settings work
2023-02-11Fix mesh library remove selected item menu optionHaz
Fixes #45969.
2023-02-11fix nullptr dereference in AnimationTimelineEditRuthger Dijt
2023-02-11Increase default font sizes for EditorHelpYuri Sizov
2023-02-11Make EditorHelp respect font size settingsYuri Sizov
2023-02-11Make use of a theme cache in EditorHelp and ensure it's updatedYuri Sizov
- Migrates the existing cache to the standard theme cache struct - Moves some parts of the codebase to use cache instead of ad-hoc fetching - Adds hooks to editor settings previously missing from theme regeneration
2023-02-11Merge pull request #73098 from YuriSizov/editor-dont-hide-pluginsRémi Verschelde
Avoid cleaning up editor plugins when property list changes
2023-02-11Merge pull request #73092 from TokageItLab/ray-is-whatRémi Verschelde
Remove WARNING "ray: index" for debug from SkeletonEditor
2023-02-11Merge pull request #73091 from TokageItLab/fix-bezier-edit-button-updateRémi Verschelde
Fix weird bezier edit button update timing in AnimationTrackEditor
2023-02-11Avoid cleaning up editor plugins when property list changesYuri Sizov
Also removes a usability hack from the Theme editor, as it doesn't work anymore, and it confuses the Inspector.
2023-02-11Merge pull request #73082 from aaronfranke/check-canvas-itemRémi Verschelde
Check for CanvasItem instead of Control and Node2D
2023-02-11Remove WARNING "ray: index" for debug from SkeletonEditorSilc Renew
2023-02-11Fix weird bezier edit button update timing in AnimationTrackEditorSilc Renew
2023-02-11Check for CanvasItem instead of Control and Node2DAaron Franke
2023-02-11Fix code editor's ColorPicker issueheppocogne
ColorPicker now supports color constants. Modify code comments.
2023-02-10Fix random placement behaviour in new TileMap EditorSnailRhymer
Fix a bug where scattering could be set to e.g. 0.9 but a tile would still always be placed, as the check rand > 0.9 would be run on every mouse movement until it was successful.
2023-02-10Merge pull request #71691 from ↵Rémi Verschelde
hcoura/res-importer-gen-physics-mesh-only-when-needed Fix SceneImportSettings perf issues
2023-02-10Merge pull request #71054 from ↵Rémi Verschelde
MarioLiebisch/fix-animationplayer-calltrack-strings Properly stringify args for Call Method Tracks
2023-02-10Merge pull request #73042 from akien-mga/create-project-gl_compatibility-mobileRémi Verschelde
ProjectManager: Also set `gl_compatibility` for mobile override
2023-02-10Merge pull request #43111 from junkajii/masterYuri Sizov
New icons for ParallaxBackground & ParallaxLayer
2023-02-10ProjectManager: Also set `gl_compatibility` for mobile overrideRémi Verschelde
It's a bit hacky as the choice mainly impacts the main setting, but there are pre-existing overrides which supersede it. We should treat this checkbox as the highest allowed rendering method, and replace the ones which would be higher end (here replace `mobile` with the chosen `gl_compatibility`).
2023-02-10i18n: Sync translations with WeblateRémi Verschelde
2023-02-10Merge pull request #73001 from SaracenOne/update_on_advanced_reimportRémi Verschelde
Emit reimport signal in reimport_file_with_custom_parameters method
2023-02-10Merge pull request #73007 from KoBeWi/typos_be_likeRémi Verschelde
Fix error spam when deselecting TileMap
2023-02-10Merge pull request #73034 from groud/fix_tilemap_patternRémi Verschelde
Fix TileMap patterns creation
2023-02-10Clean up ProjectConverter3To4 architecture, move renames map to separate fileRémi Verschelde
This allows properly limiting what features depend on the RegEx module (doing the actual conversion) and what features only require the renames data (GDScript suggestions). Also better excludes the conversion command line options when actually disabling deprecated code. Fixes #73029.
2023-02-10Fix TileMap patterns creationGilles Roudière
2023-02-10Add some missing translatable editor stringsHaoyu Qiu
2023-02-10Fix error spam when deselecting TileMapkobewi
2023-02-09Emit reimport signal in reimport_file_with_custom_parametersSaracenOne
method to fix resources not updating when reimported from the advanced import menu.