From 1ba58903b1cd77e899e4201e77983ef33ecc403b Mon Sep 17 00:00:00 2001 From: Andy Jordan Date: Wed, 3 Aug 2022 13:32:57 -0700 Subject: [PATCH] Remove popup when extension updates VS Code team asked us to remove this as it is unnecessarily noisy and not inline with extension guidelines. They are working on a coordinated "your extensions updated!" workflow. --- src/main.ts | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/src/main.ts b/src/main.ts index bb373655b6..e05a29fa69 100644 --- a/src/main.ts +++ b/src/main.ts @@ -64,9 +64,6 @@ export async function activate(context: vscode.ExtensionContext): Promise { - if (choice === showReleaseNotes) { - vscode.commands.executeCommand( - "markdown.showPreview", - vscode.Uri.file(path.resolve(__dirname, "../CHANGELOG.md"))); - } - }); - } - - context.globalState.update( - powerShellExtensionVersionKey, - version); -} - export function deactivate(): void { // Clean up all extension features languageClientConsumers.forEach((languageClientConsumer) => {