diff --git a/src/app.ts b/src/app.ts index 5c1abea..c8242e4 100644 --- a/src/app.ts +++ b/src/app.ts @@ -4,7 +4,7 @@ import { Wush } from './shell/wush/Wush' import { Terminal } from './terminal/Terminal' import { EventBroadcaster } from './utils/EventBroadcaster' -export const WEBSHELL_VERSION = "0.2.0" +export const WEBSHELL_VERSION = "0.2.1" export const VERSION_COMMENT: string | null = "hi" // initialize object store for webfs diff --git a/src/shell/wush/Wush.ts b/src/shell/wush/Wush.ts index 8fab5c8..5532ac5 100644 --- a/src/shell/wush/Wush.ts +++ b/src/shell/wush/Wush.ts @@ -29,7 +29,7 @@ import { Environment } from './Environment' import { InputManager } from './InputManager' export class Wush extends Shell { - public readonly Version = "0.3.1" + public readonly Version = "0.3.2" public readonly Name = "wush" // buffer diff --git a/src/terminal/Terminal.ts b/src/terminal/Terminal.ts index 9f23802..0661860 100644 --- a/src/terminal/Terminal.ts +++ b/src/terminal/Terminal.ts @@ -5,7 +5,7 @@ import sqs from '../utils/sqs' import type { CursorPosition, CursorStyle } from './CursorProperties' export class Terminal { - public static readonly Version = "0.2.1" + public static readonly Version = "0.2.2" private terminal: HTMLElement private cursor: HTMLElement