mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00
Prepare for release
This commit is contained in:
parent
05f85ecfeb
commit
fed40d5963
@ -1,5 +1,14 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## [3.2.0]
|
||||||
|
|
||||||
|
- Add Advisor model tool to help when Cline hits a roadblock (available with OpenRouter and Anthropic)
|
||||||
|
- Add new Task/Chat mode toggle to turn Cline into a conversational partner, rather than a task-completing agent
|
||||||
|
- Easily switch between API providers and models using a new popup menu under the chat field
|
||||||
|
- Add VS Code LM API provider to run models provided by other VS Code extensions (e.g. GitHub Copilot). Shoutout to @julesmons, @RaySinner, and @MrUbens for putting this together!
|
||||||
|
- Add on/off toggle for MCP servers to disable them when not in use. Thanks @MrUbens!
|
||||||
|
- Add Auto-approve option for individual tools in MCP servers. Thanks @MrUbens!
|
||||||
|
|
||||||
## [3.1.10]
|
## [3.1.10]
|
||||||
|
|
||||||
- New icon!
|
- New icon!
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"name": "claude-dev",
|
"name": "claude-dev",
|
||||||
"displayName": "Cline",
|
"displayName": "Cline",
|
||||||
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
|
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
|
||||||
"version": "3.1.11",
|
"version": "3.2.0",
|
||||||
"icon": "assets/icons/icon.png",
|
"icon": "assets/icons/icon.png",
|
||||||
"galleryBanner": {
|
"galleryBanner": {
|
||||||
"color": "#617A91",
|
"color": "#617A91",
|
||||||
|
@ -88,7 +88,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
|
|||||||
private cline?: Cline
|
private cline?: Cline
|
||||||
private workspaceTracker?: WorkspaceTracker
|
private workspaceTracker?: WorkspaceTracker
|
||||||
mcpHub?: McpHub
|
mcpHub?: McpHub
|
||||||
private latestAnnouncementId = "jan-6-2025" // update to some unique identifier when we add a new announcement
|
private latestAnnouncementId = "jan-19-2025" // update to some unique identifier when we add a new announcement
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
readonly context: vscode.ExtensionContext,
|
readonly context: vscode.ExtensionContext,
|
||||||
|
@ -31,39 +31,33 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
|
|||||||
</h3>
|
</h3>
|
||||||
<ul style={{ margin: "0 0 8px", paddingLeft: "12px" }}>
|
<ul style={{ margin: "0 0 8px", paddingLeft: "12px" }}>
|
||||||
<li>
|
<li>
|
||||||
<b>Checkpoints are here!</b> Cline now saves a snapshot of your workspace at each step of the task. Hover over
|
<b>New Consult Advisor tool</b> lets Cline ask a powerful model like o1 or Opus for help when stuck on complex
|
||||||
any message to see two new buttons:
|
problems. Benchmarks show a 23% improvement in Cline's ability to accomplish tasks!{" "}
|
||||||
<ul style={{ margin: "4px 0", paddingLeft: 22 }}>
|
|
||||||
<li>
|
|
||||||
<span
|
|
||||||
className="codicon codicon-diff-multiple"
|
|
||||||
style={{
|
|
||||||
fontSize: "12px",
|
|
||||||
marginRight: "4px",
|
|
||||||
}}></span>
|
|
||||||
<b>Compare</b> shows you a diff between the snapshot and your current workspace
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<span
|
|
||||||
className="codicon codicon-discard"
|
|
||||||
style={{
|
|
||||||
fontSize: "12px",
|
|
||||||
marginRight: "4px",
|
|
||||||
}}></span>
|
|
||||||
<b>Restore</b> lets you revert your project's files back to that point in the task
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<b>'See new changes' button</b> when a task is completed, showing you an overview of all the changes Cline
|
|
||||||
made to your workspace throughout the task
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p style={{ margin: "8px 0" }}>
|
|
||||||
<VSCodeLink href="https://x.com/sdrzn/status/1876378124126236949" style={{ display: "inline" }}>
|
<VSCodeLink href="https://x.com/sdrzn/status/1876378124126236949" style={{ display: "inline" }}>
|
||||||
See a demo of Checkpoints here!
|
See a demo here.
|
||||||
</VSCodeLink>
|
</VSCodeLink>
|
||||||
</p>
|
</li>
|
||||||
|
<li>
|
||||||
|
<b>Task/Chat mode toggle</b> to turn Cline into a conversational partner, rather than a task-completing agent
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<b>Quick API/model switching</b> with a new popup menu under the chat field
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<b>VS Code LM API</b> lets you use models from other extensions like GitHub Copilot{" "}
|
||||||
|
<i>(thanks @julesmons, @RaySinner, and @MrUbens!)</i>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<b>MCP server improvements:</b> On/off toggle to disable servers when not in use, and Auto-approve option for
|
||||||
|
individual tools <i>(thanks @MrUbens!)</i>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
In case you missed it, Cline now supports Checkpoints!{" "}
|
||||||
|
<VSCodeLink href="https://x.com/sdrzn/status/1876378124126236949" style={{ display: "inline" }}>
|
||||||
|
See it in action here.
|
||||||
|
</VSCodeLink>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
{/*<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,
|
||||||
|
Loading…
Reference in New Issue
Block a user