Skip to content

Commit 51e3e21

Browse files
committed
Support external links with the opener plugin
1 parent 91ef131 commit 51e3e21

File tree

8 files changed

+273
-19
lines changed

8 files changed

+273
-19
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"@headlessui/vue": "^1.7.22",
3636
"@mermaid-js/mermaid-mindmap": "^9.3.0",
3737
"@tabler/icons-vue": "^3.11.0",
38+
"@tauri-apps/plugin-opener": "^2.2.4",
3839
"codemirror-lang-mermaid": "^0.2.2",
3940
"culori": "^3.3.0",
4041
"deepmerge": "^4.3.1",

pnpm-lock.yaml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.lock

Lines changed: 240 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ tauri = { version = "2.1.0", features = [] }
2525
tauri-plugin-log = "2.0.0-rc"
2626
tauri-plugin-dialog = "2.2.0"
2727
tauri-plugin-process = "2.2.0"
28+
tauri-plugin-opener = "2.2.4"
2829

2930
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
3031
tauri-plugin-updater = "2"

src-tauri/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
fn main() {
2-
tauri_build::build()
2+
tauri_build::build()
33
}

0 commit comments

Comments
 (0)