summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2018-06-19Add access for GDNative modules to some platform dependent internals on AndroidBastiaan Olij
2018-06-15[Pluginscript] Fix not working exports in editorEmmanuel Leblond
2018-06-13Removed duplicate default colours and removed GDScriptHighligher colours ↵Paulb23
from main editor.
2018-06-13Merge pull request #19526 from robojumper/fix_tutorialsRémi Verschelde
Add support for tutorial links to makerst.py
2018-06-12Add support for tutorial links to makerst.pyrobojumper
Also change the <tutorials> structure to make use of individual <link> tags
2018-06-12Inner classes' functions now appear in the editor's functions panelJairo Honorio
Fixes #19386
2018-06-10Fix CSG issues when reparenting shape nodes.Benjamin
2018-06-07Bump libwebsockets to version 3.0.0Fabio Alessandrelli
2018-06-07Thirdparty: Fill copyright for lws, miniupnpc, clipperRémi Verschelde
Rename `lws` to `libwebsockets` which is its library name. Add missing license file for mbedtls.
2018-06-07Merge pull request #18780 from mhilbrunner/upnpFabio Alessandrelli
Add UPnP support (port forwarding, querying external IP)
2018-06-07Add UPnP support (port forwarding, querying external IP)mhilbrunner
2018-06-06Merge pull request #19397 from Faless/ws_get_ip_portMax Hilbrunner
Fix LWSPeer get_connected_[host/port]
2018-06-06Fix LWSPeer get_connected_[host/port]Fabio Alessandrelli
2018-06-06allow undefined GODOT_DEBUG_MSBUILD environment variableKelly Thomas
2018-06-05Merge pull request #19387 from neikeq/yIgnacio Etcheverry
Mono fixes and improvements
2018-06-05Mono: Add 'View log' button to open the MSBuild log of a buildIgnacio Etcheverry
2018-06-05Mono: Fix passing wrong logger assembly path to MSBuildIgnacio Etcheverry
- 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 Etcheverry
2018-06-05Merge pull request #18792 from PJB3005/18-05-11-objectdb-verbose-monoRémi Verschelde
Fixes ObjectDB leak printout with mono.
2018-06-01Fix Mono static linking on MingwHein-Pieter van Braam
2018-05-31Style: Apply clang-format (5.0) to some missed filesRémi Verschelde
2018-05-30Move NavigationMeshEditorPlugin to Recast module as should beRémi Verschelde
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-30Merge pull request #19272 from akien-mga/svg-buildsystemRémi Verschelde
SCons: Remove extraneous lib for SVG module
2018-05-30SCons: Pass env to modules can_build methodRémi Verschelde
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 Verschelde
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-30Merge pull request #19255 from Faless/rpc_sync_mmoreRémi Verschelde
RPCMode refactor, more sync modes (2)
2018-05-30Merge pull request #19171 from BastiaanOlij/add_arvr_interface_gdnative_versionBastiaan Olij
Adding version info to GDNative ARVR interfaces
2018-05-29New sync keywords in GDScript, NativeScript, MonoFabio Alessandrelli
2018-05-29Refactor RPCMode enum and checksFabio Alessandrelli
2018-05-29Revert "RPCMode refactor, more sync modes"Max Hilbrunner
2018-05-29Merge pull request #19021 from Faless/rpc_sync_fixMax Hilbrunner
RPCMode refactor, more sync modes
2018-05-29Merge pull request #19199 from AndreaCatania/kinimpRémi Verschelde
Improved kinematic test_body_motion code
2018-05-28Enable singletons to be recognized as constant expressionsGeorge Marques
Fix #14681
2018-05-27Merge pull request #19201 from neikeq/issue-13837Ignacio Etcheverry
Mono: Fix MonoImage filename being set to an invalid path
2018-05-27Mono: Fix MonoImage filename being set to an invalid pathIgnacio Etcheverry
2018-05-27Improved kinematic test_body_motion codeAndrea Catania
2018-05-27[WIP] Adding version info to GDNative ARVR interfacesBastiaan Olij
2018-05-26Merge pull request #18379 from ZDDM/18-04-23-audiostream-docsMax Hilbrunner
Fully expose the data variable in AudioStreamSample and AudioStreamOGGVorbis
2018-05-26Merge pull request #18516 from PJB3005/18-04-30-visual-script-title-barsMax Hilbrunner
Move things into the title bars of Visual Script nodes.
2018-05-26New sync keywords in GDScript, NativeScript, MonoFabio Alessandrelli
2018-05-26Refactor RPCMode enum and checksFabio Alessandrelli
2018-05-25Merge pull request #19074 from cart/optimize-mono-pool-marshalIgnacio Etcheverry
Reduce allocations when converting mono arrays to pool arrays
2018-05-25Merge pull request #19063 from KellyThomas/c-sharp-feature-parity-vectorsRémi Verschelde
mono: Add Slerp method to vector classes, expose Cross method for Vector2
2018-05-24Merge pull request #19149 from neikeq/xIgnacio Etcheverry
Mono: Improve 'script class not found' error
2018-05-24Mono: Improve 'script class not found' errorIgnacio Etcheverry
No longer printed when using using placeholder script instances (for non-tool scripts in the editor). Print different error if the project assembly is not loaded
2018-05-24Merge pull request #19131 from YeldhamDev/connection_comment_capitalizeMax Hilbrunner
Capitalized comments of methods created by the Connect Signal dialog
2018-05-23Capitalized comments of methods created by the Connect Signal dialog.Michael Alexsander Silva Dias
2018-05-23Fix positive operator in GDScript compilerGeorge Marques
2018-05-22mono: add Slerp method to vector classes, expose Cross method for Vector2, ↵Kelly Thomas
and fix unnecessary casts in Basis
2018-05-21Fix index out of range error in string.Extension()Kelly Thomas