[vlc-commits] macosx: Allow to open https URLs,	do not list VLC as a browser
    David Fuhrmann 
    git at videolan.org
       
    Sat Dec  5 17:15:07 CET 2015
    
    
  
vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Sat Dec  5 17:12:22 2015 +0100| [66bab23eb7950a19279bad31dc642f8c87e90447] | committer: David Fuhrmann
macosx: Allow to open https URLs, do not list VLC as a browser
This allows to drop https URLs on the VLC icon as well, in addition
to http URLs.
Additionally, this removes VLC again from the list of web browsers
the user can choose in system settings --> general.
close #13672
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=66bab23eb7950a19279bad31dc642f8c87e90447
---
 extras/package/macosx/Info.plist.in |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/extras/package/macosx/Info.plist.in b/extras/package/macosx/Info.plist.in
index 2f80fbc..3b3977a 100644
--- a/extras/package/macosx/Info.plist.in
+++ b/extras/package/macosx/Info.plist.in
@@ -1376,10 +1376,13 @@
 			<key>CFBundleURLIconFile</key>
 			<string>generic</string>
 			<key>CFBundleURLName</key>
-			<string>http url</string>
+			<string>http(s) url</string>
+			<key>LSHandlerRank</key>
+			<string>None</string>
 			<key>CFBundleURLSchemes</key>
 			<array>
 				<string>http</string>
+				<string>https</string>
 			</array>
 		</dict>
 		<dict>
    
    
More information about the vlc-commits
mailing list