Skip to content

Commit eb384f6

Browse files
committed
Merge branch 'main' into acorn/creator-view-refactored
2 parents fd1b9ce + bfc299f commit eb384f6

File tree

97 files changed

+2789
-685
lines changed

Some content is hidden

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

97 files changed

+2789
-685
lines changed

.changeset/wise-icons-sort.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.husky/pre-commit

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,11 @@ branch="$(git rev-parse --abbrev-ref HEAD)"
55
# exit 1
66
# fi
77

8-
npx lint-staged
8+
# Detect if running on Windows and use npx.cmd, otherwise use npx
9+
if [ "$OS" = "Windows_NT" ]; then
10+
npx_cmd="npx.cmd"
11+
else
12+
npx_cmd="npx"
13+
fi
14+
15+
"$npx_cmd" lint-staged

.husky/pre-push

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ branch="$(git rev-parse --abbrev-ref HEAD)"
55
# exit 1
66
# fi
77

8-
npm run compile
8+
# Detect if running on Windows and use npm.cmd, otherwise use npm
9+
if [ "$OS" = "Windows_NT" ]; then
10+
npm_cmd="npm.cmd"
11+
else
12+
npm_cmd="npm"
13+
fi
14+
15+
"$npm_cmd" run compile
916

1017
# Check for new changesets.
1118
NEW_CHANGESETS=$(find .changeset -name "*.md" ! -name "README.md" | wc -l | tr -d ' ')

.vscodeignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@ webview-ui/node_modules/**
4848
# Include default themes JSON files used in getTheme
4949
!src/integrations/theme/default-themes/**
5050

51-
# Include icons
51+
# Include icons and images
5252
!assets/icons/**
53+
!assets/images/**
5354

5455
# Include .env file for telemetry
5556
!.env

CHANGELOG.md

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

3+
## [3.10.3] - 2025-03-23
4+
5+
- Update the welcome page to provide 1-click OAuth flows with LLM routers (thanks @dtrugman!)
6+
- Switch to a more direct method of tracking OpenRouter tokens/spend
7+
- Make partial file reads backwards-compatible with custom system prompts and give users more control over the chunk size
8+
- Fix issues where questions and suggestions weren’t showing up for non-streaming models and were hard to read in some themes
9+
- A variety of fixes and improvements to experimental multi-block diff (thanks @KJ7LNW!)
10+
- Fix opacity of drop-down menus in settings (thanks @KJ7LNW!)
11+
- Fix bugs with reading and mentioning binary files like PDFs
12+
- Fix the pricing information for OpenRouter free models (thanks @Jdo300!)
13+
- Fix an issue with our unit tests on Windows (thanks @diarmidmackenzie!)
14+
- Fix a maxTokens issue for the Outbound provider (thanks @pugazhendhi-m!)
15+
- Fix a line number issue with partial file reads (thanks @samhvw8!)
16+
317
## [3.10.2] - 2025-03-21
418

519
- Fixes to context mentions on Windows

assets/images/openrouter.png

6.56 KB
Loading

assets/images/requesty.png

12.9 KB
Loading

locales/ca/README.md

Lines changed: 23 additions & 0 deletions
Large diffs are not rendered by default.

locales/de/README.md

Lines changed: 23 additions & 0 deletions
Large diffs are not rendered by default.

locales/es/README.md

Lines changed: 23 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)