diff --git a/CHANGELOG.md b/CHANGELOG.md index 79812f5..3e113db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 88.5-1.6.3 [Bug Fixes] + +- Restored the checksum fixes, so you do not see the "Your Code installation appears to be corrupt" message anymore. Restore your assets, exit VSCode and start it again for this to take effect. +- Fixed wallpaper showing up on sticky lines. Please re-install your wallpaper (or restore assets) for this to take effect. + +| Before | After | +| --- | --- | +| ![before](https://github.com/doki-theme/doki-theme-vscode/assets/15972415/8f523c2e-06f2-47aa-b1f6-93de38fed06e) | ![after](https://github.com/doki-theme/doki-theme-vscode/assets/15972415/fcdb89db-90ad-462a-bc53-5d0fa9fb85ff) | + ## 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. diff --git a/package.json b/package.json index 456cac6..e1cd620 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Doki Theme", "description": "Cute anime character themes!", "publisher": "unthrottled", - "version": "88.1.16", + "version": "88.1.17", "license": "MIT", "icon": "Doki-Theme-v2.png", "galleryBanner": { diff --git a/src/NotificationService.ts b/src/NotificationService.ts index d4c2bfe..f2752ac 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.2"; +const DOKI_THEME_VERSION = "v88.5-1.6.3"; export function attemptToNotifyUpdates(context: vscode.ExtensionContext) { const savedVersion = VSCodeGlobals.globalState.get(SAVED_VERSION);