aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/os_javascript.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-06-07Add UPnP support (port forwarding, querying external IP)mhilbrunner53-0/+9747
2018-06-06Fix LWSPeer get_connected_[host/port]Fabio Alessandrelli1-2/+2
2018-06-06allow undefined GODOT_DEBUG_MSBUILD environment variableKelly Thomas1-1/+1
2018-06-06Show opened script or help namevolzhs2-4/+17
2018-06-05i18n: Sync translations with WeblateRémi Verschelde29-3009/+10885
(cherry picked from commit e8bfc09b81f02395226a06f5a8ecd47bea136cc6)
2018-06-05i18n: Sync translation templates with current sourceRémi Verschelde48-4059/+4167
(cherry picked from commit 74808e71d213888d40671246ace3c701dd674a2b)
2018-06-05Mono: Add 'View log' button to open the MSBuild log of a buildIgnacio Etcheverry5-37/+123
2018-06-05Mono: Fix passing wrong logger assembly path to MSBuildIgnacio Etcheverry2-12/+30
- Add option to print MSBuild's stdout and stderr instead of redirecting it. This can be enabled by setting the environment variable: Godot_DEBUG_MSBUILD=1
2018-06-05Mono: Null checks when marshaling from MonoArray* and managed DictionaryIgnacio Etcheverry1-0/+19
2018-06-05Doc: Fix typo in File documentationRémi Verschelde1-2/+2
Fixes #19383.
2018-06-05[Inspector] Fix search field losing focus when typingGuilherme Felipe1-0/+1
Fix #19382
2018-06-05Set SO_BROADCAST socket option for UDP sockets.Fabio Alessandrelli1-0/+7
2018-06-05Revert "Prevent visibility notification from being called twice in object ↵Rémi Verschelde1-2/+1
creation"
2018-06-04Fix Rect2 properties typoGuilherme Felipe1-2/+2
2018-06-03Dist: update script to make Steam icon setsRémi Verschelde1-5/+24
2018-06-03Add option to disable automatic multiplayer pollFabio Alessandrelli4-6/+26
Automatic poll from SceneTree is enabled by default. This allows for polling (and thus RPCs/RSETs) manually in other loops (e.g. physics, thread, specific step) and for proper mutex protecion when accessing the multiplayer API from threads (e.g. for sending larger files in chunks).
2018-06-01Fix Mono static linking on MingwHein-Pieter van Braam1-2/+9
2018-06-01Fix return type of isnan and isinf in the shader languageOliver Rausch1-6/+6
2018-05-31Add cli paramerter --check-only for script parsingTimur Celik1-0/+8
2018-05-31Revert "Revert "Prevent visibility notification been called twice in object ↵Rémi Verschelde1-1/+2
creation"" This reverts commit 4d277b96ad581358f63870ae051dc73b69c82cd7. Woops, this wasn't meant to be committed. I just reverted it locally to test something, nothing wrong with the original commit :)
2018-05-31makerst.py: Properly escape \ for rstRémi Verschelde1-1/+11
Fixes godotengine/godot-docs#1486.
2018-05-31Revert "Prevent visibility notification been called twice in object creation"Rémi Verschelde1-2/+1
This reverts commit d42b17607ef14aeb72036f8747eb4d5c64979872.
2018-05-31Style: Apply clang-format (5.0) to some missed filesRémi Verschelde7-39/+35
2018-05-30Move NavigationMeshEditorPlugin to Recast module as should beRémi Verschelde7-29/+13
Modules can register their own editor plugins (like GridMap does), so no need to put module-specific classes in the `editor/` folder. Also cleans up the previous SCons env pollution from the Recast module, integrating its code into libmodules as other modules.
2018-05-30added rgbe_to_srgb method to Imagekarroffel2-0/+33
2018-05-30SCons: Pass env to modules can_build methodRémi Verschelde33-61/+53
This allows to disable modules based on the environment, in particular `env[tools]` which tells us if we are building the editor or not.
2018-05-30SCons: Remove extraneous lib for SVG moduleRémi Verschelde1-18/+1
It was likely copy pasted by mistake from the freetype module, which is more complex due to its usage in the core of the engine. The SVG module does not seem to need any special treatment, apart from linking in the main env so that editor can access it.
2018-05-30Don't add a period to a log file name if it has no extension.Michael Alexsander Silva Dias1-1/+4
2018-05-30Removing Duplicate Batch Rename from scene-tree menusteincodes1-2/+0
2018-05-30Improve return value of OS.execute in blocking/non-blocking variantsRémi Verschelde3-16/+18
Initialized the PID to -2, which will be the value returns in blocking- mode where the PID is not available. (-1 was already taken to signify an execution failure). OS::execute will now properly return a non-OK error code when it fails to execute the target file. The documentation was rewritten to be very clear about the differences between blocking and non-blocking mode. Fixes #19056.
2018-05-29Fix return type of _get() virtual methodGeorge Marques1-0/+1
2018-05-29New sync keywords in GDScript, NativeScript, MonoFabio Alessandrelli10-5/+84
2018-05-29New sync RPC modes to match all combinationsFabio Alessandrelli3-4/+25
2018-05-29Refactor RPCMode enum and checksFabio Alessandrelli25-328/+217
2018-05-29Minor changes to the Scene and Canvas editors' tooltips.Michael Alexsander Silva Dias2-7/+7
2018-05-29Allow setting higher numbers in Android version/codeDmitry Pupinin1-1/+1
2018-05-29Revert "RPCMode refactor, more sync modes"Max Hilbrunner30-319/+333
2018-05-29Fix index out of size error of image.cppvolzhs1-0/+1
2018-05-28fixed building using scons with python3Ibrahn Sahir2-4/+8
I broke python 3 builds by using py2 specific dict functions in commit 98846b39ee039358584884b439b96e799f1d2bd0 Fixed with functions in compat.py
2018-05-28Enable singletons to be recognized as constant expressionsGeorge Marques1-0/+8
Fix #14681
2018-05-28Fix MethodInfo for EditorInspectorPlugin.can_handleRémi Verschelde2-2/+4
2018-05-28Sync classref with current sourceRémi Verschelde24-59/+404
Also fix binding of Basis.slerp
2018-05-28Change position of validation in set_custom_mouse_cursorGuilherme Felipe3-3/+6
2018-05-28Revert "Make the performance reporting update frequency customizable"Juan Linietsky6-21/+8
2018-05-28Fix for not picking up locale of some .po translation filesFabian1-1/+1
2018-05-27Add validation in set_custom_mouse_cursorGuilherme Felipe3-0/+3
Check if the image is valid.
2018-05-27Mono: Fix MonoImage filename being set to an invalid pathIgnacio Etcheverry1-4/+5
2018-05-27Improved kinematic test_body_motion codeAndrea Catania1-48/+34
2018-05-27[WIP] Adding version info to GDNative ARVR interfacesBastiaan Olij3-1/+13
2018-05-27Fixed GroupCallFlags links in the SceneTree's doc.Michael Alexsander Silva Dias1-3/+3