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.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -6
  3. data/lib/device_detector/browser.rb +364 -0
  4. data/lib/device_detector/client.rb +8 -0
  5. data/lib/device_detector/device.rb +1124 -4
  6. data/lib/device_detector/os.rb +36 -11
  7. data/lib/device_detector/version.rb +1 -1
  8. data/lib/device_detector/version_extractor.rb +9 -0
  9. data/lib/device_detector.rb +57 -13
  10. data/regexes/bots.yml +551 -58
  11. data/regexes/client/browser_engine.yml +7 -1
  12. data/regexes/client/browsers.yml +594 -71
  13. data/regexes/client/feed_readers.yml +4 -10
  14. data/regexes/client/libraries.yml +47 -2
  15. data/regexes/client/mediaplayers.yml +25 -1
  16. data/regexes/client/mobile_apps.yml +447 -77
  17. data/regexes/client/pim.yml +49 -1
  18. data/regexes/device/cameras.yml +5 -5
  19. data/regexes/device/car_browsers.yml +16 -0
  20. data/regexes/device/consoles.yml +6 -0
  21. data/regexes/device/mobiles.yml +12905 -4561
  22. data/regexes/device/portable_media_player.yml +20 -3
  23. data/regexes/device/shell_tv.yml +117 -0
  24. data/regexes/device/televisions.yml +426 -35
  25. data/regexes/oss.yml +567 -139
  26. data/spec/device_detector/concrete_user_agent_spec.rb +30 -42
  27. data/spec/device_detector/detector_fixtures_spec.rb +9 -5
  28. data/spec/device_detector/device_spec.rb +26 -10
  29. data/spec/fixtures/client/browser.yml +1463 -391
  30. data/spec/fixtures/client/feed_reader.yml +0 -12
  31. data/spec/fixtures/client/library.yml +91 -37
  32. data/spec/fixtures/client/mediaplayer.yml +30 -0
  33. data/spec/fixtures/client/mobile_app.yml +498 -45
  34. data/spec/fixtures/client/pim.yml +60 -0
  35. data/spec/fixtures/detector/bots.yml +1189 -568
  36. data/spec/fixtures/detector/camera.yml +12 -26
  37. data/spec/fixtures/detector/car_browser.yml +151 -15
  38. data/spec/fixtures/detector/console.yml +70 -48
  39. data/spec/fixtures/detector/desktop.yml +2041 -916
  40. data/spec/fixtures/detector/feature_phone.yml +895 -189
  41. data/spec/fixtures/detector/feed_reader.yml +50 -77
  42. data/spec/fixtures/detector/mediaplayer.yml +79 -26
  43. data/spec/fixtures/detector/mobile_apps.yml +726 -72
  44. data/spec/fixtures/detector/peripheral.yml +271 -0
  45. data/spec/fixtures/detector/phablet.yml +3635 -1596
  46. data/spec/fixtures/detector/portable_media_player.yml +355 -46
  47. data/spec/fixtures/detector/smart_display.yml +183 -9
  48. data/spec/fixtures/detector/smart_speaker.yml +13 -8
  49. data/spec/fixtures/detector/smartphone-1.yml +4002 -4286
  50. data/spec/fixtures/detector/smartphone-10.yml +3771 -4763
  51. data/spec/fixtures/detector/smartphone-11.yml +3615 -4692
  52. data/spec/fixtures/detector/smartphone-12.yml +3856 -4764
  53. data/spec/fixtures/detector/smartphone-13.yml +4213 -4713
  54. data/spec/fixtures/detector/smartphone-14.yml +4039 -4497
  55. data/spec/fixtures/detector/smartphone-15.yml +5642 -2956
  56. data/spec/fixtures/detector/smartphone-16.yml +4739 -5082
  57. data/spec/fixtures/detector/smartphone-17.yml +4832 -4275
  58. data/spec/fixtures/detector/smartphone-18.yml +9806 -0
  59. data/spec/fixtures/detector/smartphone-19.yml +9965 -0
  60. data/spec/fixtures/detector/smartphone-2.yml +4842 -2589
  61. data/spec/fixtures/detector/smartphone-20.yml +9710 -0
  62. data/spec/fixtures/detector/smartphone-21.yml +8693 -0
  63. data/spec/fixtures/detector/smartphone-22.yml +10178 -0
  64. data/spec/fixtures/detector/smartphone-23.yml +9453 -0
  65. data/spec/fixtures/detector/smartphone-24.yml +9843 -0
  66. data/spec/fixtures/detector/smartphone-25.yml +9703 -0
  67. data/spec/fixtures/detector/smartphone-26.yml +10007 -0
  68. data/spec/fixtures/detector/smartphone-27.yml +4927 -0
  69. data/spec/fixtures/detector/smartphone-3.yml +4387 -4427
  70. data/spec/fixtures/detector/smartphone-4.yml +3597 -4582
  71. data/spec/fixtures/detector/smartphone-5.yml +4066 -5022
  72. data/spec/fixtures/detector/smartphone-6.yml +3455 -4621
  73. data/spec/fixtures/detector/smartphone-7.yml +3574 -4574
  74. data/spec/fixtures/detector/smartphone-8.yml +4617 -4704
  75. data/spec/fixtures/detector/smartphone-9.yml +4080 -5035
  76. data/spec/fixtures/detector/smartphone.yml +3244 -4234
  77. data/spec/fixtures/detector/tablet-1.yml +4652 -4492
  78. data/spec/fixtures/detector/tablet-2.yml +3515 -4434
  79. data/spec/fixtures/detector/tablet-3.yml +3418 -4351
  80. data/spec/fixtures/detector/tablet-4.yml +5149 -3200
  81. data/spec/fixtures/detector/tablet-5.yml +9273 -0
  82. data/spec/fixtures/detector/tablet-6.yml +4588 -0
  83. data/spec/fixtures/detector/tablet.yml +1621 -2613
  84. data/spec/fixtures/detector/tv-1.yml +2501 -0
  85. data/spec/fixtures/detector/tv.yml +7826 -3114
  86. data/spec/fixtures/detector/unknown.yml +370 -531
  87. data/spec/fixtures/detector/wearable.yml +863 -9
  88. data/spec/fixtures/parser/oss.yml +1350 -21
  89. data/spec/fixtures/parser/vendorfragments.yml +53 -53
  90. metadata +35 -5
@@ -3,7 +3,6 @@
3
3
  user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) akregator/4.11.5 Safari/537.21
4
4
  os:
5
5
  name: GNU/Linux
6
- short_name: LIN
7
6
  version: ""
8
7
  platform: x64
9
8
  client:
@@ -20,7 +19,6 @@
20
19
  user_agent: Akregator/4.12.3; syndication SUSE
21
20
  os:
22
21
  name: SUSE
23
- short_name: SSE
24
22
  version: ""
25
23
  platform: ""
26
24
  client:
@@ -63,7 +61,6 @@
63
61
  user_agent: FeedDemon/4.5 (http://www.feeddemon.com/; Microsoft Windows)
64
62
  os:
65
63
  name: Windows
66
- short_name: WIN
67
64
  version: ""
68
65
  platform: ""
69
66
  client:
@@ -80,7 +77,6 @@
80
77
  user_agent: FeedDemon/4.5 (http://www.feeddemon.com/; Microsoft Windows XP)
81
78
  os:
82
79
  name: Windows
83
- short_name: WIN
84
80
  version: "XP"
85
81
  platform: ""
86
82
  client:
@@ -97,7 +93,6 @@
97
93
  user_agent: FeeddlerPro/2.4 CFNetwork/672.0.8 Darwin/14.0.0
98
94
  os:
99
95
  name: iOS
100
- short_name: IOS
101
96
  version: "7.0"
102
97
  platform: ""
103
98
  client:
@@ -106,7 +101,7 @@
106
101
  version: "2.4"
107
102
  device:
108
103
  type: ""
109
- brand: AP
104
+ brand: Apple
110
105
  model: ""
111
106
  os_family: iOS
112
107
  browser_family: Unknown
@@ -114,7 +109,6 @@
114
109
  user_agent: FeeddlerRSS/2.4 CFNetwork/548.1.4 Darwin/11.0.0
115
110
  os:
116
111
  name: iOS
117
- short_name: IOS
118
112
  version: "5.1"
119
113
  platform: ""
120
114
  client:
@@ -123,7 +117,7 @@
123
117
  version: "2.4"
124
118
  device:
125
119
  type: ""
126
- brand: AP
120
+ brand: Apple
127
121
  model: ""
128
122
  os_family: iOS
129
123
  browser_family: Unknown
@@ -131,7 +125,6 @@
131
125
  user_agent: FeeddlerRSS 2.4 (iPad; iPhone OS 5.1.1; en_US)
132
126
  os:
133
127
  name: iOS
134
- short_name: IOS
135
128
  version: "5.1.1"
136
129
  platform: ""
137
130
  client:
@@ -140,15 +133,14 @@
140
133
  version: "2.4"
141
134
  device:
142
135
  type: tablet
143
- brand: AP
136
+ brand: Apple
144
137
  model: iPad
145
138
  os_family: iOS
146
139
  browser_family: Unknown
147
- -
140
+ -
148
141
  user_agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/602.1 (KHTML, like Gecko) QuiteRSS/0.18.12 Safari/602.1
149
142
  os:
150
143
  name: Windows
151
- short_name: WIN
152
144
  version: "7"
153
145
  platform: ""
154
146
  client:
@@ -156,7 +148,7 @@
156
148
  name: QuiteRSS
157
149
  version: "0.18.12"
158
150
  device:
159
- type: "desktop"
151
+ type: desktop
160
152
  brand: ""
161
153
  model: ""
162
154
  os_family: Windows
@@ -178,7 +170,6 @@
178
170
  user_agent: Liferea/1.6.4 (Linux; en_US.UTF-8; http://liferea.sf.net/)
179
171
  os:
180
172
  name: GNU/Linux
181
- short_name: LIN
182
173
  version: ""
183
174
  platform: ""
184
175
  client:
@@ -195,7 +186,6 @@
195
186
  user_agent: Liferea/1.10-RC1 (Linux; en_GB.UTF-8; http://liferea.sf.net/)
196
187
  os:
197
188
  name: GNU/Linux
198
- short_name: LIN
199
189
  version: ""
200
190
  platform: ""
201
191
  client:
@@ -212,7 +202,6 @@
212
202
  user_agent: Liferea/1.10.6 (Linux; en_US.UTF8; http://liferea.sf.net/) AppleWebKit (KHTML, like Gecko)
213
203
  os:
214
204
  name: GNU/Linux
215
- short_name: LIN
216
205
  version: ""
217
206
  platform: ""
218
207
  client:
@@ -229,7 +218,6 @@
229
218
  user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.74.9 (KHTML, like Gecko) Version/6.0 NetNewsWire/4.0.0
230
219
  os:
231
220
  name: Mac
232
- short_name: MAC
233
221
  version: "10.9.2"
234
222
  platform: ""
235
223
  client:
@@ -238,7 +226,7 @@
238
226
  version: "4.0.0"
239
227
  device:
240
228
  type: desktop
241
- brand: AP
229
+ brand: Apple
242
230
  model: ""
243
231
  os_family: Mac
244
232
  browser_family: Unknown
@@ -246,7 +234,6 @@
246
234
  user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.74.9 (KHTML, like Gecko) NetNewsWire/3.3.2
247
235
  os:
248
236
  name: Mac
249
- short_name: MAC
250
237
  version: "10.9.2"
251
238
  platform: ""
252
239
  client:
@@ -255,7 +242,7 @@
255
242
  version: "3.3.2"
256
243
  device:
257
244
  type: desktop
258
- brand: AP
245
+ brand: Apple
259
246
  model: ""
260
247
  os_family: Mac
261
248
  browser_family: Unknown
@@ -276,7 +263,6 @@
276
263
  user_agent: NetNewsWire/4.0.0 (Mac OS X; http://netnewswireapp.com/mac/; gzip-happy)
277
264
  os:
278
265
  name: Mac
279
- short_name: MAC
280
266
  version: ""
281
267
  platform: ""
282
268
  client:
@@ -285,49 +271,14 @@
285
271
  version: "4.0.0"
286
272
  device:
287
273
  type: desktop
288
- brand: AP
289
- model: ""
290
- os_family: Mac
291
- browser_family: Unknown
292
- -
293
- user_agent: Downcast/2.9.11 (Mac OS X Version 10.11.3 (Build 15D21))
294
- os:
295
- name: Mac
296
- short_name: MAC
297
- version: "10.11.3"
298
- platform: ""
299
- client:
300
- type: feed reader
301
- name: Downcast
302
- version: "2.9.11"
303
- device:
304
- type: desktop
305
- brand: AP
274
+ brand: Apple
306
275
  model: ""
307
276
  os_family: Mac
308
277
  browser_family: Unknown
309
- -
310
- user_agent: Downcast/2.9.11 (iPhone; iOS 9.2; Scale/2.00)
311
- os:
312
- name: iOS
313
- short_name: IOS
314
- version: "9.2"
315
- platform: ""
316
- client:
317
- type: feed reader
318
- name: Downcast
319
- version: "2.9.11"
320
- device:
321
- type: smartphone
322
- brand: AP
323
- model: iPhone
324
- os_family: iOS
325
- browser_family: Unknown
326
278
  -
327
279
  user_agent: newsbeuter/2.7 (Linux x86_64)
328
280
  os:
329
281
  name: GNU/Linux
330
- short_name: LIN
331
282
  version: ""
332
283
  platform: x64
333
284
  client:
@@ -344,7 +295,6 @@
344
295
  user_agent: NewsBlur iPhone App v3.6
345
296
  os:
346
297
  name: iOS
347
- short_name: IOS
348
298
  version: ""
349
299
  platform: ""
350
300
  client:
@@ -353,7 +303,7 @@
353
303
  version: "3.6"
354
304
  device:
355
305
  type: smartphone
356
- brand: AP
306
+ brand: Apple
357
307
  model: iPhone
358
308
  os_family: iOS
359
309
  browser_family: Unknown
@@ -361,7 +311,6 @@
361
311
  user_agent: NewsBlur iPad App v3.6
362
312
  os:
363
313
  name: iOS
364
- short_name: IOS
365
314
  version: ""
366
315
  platform: ""
367
316
  client:
@@ -370,7 +319,7 @@
370
319
  version: "3.6"
371
320
  device:
372
321
  type: tablet
373
- brand: AP
322
+ brand: Apple
374
323
  model: iPad
375
324
  os_family: iOS
376
325
  browser_family: Unknown
@@ -378,7 +327,6 @@
378
327
  user_agent: NewsBlur/4.0.1 CFNetwork/672.1.13 Darwin/14.0.0
379
328
  os:
380
329
  name: iOS
381
- short_name: IOS
382
330
  version: "7.1"
383
331
  platform: ""
384
332
  client:
@@ -387,7 +335,7 @@
387
335
  version: "4.0.1"
388
336
  device:
389
337
  type: ""
390
- brand: AP
338
+ brand: Apple
391
339
  model: ""
392
340
  os_family: iOS
393
341
  browser_family: Unknown
@@ -395,7 +343,6 @@
395
343
  user_agent: newsbeuter/2.4 (Linux 3.2.0-23-generic; i686; http://www.newsbeuter.org/) libcurl/7.22.0 GnuTLS/2.12.14 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
396
344
  os:
397
345
  name: GNU/Linux
398
- short_name: LIN
399
346
  version: ""
400
347
  platform: x86
401
348
  client:
@@ -412,7 +359,6 @@
412
359
  user_agent: Pulp/1.5.2 (iPad; http://www.acrylicapps.com/pulp/)
413
360
  os:
414
361
  name: iOS
415
- short_name: IOS
416
362
  version: ""
417
363
  platform: ""
418
364
  client:
@@ -421,7 +367,7 @@
421
367
  version: "1.5.2"
422
368
  device:
423
369
  type: tablet
424
- brand: AP
370
+ brand: Apple
425
371
  model: iPad
426
372
  os_family: iOS
427
373
  browser_family: Unknown
@@ -429,7 +375,6 @@
429
375
  user_agent: ReadKit/2.4.0 (Mac OS X Version 10.9.2 (Build 13C64))
430
376
  os:
431
377
  name: Mac
432
- short_name: MAC
433
378
  version: "10.9.2"
434
379
  platform: ""
435
380
  client:
@@ -438,16 +383,15 @@
438
383
  version: "2.4.0"
439
384
  device:
440
385
  type: desktop
441
- brand: AP
386
+ brand: Apple
442
387
  model: ""
443
388
  os_family: Mac
444
389
  browser_family: Unknown
445
390
  -
446
- user_agent: 'ReadKit/7017 CFNetwork/673.2.1 Darwin/13.1.0 (x86_64) (MacBookPro10%2C1)'
391
+ user_agent: ReadKit/7017 CFNetwork/673.2.1 Darwin/13.1.0 (x86_64) (MacBookPro10%2C1)
447
392
  os:
448
393
  name: Mac
449
- short_name: MAC
450
- version: "10.9"
394
+ version: "10.9.2"
451
395
  platform: x64
452
396
  client:
453
397
  type: feed reader
@@ -455,15 +399,14 @@
455
399
  version: "7017"
456
400
  device:
457
401
  type: desktop
458
- brand: AP
459
- model: ""
402
+ brand: Apple
403
+ model: MacBook Pro 15" (2012-2013)
460
404
  os_family: Mac
461
405
  browser_family: Unknown
462
406
  -
463
407
  user_agent: Reeder/3.2 CFNetwork/672.1.12 Darwin/14.0.0
464
408
  os:
465
409
  name: iOS
466
- short_name: IOS
467
410
  version: "7.1"
468
411
  platform: ""
469
412
  client:
@@ -472,7 +415,7 @@
472
415
  version: "3.2"
473
416
  device:
474
417
  type: ""
475
- brand: AP
418
+ brand: Apple
476
419
  model: ""
477
420
  os_family: iOS
478
421
  browser_family: Unknown
@@ -493,7 +436,6 @@
493
436
  user_agent: RssBandit/1.9.0.1002 (.NET CLR 2.0.50727.7512; WinNT 6.2.9200.0; http://www.rssbandit.org)
494
437
  os:
495
438
  name: Windows
496
- short_name: WIN
497
439
  version: "NT"
498
440
  platform: ""
499
441
  client:
@@ -523,7 +465,6 @@
523
465
  user_agent: RSSOwl/2.2.1.201312301314 (Windows; U; en)
524
466
  os:
525
467
  name: Windows
526
- short_name: WIN
527
468
  version: ""
528
469
  platform: ""
529
470
  client:
@@ -549,3 +490,35 @@
549
490
  model: ""
550
491
  os_family: Unknown
551
492
  browser_family: Unknown
493
+ -
494
+ user_agent: Evergreen (macOS; RSS Reader; https://ranchero.com/evergreen/)
495
+ os:
496
+ name: Mac
497
+ version: ""
498
+ platform: ""
499
+ client:
500
+ type: feed reader
501
+ name: NetNewsWire
502
+ version: ""
503
+ device:
504
+ type: desktop
505
+ brand: Apple
506
+ model: ""
507
+ os_family: Mac
508
+ browser_family: Unknown
509
+ -
510
+ user_agent: NetNewsWire (macOS; RSS Reader; https://ranchero.com/netnewswire/)
511
+ os:
512
+ name: Mac
513
+ version: ""
514
+ platform: ""
515
+ client:
516
+ type: feed reader
517
+ name: NetNewsWire
518
+ version: ""
519
+ device:
520
+ type: desktop
521
+ brand: Apple
522
+ model: ""
523
+ os_family: Mac
524
+ browser_family: Unknown
@@ -16,7 +16,6 @@
16
16
  user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.28) Gecko/20130316 Songbird/1.12.1 (20140112193149)
17
17
  os:
18
18
  name: GNU/Linux
19
- short_name: LIN
20
19
  version: ""
21
20
  platform: x86
22
21
  client:
@@ -33,7 +32,6 @@
33
32
  user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.28) Gecko/20130316 Nightingale/1.12.2 (20140112193149)
34
33
  os:
35
34
  name: GNU/Linux
36
- short_name: LIN
37
35
  version: ""
38
36
  platform: x86
39
37
  client:
@@ -50,7 +48,6 @@
50
48
  user_agent: iTunes/10.2.1 (Macintosh; Intel Mac OS X 10.7) AppleWebKit/534.20.8
51
49
  os:
52
50
  name: Mac
53
- short_name: MAC
54
51
  version: "10.7"
55
52
  platform: ""
56
53
  client:
@@ -59,7 +56,7 @@
59
56
  version: "10.2.1"
60
57
  device:
61
58
  type: desktop
62
- brand: AP
59
+ brand: Apple
63
60
  model: ""
64
61
  os_family: Mac
65
62
  browser_family: Unknown
@@ -67,7 +64,6 @@
67
64
  user_agent: iTunes/10.2.1 (Windows; Microsoft Windows 7 Enterprise Edition Service Pack 1 (Build 7601)) AppleWebKit/533.20.25
68
65
  os:
69
66
  name: Windows
70
- short_name: WIN
71
67
  version: "7"
72
68
  platform: ""
73
69
  client:
@@ -82,23 +78,25 @@
82
78
  browser_family: Unknown
83
79
  -
84
80
  user_agent: SAMSUNG-GT-S3850/S3850CXKD1 SHP/VPP/R5 Dolfin/2.0 NexPlayer/3.0 SMM-MMS/1.2.0 profile/MIDP-2.1 configuration/CLDC-1.1 OPN-B
85
- os: [ ]
81
+ os:
82
+ name: Java ME
83
+ version: ""
84
+ platform: ""
86
85
  client:
87
86
  type: mediaplayer
88
87
  name: NexPlayer
89
88
  version: "3.0"
90
89
  device:
91
90
  type: smartphone
92
- brand: SA
91
+ brand: Samsung
93
92
  model: GT-S3850
94
- os_family: Unknown
93
+ os_family: Real-time OS
95
94
  browser_family: Unknown
96
95
  -
97
96
  user_agent: Deezer/5.4.21.97 (Android; 6.0; Mobile; fr) WIKO U FEEL
98
97
  os:
99
98
  name: Android
100
- short_name: AND
101
- version: ""
99
+ version: "6.0"
102
100
  platform: ""
103
101
  client:
104
102
  type: mediaplayer
@@ -106,7 +104,7 @@
106
104
  version: "5.4.21.97"
107
105
  device:
108
106
  type: smartphone
109
- brand: WI
107
+ brand: Wiko
110
108
  model: U Feel
111
109
  os_family: Android
112
110
  browser_family: Unknown
@@ -114,7 +112,6 @@
114
112
  user_agent: FlyCast/1.34 (BlackBerry; 8330/4.5.0.131 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/-1)
115
113
  os:
116
114
  name: BlackBerry OS
117
- short_name: BLB
118
115
  version: ""
119
116
  platform: ""
120
117
  client:
@@ -123,7 +120,7 @@
123
120
  version: "1.34"
124
121
  device:
125
122
  type: smartphone
126
- brand: RM
123
+ brand: RIM
127
124
  model: BlackBerry
128
125
  os_family: BlackBerry
129
126
  browser_family: Unknown
@@ -144,7 +141,6 @@
144
141
  user_agent: XBMC/9.04 r19840 (Mac OS X; Darwin 9.6.0; http://www.xbmc.org)
145
142
  os:
146
143
  name: Mac
147
- short_name: MAC
148
144
  version: ""
149
145
  platform: ""
150
146
  client:
@@ -153,7 +149,7 @@
153
149
  version: "9.04"
154
150
  device:
155
151
  type: desktop
156
- brand: AP
152
+ brand: Apple
157
153
  model: ""
158
154
  os_family: Mac
159
155
  browser_family: Unknown
@@ -161,7 +157,6 @@
161
157
  user_agent: SubStream/0.7 CFNetwork/485.12.30 Darwin/10.4.0
162
158
  os:
163
159
  name: iOS
164
- short_name: IOS
165
160
  version: "4.2"
166
161
  platform: ""
167
162
  client:
@@ -170,7 +165,7 @@
170
165
  version: "0.7"
171
166
  device:
172
167
  type: ""
173
- brand: AP
168
+ brand: Apple
174
169
  model: ""
175
170
  os_family: iOS
176
171
  browser_family: Unknown
@@ -178,7 +173,6 @@
178
173
  user_agent: Samsung GT-I9505 stagefright/1.2 (Linux;Android 4.4.2)
179
174
  os:
180
175
  name: Android
181
- short_name: AND
182
176
  version: "4.4.2"
183
177
  platform: ""
184
178
  client:
@@ -187,15 +181,14 @@
187
181
  version: "1.2"
188
182
  device:
189
183
  type: smartphone
190
- brand: SA
191
- model: GALAXY S4
184
+ brand: Samsung
185
+ model: Galaxy S4
192
186
  os_family: Android
193
187
  browser_family: Unknown
194
188
  -
195
189
  user_agent: Kodi/14.0 (Macintosh; Intel Mac OS X 10_10_3) App_Bitness/64 Version/14.0-Git:2014-12-23-ad747d9-dirty
196
190
  os:
197
191
  name: Mac
198
- short_name: MAC
199
192
  version: "10.10.3"
200
193
  platform: ""
201
194
  client:
@@ -204,15 +197,14 @@
204
197
  version: "14.0"
205
198
  device:
206
199
  type: desktop
207
- brand: AP
200
+ brand: Apple
208
201
  model: ""
209
202
  os_family: Mac
210
203
  browser_family: Unknown
211
- -
204
+ -
212
205
  user_agent: GoogleChirp/1.0.1 (Linux; Android/5.0) GOOG/7 AppleWebKit/534.30 (KHTML, like Gecko)
213
206
  os:
214
207
  name: Android
215
- short_name: AND
216
208
  version: "5.0"
217
209
  platform: ""
218
210
  client:
@@ -225,7 +217,7 @@
225
217
  model: ""
226
218
  os_family: Android
227
219
  browser_family: Unknown
228
- -
220
+ -
229
221
  user_agent: Music Player Daemon 0.19.21
230
222
  os: [ ]
231
223
  client:
@@ -238,7 +230,7 @@
238
230
  model: ""
239
231
  os_family: Unknown
240
232
  browser_family: Unknown
241
- -
233
+ -
242
234
  user_agent: mpv 0.29.1
243
235
  os: [ ]
244
236
  client:
@@ -251,3 +243,64 @@
251
243
  model: ""
252
244
  os_family: Unknown
253
245
  browser_family: Unknown
246
+ -
247
+ user_agent: foobar2000/1.6.1
248
+ os: [ ]
249
+ client:
250
+ type: mediaplayer
251
+ name: Foobar2000
252
+ version: 1.6.1
253
+ device:
254
+ type: ""
255
+ brand: ""
256
+ model: ""
257
+ os_family: Unknown
258
+ browser_family: Unknown
259
+ -
260
+ user_agent: Downcast/2.9.11 (Mac OS X Version 10.11.3 (Build 15D21))
261
+ os:
262
+ name: Mac
263
+ version: "10.11.3"
264
+ platform: ""
265
+ client:
266
+ type: mediaplayer
267
+ name: Downcast
268
+ version: "2.9.11"
269
+ device:
270
+ type: desktop
271
+ brand: Apple
272
+ model: ""
273
+ os_family: Mac
274
+ browser_family: Unknown
275
+ -
276
+ user_agent: 'Downcast/1241 CFNetwork/673.4 Darwin/13.3.0 (x86_64) (MacBookAir4%2C2)'
277
+ os:
278
+ name: Mac
279
+ version: 10.9.4
280
+ platform: x64
281
+ client:
282
+ type: mediaplayer
283
+ name: Downcast
284
+ version: ""
285
+ device:
286
+ type: desktop
287
+ brand: Apple
288
+ model: MacBook Air 13" (2011)
289
+ os_family: Mac
290
+ browser_family: Unknown
291
+ -
292
+ user_agent: MediaGo/3.2.0.191 (Windows NT 10.0; WOW64) PlaybackEngine/2.20.103.05220
293
+ os:
294
+ name: Windows
295
+ version: "10"
296
+ platform: x64
297
+ client:
298
+ type: mediaplayer
299
+ name: Sony Media Go
300
+ version: 3.2.0.191
301
+ device:
302
+ type: desktop
303
+ brand: ""
304
+ model: ""
305
+ os_family: Windows
306
+ browser_family: Unknown