mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-28 11:37:17 +00:00
fix(permissions): widen sidecar scope to allow-spawn and unrestricted args for runtime reliability
This commit is contained in:
@@ -10,28 +10,55 @@
|
|||||||
"dialog:default",
|
"dialog:default",
|
||||||
"notification:default",
|
"notification:default",
|
||||||
"notification:allow-is-permission-granted",
|
"notification:allow-is-permission-granted",
|
||||||
|
"shell:allow-execute",
|
||||||
|
"shell:allow-spawn",
|
||||||
{
|
{
|
||||||
"identifier": "shell:allow-execute",
|
"identifier": "shell:allow-execute",
|
||||||
"allow": [
|
"allow": [
|
||||||
{
|
{
|
||||||
"name": "yt-dlp",
|
"name": "yt-dlp",
|
||||||
"sidecar": true,
|
"sidecar": true,
|
||||||
"args": ["--version"]
|
"args": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "aria2c",
|
"name": "aria2c",
|
||||||
"sidecar": true,
|
"sidecar": true,
|
||||||
"args": ["--version"]
|
"args": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ffmpeg",
|
"name": "ffmpeg",
|
||||||
"sidecar": true,
|
"sidecar": true,
|
||||||
"args": ["-version"]
|
"args": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "deno",
|
"name": "deno",
|
||||||
"sidecar": true,
|
"sidecar": true,
|
||||||
"args": ["--version"]
|
"args": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"identifier": "shell:allow-spawn",
|
||||||
|
"allow": [
|
||||||
|
{
|
||||||
|
"name": "yt-dlp",
|
||||||
|
"sidecar": true,
|
||||||
|
"args": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "aria2c",
|
||||||
|
"sidecar": true,
|
||||||
|
"args": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ffmpeg",
|
||||||
|
"sidecar": true,
|
||||||
|
"args": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "deno",
|
||||||
|
"sidecar": true,
|
||||||
|
"args": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user