summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-07-26Merge pull request #5913 from djrm/fix_bake_segfaultRémi Verschelde
Stop baking process if there is no geometry in the BakedLightInstance.
2016-07-25Stop baking process if there is no geometry in the BakedLightInstance.Daniel J. Ramirez
moved missing baked light warning to BakedLightInstance configuration warning
2016-07-25Merge pull request #5902 from 29jm/fix-warningsRémi Verschelde
Fix some warnings
2016-07-25Fix some warningsJohan Manuel
2016-07-25Merge pull request #5900 from bojidar-bg/fix-integer-rangesRémi Verschelde
Fix default ranges of the inspector, as well as Range.
2016-07-25Fix default ranges of the inspectorBojidar Marinov
Probably closes #3091 (Should apply to Variant::REAL and Variant::INT)
2016-07-25Merge pull request #5898 from MarianoGnu/masterRémi Verschelde
expose bottom panel button to EditorPlugin scripts
2016-07-24Update documentation.MarianoGNU
2016-07-24expose bottom panel button to EditorPlugin scriptsMarianoGNU
2016-07-24Add thread support to HTTPRequest, changed assetlib to use it.Juan Linietsky
2016-07-24shows progress (bytes) on download even if getting chunked contentJuan Linietsky
2016-07-24Bump version to 2.1-rc1Rémi Verschelde
2016-07-24Merge pull request #5894 from vnen/windows-set-positionRémi Verschelde
Avoid changing position when the window is fullscreen
2016-07-24Merge pull request #5893 from akien-mga/pr-invisible-colRémi Verschelde
Fix non-visible col number in text editor
2016-07-24Merge pull request #5855 from Alex-doc/fix_velocity_at_posJuan Linietsky
Fix #5854 (get_contact_collider_velocity_at_pos() strange behavior)
2016-07-24Merge pull request #5881 from neikeq/pr-fix-propagationJuan Linietsky
Viewport: Replace obsolete "windows" group calls
2016-07-24Merge pull request #5803 from jarfil/issue/origin5695-prJuan Linietsky
Fix tooltips blinking
2016-07-24Merge pull request #5746 from Ovnuniarchos/FileDialogExposedJuan Linietsky
Corrections and additions to FileDialog
2016-07-24Merge pull request #5524 from pkowal1982/masterJuan Linietsky
Array has(var value) function
2016-07-24Merge pull request #5447 from RandomShaper/parallax-layer-fix-tidyJuan Linietsky
Improve parallax mirroring algorithm
2016-07-24Merge pull request #5415 from volzhs/improve-android-paymentJuan Linietsky
Improve android payment
2016-07-24Fix non-visible col number in text editorRé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-24Avoid changing position when the window is fullscreenGeorge Marques
2016-07-24Merge pull request #5832 from Algrin6/patch-1Juan Linietsky
Fixes defects in Curve2D and Curve3D
2016-07-24Viewport: Replace obsolete "windows" group callsIgnacio Etcheverry
- Fixes neighbour focusing event propagation not being stopped
2016-07-24Merge remote-tracking branch 'origin/fix_velocity_at_pos' into ↵Alex Piola
fix_velocity_at_pos
2016-07-24Fix for incorrect velocity report due to a typo.Alex Piola
Closes #5854
2016-07-24Merge pull request #5884 from 29jm/fix-crash-graphnodeRémi Verschelde
Fix crash when GraphNode wasn't a child of a Control
2016-07-24Fix crash when GraphNode wasn't a child of a ControlJohan Manuel
2016-07-24Turn some prints to error logs, remove othersRémi Verschelde
Fixes #5876 in passing.
2016-07-23Merge pull request #5737 from neikeq/pr-issue-5269Rémi Verschelde
TextEdit: Scroll search results to the center
2016-07-23Merge pull request #5821 from TheHX/issue-5795Rémi Verschelde
Improved FileSystem dock "Instance" option
2016-07-23Merge pull request #5875 from 29jm/fix-warningsRémi Verschelde
Fix warnings in core/variant_op.cpp
2016-07-23Merge pull request #5882 from neikeq/pr-issue-1481Rémi Verschelde
Project Manager: Added project list scrolling with keyboard
2016-07-23Project Manager: Added project list scrolling with keyboardIgnacio Etcheverry
2016-07-23Fix warnings in core/variant_op.cppJohan Manuel
Adds default cases in switches where needed, and replaces '0;' with ';;' in macro expansions (as suggested by @vnen in #5587).
2016-07-23Add some doc to ImmediateGeometryJuan Linietsky
2016-07-23Merge pull request #5872 from akien-mga/pr-libraries-updateRémi Verschelde
Update embedded libraries: rg_etc1 1.04, zlib 1.2.8, RtAudio 4.1.2
2016-07-23RtAudio: Update to upstream version 4.1.2Ré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-23zlib: Update builtin version to upstream 1.2.8Ré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-23rg_etc1: Upstream version 1.04Rémi Verschelde
From https://github.com/richgel999/rg-etc1
2016-07-23Merge pull request #5861 from akien-mga/pr-freetype-2.6.5Rémi Verschelde
Upgrade FreeType to upstream version 2.6.5
2016-07-23Merge pull request #5864 from djrm/new_iconsRémi Verschelde
Modified some icons
2016-07-23Merge pull request #5866 from MarianoGnu/masterRémi Verschelde
Prevent crash in TextureRegionEditor. Fixes #5862
2016-07-22Prevent crash in TextureRegionEditor. Fixes #5862MarianoGNU
2016-07-22Modified some iconsDaniel J. Ramirez
2016-07-22Merge pull request #5863 from MarianoGnu/masterMariano Javier Suligoy
Fix pick color from screen. Closes #5853
2016-07-22Fix pick color from screen. Closes #5853MarianoGNU
2016-07-22FreeType: Update to upstream version 2.6.5Ré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-22FreeType: Remove unnecessary subfolderRémi Verschelde
Also sort sources alphabetically for clarity.