Skip to content

Commit

Permalink
V0.4.8.pre3
Browse files Browse the repository at this point in the history
  • Loading branch information
haneefdm committed Oct 8, 2021
1 parent 0210c91 commit 5988236
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
ChangeLog

#V0.4.8
* Store register/peripheral settings in the appropriate folder instead of the first folder
* Kill gdb-server if the user kills/exits gdb without using the proper disconnect/Stop buttons/process/commands
* VSCode was terminating Cortex-Debug before it was done. st-util exit behavior was also not clean as it did not exit on a disconnect.

#V0.4.7
* Fixed a regression for STLink gdbserver. It was in fact accidentally working in prior releases. The real bug is now fixed. Issue #494
* We may have **finally** found a way to exit OpenOCD without having to kill it and OpenOCD not hanging around after the session ends. This is of course dependent on OpenOCD behaving as documented. Thanks to #482 and @bohdan-tymkiv for a solution
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.4.8-pre2",
"version": "0.4.8-pre3",
"activationEvents": [
"onDebugResolve:cortex-debug"
],
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/views/peripheral.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class PeripheralTreeProvider implements vscode.TreeDataProvider<Periphera
'.vscode', '.cortex-debug.peripherals.state.json');
this.saveState(fspath);
}
this.session = null;
this.session = null;
this.peripherials = [];
this.loaded = false;
this._onDidChangeTreeData.fire(undefined);
Expand Down

0 comments on commit 5988236

Please sign in to comment.