diff --git a/CHANGELOG.md b/CHANGELOG.md index 98370f4..8c4ec50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 2.2.0 [Offline Mode] + +- Your theme's wallpaper is now available offline! +- Small adjustments to the look and feel of the light Emilia theme. + + ## 2.1.1 [Better Update Experience] - The plugin will actually tell you if it could not install your specified sticker. diff --git a/package.json b/package.json index 218517c..66f1c31 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "The Doki Theme", "description": "Themes based on various anime and visual novel characters.", "publisher": "unthrottled", - "version": "2.1.1", + "version": "2.2.0", "license": "MIT", "icon": "Doki-Theme.png", "galleryBanner": { diff --git a/src/NotificationService.ts b/src/NotificationService.ts index 0c0ee51..41f745b 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 = 'v2.1.1'; +const DOKI_THEME_VERSION = 'v2.2.0'; export function attemptToNotifyUpdates(context: vscode.ExtensionContext) { const savedVersion = VSCodeGlobals.globalState.get(SAVED_VERSION);