summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2016-12-08Merge pull request #7233 from Hinsbart/fix_dnd_crashRémi Verschelde
Fix crash on project importing by dragging a folder.
2016-12-08Merge pull request #7229 from volzhs/show-selected-nodeRémi Verschelde
Show selected node in Scene dock when parent node is folded
2016-12-03TextureRegionEditor: Fix mouse wheel scroll speed.Andreas Haas
Any given mouse wheel input will generate two InputEvents in godot. The zoom methods here acted on both ones, effectively giving a step value of 4 instead of 2. Fixes #7236
2016-12-02Fix crash on project importing by dragging a folder.Andreas Haas
Fixes #7226
2016-12-02Merge pull request #7191 from volzhs/check-android-releaseRémi Verschelde
Check keystore field when export Android release apk
2016-12-02Show selected node in Scene dock when parent node is foldedvolzhs
Fix #7228
2016-11-29Check keystore field when export Android release apkvolzhs
2016-11-27Fix snap mode selector sticking in texture region moduleDmitry Kram
When changing snap mode in texture region plugin ticks was not updating. Issue fixed changing order of setting checked status and setting snap mode.
2016-11-25Set minimum version to 10.9 building OSXBastiaanOlij
2016-11-15i18n: Sync template and translations with current codeRémi Verschelde
2016-11-15i18n: Sync translations with WeblateRémi Verschelde
Adds initial translations for Hungarian and Pirate (yaaaar!)
2016-11-15Merge pull request #7115 from sketchyfun/path3D_handle_snapRémi Verschelde
Added snapping to 3D path handles
2016-11-14Added snapping to 3D path handles to bring it in line with its 2D counterpartBen Hickling
2016-11-14Check entered and trimmed path when create, import, install projectvolzhs
2016-11-14Merge pull request #7111 from volzhs/crash-import-sceneRémi Verschelde
Fix crash when select target path on import 3d scene window
2016-11-14Fix crash when select target path on import 3d scene windowvolzhs
2016-11-12Prevent to select children if selection lock or instanced scenevolzhs
Fix #7086
2016-11-11Merge pull request #6998 from volzhs/fix-editor-settingsRémi Verschelde
Fix resetting to default value in EditorSettings
2016-11-11Merge pull request #7082 from volzhs/attach-scriptRémi Verschelde
Can create or load script on Attach script dialog
2016-11-11Merge pull request #7078 from pkowal1982/export_buttonRémi Verschelde
Export immediately if only one device present
2016-11-11Can create or load script on Attach script dialogvolzhs
2016-11-09Merge pull request #7052 from Paulb23/text_edit_color_uniformationRémi Verschelde
Made background and symbol color follow the color API
2016-11-09Merge pull request #7027 from Keetz/masterRémi Verschelde
Fix scene tree drag & drop places node as child (#6912)
2016-11-09Merge pull request #7068 from volzhs/fix-project-nameRémi Verschelde
Set project name as directory name instead of '.'
2016-11-08Export immediately if only one device presentPawel Kowal
2016-11-08Set project name as directory name instead of '.'volzhs
2016-11-08Select newly created or imported project automaticallyvolzhs
2016-11-06Made background and symbol color follow the color APIPaulb23
2016-11-06Merge pull request #7035 from volzhs/undo-redo-duplicateRémi Verschelde
Prevent to make UndoRedo for duplicate if no selected node
2016-11-06Merge pull request #7026 from SaracenOne/value_track_flag_fixRémi Verschelde
Fixed flag for importing animation and skipping value tracks.
2016-11-06Merge pull request #7019 from vnen/rename-winrt-uwpRémi Verschelde
Rename WinRT platform to UWP
2016-11-06Merge pull request #7009 from volzhs/fix-double-clickRémi Verschelde
Fix to focus or rename node by double click
2016-11-05Fix #7016, add script create iconPawel Kowal
2016-11-05Prevent to make UndoRedo for duplicate if no selected nodevolzhs
2016-11-03Rename remaining WinRT references to UWPGeorge Marques
2016-11-03Fix scene tree drag & drop places node as child (#6912)Keetz
2016-11-03Fixed flag for importing animation and skipping value tracks.Saracen
2016-11-01Option for detaching script from node (#6934).Mateusz Adamczyk
2016-11-01Fix to focus or rename node by double clickvolzhs
2016-11-01style: Various other PEP8 fixes in Python filesRémi Verschelde
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).
2016-11-01style: Fix PEP8 blank lines issues in Python filesRémi Verschelde
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.
2016-11-01style: Fix PEP8 whitespace issues in Python filesRémi Verschelde
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.
2016-11-01style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde
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.
2016-11-01Fix resetting to default value in EditorSettingsvolzhs
2016-10-31Add option 'wasm' to compile to WebAssembly in web exporteska
WebAssembly is still experimental, so disabled by default. The HTML shell file now uses $GODOT_BASE, a placeholder for the base filename, instead of $GODOT_JS, $GODOT_MEM and $GODOT_FS.
2016-10-31Fix memory leak with drag & drop on 2D viewportvolzhs
2016-10-31Fix p_index out of size error when closing scriptvolzhs
2016-10-31Fix 2 search menus are shownvolzhs
2016-10-30Fix bug with saving last select language and remove warningvolzhs
2016-10-30Merge pull request #6962 from henriquelalves/external_editor_focus_bugRémi Verschelde
Won't change editor tabs when using External Editor.