From 064749116463f63bac47223e18eda0a13b750775 Mon Sep 17 00:00:00 2001 From: Nate Date: Fri, 3 Jan 2025 22:54:03 -0500 Subject: [PATCH 1/2] don't show all webview message errors --- extensions/vscode/src/webviewProtocol.ts | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/extensions/vscode/src/webviewProtocol.ts b/extensions/vscode/src/webviewProtocol.ts index 0632d44b9e..fea6a3e8eb 100644 --- a/extensions/vscode/src/webviewProtocol.ts +++ b/extensions/vscode/src/webviewProtocol.ts @@ -1,7 +1,7 @@ import { FromWebviewProtocol, ToWebviewProtocol } from "core/protocol"; +import { Message } from "core/protocol/messenger"; import { WebviewMessengerResult } from "core/protocol/util"; import { extractMinimalStackTraceInfo } from "core/util/extractMinimalStackTraceInfo"; -import { Message } from "core/protocol/messenger"; import { Telemetry } from "core/util/posthog"; import { v4 as uuidv4 } from "uuid"; import * as vscode from "vscode"; @@ -140,25 +140,6 @@ export class VsCodeWebviewProtocol }, false, ); - vscode.window - .showErrorMessage( - message.split("\n\n")[0], - "Show Logs", - "Troubleshooting", - ) - .then((selection) => { - if (selection === "Show Logs") { - vscode.commands.executeCommand( - "workbench.action.toggleDevTools", - ); - } else if (selection === "Troubleshooting") { - vscode.env.openExternal( - vscode.Uri.parse( - "https://docs.continue.dev/troubleshooting", - ), - ); - } - }); } } } From 723a75ca00e641a9ed6758f55ec6d0ef9ea6fe34 Mon Sep 17 00:00:00 2001 From: Nate Date: Fri, 3 Jan 2025 22:55:16 -0500 Subject: [PATCH 2/2] bump --- extensions/vscode/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/vscode/package.json b/extensions/vscode/package.json index 08cb25e3ad..4d4b2b8c7d 100644 --- a/extensions/vscode/package.json +++ b/extensions/vscode/package.json @@ -2,7 +2,7 @@ "name": "continue", "icon": "media/icon.png", "author": "Continue Dev, Inc", - "version": "0.9.249", + "version": "0.9.250", "repository": { "type": "git", "url": "https://github.com/continuedev/continue"