diff --git a/vscode-bugbuddy/README.md b/vscode-bugbuddy/README.md index f57b87c..a8cc8ba 100644 --- a/vscode-bugbuddy/README.md +++ b/vscode-bugbuddy/README.md @@ -1,6 +1,6 @@ # vscode-bugbuddy -Official VSCode client extension for BugBuddy. +Official VSCode client extension for BugBuddy. BugBuddy is a tool for translating programming errors into human-readable messages. It is designed to help beginners understand the errors they encounter while learning to code. ## Features @@ -17,12 +17,15 @@ This extension requires that BugBuddy is installed and running on your machine. This extension contributes the following settings: * `bugbuddy.path`: Path to the BugBuddy server. +* `bugbuddy.dataDirPath`: Path to the BugBuddy data directory. +* `bugbuddy.daemonPort`: Port to connect to the BugBuddy daemon server. -## Known Issues +## Release Notes -Calling out known issues can help limit users opening duplicate issues against your extension. +### 0.2.0 -## Release Notes +- Add ability to get/set BugBuddy data directory. +- Add ability to connect to a BugBuddy daemon server with a custom port. ### 0.1.0 diff --git a/vscode-bugbuddy/package.json b/vscode-bugbuddy/package.json index 9dbbd33..fa0bf22 100644 --- a/vscode-bugbuddy/package.json +++ b/vscode-bugbuddy/package.json @@ -8,7 +8,7 @@ "type": "git", "url": "https://github.com/nedpals/bugbuddy/tree/master/vscode-bugbuddy" }, - "version": "0.1.0", + "version": "0.2.0", "engines": { "vscode": "^1.76.2" },