The control row wrapped to a second line as the window narrowed. It is now flex-nowrap with only the search field giving up width, and the window minimum is raised to 1140x620 so the fixed controls always fit beside the sidebar on one line. Also lands the 4K AV1 warning in Settings. The earlier attempt at this silently changed nothing — the replacement text did not match the file, so the copy shipped unchanged while being reported as done.
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "FlightTube",
|
|
"version": "0.1.0",
|
|
"identifier": "com.vincent.flighttube",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "FlightTube",
|
|
"width": 1180,
|
|
"height": 780,
|
|
"minWidth": 1140,
|
|
"minHeight": 620,
|
|
"center": true,
|
|
"titleBarStyle": "Overlay",
|
|
"hiddenTitle": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null,
|
|
"assetProtocol": {
|
|
"enable": true,
|
|
"scope": [
|
|
"$HOME/Movies/FlightTube/**",
|
|
"$APPDATA/**",
|
|
"$APPLOCALDATA/**"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"externalBin": [
|
|
"binaries/ffmpeg",
|
|
"binaries/ffprobe"
|
|
],
|
|
"resources": {
|
|
"resources/python": "python",
|
|
"resources/yt-dlp.pyz": "yt-dlp.pyz"
|
|
}
|
|
}
|
|
}
|