Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -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).

Expand Down Expand Up @@ -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:
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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).

Expand Down
12 changes: 10 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -18,6 +19,13 @@
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Debuggers"
],
"keywords": [
"debug",
"GDB"
],
"activationEvents": [
"onDebug",
"onCommand:cdt.gdb.memory.open",
Expand Down
Loading