Skip to content
Closed
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
20 changes: 10 additions & 10 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "22"
- name: Cache NPM Install
id: cache-npm
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ./node_modules
key: npm-${{ hashFiles('./package-lock.json') }}
Expand All @@ -32,14 +32,14 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "22"
- name: Load NPM install
id: cache-npm
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ./node_modules
key: npm-${{ hashFiles('./package-lock.json') }}
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Package Binary
run: ./node_modules/vsce/vsce package -o cortex-debug.vsix
- name: Upload Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: cortex-debug.vsix
path: ./cortex-debug.vsix
Expand All @@ -58,14 +58,14 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "22"
- name: Load NPM install
id: cache-npm
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ./node_modules
key: npm-${{ hashFiles('./package-lock.json') }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# ChangeLog

# V2.0.0-pre1
* Forked code from Marus and started to maintain it at https://github.com/simonsso/cortex-debug/
* Removed telemetery


# V1.13.0-pre9
* Backed out change where we try "monitor exit". See [Issue #1185](https://github.com/Marus/cortex-debug/issues/1185)
* Increased server temout to 10 mins
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,6 @@ Now, launch a debug session and you wil be able to use the primary VSCode window

## Acknowledgments

This is a fork from Marcel Ball's cortex-debug https://github.com/Marus/cortex-debug.git
Parts of this extension are based upon Jan Jurzitza's (WebFreak) code-debug extension (https://github.com/WebFreak001/code-debug).<br>
His project provided an excellent base for GDB MI parsing and interaction.
Loading