Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-05 | Merge pull request #19378 from Faless/udp_bcast | Max Hilbrunner | |
Set SO_BROADCAST socket option for UDP sockets. | |||
2018-06-05 | Set SO_BROADCAST socket option for UDP sockets. | Fabio Alessandrelli | |
2018-06-05 | Merge pull request #19377 from godotengine/revert-18172-fix_notification | Rémi Verschelde | |
Revert "Prevent visibility notification from being called twice in object creation" | |||
2018-06-05 | Revert "Prevent visibility notification from being called twice in object ↵ | Rémi Verschelde | |
creation" | |||
2018-06-05 | Merge pull request #18792 from PJB3005/18-05-11-objectdb-verbose-mono | Rémi Verschelde | |
Fixes ObjectDB leak printout with mono. | |||
2018-06-04 | Merge pull request #19371 from guilhermefelipecgs/fix_rect2_prop | George Marques | |
Fix Rect2 properties typo | |||
2018-06-04 | Fix Rect2 properties typo | Guilherme Felipe | |
2018-06-03 | Merge pull request #19332 from Faless/optional_net_poll | Max Hilbrunner | |
Add option to disable automatic multiplayer poll in SceneTree | |||
2018-06-03 | Dist: update script to make Steam icon sets | Rémi Verschelde | |
2018-06-03 | Add option to disable automatic multiplayer poll | Fabio Alessandrelli | |
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-01 | Merge pull request #19310 from hpvb/fix-mingw-static-mono-linking | Rémi Verschelde | |
Fix Mono static linking on Mingw | |||
2018-06-01 | Fix Mono static linking on Mingw | Hein-Pieter van Braam | |
2018-06-01 | Merge pull request #19250 from YeldhamDev/scene_editor_tooltips | Rémi Verschelde | |
Minor changes to the Scene and Canvas editors' tooltips | |||
2018-06-01 | Merge pull request #19280 from clktmr/master | Rémi Verschelde | |
Add cli paramerter --check-only for script parsing | |||
2018-06-01 | Merge pull request #19299 from oliverrausch/master | Rémi Verschelde | |
Fix return type of isnan and isinf in the shader language | |||
2018-06-01 | Fix return type of isnan and isinf in the shader language | Oliver Rausch | |
2018-05-31 | Add cli paramerter --check-only for script parsing | Timur Celik | |
2018-05-31 | Merge pull request #19263 from vnen/fix-get-return | Rémi Verschelde | |
Fix return type of _get() virtual method | |||
2018-05-31 | Revert "Revert "Prevent visibility notification been called twice in object ↵ | Rémi Verschelde | |
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-31 | makerst.py: Properly escape \ for rst | Rémi Verschelde | |
Fixes godotengine/godot-docs#1486. | |||
2018-05-31 | Revert "Prevent visibility notification been called twice in object creation" | Rémi Verschelde | |
This reverts commit d42b17607ef14aeb72036f8747eb4d5c64979872. | |||
2018-05-31 | Style: Apply clang-format (5.0) to some missed files | Rémi Verschelde | |
2018-05-31 | Merge pull request #19270 from akien-mga/recast-buildsystem | Rémi Verschelde | |
Move NavigationMeshEditorPlugin to Recast module as should be | |||
2018-05-30 | Merge pull request #19278 from karroffel/image-rgbe-srgb | Juan Linietsky | |
added rgbe_to_srgb method to Image | |||
2018-05-30 | Merge pull request #19261 from YeldhamDev/logger_period_fix | Rémi Verschelde | |
Don't add a period to a log file name if it has no extension | |||
2018-05-30 | Move NavigationMeshEditorPlugin to Recast module as should be | Ré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-30 | Merge pull request #19272 from akien-mga/svg-buildsystem | Rémi Verschelde | |
SCons: Remove extraneous lib for SVG module | |||
2018-05-30 | Merge pull request #19275 from akien-mga/modules-can_build | Rémi Verschelde | |
SCons: Pass env to modules can_build method | |||
2018-05-30 | added rgbe_to_srgb method to Image | karroffel | |
2018-05-30 | SCons: Pass env to modules can_build method | Ré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-30 | SCons: Remove extraneous lib for SVG module | Ré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-30 | Don't add a period to a log file name if it has no extension. | Michael Alexsander Silva Dias | |
2018-05-30 | Merge pull request #19268 from swarnimarun/minor_fixes | Rémi Verschelde | |
Removing duplicate Batch Rename from scene-tree menu | |||
2018-05-30 | Merge pull request #19266 from akien-mga/os-execute-doc | Max Hilbrunner | |
Improve return value and docs on OS.execute regarding blocking/non-blocking variants | |||
2018-05-30 | Merge pull request #19255 from Faless/rpc_sync_mmore | Rémi Verschelde | |
RPCMode refactor, more sync modes (2) | |||
2018-05-30 | Removing Duplicate Batch Rename from scene-tree menu | steincodes | |
2018-05-30 | Improve return value of OS.execute in blocking/non-blocking variants | Rémi Verschelde | |
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-30 | Merge pull request #19171 from BastiaanOlij/add_arvr_interface_gdnative_version | Bastiaan Olij | |
Adding version info to GDNative ARVR interfaces | |||
2018-05-29 | Fix return type of _get() virtual method | George Marques | |
2018-05-29 | New sync keywords in GDScript, NativeScript, Mono | Fabio Alessandrelli | |
2018-05-29 | New sync RPC modes to match all combinations | Fabio Alessandrelli | |
2018-05-29 | Refactor RPCMode enum and checks | Fabio Alessandrelli | |
2018-05-29 | Minor changes to the Scene and Canvas editors' tooltips. | Michael Alexsander Silva Dias | |
2018-05-29 | Allow setting higher numbers in Android version/code | Dmitry Pupinin | |
2018-05-29 | Merge pull request #19243 from godotengine/revert-19021-rpc_sync_fix | Max Hilbrunner | |
Revert "RPCMode refactor, more sync modes" | |||
2018-05-29 | Revert "RPCMode refactor, more sync modes" | Max Hilbrunner | |
2018-05-29 | Merge pull request #19021 from Faless/rpc_sync_fix | Max Hilbrunner | |
RPCMode refactor, more sync modes | |||
2018-05-29 | Merge pull request #19238 from volzhs/fix-image-out-of-size-error | Rémi Verschelde | |
Fix index out of size error of image.cpp | |||
2018-05-29 | Merge pull request #19227 from ibrahn/fix-py3-build | Rémi Verschelde | |
fixed building using scons with python3. | |||
2018-05-29 | Merge pull request #19199 from AndreaCatania/kinimp | Rémi Verschelde | |
Improved kinematic test_body_motion code |