Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-23 | Added slicing operation to DVector via DVector.subarray(int start,int end) ↵ | Gau o fthe Veldt | |
method. Negative indices index from the end of the array. Indices are range checked before attempting and return appropriate error when out of range. Binding for RawArray in gdscript to access DVector.subarray() provided. Documentation of RawArray.subarray() in classes.xml provided. | |||
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. | |||
2016-07-22 | FreeType: Reduce diff with upstream 2.5.0 version | Rémi Verschelde | |
The Godot specific changes to ftoption.h are indicated with a `// -Godot-` comment for clarity. See #5859 for details. | |||
2016-07-22 | Merge pull request #5860 from 29jm/fix-itemlist-separators | Rémi Verschelde | |
Fix ItemList.clear() not removing separators | |||
2016-07-22 | Fix ItemList.clear() not removing separators | Johan Manuel | |
2016-07-22 | Fixed 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-22 | Removed support for saving paths as relative, closes #5728 | Juan Linietsky | |
Editor now has good refactoring tools, so this function is mostly obsolete | |||
2016-07-22 | Make texture parameter optional in begin() of ImmediateGeometry. Closes ↵ | Juan Linietsky | |
#5676 and closes #5720 | |||
2016-07-22 | Show 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-22 | Set proper line into operators when parsing GDScript, fixes #5822 | Juan Linietsky | |
2016-07-22 | Merge pull request #5851 from 29jm/typo-scroll | Rémi Verschelde | |
Fix typo in ScrollContainer documentation | |||
2016-07-22 | Fix typo in ScrollContainer documentation | Johan Manuel | |
2016-07-22 | Merge pull request #5849 from SaracenOne/expose_add_index | Rémi Verschelde | |
SurfaceTool add_index method exposed to scripts. | |||
2016-07-22 | Merge pull request #5847 from 29jm/patch-3 | Rémi Verschelde | |
Expose virtual keyboard functions to GDScript | |||
2016-07-22 | Merge pull request #5846 from leezh/regex_doc | Rémi Verschelde | |
Added examples to RegEx doc #5827 | |||
2016-07-22 | Merge pull request #5845 from hurikhan/x11_cleanup | Rémi Verschelde | |
Code cleanup in platform/x11 | |||
2016-07-22 | Fix binding for ItemList.sort_items_by_text | Rémi Verschelde | |
Also forces to recompute the cached rect for all items. Fixes #5799 | |||
2016-07-22 | SurfaceTool add_index method exposed to scripts. | Saracen | |
2016-07-21 | Expose virtual keyboard functions to GDScript | Johan Manuel | |
2016-07-21 | properly implement item disabling, fixes #5683 | Juan Linietsky | |
2016-07-21 | Update profiler curves on item toggled, closes #5680 | Juan Linietsky | |
2016-07-21 | Added examples to RegEx doc | Zher Huei Lee | |
2016-07-21 | Code cleanup in platform/x11 | Mario Schlack | |
2016-07-21 | Merge pull request #5842 from hurikhan/x11_request_attention | Rémi Verschelde | |
Implement OS.request_attention() for X11 | |||
2016-07-21 | Implement OS.request_attention() for X11 | Mario Schlack | |
2016-07-21 | Merge pull request #5841 from vnen/fix-windows-wheel | Rémi Verschelde | |
Fix mouse wheel event position on Windows | |||
2016-07-21 | Merge pull request #5837 from hurikhan/android_cleanup | Rémi Verschelde | |
Minor code formatting in platform/android | |||
2016-07-21 | Implement OS.request_attention() for OSX (#5662) | GungnirInd | |
Keeps bouncing icon until user focuses window | |||
2016-07-21 | Merge pull request #5560 from vnen/os-request-attention | Rémi Verschelde | |
Add OS.request_attention() for Windows | |||
2016-07-21 | Fix mouse wheel event position on Windows | George Marques | |
2016-07-21 | Instance only selected scenes in FS dock, closes #5795 | Juan Linietsky | |
2016-07-21 | Renamed scenes_dock to filesystem_dock (makes more sense, it has not been a ↵ | Juan Linietsky | |
scenes dock since a long time). | |||
2016-07-21 | Hide editor types from create node dialog, closes #3263 | Juan Linietsky | |
2016-07-21 | Some optimizations and limits for extreme zoom in and out in editor, fixes #5820 | Juan Linietsky | |
2016-07-21 | Minor code formatting in platform/android | Mario Schlack | |
2016-07-21 | Merge pull request #5836 from volzhs/issue-5830 | Rémi Verschelde | |
Remove "SMOOTH BEGIN?" message | |||
2016-07-21 | Merge pull request #5835 from volzhs/issue-5831 | Rémi Verschelde | |
Fix compile error if use android_stl=yes |