Age | Commit message (Collapse) | Author |
|
otherwise text background will be black, which looks strange if the terminal color is not black.
|
|
|
|
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
|
|
|
|
|
|
Add icon to exe file in windows export
|
|
Visual studio 2015 compilation
|
|
Cosmetic fixes to SCons buildsystem
|
|
Fixed Audio System Crash
|
|
Android add FA(persian) locale strings
|
|
|
|
improve android payments
|
|
Display error type (error, warning, script error) in OS::print_error + cleanup error ANSI coloring
|
|
Skip META-INF from Android Template
|
|
compatible with older SDKs when fixing template compilation issues.
|
|
|
|
|
|
|
|
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.
|
|
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.
|
|
|
|
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'.
|
|
server to prevent crash when exiting.
|
|
- Removed trailing spaces
- Made sure all indentation is done using tabs (fixes #39)
- Potentially fixed an identation issue for openssl check
|
|
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
|
|
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)
|
|
|
|
|
|
to change it
|
|
|
|
|
|
Fix android payments
|
|
Haiku: platform support
|
|
ran cppcheck, found unused variables
|
|
Fix android build script
|
|
Fix X11 Editor Boot Splash (Maximized Boot Splash)
|
|
Pr-REUSE_ADDR_WIN32
|
|
|
|
The default unix get_locale didn’t work. OS X requires a specific one.
|
|
|
|
Conflicts:
platform/windows/detect.py
|
|
|
|
|
|
|
|
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
|
|
Initial iCloud implementation
|
|
|
|
|
|
|
|
This argument is indeed expected to be a volume on a linear scale (not dB),
typically from 0.0 to 1.0, though it can go higher than 1.0.
|