mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +00:00
- Move all public files from tauri/src-tauri/public/ to tauri/public/ - Update tauri.conf.json to remove public/** from resources - Update file dialog to use download directory instead of blocking API - Add new modules to lib.rs (app_mover, terminal_spawn_service, fs_api) - Update app_mover and terminal integrations implementations
65 lines
No EOL
1.4 KiB
JSON
65 lines
No EOL
1.4 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2.0.0",
|
|
"productName": "VibeTunnel",
|
|
"identifier": "com.vibetunnel.app",
|
|
"build": {
|
|
"beforeDevCommand": "",
|
|
"beforeBuildCommand": "",
|
|
"frontendDist": "../public"
|
|
},
|
|
"app": {
|
|
"windows": [{
|
|
"title": "VibeTunnel",
|
|
"width": 400,
|
|
"height": 500,
|
|
"resizable": false,
|
|
"fullscreen": false,
|
|
"decorations": true,
|
|
"transparent": false,
|
|
"skipTaskbar": true,
|
|
"visible": false,
|
|
"center": true
|
|
}],
|
|
"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
|
|
}
|
|
}
|
|
}
|
|
} |