summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-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.
2016-07-22FreeType: Reduce diff with upstream 2.5.0 versionRémi Verschelde
The Godot specific changes to ftoption.h are indicated with a `// -Godot-` comment for clarity. See #5859 for details.
2016-07-22Merge pull request #5860 from 29jm/fix-itemlist-separatorsRémi Verschelde
Fix ItemList.clear() not removing separators
2016-07-22Fix ItemList.clear() not removing separatorsJohan Manuel
2016-07-22Fixed ItemList indexing bug while selecting items.Robert Lewicki
Also added functionality for unselecting items in itemlist while clicking in empty space. Fixes #5772.
2016-07-22Removed support for saving paths as relative, closes #5728Juan Linietsky
Editor now has good refactoring tools, so this function is mostly obsolete
2016-07-22Make texture parameter optional in begin() of ImmediateGeometry. Closes ↵Juan Linietsky
#5676 and closes #5720
2016-07-22Show a warning that an animation must be selected in order to edit it. Avoid ↵Juan Linietsky
copying/pasting if no anim selected. Closes #5799
2016-07-22Set proper line into operators when parsing GDScript, fixes #5822Juan Linietsky
2016-07-22Merge pull request #5851 from 29jm/typo-scrollRémi Verschelde
Fix typo in ScrollContainer documentation
2016-07-22Fix typo in ScrollContainer documentationJohan Manuel
2016-07-22Merge pull request #5849 from SaracenOne/expose_add_indexRémi Verschelde
SurfaceTool add_index method exposed to scripts.
2016-07-22Merge pull request #5847 from 29jm/patch-3Rémi Verschelde
Expose virtual keyboard functions to GDScript
2016-07-22Merge pull request #5846 from leezh/regex_docRémi Verschelde
Added examples to RegEx doc #5827
2016-07-22Merge pull request #5845 from hurikhan/x11_cleanupRémi Verschelde
Code cleanup in platform/x11
2016-07-22Fix binding for ItemList.sort_items_by_textRémi Verschelde
Also forces to recompute the cached rect for all items. Fixes #5799
2016-07-22SurfaceTool add_index method exposed to scripts.Saracen
2016-07-21Expose virtual keyboard functions to GDScriptJohan Manuel
2016-07-21properly implement item disabling, fixes #5683Juan Linietsky
2016-07-21Update profiler curves on item toggled, closes #5680Juan Linietsky
2016-07-21Added examples to RegEx docZher Huei Lee
2016-07-21Code cleanup in platform/x11Mario Schlack
2016-07-21Merge pull request #5842 from hurikhan/x11_request_attentionRémi Verschelde
Implement OS.request_attention() for X11
2016-07-21Implement OS.request_attention() for X11Mario Schlack
2016-07-21Merge pull request #5841 from vnen/fix-windows-wheelRémi Verschelde
Fix mouse wheel event position on Windows
2016-07-21Merge pull request #5837 from hurikhan/android_cleanupRémi Verschelde
Minor code formatting in platform/android
2016-07-21Implement OS.request_attention() for OSX (#5662)GungnirInd
Keeps bouncing icon until user focuses window
2016-07-21Merge pull request #5560 from vnen/os-request-attentionRémi Verschelde
Add OS.request_attention() for Windows
2016-07-21Fix mouse wheel event position on WindowsGeorge Marques