1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-21 18:02:32 +01:00
client/src-tauri/tauri.conf.json
2024-10-09 10:10:39 -04:00

61 lines
1.5 KiB
JSON

{
"productName": "Spacebar",
"version": "./version.json",
"identifier": "chat.spacebar.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1420",
"beforeDevCommand": "pnpm run dev",
"beforeBuildCommand": "pnpm run build"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"label": "main",
"title": "Tauri",
"width": 800,
"height": 600,
"visible": false
},
{
"label": "splashscreen",
"width": 400,
"height": 200,
"decorations": false,
"resizable": false,
"url": "splashscreen.html"
}
]
},
"bundle": {
"active": true,
"targets": ["deb", "rpm", "appimage", "nsis", "app", "dmg"],
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
"publisher": "Spacebar",
"category": "SocialNetworking",
"shortDescription": "A free, opensource self-hostable discord-compatible chat, voice and video platform.",
"licenseFile": "../LICENSE",
"windows": {
"nsis": {
"sidebarImage": "./icons/sidebar.bmp",
"installerIcon": "./icons/icon.ico"
}
},
"createUpdaterArtifacts": true
},
"plugins": {
"shell": {
"open": true
},
"updater": {
"active": true,
"endpoints": ["https://github.com/spacebarchat/client/releases/download/latest/latest.json"],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDQxRkQwNTY1NzBEOTMyMTUKUldRVk10bHdaUVg5UWVoVm9JeDg4UEs1TkpMT3FKdzc3Y29CN2NZNk9vRE9sanJCUERqT09HVVYK",
"windows": {
"installMode": "passive"
}
}
}
}