diff options
| author | Teddy Wing | 2018-09-05 18:42:40 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2018-09-05 18:42:40 +0200 | 
| commit | eca0aacf16cb2340507407504d8d4a5e293b4178 (patch) | |
| tree | caa5e9b81a07c1aefae014b9c647987818e8ab01 /CopyMailto | |
| parent | 3748d43501bc81d53a0e912c6db4070643052436 (diff) | |
| download | Copy-Mailto-eca0aacf16cb2340507407504d8d4a5e293b4178.tar.bz2 | |
Info.plist: Add URL handler for `mailto`
Diffstat (limited to 'CopyMailto')
| -rw-r--r-- | CopyMailto/Info.plist | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/CopyMailto/Info.plist b/CopyMailto/Info.plist index 93c9257..9e3f4b1 100644 --- a/CopyMailto/Info.plist +++ b/CopyMailto/Info.plist @@ -28,5 +28,16 @@  	<string>MainMenu</string>  	<key>NSPrincipalClass</key>  	<string>NSApplication</string> +	<key>CFBundleURLTypes</key> +	<array> +		<dict> +			<key>CFBundleURLName</key> +			<string>com.teddywing.CopyMailto</string> +			<key>CFBundleURLSchemes</key> +			<array> +				<string>mailto</string> +			</array> +		</dict> +	</array>  </dict>  </plist> | 
