Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-03 | Rename WINRT_ENABLED to UWP_ENABLED | George Marques | |
2016-11-01 | Merge pull request #7006 from vnen/fix-ipv6-uwp | George Marques | |
Fix IPv6 linking for UWP | |||
2016-10-31 | Fix IPv6 linking for UWP | George Marques | |
2016-11-01 | style: Fix PEP8 whitespace issues in Python files | Rémi Verschelde | |
Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace. | |||
2016-10-30 | Define IPV6_V6ONLY flag if not defined on windows (old mingw versions) | Fabio Alessandrelli | |
2016-10-30 | TCP/UDP Listen sockets can now be set to IPv6 only | Fabio Alessandrelli | |
2016-10-30 | Fix windows debugger connection problems. | Fabio Alessandrelli | |
Unify network socket creation between platform. Ensure IPV6_V6ONLY flag is not set on sockets (allow IPv4 connection in IPv6 socket, dual-stack). | |||
2016-10-30 | TCPServer listen now default to IP type ANY (v6 socket with v4 support) | Fabio Alessandrelli | |
2016-10-26 | Fix PacketPeerUDP get_packet_port() | Fabio Alessandrelli | |
Properly convert port field from network to system ordering on incoming packets. | |||
2016-10-26 | Merge pull request #6925 from godotengine/ipv6 | Rémi Verschelde | |
Adding IPv6 support | |||
2016-10-26 | Pass correct address size (ipv4,ipv6) to socket connect, bind, sendto | Fabio Alessandrelli | |
The address size passed to network system calls now reflects the the actual IP type (v4 or v6). Fix Windows and OSX ipv6 sockets | |||
2016-10-20 | added windows support for ipv6, cleaned up unix code | Ariel Manzur | |
2016-10-19 | fixed some byte order and parsing problems | Ariel Manzur | |
2016-10-18 | adding ipv6 | Ariel Manzur | |
2016-10-17 | SCsub: Add python shebang as a hint for syntax highlighting | Rémi Verschelde | |
Also switch existing shebangs to "better" /usr/bin/env python. | |||
2016-10-15 | drivers: Refactor SCsub and drop redundant env_drivers clone | Rémi Verschelde | |
The reordering of the SConscript includes allows to ensure that stuff like the builtin zlib headers will be available for libpng. Also moved glew back into global env, otherwise windows seems not to find it... Kind of shooting in the dark with this multi-env setup. | |||
2016-09-10 | Merge pull request #5920 from 29jm/fix-warnings | Juan Linietsky | |
Fix some more warnings | |||
2016-09-03 | Fix drivers coding for WinRT | George Marques | |
- Add a proper function to retrieve IP addresses. - Solve issues with Windows FileAccess and DirAccess to use the same code for WinRT. - Add patches to the GLES2 rasterizer to workaround ANGLE issues. | |||
2016-08-13 | Remove some unused variables | Johan Manuel | |
2016-07-17 | Remove some noisy debug prints | Rémi Verschelde | |
Part of #5031 | |||
2016-07-02 | Removed no longer needed check | Juan Linietsky | |
2016-06-30 | Fix some bugs in diraccess, closes #5288 | Juan Linietsky | |
2016-06-25 | Added function to notify ScriptLanguage when a thread is created/freed, ↵ | Juan Linietsky | |
allows scripts to allocate a stack there via TLS | |||
2016-06-18 | Removed lots of prints | Daniel J. Ramirez | |
2016-06-18 | -made get_space_left() return values more homogenous, also for script, ↵ | Juan Linietsky | |
converted to mb, closes #4617 | |||
2016-06-18 | Fixed make_dir and make_dir_recursive erros, closes #1680 closes #1872 | Juan Linietsky | |
2016-06-18 | Add missing license headers in our source files (#5255) | Rémi Verschelde | |
Also removes a couple wrong Godot headers from third-party source files. | |||
2016-06-13 | -Add visible IO errors when closing a file fails due to it being locked ↵ | Juan Linietsky | |
(most likely on windows), closes #4760 | |||
2016-06-03 | change invalid characters when get user data dir on Windows & Unix | volzhs | |
Can't create user data folder when project name has ``\ / : * ? " < > |`` characters on OS_Windows & OS_Unix. So, change it to ``-`` to be able to make folder. fixes #4928 and it's altanative to #4986. | |||
2016-04-20 | Implements get_executable_path for OS X should proc_pidpath in os_osx.mm ↵ | Aren Villanueva | |
doesn't succeed. Silences the warning for javascript as the function currently appears superfluous. | |||
2016-03-16 | Add function to convert Date time from a dictionary to Epoch | Kyle Luce | |
- Also changed get_time_from_unix_time to get_date_time_from_unix_time to be consistent. Ticket: https://github.com/godotengine/godot/issues/4038 | |||
2016-03-13 | Fixes the month consistency issue in enums and get_date etc | Kyle Luce | |
- Also updated the docs to reflect this. - Added some vim temp files to gitignore - Changed NaCL to be consistent with the other OS_Unix::get_date implementation (added 1 to month to map to 1-12) Ticket: https://github.com/godotengine/godot/issues/4025 | |||
2016-03-01 | Added relative paths for DirAccess::remove() | Zher Huei Lee | |
Follows similar behaviour to DirAccess::rename() | |||
2016-02-19 | Fix allocation bug if compiled with modern clang or gcc | est31 | |
* Add overflow checked intrinsic abstractions that check on overflow. * Use them for memory allocation code. * Use size_t type for memory allocation code to support full platform dependent width. Fixes #3756. | |||
2016-01-31 | thread renaming | Ariel Manzur | |
2016-01-31 | total pointers | Ariel Manzur | |
2016-01-13 | improve reporting of error in wrong inheritance for autoload script | Juan Linietsky | |
2016-01-11 | Merge pull request #3230 from touilleMan/issue-55 | Rémi Verschelde | |
Remove unnecessary null pointer checks | |||
2016-01-10 | -Removed OS.get_system_time_msec(), this is undoable on Windows and also ↵ | Juan Linietsky | |
unusable from GDscript due to precision. -Added, instead an OS.get_system_time_secs(), which is 32 bits friendly, fixes #3143 | |||
2016-01-10 | -Added a new mode, WRITE_READ to File, to recover compatibility with old ↵ | Juan Linietsky | |
projects but also achieve desired functionality. Closes #3272 | |||
2016-01-09 | Fix pthread renaming in Open/FreeBSD | eska | |
2016-01-04 | Remove unnecessary null pointer checks | Emmanuel Leblond | |
2016-01-03 | having active items is pointless in input map | Juan Linietsky | |
2016-01-02 | Change rb+ to wb+ on file access READ_WRITE to allow more use cases, closes ↵ | Juan Linietsky | |
#2278 | |||
2016-01-01 | Update copyright to 2016 in headers | George Marques | |
2015-12-22 | threads | Ariel Manzur | |
2015-12-18 | thread rename for ios and osx (if called from the thread to be renamed) | Ariel Manzur | |
2015-12-17 | thread set name | Ariel Manzur | |
2015-12-13 | added binary API to StreamPeer, fixes #2863 | Juan Linietsky | |
2015-12-09 | Fix windows build | est31 | |