aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript/gdscript_function.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-02-19Prevent loading project-specific config in Project ManagerRémi Verschelde1-28/+21
The Project Manager should share the same settings as the editor most of the time. The whole init stuff with Main::setup and Main::start needs a good cleanup though. Fixes #15199.
2018-02-19OSX: Remove support for 32-bit and fat binariesRémi Verschelde3-45/+9
Mac OS X is 64-bit only since 10.7 (Lion), which has reached End-Of-Life in October 2014. Therefore it no longer makes sense to support exporting 32-bit binaries for Mac OS X, and we can now default to 64-bit instead of bigger "fat" binaries.
2018-02-19doc: Sync classref with current sourceRémi Verschelde14-15/+2117
2018-02-19doc: Update version string in headerRémi Verschelde486-486/+486
2018-02-19Readd VS.sync and VS.draw to keep compatibilityRémi Verschelde1-0/+6
Those are deprecated as VS.force_sync and VS.force_draw do the same and more explicitly, but we cannot remove them without marking them as deprecated before that. Fixes issue introduced in #15892.
2018-02-18Force controls to save rect_clip_content since they do not all default to false.isaacremnant1-1/+1
2018-02-18Fix infinite recursion with editor import pluginsGeorge Marques1-2/+2
2018-02-18fixed md scriptYan Pas1-8/+13
2018-02-18Remove some debugging prints on AndroidHugo Locurcio8-200/+8
2018-02-17implement signal related methods in csharp_script so signals can be used ↵Paul Joannon4-8/+89
with emit
2018-02-17add a [Signal] attribute to CSharpScriptsPaul Joannon7-1/+103
2018-02-17Flush HTTPClient response data only on request/close in HTML5 platformLeon Krause1-2/+0
2018-02-17Warn when polling HTTPClient synchronously in HTML5 platformLeon Krause2-0/+24
2018-02-17Mono: Fix build status iconsIgnacio Etcheverry1-5/+3
2018-02-17Disable insecure HTTP methods CONNECT and TRACE in HTML5 platformLeon Krause1-0/+2
2018-02-17Clean up some bad words from code commentsArtem Varaksa14-23/+13
2018-02-17Fix #16773 (Rename "Install" to "Download" in AssetLib)Artem Varaksa1-1/+1
2018-02-17Ignore tools CLI flags in non-tools builds.Pieter-Jan Briers1-5/+11
Some flags were still parsed but either did nothing or broke everything. No reason to parse them.
2018-02-17Gridmap editor now lists plane instead of floor when not horizontal.Anish2-3/+18
Instead of gridmap editor calling grid as floor irrespective of the orientation, it now calls the grid plane if it's vertical and floor if horizontal. Resolves: #14611
2018-02-16Direct to InputEventJoypadButton for using buttonsBenjamin Stammen1-1/+1
2018-02-16Enforce insert_final_newline in the editorconfig.Pieter-Jan Briers1-0/+1
2018-02-16X11: Link libgcc statically with use_static_cpp optionRémi Verschelde1-3/+3
We were already linking libstdc++ statically for official binaries, protecting us against most portability issues. But apparently since we started using GCC 7 for official builds, we also need to link libgcc statically for at least 32-bit builds to be portable. Fixes #16409.
2018-02-16Update CA certificates to latest Mozilla bundleRémi Verschelde2-3096/+1948
Copied from an up-to-date Fedora 27 install (ca-certificates-2018.2.22-1.0.fc27).
2018-02-16Fix script previewsChaosus1-4/+4
2018-02-16Makes project manager never initialize mono debug.Pieter-Jan Briers3-17/+9
The heuristic whether we're in the project manager inside GDMono didn't work if the project manager was launched by not having any path to run. This is fixed now by making a Main::is_project_manager().
2018-02-16Makes NodePath and RID follow PascalCase in C#.Pieter-Jan Briers1-1/+1
Fixes #15685
2018-02-16Give C# NodePath a ToString().Pieter-Jan Briers1-1/+2
It already had an implicit cast operator to string, but this doesn't get used in say string formatting. So now something like $"path: {GetPath()}" works.
2018-02-16fix crash autotile edit modedamarindra1-0/+5
2018-02-16Fix HTML5 HTTPClient response header retrievalLeon Krause1-2/+4
2018-02-16Fix HTML5 HTTPClient failure detectionLeon Krause1-11/+7
2018-02-16Documentation tool does not add escapes to code and codeblocksAnish1-4/+26
Instead of adding the escapes to all * and _ the tool now excludes the characters inside [code] and [codeblock]. Resolves: #15156
2018-02-15Create and return LightmapCapture.K. S. Ernest (iFire) Lee1-13/+60
2018-02-15Add dummy audio driver, fix dummy rasterizerK. S. Ernest (iFire) Lee4-7/+84
2018-02-15Fixes to OS_Server and DummyRasterizer to match new signaturesFabio Alessandrelli4-2/+14
2018-02-15server platform now compiles and run on linux.Fabio Alessandrelli4-47/+147
Seems to also be able to do exports of some demos I tried.
2018-02-15Add dummy Texture handlingFabio Alessandrelli1-10/+74
2018-02-15Disable GLES builders and source from server compilationFabio Alessandrelli2-3/+6
2018-02-15Add dummy resterizer driverFabio Alessandrelli2-0/+544
2018-02-15Windows: Fix case of imm32 for case-sensitive MinGW buildRémi Verschelde1-2/+2
Fixes #16713.
2018-02-14Fix for a possible compile error under OS XMarcelo Fernandez3-111/+119
2018-02-14Add locale renames for Hebrew and Indonesian on WindowsRémi Verschelde1-1/+18
Windows does not fully respect ISO 639-1 like other systems, so we have to override its locale values for those languages. Also added comments to document the locale provenance.
2018-02-14Fixed small typos in the SConstruct file.Michael Alexsander Silva Dias1-2/+2
2018-02-14Fix #16543 (add button to copy error from debugger)Artem Varaksa2-0/+23
2018-02-14Added return true o collide when no rusult is NULLAndrea Catania1-0/+2
2018-02-14Remove OpenSSL license, add Mbed TLSRémi Verschelde1-127/+5
2018-02-14Add signals and a check function for Android service connectivity.Xavier Sellier2-1/+28
- Add a iap_connect and iap_disconnect events for android platform. - Add isConnected() function returning true if its connected to android service, false otherwise (cherry picked from commit 546b48813f2b75481d846957275f6d4eecd8de3c)
2018-02-14Added "allow_reselect" property to ItemList and enabled it for the ↵Michael Alexsander Silva Dias4-4/+30
method/help lists.
2018-02-14Allow building with system wide mbedtls on X11Fabio Alessandrelli4-82/+88
Using builtin_mbedtls=yes is still the default as many distributions do not ship with mbedtls included.
2018-02-14Disabled mbedtls module in javascript platformFabio Alessandrelli1-2/+2
2018-02-14Deleting OpenSSL module and libraryFabio Alessandrelli934-351070/+3