diff --git a/CHANGELOG.md b/CHANGELOG.md index 113607e..a650641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +# 11.1.0 [Usability Updates] + +- Fixed all theme usability issues found in [#46](https://github.com/doki-theme/doki-theme-vscode/issues/46). + # 11.0.0 [Astolfo, Maika, Rias, & Rei] ## 4 New Themes diff --git a/buildSrc/assets/templates/base.laf.template.json b/buildSrc/assets/templates/base.laf.template.json index 29b0a8e..d326960 100644 --- a/buildSrc/assets/templates/base.laf.template.json +++ b/buildSrc/assets/templates/base.laf.template.json @@ -11,7 +11,7 @@ "peekViewResult.background": "&secondaryBackground&", "list.focusBackground": "&selectionBackground&", "quickInput.list.focusBackground": "&selectionBackground&AA", - "selection.background": "&selectionBackground&", + "selection.background": "&accentColor&", "list.activeSelectionBackground": "&selectionBackground&", "peekViewResult.selectionBackground": "&selectionBackground&", "list.hoverBackground": "&selectionBackground&2A", @@ -55,8 +55,8 @@ "titleBar.border": "&borderColor&", "notificationCenter.border": "&borderColor&", "notifications.border": "&borderColor&", - "editorCursor.background": "&caretForeground&", - "terminalCursor.background": "&caretForeground&", + "editorCursor.background": "&editorBackground&", + "terminalCursor.background": "&editorBackground&", "editorSuggestWidget.border": "&editorBackground&", "panel.background": "&editorBackground&", "sideBar.background": "&editorBackground&", diff --git a/package.json b/package.json index 4f8c936..54a966a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "The Doki Theme", "description": "A bunch of themes with cute anime girls. Code with your waifu!", "publisher": "unthrottled", - "version": "11.0.0", + "version": "11.1.0", "license": "MIT", "icon": "Doki-Theme.png", "galleryBanner": { diff --git a/src/NotificationService.ts b/src/NotificationService.ts index 4d2b51b..b954ac1 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 = "v11.0.0"; +const DOKI_THEME_VERSION = "v11.1.0"; export function attemptToNotifyUpdates(context: vscode.ExtensionContext) { const savedVersion = VSCodeGlobals.globalState.get(SAVED_VERSION); diff --git a/src/StickerService.ts b/src/StickerService.ts index e409729..54d5c4a 100644 --- a/src/StickerService.ts +++ b/src/StickerService.ts @@ -39,7 +39,9 @@ function buildWallpaperCss({ .minimap-decorations-layer, .xterm-cursor-layer, .decorationsOverviewRuler, - .monaco-breadcrumbs, + .monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-breadcrumbs .breadcrumbs-control, + .ref-tree, /* find usages */ + .head, /* find usages */ .monaco-split-view2>.monaco-scrollable-element>.split-view-container>.split-view-view .monaco-list-rows, .monaco-workbench .part.editor>.content .editor-group-container>.title .editor-actions { @@ -50,6 +52,11 @@ function buildWallpaperCss({ background-size: cover !important; } + .monaco-breadcrumbs { + background-color: #00000000 !important; + } + + .monaco-icon-label-container { background: none !important; }