Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-21 | tegra 3 fix | mikica1986vee | |
2015-11-19 | compile fixes | Juan Linietsky | |
2015-11-19 | Revert "libao audio driver" | Juan Linietsky | |
2015-11-19 | Merge pull request #2756 from trond/bugfix_udp | Juan Linietsky | |
UDP fixes | |||
2015-11-19 | Merge pull request #903 from a12n/libao | Juan Linietsky | |
libao audio driver | |||
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 #2814 from masoudbh3/android-fa-locale | Juan Linietsky | |
Android add FA(persian) locale strings | |||
2015-11-19 | Android add FA(persian) locale strings | masoud bh | |
2015-11-18 | Merge pull request #2691 from volzhs/android_payment | Juan Linietsky | |
improve android payments | |||
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-18 | Merge pull request #2784 from masoudbh3/resigning-android-template | Juan Linietsky | |
Skip META-INF from Android Template | |||
2015-11-16 | Use macros to determine which iOS SDK we have in order to be backwards ↵ | Aren Villanueva | |
compatible with older SDKs when fixing template compilation issues. | |||
2015-11-16 | iOS compile fixes. | Aren Villanueva | |
2015-11-14 | Skip META-INF from Android Template | masoud bh | |
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 | Merge branch 'master' of github.com:okamstudio/godot | Anton Yabchinskiy | |
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-28 | improve android payments | volzhs | |
GodotPaymentV3 currently consumes purchased item right after purchasing. But, some in-app item should not consume like "remove ads permanently" So, I added "setAutoConsume(boolean)", "requestPurchased()", "consume(sku_string)". AutoConsume is true by default as before. usage: func _ready(): var payment = Globals.get_singleton("GodotPayments") payment.setPurchaseCallbackId(get_instance_ID()) payment.setAutoConsume(false) # default : true payment.requestPurchased() # callback : has_purchased payment.purchase("item_name") # callback : purchase_success, purchase_fail, purchase_cancel, purchase_owned payment.consume("item_name") # callback : consume_success func purchase_success(receipt, signature, sku): print("purchase_success : ", sku) func purchase_fail(): print("purchase_fail") func purchase_cancel(): print("purchase_cancel") func purchase_owned(sku): print("purchase_owned : ", sku) func consume_success(receipt, signature, sku): print("consume_success : ", sku) func has_purchased(receipt, signature, sku): if sku == "": print("has_purchased : nothing") else: print("has_purchased : ", sku) | |||
2015-10-26 | Made the Atom net_wm_icon local | Phobos Tro | |
2015-10-25 | Fixing memory leaks | Phobos Tro | |
2015-10-22 | Added setting for CADisplayLink on iOS, so you no longer need to recompile ↵ | steve | |
to change it | |||
2015-10-18 | rasterizer comparison fix | firefly2442 | |
2015-10-17 | fixes broken 3D in editor | Juan Linietsky | |
2015-10-17 | Merge pull request #2203 from volzhs/fix_android_payments | Juan Linietsky | |
Fix android payments | |||
2015-10-17 | Merge pull request #2369 from Max-Might/master | Juan Linietsky | |
Haiku: platform support | |||
2015-10-17 | Merge pull request #2479 from firefly2442/cppcheck-unusedvars | Juan Linietsky | |
ran cppcheck, found unused variables | |||
2015-10-17 | Merge pull request #2474 from masoudbh3/android-armeabi-v7a | Juan Linietsky | |
Fix android build script | |||
2015-10-17 | Merge pull request #2485 from masoudbh3/fix-x11-editor-boot-splash | Juan Linietsky | |
Fix X11 Editor Boot Splash (Maximized Boot Splash) | |||
2015-10-17 | Merge pull request #2602 from sanikoyes/Pr-REUSE_ADDR_WIN32 | Juan Linietsky | |
Pr-REUSE_ADDR_WIN32 | |||
2015-10-17 | Haiku: fix build | Kostadin Damyanov | |
2015-10-16 | Added specific get_locale to OSX platform | Didier Vandekerckhove | |
The default unix get_locale didn’t work. OS X requires a specific one. |