Files
cinny-desktop/src-tauri/tauri.conf.json
T

78 lines
2.0 KiB
JSON
Raw Normal View History

2022-04-29 19:52:14 +05:30
{
2026-03-03 23:16:04 +11:00
"bundle": {
"active": true,
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"wix": {
"bannerPath": "wix/banner.bmp",
"dialogImagePath": "wix/dialogImage.bmp"
}
},
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [],
"externalBin": [],
"copyright": "",
"category": "SocialNetworking",
"shortDescription": "Yet another matrix client",
"longDescription": "",
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"exceptionDomain": "",
"signingIdentity": null,
"providerShortName": null,
"entitlements": null
},
"linux": {
2022-04-29 19:52:14 +05:30
"deb": {
2022-05-04 17:52:40 +05:30
"depends": []
2022-04-29 19:52:14 +05:30
}
},
2026-03-03 23:16:04 +11:00
"createUpdaterArtifacts": "v1Compatible"
},
"build": {
"beforeBuildCommand": "cd cinny && npm run build",
"frontendDist": "../cinny/dist",
"beforeDevCommand": "cd cinny && npm start",
"devUrl": "http://localhost:8080"
},
"productName": "Cinny",
"mainBinaryName": "cinny",
"version": "4.10.5",
"identifier": "in.cinny.app",
"plugins": {
2022-04-29 19:52:14 +05:30
"updater": {
2026-03-03 23:16:04 +11:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDE2NDc3NDBGMTAzNTk1NUYKUldSZmxUVVFEM1JIRnRuMjVRTkFOQ21lUFI5KzRMU0s4OWtBS1RNRUVCNE9LcE9GcExNZ2M2NHoK",
2022-04-29 19:52:14 +05:30
"endpoints": [
2026-03-03 23:16:04 +11:00
"https://github.com/cinnyapp/cinny-desktop/releases/download/tauri/release.json"
]
}
},
"app": {
"security": {
"csp": "script-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'; connect-src ipc: http://ipc.localhost"
2022-04-29 19:52:14 +05:30
},
"windows": [
{
"title": "Cinny",
2024-09-14 21:44:11 +10:00
"width": 1280,
"height": 905,
2022-05-04 20:17:41 +05:30
"center": true,
2022-04-29 19:52:14 +05:30
"resizable": true,
2022-05-28 21:14:35 +05:30
"fullscreen": false,
2026-03-03 23:16:04 +11:00
"dragDropEnabled": false,
"useHttpsScheme": true
2022-04-29 19:52:14 +05:30
}
2026-03-03 23:16:04 +11:00
]
2022-04-29 19:52:14 +05:30
}
}