Prepare for release

This commit is contained in:
Saoud Rizwan
2024-10-08 17:16:10 -04:00
parent ccb4738d7e
commit d9e360fa05
3 changed files with 26 additions and 38 deletions

View File

@@ -1,8 +1,13 @@
# Change Log # Change Log
All notable changes to the "claude-dev" extension will be documented in this file.
<!-- Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. --> ## [2.0.0]
- New name! Meet Cline, an AI assistant that can use your CLI and Editor.
- Responses are now streamed with a yellow text decoration animation to keep track of Cline's progress as he edits files.
- New Cancel button to give Cline feedback if he goes off in the wrong direction, giving you more control over tasks.
- Re-imagined tool calling prompt resulting in ~40% fewer requests to accomplish tasks + better performance with other models.
- Search and use any model with OpenRouter (try searching "free" for free model offerings).
## [1.9.7] ## [1.9.7]

View File

@@ -2,7 +2,7 @@
"name": "claude-dev", "name": "claude-dev",
"displayName": "Cline (prev. Claude Dev)", "displayName": "Cline (prev. 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.9.7", "version": "2.0.0",
"icon": "assets/icons/icon.png", "icon": "assets/icons/icon.png",
"galleryBanner": { "galleryBanner": {
"color": "#556C80", "color": "#556C80",

View File

@@ -31,47 +31,25 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
<h3 style={{ margin: "0 0 8px" }}> <h3 style={{ margin: "0 0 8px" }}>
🎉{" "}New in v{version} 🎉{" "}New in v{version}
</h3> </h3>
<p style={{ margin: "5px 0px" }}></p> <p style={{ margin: "5px 0px" }}>
New name! Meet Cline, an AI assistant that can use your <strong>CLI</strong> a<strong>N</strong>d{" "}
<strong>E</strong>ditor.
</p>
<ul style={{ margin: "0 0 8px", paddingLeft: "12px" }}> <ul style={{ margin: "0 0 8px", paddingLeft: "12px" }}>
<li> <li>
Cline can now use a browser! This update adds a new <code>inspect_site</code> tool that captures Responses are now streamed with a yellow text decoration animation to keep track of Cline's progress
screenshots and console logs from websites (including localhost), making it easier for Cline to as he edits files.
troubleshoot issues on his own.
<VSCodeLink style={{ display: "inline" }} href="https://x.com/sdrzn/status/1837559914023342129">
See a demo here.
</VSCodeLink>
</li> </li>
<li> <li>
Improved automatic linter/compiler debugging by only sending Cline new errors that result from his New Cancel button to give Cline feedback if he goes off in the wrong direction, giving you more
edits, rather than reporting all workspace problems. control over tasks.
</li> </li>
<li> <li>
You can now use '@' in the textarea to add context: Re-imagined tool calling prompt resulting in ~40% fewer requests to accomplish tasks + better
<ul style={{ margin: "0 0 8px", paddingLeft: "20px" }}> performance with other models.
<li>
<strong>@url:</strong> Paste in a URL for the extension to fetch and convert to markdown
(i.e. give Cline the latest docs)
</li>
<li>
<strong>@problems:</strong> Add workspace errors and warnings for Cline to fix
</li>
<li>
<strong>@file:</strong> Adds a file's contents so you don't have to waste API requests
approving read file (+ type to search files)
</li>
<li>
<strong>@folder:</strong> Adds folder's files all at once
</li> </li>
<li>Search and use any model with OpenRouter (try searching "free" for free model offerings).</li>
</ul> </ul>
</li>
</ul>
{/* <p style={{ margin: "5px 0px" }}>
Cline 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.)
<VSCodeLink style={{ display: "inline" }} href="https://x.com/sdrzn/status/1835100787275419829">
See a demo here.
</VSCodeLink>
</p> */}
{/*<ul style={{ margin: "0 0 8px", paddingLeft: "12px" }}> {/*<ul style={{ margin: "0 0 8px", paddingLeft: "12px" }}>
<li> <li>
OpenRouter now supports prompt caching! They also have much higher rate limits than other providers, OpenRouter now supports prompt caching! They also have much higher rate limits than other providers,
@@ -120,9 +98,14 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
</li> </li>
</ul>*/} </ul>*/}
<p style={{ margin: "0" }}> <p style={{ margin: "0" }}>
Follow me for more updates!{" "} More details about the changes + benchmarks{" "}
<VSCodeLink href="https://x.com/sdrzn" style={{ display: "inline" }}> <VSCodeLink href="https://x.com/sdrzn" style={{ display: "inline" }}>
@sdrzn here.
</VSCodeLink>
I'm excited for you to try this update, and would love to hear how you like it in our Discord. Come say
hi!{" "}
<VSCodeLink style={{ display: "inline" }} href="https://discord.gg/cline">
https://discord.gg/cline
</VSCodeLink> </VSCodeLink>
</p> </p>
</div> </div>