diff options
| author | Dustin Mierau <dustin@mierau.me> | 2023-12-12 12:58:38 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2023-12-12 12:58:38 -0800 |
| commit | f71c4cae3b21db506573bcdfa9fdb6cde41cc0ca (patch) | |
| tree | fb26e9ef242ef390d444264698758b635c77d01c /Hotline/Info.plist | |
| parent | 18c4b8643df09be4ce52a4b110ea21ac1ad053fc (diff) | |
Moved to new client/model separation so client can be used in other projects. Some UI tweaks.
Diffstat (limited to 'Hotline/Info.plist')
| -rw-r--r-- | Hotline/Info.plist | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Hotline/Info.plist b/Hotline/Info.plist new file mode 100644 index 0000000..8b58335 --- /dev/null +++ b/Hotline/Info.plist @@ -0,0 +1,29 @@ +<?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>CFBundleTypeRole</key> + <string>Viewer</string> + <key>CFBundleURLName</key> + <string>co.goodmake.hotline</string> + <key>CFBundleURLSchemes</key> + <array> + <string>hotline</string> + </array> + </dict> + <dict> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>CFBundleURLName</key> + <string>co.goodmake.hotline</string> + <key>CFBundleURLSchemes</key> + <array> + <string>hotlinetracker</string> + </array> + </dict> + </array> +</dict> +</plist> |