update changelog

This commit is contained in:
Olivier Gagnon 2021-05-15 11:09:32 -04:00
parent 60a229030b
commit 299e964e2b
2 changed files with 4 additions and 1 deletions

@ -231,6 +231,10 @@ export const CONSTANTS: IMap<any> = {
v0.51.9 - 2021-05-07 untitled yet
-------
Alias
* several commands can be included in 1 alias. Recursive alias now work to
a depth of 10.
Offline
* Offline money gain has been reworked (it is more generous)

@ -630,7 +630,6 @@ let Terminal = {
.map(substituteAliases)
.map(c => c.match(/(?:'[^']*'|"[^"]*"|[^;"])*/g))
.flat();
console.log(commands);
for (let i = 0; i < commands.length; i++) {
if(commands[i].match(/^\s*$/)) { continue; } // Don't run commands that only have whitespace
Terminal.executeCommand(commands[i].trim());