diff --git a/CHANGELOG.md b/CHANGELOG.md index 904b698..62dae5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,6 @@ # Change Log -## Unreleased +## 2.0.0 - First release to the [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=eclipse-cdt.cdt-gdb-vscode) in addition to existing releases to the [Open VSX Registry](https://open-vsx.org/extension/eclipse-cdt/cdt-gdb-vscode). - Updated extension logo. - Updated user and repository documentation. -- Updated extension dependencies. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aa15a12..7e45ad8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ -# Contributing to VS Code Debug Extension for GDB +# Contributing to the CDT GDB Debug Adapter Extension for Visual Studio Code -Thanks for your interest in this project, part of the [Eclipse C/C++ Development Tools project](https://projects.eclipse.org/projects/tools.cdt) +Thanks for your interest in this project, part of [Eclipse CDT Cloud](https://eclipse.dev/cdt-cloud/). The source code can be found in the following repository: https://github.com/eclipse-cdt-cloud/cdt-gdb-vscode diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index e722e02..d1202b7 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -1,4 +1,4 @@ -# Developing the VS Code Debug Extension for GDB +# Developing the CDT GDB Debug Adapter Extension for Visual Studio Code This document provides instructions and hints for how to build and develop this extension. More information on contributions to this project can be found in the [contribution guidelines](/CONTRIBUTING.md). @@ -37,7 +37,7 @@ yarn link cdt-gdb-adapter You can set up a VS Code workspace that has both folders. Also make sure you have builds running in each folder to pick up updates (e.g. `yarn watch`). -The way to debug cdt-gdb-adapter works with the same principle as the example Mock Debug Adapter provided by VSCode. +The way to debug cdt-gdb-adapter works with the same principle as the example Mock Debug Adapter provided by VS Code. For detailed instructions please refer to [Development Setup for Mock Debug](https://code.visualstudio.com/api/extension-guides/debugger-extension#development-setup-for-mock-debug). The short step-by-step version is: diff --git a/README.md b/README.md index b47baf5..10a8169 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ -# VS Code Debug Extension for GDB - -> Note: This is a preliminary milestone release. Please help us by trying out this extension and providing feedback using [our github issues page](https://github.com/eclipse-cdt-cloud/cdt-gdb-vscode/issues). +# CDT GDB Debug Adapter Extension for Visual Studio Code This is a Visual Studio Code extension that supports debugging using gdb and any other debugger that supports the MI protocol. It is built by the experts that provide the gdb support in the Eclipse C/C++ IDE (CDT). diff --git a/package.json b/package.json index 3b5a7da..d44e4c5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,8 @@ { "name": "cdt-gdb-vscode", - "version": "1.0.4", - "description": "VS Code extension for CDT GDB debug adapter", + "version": "2.0.0", + "displayName": "CDT GDB Debug Adapter Extension", + "description": "CDT GDB debug adapter extension for Visual Studio Code", "publisher": "eclipse-cdt", "repository": { "type": "git", @@ -18,6 +19,13 @@ "engines": { "vscode": "^1.78.0" }, + "categories": [ + "Debuggers" + ], + "keywords": [ + "debug", + "GDB" + ], "activationEvents": [ "onDebug", "onCommand:cdt.gdb.memory.open",