Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-03 | Merge pull request #17832 from YeldhamDev/popups_size_fix | Rémi Verschelde | |
Fixed some popups not shrinking their size back when losing items | |||
2018-04-03 | Merge pull request #17847 from Faless/lws_update | Rémi Verschelde | |
LWS v2.4.2, mbedTLS v2.8.0, Websocket SSL support | |||
2018-04-03 | Merge pull request #17854 from BastiaanOlij/fix_vehicle_body | Rémi Verschelde | |
Improve side impulse calculation | |||
2018-04-03 | Merge pull request #17865 from delftswa2018/enumLookupFix | Rémi Verschelde | |
Ctrl+Clicking a enum now scrolls down to it in the docs. | |||
2018-04-03 | Merge pull request #17900 from AndreaCatania/area_mon | Rémi Verschelde | |
physics area added monitorable check | |||
2018-04-03 | Merge pull request #17914 from Rubonnek/add-signal-to-videoplayer | Rémi Verschelde | |
Added signal to VideoPlayer to notify when the video finished playing | |||
2018-04-03 | Ctrl+Clicking a enum now scrolls down to it in the docs. | Felix Yang | |
2018-04-03 | Merge pull request #17947 from karroffel/animation-scale-rotation-order-fix | Rémi Verschelde | |
fix bone scale/rotation in AnimationPlayers | |||
2018-04-03 | Merge pull request #17834 from Rubonnek/move-to-initializer-list | Rémi Verschelde | |
Move GodotSharp and MonoBuildTab member variables to initializer list | |||
2018-04-03 | Websocket client SSL support | Fabio Alessandrelli | |
2018-04-03 | Generalize SSL cert reading from file | Fabio Alessandrelli | |
2018-04-03 | MbedTLS PR 1453 (fix UWP build) | Fabio Alessandrelli | |
The patch seems to be ready for merge upstream | |||
2018-04-03 | Small patch to change mbedtls _WIN32_WINNT | Fabio Alessandrelli | |
2018-04-03 | Update mbedTLS to version 2.8.0 | Fabio Alessandrelli | |
2018-04-03 | Always verify peer certificate in lws. | Fabio Alessandrelli | |
Behavior is defined by SSL flags passed via the context. Simplified port of the patch submitted and accepted in lws master branch (PR 1215) | |||
2018-04-03 | mbedtls: client: stop spinning on handshake fail | Fabio Alessandrelli | |
Backport cf3a4ee49357f4e6f3aaeb98137d85c307b17008 from 2.4-stable to 2.4.2 | |||
2018-04-03 | Fix lws MinGW compilation | Fabio Alessandrelli | |
Cherry picked 5b22276420032677841af9e9f3b0272d0dd467b8 from upstream. This is fixed upstream and will be included in the next release | |||
2018-04-03 | Bump libwebsockets to version 2.4.2 | Fabio Alessandrelli | |
2018-04-03 | fix bone scale/rotation in AnimationPlayers | karroffel | |
fixes #17325. The bone pose transform was created by setting the rotation and **then** scaling the transform. This leads to object "deformation" that's not intended. | |||
2018-04-03 | Merge pull request #17869 from TomDobbelaere/rename-error-usability | Rémi Verschelde | |
Trigger rename_error's close_fail_notify only after exhausting attempts on Windows | |||
2018-04-03 | Merge pull request #17940 from Alexander-Alekseev/mono_keep_csharp6 | Rémi Verschelde | |
[mono] Fixes #17936 as GodotSharp (Core\Basic.cs) requires C#7 now | |||
2018-04-03 | Merge pull request #17935 from Rubonnek/remove-unneeded-sort | Rémi Verschelde | |
Removed unneeded sort from SpriteFramesEditor plugin | |||
2018-04-03 | Merge pull request #17933 from Rubonnek/comment-debugging-messages | Rémi Verschelde | |
Comment out some debugging messages when playing Theora files | |||
2018-04-03 | Trigger IO error only after exhausting attempts | Tom Dobbelaere | |
2018-04-03 | Merge pull request #17918 from Alexander-Alekseev/shape_bullet_memory_leak_fix | Rémi Verschelde | |
Fix of a possible memory leak in ConcavePolygonShapeBullet::setup | |||
2018-04-03 | Merge pull request #17902 from Noshyaar/outline | Rémi Verschelde | |
Mesh: fix crash when creating mesh outline from QuadMesh | |||
2018-04-03 | Merge pull request #17880 from litdeviant/master | Rémi Verschelde | |
Fix UpdatePowerInfo method implementation in PowerIphone class | |||
2018-04-03 | Merge pull request #17876 from YeldhamDev/brief_desc_end_points | Rémi Verschelde | |
Added missing end points for brief descriptions in the docs | |||
2018-04-03 | Merge pull request #17867 from beniwtv/tilemap-navigation-debug | Rémi Verschelde | |
Implement missing navigation polygon debugging in tilemap | |||
2018-04-03 | Merge pull request #17857 from marcelofg55/wasapi_rate_adjust | Rémi Verschelde | |
WASAPI driver will now resample when the device rate != audio/mix_rate | |||
2018-04-03 | Merge pull request #17836 from eska014/detect-emconfig | Rémi Verschelde | |
Detect and configure JavaScript build per Emscripten configuration file | |||
2018-04-03 | [mono] Fixes #17936 as GodotSharp (Core\Basic.cs) requires C#7 now, but we ↵ | Alexander Alekseev | |
most probably should keep C#6 yet | |||
2018-04-02 | Removed unneeded sort from SpriteFramesEditor plugin | Wilson E. Alvarez | |
2018-04-02 | Comment out some debugging messages when playing Theora files | Wilson E. Alvarez | |
2018-04-02 | Merge pull request #17844 from Faless/uwp_fix | Rémi Verschelde | |
Fix UWP build after #17194 | |||
2018-04-02 | Fix of a possible memory leak: ConcavePolygonShapeBullet::setup was able to ↵ | Alexander Alekseev | |
exit without releasing the 'shapeInterface' pointer. | |||
2018-04-01 | Added signal to VideoPlayer to notify when the video finished playing | Wilson E. Alvarez | |
2018-04-01 | Mesh: fix crash when creating mesh outline from QuadMesh | Poommetee Ketson | |
Since create_outline can only make outline for PRIMITIVE_TRIANGLES, when QuadMesh (which is PRIMITIVE_TRIANGLE_FAN) is used to create outline, will leave `arrays` empty, and crash when it is being indexed for "indices" subarray. This PR shows error when there's only one surface and it is not TRIANGLES. Also prevent the crash if it has more than one surface and none of them are TRIANGLES (and any other cases that could leave `arrays` empty) by checking the size of `arrays` == 8 before indexing it, since the method seems to expect `arrays` to be of that size. | |||
2018-04-01 | physics area added monitorable check | Andrea Catania | |
2018-03-31 | Merge pull request #17878 from karroffel/nativescript-1.1-bughunt | Thomas Herzog | |
[GDNative] fixed issue with library unloading order and header update | |||
2018-03-31 | Fix UpdatePowerInfo method implementation in PowerIphone class | Igors Vaitkus | |
2018-03-31 | [GDNative] fixed issue with library unloading order | karroffel | |
2018-03-31 | [GDNative] added GDCALLINGCONV to instance binding functions | karroffel | |
2018-03-30 | Added missing end points for brief descriptions in the docs. | Michael Alexsander Silva Dias | |
2018-03-31 | Merge pull request #17772 from Chaosus/monowrap | Ignacio Etcheverry | |
Add wrap functions to C# | |||
2018-03-30 | README: Use HTTPS URL for image. (#17851) | Maxwell Paul Brickner | |
Updated links to use https when possible to avoid redirects. | |||
2018-03-30 | Merge pull request #17871 from romlok/interpolated-docs | Max Hilbrunner | |
[DOCS] Some content for InterpolatedCamera | |||
2018-03-30 | [DOCS] Some content for InterpolatedCamera | Mel Collins | |
2018-03-30 | Implement missing navgiation polygon debugging in tilemap | Benedikt Bär | |
2018-03-30 | Merge pull request #17866 from mhilbrunner/docs-collisionshape | Max Hilbrunner | |
[DOCS] Typo fix for CollisionShape[2D] |