aboutsummaryrefslogtreecommitdiff
path: root/core/method_bind.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-01-04Properly handle tcp connection failureFabio Alessandrelli2-2/+12
(cherry picked from commit 4f07b595a17a633c65c5df43ecdaa37667a475e9)
2017-01-04Fix _set_ip_addr_port not setting the address.Fabio Alessandrelli1-1/+1
(cherry picked from commit cdc1ca0f1301bb907121292db83f98706722ff1e)
2017-01-04Fix getaddrinfo failing on androidFabio Alessandrelli1-0/+5
(cherry picked from commit 311f1f165be12ea290799e42f9951011d997ab40)
2016-12-11[IPv6] Fix windows build script (link to ws2_32)Fabio Alessandrelli1-2/+2
2016-12-11Define IPV6_V6ONLY flag if not defined on windows (old mingw versions)Fabio Alessandrelli1-0/+7
(cherry picked from commit bdc7ca84cac727f3f94663f23e1229450230bd2e)
2016-12-11Update docs to IPv6Fabio Alessandrelli1-8/+26
(cherry picked from commit 7f42da03300d515c3fb991ba311783619ac90ea2)
2016-12-11Set proper ip_type default for listen() and resolve_hostname()Fabio Alessandrelli3-4/+4
(cherry picked from commit 7eef15b73460062e4558857969919313e461f1e4)
2016-12-11TCP/UDP Listen sockets can now be set to IPv6 onlyFabio Alessandrelli6-8/+50
(cherry picked from commit eb27e993f0f2fb3de48b7b8aa01c74cc1635a178)
2016-12-11Add optional IP type param in TCP/UDP connect/set_send_addressFabio Alessandrelli4-5/+24
(cherry picked from commit 2f1c8592721eca1e6a71f419208f99977ceab2d9)
2016-12-11Fix windows debugger connection problems.Fabio Alessandrelli7-19/+30
Unify network socket creation between platform. Ensure IPV6_V6ONLY flag is not set on sockets (allow IPv4 connection in IPv6 socket, dual-stack). (cherry picked from commit 812908e236e83db368dfef49b8badb9a6182e1de)
2016-12-11TCPServer listen now default to IP type ANY (v6 socket with v4 support)Fabio Alessandrelli4-5/+5
(cherry picked from commit ee69bd81cfa67eb5c642604f0f43d711ab370faf)
2016-12-11Fix PacketPeerUDP get_packet_port()Fabio Alessandrelli2-4/+4
Properly convert port field from network to system ordering on incoming packets. (cherry picked from commit 25e29972a9df712cb51fc66e553b34f3dc441e51)
2016-12-11Pass correct address size (ipv4,ipv6) to socket connect, bind, sendtoFabio Alessandrelli7-22/+26
The address size passed to network system calls now reflects the the actual IP type (v4 or v6). Fix Windows and OSX ipv6 sockets (cherry picked from commit 80e911647c5df21c5b6a06876f1d48e21cd1f5fc)
2016-12-11added implementation of is_valid_ip_address()Ariel Manzur3-25/+117
(cherry picked from commit a3131a6b5bf5357e5c70ba6fea4a0963f4b341b4)
2016-12-11added windows support for ipv6, cleaned up unix codeAriel Manzur11-122/+175
(cherry picked from commit 672225b710815865449e7930255468d1c085b137)
2016-12-11address type for http clientAriel Manzur2-4/+5
(cherry picked from commit 1c2ac490cf157402cac7f9dbc2a293d0c922def8)
2016-12-11fixed some byte order and parsing problemsAriel Manzur3-21/+52
(cherry picked from commit 1d45f35a4a190360fea74e51b66457efe44d3177)
2016-12-11adding ipv6Ariel Manzur16-122/+450
(cherry picked from commit 887a897c02144f2d01896d3112bdae5ce7d6df5c)
2016-12-04Emit asm.js code into a dedicated file for asm.js exporteska3-14/+30
This helps prevent browser lockups during start-up at the cost of having to distribute an extra file.
2016-12-04Add fullscreen features in web exporteska2-38/+101
- Implement fullscreen control, get_window_size, get_screen_size - Fix fullscreen resolution
2016-12-03Fix some mouse bugs in WebAssembly/asm.jseska3-5/+17
- Emit mouse wheel release events - Set button masks, fixes #5092
2016-12-03OS 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-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. (cherry picked from commit 4965ddfaa1536fb179d4b156d1ecb8a72a3c565f)
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. (cherry picked from commit c32766a482595256bc48155587a47f27848ac8ea)
2016-11-19libpng: Same fix as previous commit for server platformRémi Verschelde1-1/+1
(cherry picked from commit ec4be71fade1ee5c6171e323d09197f3bf528499)
2016-11-19Fix Script Editor drawing over Dialogs.Andreas Haas2-2/+14
Resets the z-index when focus is lost and the completion is shown. Fixes #6769 (cherry picked from commit f73b501d6f54a458a70d1e123d17d52e79072d04)
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. (cherry picked from commit 5fa1bb331ad9be31dbfc752c7d19ccf7caeb8fa4)
2016-11-15Release 2.1.1-stable2.1.1-stableRémi Verschelde2-2/+3
2016-11-15classref: Sync with current sourceRémi Verschelde1-1/+9
2016-11-15i18n: Sync translations with Weblate and update templateRémi Verschelde15-897/+2261
2016-11-15i18n: Remove translations below 20% completionRémi Verschelde16-102160/+0
They are of course kept in master to be synced in Weblate.
2016-11-15Added snapping to 3D path handles to bring it in line with its 2D counterpartBen Hickling1-0/+6
(cherry picked from commit 4d1acab79b0e284252d1aa3fa0447f8fbc4c5a7d)
2016-11-15Check entered and trimmed path when create, import, install projectvolzhs1-30/+22
(cherry picked from commit 2d9e89ea2a34df173611bd3c7192296f9cedd8da)
2016-11-15Uncomment debug properties of HTTP Requestkhairul1691-12/+12
(cherry picked from commit 6a7aebdf6c148a80d5f7dd773895f08c62eb34a8)
2016-11-15Fix crash when select target path on import 3d scene windowvolzhs2-2/+2
(cherry picked from commit b0cf201ea3beb473fd0498c5c7ec3b98feda88b9)
2016-11-15Update/fix Android buildPedro J. Estébanez1-7/+7
Fix wrong path for 32-bit Windows, which fixes #7084 Exclude 32-bit Windows from multi-threaded linking because it's not supported by the NDK Remove 32-bit Linux as there is no NDK variant for it (cherry picked from commit 5a26459c065558546a708c18ad84830674d5972d)
2016-11-15Clarify a NULL comparisoneska1-1/+1
'TreeItem::get_children()' does not return the child count, but rather a pointer to the children. This comparison caused an error during WebAssembly builds using the LLVM backend path. (cherry picked from commit 31f929caa2bc8422c0a6bb50f81500e1f4db101b)
2016-11-15Prevent to select children if selection lock or instanced scenevolzhs1-7/+14
Fix #7086 (cherry picked from commit c3f4d676c0e3e02c33bd3aad4fb5b42c20201e7c)
2016-11-15Fix resetting to default value in EditorSettingsvolzhs1-1/+0
(cherry picked from commit 70cce6152d32b8a4e5fdfee52e2bb873c92551e5)
2016-11-15Make the step property useful for sliders as described in #5773Elia Argentieri1-4/+13
(cherry picked from commit 0955371447181a0fc20eb68dc6bc5aae67b73d0d)
2016-11-15Make Android export quicker (especially on Windows)Pedro J. Estébanez1-19/+19
(cherry picked from commit 56721e5d9daf3bda0ad0711c165105c7ceedd29f)
2016-11-15Export immediately if only one device presentPawel Kowal1-6/+17
(cherry picked from commit 938f9388ddc5b3def60e4aefbeb1beed09599493)
2016-11-15Fix Directory.dir_exist/get_current_dir for 'res://' on Androidvolzhs2-2/+7
Fix #7014 (cherry picked from commit 8d454ed9a7105bf1a4c19c238a0e904f220c1bb5)
2016-11-15vsnc --> vsyncISylvox9-11/+11
(cherry picked from commit b5c383fd61d554fa02c3e231dd1f92145d90e04e)
2016-11-15Set project name as directory name instead of '.'volzhs1-2/+2
(cherry picked from commit 571f33f8630672b0538bba592838c023a8300956)
2016-11-15Select newly created or imported project automaticallyvolzhs2-2/+45
(cherry picked from commit b8f80e94509b0e6fe9a2fa8a8b4f78ba668f5492)
2016-11-15Fix Label valign positionvolzhs1-3/+3
Fix #7055 (cherry picked from commit c0e87f2a248af48b22f414ecc00df2631a715eac)
2016-11-15Some missing License notice has been addedSPTelur2-0/+59
(cherry picked from commit df737ebb4675d4fb00fe424ab40ee5c9a65ac888)
2016-11-15Caret blink will no longer cause redraw without focus, issue 6167Paulb232-2/+2
(cherry picked from commit 7b036a94bf9af558dab35a56a9c0b6dd8bae105b)
2016-11-15Fixed minor typoDTV96Calibre1-1/+1
(cherry picked from commit 37098419c5792e9e6ba504173bc95a87540cd7d5)