- Added "requirements", this calls other tables before running the current table, example:
[main] a_requirement another_requirement
This will call a_requirement, another_requirement and main, respectively
[a_requirement]
...
[another_requirement]
...
- You can now select the shell to use to run commands like this:
shell = "powershell.exe -c"
[main]
echo 'Hello' Executes "powershell.exe -c echo 'Hello'"
- Changed variable usage from `{_varname_}` to `{{varname}}`