Skip to content

Commit 5e49421

Browse files
committed
Merge https://github.com/RooVetGit/Roo-Code into truncation-updates
2 parents 3492f79 + fa80f4e commit 5e49421

Some content is hidden

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

51 files changed

+2744
-858
lines changed

.changeset/blue-masks-camp.md

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

.github/workflows/discord-pr-notify.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,16 @@ jobs:
1111
if: github.head_ref != 'changeset-release/main'
1212
steps:
1313
- name: Send Discord Notification
14-
uses: Ilshidur/action-discord@master
15-
with:
16-
args: |
17-
🚀 **New PR:** ${{ github.event.pull_request.title }}
18-
🔗 <${{ github.event.pull_request.html_url }}>
19-
👤 **Author:** ${{ github.event.pull_request.user.login }}
20-
env:
21-
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
14+
run: |
15+
PAYLOAD=$(jq -n \
16+
--arg title "${{ github.event.pull_request.title }}" \
17+
--arg url "${{ github.event.pull_request.html_url }}" \
18+
--arg author "${{ github.event.pull_request.user.login }}" \
19+
'{
20+
content: ("🚀 **New PR:** " + $title + "\n🔗 <" + $url + ">\n👤 **Author:** " + $author),
21+
thread_name: ($title + " by " + $author)
22+
}')
23+
24+
curl -X POST "${{ secrets.DISCORD_WEBHOOK }}" \
25+
-H "Content-Type: application/json" \
26+
-d "$PAYLOAD"

.github/workflows/pages.yml

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

.vscode/launch.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
"type": "extensionHost",
1111
"request": "launch",
1212
"runtimeExecutable": "${execPath}",
13-
"args": [
14-
"--extensionDevelopmentPath=${workspaceFolder}",
15-
],
13+
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
1614
"sourceMaps": true,
1715
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
18-
"preLaunchTask": "compile",
16+
"preLaunchTask": "debug-mode",
1917
"env": {
2018
"NODE_ENV": "development",
2119
"VSCODE_DEBUG_MODE": "true"
2220
},
23-
"resolveSourceMapLocations": [
24-
"${workspaceFolder}/**",
25-
"!**/node_modules/**"
26-
]
27-
},
21+
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
22+
"presentation": {
23+
"hidden": false,
24+
"group": "tasks",
25+
"order": 1
26+
}
27+
}
2828
]
2929
}

.vscode/tasks.json

Lines changed: 38 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"label": "compile",
88
"type": "npm",
99
"script": "compile",
10-
"dependsOn": ["npm: build:webview"],
1110
"group": {
1211
"kind": "build",
1312
"isDefault": true
@@ -30,56 +29,75 @@
3029
}
3130
},
3231
{
32+
"label": "debug-mode",
33+
"dependsOn": ["compile", "npm: dev"],
34+
"group": {
35+
"kind": "build",
36+
"isDefault": false
37+
},
38+
"dependsOrder": "parallel",
39+
"presentation": {
40+
"reveal": "always",
41+
"panel": "new"
42+
}
43+
},
44+
{
45+
"label": "npm: dev",
3346
"type": "npm",
34-
"script": "build:webview",
47+
"script": "dev",
3548
"group": "build",
36-
"problemMatcher": [],
49+
"problemMatcher": {
50+
"owner": "vite",
51+
"pattern": {
52+
"regexp": "^$"
53+
},
54+
"background": {
55+
"activeOnStart": true,
56+
"beginsPattern": ".*VITE.*",
57+
"endsPattern": ".*Local:.*"
58+
}
59+
},
3760
"isBackground": true,
38-
"label": "npm: build:webview",
3961
"presentation": {
4062
"group": "watch",
4163
"reveal": "never"
4264
}
4365
},
4466
{
67+
"label": "npm: build:webview",
4568
"type": "npm",
46-
"script": "watch:esbuild",
69+
"script": "build:webview",
4770
"group": "build",
48-
"problemMatcher": "$esbuild-watch",
71+
"problemMatcher": [],
4972
"isBackground": true,
50-
"label": "npm: watch:esbuild",
5173
"presentation": {
5274
"group": "watch",
5375
"reveal": "never"
5476
}
5577
},
5678
{
79+
"label": "npm: watch:esbuild",
5780
"type": "npm",
58-
"script": "watch:tsc",
81+
"script": "watch:esbuild",
5982
"group": "build",
60-
"problemMatcher": "$tsc-watch",
83+
"problemMatcher": "$esbuild-watch",
6184
"isBackground": true,
62-
"label": "npm: watch:tsc",
6385
"presentation": {
6486
"group": "watch",
6587
"reveal": "never"
6688
}
6789
},
6890
{
91+
"label": "npm: watch:tsc",
6992
"type": "npm",
70-
"script": "watch-tests",
93+
"script": "watch:tsc",
94+
"group": "build",
7195
"problemMatcher": "$tsc-watch",
7296
"isBackground": true,
7397
"presentation": {
74-
"reveal": "never",
75-
"group": "watchers"
76-
},
77-
"group": "build"
78-
},
79-
{
80-
"label": "tasks: watch-tests",
81-
"dependsOn": ["npm: watch", "npm: watch-tests"],
82-
"problemMatcher": []
98+
"group": "watch",
99+
"reveal": "never"
100+
}
83101
}
84102
]
85103
}

CHANGELOG.md

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

3+
## [3.3.11]
4+
5+
- Safer shell profile path check to avoid an error on Windows
6+
- Autocomplete for slash commands
7+
8+
## [3.3.10]
9+
10+
- Add shortcuts to the currently open tabs in the "Add File" section of @-mentions (thanks @olup!)
11+
- Fix pricing for o1-mini (thanks @hesara!)
12+
- Fix context window size calculation (thanks @MuriloFP!)
13+
- Improvements to experimental unified diff strategy and selection logic in code actions (thanks @nissa-seru!)
14+
- Enable markdown formatting in o3 and o1 (thanks @nissa-seru!)
15+
- Improved terminal shell detection logic (thanks @canvrno for the original and @nissa-seru for the port!)
16+
- Fix occasional errors when switching between API profiles (thanks @samhvw8!)
17+
- Visual improvements to the list of modes on the prompts tab
18+
- Fix double-scrollbar in provider dropdown
19+
- Visual cleanup to the list of modes on the prompts tab
20+
- Improvements to the default prompts for Architect and Ask mode
21+
- Allow switching between modes with slash messages like `/ask why is the sky blue?`
22+
323
## [3.3.9]
424

525
- Add o3-mini-high and o3-mini-low

docs/Gemfile

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

0 commit comments

Comments
 (0)