aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/api/javascript_eval.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-03-07Added a check for trailing dot when creating folder.Felix Yang1-1/+1
Merge the trailing dot test into existing test. Removed OS test.
2018-03-06Fix silent failure of importing OGG Vorbis filesrobfram1-0/+1
When importing non-valid OGG Vorbis audio files, now the filesystem navigation tree shows the correct sad red-face icon, as it does with non-valid PNG, JPG or WAV files. Fix #9793.
2018-03-06Disable FreeType SIMD in HTML5 buildsLeon Krause1-4/+12
SIMD is currently unsupported in WebAssembly.
2018-03-06Change shebang of pre-commit-clang-format hook to make it portablerobfram1-1/+1
The default one is "#!/bin/bash", but BSD systems doesn't have bash in that path. For portability reasons, it should be changed to "#!/usr/bin/env bash". More info: https://en.wikipedia.org/wiki/Shebang_%28Unix%29#Portability
2018-03-06Explicitly set OpenGL profile to core (X11, Windows).bruvzg3-4/+16
Enable GLES2 on Windows.
2018-03-05Add GL_ARB_framebuffer_object extension support check and ↵bruvzg4-47/+226
GL_EXT_framebuffer_object fallback for GLES2 (updated GLAD bindings). Add GL_ARB_debug_output extension support check on all platforms.
2018-03-05In CanvasItemEditor, prioritize selected itemsBernhard Liebl1-1/+16
2018-03-05skip demo download prompt if ssl is unavailableEmanuele Fornara1-1/+1
2018-03-04Fix new Node dialog Create button behaviorIvan Vodopiviz1-0/+2
Added a one-liner to update the Create button disabled state when selecting an item from the search results list. Fixes #17265, long live the Realm!
2018-03-04Fix uninitialized data in Sprite::_get_rects()Bernhard Liebl1-2/+2
2018-03-04Clean and expose get_audio/video_driver_* funcs on OS classMarcelo Fernandez15-116/+75
2018-03-04SCons: Fix linking system pcre2 on server platformRémi Verschelde1-0/+5
Fixes #17245.
2018-03-03Fix for a possible crash when a custom theme is not loaded properlyMarcelo Fernandez1-1/+3
2018-03-03Modify OSX can_export logic to match the logic from ↵Marcelo Fernandez1-9/+15
EditorExportPlatformPC::can_export
2018-03-03Fix floatBitsToUint functionChaosus1-4/+4
2018-03-03Hack to force macOS window activation for non-bundled app.bruvzg1-1/+35
2018-03-03i18n: Sync translation templates with 3.0 sourceRémi Verschelde46-321/+368
(cherry picked from commit 65d214d3dafef696d99f6c23c7b941bbde1c1802)
2018-03-03i18n: Sync translations with WeblateRémi Verschelde13-764/+705
2018-03-03[DOCS] Small fix to Area: Fix copy/paste errorsMax Hilbrunner1-3/+3
2018-03-03Fix 3 memory leaksChaosus4-2/+21
2018-03-03FIX Windows enter/exit mouse notificationsRanoller1-0/+2
Fix to this issue #17202
2018-03-02Update AUTHORS and DONORS listRémi Verschelde2-10/+34
New contributors added as AUTHORS: @mrcdk, @binbitten, @paulloz, @PJB3005 New Gold sponsor: Skirmish <https://skirmish.io> Thanks and welcome! :) [ci skip]
2018-03-02Fix more regressions in RichTextLabel from PR 15711Bernhard Liebl1-9/+5
2018-03-02s/Camear/Camera in docsPoommetee Ketson1-2/+2
2018-03-02Fix serialization of identifiers with non printable ASCII charactersRémi Verschelde1-2/+9
Fixes #6888.
2018-03-02fix GLES2 line renderingkarroffel1-1/+3
fixes #17147
2018-03-02GLES2 renderer support on macOS.bruvzg5-19/+77
2018-03-02Don't crash when trying to add an invalid navmeshHein-Pieter van Braam1-0/+1
It is possible to try to add an invalid object as a navmesh through GDScript which results in an engine crash. This creates a debug message that should help the user figure out what's wrong.
2018-03-02Fix `--help` output, allow renderer override from command line ↵bruvzg4-14/+20
(`--video-driver`).
2018-03-02GridMap: fix next/prev plane text, fix meta not foundPoommetee Ketson1-3/+3
2018-03-02prune cache only at the start and end of buildRhody Lugo1-10/+2
2018-03-02[DOCS] NetworkedMultiplayerENetMax Hilbrunner1-3/+13
2018-03-02[DOCS] Small fix to PinJoint2DMax Hilbrunner1-1/+1
2018-03-02NativeScript: Fix initialization in wrong scopeRémi Verschelde1-1/+1
Regression from d702d7b335c0c9305e75131770c0ea739b70d813 which broke javascript build.
2018-03-01Fix regression through fa98637acaab9135568bf0d43a65c9c96b59c32dpoke10241-0/+5
2018-03-01fix accidental SConstruct revertskarroffel1-6/+4
as introduced by 29215b2
2018-03-01Remove unneeded and problematic minilex.c from lws.Fabio Alessandrelli3-274/+1
We don't need it, it's used upstream to test the lexical parser
2018-03-01Viewport: Fix missing tooltips w/ disabled physics object pickingRémi Verschelde1-9/+18
Previously this option seemed to be the sole responsible for enabling physics processing in Viewport, while several other features like tooltips and debugging collision hints rely on it. All this logic is moved to internal processing (it's incorrect to let it be affected by users disabling physics/idle processing), and disabling physics object picking no longer affects the internal physics processing. Fixes #17001.
2018-03-01add GLES 2 renderer for 2Dkarroffel41-718/+12285
This commit adds a new rendering backend, GLES2, and adds a project setting to enable it. Currently this backend can only be used on the X11 platform, but integrating into other platforms is planned.
2018-03-01Fix intermittent audio driver crash during startup on AndroidRuslan Mustakov1-0/+1
set_pause can be called before the driver is initialized, and there already is a check for that. The problem is that the 'active' field was not initialied in the constructor, which lead to it having an undefined value.
2018-03-01Fix WebM SIMD optimizations on macOS.bruvzg1-1/+1
2018-02-28Allow degenerate triangles in polygon triangulation when necessary.Nicolas Silva2-10/+37
2018-03-01Fix server build on FreeBSDFabio Alessandrelli3-2/+15
2018-02-28Fix various valgrind reported uninitialized variable usesHein-Pieter van Braam8-7/+20
2018-02-28Use Prepend instead of Append for mbedTLS includeFabio Alessandrelli2-3/+3
Fixes build on FreeBSD when system-wide mbedTLS and/or openSSL are installed
2018-02-28Fix grid mesh tile panning bug (issue 16524)poke10242-3/+14
Fix basic function and interference of touch pad pan with mesh tile delete (shift + right click on touch pad) in grid map editor (fix 16524)
2018-02-28Fix lws compilation on FreeBSD, same as OSXFabio Alessandrelli2-2/+2
This error is actually fixed upstream, waiting for a new release
2018-02-27More reliably find mscorlib.dll on LinuxHein-Pieter van Braam1-2/+5
2018-02-27doc: Sync classref with current sourceRémi Verschelde2-1/+3
2018-02-27doc: Remove status from hardcoded version stringRémi Verschelde492-492/+492
It has no practical use case and just generates noise for each alpha, beta, etc.