Skip to content

Commit

Permalink
Add required permissions for updater
Browse files Browse the repository at this point in the history
  • Loading branch information
hrzlgnm committed Mar 15, 2024
1 parent ff13c17 commit 3dd2585
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
tauri-build = { version = "1", features = [] }

[dependencies]
tauri = { version = "1", features = ["shell-open", "updater", "dialog"] }
tauri = { version = "1", features = ["shell-open", "updater", "dialog", "http-all"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
mdns-sd = "0.10.4"
Expand Down
7 changes: 6 additions & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "mdns-browser",
"version": "0.1.5"
"version": "0.1.6"
},
"tauri": {
"allowlist": {
Expand All @@ -20,6 +20,11 @@
"dialog": {
"all": false,
"ask": true
},
"http": {
"all": true,
"request": true,
"scope": ["https://gist.githubusercontent.com/hrzlgnm/261433a660b7c056dc49b3ea6350689a/raw/516662d3954eb11d590ca2556a51c77d31b7df29/*"]
}
},
"windows": [
Expand Down

0 comments on commit 3dd2585

Please sign in to comment.