esp32tool 1.5.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/apple-touch-icon.png +0 -0
- package/css/style.css +388 -2
- package/dist/esp_loader.js +3 -13
- package/dist/web/index.js +1 -1
- package/icons/icon-128.png +0 -0
- package/icons/icon-144.png +0 -0
- package/icons/icon-152.png +0 -0
- package/icons/icon-192.png +0 -0
- package/icons/icon-384.png +0 -0
- package/icons/icon-512.png +0 -0
- package/icons/icon-72.png +0 -0
- package/icons/icon-96.png +0 -0
- package/index.html +7 -4
- package/js/modules/esptool.js +1 -1
- package/js/nvs-editor.js +732 -0
- package/js/script.js +142 -4
- package/package.json +8 -5
- package/screenshots/desktop.png +0 -0
- package/screenshots/mobile.png +0 -0
- package/src/esp_loader.ts +3 -16
- package/sw.js +2 -1
package/icons/icon-128.png
CHANGED
|
Binary file
|
package/icons/icon-144.png
CHANGED
|
Binary file
|
package/icons/icon-152.png
CHANGED
|
Binary file
|
package/icons/icon-192.png
CHANGED
|
Binary file
|
package/icons/icon-384.png
CHANGED
|
Binary file
|
package/icons/icon-512.png
CHANGED
|
Binary file
|
package/icons/icon-72.png
CHANGED
|
Binary file
|
package/icons/icon-96.png
CHANGED
|
Binary file
|
package/index.html
CHANGED
|
@@ -47,7 +47,6 @@
|
|
|
47
47
|
);
|
|
48
48
|
</script>
|
|
49
49
|
<script src="js/script.js" type="module" defer></script>
|
|
50
|
-
<script src="js/hex-editor.js" type="module" defer></script>
|
|
51
50
|
|
|
52
51
|
<script>
|
|
53
52
|
// Service Worker for PWA functionality
|
|
@@ -193,6 +192,7 @@
|
|
|
193
192
|
<div id="app">
|
|
194
193
|
<div id="console-container" class="console-container hidden"></div>
|
|
195
194
|
<div id="hexeditor-container" class="hexeditor-container hidden"></div>
|
|
195
|
+
<div id="nvseditor-container" class="nvseditor-container hidden"></div>
|
|
196
196
|
<div id="commands">
|
|
197
197
|
<div class="upload">
|
|
198
198
|
<label
|
|
@@ -374,6 +374,12 @@
|
|
|
374
374
|
<button id="butReadPartitions" type="button" disabled="disabled">
|
|
375
375
|
Read Partition Table
|
|
376
376
|
</button>
|
|
377
|
+
<button id="butHexEditor" type="button" disabled="disabled">
|
|
378
|
+
Hex Editor
|
|
379
|
+
</button>
|
|
380
|
+
<button id="butNVSEditor" type="button" disabled="disabled">
|
|
381
|
+
NVS Parser
|
|
382
|
+
</button>
|
|
377
383
|
<button id="butDetectFS" type="button" class="hidden">
|
|
378
384
|
Detect FS and Open Manager
|
|
379
385
|
</button>
|
|
@@ -399,9 +405,6 @@
|
|
|
399
405
|
<button id="butReadFlash" type="button" disabled="disabled">
|
|
400
406
|
Read Flash
|
|
401
407
|
</button>
|
|
402
|
-
<button id="butHexEditor" type="button" disabled="disabled">
|
|
403
|
-
Hex Editor
|
|
404
|
-
</button>
|
|
405
408
|
</div>
|
|
406
409
|
</div>
|
|
407
410
|
</div>
|