Skip to content

Commit 5988236

Browse files
committed
V0.4.8.pre3
1 parent 0210c91 commit 5988236

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
ChangeLog
22

3+
#V0.4.8
4+
* Store register/peripheral settings in the appropriate folder instead of the first folder
5+
* Kill gdb-server if the user kills/exits gdb without using the proper disconnect/Stop buttons/process/commands
6+
* 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.
7+
38
#V0.4.7
49
* Fixed a regression for STLink gdbserver. It was in fact accidentally working in prior releases. The real bug is now fixed. Issue #494
510
* 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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.4.8-pre2",
2+
"version": "0.4.8-pre3",
33
"activationEvents": [
44
"onDebugResolve:cortex-debug"
55
],

src/frontend/views/peripheral.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class PeripheralTreeProvider implements vscode.TreeDataProvider<Periphera
170170
'.vscode', '.cortex-debug.peripherals.state.json');
171171
this.saveState(fspath);
172172
}
173-
this.session = null;
173+
this.session = null;
174174
this.peripherials = [];
175175
this.loaded = false;
176176
this._onDidChangeTreeData.fire(undefined);

0 commit comments

Comments
 (0)