Skip to content

Commit

Permalink
Merge branch 'release/v0.17.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jul 5, 2018
2 parents 57d2066 + 58392f3 commit 88e27bf
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release Notes

## 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
- 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)

* Improvements for [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html):
Expand Down
22 changes: 9 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "0.17.0",
"version": "0.17.1",
"publisher": "platformio",
"engines": {
"vscode": "^1.24.0"
Expand Down Expand Up @@ -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"
}
]
Expand All @@ -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"
}
]
},
Expand Down Expand Up @@ -548,8 +544,8 @@
"dependencies": {
"fs-plus": "^3.0.0",
"ini": "^1.3.4",
"platformio-node-helpers": "^2.0.0",
"platformio-vscode-debug": "^1.1.0",
"platformio-node-helpers": "^2.0.1",
"platformio-vscode-debug": "^1.1.1",
"querystringify": "*"
},
"extensionDependencies": [
Expand Down

0 comments on commit 88e27bf

Please sign in to comment.