(chore): initial MVP release v0.1.0

This commit is contained in:
2025-04-28 23:49:42 +05:30
commit c73022b1a2
200 changed files with 24562 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "default capabilities",
"windows": [
"main"
],
"permissions": [
"core:default",
"core:window:allow-hide",
"core:window:allow-show",
"core:window:allow-set-focus",
"opener:default",
"shell:default",
"fs:default",
"os:default",
"dialog:default",
"shell:allow-open",
"sql:default",
"sql:allow-execute",
"fs:allow-app-write",
"fs:allow-app-write-recursive",
"updater:default",
"process:default",
{
"identifier": "opener:allow-open-path",
"allow": [
{
"path": "**"
}
]
},
{
"identifier": "fs:scope",
"allow": [
{
"path": "**"
}
]
}
]
}

View File

@@ -0,0 +1,41 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "shell-scope",
"description": "allowed shell scopes",
"windows": [
"main"
],
"permissions": [
"shell:allow-kill",
{
"identifier": "shell:allow-execute",
"allow": [
{
"name": "binaries/yt-dlp",
"args": true,
"sidecar": true
},
{
"name": "pkexec",
"cmd": "pkexec",
"args": true
}
]
},
{
"identifier": "shell:allow-spawn",
"allow": [
{
"name": "binaries/yt-dlp",
"args": true,
"sidecar": true
}
]
}
],
"platforms": [
"windows",
"macOS",
"linux"
]
}