Merge pull request #153 from RooVetGit/chore/cleanUp12-17

updating readme, deleting orphaned changesets
This commit is contained in:
Matt Rubens
2024-12-17 12:27:13 -05:00
committed by GitHub
4 changed files with 7 additions and 4 deletions

View File

@@ -1,5 +1,9 @@
# Roo Cline Changelog # Roo Cline Changelog
## [2.2.16]
- Incorporate Premshay's [PR](https://github.com/RooVetGit/Roo-Cline/pull/60) to add support for Meta Models via Bedrock (3, 3.1, 3.2) and unified Bedrock calls using BedrockClient and Bedrock Runtime API
## [2.2.14 - 2.2.15] ## [2.2.14 - 2.2.15]
- Make diff editing more robust to transient errors / fix bugs - Make diff editing more robust to transient errors / fix bugs

View File

@@ -12,7 +12,7 @@ A fork of Cline, an autonomous coding agent, tweaked for more speed and flexibil
- Sound effects for feedback - Sound effects for feedback
- Quick prompt copying from history - Quick prompt copying from history
- OpenRouter compression support - OpenRouter compression support
- Support for newer Gemini models (gemini-exp-1206, gemini-2.0-flash-exp) - Support for newer Gemini models (gemini-exp-1206, gemini-2.0-flash-exp) and Meta 3, 3.1, and 3.2 models via AWS Bedrock
- Runs alongside the original Cline - Runs alongside the original Cline
## Disclaimer ## Disclaimer
@@ -129,7 +129,7 @@ Thanks to [Claude 3.5 Sonnet's agentic coding capabilities](https://www-cdn.ant
### Use any API and Model ### Use any API and Model
Cline supports API providers like OpenRouter, Anthropic, OpenAI, Google Gemini, AWS Bedrock, Azure, and GCP Vertex. You can also configure any OpenAI compatible API, or use a local model through LM Studio/Ollama. If you're using OpenRouter, the extension fetches their latest model list, allowing you to use the newest models as soon as they're available. Cline supports API providers like OpenRouter, Anthropic, OpenAI, Google Gemini, AWS Bedrock, Azure, and GCP Vertex. You can also configure any OpenAI compatible API, or use a local model through LM Studio/Ollama. If you're using OpenRouter, the extension fetches their latest model list, allowing you to use the newest models as soon as they're available. The extension also now supports Meta 3, 3.1, and 3.2 models via AWS Bedrock.
The extension also keeps track of total tokens and API usage cost for the entire task loop and individual requests, keeping you informed of spend every step of the way. The extension also keeps track of total tokens and API usage cost for the entire task loop and individual requests, keeping you informed of spend every step of the way.

View File

@@ -3,7 +3,7 @@
"displayName": "Roo Cline", "displayName": "Roo Cline",
"description": "A fork of Cline, an autonomous coding agent, with some added experimental configuration and automation features.", "description": "A fork of Cline, an autonomous coding agent, with some added experimental configuration and automation features.",
"publisher": "RooVeterinaryInc", "publisher": "RooVeterinaryInc",
"version": "2.2.15", "version": "2.2.16",
"icon": "assets/icons/rocket.png", "icon": "assets/icons/rocket.png",
"galleryBanner": { "galleryBanner": {
"color": "#617A91", "color": "#617A91",

View File

@@ -179,7 +179,6 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
setDidClickCancel(false) // special case where we reset the cancel button state setDidClickCancel(false) // special case where we reset the cancel button state
break break
case "resume_completed_task": case "resume_completed_task":
playSound("celebration")
setTextAreaDisabled(false) setTextAreaDisabled(false)
setClineAsk("resume_completed_task") setClineAsk("resume_completed_task")
setEnableButtons(true) setEnableButtons(true)