Built ostp-gui.exe - graphical VPN client with buttons! Features: - Connect/Disconnect button - Server selection dropdown - Real-time stats (Upload/Download/Ping) - Settings panel - Beautiful interface (Tauri 2.0 + HTML/CSS/JS) - IPC with ostp-daemon via Named Pipe UI Components: - Main window: 450x600 (not resizable) - Status indicator (Connected/Disconnected) - Server selection list - Stats grid display - Settings button Files: - ostp-gui.exe: 5.79 MB (NEW!) - ostp-client.exe: 1.64 MB (CLI) - ostp-daemon.exe: 0.53 MB (service) - ostp-installer.exe: 0.37 MB Changes: 1. Fixed tauri.conf.json paths (frontendDist: ./ui) 2. Removed protocol-asset feature from Cargo.toml 3. Added icons/icon.ico (user provided) 4. Built successfully with Tauri 2.0 5. Updated SHA256SUMS.txt with GUI checksum 6. Recreated ostp-client-windows-x64.zip (3.64 MB) Usage: - Just run ostp-gui.exe - NO command line needed! - Select server, click Connect - thats it! Location: dist/windows-x64/ostp-gui.exe SHA256: 5880cfeeb7fd2dcf1b033b7e2514a56eb45b3220d5c2c783f5a7f2295bd28ca4
44 lines
932 B
JSON
44 lines
932 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2.0",
|
|
"productName": "OSTP VPN",
|
|
"version": "0.1.0",
|
|
"identifier": "network.ospab.ostp",
|
|
"build": {
|
|
"beforeDevCommand": "",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "",
|
|
"frontendDist": "./ui"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "OSTP VPN",
|
|
"width": 450,
|
|
"height": 600,
|
|
"resizable": false,
|
|
"fullscreen": false,
|
|
"decorations": true,
|
|
"transparent": false,
|
|
"alwaysOnTop": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; style-src 'self' 'unsafe-inline'"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["msi"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/icon.ico"
|
|
],
|
|
"windows": {
|
|
"certificateThumbprint": null,
|
|
"digestAlgorithm": "sha256",
|
|
"timestampUrl": ""
|
|
}
|
|
}
|
|
}
|