Skip to content

Commit

Permalink
restart change snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
haneefdm committed Jul 6, 2024
1 parent 85465ad commit 9922d63
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# ChangeLog

# V1.12.2-pre1
* MAJOR Change. The `Restart` button functionality has been completely changed. This was not a stable function and VSCode kept changing its definition over the years multiple times. However they provide a default functionality, so the `Restart` button still works but very differently. As of today, VSCode seems to do the following (and this extension is not involved)
* It Stops the current session. This means the current GDB and any GDB-server (openocd, stlink, etc. are also terminated)
* If then Starts a new session using the same configuration.
* But, we are not sure it re-reads your launch.json
* If you have a `preLaunchTask`, it will be executed
* Since to us, this looks like a brand new session, both GDB and the GDB-server are re-started. Just like any other 'Start' the symbols are re-read and device may get re-programmed
* All of this can be slow but this is VSCode desires and there is no point us trying to duplicate what they have done or are going to do in the future
* This is the reason why we implemented the 'Reset' button.

# V1.12.1
* Fix for [#923: Local variables with same name between functions not tracking or updating context](https://github.com/Marus/cortex-debug/issues/923)
* Fix for [#740: Missing RTT Timestamp in logfile](https://github.com/Marus/cortex-debug/issues/740)
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": "1.12.2-pre",
"version": "1.12.2-pre1",
"preview": false,
"activationEvents": [
"onDebugResolve:cortex-debug",
Expand Down

0 comments on commit 9922d63

Please sign in to comment.