NabuCasa / esp-web-flasher

A web serial package for updating your ESP bootloader via the browser.
https://nabucasa.github.io/esp-web-flasher/
MIT License
43 stars 16 forks source link

Fix progress update #121

Closed balloob closed 2 years ago

balloob commented 2 years ago

Progress was reported against the filesize variable. This variable is set to the compressed file size if compression is enabled. PR #112 ensures that bytes written no longer exceeded the filesize variable, but bytesWritten represents the actual bytes written. This caused the last ~30% progress to not be reported because that's when actual bytes written exceeded the compressed file size.