aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/audio_driver_javascript.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-12-16Enhanced changeType menu in Scene Tree Docksersoong1-55/+58
2017-12-15Made multiline property editor deselect text when opening.Michael Alexsander Silva Dias1-0/+1
2017-12-15Fix 32bit MingW build for thekla_altasHein-Pieter van Braam2-1/+10
2017-12-15Made built-in identifiers properly constant in shaders. Fixes #14449, closes ↵Juan Linietsky5-86/+166
#14629
2017-12-15Enhancements and fixes for PopupMenu's submenus.Michael Alexsander Silva Dias1-19/+18
2017-12-15Renamed navmesh/poly_create to navmesh/poly_add since no navmesh is created.Nathan Warden10-17/+17
2017-12-15BakedLightmap: Update gizmo when setting extents.Andreas Haas1-0/+1
Fixes #14696.
2017-12-15thekla: Fix build on x86 systems without SSE supportRémi Verschelde2-5/+17
Fixes #14709. Same as https://github.com/Thekla/thekla_atlas/pull/11, but adding comments until it's merged upstream.
2017-12-15Fixes close button overlapping window titleBernhard Liebl1-3/+10
2017-12-15Added third argument for String.split() function (see issue #14349)Dmitry Koteroff4-6/+22
Remove negative limit, leave only positive and make it reflect behaviour like in Python Also limit renamed to maxsplit to match Python one. Also docs updated. Fix indent
2017-12-15ScriptCreateDialog: Fix loading scripts with named classes.Andreas Haas1-1/+1
We only need to validate the class name when creating a new script, existing scripts already have one. Fixes #14643 Supersedes/Closes #14684
2017-12-15Fixes oversized tooltip labels (issue 14570)Bernhard Liebl1-1/+1
2017-12-15Fix thin lines in editor gui on hidpi (issue 14691)Bernhard Liebl2-3/+22
2017-12-15Move windows networking class to drivers/windows/Fabio Alessandrelli10-49/+59
Also rename stream_peer_winsock.* to stream_peer_tcp_winsock.* and StreamPeerWinsock to StreamPeerTCPWinsock.
2017-12-15Remove "const" from PacketPeer get_packet/get_varFabio Alessandrelli8-31/+31
They are NOT constant methods, as state by the comment message, they fetch the last packet and then forget about it, actively changing the state of the object.
2017-12-15Fix javascript build error and improve #14604Fabio Alessandrelli2-5/+5
2017-12-15fix compile issueJuan Linietsky1-1/+1
2017-12-15Fixes slider node tick offsetHenrique L Alves1-4/+4
Fixes wrong tick offset on slider nodes - they now match with the corresponding 'grabber' positions. Fixes issue #14637
2017-12-15-Added new scene conversion to binary on export (disabled by default, please ↵Juan Linietsky7-250/+670
test) -This method works by directly converting text to binary, so the scene does not need to be loaded and saved
2017-12-15Update Hack font to version 3.000Hugo Locurcio3-41/+22
2017-12-15Modifies indentation behavioursMattUV4-93/+58
Partially fixes #14559 (see the issue for details); Removes some code redondancy ; Adds the possibility to indent left and right without selecting text ; Adds the entries to the context menu when text is not selected ; Renames indent_selection_left() and indent_selection_right() to indent_left() and indent_right() ; Unifies context menus of shader text editor and script text editor.
2017-12-15Fixes thekla atlas mingw-w64 buildbruvzg4-2/+11
2017-12-15Remove debug printf on WindowsRémi Verschelde1-2/+0
2017-12-15[DOCS] Completed the docs for the Navigation node.Nathan Warden1-0/+11
2017-12-15Add missing godot_get_stack_bottom and godot_get_global_constants in ↵Emmanuel Leblond1-0/+12
gdnative_api.json
2017-12-14Updated iconsDaniel J. Ramirez24-232/+48
[ciskip]
2017-12-14Updated input_default.cpp again (new maps take priority)Andrew Silver1-12/+12
Fixes #14639
2017-12-14openmp: Simplify linking on X11, fixing clang buildRémi Verschelde1-2/+1
2017-12-14MacPorts clang version selection, and OpenMP linking fix.bruvzg3-12/+13
2017-12-14GDScript files are converted to binary on export now.Juan Linietsky5-20/+102
2017-12-14Fix type mismatch in OS::set_borderless_windowRémi Verschelde7-8/+7
Closes #14663.
2017-12-14openmp: Don't try to link GCC's implementation on ClangRémi Verschelde2-8/+9
Also disable openmp build on Travis, breaks on Trusty's Clang. Group deps more naturally.
2017-12-14Prevent users from moving instanced childrenMatthias Hoelzl1-3/+5
2017-12-14Adds `macports_clang` build flag to build using clang-5.0 form MacPorts ↵bruvzg5-3/+25
(with OpenMP support).
2017-12-14fix for compiling the new lightmapperMichele Valente2-4/+4
also changed two calls that were ambiguous
2017-12-14Fixes built-In "LIGHT" causing fragment compilation errorArnaud PEZEL1-0/+1
Add a rename for shader LIGHT built-in, Fix bug #14537
2017-12-14Added indent_style to editorconfig, fixed inconsistent use of tabs and ↵Colin Kinloch3-7/+11
spaces in indentation.
2017-12-14-Add lightmapperJuan Linietsky44-1138/+4584
-Fixes to unwrapper (remove degenerates), makes Thekla not crash -Added optional cancel button in EditorProgress -Added function to force processing of events (needed for cancel button)
2017-12-14HTTP cleanup & better defaultsmhilbrunner5-132/+131
2017-12-13[DOCS] Animation, CanvasItem, Curve3D, CurveWill Nations4-14/+48
2017-12-13Added open_script_create_dialog funcWill Nations2-0/+7
2017-12-14Focus path field after seleting file browser on Attach script windowvolzhs1-0/+6
2017-12-14Revert property changes in "[DOCS] AnimationPlayer new props, members/methods"Rémi Verschelde4-51/+82
This partially reverts commits e79456519d0c1dff98ffa5f39e8e7c962b7dd553 and 2d07fe29208b9ccef31ab654ca5405edac7a0de7, which introduced API changes needing more in-depth review at this stage. Kept the removal of "get_position" binding, redundant with "get_current_animation_position". Kept docs changes where applicable. Also removed the obsolete "stop_all" method which does the same as "stop". Fixes #14602.
2017-12-13[DOCS] JSON: Small fixesMax Hilbrunner2-6/+6
2017-12-13Fix crash (and bug) in RichTextLabelpoke10241-1/+1
2017-12-13TileMapEditor: Fix tile placement.Andreas Haas1-0/+1
Fixes #14625
2017-12-13Scons: Build modules in seperate env.Andreas Haas4-6/+19
2017-12-13Fix theme for Mesh menuvolzhs1-2/+2
2017-12-13Fix #14564 ImmediateGeometry normals act strangely compared to SurfaceToolPrzemyslaw Czarnota1-2/+2
2017-12-12Account for folded code blocks when navigating via members listZaven Muradyan2-8/+4
Previously, the editor would attempt to set the scroll position to the function's line number, but this would result in an invalid scroll whenever functions above the target were folded. This changes callback to use a combination of `goto_line` and `set_edit_state` to navigate to the target line and reset the cursor to column 0. Using `goto_line` also has the side effect of automatically unfolding the target function, which seems like useful behavior. Fixes #14572.