SambaPOS 5.1.52 Release

Key & Value support added for automation command values

Related Topic
How to extract part of a [:CommandValue]


Executing Configuration Tasks

Related topic
http://forum.sambapos.com/t/configruation-task-suggestion/7156

Execute Configuration Task action added.
act.Execute(<task name>,<keys>); js function added.


Department and Ticket Type mapping added to Print Jobs.
http://forum.sambapos.com/t/department-printing-control/7221


Custom Keyboard Field size increased.
Formatting Causing Samba to Crash on Custom Keyboard Settings


Ticket & Payment screen titles will accept formatting via tags.
http://forum.sambapos.com/t/ticket-header-display-format/7206


JS Process Starter implemented. Sample uses.

file.Starter(<filePath>).Execute();
file.Starter(<filePath>).Hidden.Execute();
file.Starter(<filePath>).With(<arguments>).Execute();
file.Starter(<filePath>).WorkOn(<workingDir>).Execute();

Instead of using .Execute() you can use .ShellExecute();

You can use all features together.

file.Starter(<filePath>).With(<arguments>).WorkOn(<workingDir>).Hidden.ShellExecute();

It returns exit code for started process.