Skip to content

Commit b907c5d

Browse files
authored
Merge pull request #12 from IdenWorks/upstream-merge-3
Upstream merge 3
2 parents e57bf17 + 152f467 commit b907c5d

File tree

171 files changed

+14890
-815
lines changed

Some content is hidden

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

171 files changed

+14890
-815
lines changed

.changeset/eager-buckets-feel.md

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

.changeset/spotty-steaks-brake.md

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

.changeset/swift-carrots-doubt.md

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

.dockerignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Build artifacts
2+
bin/
3+
!bin/roo-code-latest.vsix
4+
dist/
5+
**/dist/
6+
out/
7+
**/out/
8+
9+
# Dependencies
10+
node_modules/
11+
**/node_modules/
12+
13+
# Test and development files
14+
coverage/
15+
**/.vscode-test/
16+
17+
knip.json
18+
.husky/

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"esbenp.prettier-vscode",
77
"csstools.postcss",
88
"bradlc.vscode-tailwindcss",
9-
"connor4312.esbuild-problem-matchers"
9+
"connor4312.esbuild-problem-matchers",
10+
"yoavbls.pretty-ts-errors"
1011
]
1112
}

CHANGELOG.md

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

3+
## [3.19.0] - 2025-05-30
4+
5+
- Enable intelligent content condensing by default and move condense button out of expanded task menu
6+
- Skip condense and show error if context grows during condensing
7+
- Transform Prompts tab into Modes tab and move support prompts to Settings for better organization
8+
- Add DeepSeek R1 0528 model support to Chutes provider (thanks @zeozeozeo!)
9+
- Fix @directory not respecting .rooignore files (thanks @xyOz-dev!)
10+
- Add rooignore checking for insert_content and search_and_replace tools
11+
- Fix menu breaking when Roo is moved between primary and secondary sidebars (thanks @chrarnoldus!)
12+
- Resolve memory leak in ChatView by stabilizing callback props (thanks @samhvw8!)
13+
- Fix write_to_file to properly create empty files when content is empty (thanks @Ruakij!)
14+
- Fix chat input clearing during running tasks (thanks @xyOz-dev!)
15+
- Update AWS regions to include Spain and Hyderabad
16+
- Improve POSIX shell compatibility in pre-push hook (thanks @PeterDaveHello and @chrarnoldus!)
17+
- Update PAGER environment variable for Windows compatibility in Terminal (thanks @SmartManoj!)
18+
- Add environment variable injection support for whole MCP config (thanks @NamesMT!)
19+
- Update codebase search description to emphasize English query requirements (thanks @ChuKhaLi!)
20+
321
## [3.18.5] - 2025-05-27
422

523
- Add thinking controls for Requesty (thanks @dtrugman!)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ Check out the [CHANGELOG](CHANGELOG.md) for detailed updates and fixes.
4949

5050
---
5151

52-
## 🎉 Roo Code 3.18 Released
52+
## 🎉 Roo Code 3.19 Released
5353

54-
Roo Code 3.18 brings powerful new features and improvements based on your feedback!
54+
Roo Code 3.19 brings intelligent context management improvements and enhanced user experience!
5555

56-
- **Gemini 2.5 Flash Preview Models** - Access the latest Gemini Flash models for faster and more efficient responses.
57-
- **Intelligent Context Condensing Button** - New button in task header lets you intelligently condense content with visual feedback.
58-
- **YAML Support for Mode Definitions** - Create and customize modes more easily with YAML support.
56+
- **Intelligent Context Condensing Enabled by Default** - Context condensing is now enabled by default with configurable settings for when automatic condensing happens.
57+
- **Manual Condensing Button** - New button in the task header allows you to manually trigger context condensing at any time.
58+
- **Enhanced Condensing Settings** - Fine-tune when and how automatic condensing occurs through the Context Settings panel.
5959

6060
---
6161

apps/website/.env.example

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# PostHog Analytics Configuration
2+
# Replace these values with your actual PostHog API key and host
3+
NEXT_PUBLIC_POSTHOG_KEY=your_posthog_api_key_here
4+
NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com
5+
6+
# Basin Form Endpoint for Static Form Submissions
7+
# Replace this with your actual Basin form endpoint (e.g., https://usebasin.com/f/your-form-id)
8+
NEXT_PUBLIC_BASIN_ENDPOINT=https://usebasin.com/f/your-form-id-here
9+
10+
TURSO_CONNECTION_URL=libsql://development-roo-code.aws-us-east-1.turso.io
11+
TURSO_AUTH_TOKEN=your-auth-token-here

apps/website/.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
!.env.example
36+
37+
# vercel
38+
.vercel
39+
40+
# typescript
41+
*.tsbuildinfo
42+
next-env.d.ts

apps/website/components.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.js",
8+
"css": "src/app/globals.css",
9+
"baseColor": "slate",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib",
18+
"hooks": "@/hooks"
19+
},
20+
"iconLibrary": "lucide"
21+
}

0 commit comments

Comments
 (0)