Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit bea79b0

Browse files
committed
merge: resolve i18n chat.json conflicts with main (retiredProvider + contextHandoff)
2 parents 1997697 + e921f9d commit bea79b0

1,444 files changed

Lines changed: 56000 additions & 51788 deletions

File tree

Some content is hidden

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

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ body:
6464
attributes:
6565
value: |
6666
---
67-
Optional (for contributors): You can stop here if you're just proposing the improvement.
67+
Optional: You can stop here if you're just proposing the improvement.
6868
6969
- type: textarea
7070
id: acceptance-criteria

.github/pull_request_template.md

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

.github/workflows/docs-pages.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Deploy docs to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- "apps/docs/**"
9+
- ".github/workflows/docs-pages.yml"
10+
- ".github/actions/setup-node-pnpm/**"
11+
- "package.json"
12+
- "pnpm-lock.yaml"
13+
- "pnpm-workspace.yaml"
14+
workflow_dispatch:
15+
16+
concurrency:
17+
group: docs-pages
18+
cancel-in-progress: true
19+
20+
permissions:
21+
contents: read
22+
pages: write
23+
id-token: write
24+
25+
jobs:
26+
build:
27+
runs-on: ubuntu-latest
28+
steps:
29+
- name: Checkout code
30+
uses: actions/checkout@v4
31+
- name: Setup Node.js and pnpm
32+
uses: ./.github/actions/setup-node-pnpm
33+
with:
34+
install-args: "--frozen-lockfile"
35+
- name: Run type check
36+
run: pnpm --filter @roo-code/docs check-types
37+
- name: Run lint
38+
run: pnpm --filter @roo-code/docs lint
39+
- name: Build docs
40+
run: pnpm --filter @roo-code/docs build
41+
- name: Upload Pages artifact
42+
uses: actions/upload-pages-artifact@v3
43+
with:
44+
path: apps/docs/build
45+
46+
deploy:
47+
runs-on: ubuntu-latest
48+
needs: build
49+
environment:
50+
name: github-pages
51+
url: ${{ steps.deployment.outputs.page_url }}
52+
steps:
53+
- name: Deploy to GitHub Pages
54+
id: deployment
55+
uses: actions/deploy-pages@v4

.github/workflows/evals.yml

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

.github/workflows/update-contributors.yml

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

CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,6 @@
12741274
- Reposition Add Image button inside ChatTextArea (thanks @roomote!)
12751275
- Bring back a way to temporarily and globally pause auto-approve without losing your toggle state (thanks @brunobergher!)
12761276
- Makes text area buttons appear only when there's text (thanks @brunobergher!)
1277-
- CONTRIBUTING.md tweaks and issue template rewrite (thanks @hannesrudolph!)
12781277
- Bump axios from 1.9.0 to 1.12.0 (thanks @dependabot!)
12791278

12801279
## [3.28.2] - 2025-09-14
@@ -1734,7 +1733,6 @@
17341733
- Fix Claude model detection by name for API protocol selection (thanks @daniel-lxs!)
17351734
- Move marketplace icon from overflow menu to top navigation
17361735
- Optional setting to prevent completion with open todos
1737-
- Added YouTube to website footer (thanks @thill2323!)
17381736

17391737
## [3.23.14] - 2025-07-17
17401738

@@ -2128,7 +2126,6 @@
21282126
- Fix bug with context condensing in Amazon Bedrock
21292127
- Fix UTF-8 encoding in ExecaTerminalProcess (thanks @mr-ryan-james!)
21302128
- Set sidebar name bugfix (thanks @chrarnoldus!)
2131-
- Fix link to CONTRIBUTING.md in feature request template (thanks @cannuri!)
21322129
- Add task metadata to Unbound and improve caching logic (thanks @pugazhendhi-m!)
21332130

21342131
## [3.19.0] - 2025-05-29
@@ -3096,7 +3093,6 @@
30963093
- Ask and Architect modes can now edit markdown files
30973094
- Custom modes can now be restricted to specific file patterns (for example, a technical writer who can only edit markdown files 👋)
30983095
- Support for configuring the Bedrock provider with AWS Profiles
3099-
- New Roo Code community Discord at https://roocode.com/discord!
31003096

31013097
## [3.2.8]
31023098

@@ -3136,8 +3132,6 @@
31363132
- Create specialized assistants for any workflow
31373133
- Just type "Create a new mode for <X>" or visit the Prompts tab in the top menu to get started
31383134

3139-
Join us at https://www.reddit.com/r/RooCode to share your custom modes and be part of our next chapter!
3140-
31413135
## [3.1.7]
31423136

31433137
- DeepSeek-R1 support (thanks @philipnext!)
@@ -3185,12 +3179,8 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
31853179

31863180
## [3.0.1]
31873181

3188-
- Fix the reddit link and a small visual glitch in the chat input
3189-
31903182
## [3.0.0]
31913183

3192-
- This release adds chat modes! Now you can ask Roo Code questions about system architecture or the codebase without immediately jumping into writing code. You can even assign different API configuration profiles to each mode if you prefer to use different models for thinking vs coding. Would love feedback in the new Roo Code Reddit! https://www.reddit.com/r/RooCode
3193-
31943184
## [2.2.46]
31953185

31963186
- Only parse @-mentions in user input (not in files)

0 commit comments

Comments
 (0)