diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e35be8..9d0736d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ All notable changes to the "claude-dev" extension will be documented in this fil ## [1.7.0] -- Adds problems monitoring to keep Claude updated on linter/compiler/build issues, letting him proactively fix errors on his own! (adding missing imports, fixing syntax errors, etc.) +- Adds problems monitoring to keep Claude updated on linter/compiler/build issues, letting him proactively fix errors on his own! (adding missing imports, fixing type errors, etc.) ## [1.6.5] diff --git a/src/providers/ClaudeDevProvider.ts b/src/providers/ClaudeDevProvider.ts index ae6156f..01509f4 100644 --- a/src/providers/ClaudeDevProvider.ts +++ b/src/providers/ClaudeDevProvider.ts @@ -50,7 +50,7 @@ export class ClaudeDevProvider implements vscode.WebviewViewProvider { private disposables: vscode.Disposable[] = [] private view?: vscode.WebviewView | vscode.WebviewPanel private claudeDev?: ClaudeDev - private latestAnnouncementId = "sep-9-2024" // update to some unique identifier when we add a new announcement + private latestAnnouncementId = "sep-14-2024" // update to some unique identifier when we add a new announcement constructor(readonly context: vscode.ExtensionContext, private readonly outputChannel: vscode.OutputChannel) { this.outputChannel.appendLine("ClaudeDevProvider instantiated") diff --git a/webview-ui/src/components/Announcement.tsx b/webview-ui/src/components/Announcement.tsx index 6bc365d..f3be021 100644 --- a/webview-ui/src/components/Announcement.tsx +++ b/webview-ui/src/components/Announcement.tsx @@ -32,11 +32,10 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => { 🎉{" "}New in v{version}

- Commands now run directly in your terminal thanks to VSCode 1.93's new shell integration updates! Plus a - new 'Proceed While Running' button to let Claude continue working while commands run, sending him new - output along the way (i.e. letting him react to server errors as he edits files).{" "} + Claude can now monitor workspace problems to keep updated on linter/compiler/build issues, letting him + proactively fix errors on his own! (adding missing imports, fixing type errors, etc.) - Demo here! + See a demo here.

{/*