Skip to content

Commit 8e73659

Browse files
committed
- Fixed errata and expanded documentation.
- Located espota.py correctly. - Changed `esp8266fs.uploadData` -> `esp8266fs.uploadSpiffs`. - Added `esp8266fs.unpackSpiffs`, `esp8266fs.listSpiffs`, and `esp8266fs.visualizeSpiffs`. - Added a variety of settings.json values to allow full control of the mkspiffs process. - Fixed various bugs and cleaned up code heirarchy. - Updated Github infrastructure. - Tested on Windows, OSX, and Linux (Ubuntu).
1 parent 311caa8 commit 8e73659

File tree

9 files changed

+674
-236
lines changed

9 files changed

+674
-236
lines changed

.vscode/launch.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
"type": "extensionHost",
88
"request": "launch",
99
"runtimeExecutable": "${execPath}",
10-
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
11-
"stopOnEntry": false
10+
"args": [
11+
"--extensionDevelopmentPath=${workspaceFolder}"
12+
]
1213
}
1314
]
1415
}

.vscode/tasks.json

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
"type": "shell",
99
"command": "npm install",
1010
"problemMatcher": []
11+
},
12+
{
13+
"label": "Publish Extension",
14+
"type": "shell",
15+
"command": "vsce publish",
16+
"problemMatcher": []
1117
}
1218
]
1319
}

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,17 @@ All notable changes to the "vscode-esp8266fs" extension will be documented in th
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
# [Unreleased]
7+
## [1.0.0] 2018-2-13
88

9-
## [0.9.0-rc1] - 2018-02-11
9+
- Fixed errata and expanded documentation.
10+
- Located espota.py correctly.
11+
- Changed `esp8266fs.uploadData` -> `esp8266fs.uploadSpiffs`.
12+
- Added `esp8266fs.unpackSpiffs`, `esp8266fs.listSpiffs`, and `esp8266fs.visualizeSpiffs`.
13+
- Added a variety of settings.json values to allow full control of the mkspiffs process.
14+
- Fixed various bugs and cleaned up code heirarchy.
15+
- Updated Github infrastructure.
16+
- Tested on Windows, OSX, and Linux (Ubuntu).
17+
18+
## [0.9.0] - 2018-02-11
1019

1120
- Initial release - out for review.

README.md

+165-37
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)