diff --git a/CHANGELOG.md b/CHANGELOG.md index 74d098f..79812f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 88.5-1.6.2 [Terminal Wallpaper support] + +- Wallpaper now shows up on the terminal for the `1.83.1` builds. Please re-install your wallpaper for this to take effect. + ## 88.5-1.6.1 [Cleanups] - Cleaned up build process to use correct colors. diff --git a/package.json b/package.json index ebed0dd..456cac6 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Doki Theme", "description": "Cute anime character themes!", "publisher": "unthrottled", - "version": "88.1.15", + "version": "88.1.16", "license": "MIT", "icon": "Doki-Theme-v2.png", "galleryBanner": { diff --git a/src/NotificationService.ts b/src/NotificationService.ts index 32fe598..d4c2bfe 100644 --- a/src/NotificationService.ts +++ b/src/NotificationService.ts @@ -3,7 +3,7 @@ import { VSCodeGlobals } from "./VSCodeGlobals"; import { attemptToGreetUser } from "./WelcomeService"; const SAVED_VERSION = "doki.theme.version"; -const DOKI_THEME_VERSION = "v88.5-1.6.1"; +const DOKI_THEME_VERSION = "v88.5-1.6.2"; export function attemptToNotifyUpdates(context: vscode.ExtensionContext) { const savedVersion = VSCodeGlobals.globalState.get(SAVED_VERSION); diff --git a/src/StickerService.ts b/src/StickerService.ts index 7776c76..83abbad 100644 --- a/src/StickerService.ts +++ b/src/StickerService.ts @@ -52,6 +52,11 @@ function buildWallpaperCss({ /* end welcome window */ div.header, /* extensions header */ .content, + /* terminal stuff */ + .terminal .xterm, + .monaco-workbench .pane-body.integrated-terminal .terminal-wrapper, + .xterm .xterm-screen canvas, + /* end terminal stuff */ .monaco-select-box, .pane-header, .minimap-decorations-layer,