aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/os_javascript.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-12-10KinematicBody: Fix wrong method bind return typeIgnacio Etcheverry2-2/+2
2016-12-08WebM: Fix compilation on Linux/X11 ARM platformBłażej Szczygieł1-3/+5
2016-12-04small improvement to y_sort: make clear which item has to be drawn first ↵Patrick Reh1-1/+4
when two have the same y-coordinate
2016-12-04Remove incomplete Inverse Kinematic moduleRémi Verschelde6-492/+0
The plan is to implement IK properly in the core engine for version 3.1, together with ragdolls in the Skeleton node to let them reuse the same limits and constraints. Therefore we remove this module as part of the API breakage in 3.0, so that we are not limited by staying compatible with it in 3.1.
2016-12-03TextureRegionEditor: Fix mouse wheel scroll speed.Andreas Haas1-2/+2
Any given mouse wheel input will generate two InputEvents in godot. The zoom methods here acted on both ones, effectively giving a step value of 4 instead of 2. Fixes #7236
2016-12-03Particles2D: Fix initial size randomness property having no effect.Andreas Haas1-1/+1
It was just a little typo :p
2016-12-02Fix crash on project importing by dragging a folder.Andreas Haas1-1/+1
Fixes #7226
2016-12-02Show selected node in Scene dock when parent node is foldedvolzhs1-0/+6
Fix #7228
2016-12-01WebM: Fix crash when there is no audio streamBłażej Szczygieł2-2/+4
Sync with libsimplewebm-git: 05cfdc2
2016-11-30Emit asm.js code into a dedicated file for asm.js exporteska2-0/+6
This helps prevent browser lockups during start-up at the cost of having to distribute an extra file.
2016-11-30Add window features in web exporteska2-38/+161
- Add 'window' (canvas) resize, maximize and fullscreen - Implement get_screen_size - Fix fullscreen resolution
2016-11-30Fix some mouse bugs in WebAssembly/asm.jseska3-5/+17
- Emit mouse wheel release events - Set button masks, fixes #5092
2016-11-30OS additions and fixes for WebAssembly/asm.jseska4-57/+49
- Implement alert, shell_open, set_window_title - Add locale lookup, fixes #2477 - Print without color control sequences - Move get_executable_path implementation to OS_JavaScript
2016-11-30Travis: Disable Android builds for nowRémi Verschelde1-3/+3
As we say in French, "Trop, c'est trop !". Those builds fail 50% of the time due to timeouts, it's pointless to have them until we find a better solution to install the Android SDK and NDK. Workaround for #6973.
2016-11-30Revert "Do not emit NOTIFICATION_READY more than once (breaking change)"Rémi Verschelde2-7/+6
This reverts commit b6eab006dbd21d25a664486809109fffa9533124. This commit broke compatibility in an undesired way, as outlined in https://github.com/godotengine/godot/issues/3290#issuecomment-263388003
2016-11-29Check keystore field when export Android release apkvolzhs3-0/+222
2016-11-28Fix console output for MinGW compilersRémi Verschelde1-2/+10
Reworked patch from @jay3d (#7116).
2016-11-28Add alert window on Androidvolzhs4-5/+38
2016-11-28Fix scroll bar moving in AnimationPlayer editorvolzhs1-1/+1
Fix #7196
2016-11-28Fix color selected with mouse scrollvolzhs1-2/+2
Fix #7192
2016-11-27Fix snap mode selector sticking in texture region moduleDmitry Kram1-1/+1
When changing snap mode in texture region plugin ticks was not updating. Issue fixed changing order of setting checked status and setting snap mode.
2016-11-24TileMap now honors blending mode.Ovnuniarchos3-1/+12
2016-11-25Prevent Spinbox value update while not focused or disabledvolzhs1-5/+13
2016-11-25Set minimum version to 10.9 building OSXBastiaanOlij3-4/+6
2016-11-23Revert "X11: Fix maximized boot splash"Rémi Verschelde1-21/+0
This reverts commit 8d3efe2b7de494c0971d4b7f7af6ed0dc2f4613c. It introduced crashes for some users when trying to capture the XConfigureNotify event.
2016-11-22Properly localize absolute path.Fabio Alessandrelli1-1/+2
Calling localize_path will return a localized path in res:// if the path starts with the resource file-system/folder, and will return the unchanged absolute path otherwise. Closes #6979 and #7161.
2016-11-21Correct description for the return values from get_status. (#7137)romeojulietthotel1-1/+1
2016-11-19Reused Button styleboxes for ButtonArrayZher Huei Lee1-11/+10
Plus other tweaks to make it look more similar to a VBoxContainer of Buttons.
2016-11-19Flat button support in ButtonArray. Fixes #7153Zher Huei Lee2-2/+22
2016-11-19png: Allow building shared freetype with bundled libpngRémi Verschelde2-2/+0
This was the behaviour when building Godot 2.1, which allows to build against Ubuntu 12.04 and its freetype that links old libpng12, while still bundling libpng16.
2016-11-19Revert "libpng: Fix erroneously linking against libpng12 on old distros"Rémi Verschelde2-2/+2
This reverts commits 5fa1bb331ad9be31dbfc752c7d19ccf7caeb8fa and ec4be71fade1ee5c6171e323d09197f3bf528499. Looks like Debian/Ubuntu are not even shipping libpng16 nowadays in their stable releases, we'll have to go back to statically linking our own libpng16 to wait for them to stop being 5 years behind everybody.
2016-11-19libpng: Same fix as previous commit for server platformRémi Verschelde1-1/+1
2016-11-19libpng: Fix erroneously linking against libpng12 on old distrosRémi Verschelde1-1/+1
This bit us for 2.1.1 binaries built on Ubuntu 12.04 LTS where libpng.pc apparently prioritizes libpng12.
2016-11-18memory ops implemented as OS functions by defaultAriel Manzur2-121/+8
(cherry picked from commit 67f65f66391327b2967a20a89c3627e1dd6e84eb)
2016-11-18adding get_stored_values methodAriel Manzur2-1/+20
changed order name (cherry picked from commit dbca4ee3fe283f59a8c9d50aae73b97f48be7b01)
2016-11-18Add Array.front() and Array.back()Kazuo2564-0/+31
2016-11-18fixes #6464 lost icons in dock and file dialog, also #6443 , #6302Avril1-4/+4
Fixes lost icons in docks, file manager, sample library, settings and various other places.
2016-11-17Do not emit NOTIFICATION_READY more than once (breaking change)Bojidar Marinov2-6/+7
Currently, there is no notification with the old behaviour, so probably breaks all cpp code relying on that notification as well.
2016-11-17Guard agains duplicate calling of _ready when instanced in _enter_treeBojidar Marinov2-1/+6
Fixes #6005
2016-11-17Select exactly matched file automatically in FileDialogvolzhs1-3/+4
2016-11-16WebM: Fix iPhone x86 compilationBłażej Szczygieł1-3/+4
2016-11-16Add missing commit title in the log exampleRémi Verschelde1-0/+2
2016-11-16Add instructions about git commit log formattingRémi Verschelde1-0/+22
2016-11-16X11: Fix maximized boot splashAndreas Haas1-0/+21
When instructing the window manager to (un)maximize a window, the resulting resolution is recieved via an XEvent of type "ConfigureNotify". The problem here was that these events were only handled in the `OS_X11::process_xevents()` method, which is initially called on the first iteration of the main loop. Because of this, the VideoMode still hadn't been updated yet when doing the boot splash setup.
2016-11-15Fix compilation with MSVC 2013Błażej Szczygieł1-1/+5
2016-11-15Blimey! Ye Pirate locale be anchor' a'port!Rémi Verschelde1-0/+2
2016-11-15i18n: Sync template and translations with current codeRémi Verschelde33-1844/+3415
2016-11-15i18n: Sync translations with WeblateRémi Verschelde14-574/+13924
Adds initial translations for Hungarian and Pirate (yaaaar!)
2016-11-14Added snapping to 3D path handles to bring it in line with its 2D counterpartBen Hickling1-0/+6
2016-11-14Check entered and trimmed path when create, import, install projectvolzhs1-30/+22