Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-26 | Merge pull request #5913 from djrm/fix_bake_segfault | Rémi Verschelde | |
Stop baking process if there is no geometry in the BakedLightInstance. | |||
2016-07-25 | Stop baking process if there is no geometry in the BakedLightInstance. | Daniel J. Ramirez | |
moved missing baked light warning to BakedLightInstance configuration warning | |||
2016-07-25 | Merge pull request #5902 from 29jm/fix-warnings | Rémi Verschelde | |
Fix some warnings | |||
2016-07-25 | Fix some warnings | Johan Manuel | |
2016-07-25 | Merge pull request #5900 from bojidar-bg/fix-integer-ranges | Rémi Verschelde | |
Fix default ranges of the inspector, as well as Range. | |||
2016-07-25 | Fix default ranges of the inspector | Bojidar Marinov | |
Probably closes #3091 (Should apply to Variant::REAL and Variant::INT) | |||
2016-07-25 | Merge pull request #5898 from MarianoGnu/master | Rémi Verschelde | |
expose bottom panel button to EditorPlugin scripts | |||
2016-07-24 | Update documentation. | MarianoGNU | |
2016-07-24 | expose bottom panel button to EditorPlugin scripts | MarianoGNU | |
2016-07-24 | Add thread support to HTTPRequest, changed assetlib to use it. | Juan Linietsky | |
2016-07-24 | shows progress (bytes) on download even if getting chunked content | Juan Linietsky | |
2016-07-24 | Bump version to 2.1-rc1 | Rémi Verschelde | |
2016-07-24 | Merge pull request #5894 from vnen/windows-set-position | Rémi Verschelde | |
Avoid changing position when the window is fullscreen | |||
2016-07-24 | Merge pull request #5893 from akien-mga/pr-invisible-col | Rémi Verschelde | |
Fix non-visible col number in text editor | |||
2016-07-24 | Merge pull request #5855 from Alex-doc/fix_velocity_at_pos | Juan Linietsky | |
Fix #5854 (get_contact_collider_velocity_at_pos() strange behavior) | |||
2016-07-24 | Merge pull request #5881 from neikeq/pr-fix-propagation | Juan Linietsky | |
Viewport: Replace obsolete "windows" group calls | |||
2016-07-24 | Merge pull request #5803 from jarfil/issue/origin5695-pr | Juan Linietsky | |
Fix tooltips blinking | |||
2016-07-24 | Merge pull request #5746 from Ovnuniarchos/FileDialogExposed | Juan Linietsky | |
Corrections and additions to FileDialog | |||
2016-07-24 | Merge pull request #5524 from pkowal1982/master | Juan Linietsky | |
Array has(var value) function | |||
2016-07-24 | Merge pull request #5447 from RandomShaper/parallax-layer-fix-tidy | Juan Linietsky | |
Improve parallax mirroring algorithm | |||
2016-07-24 | Merge pull request #5415 from volzhs/improve-android-payment | Juan Linietsky | |
Improve android payment | |||
2016-07-24 | Fix non-visible col number in text editor | Rémi Verschelde | |
The issue itself cannot be fully fixed due to the changes in 864c0e8, but this solution makes the bug less likely to happen (it would only happen with > 5 digits for line or column, and/or a much bigger font. Could be further refined by taking the configured font into account... Fixed #5890. | |||
2016-07-24 | Avoid changing position when the window is fullscreen | George Marques | |
2016-07-24 | Merge pull request #5832 from Algrin6/patch-1 | Juan Linietsky | |
Fixes defects in Curve2D and Curve3D | |||
2016-07-24 | Viewport: Replace obsolete "windows" group calls | Ignacio Etcheverry | |
- Fixes neighbour focusing event propagation not being stopped | |||
2016-07-24 | Merge remote-tracking branch 'origin/fix_velocity_at_pos' into ↵ | Alex Piola | |
fix_velocity_at_pos | |||
2016-07-24 | Fix for incorrect velocity report due to a typo. | Alex Piola | |
Closes #5854 | |||
2016-07-24 | Merge pull request #5884 from 29jm/fix-crash-graphnode | Rémi Verschelde | |
Fix crash when GraphNode wasn't a child of a Control | |||
2016-07-24 | Fix crash when GraphNode wasn't a child of a Control | Johan Manuel | |
2016-07-24 | Turn some prints to error logs, remove others | Rémi Verschelde | |
Fixes #5876 in passing. | |||
2016-07-23 | Merge pull request #5737 from neikeq/pr-issue-5269 | Rémi Verschelde | |
TextEdit: Scroll search results to the center | |||
2016-07-23 | Merge pull request #5821 from TheHX/issue-5795 | Rémi Verschelde | |
Improved FileSystem dock "Instance" option | |||
2016-07-23 | Merge pull request #5875 from 29jm/fix-warnings | Rémi Verschelde | |
Fix warnings in core/variant_op.cpp | |||
2016-07-23 | Merge pull request #5882 from neikeq/pr-issue-1481 | Rémi Verschelde | |
Project Manager: Added project list scrolling with keyboard | |||
2016-07-23 | Project Manager: Added project list scrolling with keyboard | Ignacio Etcheverry | |
2016-07-23 | Fix warnings in core/variant_op.cpp | Johan Manuel | |
Adds default cases in switches where needed, and replaces '0;' with ';;' in macro expansions (as suggested by @vnen in #5587). | |||
2016-07-23 | Add some doc to ImmediateGeometry | Juan Linietsky | |
2016-07-23 | Merge pull request #5872 from akien-mga/pr-libraries-update | Rémi Verschelde | |
Update embedded libraries: rg_etc1 1.04, zlib 1.2.8, RtAudio 4.1.2 | |||
2016-07-23 | RtAudio: Update to upstream version 4.1.2 | Rémi Verschelde | |
The only differences we have with the upstream tarball are marked with `// -GODOT-` comments for clarity. The changes we currently have are just some defines for cross-platform configuration, and could likely be moved to the SCons buildsystem (ideally in a sub-environment to avoid having RtAudio-specific defines pollute the whole build log). One change for WinRT was not kept, if it is needed it should ideally be integrated upstream: ``` #if defined(__WINDOWS_DS__) || defined(__WINDOWS_ASIO__) || defined(__WINDOWS_WASAPI__) -#ifdef WINRT_ENABLED - #define MUTEX_INITIALIZE(A) InitializeCriticalSectionEx(A, 0, 0) -#else #define MUTEX_INITIALIZE(A) InitializeCriticalSection(A) -#endif ``` | |||
2016-07-23 | zlib: Update builtin version to upstream 1.2.8 | Rémi Verschelde | |
Our only differences to the upstream distribution are: - The `gz*.c` files are not included - Z_PREFIX and Z_SOLO are defined in zconf.h | |||
2016-07-23 | rg_etc1: Upstream version 1.04 | Rémi Verschelde | |
From https://github.com/richgel999/rg-etc1 | |||
2016-07-23 | Merge pull request #5861 from akien-mga/pr-freetype-2.6.5 | Rémi Verschelde | |
Upgrade FreeType to upstream version 2.6.5 | |||
2016-07-23 | Merge pull request #5864 from djrm/new_icons | Rémi Verschelde | |
Modified some icons | |||
2016-07-23 | Merge pull request #5866 from MarianoGnu/master | Rémi Verschelde | |
Prevent crash in TextureRegionEditor. Fixes #5862 | |||
2016-07-22 | Prevent crash in TextureRegionEditor. Fixes #5862 | MarianoGNU | |
2016-07-22 | Modified some icons | Daniel J. Ramirez | |
2016-07-22 | Merge pull request #5863 from MarianoGnu/master | Mariano Javier Suligoy | |
Fix pick color from screen. Closes #5853 | |||
2016-07-22 | Fix pick color from screen. Closes #5853 | MarianoGNU | |
2016-07-22 | FreeType: Update to upstream version 2.6.5 | Rémi Verschelde | |
The only diffs to the upstream sources are to be found in `include/ft2build.h` and `include/freetype/config/ftoption.h`. | |||
2016-07-22 | FreeType: Remove unnecessary subfolder | Rémi Verschelde | |
Also sort sources alphabetically for clarity. |