cf844c45da
- Tray verzweigt: GNOME -> Extension/D-Bus, KDE/Cinnamon/LXQt -> natives SNI-Tray-Icon mit Menue (libappindicator liefert keine Klick-Events) - fs-Aufrufe nennen bei Fehlern den Pfad statt bloss 'os error 2'; is_dir-Guard in list_pools_in und Usage-Auswertung - Panic-Hook schreibt kopierbaren Backtrace (profile.release debug = 1) - AppImage unter GNOME gesperrt (rfd-Dialog), Verweis auf deb/rpm - deb/rpm liefern die GNOME-Extension mit; Appindicator als Depends - Bundle-Targets um deb/rpm/appimage erweitert
52 lines
1.7 KiB
JSON
52 lines
1.7 KiB
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
"productName": "ai-control",
|
|
"version": "0.2.0",
|
|
"identifier": "com.aicontrol.app",
|
|
"build": {
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build"
|
|
},
|
|
"app": {
|
|
"macOSPrivateApi": true,
|
|
"windows": [],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["deb", "rpm", "appimage", "app", "dmg", "nsis", "msi"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"linux": {
|
|
"deb": {
|
|
"depends": ["libayatana-appindicator3-1"],
|
|
"files": {
|
|
"/usr/share/gnome-shell/extensions/ai-control-popup@local/extension.js": "../gnome-shell-extension/ai-control-popup@local/extension.js",
|
|
"/usr/share/gnome-shell/extensions/ai-control-popup@local/metadata.json": "../gnome-shell-extension/ai-control-popup@local/metadata.json",
|
|
"/usr/share/gnome-shell/extensions/ai-control-popup@local/trayLinux.png": "icons/trayLinux.png"
|
|
}
|
|
},
|
|
"rpm": {
|
|
"depends": ["libappindicator-gtk3"],
|
|
"files": {
|
|
"/usr/share/gnome-shell/extensions/ai-control-popup@local/extension.js": "../gnome-shell-extension/ai-control-popup@local/extension.js",
|
|
"/usr/share/gnome-shell/extensions/ai-control-popup@local/metadata.json": "../gnome-shell-extension/ai-control-popup@local/metadata.json",
|
|
"/usr/share/gnome-shell/extensions/ai-control-popup@local/trayLinux.png": "icons/trayLinux.png"
|
|
}
|
|
}
|
|
},
|
|
"android": {
|
|
"debugApplicationIdSuffix": ".debug"
|
|
}
|
|
}
|
|
}
|