summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-03-05In CanvasItemEditor, prioritize selected itemsBernhard Liebl
2018-03-02Merge pull request #17178 from akien-mga/prop-serializationRémi Verschelde
Fix serialization of identifiers with non printable ASCII characters
2018-03-02Merge pull request #17173 from karroffel/gles2-line-rendering-fixRémi Verschelde
fix GLES2 line rendering
2018-03-02Merge pull request #17175 from bruvzg/gles2_macos_supportRémi Verschelde
[GLES2] Adds GLES2 renderer support on macOS.
2018-03-02Fix serialization of identifiers with non printable ASCII charactersRémi Verschelde
Fixes #6888.
2018-03-02fix GLES2 line renderingkarroffel
fixes #17147
2018-03-02GLES2 renderer support on macOS.bruvzg
2018-03-02Merge pull request #17171 from hpvb/fix-17153Rémi Verschelde
Don't crash when trying to add an invalid navmesh
2018-03-02Merge pull request #17168 from rraallvv/scons_masterRémi Verschelde
Prune cache at the beginning and end of build (master)
2018-03-02Merge pull request #17167 from Noshyaar/planeRémi Verschelde
GridMap: fix next/prev plane text, fix meta not found
2018-03-02Merge pull request #17163 from mhilbrunner/mhilbrunner-docs-enetRémi Verschelde
[DOCS] NetworkedMultiplayerENet
2018-03-02Merge pull request #17164 from mhilbrunner/docs-pinjoint2dRémi Verschelde
[DOCS] Small fix to PinJoint2D
2018-03-02Don't crash when trying to add an invalid navmeshHein-Pieter van Braam
It is possible to try to add an invalid object as a navmesh through GDScript which results in an engine crash. This creates a debug message that should help the user figure out what's wrong.
2018-03-02GridMap: fix next/prev plane text, fix meta not foundPoommetee Ketson
2018-03-02prune cache only at the start and end of buildRhody Lugo
2018-03-02[DOCS] NetworkedMultiplayerENetMax Hilbrunner
2018-03-02[DOCS] Small fix to PinJoint2DMax Hilbrunner
2018-03-02NativeScript: Fix initialization in wrong scopeRémi Verschelde
Regression from d702d7b335c0c9305e75131770c0ea739b70d813 which broke javascript build.
2018-03-01Merge pull request #17129 from nical/issue-17102Hein-Pieter van Braam
Allow degenerate triangles in polygon triangulation when necessary.
2018-03-01Merge pull request #17145 from poke1024/fix17139Rémi Verschelde
Fix regression through fa98637acaab9135568bf0d43a65c9c96b59c32d
2018-03-01Fix regression through fa98637acaab9135568bf0d43a65c9c96b59c32dpoke1024
2018-03-01Merge pull request #17143 from karroffel/sconstruct-rebase-upsRémi Verschelde
fix accidental SConstruct reverts
2018-03-01Merge pull request #17142 from Faless/lws_uwp_fixesRémi Verschelde
Remove unneeded and problematic minilex.c from lws.
2018-03-01fix accidental SConstruct revertskarroffel
as introduced by 29215b2
2018-03-01Merge pull request #17140 from akien-mga/viewport-fix-tooltipsRémi Verschelde
Viewport: Fix missing tooltips w/ disabled physics object picking
2018-03-01Remove unneeded and problematic minilex.c from lws.Fabio Alessandrelli
We don't need it, it's used upstream to test the lexical parser
2018-03-01Merge pull request #17133 from bruvzg/macos_fix_webm_optimRémi Verschelde
[Build] Fix WebM (libvpx) SIMD optimizations on macOS.
2018-03-01Merge pull request #16687 from karroffel/gles2-2d-prRémi Verschelde
add GLES 2 renderer for 2D
2018-03-01Viewport: Fix missing tooltips w/ disabled physics object pickingRémi Verschelde
Previously this option seemed to be the sole responsible for enabling physics processing in Viewport, while several other features like tooltips and debugging collision hints rely on it. All this logic is moved to internal processing (it's incorrect to let it be affected by users disabling physics/idle processing), and disabling physics object picking no longer affects the internal physics processing. Fixes #17001.
2018-03-01add GLES 2 renderer for 2Dkarroffel
This commit adds a new rendering backend, GLES2, and adds a project setting to enable it. Currently this backend can only be used on the X11 platform, but integrating into other platforms is planned.
2018-03-01Merge pull request #17058 from marcelofg55/minmax_windowsRémi Verschelde
Fixed Windows ignoring minimized/maximized status set by user
2018-03-01Merge pull request #17137 from endragor/fix-audio-init-crashRémi Verschelde
Fix intermittent audio driver crash during startup on Android
2018-03-01Merge pull request #17135 from Faless/server_bsd_fixRémi Verschelde
Fix server build on FreeBSD
2018-03-01Fix intermittent audio driver crash during startup on AndroidRuslan Mustakov
set_pause can be called before the driver is initialized, and there already is a check for that. The problem is that the 'active' field was not initialied in the constructor, which lead to it having an undefined value.
2018-03-01Fix WebM SIMD optimizations on macOS.bruvzg
2018-02-28Allow degenerate triangles in polygon triangulation when necessary.Nicolas Silva
2018-03-01Fix server build on FreeBSDFabio Alessandrelli
2018-02-28Merge pull request #17111 from poke1024/fix16524Rémi Verschelde
Fix grid mesh tile touch pad bug (issue 16524)
2018-02-28Merge pull request #17117 from hpvb/fix-use-uninitialized-reduxRémi Verschelde
Fix various valgrind reported uninitialized variable uses
2018-02-28Fix various valgrind reported uninitialized variable usesHein-Pieter van Braam
2018-02-28Merge pull request #17115 from Faless/lws_bsd_mallocRémi Verschelde
Fix mbedTLS and Websocket on FreeBSD
2018-02-28Use Prepend instead of Append for mbedTLS includeFabio Alessandrelli
Fixes build on FreeBSD when system-wide mbedTLS and/or openSSL are installed
2018-02-28Fix grid mesh tile panning bug (issue 16524)poke1024
Fix basic function and interference of touch pad pan with mesh tile delete (shift + right click on touch pad) in grid map editor (fix 16524)
2018-02-28Fix lws compilation on FreeBSD, same as OSXFabio Alessandrelli
This error is actually fixed upstream, waiting for a new release
2018-02-27Merge pull request #17087 from hpvb/fix-finding-mscorlibIgnacio Etcheverry
More reliably find mscorlib.dll on Linux
2018-02-27More reliably find mscorlib.dll on LinuxHein-Pieter van Braam
2018-02-27doc: Sync classref with current sourceRémi Verschelde
2018-02-27doc: Remove status from hardcoded version stringRémi Verschelde
It has no practical use case and just generates noise for each alpha, beta, etc.
2018-02-27Android: Mark GLES3 as required in the manifestRémi Verschelde
Fixes #17076.
2018-02-27Merge pull request #17021 from AndreaCatania/kinfixRémi Verschelde
Fixed bullet kinematic char sliding