diff --git a/README.md b/README.md index f2cf691..2784e36 100644 --- a/README.md +++ b/README.md @@ -7,33 +7,7 @@ 1. Bump the version in `package.json` 2. Update the version number in the `files` list in `package.json` -### Packaging -1. Bump the version in `package.json` -2. Remove the old VSIX file: - ```bash - rm bin/roo-cline-*.vsix - ``` -3. Build the VSIX file: - ```bash - npm run vsix - ``` -4. The new VSIX file will be created in the `bin/` directory -5. Commit the new VSIX file to git: - ```bash - git add bin/*.vsix - git commit -m "chore: update VSIX to version " - ``` - -### Installation -Install the plugin using the Cursor CLI: - -```bash -cursor --install-extension bin/roo-cline-.vsix -``` - -Note: The VSIX file is checked into the git repository's `bin/` directory for easy distribution. - -After installation, Roo Cline will appear in your Cursor's installed extensions list. You can verify this by opening Cursor's Extensions panel (Cmd/Ctrl+Shift+X) and checking under the "Installed" section. +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. --- diff --git a/assets/icons/icon.png b/assets/icons/icon.png deleted file mode 100644 index e8736aa..0000000 Binary files a/assets/icons/icon.png and /dev/null differ diff --git a/assets/icons/icon_Roo.png b/assets/icons/icon_Roo.png deleted file mode 100644 index 14ee4f4..0000000 Binary files a/assets/icons/icon_Roo.png and /dev/null differ diff --git a/assets/icons/robot_panel_dark.png b/assets/icons/robot_panel_dark.png deleted file mode 100644 index 0ed7cc6..0000000 Binary files a/assets/icons/robot_panel_dark.png and /dev/null differ diff --git a/assets/icons/robot_panel_light.png b/assets/icons/robot_panel_light.png deleted file mode 100644 index bbc7fca..0000000 Binary files a/assets/icons/robot_panel_light.png and /dev/null differ diff --git a/assets/icons/rocket.png b/assets/icons/rocket.png new file mode 100644 index 0000000..1ffd65e Binary files /dev/null and b/assets/icons/rocket.png differ diff --git a/package-lock.json b/package-lock.json index 8699801..38a7b57 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "roo-cline", - "version": "2.1.6", + "version": "2.1.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "roo-cline", - "version": "2.1.6", + "version": "2.1.7", "dependencies": { "@anthropic-ai/bedrock-sdk": "^0.10.2", "@anthropic-ai/sdk": "^0.26.0", diff --git a/package.json b/package.json index 241faf1..d7b1f02 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,14 @@ { "name": "roo-cline", "displayName": "Roo Cline", - "description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.", + "description": "A fork of Cline, an autonomous coding agent, with some added experimental configuration and automation features.", "publisher": "RooVeterinaryInc", - "version": "2.1.6", + "version": "2.1.7", "files": [ - "bin/roo-cline-2.1.6.vsix", - "assets/icons/icon_Roo.png" + "bin/roo-cline-2.1.7.vsix", + "assets/icons/rocket.png" ], - "icon": "assets/icons/icon_Roo.png", + "icon": "assets/icons/rocket.png", "galleryBanner": { "color": "#617A91", "theme": "dark" @@ -23,7 +23,7 @@ "type": "git", "url": "https://github.com/RooVetGit/Roo-Cline" }, - "homepage": "https://cline.bot", + "homepage": "https://github.com/RooVetGit/Roo-Cline", "categories": [ "AI", "Chat", @@ -53,7 +53,7 @@ { "id": "roo-cline-ActivityBar", "title": "Roo Cline", - "icon": "$(robot)" + "icon": "$(rocket)" } ] },