device_detector 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -6
- data/lib/device_detector/browser.rb +364 -0
- data/lib/device_detector/client.rb +8 -0
- data/lib/device_detector/device.rb +1124 -4
- data/lib/device_detector/os.rb +36 -11
- data/lib/device_detector/version.rb +1 -1
- data/lib/device_detector/version_extractor.rb +9 -0
- data/lib/device_detector.rb +57 -13
- data/regexes/bots.yml +551 -58
- data/regexes/client/browser_engine.yml +7 -1
- data/regexes/client/browsers.yml +594 -71
- data/regexes/client/feed_readers.yml +4 -10
- data/regexes/client/libraries.yml +47 -2
- data/regexes/client/mediaplayers.yml +25 -1
- data/regexes/client/mobile_apps.yml +447 -77
- data/regexes/client/pim.yml +49 -1
- data/regexes/device/cameras.yml +5 -5
- data/regexes/device/car_browsers.yml +16 -0
- data/regexes/device/consoles.yml +6 -0
- data/regexes/device/mobiles.yml +12905 -4561
- data/regexes/device/portable_media_player.yml +20 -3
- data/regexes/device/shell_tv.yml +117 -0
- data/regexes/device/televisions.yml +426 -35
- data/regexes/oss.yml +567 -139
- data/spec/device_detector/concrete_user_agent_spec.rb +30 -42
- data/spec/device_detector/detector_fixtures_spec.rb +9 -5
- data/spec/device_detector/device_spec.rb +26 -10
- data/spec/fixtures/client/browser.yml +1463 -391
- data/spec/fixtures/client/feed_reader.yml +0 -12
- data/spec/fixtures/client/library.yml +91 -37
- data/spec/fixtures/client/mediaplayer.yml +30 -0
- data/spec/fixtures/client/mobile_app.yml +498 -45
- data/spec/fixtures/client/pim.yml +60 -0
- data/spec/fixtures/detector/bots.yml +1189 -568
- data/spec/fixtures/detector/camera.yml +12 -26
- data/spec/fixtures/detector/car_browser.yml +151 -15
- data/spec/fixtures/detector/console.yml +70 -48
- data/spec/fixtures/detector/desktop.yml +2041 -916
- data/spec/fixtures/detector/feature_phone.yml +895 -189
- data/spec/fixtures/detector/feed_reader.yml +50 -77
- data/spec/fixtures/detector/mediaplayer.yml +79 -26
- data/spec/fixtures/detector/mobile_apps.yml +726 -72
- data/spec/fixtures/detector/peripheral.yml +271 -0
- data/spec/fixtures/detector/phablet.yml +3635 -1596
- data/spec/fixtures/detector/portable_media_player.yml +355 -46
- data/spec/fixtures/detector/smart_display.yml +183 -9
- data/spec/fixtures/detector/smart_speaker.yml +13 -8
- data/spec/fixtures/detector/smartphone-1.yml +4002 -4286
- data/spec/fixtures/detector/smartphone-10.yml +3771 -4763
- data/spec/fixtures/detector/smartphone-11.yml +3615 -4692
- data/spec/fixtures/detector/smartphone-12.yml +3856 -4764
- data/spec/fixtures/detector/smartphone-13.yml +4213 -4713
- data/spec/fixtures/detector/smartphone-14.yml +4039 -4497
- data/spec/fixtures/detector/smartphone-15.yml +5642 -2956
- data/spec/fixtures/detector/smartphone-16.yml +4739 -5082
- data/spec/fixtures/detector/smartphone-17.yml +4832 -4275
- data/spec/fixtures/detector/smartphone-18.yml +9806 -0
- data/spec/fixtures/detector/smartphone-19.yml +9965 -0
- data/spec/fixtures/detector/smartphone-2.yml +4842 -2589
- data/spec/fixtures/detector/smartphone-20.yml +9710 -0
- data/spec/fixtures/detector/smartphone-21.yml +8693 -0
- data/spec/fixtures/detector/smartphone-22.yml +10178 -0
- data/spec/fixtures/detector/smartphone-23.yml +9453 -0
- data/spec/fixtures/detector/smartphone-24.yml +9843 -0
- data/spec/fixtures/detector/smartphone-25.yml +9703 -0
- data/spec/fixtures/detector/smartphone-26.yml +10007 -0
- data/spec/fixtures/detector/smartphone-27.yml +4927 -0
- data/spec/fixtures/detector/smartphone-3.yml +4387 -4427
- data/spec/fixtures/detector/smartphone-4.yml +3597 -4582
- data/spec/fixtures/detector/smartphone-5.yml +4066 -5022
- data/spec/fixtures/detector/smartphone-6.yml +3455 -4621
- data/spec/fixtures/detector/smartphone-7.yml +3574 -4574
- data/spec/fixtures/detector/smartphone-8.yml +4617 -4704
- data/spec/fixtures/detector/smartphone-9.yml +4080 -5035
- data/spec/fixtures/detector/smartphone.yml +3244 -4234
- data/spec/fixtures/detector/tablet-1.yml +4652 -4492
- data/spec/fixtures/detector/tablet-2.yml +3515 -4434
- data/spec/fixtures/detector/tablet-3.yml +3418 -4351
- data/spec/fixtures/detector/tablet-4.yml +5149 -3200
- data/spec/fixtures/detector/tablet-5.yml +9273 -0
- data/spec/fixtures/detector/tablet-6.yml +4588 -0
- data/spec/fixtures/detector/tablet.yml +1621 -2613
- data/spec/fixtures/detector/tv-1.yml +2501 -0
- data/spec/fixtures/detector/tv.yml +7826 -3114
- data/spec/fixtures/detector/unknown.yml +370 -531
- data/spec/fixtures/detector/wearable.yml +863 -9
- data/spec/fixtures/parser/oss.yml +1350 -21
- data/spec/fixtures/parser/vendorfragments.yml +53 -53
- metadata +35 -5
|
@@ -1,49 +1,44 @@
|
|
|
1
1
|
---
|
|
2
|
-
-
|
|
2
|
+
-
|
|
3
3
|
user_agent: Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2_1 like Mac OS X; ja-jp) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8C148
|
|
4
4
|
os:
|
|
5
5
|
name: iOS
|
|
6
|
-
short_name: IOS
|
|
7
6
|
version: "4.2.1"
|
|
8
7
|
platform: ""
|
|
9
8
|
client:
|
|
10
9
|
type: browser
|
|
11
10
|
name: Mobile Safari
|
|
12
|
-
short_name: MF
|
|
13
11
|
version: ""
|
|
14
12
|
engine: WebKit
|
|
15
13
|
engine_version: "533.17.9"
|
|
16
14
|
device:
|
|
17
15
|
type: portable media player
|
|
18
|
-
brand:
|
|
16
|
+
brand: Apple
|
|
19
17
|
model: iPod Touch
|
|
20
18
|
os_family: iOS
|
|
21
19
|
browser_family: Safari
|
|
22
|
-
-
|
|
20
|
+
-
|
|
23
21
|
user_agent: Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3_0 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/4B2086
|
|
24
22
|
os:
|
|
25
23
|
name: iOS
|
|
26
|
-
short_name: IOS
|
|
27
24
|
version: "4.3.0"
|
|
28
25
|
platform: ""
|
|
29
26
|
client:
|
|
30
27
|
type: browser
|
|
31
28
|
name: Mobile Safari
|
|
32
|
-
short_name: MF
|
|
33
29
|
version: ""
|
|
34
30
|
engine: WebKit
|
|
35
31
|
engine_version: "533.17.9"
|
|
36
32
|
device:
|
|
37
33
|
type: portable media player
|
|
38
|
-
brand:
|
|
34
|
+
brand: Apple
|
|
39
35
|
model: iPod Touch
|
|
40
36
|
os_family: iOS
|
|
41
37
|
browser_family: Safari
|
|
42
|
-
-
|
|
38
|
+
-
|
|
43
39
|
user_agent: Mozilla/5.0 (iPod touch; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36 Instagram 9.7.0 (iPod5,1; iPhone OS
|
|
44
40
|
os:
|
|
45
41
|
name: iOS
|
|
46
|
-
short_name: IOS
|
|
47
42
|
version: "9.3.5"
|
|
48
43
|
platform: ""
|
|
49
44
|
client:
|
|
@@ -52,127 +47,115 @@
|
|
|
52
47
|
version: "9.7.0"
|
|
53
48
|
device:
|
|
54
49
|
type: portable media player
|
|
55
|
-
brand:
|
|
50
|
+
brand: Apple
|
|
56
51
|
model: iPod Touch 5
|
|
57
52
|
os_family: iOS
|
|
58
53
|
browser_family: Unknown
|
|
59
|
-
-
|
|
54
|
+
-
|
|
60
55
|
user_agent: Mozilla/5.0 (Linux; U; Android 2.3; fr-fr; COWON D3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
|
|
61
56
|
os:
|
|
62
57
|
name: Android
|
|
63
|
-
short_name: AND
|
|
64
58
|
version: "2.3"
|
|
65
59
|
platform: ""
|
|
66
60
|
client:
|
|
67
61
|
type: browser
|
|
68
62
|
name: Android Browser
|
|
69
|
-
short_name: AN
|
|
70
63
|
version: ""
|
|
71
64
|
engine: WebKit
|
|
72
65
|
engine_version: "533.1"
|
|
73
66
|
device:
|
|
74
67
|
type: portable media player
|
|
75
|
-
brand:
|
|
68
|
+
brand: Cowon
|
|
76
69
|
model: D3
|
|
77
70
|
os_family: Android
|
|
78
71
|
browser_family: Android Browser
|
|
79
|
-
-
|
|
72
|
+
-
|
|
80
73
|
user_agent: Mozilla/5.0 (Linux; U; Android 2.3.5; fr-fr; COWON Z2 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
|
|
81
74
|
os:
|
|
82
75
|
name: Android
|
|
83
|
-
short_name: AND
|
|
84
76
|
version: "2.3.5"
|
|
85
77
|
platform: ""
|
|
86
78
|
client:
|
|
87
79
|
type: browser
|
|
88
80
|
name: Android Browser
|
|
89
|
-
short_name: AN
|
|
90
81
|
version: ""
|
|
91
82
|
engine: WebKit
|
|
92
83
|
engine_version: "533.1"
|
|
93
84
|
device:
|
|
94
85
|
type: portable media player
|
|
95
|
-
brand:
|
|
86
|
+
brand: Cowon
|
|
96
87
|
model: Z2
|
|
97
88
|
os_family: Android
|
|
98
89
|
browser_family: Android Browser
|
|
99
|
-
-
|
|
90
|
+
-
|
|
100
91
|
user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.12; Microsoft ZuneHD 4.3)
|
|
101
92
|
os:
|
|
102
93
|
name: Windows CE
|
|
103
|
-
short_name: WCE
|
|
104
94
|
version: ""
|
|
105
95
|
platform: ""
|
|
106
96
|
client:
|
|
107
97
|
type: browser
|
|
108
98
|
name: IE Mobile
|
|
109
|
-
short_name: IM
|
|
110
99
|
version: "6.12"
|
|
111
100
|
engine: Trident
|
|
112
101
|
engine_version: ""
|
|
113
102
|
device:
|
|
114
103
|
type: portable media player
|
|
115
|
-
brand:
|
|
104
|
+
brand: Microsoft
|
|
116
105
|
model: Zune HD
|
|
117
106
|
os_family: Windows Mobile
|
|
118
107
|
browser_family: Internet Explorer
|
|
119
|
-
-
|
|
108
|
+
-
|
|
120
109
|
user_agent: Mozilla/5.0 (Linux; U; Android 2.1-update1; ja-jp; Panasonic SV-MV100 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17
|
|
121
110
|
os:
|
|
122
111
|
name: Android
|
|
123
|
-
short_name: AND
|
|
124
112
|
version: "2.1"
|
|
125
113
|
platform: ""
|
|
126
114
|
client:
|
|
127
115
|
type: browser
|
|
128
116
|
name: Android Browser
|
|
129
|
-
short_name: AN
|
|
130
117
|
version: ""
|
|
131
118
|
engine: WebKit
|
|
132
119
|
engine_version: "530.17"
|
|
133
120
|
device:
|
|
134
121
|
type: portable media player
|
|
135
|
-
brand:
|
|
122
|
+
brand: Panasonic
|
|
136
123
|
model: SV-MV100
|
|
137
124
|
os_family: Android
|
|
138
125
|
browser_family: Android Browser
|
|
139
|
-
-
|
|
126
|
+
-
|
|
140
127
|
user_agent: Mozilla/5.0 (Linux; U; Android 2.3.6; ko-kr; YP-GB1 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
|
|
141
128
|
os:
|
|
142
129
|
name: Android
|
|
143
|
-
short_name: AND
|
|
144
130
|
version: "2.3.6"
|
|
145
131
|
platform: ""
|
|
146
132
|
client:
|
|
147
133
|
type: browser
|
|
148
134
|
name: Android Browser
|
|
149
|
-
short_name: AN
|
|
150
135
|
version: ""
|
|
151
136
|
engine: WebKit
|
|
152
137
|
engine_version: "533.1"
|
|
153
138
|
device:
|
|
154
139
|
type: portable media player
|
|
155
|
-
brand:
|
|
140
|
+
brand: Samsung
|
|
156
141
|
model: Galaxy Player 4.0
|
|
157
142
|
os_family: Android
|
|
158
143
|
browser_family: Android Browser
|
|
159
|
-
-
|
|
144
|
+
-
|
|
160
145
|
user_agent: Mozilla/5.0 (Linux; U; Android 2.3.6; it-it; YP-GI1 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
|
|
161
146
|
os:
|
|
162
147
|
name: Android
|
|
163
|
-
short_name: AND
|
|
164
148
|
version: "2.3.6"
|
|
165
149
|
platform: ""
|
|
166
150
|
client:
|
|
167
151
|
type: browser
|
|
168
152
|
name: Android Browser
|
|
169
|
-
short_name: AN
|
|
170
153
|
version: ""
|
|
171
154
|
engine: WebKit
|
|
172
155
|
engine_version: "533.1"
|
|
173
156
|
device:
|
|
174
157
|
type: portable media player
|
|
175
|
-
brand:
|
|
158
|
+
brand: Samsung
|
|
176
159
|
model: Galaxy Player 4.2
|
|
177
160
|
os_family: Android
|
|
178
161
|
browser_family: Android Browser
|
|
@@ -180,19 +163,17 @@
|
|
|
180
163
|
user_agent: Mozilla/5.0 (Linux; Android 5.1.1; HMT390Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Safari/537.36
|
|
181
164
|
os:
|
|
182
165
|
name: Android
|
|
183
|
-
|
|
184
|
-
version: 5.1.1
|
|
166
|
+
version: "5.1.1"
|
|
185
167
|
platform: ""
|
|
186
168
|
client:
|
|
187
169
|
type: browser
|
|
188
170
|
name: Chrome
|
|
189
|
-
|
|
190
|
-
version: 78.0.3904.62
|
|
171
|
+
version: "78.0.3904.62"
|
|
191
172
|
engine: Blink
|
|
192
173
|
engine_version: ""
|
|
193
174
|
device:
|
|
194
175
|
type: portable media player
|
|
195
|
-
brand:
|
|
176
|
+
brand: Xoro
|
|
196
177
|
model: HMT 390Q
|
|
197
178
|
os_family: Android
|
|
198
179
|
browser_family: Chrome
|
|
@@ -200,19 +181,347 @@
|
|
|
200
181
|
user_agent: Mozilla/5.0 (Linux; Android 4.4.2; HMT400 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Safari/537.36
|
|
201
182
|
os:
|
|
202
183
|
name: Android
|
|
203
|
-
|
|
204
|
-
version: 4.4.2
|
|
184
|
+
version: "4.4.2"
|
|
205
185
|
platform: ""
|
|
206
186
|
client:
|
|
207
187
|
type: browser
|
|
208
188
|
name: Chrome Webview
|
|
209
|
-
|
|
210
|
-
version: 30.0.0.0
|
|
189
|
+
version: "30.0.0.0"
|
|
211
190
|
engine: Blink
|
|
212
191
|
engine_version: ""
|
|
213
192
|
device:
|
|
214
193
|
type: portable media player
|
|
215
|
-
brand:
|
|
194
|
+
brand: Xoro
|
|
216
195
|
model: HMT 400
|
|
217
196
|
os_family: Android
|
|
218
|
-
browser_family: Chrome
|
|
197
|
+
browser_family: Chrome
|
|
198
|
+
-
|
|
199
|
+
user_agent: Mozilla/5.0 (Linux; Android 7.0; DV-PTB1080) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36
|
|
200
|
+
os:
|
|
201
|
+
name: Android
|
|
202
|
+
version: "7.0"
|
|
203
|
+
platform: ""
|
|
204
|
+
client:
|
|
205
|
+
type: browser
|
|
206
|
+
name: Chrome
|
|
207
|
+
version: 84.0.4147.125
|
|
208
|
+
engine: Blink
|
|
209
|
+
engine_version: ""
|
|
210
|
+
device:
|
|
211
|
+
type: portable media player
|
|
212
|
+
brand: Wizz
|
|
213
|
+
model: DV-PTB1080
|
|
214
|
+
os_family: Android
|
|
215
|
+
browser_family: Chrome
|
|
216
|
+
-
|
|
217
|
+
user_agent: Linux UPnP/1.0 Sonos/61.1-83170 (ZPS1)
|
|
218
|
+
os:
|
|
219
|
+
name: GNU/Linux
|
|
220
|
+
version: ""
|
|
221
|
+
platform: ""
|
|
222
|
+
client:
|
|
223
|
+
type: mediaplayer
|
|
224
|
+
name: SONOS
|
|
225
|
+
version: "61.1"
|
|
226
|
+
device:
|
|
227
|
+
type: portable media player
|
|
228
|
+
brand: SONOS
|
|
229
|
+
model: ZPS1
|
|
230
|
+
os_family: GNU/Linux
|
|
231
|
+
browser_family: Unknown
|
|
232
|
+
-
|
|
233
|
+
user_agent: Linux UPnP/1.0 Sonos/53.2-70100 (ZPS9)
|
|
234
|
+
os:
|
|
235
|
+
name: GNU/Linux
|
|
236
|
+
version: ""
|
|
237
|
+
platform: ""
|
|
238
|
+
client:
|
|
239
|
+
type: mediaplayer
|
|
240
|
+
name: SONOS
|
|
241
|
+
version: "53.2"
|
|
242
|
+
device:
|
|
243
|
+
type: portable media player
|
|
244
|
+
brand: SONOS
|
|
245
|
+
model: ZPS9
|
|
246
|
+
os_family: GNU/Linux
|
|
247
|
+
browser_family: Unknown
|
|
248
|
+
-
|
|
249
|
+
user_agent: Linux UPnP/1.0 Sonos/54.2-72031 (ZP90)
|
|
250
|
+
os:
|
|
251
|
+
name: GNU/Linux
|
|
252
|
+
version: ""
|
|
253
|
+
platform: ""
|
|
254
|
+
client:
|
|
255
|
+
type: mediaplayer
|
|
256
|
+
name: SONOS
|
|
257
|
+
version: "54.2"
|
|
258
|
+
device:
|
|
259
|
+
type: portable media player
|
|
260
|
+
brand: SONOS
|
|
261
|
+
model: ZP90
|
|
262
|
+
os_family: GNU/Linux
|
|
263
|
+
browser_family: Unknown
|
|
264
|
+
-
|
|
265
|
+
user_agent: Linux UPnP/1.0 Sonos/61.1-83170 (ZPS17)
|
|
266
|
+
os:
|
|
267
|
+
name: GNU/Linux
|
|
268
|
+
version: ""
|
|
269
|
+
platform: ""
|
|
270
|
+
client:
|
|
271
|
+
type: mediaplayer
|
|
272
|
+
name: SONOS
|
|
273
|
+
version: "61.1"
|
|
274
|
+
device:
|
|
275
|
+
type: portable media player
|
|
276
|
+
brand: SONOS
|
|
277
|
+
model: ZPS17
|
|
278
|
+
os_family: GNU/Linux
|
|
279
|
+
browser_family: Unknown
|
|
280
|
+
-
|
|
281
|
+
user_agent: Linux UPnP/1.0 Sonos/54.2-72160 (ZPS5)
|
|
282
|
+
os:
|
|
283
|
+
name: GNU/Linux
|
|
284
|
+
version: ""
|
|
285
|
+
platform: ""
|
|
286
|
+
client:
|
|
287
|
+
type: mediaplayer
|
|
288
|
+
name: SONOS
|
|
289
|
+
version: "54.2"
|
|
290
|
+
device:
|
|
291
|
+
type: portable media player
|
|
292
|
+
brand: SONOS
|
|
293
|
+
model: ZPS5
|
|
294
|
+
os_family: GNU/Linux
|
|
295
|
+
browser_family: Unknown
|
|
296
|
+
-
|
|
297
|
+
user_agent: Linux UPnP/1.0 Sonos/56.0-76060 (ZPS6)
|
|
298
|
+
os:
|
|
299
|
+
name: GNU/Linux
|
|
300
|
+
version: ""
|
|
301
|
+
platform: ""
|
|
302
|
+
client:
|
|
303
|
+
type: mediaplayer
|
|
304
|
+
name: SONOS
|
|
305
|
+
version: "56.0"
|
|
306
|
+
device:
|
|
307
|
+
type: portable media player
|
|
308
|
+
brand: SONOS
|
|
309
|
+
model: ZPS6
|
|
310
|
+
os_family: GNU/Linux
|
|
311
|
+
browser_family: Unknown
|
|
312
|
+
-
|
|
313
|
+
user_agent: Linux UPnP/1.0 Sonos/61.1-83170 (ZPS23)
|
|
314
|
+
os:
|
|
315
|
+
name: GNU/Linux
|
|
316
|
+
version: ""
|
|
317
|
+
platform: ""
|
|
318
|
+
client:
|
|
319
|
+
type: mediaplayer
|
|
320
|
+
name: SONOS
|
|
321
|
+
version: "61.1"
|
|
322
|
+
device:
|
|
323
|
+
type: portable media player
|
|
324
|
+
brand: SONOS
|
|
325
|
+
model: ZPS23
|
|
326
|
+
os_family: GNU/Linux
|
|
327
|
+
browser_family: Unknown
|
|
328
|
+
-
|
|
329
|
+
user_agent: Linux UPnP/1.0 Sonos/53.3-71050 (ZPS11)
|
|
330
|
+
os:
|
|
331
|
+
name: GNU/Linux
|
|
332
|
+
version: ""
|
|
333
|
+
platform: ""
|
|
334
|
+
client:
|
|
335
|
+
type: mediaplayer
|
|
336
|
+
name: SONOS
|
|
337
|
+
version: "53.3"
|
|
338
|
+
device:
|
|
339
|
+
type: portable media player
|
|
340
|
+
brand: SONOS
|
|
341
|
+
model: ZPS11
|
|
342
|
+
os_family: GNU/Linux
|
|
343
|
+
browser_family: Unknown
|
|
344
|
+
-
|
|
345
|
+
user_agent: Linux UPnP/1.0 Sonos/57.3-81090 (ZPS18)
|
|
346
|
+
os:
|
|
347
|
+
name: GNU/Linux
|
|
348
|
+
version: ""
|
|
349
|
+
platform: ""
|
|
350
|
+
client:
|
|
351
|
+
type: mediaplayer
|
|
352
|
+
name: SONOS
|
|
353
|
+
version: "57.3"
|
|
354
|
+
device:
|
|
355
|
+
type: portable media player
|
|
356
|
+
brand: SONOS
|
|
357
|
+
model: ZPS18
|
|
358
|
+
os_family: GNU/Linux
|
|
359
|
+
browser_family: Unknown
|
|
360
|
+
-
|
|
361
|
+
user_agent: Linux UPnP/1.0 Sonos/54.2-72031 (ZPS20)
|
|
362
|
+
os:
|
|
363
|
+
name: GNU/Linux
|
|
364
|
+
version: ""
|
|
365
|
+
platform: ""
|
|
366
|
+
client:
|
|
367
|
+
type: mediaplayer
|
|
368
|
+
name: SONOS
|
|
369
|
+
version: "54.2"
|
|
370
|
+
device:
|
|
371
|
+
type: portable media player
|
|
372
|
+
brand: SONOS
|
|
373
|
+
model: ZPS20
|
|
374
|
+
os_family: GNU/Linux
|
|
375
|
+
browser_family: Unknown
|
|
376
|
+
-
|
|
377
|
+
user_agent: Linux UPnP/1.0 Sonos/54.2-72160 (ZPS14)
|
|
378
|
+
os:
|
|
379
|
+
name: GNU/Linux
|
|
380
|
+
version: ""
|
|
381
|
+
platform: ""
|
|
382
|
+
client:
|
|
383
|
+
type: mediaplayer
|
|
384
|
+
name: SONOS
|
|
385
|
+
version: "54.2"
|
|
386
|
+
device:
|
|
387
|
+
type: portable media player
|
|
388
|
+
brand: SONOS
|
|
389
|
+
model: ZPS14
|
|
390
|
+
os_family: GNU/Linux
|
|
391
|
+
browser_family: Unknown
|
|
392
|
+
-
|
|
393
|
+
user_agent: Linux UPnP/1.0 Sonos/56.0-76060 (ZPS6)
|
|
394
|
+
os:
|
|
395
|
+
name: GNU/Linux
|
|
396
|
+
version: ""
|
|
397
|
+
platform: ""
|
|
398
|
+
client:
|
|
399
|
+
type: mediaplayer
|
|
400
|
+
name: SONOS
|
|
401
|
+
version: "56.0"
|
|
402
|
+
device:
|
|
403
|
+
type: portable media player
|
|
404
|
+
brand: SONOS
|
|
405
|
+
model: ZPS6
|
|
406
|
+
os_family: GNU/Linux
|
|
407
|
+
browser_family: Unknown
|
|
408
|
+
-
|
|
409
|
+
user_agent: Linux UPnP/1.0 Sonos/58.1-79200 (ZPS12)
|
|
410
|
+
os:
|
|
411
|
+
name: GNU/Linux
|
|
412
|
+
version: ""
|
|
413
|
+
platform: ""
|
|
414
|
+
client:
|
|
415
|
+
type: mediaplayer
|
|
416
|
+
name: SONOS
|
|
417
|
+
version: "58.1"
|
|
418
|
+
device:
|
|
419
|
+
type: portable media player
|
|
420
|
+
brand: SONOS
|
|
421
|
+
model: ZPS12
|
|
422
|
+
os_family: GNU/Linux
|
|
423
|
+
browser_family: Unknown
|
|
424
|
+
-
|
|
425
|
+
user_agent: Linux UPnP/1.0 Sonos/56.0-76060 (ZPS3)
|
|
426
|
+
os:
|
|
427
|
+
name: GNU/Linux
|
|
428
|
+
version: ""
|
|
429
|
+
platform: ""
|
|
430
|
+
client:
|
|
431
|
+
type: mediaplayer
|
|
432
|
+
name: SONOS
|
|
433
|
+
version: "56.0"
|
|
434
|
+
device:
|
|
435
|
+
type: portable media player
|
|
436
|
+
brand: SONOS
|
|
437
|
+
model: ZPS3
|
|
438
|
+
os_family: GNU/Linux
|
|
439
|
+
browser_family: Unknown
|
|
440
|
+
-
|
|
441
|
+
user_agent: Linux UPnP/1.0 Sonos/54.2-72160 (ZPS15)
|
|
442
|
+
os:
|
|
443
|
+
name: GNU/Linux
|
|
444
|
+
version: ""
|
|
445
|
+
platform: ""
|
|
446
|
+
client:
|
|
447
|
+
type: mediaplayer
|
|
448
|
+
name: SONOS
|
|
449
|
+
version: "54.2"
|
|
450
|
+
device:
|
|
451
|
+
type: portable media player
|
|
452
|
+
brand: SONOS
|
|
453
|
+
model: ZPS15
|
|
454
|
+
os_family: GNU/Linux
|
|
455
|
+
browser_family: Unknown
|
|
456
|
+
-
|
|
457
|
+
user_agent: Linux UPnP/1.0 Sonos/55.1-74250 (ZPS13)
|
|
458
|
+
os:
|
|
459
|
+
name: GNU/Linux
|
|
460
|
+
version: ""
|
|
461
|
+
platform: ""
|
|
462
|
+
client:
|
|
463
|
+
type: mediaplayer
|
|
464
|
+
name: SONOS
|
|
465
|
+
version: "55.1"
|
|
466
|
+
device:
|
|
467
|
+
type: portable media player
|
|
468
|
+
brand: SONOS
|
|
469
|
+
model: ZPS13
|
|
470
|
+
os_family: GNU/Linux
|
|
471
|
+
browser_family: Unknown
|
|
472
|
+
-
|
|
473
|
+
user_agent: Sonos;Play5;9b377073ea334637b1406f329ce005de;;tpapi;3.81.91
|
|
474
|
+
os: [ ]
|
|
475
|
+
client: null
|
|
476
|
+
device:
|
|
477
|
+
type: portable media player
|
|
478
|
+
brand: SONOS
|
|
479
|
+
model: Play:5
|
|
480
|
+
os_family: Unknown
|
|
481
|
+
browser_family: Unknown
|
|
482
|
+
-
|
|
483
|
+
user_agent: Sonos;One;9b377073ea334637b1406f329ce005de;;tpapi;3.81.91
|
|
484
|
+
os: [ ]
|
|
485
|
+
client: null
|
|
486
|
+
device:
|
|
487
|
+
type: portable media player
|
|
488
|
+
brand: SONOS
|
|
489
|
+
model: One
|
|
490
|
+
os_family: Unknown
|
|
491
|
+
browser_family: Unknown
|
|
492
|
+
-
|
|
493
|
+
user_agent: Mozilla/5.0 (Linux; U; Android 2.3.4; ja-jp; NW-Z1000Series Build/C121) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
|
|
494
|
+
os:
|
|
495
|
+
name: Android
|
|
496
|
+
version: 2.3.4
|
|
497
|
+
platform: ""
|
|
498
|
+
client:
|
|
499
|
+
type: browser
|
|
500
|
+
name: Android Browser
|
|
501
|
+
version: ""
|
|
502
|
+
engine: WebKit
|
|
503
|
+
engine_version: "533.1"
|
|
504
|
+
device:
|
|
505
|
+
type: portable media player
|
|
506
|
+
brand: Sony
|
|
507
|
+
model: Walkman Z1000
|
|
508
|
+
os_family: Android
|
|
509
|
+
browser_family: Android Browser
|
|
510
|
+
-
|
|
511
|
+
user_agent: Mozilla/5.0 (Linux; Android 5.1.1; LENCO Diverso-700) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36
|
|
512
|
+
os:
|
|
513
|
+
name: Android
|
|
514
|
+
version: 5.1.1
|
|
515
|
+
platform: ""
|
|
516
|
+
client:
|
|
517
|
+
type: browser
|
|
518
|
+
name: Chrome
|
|
519
|
+
version: 74.0.3729.157
|
|
520
|
+
engine: Blink
|
|
521
|
+
engine_version: ""
|
|
522
|
+
device:
|
|
523
|
+
type: portable media player
|
|
524
|
+
brand: Lenco
|
|
525
|
+
model: Diverso 700
|
|
526
|
+
os_family: Android
|
|
527
|
+
browser_family: Chrome
|