aboutsummaryrefslogtreecommitdiff
path: root/tools/editor (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | Merge pull request #7082 from volzhs/attach-scriptRémi Verschelde2016-11-114-106/+100
| |\ \ \ \ \ | | | | | | | | | | | | | | Can create or load script on Attach script dialog
| | * | | | | Can create or load script on Attach script dialogvolzhs2016-11-114-106/+100
| | | | | | |
| * | | | | | Merge pull request #7078 from pkowal1982/export_buttonRémi Verschelde2016-11-111-6/+17
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Export immediately if only one device present
| | * | | | | | Export immediately if only one device presentPawel Kowal2016-11-081-6/+17
| | | | | | | |
| * | | | | | | Merge pull request #7052 from Paulb23/text_edit_color_uniformationRémi Verschelde2016-11-092-12/+4
| |\ \ \ \ \ \ \ | | |_|/ / / / / | |/| | | | | | Made background and symbol color follow the color API
| | * | | | | | Made background and symbol color follow the color APIPaulb232016-11-062-12/+4
| | |/ / / / /
| * | | | | | Merge pull request #7027 from Keetz/masterRémi Verschelde2016-11-091-31/+4
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix scene tree drag & drop places node as child (#6912)
| | * | | | | | Fix scene tree drag & drop places node as child (#6912)Keetz2016-11-031-31/+4
| | | | | | | |
| * | | | | | | Merge pull request #7068 from volzhs/fix-project-nameRémi Verschelde2016-11-091-2/+2
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Set project name as directory name instead of '.'
| | * | | | | | | Set project name as directory name instead of '.'volzhs2016-11-081-2/+2
| | | |/ / / / / | | |/| | | | |
| * / | | | | | Select newly created or imported project automaticallyvolzhs2016-11-082-2/+45
| |/ / / / / /
| * | | | | | Merge pull request #7035 from volzhs/undo-redo-duplicateRémi Verschelde2016-11-061-0/+2
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Prevent to make UndoRedo for duplicate if no selected node
| | * | | | | | Prevent to make UndoRedo for duplicate if no selected nodevolzhs2016-11-051-0/+2
| | | | | | | |
| * | | | | | | Merge pull request #7026 from SaracenOne/value_track_flag_fixRémi Verschelde2016-11-063-44/+51
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fixed flag for importing animation and skipping value tracks.
| | * | | | | | | Fixed flag for importing animation and skipping value tracks.Saracen2016-11-033-44/+51
| | |/ / / / / /
| * | | | | | | Merge pull request #7009 from volzhs/fix-double-clickRémi Verschelde2016-11-061-1/+0
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix to focus or rename node by double click
| | * | | | | | | Fix to focus or rename node by double clickvolzhs2016-11-011-1/+0
| | | | | | | | |
| * | | | | | | | Fix #7016, add script create iconPawel Kowal2016-11-054-2/+98
| | |/ / / / / / | |/| | | | | |
| * | | | | | | Option for detaching script from node (#6934).Mateusz Adamczyk2016-11-012-3/+39
| | | | | | | |
| * | | | | | | style: Various other PEP8 fixes in Python filesRémi Verschelde2016-11-012-22/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E7`, fixes: - E701 - Put colon-separated compound statement on separate lines. - E702 - Put semicolon-separated compound statement on separate lines. - E703 - Put semicolon-separated compound statement on separate lines. - E711 - Fix comparison with None. - E712 - Fix (trivial case of) comparison with boolean. - E713 - Fix (trivial case of) non-membership check. - E721 - Fix various deprecated code (via lib2to3).
| * | | | | | | style: Fix PEP8 blank lines issues in Python filesRémi Verschelde2016-11-012-11/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E3,W3`, fixes: - E301 - Add missing blank line. - E302 - Add missing 2 blank lines. - E303 - Remove extra blank lines. - E304 - Remove blank line following function decorator. - E309 - Add missing blank line. - W391 - Remove trailing blank lines.
| * | | | | | | style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-015-57/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace.
| * | | | | | | style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde2016-11-012-118/+118
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E1`, fixes: - E101 - Reindent all lines. - E112 - Fix under-indented comments. - E113 - Fix over-indented comments. - E115 - Fix under-indented comments. - E116 - Fix over-indented comments. - E121 - Fix a badly indented line. - E122 - Fix a badly indented line. - E123 - Fix a badly indented line. - E124 - Fix a badly indented line. - E125 - Fix indentation undistinguish from the next logical line. - E126 - Fix a badly indented line. - E127 - Fix a badly indented line. - E128 - Fix a badly indented line. - E129 - Fix a badly indented line.
| * | / / / / Fix memory leak with drag & drop on 2D viewportvolzhs2016-10-311-0/+1
| | |/ / / / | |/| | | |
| * | | | | Fix p_index out of size error when closing scriptvolzhs2016-10-311-1/+1
| | | | | |
| * | | | | Fix 2 search menus are shownvolzhs2016-10-311-11/+6
| | | | | |
| * | | | | Fix bug with saving last select language and remove warningvolzhs2016-10-301-6/+1
| | | | | |
* | | | | | Merge branch 'master' of https://github.com/godotengine/godotJuan Linietsky2016-10-3056-232/+1216
|\| | | | |
| * | | | | Merge pull request #6962 from henriquelalves/external_editor_focus_bugRémi Verschelde2016-10-301-2/+6
| |\ \ \ \ \ | | | | | | | | | | | | | | Won't change editor tabs when using External Editor.
| | * | | | | Won't change editor tabs when using External Editor.Henrique L. Alves2016-10-291-2/+6
| | |/ / / / | | | | | | | | | | | | | | | | | | Fixes issue #3046.
| * | | | | Merge pull request #6945 from Hinsbart/script_dndRémi Verschelde2016-10-304-2/+38
| |\ \ \ \ \ | | | | | | | | | | | | | | Ability to drag script files from Filesystem dock to SceneTree dock.
| | * | | | | Ability to drag script files from Filesystem dock to SceneTree dock.Andreas Haas2016-10-274-2/+38
| | |/ / / / | | | | | | | | | | | | | | | | | | Allows to attach scripts by dragging them onto the target Node.
| * | | | | Merge pull request #6920 from volzhs/dragndrop-2dRémi Verschelde2016-10-303-6/+453
| |\ \ \ \ \ | | | | | | | | | | | | | | Improve drag and drop on 2D viewport
| | * | | | | Improve drag and drop on 2D viewportvolzhs2016-10-263-6/+453
| | | |_|/ / | | |/| | |
| * | | | | Merge pull request #6874 from mateka/issue-6839Rémi Verschelde2016-10-302-6/+64
| |\ \ \ \ \ | | | | | | | | | | | | | | Option to load script for node (#6839)
| | * | | | | Option to load script for node (#6839)Mateusz Adamczyk2016-10-192-6/+64
| | | | | | |
| * | | | | | Merge pull request #6614 from TheKK/issue5989Rémi Verschelde2016-10-301-20/+27
| |\ \ \ \ \ \ | | |_|_|/ / / | |/| | | | | Make FileDialog directory selection less misleading
| | * | | | | Append selected dir when openning dir with EditorfiledialogYing-Ruei Liang(KK)2016-09-261-7/+13
| | | | | | |
| | * | | | | Show "." in item_list of EditorFiledialogYing-Ruei Liang(KK)2016-09-261-13/+14
| | | | | | |
| * | | | | | Remove dead code in FileSystemDockvolzhs2016-10-231-7/+0
| | |_|/ / / | |/| | | |
| * | | | | Prevent unwanted script editor input on game crashHenrique Lacreta Alves2016-10-221-0/+1
| | | | | | | | | | | | | | | | | | Fixes #6530.
| * | | | | Merge pull request #6710 from lordadamson/masterRémi Verschelde2016-10-224-1/+46
| |\ \ \ \ \ | | |_|/ / / | |/| | | | fix #6031 when creating a script the default language will be what yo…
| | * | | | fix #6031 when creating a script the language will be what you selected last ↵Adham Zahran2016-10-204-1/+46
| | | |/ / | | |/| | | | | | | | | | | | time
| * | | | Merge pull request #6850 from akien-mga/pr-scsub-shebangRémi Verschelde2016-10-175-0/+10
| |\ \ \ \ | | | | | | | | | | | | SCsub: Add python shebang as a hint for syntax highlighting
| | * | | | SCsub: Add python shebang as a hint for syntax highlightingRémi Verschelde2016-10-175-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | Also switch existing shebangs to "better" /usr/bin/env python.
| * | | | | Merge pull request #6796 from mateka/issue-3486Rémi Verschelde2016-10-171-2/+14
| |\ \ \ \ \ | | | | | | | | | | | | | | Possibility to write node path by hand in exported NodePath variable (#3486)
| | * | | | | Possibility to write node path by hand in exported NodePath variable (#3486)Mateusz Adamczyk2016-10-111-2/+14
| | | | | | |
| * | | | | | Merge pull request #6825 from volzhs/import-3d-scene-nameRémi Verschelde2016-10-171-2/+18
| |\ \ \ \ \ \ | | |_|/ / / / | |/| | | | | Add option for root node name on Import 3D scene window
| | * | | | | Add option for root node name on Import 3D scene windowvolzhs2016-10-151-2/+18
| | | | | | |
| * | | | | | Merge pull request #6793 from volzhs/save-branchRémi Verschelde2016-10-142-1/+30
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Replace a node with saved branch scene instance