Skip to content

Commit

Permalink
add changelog commit (#977)
Browse files Browse the repository at this point in the history
* add changelog commit

* fix nvs test file
  • Loading branch information
brianignacio5 authored May 26, 2023
1 parent 9caeb73 commit 627dd0e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@

All notable changes to the "Espressif IDF" extension will be documented in this file.

## [1.6.3](https://github.com/espressif/vscode-esp-idf-extension/releases/tag/v1.6.3)

### Features and enhancements

- [Add idf.enableSizeTaskAfterBuildTask to enable disable Size task](https://github.com/espressif/vscode-esp-idf-extension/pull/965)
- [Zap Install no longer needed](https://github.com/espressif/vscode-esp-idf-extension/pull/967) Thanks @Diegorro98 !
- [Add consistency messages for flashing](https://github.com/espressif/vscode-esp-idf-extension/pull/971)
- [Add idf.customTerminalExecutable and idf.customTerminalExecutableArgs](https://github.com/espressif/vscode-esp-idf-extension/pull/973)

### Bug Fixes

- [Fix default monitor baud rate](https://github.com/espressif/vscode-esp-idf-extension/pull/964)
- [Fix NVS editor spaces](https://github.com/espressif/vscode-esp-idf-extension/pull/977)

## [1.6.2](https://github.com/espressif/vscode-esp-idf-extension/releases/tag/v1.6.2)

### Features and enhancements
Expand Down
2 changes: 1 addition & 1 deletion src/views/nvs-partition-table/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export function isInValidRow(row: NvsPartitionTable.IRow): string {
}

export function JSON2CSV(rows: NvsPartitionTable.IRow[]) {
let csv = `key, type, encoding, value ${EOL}`;
let csv = `key,type,encoding,value${EOL}`;
for (const row of rows) {
if (
row.key === "" &&
Expand Down
2 changes: 1 addition & 1 deletion testFiles/nvs-test.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
key, type, encoding, value
key,type,encoding,value
namespace_name,namespace,,
key1,data,u8,1
key2,file,string,/path/to/file

0 comments on commit 627dd0e

Please sign in to comment.