forked from genoswitch/webdfu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.browserslistrc
47 lines (36 loc) · 1.44 KB
/
.browserslistrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Adapted from https://raw.githubusercontent.com/genoswitch/pico-client/main/.browserslistrc.
# Supported Browsers
# Last Updated: 14/03/23 (DD/MM/YY)
## Definitions
# Start with defaults, override as we go along.
defaults
# Chrome:
# WebUSB supported as of Chrome 61. [1]
# The same applies to Chrome on Android.
chrome >= 61
and_chr >= 61
# Edge
# Edge (Chromium) was released at version 70.
# WebUSB supported as of Edge (Chromium) 79. [1]
# WebUSB (Dedicated Worker Context) supported since Edge (Chromium) 79.
edge >= 79
# Firefox
# Firefox has no interest in implementing WebUSB as-is.
# At the time of writing, Mozilla is against implementing the WebUSB standard. [2]
# The discussion can be viewed here: <https://github.com/mozilla/standards-positions/issues/58>
not firefox > 0
# WebKit (Safari)
# Apple are not considering support for WebUSB at this time. [3]
not safari > 0
not ios_saf > 0
# Opera
# WebUSB supported as of Opera 48 [1]
# Opera (Android) is aliases to Chrome (Android) by browserslist, which is included above. [6,7]
opera >= 48
# Samsung Internet
# WebUSB supported as of Samsung Internet 8.0. [1]
samsung >= 8.0
## Sources
# [1] MSDN - Navigator Browser Compatibility Table (https://developer.mozilla.org/en-US/docs/Web/API/USB#browser_compatibility)
# [2] Mozilla Standards Positions - WebUSB (https://mozilla.github.io/standards-positions/#webusb)
# [3] WebKit Feature Status - WebUSB (https://webkit.org/status/#specification-webusb)