New field type - Color.
Added mobygames.com as a data source for autofill. This source contains information about computer games.
Scripts: Added global function email(), which send an email message via SMTP in the background.
Scripts: Added method post() in object Http to send POST (HTTP) requests.
Scripts: Added methods for access to HTTP-headers. The Http object has the method - headers() - for set up headers for a request. The HttpResult object has the method - header(name) - to read the result headers by name.
Added ability to choose the location of the image cache folder.
//Send email example
//You must use the Object to specify SMTP configuration: SMTP server host, port, username, password, and email address.
var cfg = {"host" : "smtp.example.com" , "port":25,
"user":"username" , "pass":"password" ,
"from":"user...@example.com"}
email().send(cfg , "t...@email.com" , "Subject" , "Text");
//POST (HTTP):
var result = http().post("http://httpbin.org/post" , "the body of the request message");
//HTTP Headers
//set up header
var http = http();
http.headers( { "User-Agent" : "My Super App" });
var result = http.get("http://httpbin.org/get");
//get response header
var headerValue = result.header("etag");
ą, ć, ę, ł, ń, ó, ś, ź, ż