Skip to content

Commit

Permalink
Restored Hide Watermark (#201)
Browse files Browse the repository at this point in the history
* Restored Hide Watermark

* Added instructions for this to take effect
  • Loading branch information
Unthrottled authored Feb 4, 2023
1 parent 85a6b48 commit 6e64da6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 88.3-1.5.2 [Hide Watermark Restore]

- Restored hide watermark functionality for VSCode 1.75.0. Please re-run the hide watermark command for this to take effect.

![Hidden Watermark](https://user-images.githubusercontent.com/15972415/216770850-7dc66024-78f5-4503-ae15-2dc087def6cd.png)

## 88.3-1.5.1 [Terminal Wallpaper Bugfix]

- Fixed wallpaper rendering issue terminals of VSCode 1.74.3. Please re-install your wallpaper for this to take effect.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Doki Theme",
"description": "Cute anime character themes!",
"publisher": "unthrottled",
"version": "88.1.12",
"version": "88.1.13",
"license": "MIT",
"icon": "Doki-Theme-v2.png",
"galleryBanner": {
Expand Down
2 changes: 1 addition & 1 deletion src/NotificationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { VSCodeGlobals } from "./VSCodeGlobals";
import { attemptToGreetUser } from "./WelcomeService";

const SAVED_VERSION = "doki.theme.version";
const DOKI_THEME_VERSION = "v88.3-1.5.1";
const DOKI_THEME_VERSION = "v88.3-1.5.2";

export function attemptToNotifyUpdates(context: vscode.ExtensionContext) {
const savedVersion = VSCodeGlobals.globalState.get(SAVED_VERSION);
Expand Down
2 changes: 2 additions & 0 deletions src/StickerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ function buildHideWaterMarkCSS(): string {
return `
${hideComment}
.monaco-workbench .part.editor.has-watermark>.content.empty .editor-group-container>.editor-group-letterpress,
.part.editor>.content .editor-group-container .editor-group-watermark>.letterpress,
.monaco-workbench .part.editor>.content .editor-group-container>.editor-group-watermark>.shortcuts>.watermark-box,
.monaco-workbench .part.editor>.content.empty>.watermark>.watermark-box
{
display: none !important;
Expand Down

0 comments on commit 6e64da6

Please sign in to comment.