summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
2018-03-17Fixes scrollbars in Canvas Item EditorGilles Roudiere
2018-03-15Merge pull request #17388 from Hinsbart/mono_class_nameRémi Verschelde
Mono: Avoid invalid class names.
2018-03-15Mono: Avoid invalid class names.Andreas Haas
Disallow reserved keywords as class names and prefix base class with the Godot namespace if it's the same as the class name. Fixes #12483
2018-03-14Merge pull request #17420 from marcelofg55/fscache_err_checksRémi Verschelde
Added error checks for fscache saving
2018-03-13Added error checks for fscache savingMarcelo Fernandez
2018-03-13Merge pull request #16971 from Noshyaar/tilemapRémi Verschelde
TileMap: add fix_invalid_tiles
2018-03-13Merge pull request #16978 from Noshyaar/tmscRémi Verschelde
Add icon to TileMapEditor popupmenu
2018-03-13Merge pull request #17013 from Noshyaar/themeRémi Verschelde
Update icons when theme changed
2018-03-13Merge pull request #17094 from Calinou/add-dynamicfont-hinting-optionsRémi Verschelde
Add an hinting mode setting to DynamicFonts
2018-03-13Merge pull request #17104 from Faless/assetlib_more_threadsRémi Verschelde
More threading in AssetLib
2018-03-13Merge pull request #17116 from poke1024/fix16734Rémi Verschelde
Fix round preview getting square on "run scene" (issue 16734)
2018-03-13Merge pull request #17138 from simedis/import_md5Rémi Verschelde
Make md5's not be in the same file as the import settings
2018-03-13Merge pull request #17154 from Hinsbart/fix_text_editor_settingsRémi Verschelde
ScriptEditor: Use EditorSettings instead of hardcoded values in constructor.
2018-03-13Merge pull request #17166 from Noshyaar/tilemap2Rémi Verschelde
TileSet&TextureRegion: fix error when getting nonexistent tile
2018-03-13Merge pull request #17172 from StateOff/add_show_axis_optionsRémi Verschelde
Add "Show Origin" and "Show Viewport" options to 2D Editor Viewport
2018-03-13Merge pull request #17176 from Noshyaar/audiobusRémi Verschelde
EditorAudioBus: expand effects list
2018-03-13Merge pull request #17184 from Noshyaar/tilemap3xRémi Verschelde
TileSetEditorPlgn: use EditorHandle icon as handle
2018-03-13Merge pull request #17311 from marcelofg55/export_err_checksRémi Verschelde
Improved error checking at EditorExportPlatformPC::export_project
2018-03-13Merge pull request #17379 from poke1024/fix-anim-popupsRémi Verschelde
AnimationPlayer: fix popups close on double click
2018-03-13Merge pull request #17380 from robfram/fix-change-node-typeRémi Verschelde
Fix overwriting all common properties when using `Change Type` tool
2018-03-13Merge pull request #17381 from poke1024/fix-anim-scrubRémi Verschelde
AnimationPlayer: fix scrubbing after play backwards
2018-03-13Merge pull request #17440 from viktor-ferenczi/issue-5042Rémi Verschelde
Properly closing all files in Python build code
2018-03-13Merge pull request #17390 from poke1024/fix-anim-text-overlapRémi Verschelde
Fixes overlapping text labels in animation editor timeline
2018-03-13Merge pull request #17404 from poke1024/fix-anim-player-panRémi Verschelde
Fix wrong pan direction in animation player ui
2018-03-13Merge pull request #17406 from poke1024/fix-anim-key-uiRémi Verschelde
Fix broken hover/select coloring of keys in animation editor
2018-03-13Merge pull request #17413 from ShyRed/previewfixRémi Verschelde
Update preview on filesystem change
2018-03-13Merge pull request #17435 from poke1024/output-error-iconRémi Verschelde
Show error icon at "Output" in case of errors
2018-03-13Merge pull request #17441 from poke1024/fix-autoload-column-widthRémi Verschelde
Fix column width on AutoLoad table on hidpi displays
2018-03-13Merge pull request #17319 from eska014/polyclipper-toolsonlyRémi Verschelde
Build polygon clipper only in tools builds
2018-03-13Merge pull request #17455 from Noshyaar/capitalizeRémi Verschelde
ScriptTextEditor: fix capitalize offset
2018-03-13Merge pull request #17442 from Noshyaar/esrRémi Verschelde
EditorNode: fix clicking ok keeps trying to save
2018-03-12Fix non working action names containing whitespacesrobfram
Now the action name is quoted if it contains spaces. Also, quotation mark (") is added to the forbidden character list for action names, as it was also a bug. Fix #17322
2018-03-12ScriptTextEditor: fix capitalize offsetPoommetee Ketson
2018-03-11EditorNode: fix clicking ok keeps trying to savePoommetee Ketson
2018-03-11Fix column width on AutoLoad table on hidpi displaysBernhard Liebl
2018-03-11Properly closing all files in Python codeViktor Ferenczi
2018-03-11Show error icon at "Output" in case of errorsBernhard Liebl
2018-03-10Update preview on filesystem changeShyRed
Check and recreate a file's preview, if it has changes to it in the filesystem.
2018-03-10Fix broken hover/select coloring of keys in animation editorBernhard Liebl
2018-03-10Fix wrong pan direction in animation player uiBernhard Liebl
2018-03-09Fix overlapping timeline text in AnimationEditorBernhard Liebl
2018-03-09AnimationPlayer: fix scrubbing after play backwardsBernhard Liebl
2018-03-09AnimationPlayer: fix popups close on double clickBernhard Liebl
2018-03-09Fix overwriting all common properties when using `Change Type` toolrobfram
If you change the type of an existing node, it checks if you have modified the initial value of their properties before overwriting their values in the new node. For example, if you created a `Label` and changed it to `LineEdit`, the `mouse_filter` property was created as `Ignore` for the original `Label` node, and was maintained after changing it to `LineEdit` causing not to work as expected. Now it checks if `Ignore` is the default value for `Label` nodes, and as it is, the property value is left unchanged, maintaining the default value for `LineEdit`, which is `Stop`. Fix #13955 and alike.
2018-03-07FIX to broken item select list (zoom and RMB)Ranoller
FIX to #17346. Compiled and tested.
2018-03-07Merge pull request #17243 from delftswa2018/trailingDotFixHein-Pieter van Braam
Fix being able to create folder name with ending '.' on Windows
2018-03-07Added a check for trailing dot when creating folder.Felix Yang
Merge the trailing dot test into existing test. Removed OS test.
2018-03-06Build polygon clipper only in tools buildsLeon Krause
2018-03-06Improved error checking at EditorExportPlatformPC::export_projectMarcelo Fernandez
2018-03-05Merge pull request #17247 from poke1024/canvas-select-prioRémi Verschelde
In CanvasItemEditor, prioritize selected items when dragging