mirror of
https://github.com/ivabus/gui
synced 2025-06-07 15:50:27 +03:00
Merge pull request #173 from teaxyz/partial-mac-deeplink
#143 tea:// protocol in gui
This commit is contained in:
commit
795fc51451
2 changed files with 19 additions and 1 deletions
|
@ -20,3 +20,4 @@ build
|
||||||
/src-tauri/Cargo.toml
|
/src-tauri/Cargo.toml
|
||||||
src-tauri
|
src-tauri
|
||||||
coverage/*
|
coverage/*
|
||||||
|
**/*.plist
|
17
modules/gui/src-tauri/Info.plist
Normal file
17
modules/gui/src-tauri/Info.plist
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleURLTypes</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleURLName</key>
|
||||||
|
<string>tea</string>
|
||||||
|
<key>CFBundleURLSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>tea</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
Loading…
Reference in a new issue