Skip to content

FlashForgeWebUI v1.0.2

Choose a tag to compare

@github-actions github-actions released this 31 Jan 19:36
· 22 commits to main since this release
3e663b2

FlashForgeWebUI v1.0.2

Changes

  • Fixed "Cannot GET /" error — Static assets now properly embedded and served in packaged binaries
  • Fixed Express 5 wildcard route compatibility (/*splat)
  • Fixed and improved documentation & build commands
  • Added 118 new tests covering core functionality
  • Added E2E testing workflow for all binary platforms (Windows, macOS, Linux x64/ARM64/ARMv7)

Downloads

Choose the appropriate binary for your platform:

  • Windows (x64): flashforge-webui-win-x64.exe
  • macOS (Intel): flashforge-webui-macos-x64.bin
  • macOS (Apple Silicon): flashforge-webui-macos-arm64.bin
  • Linux (x64): flashforge-webui-linux-x64.bin
  • Linux (ARM64): flashforge-webui-linux-arm64.bin (Raspberry Pi 4/5, ARM servers)
  • Linux (ARMv7): flashforge-webui-linux-armv7.bin (Raspberry Pi 3, older ARM devices)

Installation

  1. Download the appropriate binary for your platform
  2. Make it executable (Linux/macOS): chmod +x flashforge-webui-*.bin
  3. Run it: ./flashforge-webui-*.bin (or flashforge-webui-*.exe on Windows)

Usage

Run with no arguments to start the WebUI server only:

./flashforge-webui-linux-x64.bin

Or use CLI options to auto-connect to printers:

# Connect to last used printer
./flashforge-webui-linux-x64.bin --last-used

# Connect to all saved printers
./flashforge-webui-linux-x64.bin --all-saved-printers

# Connect to specific printer(s)
./flashforge-webui-linux-x64.bin --printers="192.168.1.100:new:12345678"

# Customize WebUI port and password
./flashforge-webui-linux-x64.bin --webui-port=3001 --webui-password=mypassword

See the README for full documentation.