github thelastoutpostworkshop/ESPConnect v1.1.12
ESPConnect v1.1.12

3 days ago

ESPConnect v1.1.12

Improvement

  • NVS Inspector now shows used NVS entry storage in bytes compared with the selected NVS partition size (issue #157).
  • Added a scalable SVG favicon while keeping the existing ICO fallback (PR #158).

Fixed

  • Partition table read failures now show a clear UI error instead of appearing as an empty partition/app list (issue #159).

🎯 Features

  • βœ… Works completely offline - no internet connection required
  • βœ… Native Web Serial API support for all platforms
  • βœ… Flash firmware, manage SPIFFS/LittleFS, backup flash memory
  • βœ… Device info, partitions viewer, NVS Inspector, serial monitor
  • βœ… Community translations (Best effort)

πŸ“₯ Downloads

Platform Architecture File Type Notes
macOS Apple Silicon (M1/M2/M3) .dmg macOS 11+
macOS Intel .dmg macOS 10.13+
Windows x64 .exe installer Windows 10+
Linux x64 .deb / .rpm Ubuntu, Debian, Fedora, etc.
Web UI Any .zip Static dist/ build for custom hosting

πŸ“ Installation

macOS Apple Silicon:

curl -L -O "https://github.com/thelastoutpostworkshop/ESPConnect/releases/download/v1.1.12/ESPConnect-arm64.dmg"

Open the DMG and drag ESPConnect to Applications. First launch: Right-click β†’ Open (to bypass Gatekeeper).

macOS Intel:

curl -L -O "https://github.com/thelastoutpostworkshop/ESPConnect/releases/download/v1.1.12/ESPConnect-x64.dmg"

Open the DMG and drag ESPConnect to Applications. First launch: Right-click β†’ Open (to bypass Gatekeeper).

Windows:
Download and run the .exe installer. Windows Defender may show a warning on first launch - click "More info" β†’ "Run anyway".

Linux (Debian/Ubuntu):

sudo dpkg -i espconnect_1.1.12_amd64.deb

Linux (Fedora/RHEL):

sudo rpm -i espconnect-1.1.12.x86_64.rpm

Web UI (static files):

curl -L -o dist.zip "https://github.com/thelastoutpostworkshop/ESPConnect/releases/download/v1.1.12/dist.zip"
unzip dist.zip -d dist

Serve the dist/ Folder, you may use any of the following options:

Β Option A β€” Node β€œserve”

cd dist
npx serve .

Β Option B β€” Python 3

cd dist
python -m http.server 8080

πŸ”Œ USB Serial Permissions (Linux)

Add your user to the dialout group:

sudo usermod -a -G dialout $USER

Then log out and back in.

Don't miss a new ESPConnect release

NewReleases is sending notifications on new releases.