1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 02:12:38 +01:00
client/src-tauri/tauri.conf.json

57 lines
1.3 KiB
JSON
Raw Normal View History

2023-09-05 01:05:04 +02:00
{
"build": {
2023-09-15 18:20:16 +02:00
"beforeDevCommand": "pnpm run dev",
"beforeBuildCommand": "pnpm run build",
2023-09-07 17:25:35 +02:00
"devPath": "http://localhost:1420",
2023-09-15 04:10:51 +02:00
"distDir": "../build",
2023-12-22 00:22:43 +01:00
"withGlobalTauri": true
2023-09-05 01:05:04 +02:00
},
"package": {
2023-09-07 17:49:57 +02:00
"productName": "Spacebar",
2023-12-22 00:22:43 +01:00
"version": "./version.json"
2023-09-05 01:05:04 +02:00
},
"tauri": {
"bundle": {
"active": true,
2023-12-22 00:22:43 +01:00
"targets": ["app", "appimage", "deb", "dmg", "nsis", "updater"],
2023-09-07 17:49:57 +02:00
"identifier": "chat.spacebar.app",
2023-09-05 01:05:04 +02:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
2023-09-15 04:57:02 +02:00
],
"publisher": "Spacebar",
"category": "SocialNetworking",
2023-09-15 05:22:23 +02:00
"shortDescription": "A free, opensource self-hostable discord-compatible chat, voice and video platform.",
2023-09-15 04:57:02 +02:00
"windows": {
"nsis": {
"license": "../LICENSE",
"sidebarImage": "./icons/sidebar.bmp",
"installerIcon": "./icons/icon.ico"
}
2023-09-15 18:20:16 +02:00
},
"updater": {
2023-12-20 08:21:42 +01:00
"active": true,
2023-09-15 18:20:16 +02:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDQxRkQwNTY1NzBEOTMyMTUKUldRVk10bHdaUVg5UWVoVm9JeDg4UEs1TkpMT3FKdzc3Y29CN2NZNk9vRE9sanJCUERqT09HVVYK",
"windows": {
"installMode": "passive"
}
2023-09-15 04:57:02 +02:00
}
2023-09-05 01:05:04 +02:00
},
"security": {
"csp": null
},
"windows": []
2023-09-07 17:25:35 +02:00
},
"plugins": {
"shell": {
"open": true
2023-09-15 18:20:16 +02:00
},
"updater": {
2023-12-22 00:22:43 +01:00
"endpoints": ["https://github.com/spacebarchat/client/releases/download/latest/latest.json"]
2023-09-07 17:25:35 +02:00
}
2023-09-05 01:05:04 +02:00
}
}