Skip to content

Commit e5a75ee

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/2122-editor-focus
# Conflicts: # locales/ca/README.md # locales/de/README.md # locales/es/README.md # locales/fr/README.md # locales/hi/README.md # locales/it/README.md # locales/ja/README.md # locales/ko/README.md # locales/nl/README.md # locales/pl/README.md # locales/pt-BR/README.md # locales/ru/README.md # locales/tr/README.md # locales/vi/README.md # locales/zh-CN/README.md # locales/zh-TW/README.md # src/package.json # src/package.nls.json
2 parents 883f3e9 + 53f94a7 commit e5a75ee

File tree

385 files changed

+15811
-6718
lines changed

Some content is hidden

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

385 files changed

+15811
-6718
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
33
"changelog": "./changelog-config.js",
44
"commit": false,
5-
"fixed": [],
5+
"fixed": [["roo-cline"]],
66
"linked": [],
77
"access": "restricted",
88
"baseBranch": "main",

.changeset/new-shoes-flow.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/

.env.sample

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
POSTHOG_API_KEY=key-goes-here
2+
3+
# Roo Code Cloud / Local Development
4+
CLERK_BASE_URL=https://epic-chamois-85.clerk.accounts.dev
5+
ROO_CODE_API_URL=http://localhost:3000

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
value: |
88
**Thank you for proposing a detailed feature for Roo Code!**
99
10-
This template is for submitting specific, actionable proposals that you or others intend to implement after discussion and approval. It's a key part of our [Issue-First Approach](../../CONTRIBUTING.md).
10+
This template is for submitting specific, actionable proposals that you or others intend to implement after discussion and approval. It's a key part of our [Issue-First Approach](https://github.com/RooCodeInc/Roo-Code/blob/main/CONTRIBUTING.md).
1111
1212
- **For general ideas or less defined suggestions**, please use [GitHub Discussions](https://github.com/RooCodeInc/Roo-Code/discussions/categories/feature-requests?discussions_q=is%3Aopen+category%3A%22Feature+Requests%22+sort%3Atop) first.
1313
- **Before submitting**, please search existing [GitHub Issues](https://github.com/RooCodeInc/Roo-Code/issues) and [Discussions](https://github.com/RooCodeInc/Roo-Code/discussions) to avoid duplicates.

.github/workflows/code-qa.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,3 @@ jobs:
133133
- name: Run integration tests
134134
working-directory: apps/vscode-e2e
135135
run: xvfb-run -a pnpm test:ci
136-
137-
unit-test:
138-
needs: [platform-unit-test] # [platform-unit-test, integration-test]
139-
runs-on: ubuntu-latest
140-
steps:
141-
- name: NO-OP
142-
run: echo "All tests passed."

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "CodeQL Advanced"
1+
name: CodeQL Advanced
22

33
on:
44
push:

.github/workflows/marketplace-publish.yml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Publish Extension
2+
23
on:
34
pull_request:
45
types: [closed]
@@ -45,15 +46,22 @@ jobs:
4546
run: |
4647
current_package_version=$(node -p "require('./src/package.json').version")
4748
pnpm build
48-
package=$(unzip -l bin/roo-cline-${current_package_version}.vsix)
49-
echo "$package" | grep -q "extension/package.json" || exit 1
50-
echo "$package" | grep -q "extension/package.nls.json" || exit 1
51-
echo "$package" | grep -q "extension/dist/extension.js" || exit 1
52-
echo "$package" | grep -q "extension/webview-ui/audio/celebration.wav" || exit 1
53-
echo "$package" | grep -q "extension/webview-ui/build/assets/index.js" || exit 1
54-
echo "$package" | grep -q "extension/assets/codicons/codicon.ttf" || exit 1
55-
echo "$package" | grep -q "extension/assets/vscode-material-icons/icons/3d.svg" || exit 1
56-
echo "$package" | grep -q ".env" || exit 1
49+
50+
# Save VSIX contents to a temporary file to avoid broken pipe issues.
51+
unzip -l bin/roo-cline-${current_package_version}.vsix > /tmp/roo-code-vsix-contents.txt
52+
53+
# Check for required files.
54+
grep -q "extension/package.json" /tmp/roo-code-vsix-contents.txt || exit 1
55+
grep -q "extension/package.nls.json" /tmp/roo-code-vsix-contents.txt || exit 1
56+
grep -q "extension/dist/extension.js" /tmp/roo-code-vsix-contents.txt || exit 1
57+
grep -q "extension/webview-ui/audio/celebration.wav" /tmp/roo-code-vsix-contents.txt || exit 1
58+
grep -q "extension/webview-ui/build/assets/index.js" /tmp/roo-code-vsix-contents.txt || exit 1
59+
grep -q "extension/assets/codicons/codicon.ttf" /tmp/roo-code-vsix-contents.txt || exit 1
60+
grep -q "extension/assets/vscode-material-icons/icons/3d.svg" /tmp/roo-code-vsix-contents.txt || exit 1
61+
grep -q ".env" /tmp/roo-code-vsix-contents.txt || exit 1
62+
63+
# Clean up temporary file.
64+
rm /tmp/roo-code-vsix-contents.txt
5765
- name: Create and Push Git Tag
5866
run: |
5967
current_package_version=$(node -p "require('./src/package.json').version")

.github/workflows/nightly-publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Nightly Publish
22

33
on:
4-
# push:
5-
# branches: [main]
64
workflow_run:
75
workflows: ["Code QA Roo Code"]
86
types:

.husky/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $pnpm_cmd run check-types
2222
NEW_CHANGESETS=$(find .changeset -name "*.md" ! -name "README.md" | wc -l | tr -d ' ')
2323
echo "Changeset files: $NEW_CHANGESETS"
2424

25-
if [ "$NEW_CHANGESETS" == "0" ]; then
25+
if [ "$NEW_CHANGESETS" = "0" ]; then
2626
echo "-------------------------------------------------------------------------------------"
2727
echo "Changes detected. Please run 'pnpm changeset' to create a changeset if applicable."
2828
echo "-------------------------------------------------------------------------------------"

0 commit comments

Comments
 (0)