mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00
Add Announcement for PDF/DOCX
This commit is contained in:
parent
6cbd232039
commit
41d0dc03f5
@ -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. -->
|
<!-- Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -->
|
||||||
|
|
||||||
|
## [1.5.4]
|
||||||
|
|
||||||
|
- Adds support for reading PDF and DOCX files (try "turn my business_plan.docx into a company website")
|
||||||
|
|
||||||
## [1.5.0]
|
## [1.5.0]
|
||||||
|
|
||||||
- Adds new `search_files` tool that lets Claude perform regex searches in your project, making it easy for him to refactor code, address TODOs and FIXMEs, remove dead code, and more!
|
- Adds new `search_files` tool that lets Claude perform regex searches in your project, making it easy for him to refactor code, address TODOs and FIXMEs, remove dead code, and more!
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"name": "claude-dev",
|
"name": "claude-dev",
|
||||||
"displayName": "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.",
|
"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.5.3",
|
"version": "1.5.4",
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.84.0"
|
"vscode": "^1.84.0"
|
||||||
|
@ -34,7 +34,7 @@ export class ClaudeDevProvider implements vscode.WebviewViewProvider {
|
|||||||
private disposables: vscode.Disposable[] = []
|
private disposables: vscode.Disposable[] = []
|
||||||
private view?: vscode.WebviewView | vscode.WebviewPanel
|
private view?: vscode.WebviewView | vscode.WebviewPanel
|
||||||
private claudeDev?: ClaudeDev
|
private claudeDev?: ClaudeDev
|
||||||
private latestAnnouncementId = "aug-30-2024" // update to some unique identifier when we add a new announcement
|
private latestAnnouncementId = "aug-31-2024" // update to some unique identifier when we add a new announcement
|
||||||
|
|
||||||
constructor(readonly context: vscode.ExtensionContext, private readonly outputChannel: vscode.OutputChannel) {
|
constructor(readonly context: vscode.ExtensionContext, private readonly outputChannel: vscode.OutputChannel) {
|
||||||
this.outputChannel.appendLine("ClaudeDevProvider instantiated")
|
this.outputChannel.appendLine("ClaudeDevProvider instantiated")
|
||||||
|
@ -30,6 +30,10 @@ const Announcement = ({ version, hideAnnouncement, apiConfiguration, vscodeUriSc
|
|||||||
🎉{" "}New in v{version}
|
🎉{" "}New in v{version}
|
||||||
</h3>
|
</h3>
|
||||||
<ul style={{ margin: "0 0 8px", paddingLeft: "12px" }}>
|
<ul style={{ margin: "0 0 8px", paddingLeft: "12px" }}>
|
||||||
|
<li>
|
||||||
|
Adds support for reading PDF and DOCX files (try "turn my business_plan.docx into a company
|
||||||
|
website")
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Adds new <code>search_files</code> tool that lets Claude perform regex searches in your project,
|
Adds new <code>search_files</code> tool that lets Claude perform regex searches in your project,
|
||||||
making it easy for him to refactor code, address TODOs and FIXMEs, remove dead code, and more!
|
making it easy for him to refactor code, address TODOs and FIXMEs, remove dead code, and more!
|
||||||
@ -43,9 +47,6 @@ const Announcement = ({ version, hideAnnouncement, apiConfiguration, vscodeUriSc
|
|||||||
Adds Google Cloud Vertex AI support and updates Claude 3.5 Sonnet max output to 8192 tokens for all
|
Adds Google Cloud Vertex AI support and updates Claude 3.5 Sonnet max output to 8192 tokens for all
|
||||||
providers.
|
providers.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
Improves system prompt to guard against lazy edits (less "<code>{"//rest of code here"}</code>")
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<p style={{ margin: "0" }}>
|
<p style={{ margin: "0" }}>
|
||||||
Follow me for more updates!{" "}
|
Follow me for more updates!{" "}
|
||||||
|
Loading…
Reference in New Issue
Block a user