mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-19 13:35:54 +00:00
This commit adds feature parity between the Mac and Tauri apps: High Priority Features: - Enhanced welcome flow with 6 pages (already existed) - Menu bar enhancements with session counter and server status - Single instance enforcement using tauri_plugin_single_instance Medium Priority Features: - Window centering and management improvements - Application mover functionality with dialog prompts - Terminal session activity tracking with real-time updates Additional Improvements: - Added keychain integration for secure password storage - Updated settings with prompt_move_to_applications field - Fixed compilation errors in app_mover and terminal spawn service - Enhanced tray menu to dynamically update session count - Improved main window handling with proper close event management - Added comprehensive README explaining Tauri development workflow The Tauri app now provides the same core functionality as the native Mac app while maintaining cross-platform compatibility.
54 lines
No EOL
1.1 KiB
JSON
54 lines
No EOL
1.1 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2.0.0",
|
|
"productName": "VibeTunnel",
|
|
"identifier": "com.vibetunnel.app",
|
|
"build": {
|
|
"beforeDevCommand": "",
|
|
"beforeBuildCommand": "",
|
|
"frontendDist": "../public"
|
|
},
|
|
"app": {
|
|
"windows": [],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": [
|
|
"icons/menu-bar-icon.png",
|
|
"icons/menu-bar-icon@2x.png",
|
|
"icons/tray-icon.png",
|
|
"icons/tray-icon@2x.png"
|
|
],
|
|
"macOS": {
|
|
"frameworks": [],
|
|
"minimumSystemVersion": "10.15",
|
|
"exceptionDomain": "localhost",
|
|
"signingIdentity": null,
|
|
"providerShortName": null,
|
|
"entitlements": "entitlements.plist"
|
|
},
|
|
"windows": {
|
|
"certificateThumbprint": null,
|
|
"digestAlgorithm": "sha256",
|
|
"timestampUrl": ""
|
|
},
|
|
"linux": {
|
|
"deb": {
|
|
"depends": []
|
|
},
|
|
"appimage": {
|
|
"bundleMediaFramework": true
|
|
}
|
|
}
|
|
}
|
|
} |