diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b2d83c2..0447c04 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -24,14 +24,6 @@ } }, "bundle": { - "active": true, - "targets": "all", - "icon": [ - "icons/32x32.png", - "icons/128x128.png", - "icons/128x128@2x.png", - "icons/icon.icns", - "icons/icon.ico" - ] + "active": false } } diff --git a/src-tauri/tauri.linux.conf.json b/src-tauri/tauri.linux.conf.json new file mode 100644 index 0000000..5aac621 --- /dev/null +++ b/src-tauri/tauri.linux.conf.json @@ -0,0 +1,41 @@ +{ + "$schema": "https://schema.tauri.app/config/2", + "productName": "Berry Dash Launcher", + "version": "1.0.0", + "identifier": "xyz.lncvrt.berrydash-launcher", + "build": { + "beforeDevCommand": "yarn dev", + "devUrl": "http://localhost:1420", + "beforeBuildCommand": "yarn build", + "frontendDist": "../dist" + }, + "app": { + "windows": [ + { + "title": "Berry Dash Launcher", + "width": 1000, + "height": 600, + "resizable": false, + "maximizable": false + } + ], + "security": { + "csp": null + } + }, + "bundle": { + "active": true, + "targets": [ + "appimage", + "deb", + "rpm" + ], + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ] + } +} diff --git a/src-tauri/tauri.macos.conf.json b/src-tauri/tauri.macos.conf.json index d0cc35e..a51b902 100644 --- a/src-tauri/tauri.macos.conf.json +++ b/src-tauri/tauri.macos.conf.json @@ -28,7 +28,7 @@ }, "bundle": { "active": true, - "targets": "all", + "targets": "dmg", "icon": [ "icons/32x32.png", "icons/128x128.png", diff --git a/src-tauri/tauri.windows.conf.json b/src-tauri/tauri.windows.conf.json index 33d9c51..f0a8832 100644 --- a/src-tauri/tauri.windows.conf.json +++ b/src-tauri/tauri.windows.conf.json @@ -30,7 +30,7 @@ }, "bundle": { "active": true, - "targets": "all", + "targets": "msi", "icon": [ "icons/32x32.png", "icons/128x128.png",