mirror of
https://github.com/ruvnet/RuView
synced 2026-08-04 19:31:42 +00:00
285bb0ad37
## New Features - WiFi Configuration Modal: Configure ESP32 WiFi credentials directly from the desktop app - Serial port WiFi commands: Sends wifi_config/wifi/set ssid commands via serial - Improved feedback UI with status indicators (Success/Commands Sent/Error) ## API Improvements - New Tauri command: configure_esp32_wifi(port, ssid, password) - 21 new integration tests covering all API functionality - ESP32 VID/PID detection for CP210x, CH340, FTDI, and native USB ## UI Enhancements - WiFi button in Serial Ports table for ESP32-compatible devices - Modal with SSID/password inputs and clear status feedback - "Done" button after configuration with "Try Again" option ## Testing - 18 unit tests + 21 integration tests = 39 total tests passing - Tests cover: discovery, settings, server, flash, OTA, provision, WASM, state, domain models Co-Authored-By: claude-flow <ruv@ruv.net>
26 lines
573 B
JSON
26 lines
573 B
JSON
{
|
|
"name": "ruview-desktop-ui",
|
|
"private": true,
|
|
"version": "0.4.4",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.0.0",
|
|
"@tauri-apps/plugin-dialog": "^2.6.0",
|
|
"@tauri-apps/plugin-shell": "^2.3.5",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"typescript": "^5.5.0",
|
|
"vite": "^6.0.0"
|
|
}
|
|
}
|