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