The field could shrink to 160px and clip 'Search videos and channels'. Its floor is now 17rem, wide enough for the full placeholder, with a roomier max so it uses spare width. The window minimum rises to 1260 to keep the control row on one line at that floor, and the default size moves to 1320x820 — it was below the new minimum, so every launch was being silently clamped.
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": 1320,
|
|
"height": 820,
|
|
"minWidth": 1260,
|
|
"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"
|
|
}
|
|
}
|
|
}
|