Browse Source

Add task history announcement

Saoud Rizwan 1 year ago
parent
commit
f6a69f924c
4 changed files with 7 additions and 5 deletions
  1. 4 0
      CHANGELOG.md
  2. 1 1
      package.json
  3. 1 1
      src/providers/ClaudeDevProvider.ts
  4. 1 3
      webview-ui/src/components/Announcement.tsx

+ 4 - 0
CHANGELOG.md

@@ -4,6 +4,10 @@ All notable changes to the "claude-dev" extension will be documented in this fil
 
 <!-- Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -->
 
+## [1.3.0]
+
+- Add task history
+
 ## [1.2.0]
 
 - Add support for Prompt Caching to significantly reduce costs and response times (currently only available through Anthropic API for Claude 3.5 Sonnet and Claude 3.0 Haiku)

+ 1 - 1
package.json

@@ -2,7 +2,7 @@
   "name": "claude-dev",
   "displayName": "Claude Dev",
   "description": "Autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.",
-  "version": "1.2.2",
+  "version": "1.3.0",
   "icon": "icon.png",
   "engines": {
     "vscode": "^1.84.0"

+ 1 - 1
src/providers/ClaudeDevProvider.ts

@@ -31,7 +31,7 @@ export class ClaudeDevProvider implements vscode.WebviewViewProvider {
 	private disposables: vscode.Disposable[] = []
 	private view?: vscode.WebviewView | vscode.WebviewPanel
 	private claudeDev?: ClaudeDev
-	private latestAnnouncementId = "aug-15-2024" // update to some unique identifier when we add a new announcement
+	private latestAnnouncementId = "aug-17-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")

+ 1 - 3
webview-ui/src/components/Announcement.tsx

@@ -27,6 +27,7 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
 				🎉{"  "}New in v{version}
 			</h3>
 			<ul style={{ margin: "0 0 8px", paddingLeft: "20px" }}>
+				<li>Task history is here! New tasks will automatically save so you can always resume them later.</li>
 				<li>
 					Adds support for{" "}
 					<VSCodeLink href="https://www.anthropic.com/news/prompt-caching" style={{ display: "inline" }}>
@@ -39,9 +40,6 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
 					Paste images in chat and turn mockups into fully functional applications or fix bugs with
 					screenshots
 				</li>
-				<li>
-					Adds option to choose other Claude models (+ GPT-4o, DeepSeek, and Mistral if you use OpenRouter)
-				</li>
 				<li>
 					You can now add custom instructions to the end of the system prompt (e.g. "Always use Python",
 					"Speak in Spanish")