diff options
| author | Alan Westbrook <[email protected]> | 2014-02-02 05:51:39 -0800 |
|---|---|---|
| committer | Alan Westbrook <[email protected]> | 2014-02-02 05:51:50 -0800 |
| commit | 9dd5cdf8414c8cc967a0277e4b2881be5bfcb9d4 (patch) | |
| tree | 77ad773b603ac87fb05be12d91dbfaf787dc0e60 /src/mac | |
| parent | Fixed auto start after install in NSIS script for Windows (diff) | |
| download | discoin-9dd5cdf8414c8cc967a0277e4b2881be5bfcb9d4.tar.xz discoin-9dd5cdf8414c8cc967a0277e4b2881be5bfcb9d4.zip | |
URL handling
Well, carp. Both Qt and the code base were quite broken for this. I
implemented workarounds and fixes such that things that weren’t broken
before should stay working, for example, if qt4 worked for a lot of
this, it still would, and if Qt on Windows / Linux worked for this
before, it shall still work for it.
Diffstat (limited to 'src/mac')
| -rw-r--r-- | src/mac/Info.plist | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/mac/Info.plist b/src/mac/Info.plist index e808b62ca..0296d108f 100644 --- a/src/mac/Info.plist +++ b/src/mac/Info.plist @@ -2,10 +2,21 @@ <!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>dogecoin</string> + <key>CFBundleURLSchemes</key> + <array> + <string>dogecoin</string> + </array> + </dict> + </array> <key>CFBundleShortVersionString</key> - <string>1.5.0</string> + <string>1.5.0</string> <key>CFBundleVersion</key> - <string>1.5</string> + <string>1.5</string> <key>NSPrincipalClass</key> <string>NSApplication</string> <key>CFBundleIconFile</key> |