I'm wondering why we use org.netsurf-browser.NetSurf.URI as CFBundleURLName...
Shouldn't it be a human name ?

It seems both Safari just uses "Web site URL".
Firefox seems to separate http and https though:

                <dict>
                        <key>CFBundleURLIconFile</key>
                        <string>document.icns</string>
                        <key>CFBundleURLName</key>
                        <string>http URL</string>
                        <key>CFBundleURLSchemes</key>
                        <array>
                                <string>http</string>
                        </array>
                </dict>
                <dict>
                        <key>CFBundleURLIconFile</key>
                        <string>document.icns</string>
                        <key>CFBundleURLName</key>
                        <string>https URL</string>
                        <key>CFBundleURLSchemes</key>
                        <array>
                                <string>https</string>
                        </array>
                </dict>
                

François.

Reply via email to