aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/javascript_main.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-13Update/fix Android buildPedro J. Estébanez1-7/+7
Fix wrong path for 32-bit Windows, which fixes #7084 Exclude 32-bit Windows from multi-threaded linking because it's not supported by the NDK Remove 32-bit Linux as there is no NDK variant for it
2016-11-14Emit "*_changed" signal in set_*volzhs3-1/+3
2016-11-13Remove explicit BINARYEN_METHOD for WebAssembly buildeska1-1/+0
This option is the default since Binaryen version 21.
2016-11-13Enable memory growth in WebAssembly buildseska1-0/+7
This allows setting TOTAL_MEMORY during runtime at the cost of reserving a bit more memory.
2016-11-13Clarify a NULL comparisoneska1-1/+1
'TreeItem::get_children()' does not return the child count, but rather a pointer to the children. This comparison caused an error during WebAssembly builds using the LLVM backend path.
2016-11-12Prevent to select children if selection lock or instanced scenevolzhs1-7/+14
Fix #7086
2016-11-11Add "Positive" operator to VisualScriptGeorge Marques1-1/+6
2016-11-11Can create or load script on Attach script dialogvolzhs4-106/+100
2016-11-08Make Android export quicker (especially on Windows)Pedro J. Estébanez1-19/+19
2016-11-08Export immediately if only one device presentPawel Kowal1-6/+17
2016-11-09Fix Directory.dir_exist/get_current_dir for 'res://' on Androidvolzhs2-2/+7
Fix #7014
2016-11-08vsnc --> vsyncISylvox9-11/+11
2016-11-08Set project name as directory name instead of '.'volzhs1-2/+2
2016-11-08Select newly created or imported project automaticallyvolzhs2-2/+45
2016-11-07Fix Label valign positionvolzhs1-3/+3
Fix #7055
2016-11-07Some missing License notice has been addedSPTelur2-0/+59
2016-11-06Caret blink will no longer cause redraw without focus, issue 6167Paulb232-2/+2
2016-11-06Made background and symbol color follow the color APIPaulb235-36/+13
2016-11-06Fixed minor typoDTV96Calibre1-1/+1
2016-11-05Fix #7016, add script create iconPawel Kowal4-2/+98
2016-11-05Core: Add singleton instance to _MarshallsIgnacio Etcheverry3-2/+14
2016-11-05Clean/fix triangulation internalsPedro J. Estébanez2-13/+5
Drop unused variable Remove commented-out code Fix leak by using Vector instead of raw memory
2016-11-05Fix updating value of SpinBox with prefixvolzhs1-1/+4
2016-11-05Prevent to make UndoRedo for duplicate if no selected nodevolzhs1-0/+2
2016-11-03server: Allow building against system librariesRémi Verschelde1-0/+45
2016-11-03opus: Move public headers to match system installRémi Verschelde10-3/+4
2016-11-04fix a tiny typoScotFlux1-2/+2
2016-11-03Rewrite the README to be more descriptiveRémi Verschelde1-15/+51
2016-11-03Rename remaining WinRT references to UWPGeorge Marques18-169/+169
2016-11-03Rename WINRT_ENABLED to UWP_ENABLEDGeorge Marques17-30/+30
2016-11-03Rename WinRT files to UWPGeorge Marques22-31/+31
2016-11-04Fix wrong number for ERR_* on commentvolzhs1-12/+12
2016-11-03 Fix typos and missing newlines in --helpTim Roes1-3/+2
2016-11-03Fix scene tree drag & drop places node as child (#6912)Keetz1-31/+4
2016-11-03Make GDScript parser ignore floating strings in class definitionBojidar Marinov1-1/+10
Fixes #1320
2016-11-03Fixed flag for importing animation and skipping value tracks.Saracen3-44/+51
2016-11-03scons: Reorder options for clarityRémi Verschelde21-84/+89
Also prefix all thirdparty-related toggles with `builtin`.
2016-11-03Keep groups when replacing nodesIgnacio Etcheverry1-0/+6
2016-11-02libpng: Update to upstream 1.6.26Rémi Verschelde23-1095/+1416
2016-11-02Improve Android build (Clang + tidyness)Pedro J. Estébanez1-87/+100
2016-11-01Option for detaching script from node (#6934).Mateusz Adamczyk2-3/+39
2016-11-01Make regex compilable with RTTI disabledPedro J. Estébanez1-4/+9
2016-11-01Fix to focus or rename node by double clickvolzhs3-37/+4
2016-10-31Fix IPv6 linking for UWPGeorge Marques1-0/+4
2016-11-01style: Various other PEP8 fixes in Python filesRémi Verschelde25-369/+370
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 Verschelde53-193/+115
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 Verschelde93-2293/+2293
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 Verschelde88-6280/+6280
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 to fit stylebox with ItemListvolzhs1-1/+4
2016-10-31Fixed Mix nodes in Animation Tree Playerm4nu3lf2-17/+4