Skip to content

Commit

Permalink
fix missing updater permissions in capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
Raicuparta committed Oct 27, 2024
1 parent b609c22 commit 59f2799
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions backend/tauri-app/capabilities/main.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "main-capabilities",
"local": true,
"windows": [
"main"
],
"permissions": [
"core:path:default",
"core:event:default",
"core:window:default",
"core:app:default",
"core:resources:default",
"dialog:allow-open",
"dialog:allow-ask",
"updater:allow-check",
"shell:default"
]
}
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "main-capabilities",
"local": true,
"windows": ["main"],
"permissions": [
"core:path:default",
"core:event:default",
"core:window:default",
"core:app:default",
"core:resources:default",
"dialog:allow-open",
"dialog:allow-ask",
"updater:allow-check",
"shell:default",
"updater:default"
]
}

0 comments on commit 59f2799

Please sign in to comment.