Clarify browsers list for config.toml
See original GitHub issueWhen adding or updating the list of browsers in config.toml
it’s not always clear to me which browser is which.
Can we add a table in the contributing guidelines with a mapping between the expected values for config.toml
vs. naming from MDN and Caniuse?
Something like this :
config.toml |
MDN | caniuse | browserslist | |
---|---|---|---|---|
WebView Android | android |
webview_android |
Android Browser |
Android |
BlackBerry | bb |
? | ? | BlackBerry or bb |
Chrome | chrome |
chrome |
Chrome |
Chrome |
Edge | edge |
edge |
Edge |
Edge |
edge_mob | edge_mob |
? | ? | ? |
Mozilla Firefox | firefox |
firefox |
Firefox |
Firefox or ff |
iOS Safari | ios_saf |
safari_ios |
iOS Safari |
iOS or ios_saf |
Internet Explorer | ie |
ie |
IE |
Explorer or ie |
Internet Explorer Mobile | ie_mob |
? | ? | ExplorerMobile or ie_mob |
Opera | opera |
opera |
Opera |
Opera |
Opera Mini | op_mini |
? | ? | OperaMini or op_mini |
Safari | safari |
safari |
Safari |
Safari |
Firefox Android | firefox_mob |
firefox_android |
Firefox for Android |
FirefoxAndroid or and_ff |
Samsung Internet | samsung_mob |
samsunginternet_android |
Samsung Internet |
Samsung |
notes :
android
does not include later chromium based versions.edge
does not include later chromium based versions.- The significant version should be used
103
forchrome
and10.1
forSafari
.Safari
,iOS
andSamsung Internet
usemajor.minor
as the significant version. - Stats for iOS records the OS version, not the browser version
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Advanced configuration - GitLab Documentation
List of pull policies that can be specified in the .gitlab-ci.yml file or the config.toml file. If not specified, all pull policies specified...
Read more >Using the config.toml File - H2O.ai Documentation
The config.toml file is a configuration file that uses the TOML v0.5.0 file format. Administrators can customize various aspects of a ...
Read more >A theme for Hugo based on VMware Clarity - GitHub
Hugo Clarity. A technology-minded theme for Hugo based on VMware's open-source Clarity Design System featuring rich code support, dark/light mode, ...
Read more >Unable to launch more than 4 chrome browsers - Selenium Grid
Yes, there are 2 configuration params in Selenium 3 related to your issue: maxInstances: how many instances for the same type you can...
Read more >Publish Information About An Asset - Stellar Documentation
You write it in TOML, a simple and widely used configuration file format ... ACCOUNTS : A list of public keys for all...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@cdaringe our user-agent normaliser converts android chrome to chrome - if I remember correctly, android chrome and desktop chrome have the same feature set which is why we use
chrome
for them both.Our
android
distinction is for the default android webview that was used and didn’t have the same feature set as chromeHehe, yeah that was just an example of what the table could look like. I should have clarified that 😃