Skip to content

Commit 361edc5

Browse files
authored
Merge pull request #81 from trypear/v3.15.3
Merged v3.15.3
2 parents 49fce51 + c7c7d33 commit 361edc5

Some content is hidden

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

75 files changed

+1741
-692
lines changed

CHANGELOG.md

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

3+
## [3.15.3] - 2025-05-02
4+
5+
- Terminal: Fix empty command bug
6+
- Terminal: More robust process killing
7+
- Optimize Gemini prompt caching for OpenRouter
8+
- Chat view performance improvements
9+
310
## [3.15.2] - 2025-05-02
411

512
- Fix terminal performance issues

evals/packages/types/src/roo-code-defaults.ts

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ export const rooCodeDefaults: RooCodeSettings = {
66

77
lastShownAnnouncementId: "apr-30-2025-3-15",
88

9+
pinnedApiConfigs: {},
10+
911
autoApprovalEnabled: true,
1012
alwaysAllowReadOnly: true,
1113
alwaysAllowReadOnlyOutsideWorkspace: false,
@@ -22,17 +24,43 @@ export const rooCodeDefaults: RooCodeSettings = {
2224
allowedCommands: ["*"],
2325

2426
browserToolEnabled: false,
27+
browserViewportSize: "900x600",
28+
screenshotQuality: 75,
29+
remoteBrowserEnabled: false,
30+
31+
ttsEnabled: false,
32+
ttsSpeed: 1,
33+
soundEnabled: false,
34+
soundVolume: 0.5,
35+
36+
terminalOutputLineLimit: 500,
37+
terminalShellIntegrationTimeout: 30000,
38+
terminalCommandDelay: 0,
39+
terminalPowershellCounter: false,
40+
terminalZshOhMy: true,
41+
terminalZshClearEolMark: true,
42+
terminalZshP10k: false,
43+
terminalZdotdir: true,
44+
terminalCompressProgressBar: true,
45+
terminalShellIntegrationDisabled: true,
46+
47+
diffEnabled: true,
48+
fuzzyMatchThreshold: 1,
2549

2650
enableCheckpoints: false,
2751

52+
rateLimitSeconds: 0,
2853
maxOpenTabsContext: 20,
2954
maxWorkspaceFiles: 200,
3055
showRooIgnoredFiles: true,
3156
maxReadFileLine: 500,
3257

33-
terminalShellIntegrationDisabled: true,
58+
language: "en",
59+
telemetrySetting: "enabled",
3460

3561
mcpEnabled: false,
3662

3763
mode: "code",
64+
65+
customModes: [],
3866
}

evals/packages/types/src/roo-code.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,8 +400,6 @@ export const providerSettingsSchema = z.object({
400400
// OpenAI Native
401401
openAiNativeApiKey: z.string().optional(),
402402
openAiNativeBaseUrl: z.string().optional(),
403-
// XAI
404-
xaiApiKey: z.string().optional(),
405403
// Mistral
406404
mistralApiKey: z.string().optional(),
407405
mistralCodestralUrl: z.string().optional(),

locales/ca/README.md

Lines changed: 26 additions & 27 deletions
Large diffs are not rendered by default.

locales/de/README.md

Lines changed: 26 additions & 27 deletions
Large diffs are not rendered by default.

locales/es/README.md

Lines changed: 26 additions & 27 deletions
Large diffs are not rendered by default.

locales/fr/README.md

Lines changed: 26 additions & 27 deletions
Large diffs are not rendered by default.

locales/hi/README.md

Lines changed: 26 additions & 27 deletions
Large diffs are not rendered by default.

locales/it/README.md

Lines changed: 26 additions & 27 deletions
Large diffs are not rendered by default.

locales/ja/README.md

Lines changed: 26 additions & 27 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)