Rename from TutorialDock to TutorialVault. Remove legacy Python app and scripts. Fix video playback, subtitles, metadata display, window state persistence, and auto-download of ffmpeg/ffprobe on first run. Bundle fonts via npm instead of runtime download.
39 lines
985 B
JSON
39 lines
985 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-utils/schema.json",
|
|
"productName": "TutorialVault",
|
|
"version": "0.1.0",
|
|
"identifier": "com.tutorialvault.app",
|
|
"build": {
|
|
"devUrl": "http://localhost:1420",
|
|
"frontendDist": "../dist",
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "TutorialVault",
|
|
"width": 1320,
|
|
"height": 860,
|
|
"minWidth": 640,
|
|
"minHeight": 480
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; media-src 'self' http://tutdock.localhost; font-src 'self' data:; style-src 'self' 'unsafe-inline'; img-src 'self' data:; script-src 'self'"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": false,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
},
|
|
"plugins": {}
|
|
}
|