Skip to content

Commit a422ca4

Browse files
committed
Merge branch 'main' of https://github.com/trypear/PearAI-Roo-Code into set-apiconfig-cmd-2
2 parents 833c1b1 + dba9f34 commit a422ca4

86 files changed

Lines changed: 10705 additions & 12173 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.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"roo-cline": patch
33
---
44

5-
v3.3.5
5+
v3.3.7

.changeset/tame-walls-kiss.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 an exponential backoff for API retries

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# These owners will be the default owners for everything in the repo
2-
* @stea9499 @ColemanRoo @mrubens
2+
* @stea9499 @ColemanRoo @mrubens @cte

.github/workflows/pages.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Deploy Jekyll site to Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
# Build job
19+
build:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v4
24+
- name: Setup Pages
25+
uses: actions/configure-pages@v5
26+
- name: Build with Jekyll
27+
uses: actions/jekyll-build-pages@v1
28+
with:
29+
source: ./docs/
30+
destination: ./_site
31+
- name: Upload artifact
32+
uses: actions/upload-pages-artifact@v3
33+
34+
# Deployment job
35+
deploy:
36+
environment:
37+
name: github-pages
38+
url: ${{ steps.deployment.outputs.page_url }}
39+
runs-on: ubuntu-latest
40+
needs: build
41+
steps:
42+
- name: Deploy to GitHub Pages
43+
id: deployment
44+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ roo-cline-*.vsix
1515
# Test environment
1616
.test_env
1717
.vscode-test/
18-
.aider*
19-
.env
18+
19+
# Docs
20+
docs/_site/

.vscode/extensions.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"recommendations": [
55
"dbaeumer.vscode-eslint",
66
"connor4312.esbuild-problem-matchers",
7-
"ms-vscode.extension-test-runner"
7+
"ms-vscode.extension-test-runner",
8+
"csstools.postcss",
9+
"bradlc.vscode-tailwindcss",
10+
"tobermory.es6-string-html"
811
]
912
}

CHANGELOG.md

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

3+
## [3.3.6]
4+
5+
- Add a "new task" tool that allows Roo to start new tasks with an initial message and mode
6+
- Fix a bug that was preventing the use of qwen-max and potentially other OpenAI-compatible providers (thanks @Szpadel!)
7+
- Add support for perplexity/sonar-reasoning (thanks @Szpadel!)
8+
- Visual fixes to dropdowns (thanks @psv2522!)
9+
- Add the [Unbound](https://getunbound.ai/) provider (thanks @vigneshsubbiah16!)
10+
11+
## [3.3.5]
12+
13+
- Make information about the conversation's context window usage visible in the task header for humans and in the environment for models (thanks @MuriloFP!)
14+
- Add checkboxes to auto-approve mode switch requests (thanks @MuriloFP!)
15+
- Add new experimental editing tools `insert_content` (for inserting blocks of text at a line number) and `search_and_replace` (for replacing all instances of a phrase or regex) to complement diff editing and whole file editing (thanks @samhvw8!)
16+
- Improved DeepSeek R1 support by capturing reasoning from DeepSeek API as well as more OpenRouter variants, not using system messages, and fixing a crash on empty chunks. Still depends on the DeepSeek API staying up but we'll be in a better place when it does! (thanks @Szpadel!)
17+
318
## [3.3.4]
419

520
- Add per-server MCP network timeout configuration ranging from 15 seconds to an hour

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,15 @@ Roo Code is available on:
255255
```bash
256256
code --install-extension bin/roo-code-4.0.0.vsix
257257
```
258-
5. **Debug**:
258+
5. **Start the webview (Vite/React app with HMR)**:
259+
```bash
260+
npm run dev
261+
```
262+
6. **Debug**:
259263
- Press `F5` (or **Run****Start Debugging**) in VSCode to open a new session with Roo Code loaded.
260264

265+
Changes to the webview will appear immediately. Changes to the core extension will require a restart of the extension host.
266+
261267
We use [changesets](https://github.com/changesets/changesets) for versioning and publishing. Check our `CHANGELOG.md` for release notes.
262268

263269
---

docs/Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages', group: :jekyll_plugins

0 commit comments

Comments
 (0)