Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-19 | Merge pull request #2756 from trond/bugfix_udp | Juan Linietsky | |
UDP fixes | |||
2015-11-19 | Fixed mistake where available buffer size would not be updated for each ↵ | Trond Abusdal | |
recvfrom-call in PacketPeerUDPWinsockPposix. | |||
2015-11-19 | Added missing \n in script error output. | ZuBsPaCe | |
2015-11-19 | Nice error output padding. Code location behind " At: " is now aligned with ↵ | ZuBsPaCe | |
the error message above. Also removed the dot after the file location. | |||
2015-11-19 | Set console background color on windows in SetConsoleTextAttribute, ↵ | ZuBsPaCe | |
otherwise text background will be black, which looks strange if the terminal color is not black. | |||
2015-11-19 | Set output color of ERR_SCRIPT messages to purple. Same as on linux. | ZuBsPaCe | |
2015-11-19 | Removed ANSI error codes from windows terminal error output. Windows does ↵ | ZuBsPaCe | |
not support them. See: http://stackoverflow.com/questions/16755142/how-to-make-win32-console-recognize-ansi-vt100-escape-sequences See: http://stackoverflow.com/questions/22777142/is-there-a-way-to-make-windows-output-ansi-escape-sequences?lq=1 | |||
2015-11-19 | Inconsistent code formatting in print_error (Newlines and spaces) | ZuBsPaCe | |
2015-11-19 | -remove Vector2.atan2() replaced by Vector2.angle(), fixes #2260 | Juan Linietsky | |
2015-11-19 | Merge pull request #2518 from masoudbh3/godot-icons | Juan Linietsky | |
Add icon to exe file in windows export | |||
2015-11-18 | Merge pull request #2699 from ZuBsPaCe/visual-studio-2015-compilation | Juan Linietsky | |
Visual studio 2015 compilation | |||
2015-11-18 | Merge pull request #2707 from akien-mga/master | Juan Linietsky | |
Cosmetic fixes to SCons buildsystem | |||
2015-11-18 | Merge pull request #2718 from SaracenOne/audio_system_crash_fix | Juan Linietsky | |
Fixed Audio System Crash | |||
2015-11-18 | Merge pull request #2737 from akien-mga/type-specific-error-output | Juan Linietsky | |
Display error type (error, warning, script error) in OS::print_error + cleanup error ANSI coloring | |||
2015-11-14 | windows crash and bind placeholder method | Ariel Manzur | |
2015-11-10 | Fix error messages forcing a white font for subsequent messages | Rémi Verschelde | |
This is achieved using the "no specific formatting" \E[0m tag. Fixes #2566. Also remove the hardcoded black background colour and use default bolded terminal font for error message. Error logs should now look good both on terminals with a dark and light background colour. | |||
2015-11-10 | Display error type (error, warning, script error) in OS::print_error | Rémi Verschelde | |
Previously all types of errors would be shown as ERROR, thus making for example warnings (WARN_PRINT) somewhat aggressive. ERROR is displayed in red, WARNING in yellow and SCRIPT ERROR in magenta (though the latter does not seem used so far). Fixes #1127. | |||
2015-11-09 | * Winsock UDP messages sent to an unavailable target causing WSAECONNRESET ↵ | Trond Abusdal | |
will no longer close the socket. * Ensured that unsigned<->signed conversion would not cause wrong buffer size values sent to recvfrom. | |||
2015-11-09 | Fixed PacketPeerUDP getting wrongly closed due to recvfrom using ↵ | Trond Abusdal | |
rb.data_left instead of rb.space_left. | |||
2015-11-09 | change pe_bliss parent directory from /drivers to /tools | masoud bh | |
2015-11-09 | Add icon to exe file in windows export | masoud bh | |
add version_info and icon sections in "export to windows platform". add version_info and icon to godot exe file (editor & template exe). fix an problem in image class. change all default icons to android export icon (a little more rounded). create an python script for convert file to cpp byte array for use in 'splash.h'. | |||
2015-11-02 | Moved deleting sample player in OS finalize methods to before deleting audio ↵ | Saracen | |
server to prevent crash when exiting. | |||
2015-11-01 | Cosmetic fixes to SCons buildsystem | Rémi Verschelde | |
- Removed trailing spaces - Made sure all indentation is done using tabs (fixes #39) - Potentially fixed an identation issue for openssl check | |||
2015-10-30 | Fixes Visual Studio 2015 parallel builds (-j switch) | ZuBsPaCe | |
Reference: http://stackoverflow.com/questions/284778/what-are-the-implications-of-using-zi-vs-z7-for-visual-studio-c-projects fatal error C1041: cannot open program database 'C:\godot\vc140.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS | |||
2015-10-13 | REUSE_ADDR under windows platform | sanikoyes | |
2015-10-01 | -Added ability to use cubic interpolation on image resize (little more ↵ | Juan Linietsky | |
quality on non-po2 resizing) -Added ability for exporter to shrink images to non-integer values. Helps if you want to convert your game artwork from 1080->720 or similar | |||
2015-09-27 | Hide stderr when trying to detect mingw binaries on posix | Rémi Verschelde | |
2015-09-24 | Added ability to set custom mouse cursors. Not hardware accelerated yet. | Juan Linietsky | |
2015-08-06 | Add OS.get_system_time_msec | Maximillian | |
2015-06-08 | draw button focus before text and icon | Juan Linietsky | |
closes #2047 | |||
2015-06-07 | Complete fix for windows compilability | est31 | |
Thanks @volzhs for testing :) | |||
2015-06-07 | Fix windows compilability | est31 | |
2015-06-06 | Add OS.get_time_zone_info function | est31 | |
The returned dictionary maps "name" to the name of the current time zone, and "bias" to a bias from UTC in minutes. | |||
2015-06-06 | Add utc param to get_time and get_date methods | est31 | |
If utc == false, we return the local time, like before. Otherwise, we return UTC time. utc defaults to false to not break behaviour. | |||
2015-06-06 | Use local time for both time and date on win | est31 | |
On unix and nacl, both date and time are expressed in local time. | |||
2015-05-26 | ability to run 2D physics in a thread | Juan Linietsky | |
also, 2D physics is now thread safe too. see physics_2d/thread_model | |||
2015-05-17 | fix crash on help, closes #1873 | Juan Linietsky | |
2015-05-09 | Change windows build to use CFlag /Od so that you get the full debug ↵ | Antony | |
experience. Without this flag set, Visual Studio lets you use breakpoints, but the watch and locals is pretty much useless. | |||
2015-05-04 | fixes issue #1693 winmain and main unicode | yg2f | |
makes WinMain() and main() accepts unicode characters into arguments | |||
2015-05-04 | Merge remote-tracking branch 'origin/master' | Juan Linietsky | |
Conflicts: drivers/windows/dir_access_windows.cpp | |||
2015-05-04 | small unicode fixes | Juan Linietsky | |
2015-05-03 | Merge pull request #1800 from antonyjones67/VSGenerator | Juan Linietsky | |
Added Visual Studio project generation. Use "vsproj=yes" in command line... | |||
2015-05-03 | Added Visual Studio project generation. Use "vsproj=yes" in command line. ↵ | Antony Jones | |
This does not set up NMAKE properly. | |||
2015-04-18 | Updated copyright year in all headers | Juan Linietsky | |
2015-03-25 | add missing WM_RBUTTONDBLCLK message | sanikoyes | |
2015-03-23 | window managements functions work | Juan Linietsky | |
but still side-functions, all API needs to be migrated to them | |||
2015-03-22 | fixes to new window management API | Juan Linietsky | |
-needs testing on Linux -needs testing on Windows -NEED SOMEONE TO IMPLEMENT IT ON OSX!! PLEASE HELP! | |||
2015-03-22 | Merge pull request #1432 from ↵ | Juan Linietsky | |
UsernameIsAReservedWord/fixes_platform_windows_detect_py Fixes platform/windows/detect.py | |||
2015-03-16 | New option to send canvas to render buffer | Juan Linietsky | |
allows to use 3D environment effects for post processing such as Glow, Bloom, HDR, etc. in 2D. | |||
2015-03-02 | Merge pull request #1437 from Hinsbart/fix_win_joy | Juan Linietsky | |
fix get joystick name from registry on some systems |