aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/audio_server_javascript.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-07-24Turn some prints to error logs, remove othersRémi Verschelde5-12/+10
Fixes #5876 in passing.
2016-07-23Project Manager: Added project list scrolling with keyboardIgnacio Etcheverry2-0/+135
2016-07-23Fix warnings in core/variant_op.cppJohan Manuel1-2/+8
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 Linietsky1-0/+16
2016-07-23RtAudio: Update to upstream version 4.1.2Rémi Verschelde3-129/+63
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 Verschelde14-416/+132
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 Verschelde1-18/+10
From https://github.com/richgel999/rg-etc1
2016-07-22Prevent crash in TextureRegionEditor. Fixes #5862MarianoGNU1-2/+12
2016-07-22Modified some iconsDaniel J. Ramirez9-37/+1126
2016-07-22Fix pick color from screen. Closes #5853MarianoGNU1-1/+2
2016-07-22FreeType: Update to upstream version 2.6.5Rémi Verschelde488-16934/+28397
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 Verschelde483-46/+45
Also sort sources alphabetically for clarity.
2016-07-22FreeType: Reduce diff with upstream 2.5.0 versionRémi Verschelde4-857/+21
The Godot specific changes to ftoption.h are indicated with a `// -Godot-` comment for clarity. See #5859 for details.
2016-07-22Fix ItemList.clear() not removing separatorsJohan Manuel1-0/+1
2016-07-22Fixed ItemList indexing bug while selecting items.Robert Lewicki1-11/+8
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 Linietsky6-12/+14
Editor now has good refactoring tools, so this function is mostly obsolete
2016-07-22Make texture parameter optional in begin() of ImmediateGeometry. Closes ↵Juan Linietsky2-2/+2
#5676 and closes #5720
2016-07-22Show a warning that an animation must be selected in order to edit it. Avoid ↵Juan Linietsky3-2/+21
copying/pasting if no anim selected. Closes #5799
2016-07-22Set proper line into operators when parsing GDScript, fixes #5822Juan Linietsky1-0/+11
2016-07-22Fix typo in ScrollContainer documentationJohan Manuel1-4/+4
2016-07-22Fix binding for ItemList.sort_items_by_textRémi Verschelde1-1/+4
Also forces to recompute the cached rect for all items. Fixes #5799
2016-07-22SurfaceTool add_index method exposed to scripts.Saracen1-0/+1
2016-07-21Expose virtual keyboard functions to GDScriptJohan Manuel4-4/+38
2016-07-21properly implement item disabling, fixes #5683Juan Linietsky1-9/+17
2016-07-21Update profiler curves on item toggled, closes #5680Juan Linietsky1-0/+2
2016-07-21Added examples to RegEx docZher Huei Lee1-17/+22
2016-07-21Code cleanup in platform/x11Mario Schlack4-156/+37
2016-07-21Implement OS.request_attention() for X11Mario Schlack2-0/+21
2016-07-21Implement OS.request_attention() for OSX (#5662)GungnirInd2-1/+6
Keeps bouncing icon until user focuses window
2016-07-21Fix mouse wheel event position on WindowsGeorge Marques1-4/+7
2016-07-21"FileSystem" dock now instance all selected scenes in one actionFranklin Sobrinho5-10/+42
2016-07-21Instance only selected scenes in FS dock, closes #5795Juan Linietsky1-1/+2
2016-07-21Renamed scenes_dock to filesystem_dock (makes more sense, it has not been a ↵Juan Linietsky4-72/+72
scenes dock since a long time).
2016-07-21Hide editor types from create node dialog, closes #3263Juan Linietsky1-0/+3
2016-07-21Some optimizations and limits for extreme zoom in and out in editor, fixes #5820Juan Linietsky2-9/+58
2016-07-21Minor code formatting in platform/androidMario Schlack13-47/+69
2016-07-21Remove "SMOOTH BEGIN?" messagevolzhs1-2/+0
2016-07-21Fix compile error if use android_stl=yesvolzhs1-7/+7
2016-07-21TextEdit: Center search resultsIgnacio Etcheverry3-2/+33
2016-07-20Fixed reloading of tool scripts within editor, they should work much better ↵Juan Linietsky2-2/+22
now, closes #3194
2016-07-21Implement missing ShortCuts in CanvasItemEditorIgnacio Etcheverry2-11/+10
2016-07-21Fix the rotation not updating in the inspector with ControlsJohan Manuel1-0/+1
2016-07-20Implement get_screen_dpi() on AndroidMario Schlack5-3/+37
2016-07-19put text formats for resources and scenes as priorityJuan Linietsky5-8/+26
2016-07-19Fixed properly not save signals that already exist in their base scenes, ↵Juan Linietsky6-31/+36
closes #5656
2016-07-19WIP bugfix for existing connectionsJuan Linietsky4-15/+140
2016-07-19classref: WIP improved docs for NodeRémi Verschelde1-37/+53
Also clarified the purpose of Input.get_mouse_speed (see #1355)
2016-07-19classref: Sync classes with sourceRémi Verschelde1-74/+103
2016-07-19Fix main scene not being saved when set via Play buttonRémi Verschelde3-3/+6
Fixes #1134 for real. Also tweaked the engine.cfg template and the preference order when browsing for the main scene.
2016-07-19Revert "Homogeinize resource formats loaders/savers"Rémi Verschelde4-15/+19
The text format definition needs to stay in `scene/` as it relies on other scene components, and `core/` must stay self-contained. This reverts commits a5e27503fd52589703d637d1245a023233a14a27 and 1492fd846073a4fa643365a8a5d4e021868c0e48.