mirror of
https://github.com/lumehq/lume.git
synced 2025-04-02 08:58:01 +02:00
* refactor: remove custom icon packs * fix: command not work on windows * fix: make open_window command async * feat: improve commands * feat: improve * refactor: column * feat: improve thread column * feat: improve * feat: add stories column * feat: improve * feat: add search column * feat: add reset password * feat: add subscription * refactor: settings * chore: improve commands * fix: crash on production * feat: use tauri store plugin for cache * feat: new icon * chore: update icon for windows * chore: improve some columns * chore: polish code
55 lines
957 B
JSON
55 lines
957 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "desktop-capability",
|
|
"description": "Capability for the column",
|
|
"platforms": [
|
|
"linux",
|
|
"macOS",
|
|
"windows"
|
|
],
|
|
"windows": [
|
|
"column-*"
|
|
],
|
|
"permissions": [
|
|
"core:resources:default",
|
|
"core:tray:default",
|
|
"os:allow-locale",
|
|
"os:allow-os-type",
|
|
"clipboard-manager:allow-write-text",
|
|
"dialog:allow-open",
|
|
"dialog:allow-ask",
|
|
"dialog:allow-message",
|
|
"fs:allow-read-file",
|
|
"core:menu:default",
|
|
"core:menu:allow-new",
|
|
"core:menu:allow-popup",
|
|
"http:default",
|
|
"shell:allow-open",
|
|
"store:allow-get",
|
|
"store:allow-set",
|
|
"store:allow-delete",
|
|
{
|
|
"identifier": "http:default",
|
|
"allow": [
|
|
{
|
|
"url": "http://**/"
|
|
},
|
|
{
|
|
"url": "https://**/"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"identifier": "fs:allow-read-text-file",
|
|
"allow": [
|
|
{
|
|
"path": "$RESOURCE/locales/*"
|
|
},
|
|
{
|
|
"path": "$RESOURCE/resources/*"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|