From 9eba465c0d230fc3eb9a91f2ec372c60d4986282 Mon Sep 17 00:00:00 2001 From: DATBOI Date: Mon, 5 Apr 2021 18:02:48 -0500 Subject: [PATCH 1/5] Updtade caret foreground color --- buildSrc/assets/templates/base.laf.template.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildSrc/assets/templates/base.laf.template.json b/buildSrc/assets/templates/base.laf.template.json index 29b0a8e..421f45b 100644 --- a/buildSrc/assets/templates/base.laf.template.json +++ b/buildSrc/assets/templates/base.laf.template.json @@ -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&", From 73e1b3cad63c5604bdc4881679f9155068e823a7 Mon Sep 17 00:00:00 2001 From: DATBOI Date: Mon, 5 Apr 2021 18:13:03 -0500 Subject: [PATCH 2/5] Updated everybody's selection background --- buildSrc/assets/templates/base.laf.template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/assets/templates/base.laf.template.json b/buildSrc/assets/templates/base.laf.template.json index 421f45b..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", From a069947ffea01b4e995e87b8fa54b1af28380cc0 Mon Sep 17 00:00:00 2001 From: DATBOI Date: Mon, 5 Apr 2021 18:20:59 -0500 Subject: [PATCH 3/5] updated find usages to be less opaque --- src/StickerService.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/StickerService.ts b/src/StickerService.ts index e409729..6c933dd 100644 --- a/src/StickerService.ts +++ b/src/StickerService.ts @@ -40,6 +40,8 @@ function buildWallpaperCss({ .xterm-cursor-layer, .decorationsOverviewRuler, .monaco-breadcrumbs, + .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 { From aee0a9200bd5289552332361d4e23d126ffa5319 Mon Sep 17 00:00:00 2001 From: DATBOI Date: Mon, 5 Apr 2021 18:32:29 -0500 Subject: [PATCH 4/5] Updated breadcrumbs to show glass pane --- src/StickerService.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/StickerService.ts b/src/StickerService.ts index 6c933dd..54d5c4a 100644 --- a/src/StickerService.ts +++ b/src/StickerService.ts @@ -39,7 +39,7 @@ 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, @@ -52,6 +52,11 @@ function buildWallpaperCss({ background-size: cover !important; } + .monaco-breadcrumbs { + background-color: #00000000 !important; + } + + .monaco-icon-label-container { background: none !important; } From a3cb66b574e94bfd3b1babfb785b61261150d9ab Mon Sep 17 00:00:00 2001 From: DATBOI Date: Mon, 5 Apr 2021 18:34:39 -0500 Subject: [PATCH 5/5] Updated changelog and bumped version to v11.1.0 --- CHANGELOG.md | 4 ++++ package.json | 2 +- src/NotificationService.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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/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);