We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Mac, we've installed beta version of Chrome or Firefox alongside with the main release.
However, james-browser-launcher detects only the main releases:
[ { name: 'firefox', version: '59.0.2', type: 'firefox', command: '/Applications/Firefox.app' }, { name: 'chrome', version: '66.0.3359.139', type: 'chrome', command: '/Applications/Google Chrome.app' }, { name: 'safari', version: '11.1', type: 'safari', command: '/Applications/Safari.app' } ]
Run mdfind kMDItemCFBundleIdentifier=="com.google.Chrome" gives:
mdfind kMDItemCFBundleIdentifier=="com.google.Chrome"
/Applications/Google Chrome.app /Applications/Google Chrome Beta.app
and Run mdfind kMDItemCFBundleIdentifier=="org.mozilla.firefox" gives:
mdfind kMDItemCFBundleIdentifier=="org.mozilla.firefox"
/Applications/Firefox.app /Applications/Firefox Beta.app
Checked lib/darwin/util.js, not sure how to improve to support detecting both beta and main release? Any advice?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Mac, we've installed beta version of Chrome or Firefox alongside with the main release.
However, james-browser-launcher detects only the main releases:
Run
mdfind kMDItemCFBundleIdentifier=="com.google.Chrome"
gives:and Run
mdfind kMDItemCFBundleIdentifier=="org.mozilla.firefox"
gives:Checked lib/darwin/util.js, not sure how to improve to support detecting both beta and main release? Any advice?
The text was updated successfully, but these errors were encountered: