Skip to content

Commit d1ed4c6

Browse files
committed
Merge remote-tracking branch 'origin/main' into fix/terminal-carriage-return
2 parents d76712e + 3b65023 commit d1ed4c6

File tree

360 files changed

+11938
-8690
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

360 files changed

+11938
-8690
lines changed

.changeset/hip-news-run.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Properly hide cache section of task header

.changeset/real-flies-try.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Fix task size cache TTL

.changeset/shiny-wolves-attend.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Use formatLargeNumber on token counts in task header

.changeset/spotty-baboons-clap.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
13.3.3

.changeset/tasty-pants-applaud.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Package material icons in vsix

.changeset/twenty-planes-prove.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Throttle calls to calculate task folder size

.vscodeignore

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,44 @@
11
# Default
2+
.changeset/**
23
.github/**
34
.husky/**
45
.vscode/**
5-
.vscode-test/**
6-
out/**
7-
out-integration/**
8-
evals/**
9-
e2e/**
6+
coverage/**
107
node_modules/**
118
src/**
9+
scripts/**
1210
.gitignore
13-
.yarnrc
1411
esbuild.js
15-
vsc-extension-quickstart.md
12+
jest.*
1613
**/tsconfig.json
1714
**/.eslintrc.json
15+
.prettierignore
1816
**/*.map
1917
**/*.ts
20-
**/.vscode-test.*
18+
**/.gitignore
2119

2220
# Custom
23-
.nvmrc
21+
.env.sample
22+
.git-blame-ignore-revs
23+
.gitconfig
2424
.gitattributes
25-
.prettierignore
25+
.tool-versions
26+
.vite-port
27+
.nvmrc
2628
.clinerules*
2729
.roomodes
30+
.rooignore
2831
.roo/**
2932
cline_docs/**
30-
coverage/**
33+
e2e/**
34+
evals/**
3135
locales/**
32-
benchmark/**
33-
.direnv/**
36+
out/**
37+
ellipsis.yaml
38+
knip.json
3439

35-
# Ignore all webview-ui files except the build directory (https://github.com/microsoft/vscode-webview-ui-toolkit-samples/blob/main/frameworks/hello-world-react-cra/.vscodeignore)
40+
# Ignore all webview-ui files except the build directory.
41+
# https://github.com/microsoft/vscode-webview-ui-toolkit-samples/blob/main/frameworks/hello-world-react-cra/.vscodeignore
3642
webview-ui/src/**
3743
webview-ui/public/**
3844
webview-ui/scripts/**
@@ -41,17 +47,20 @@ webview-ui/README.md
4147
webview-ui/package.json
4248
webview-ui/package-lock.json
4349
webview-ui/node_modules/**
44-
**/.gitignore
4550

46-
# Fix issue where codicons don't get packaged (https://github.com/microsoft/vscode-extension-samples/issues/692)
51+
# Include codicons
4752
!node_modules/@vscode/codicons/dist/codicon.css
4853
!node_modules/@vscode/codicons/dist/codicon.ttf
4954

55+
# Include material icons
56+
!node_modules/vscode-material-icons/generated/**
57+
5058
# Include default themes JSON files used in getTheme
5159
!src/integrations/theme/default-themes/**
5260

5361
# Ignore doc assets
5462
assets/docs/**
63+
5564
# Include icons and images
5665
!assets/icons/**
5766
!assets/images/**

CHANGELOG.md

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,76 @@
11
# Roo Code Changelog
22

3+
## [3.13.2] - 2025-04-18
4+
5+
- Allow custom URLs for Gemini provider
6+
7+
## [3.13.1] - 2025-04-18
8+
9+
- Support Gemini 2.5 Flash thinking mode (thanks @monotykamary)
10+
- Make auto-approval toggle on/off states more obvious (thanks @sachasayan)
11+
- Add telemetry for shell integration errors
12+
- Fix the path of files dragging into the chat textarea on Windows (thanks @NyxJae)
13+
14+
## [3.13.0] - 2025-04-17
15+
16+
- UI improvements to task header, chat view, history preview, and welcome view (thanks @sachasayan!)
17+
- Add append_to_file tool for appending content to files (thanks @samhvw8!)
18+
- Add Gemini 2.5 Flash Preview to Gemini and Vertex providers (thanks @nbihan-mediware!)
19+
- Fix image support in Bedrock (thanks @Smartsheet-JB-Brown!)
20+
- Make diff edits more resilient to models passing in incorrect parameters
21+
22+
## [3.12.3] - 2025-04-17
23+
24+
- Fix character escaping issues in Gemini diff edits
25+
- Support dragging and dropping tabs into the chat box (thanks @NyxJae!)
26+
- Make sure slash commands only fire at the beginning of the chat box (thanks @logosstone!)
27+
28+
## [3.12.2] - 2025-04-16
29+
30+
- Add OpenAI o3 & 4o-mini (thanks @PeterDaveHello!)
31+
- Improve file/folder context mention UI (thanks @elianiva!)
32+
- Improve diff error telemetry
33+
34+
## [3.12.1] - 2025-04-16
35+
36+
- Bugfix to Edit button visibility in the select dropdowns
37+
38+
## [3.12.0] - 2025-04-15
39+
40+
- Add xAI provider and expose reasoning effort options for Grok on OpenRouter (thanks Cline!)
41+
- Make diff editing config per-profile and improve pre-diff string normalization
42+
- Make checkpoints faster and more reliable
43+
- Add a search bar to mode and profile select dropdowns (thanks @samhvw8!)
44+
- Add telemetry for code action usage, prompt enhancement usage, and consecutive mistake errors
45+
- Suppress zero cost values in the task header (thanks @do-it!)
46+
- Make JSON parsing safer to avoid crashing the webview on bad input
47+
- Allow users to bind a keyboard shortcut for accepting suggestions or input in the chat view (thanks @axkirillov!)
48+
49+
## [3.11.17] - 2025-04-14
50+
51+
- Improvements to OpenAI cache reporting and cost estimates (thanks @monotykamary and Cline!)
52+
- Visual improvements to the auto-approve toggles (thanks @sachasayan!)
53+
- Bugfix to diff apply logic (thanks @avtc for the test case!) and telemetry to track errors going forward
54+
- Fix race condition in capturing short-running terminal commands (thanks @KJ7LNW!)
55+
- Fix eslint error (thanks @nobu007!)
56+
57+
## [3.11.16] - 2025-04-14
58+
59+
- Add gpt-4.1, gpt-4.1-mini, and gpt-4.1-nano to the OpenAI provider
60+
- Include model ID in environment details and when exporting tasks (thanks @feifei325!)
61+
62+
## [3.11.15] - 2025-04-13
63+
64+
- Add ability to filter task history by workspace (thanks @samhvw8!)
65+
- Fix Node.js version in the .tool-versions file (thanks @bogdan0083!)
66+
- Fix duplicate suggested mentions for open tabs (thanks @samhvw8!)
67+
- Fix Bedrock ARN validation and token expiry issue when using profiles (thanks @vagadiya!)
68+
- Add Anthropic option to pass API token as Authorization header instead of X-Api-Key (thanks @mecab!)
69+
- Better documentation for adding new settings (thanks @KJ7LNW!)
70+
- Localize package.json (thanks @samhvw8!)
71+
- Add option to hide the welcome message and fix the background color for the new profile dialog (thanks @zhangtony239!)
72+
- Restore the focus ring for the VSCodeButton component (thanks @pokutuna!)
73+
374
## [3.11.14] - 2025-04-11
475

576
- Support symbolic links in rules folders to directories and other symbolic links (thanks @taisukeoe!)

0 commit comments

Comments
 (0)