Skip to content

Commit 293fdf9

Browse files
authored
Merge pull request #2 from datacoves/DCV-3662
[DCV-3662] Update to 3.38.2
2 parents 2882d99 + 6207793 commit 293fdf9

1,643 files changed

Lines changed: 169713 additions & 52269 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.

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ src/node_modules
8080
!webview-ui/
8181
!packages/evals/.docker/entrypoints/runner.sh
8282
!packages/build/
83-
!packages/cloud/
8483
!packages/config-eslint/
8584
!packages/config-typescript/
8685
!packages/evals/

.env.sample

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ POSTHOG_API_KEY=key-goes-here
33
# Roo Code Cloud / Local Development
44
CLERK_BASE_URL=https://epic-chamois-85.clerk.accounts.dev
55
ROO_CODE_API_URL=http://localhost:3000
6+
ROO_CODE_PROVIDER_URL=http://localhost:8080/proxy/v1

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ src/assets/docs/demo.gif filter=lfs diff=lfs merge=lfs -text
66
*.snap linguist-generated=true
77

88
# Non-English translation files - mark as linguist-generated to exclude from GitHub language statistics
9+
# Package NLS files - mark non-English ones as generated
10+
src/package.nls.*.json linguist-generated=true
11+
# Exclude the base English file from being marked as generated
12+
src/package.nls.json linguist-generated=false
13+
914
# Root locales directory (contains only non-English translations)
1015
locales/** linguist-generated=true
1116

Lines changed: 66 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,66 @@
11
name: Bug Report
2-
description: Clearly report a bug with detailed repro steps
2+
description: Report a broken behavior in plain language with a minimal reproduction
33
labels: ["bug"]
4+
title: "[BUG] "
45
body:
56
- type: markdown
67
attributes:
78
value: |
8-
**Thanks for your report!** Please check existing issues first:
9-
👉 https://github.com/RooCodeInc/Roo-Code/issues
9+
Thank you for your report! Please search existing issues first:
10+
https://github.com/RooCodeInc/Roo-Code/issues
11+
12+
- type: textarea
13+
id: problem
14+
attributes:
15+
label: Problem (one or two sentences)
16+
description: Describe what went wrong in plain language.
17+
placeholder: 'Example: "Expected the task to start, but nothing happened and no message appeared."'
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: context
23+
attributes:
24+
label: Context (who is affected and when)
25+
description: Who sees this and in what situation? Keep it non-technical.
26+
placeholder: 'Example: "Happens to new users when starting a run from the New Run page with dark theme enabled."'
27+
validations:
28+
required: true
29+
30+
- type: textarea
31+
id: steps
32+
attributes:
33+
label: Reproduction steps
34+
description: Provide clear, numbered steps so we can reproduce.
35+
placeholder: |
36+
1) Environment/setup (OS, extension version, relevant settings)
37+
2) Exact actions (clicks, inputs, commands)
38+
3) What you observed after each step
39+
validations:
40+
required: true
41+
42+
- type: input
43+
id: expected
44+
attributes:
45+
label: Expected result
46+
placeholder: e.g., "The task starts and shows progress."
47+
validations:
48+
required: true
49+
50+
- type: input
51+
id: actual
52+
attributes:
53+
label: Actual result
54+
placeholder: e.g., "The button appears disabled and no progress is shown."
55+
validations:
56+
required: true
57+
58+
- type: textarea
59+
id: variations
60+
attributes:
61+
label: Variations tried (optional)
62+
description: Different browsers, devices, providers, or settings you tried.
63+
placeholder: e.g., "Tried Chrome/Firefox, disabling dark theme, switching providers."
1064

1165
- type: input
1266
id: version
@@ -19,17 +73,17 @@ body:
1973
- type: dropdown
2074
id: provider
2175
attributes:
22-
label: API Provider
76+
label: API Provider (optional)
2377
options:
2478
- Anthropic
25-
- AWS Bedrock
79+
- Amazon Bedrock
2680
- Chutes AI
2781
- DeepSeek
28-
- Glama
82+
- Featherless AI
83+
- Fireworks AI
2984
- Google Gemini
3085
- Google Vertex AI
3186
- Groq
32-
- Human Relay Provider
3387
- LiteLLM
3488
- LM Studio
3589
- Mistral AI
@@ -43,57 +97,23 @@ body:
4397
- VS Code Language Model API
4498
- xAI (Grok)
4599
- Not Applicable / Other
46-
validations:
47-
required: true
48100

49101
- type: input
50102
id: model
51103
attributes:
52-
label: Model Used
104+
label: Model Used (optional)
53105
description: Exact model name (e.g., Claude 3.7 Sonnet). Use N/A if irrelevant.
54-
validations:
55-
required: true
56106

57107
- type: textarea
58108
id: roo-code-tasks
59109
attributes:
60-
label: Roo Code Task Links (Optional)
61-
description: |
62-
If you have any publicly shared task links that demonstrate the issue, please paste them here.
63-
This helps maintainers understand the context.
64-
Example: https://app.roocode.com/share/task-id
110+
label: Roo Code Task Links (optional)
111+
description: If you have any publicly shared Roo Code task links that demonstrate the issue, paste them here.
65112
placeholder: Paste your Roo Code share links here, one per line
66113

67-
- type: textarea
68-
id: steps
69-
attributes:
70-
label: 🔁 Steps to Reproduce
71-
description: |
72-
Help us see what you saw. Give clear, numbered steps:
73-
74-
1. Setup (OS, extension version, settings)
75-
2. Exact actions (clicks, input, files, commands)
76-
3. What happened after each step
77-
78-
Think like you're writing a recipe. Without this, we can't reproduce the issue.
79-
validations:
80-
required: true
81-
82-
- type: textarea
83-
id: what-happened
84-
attributes:
85-
label: 💥 Outcome Summary
86-
description: |
87-
Recap what went wrong in one or two lines.
88-
89-
Example: "Expected code to run, but got an empty response and no error."
90-
placeholder: Expected ___, but got ___.
91-
validations:
92-
required: true
93-
94114
- type: textarea
95115
id: logs
96116
attributes:
97-
label: 📄 Relevant Logs or Errors (Optional)
98-
description: Paste API logs, terminal output, or errors here. Use triple backticks (```) for code formatting.
117+
label: Relevant logs or errors (optional)
118+
description: Paste relevant output or errors. Use triple backticks (```) for formatting.
99119
render: shell

0 commit comments

Comments
 (0)