Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceFolder}/src"],
"args": ["--extensionDevelopmentPath=${workspaceFolder}/src", "${workspaceFolder}"],
"sourceMaps": true,
"outFiles": ["${workspaceFolder}/src/dist/**/*.js"],
"preLaunchTask": "${defaultBuildTask}",
"env": {
"NODE_ENV": "development",
"NODE_ENV": "production",
"VSCODE_DEBUG_MODE": "true"
},
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
Expand Down
69 changes: 4 additions & 65 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,74 +1,13 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"label": "watch",
"dependsOn": ["watch:webview", "watch:bundle", "watch:tsc"],
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "watch:webview",
"type": "shell",
"command": "pnpm --filter @roo-code/vscode-webview dev",
"group": "build",
"problemMatcher": {
"owner": "vite",
"pattern": {
"regexp": "^$"
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*VITE.*",
"endsPattern": ".*Local:.*"
}
},
"isBackground": true,
"presentation": {
"group": "watch",
"reveal": "always"
}
},
{
"label": "watch:bundle",
"type": "shell",
"command": "npx turbo watch:bundle",
"group": "build",
"problemMatcher": {
"owner": "esbuild",
"pattern": {
"regexp": "^$"
},
"background": {
"activeOnStart": true,
"beginsPattern": "esbuild-problem-matcher#onStart",
"endsPattern": "esbuild-problem-matcher#onEnd"
}
},
"isBackground": true,
"presentation": {
"group": "watch",
"reveal": "always"
}
},
{
"label": "watch:tsc",
"type": "shell",
"command": "npx turbo watch:tsc",
"group": "build",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"group": "watch",
"reveal": "always"
}
"command": "echo",
"args": ["pre-built"],
"group": { "kind": "build", "isDefault": true },
"presentation": { "reveal": "never" }
}
]
}
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,16 @@
},
"pnpm": {
"onlyBuiltDependencies": [
"@vscode/ripgrep"
"@tailwindcss/oxide",
"@vscode/ripgrep",
"@vscode/vsce-sign",
"better-sqlite3",
"core-js",
"esbuild",
"keytar",
"protobufjs",
"puppeteer-chromium-resolver",
"sharp"
],
"overrides": {
"tar-fs": ">=3.1.1",
Expand Down
Binary file modified src/assets/icons/icon-nightly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 1 addition & 12 deletions src/assets/icons/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/icons/panel_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/icons/panel_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async function checkWorktreeAutoOpen(
// Open the Roo Code sidebar with a slight delay to ensure UI is ready
setTimeout(async () => {
try {
await vscode.commands.executeCommand("roo-cline.plusButtonClicked")
await vscode.commands.executeCommand(`${Package.name}.plusButtonClicked`)
} catch (error) {
outputChannel.appendLine(
`[Worktree] Error auto-opening sidebar: ${error instanceof Error ? error.message : String(error)}`,
Expand Down Expand Up @@ -355,6 +355,15 @@ export async function activate(context: vscode.ExtensionContext) {
registerCodeActions(context)
registerTerminalActions(context)

// Auto-open the Joe-Code sidebar on startup.
setTimeout(async () => {
try {
await vscode.commands.executeCommand(`workbench.view.extension.joe-code-ActivityBar`)
} catch (error) {
// Silently fail if unable to auto-open sidebar.
}
}, 1000)

// Allows other extensions to activate once Roo is ready.
vscode.commands.executeCommand(`${Package.name}.activationCompleted`)

Expand Down
Binary file added src/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading