From ad572f2773c4819a5168740c1bd714cbea0817cb Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 4 Jul 2018 21:58:00 +0300 Subject: [PATCH 1/3] Do not fetch registers data when Peripherals or Registers views are collapsed; Fixed issue with incorrect breakpoint hit in multi-thread environment (RTOS) --- CHANGELOG.md | 6 ++++++ package.json | 18 +++++++----------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46713b4..adb6c6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Release Notes +## 0.17.1 (2018-07-??) + +* Improvements for [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html): + - Do not fetch registers data when Peripherals or Registers views are collapsed + - Fixed issue with incorrect breakpoint hit in multi-thread environment (RTOS) + ## 0.17.0 (2018-06-29) * Improvements for [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html): diff --git a/package.json b/package.json index d6b9684..5b42731 100644 --- a/package.json +++ b/package.json @@ -382,12 +382,12 @@ "view/title": [ { "command": "platformio-debug.examineMemory", - "when": "view == platformio-debug.memory", + "when": "debugType == platformio-debug && view == platformio-debug.memory", "group": "navigation" }, { "command": "platformio-debug.memory.clearHistory", - "when": "view == platformio-debug.memory", + "when": "debugType == platformio-debug && view == platformio-debug.memory", "group": "navigation" } ] @@ -396,23 +396,19 @@ "debug": [ { "id": "platformio-debug.peripherals", - "name": "Peripherals", - "when": "debugType == platformio-debug && peripheralsEnabled" + "name": "Peripherals" }, { "id": "platformio-debug.registers", - "name": "Registers", - "when": "debugType == platformio-debug" + "name": "Registers" }, { "id": "platformio-debug.memory", - "name": "Memory", - "when": "debugType == platformio-debug" + "name": "Memory" }, { "id": "platformio-debug.disassembly", - "name": "Disassembly", - "when": "debugType == platformio-debug" + "name": "Disassembly" } ] }, @@ -549,7 +545,7 @@ "fs-plus": "^3.0.0", "ini": "^1.3.4", "platformio-node-helpers": "^2.0.0", - "platformio-vscode-debug": "^1.1.0", + "platformio-vscode-debug": "^1.1.1", "querystringify": "*" }, "extensionDependencies": [ From a213af904d105adb475530bccc6254c42cd647aa Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 5 Jul 2018 18:24:27 +0300 Subject: [PATCH 2/3] Instruction how to manually create PIO Core Virtual Environment --- CHANGELOG.md | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adb6c6e..7a00ce2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * Improvements for [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html): - Do not fetch registers data when Peripherals or Registers views are collapsed - Fixed issue with incorrect breakpoint hit in multi-thread environment (RTOS) +* Instruction how to manually create [PIO Core Virtual Environment](http://docs.platformio.org/en/latest/installation.html#virtual-environment) ## 0.17.0 (2018-06-29) diff --git a/package.json b/package.json index 5b42731..015210c 100644 --- a/package.json +++ b/package.json @@ -544,7 +544,7 @@ "dependencies": { "fs-plus": "^3.0.0", "ini": "^1.3.4", - "platformio-node-helpers": "^2.0.0", + "platformio-node-helpers": "^2.0.1", "platformio-vscode-debug": "^1.1.1", "querystringify": "*" }, From 58392f33e203eae6d3362f8257e9f81fd5dc8c82 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 5 Jul 2018 18:25:12 +0300 Subject: [PATCH 3/3] Bump version to 0.17.1 --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a00ce2..8b1b3ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Release Notes -## 0.17.1 (2018-07-??) +## 0.17.1 (2018-07-05) * Improvements for [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html): - Do not fetch registers data when Peripherals or Registers views are collapsed diff --git a/package.json b/package.json index 015210c..d97b93f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "platformio-ide", - "version": "0.17.0", + "version": "0.17.1", "publisher": "platformio", "engines": { "vscode": "^1.24.0"