Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-06 | Merge pull request #7035 from volzhs/undo-redo-duplicate | Rémi Verschelde | |
Prevent to make UndoRedo for duplicate if no selected node | |||
2016-11-06 | Merge pull request #7050 from DTV96Calibre/master | Rémi Verschelde | |
Fixed minor typo | |||
2016-11-06 | Merge pull request #7036 from volzhs/spinbox-prefix | Rémi Verschelde | |
Fix updating value of SpinBox with prefix | |||
2016-11-06 | Merge pull request #7028 from bojidar-bg/gdscript-multiline-comment-fixup | Rémi Verschelde | |
Make GDScript parser ignore floating strings in class definition | |||
2016-11-06 | Merge pull request #7026 from SaracenOne/value_track_flag_fix | Rémi Verschelde | |
Fixed flag for importing animation and skipping value tracks. | |||
2016-11-06 | Merge pull request #7020 from akien-mga/pr-readme | Rémi Verschelde | |
Rewrite the README to be more descriptive | |||
2016-11-06 | Merge pull request #7019 from vnen/rename-winrt-uwp | Rémi Verschelde | |
Rename WinRT platform to UWP | |||
2016-11-06 | Merge pull request #7009 from volzhs/fix-double-click | Rémi Verschelde | |
Fix to focus or rename node by double click | |||
2016-11-06 | Fixed minor typo | DTV96Calibre | |
2016-11-06 | Merge pull request #7022 from neikeq/pr-issue-7013 | Ignacio Etcheverry | |
Keep groups when replacing nodes | |||
2016-11-05 | Merge pull request #7045 from pkowal1982/script_create_icon | George Marques | |
Fix #7016, add script create icon | |||
2016-11-05 | Fix #7016, add script create icon | Pawel Kowal | |
2016-11-05 | Fix updating value of SpinBox with prefix | volzhs | |
2016-11-05 | Prevent to make UndoRedo for duplicate if no selected node | volzhs | |
2016-11-04 | Merge pull request #7033 from akien-mga/pr-server-libs | Rémi Verschelde | |
server: Allow building against system libraries | |||
2016-11-03 | server: Allow building against system libraries | Rémi Verschelde | |
2016-11-03 | opus: Move public headers to match system install | Rémi Verschelde | |
2016-11-03 | Merge pull request #7032 from ScotFlux/fix_tiny_typo | Rémi Verschelde | |
Fix a tiny typo on label.cpp [ci skip] | |||
2016-11-04 | fix a tiny typo | ScotFlux | |
2016-11-03 | Rewrite the README to be more descriptive | Rémi Verschelde | |
2016-11-03 | Rename remaining WinRT references to UWP | George Marques | |
2016-11-03 | Rename WINRT_ENABLED to UWP_ENABLED | George Marques | |
2016-11-03 | Rename WinRT files to UWP | George Marques | |
2016-11-03 | Merge pull request #7031 from volzhs/fix-wrong-index | Rémi Verschelde | |
Fix wrong number for ERR_* on comment | |||
2016-11-04 | Fix wrong number for ERR_* on comment | volzhs | |
2016-11-03 | Merge pull request #7029 from timroes/master | Rémi Verschelde | |
Fix typos and missing newlines in --help | |||
2016-11-03 | Fix typos and missing newlines in --help | Tim Roes | |
2016-11-03 | Make GDScript parser ignore floating strings in class definition | Bojidar Marinov | |
Fixes #1320 | |||
2016-11-03 | Fixed flag for importing animation and skipping value tracks. | Saracen | |
2016-11-03 | Merge pull request #7023 from akien-mga/pr-scons-opts | Rémi Verschelde | |
scons: Reorder options for clarity | |||
2016-11-03 | Merge pull request #7021 from akien-mga/pr-libpng-1.6.26 | Rémi Verschelde | |
libpng: Update to upstream 1.6.26 | |||
2016-11-03 | scons: Reorder options for clarity | Rémi Verschelde | |
Also prefix all thirdparty-related toggles with `builtin`. | |||
2016-11-03 | Keep groups when replacing nodes | Ignacio Etcheverry | |
2016-11-02 | libpng: Update to upstream 1.6.26 | Rémi Verschelde | |
2016-11-02 | Merge pull request #7000 from m4nu3lf/master | Rémi Verschelde | |
Fixed Mix nodes in Animation Tree Player | |||
2016-11-02 | Merge pull request #7004 from volzhs/fix-itemlist | Rémi Verschelde | |
Fix to fit stylebox with ItemList | |||
2016-11-02 | Merge pull request #6958 from RandomShaper/android-clang-tidy | Rémi Verschelde | |
Improve Android build (Clang + tidyness) | |||
2016-11-02 | Improve Android build (Clang + tidyness) | Pedro J. Estébanez | |
2016-11-01 | Merge pull request #6995 from mateka/issue-6934 | George Marques | |
Option for detaching script from node (#6934). | |||
2016-11-01 | Option for detaching script from node (#6934). | Mateusz Adamczyk | |
2016-11-01 | Make regex compilable with RTTI disabled | Pedro J. Estébanez | |
2016-11-01 | Merge pull request #7006 from vnen/fix-ipv6-uwp | George Marques | |
Fix IPv6 linking for UWP | |||
2016-11-01 | Fix to focus or rename node by double click | volzhs | |
2016-10-31 | Fix IPv6 linking for UWP | George Marques | |
2016-11-01 | Merge pull request #6985 from akien-mga/python-pep8 | Rémi Verschelde | |
Apply PEP8 to all python files using autopep8 | |||
2016-11-01 | style: Various other PEP8 fixes in Python files | Ré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-01 | style: Fix PEP8 blank lines issues in Python files | Ré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-01 | style: Fix PEP8 whitespace issues in Python files | Ré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-01 | style: Start applying PEP8 to Python files, indentation issues | Ré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-01 | Fix to fit stylebox with ItemList | volzhs | |