From 8233fd4c9fef943e46ea640ffee71242435ad710 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Wed, 23 Jul 2025 17:38:39 -0700 Subject: [PATCH] Finish build files (probably) --- src-tauri/tauri.conf.json | 10 +------- src-tauri/tauri.linux.conf.json | 41 +++++++++++++++++++++++++++++++ src-tauri/tauri.macos.conf.json | 2 +- src-tauri/tauri.windows.conf.json | 2 +- 4 files changed, 44 insertions(+), 11 deletions(-) create mode 100644 src-tauri/tauri.linux.conf.json 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",