refactor(tauri-config): update window config with permissions

This commit is contained in:
Walid 2023-04-23 20:12:05 +01:00
parent 19637f44e7
commit 01adee763f
Signed by: Walidoux
GPG Key ID: CCF21881FE8BEBAF

View File

@ -15,8 +15,7 @@
"window": {
"close": true,
"minimize": true,
"maximize": true,
"unmaximize": true
"startDragging": true
},
"os": {
"all": false
@ -31,19 +30,6 @@
"path": {
"all": true
},
"shell": {
"all": true,
"execute": true,
"sidecar": true,
"open": true,
"scope": [
{
"name": "download-habbo-downloader",
"cmd": "npm",
"args": ["install", "-g", "habbo-downloader"]
}
]
},
"http": {
"all": true,
"request": true,
@ -52,14 +38,8 @@
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.tauri.dev",
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
"identifier": "org.rypi.dev",
"targets": "all"
},
"security": {
@ -71,10 +51,10 @@
"windows": [
{
"decorations": false,
"resizable": false,
"center": true,
"resizable": true,
"width": 1000,
"height": 600
"height": 575
}
]
}