diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fc660b..f9b1634 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -86,7 +86,7 @@ _Zero Two's Not Just A Cutie. ;)_ - Added the ability to control the position & size of the sticker using the `doki.sticker.css` configruation property. - Fixed artifacted background images on the extension list tree & settings UI selected config (be sure to re-install your wallpaper for this to take effect). -- Restored asset installation on code-server (please be sure to clear caches and hard reload!) +- Restored asset installation on code-server (please be sure to clear caches and hard restart!) - Added Remote Development Server/SSH connection asset installation help instructions. # 84.2-1.2.1 [Small Dart Enhancement] diff --git a/README.md b/README.md index bcd202d..0c02a76 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Steps demonstrated: 1. Choose Ryuko's Color Theme 1. Enable Ryuko's wallpaper -1. Reload/Restart VSCode +1. Restart VSCode 1. Demonstrate glass pane feature ## Screen Samples! @@ -79,21 +79,28 @@ You can choose themes based on characters from these various Anime, Manga, or Vi # Documentation +- [Theme Preview](#theme-preview) +- [Feature Preview](#feature-preview) + - [Screen Samples!](#screen-samples) +- [Complete Theme Album.](#complete-theme-album) + - [About!](#about) +- [Documentation](#documentation) - [Configuration](#configuration) - - [Background Images](#background-images) - - [Hide VSCode Watermark](#hide-watermark) - - [Stickers](#sticker) - - [Custom Assets](#custom-assets) - - [Asset Restoration](#asset-restoration) - - [Suggestive Content](#suggestive-content) - - [Asset Removal](#remove-assets) - - [Show Changelog](#show-changelog) + - [Background Images](#background-images) + - [Settings](#settings) + - [Hide Watermark](#hide-watermark) + - [Stickers](#stickers) + - [Custom Assets](#custom-assets) + - [Asset Restoration](#asset-restoration) + - [Suggestive Content](#suggestive-content) + - [Remove Assets](#remove-assets) + - [Show Changelog](#show-changelog) - [Miscellaneous](#miscellaneous) - - [Contributing](#contributing) - - [Theme Requests](#theme-requests) - - [Helping the community](#enjoying-the-plugin) - - [Feature Requests](#contributions) - - [More Doki Theme!](#even-more-doki-theme) + - [Contributing](#contributing) + - [Theme Requests](#theme-requests) + - [Enjoying the plugin?](#enjoying-the-plugin) + - [Contributions?](#contributions) + - [Even more Doki-Theme!](#even-more-doki-theme) # Configuration diff --git a/src/ThemeManager.ts b/src/ThemeManager.ts index 1115623..3929b53 100644 --- a/src/ThemeManager.ts +++ b/src/ThemeManager.ts @@ -30,7 +30,7 @@ export const ACTIVE_THEME = "doki.theme.active"; export const ACTIVE_STICKER = "doki.sticker.active"; const FIRST_TIME_STICKER_INSTALL = "doki.sticker.first.install"; -export const handleInstallMessage = `Quick reload to see changes, please restart VSCode to remove the Unsupported warning.` +export const handleInstallMessage = `Restart to see changes, please restart VSCode to remove the Unsupported warning.` const createCulturedInstall = (themeId: string): string => `doki.cultured.${themeId}`; @@ -205,7 +205,7 @@ export function activateHideWatermark( ); } -const quickReloadAction = "Quickly Reload Window"; +const QuitAction = "Quit"; export function activateThemeAsset( dokiTheme: DokiTheme, @@ -259,11 +259,11 @@ export function showInstallNotification(message: string) { vscode.window .showInformationMessage( message, - { title: quickReloadAction } + { title: QuitAction } ) .then((item) => { if (item) { - vscode.commands.executeCommand("workbench.action.reloadWindow"); + vscode.commands.executeCommand("workbench.action.quit"); } }); } @@ -287,11 +287,11 @@ export function uninstallImages(context: vscode.ExtensionContext) { vscode.window .showInformationMessage( `Removed All Images. ${handleInstallMessage}`, - { title: quickReloadAction } + { title: QuitAction } ) .then((item) => { if (item) { - vscode.commands.executeCommand("workbench.action.reloadWindow"); + vscode.commands.executeCommand("workbench.action.quit"); } }); } else if (stickersRemoved === InstallStatus.FAILURE) { diff --git a/src/WelcomeService.ts b/src/WelcomeService.ts index 7da7937..d1a0c61 100644 --- a/src/WelcomeService.ts +++ b/src/WelcomeService.ts @@ -100,7 +100,7 @@ export function attemptToGreetUser(context: vscode.ExtensionContext) {