diff --git a/.gitignore b/.gitignore index 0eee881..f1c99de 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ bun.lock # temp files slop.md +.env*.local diff --git a/src/gui/Alert.ts b/src/gui/Alert.ts index 14f2d71..4c548f2 100644 --- a/src/gui/Alert.ts +++ b/src/gui/Alert.ts @@ -18,6 +18,6 @@ export class Alert { } Show(time: number = -1): void { - alert(`${this.title} [${this.severity}]: ${this.description}`) + alert(`${this.title} [${this.severity}]: ${this.description} (time: ${time})`) } } diff --git a/src/shell/Wush.ts b/src/shell/Wush.ts index 9c427f9..753d26c 100644 --- a/src/shell/Wush.ts +++ b/src/shell/Wush.ts @@ -41,8 +41,8 @@ export class Wush extends Shell { */ private execExitCode: number = 0 - // workers - private workersAllowed: boolean = false + // todo: workers + // private workersAllowed: boolean = false // streams readonly stdin: SimpleStream