You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Nothing/src-tauri/tauri.conf.json

74 lines
1.7 KiB

{
"build": {
"beforeDevCommand": "yarn start --port 1420",
"beforeBuildCommand": "yarn build",
"devPath": "http://localhost:1420",
"distDir": "../dist/Nothing",
"withGlobalTauri": false
},
"package": {
"productName": "Nothing",
"version": "1.0.1"
},
"tauri": {
"systemTray": {
"iconPath": "icons/NothingIcon.png",
"iconAsTemplate": false
},
"allowlist": {
"all": true,
"shell": {
"all": false,
"open": true
}
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/NothingIcon.png",
"icons/icon.ico"
],
"identifier": "me.isark.poe.Nothing",
"targets": ["nsis", "appimage", "updater"],
"windows": {
"wix": {
"language": "en-US"
}
}
},
"security": {
"csp": null
},
"updater": {
"active": true,
"endpoints": [
"https://isark.me/releases/nothing/version.json?target={{target}}"
],
"dialog": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDY5NDE4QTQwQUVGOUYzM0IKUldRNzgvbXVRSXBCYVhwRmswTnpOWW9PRURlMFRkQUVoOVNhSmJsLzlNSEJrZWVEOVhWYjlHcy8K"
},
"windows": [
{
"label": "Overlay",
"title": "Nothing",
"transparent": true,
"visible": false,
"decorations": false,
"alwaysOnTop": true,
"resizable": false,
"focus": false
},
{
"label": "Normal",
"title": "Nothing",
"transparent": false,
"visible": false,
"decorations": true,
"resizable": true,
"focus": false
}
]
}
}