Files
rclone-ui/src-tauri/tauri.conf.json
T
Lucas Nogueira 1081e79778 fix(app): tray icon not opening in production
after some investigation and realizing the app was opening in production only if the current working directory was <repo-root>/src-tauri, I noticed we're not using the icons properly here. They must be included in the bundle as a resource, as that's the proper way to load embedded files.
2025-01-25 08:40:48 -03:00

87 lines
2.7 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "s-tray",
"version": "0.1.0",
"identifier": "com.stray.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1420",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "STray",
"width": 0,
"height": 0,
"center": true,
"hiddenTitle": false,
"resizable": false,
"fullscreen": false,
"visible": false,
"decorations": false,
"focus": true,
"url": "tray.html"
}
],
"security": {
"csp": null
},
"withGlobalTauri": true
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"icons/favicon/frame_00_delay-0.1s.png",
"icons/favicon/frame_01_delay-0.1s.png",
"icons/favicon/frame_02_delay-0.1s.png",
"icons/favicon/frame_03_delay-0.1s.png",
"icons/favicon/frame_04_delay-0.1s.png",
"icons/favicon/frame_05_delay-0.1s.png",
"icons/favicon/frame_06_delay-0.1s.png",
"icons/favicon/frame_07_delay-0.1s.png",
"icons/favicon/frame_08_delay-0.1s.png",
"icons/favicon/frame_09_delay-0.1s.png",
"icons/favicon/frame_10_delay-0.1s.png",
"icons/favicon/frame_11_delay-0.1s.png",
"icons/favicon/frame_12_delay-0.1s.png",
"icons/favicon/frame_13_delay-0.1s.png",
"icons/favicon/frame_14_delay-0.1s.png",
"icons/favicon/frame_15_delay-0.1s.png",
"icons/favicon/frame_16_delay-0.1s.png",
"icons/favicon/frame_17_delay-0.1s.png"
],
"externalBin": ["binaries/rclone"],
"category": "Utility",
"copyright": "FarFetched",
"macOS": {
"dmg": {
"appPosition": {
"x": 180,
"y": 170
},
"applicationFolderPosition": {
"x": 480,
"y": 170
},
"windowSize": {
"height": 400,
"width": 660
}
},
"hardenedRuntime": true,
"entitlements": "Entitlements.plist",
"minimumSystemVersion": "10.13"
}
}
}