Skip to content

Commit 000eed6

Browse files
committed
Merge branch 'main' of https://github.com/RooVetGit/Roo-Cline into feature/pupeteer-updates
2 parents 1cdf981 + da31a23 commit 000eed6

File tree

30 files changed

+1474
-1574
lines changed

30 files changed

+1474
-1574
lines changed

.github/workflows/marketplace-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ jobs:
2828
VSCE_PAT: ${{ secrets.VSCE_PAT }}
2929
run: |
3030
current_package_version=$(node -p "require('./package.json').version")
31-
npm run vsix
3231
npm run publish:marketplace
3332
echo "Successfully published version $current_package_version to VS Code Marketplace"

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ node_modules
77

88
# Builds
99
bin
10+
roo-cline-*.vsix
11+
12+
# Prompts
13+
prompts
1014

11-
prompts

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Roo Cline Changelog
22

3+
## [2.1.15]
4+
5+
- Incorporate dbasclpy's [PR](https://github.com/RooVetGit/Roo-Cline/pull/54) to add support for gemini-exp-1206
6+
- Make it clear that diff editing is very experimental
7+
8+
## [2.1.14]
9+
10+
- Fix bug where diffs were not being applied correctly and try Aider's [unified diff prompt](https://github.com/Aider-AI/aider/blob/3995accd0ca71cea90ef76d516837f8c2731b9fe/aider/coders/udiff_prompts.py#L75-L105)
11+
- If diffs are enabled, automatically reject write_to_file commands that lead to truncated output
12+
13+
## [2.1.13]
14+
15+
- Fix https://github.com/RooVetGit/Roo-Cline/issues/50 where sound effects were not respecting settings
16+
17+
## [2.1.12]
18+
19+
- Incorporate JoziGila's [PR](https://github.com/cline/cline/pull/158) to add support for editing through diffs
20+
21+
## [2.1.11]
22+
23+
- Incorporate lloydchang's [PR](https://github.com/RooVetGit/Roo-Cline/pull/42) to add support for OpenRouter compression
24+
325
## [2.1.10]
426

527
- Incorporate HeavenOSK's [PR](https://github.com/cline/cline/pull/818) to add sound effects to Cline
@@ -35,4 +57,4 @@
3557
## [2.1.2]
3658

3759
- Support for auto-approval of write operations and command execution
38-
- Support for .clinerules custom instructions
60+
- Support for .clinerules custom instructions

README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
# Roo-Cline
2+
A fork of Cline, an autonomous coding agent, with some added experimental configuration and automation features.
3+
- Auto-approval capabilities for commands, write, and browser operations
4+
- Support for .clinerules per-project custom instructions
5+
- Ability to run side-by-side with Cline
6+
- Code is unit-tested
7+
- Support for playing sound effects
8+
- Support for OpenRouter compression
9+
- Support for editing through diffs (very experimental)
10+
- Support for gemini-exp-1206
11+
12+
Here's an example of Roo-Cline autonomously creating a snake game with "Always approve write operations" and "Always approve browser actions" turned on:
13+
14+
https://github.com/user-attachments/assets/c2bb31dc-e9b2-4d73-885d-17f1471a4987
215

316
### Installation
417
If you want to install the latest extension from the Marketplace, just search for "Roo Cline" in your VSCode-compatible editor's Extensions panel (Cmd/Ctrl+Shift+X).
518

6-
After installation, Roo Cline will appear in your VSCode-compatible editor's installed extensions list. You can verify this by opening your editor's Extensions panel (Cmd/Ctrl+Shift+X) and checking under the "Installed" section.
719

820
### Testing Builds
921
1. Install dependencies:
@@ -86,10 +98,10 @@ Each browser action provides feedback through screenshots and console logs, allo
8698
<a href="https://discord.gg/cline" target="_blank"><strong>Join the Discord</strong></a>
8799
</td>
88100
<td align="center">
89-
<a href="https://github.com/cline/cline/wiki" target="_blank"><strong>Docs</strong></a>
101+
<a href="https://github.com/cline/cline/discussions/categories/feature-requests?discussions_q=is%3Aopen+category%3A%22Feature+Requests%22+sort%3Atop" target="_blank"><strong>Feature Requests</strong></a>
90102
</td>
91103
<td align="center">
92-
<a href="https://github.com/cline/cline/discussions/categories/feature-requests?discussions_q=is%3Aopen+category%3A%22Feature+Requests%22+sort%3Atop" target="_blank"><strong>Feature Requests</strong></a>
104+
<a href="https://cline.bot/join-us" target="_blank"><strong>We're Hiring!</strong></a>
93105
</td>
94106
</tbody>
95107
</table>
@@ -171,7 +183,7 @@ Try asking Cline to "test the app", and watch as he runs a command like `npm run
171183

172184
## Contributing
173185

174-
To contribute to the project, start by exploring [open issues](https://github.com/cline/cline/issues) or checking our [feature request board](https://github.com/cline/cline/discussions/categories/feature-requests?discussions_q=is%3Aopen+category%3A%22Feature+Requests%22+sort%3Atop). We'd also love to have you join our [Discord](https://discord.gg/cline) to share ideas and connect with other contributors.
186+
To contribute to the project, start by exploring [open issues](https://github.com/cline/cline/issues) or checking our [feature request board](https://github.com/cline/cline/discussions/categories/feature-requests?discussions_q=is%3Aopen+category%3A%22Feature+Requests%22+sort%3Atop). We'd also love to have you join our [Discord](https://discord.gg/cline) to share ideas and connect with other contributors. If you're interested in joining the team, check out our [careers page](https://cline.bot/join-us)!
175187

176188
<details>
177189
<summary>Local Development Instructions</summary>

bin/roo-cline-2.1.0.vsix

-23.8 MB
Binary file not shown.

0 commit comments

Comments
 (0)