device_detector 1.0.0 → 1.0.5

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 (96) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop.yml +49 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +5 -9
  5. data/CHANGELOG.md +18 -5
  6. data/README.md +7 -9
  7. data/Rakefile +20 -13
  8. data/device_detector.gemspec +1 -0
  9. data/lib/device_detector.rb +32 -28
  10. data/lib/device_detector/bot.rb +2 -2
  11. data/lib/device_detector/client.rb +3 -2
  12. data/lib/device_detector/device.rb +46 -20
  13. data/lib/device_detector/memory_cache.rb +26 -19
  14. data/lib/device_detector/metadata_extractor.rb +7 -8
  15. data/lib/device_detector/model_extractor.rb +3 -3
  16. data/lib/device_detector/name_extractor.rb +2 -2
  17. data/lib/device_detector/os.rb +121 -111
  18. data/lib/device_detector/parser.rb +22 -9
  19. data/lib/device_detector/version.rb +3 -1
  20. data/lib/device_detector/version_extractor.rb +2 -3
  21. data/regexes/bots.yml +895 -21
  22. data/regexes/client/browser_engine.yml +11 -2
  23. data/regexes/client/browsers.yml +1025 -205
  24. data/regexes/client/feed_readers.yml +38 -2
  25. data/regexes/client/libraries.yml +81 -2
  26. data/regexes/client/mediaplayers.yml +25 -5
  27. data/regexes/client/mobile_apps.yml +213 -2
  28. data/regexes/client/pim.yml +10 -1
  29. data/regexes/device/cameras.yml +1 -1
  30. data/regexes/device/car_browsers.yml +7 -3
  31. data/regexes/device/consoles.yml +3 -3
  32. data/regexes/device/mobiles.yml +12768 -571
  33. data/regexes/device/notebooks.yml +114 -0
  34. data/regexes/device/portable_media_player.yml +4 -6
  35. data/regexes/device/televisions.yml +33 -5
  36. data/regexes/oss.yml +138 -49
  37. data/regexes/vendorfragments.yml +6 -2
  38. data/spec/device_detector/concrete_user_agent_spec.rb +16 -17
  39. data/spec/device_detector/detector_fixtures_spec.rb +59 -24
  40. data/spec/device_detector/device_spec.rb +28 -48
  41. data/spec/device_detector/memory_cache_spec.rb +60 -28
  42. data/spec/device_detector/model_extractor_spec.rb +3 -3
  43. data/spec/device_detector/version_extractor_spec.rb +5 -6
  44. data/spec/device_detector_spec.rb +60 -69
  45. data/spec/fixtures/client/browser.yml +1810 -260
  46. data/spec/fixtures/client/feed_reader.yml +47 -35
  47. data/spec/fixtures/client/library.yml +118 -3
  48. data/spec/fixtures/client/mediaplayer.yml +32 -37
  49. data/spec/fixtures/client/mobile_app.yml +225 -5
  50. data/spec/fixtures/client/pim.yml +37 -18
  51. data/spec/fixtures/detector/bots.yml +1531 -136
  52. data/spec/fixtures/detector/camera.yml +36 -10
  53. data/spec/fixtures/detector/car_browser.yml +64 -3
  54. data/spec/fixtures/detector/console.yml +80 -26
  55. data/spec/fixtures/detector/desktop.yml +3865 -2238
  56. data/spec/fixtures/detector/feature_phone.yml +151 -42
  57. data/spec/fixtures/detector/feed_reader.yml +186 -121
  58. data/spec/fixtures/detector/mediaplayer.yml +113 -39
  59. data/spec/fixtures/detector/mobile_apps.yml +451 -21
  60. data/spec/fixtures/detector/phablet.yml +3847 -660
  61. data/spec/fixtures/detector/portable_media_player.yml +81 -16
  62. data/spec/fixtures/detector/smart_display.yml +8 -5
  63. data/spec/fixtures/detector/smart_speaker.yml +55 -0
  64. data/spec/fixtures/detector/smartphone-1.yml +5385 -4948
  65. data/spec/fixtures/detector/smartphone-10.yml +9973 -0
  66. data/spec/fixtures/detector/smartphone-11.yml +10015 -0
  67. data/spec/fixtures/detector/smartphone-12.yml +9897 -0
  68. data/spec/fixtures/detector/smartphone-13.yml +9912 -0
  69. data/spec/fixtures/detector/smartphone-14.yml +9935 -0
  70. data/spec/fixtures/detector/smartphone-15.yml +6595 -0
  71. data/spec/fixtures/detector/smartphone-16.yml +10021 -0
  72. data/spec/fixtures/detector/smartphone-17.yml +9408 -0
  73. data/spec/fixtures/detector/smartphone-2.yml +5221 -4646
  74. data/spec/fixtures/detector/smartphone-3.yml +5047 -4494
  75. data/spec/fixtures/detector/smartphone-4.yml +6958 -2761
  76. data/spec/fixtures/detector/smartphone-5.yml +9937 -0
  77. data/spec/fixtures/detector/smartphone-6.yml +10114 -0
  78. data/spec/fixtures/detector/smartphone-7.yml +9975 -0
  79. data/spec/fixtures/detector/smartphone-8.yml +9897 -0
  80. data/spec/fixtures/detector/smartphone-9.yml +9880 -0
  81. data/spec/fixtures/detector/smartphone.yml +5229 -4649
  82. data/spec/fixtures/detector/tablet-1.yml +4640 -4140
  83. data/spec/fixtures/detector/tablet-2.yml +9806 -71
  84. data/spec/fixtures/detector/tablet-3.yml +9968 -0
  85. data/spec/fixtures/detector/tablet-4.yml +7113 -0
  86. data/spec/fixtures/detector/tablet.yml +4619 -4132
  87. data/spec/fixtures/detector/tv.yml +4093 -1342
  88. data/spec/fixtures/detector/unknown.yml +1042 -1006
  89. data/spec/fixtures/detector/wearable.yml +61 -0
  90. data/spec/fixtures/device/camera.yml +4 -3
  91. data/spec/fixtures/device/car_browser.yml +9 -2
  92. data/spec/fixtures/device/console.yml +15 -14
  93. data/spec/fixtures/device/notebook.yml +7 -0
  94. data/spec/fixtures/parser/oss.yml +291 -2
  95. data/spec/fixtures/parser/vendorfragments.yml +8 -2
  96. metadata +59 -7
@@ -0,0 +1,61 @@
1
+ ---
2
+ -
3
+ user_agent: Mozilla/5.0 (Linux; Android 8.0; LEO-BX9 Build/OWDD.180926.001.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Cr4 Mobile Safari/537.36
4
+ os:
5
+ name: Android
6
+ short_name: AND
7
+ version: "8.0"
8
+ platform: ""
9
+ client:
10
+ type: browser
11
+ name: Chrome
12
+ short_name: CH
13
+ version: "53.0.2785.143"
14
+ engine: Blink
15
+ engine_version: ""
16
+ device:
17
+ type: wearable
18
+ brand: HU
19
+ model: Smart Watch 2
20
+ os_family: Android
21
+ browser_family: Chrome
22
+ -
23
+ user_agent: Mozilla/5.0 Linux; Android 7.1.1; LG Watch Urbane Build/NWD1.180306.004 AppleWebKit/537.36 KHTML, like Gecko Chrome/19.77.34.5 Mobile Safari/537.36
24
+ os:
25
+ name: Android
26
+ short_name: AND
27
+ version: "7.1.1"
28
+ platform: ""
29
+ client:
30
+ type: browser
31
+ name: Chrome Mobile
32
+ short_name: CM
33
+ version: "19.77.34.5"
34
+ engine: WebKit
35
+ engine_version: "537.36"
36
+ device:
37
+ type: wearable
38
+ brand: LG
39
+ model: Watch Urbane
40
+ os_family: Android
41
+ browser_family: Chrome
42
+ -
43
+ user_agent: Mozilla/5.0 (Linux; Tizen 4.0; SAMSUNG SM-R820) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.0 Chrome/56.0.2924.0 Mobile Safari/537.36
44
+ os:
45
+ name: Tizen
46
+ short_name: TIZ
47
+ version: "4.0"
48
+ platform: ""
49
+ client:
50
+ type: browser
51
+ name: Samsung Browser
52
+ short_name: SB
53
+ version: "2.0"
54
+ engine: WebKit
55
+ engine_version: "537.36"
56
+ device:
57
+ type: wearable
58
+ brand: SA
59
+ model: GALAXY Watch Active 2
60
+ os_family: Other Mobile
61
+ browser_family: Chrome
@@ -1,16 +1,17 @@
1
- -
1
+ ---
2
+ -
2
3
  user_agent: Mozilla/5.0 (Linux; U; Android 4.0; de-DE; EK-GC100 Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
3
4
  device:
4
5
  type: 8
5
6
  brand: SA
6
7
  model: GALAXY Camera
7
- -
8
+ -
8
9
  user_agent: Mozilla/5.0 (Linux; Android 4.1.2; EK-GC100 Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.63 Mobile Safari/537.36 OPR/15.0.1162.60140
9
10
  device:
10
11
  type: 8
11
12
  brand: SA
12
13
  model: GALAXY Camera
13
- -
14
+ -
14
15
  user_agent: Mozilla/5.0 (Linux; U; Android 2.3.3; ja-jp; COOLPIX S800c Build/CP01_WW) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
15
16
  device:
16
17
  type: 8
@@ -1,6 +1,13 @@
1
- -
1
+ ---
2
+ -
2
3
  user_agent: Mozilla/5.0 (X11; u; Linux; C) AppleWebKit /533.3 (Khtml, like Gheko) QtCarBrowser Safari/533.3
3
4
  device:
4
5
  type: 6
5
6
  brand: TA
6
- model: Model S
7
+ model: Model S
8
+ -
9
+ user_agent: Mozilla/5.0 (X11; GNU/Linux) AppleWebKit/537.36 (KHTML, like Gecko) Chromium/75.0.3770.100 Chrome/75.0.3770.100 Safari/537.36 Tesla/2019.40.50.7-ad132c7b057e
10
+ device:
11
+ type: 6
12
+ brand: TA
13
+ model: ""
@@ -1,78 +1,79 @@
1
- -
1
+ ---
2
+ -
2
3
  user_agent: Mozilla/5.0 (Linux; Android 4.1.1; ARCHOS GAMEPAD Build/JRO03H) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Safari/535.19
3
4
  device:
4
5
  type: 4
5
6
  brand: AR
6
7
  model: Gamepad
7
- -
8
+ -
8
9
  user_agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; Xbox)
9
10
  device:
10
11
  type: 4
11
12
  brand: MS
12
13
  model: Xbox 360
13
- -
14
+ -
14
15
  user_agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0; Xbox; Xbox One)
15
16
  device:
16
17
  type: 4
17
18
  brand: MS
18
19
  model: Xbox One
19
- -
20
+ -
20
21
  user_agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586
21
22
  device:
22
23
  type: 4
23
24
  brand: MS
24
25
  model: Xbox One
25
- -
26
+ -
26
27
  user_agent: Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7498.EU
27
28
  device:
28
29
  type: 4
29
30
  brand: NI
30
31
  model: 3DS
31
- -
32
+ -
32
33
  user_agent: Bunjalloo/0.7.6(Nintendo DS;U;en)
33
34
  device:
34
35
  type: 4
35
36
  brand: NI
36
37
  model: DS
37
- -
38
+ -
38
39
  user_agent: Opera/9.30 (Nintendo Wii; U; ; 3642; en)
39
40
  device:
40
41
  type: 4
41
42
  brand: NI
42
43
  model: Wii
43
- -
44
+ -
44
45
  user_agent: Mozilla/5.0 (Nintendo WiiU) AppleWebKit/534.52 (KHTML, like Gecko) NX/2.1.0.8.21 NintendoBrowser/1.0.0.7494.US
45
46
  device:
46
47
  type: 4
47
48
  brand: NI
48
49
  model: WiiU
49
- -
50
+ -
50
51
  user_agent: Mozilla/5.0 (Linux; U; Android OUYA 4.1.2; en-us; OUYA Build/JZO54L-OUYA) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
51
52
  device:
52
53
  type: 4
53
54
  brand: OU
54
55
  model: OUYA
55
- -
56
+ -
56
57
  user_agent: Mozilla/5.0 (PLAYSTATION 3 4.46) AppleWebKit/531.22.8 (KHTML, like Gecko)
57
58
  device:
58
59
  type: 4
59
60
  brand: SO
60
61
  model: PlayStation 3
61
- -
62
+ -
62
63
  user_agent: Mozilla/5.0 (PlayStation 4 1.52) AppleWebKit/536.26 (KHTML, like Gecko)
63
64
  device:
64
65
  type: 4
65
66
  brand: SO
66
67
  model: PlayStation 4
67
- -
68
+ -
68
69
  user_agent: Mozilla/4.0 (PlayStation Portable); 2.00)
69
70
  device:
70
71
  type: 4
71
72
  brand: SO
72
73
  model: PlayStation Portable
73
- -
74
+ -
74
75
  user_agent: Mozilla/5.0 (PlayStation Vita 3.01) AppleWebKit/536.26 (KHTML, like Gecko) Silk/3.2
75
76
  device:
76
77
  type: 4
77
78
  brand: SO
78
- model: PlayStation Vita
79
+ model: PlayStation Vita
@@ -0,0 +1,7 @@
1
+ ---
2
+ -
3
+ user_agent: Mozilla/5.0 (Windows NT 10.0.16299.125; osmeta 10.3.3308) AppleWebKit/602.1.1 (KHTML, like Gecko) Version/9.0 Safari/602.1.1 osmeta/10.3.3308 Build/3308 [FBAN/FBW;FBAV/140.0.0.232.179;FBBV/83145113;FBDV/WindowsDevice;FBMD/80VR;FBSN/Windows;FBSV/10.0.16299.371;FBSS/1;FBCR/;FBID/desktop;FBLC/ru_RU;FBOP/45;FBRV/0]
4
+ device:
5
+ type: 0
6
+ brand: LE
7
+ model: Legion Y720
@@ -55,6 +55,13 @@
55
55
  short_name: FED
56
56
  version: "1.9.0.8"
57
57
  platform: x86
58
+ -
59
+ user_agent: Fire OS/5.3.6.2 stagefright/1.2 (Linux;Android 5.1.1)
60
+ os:
61
+ name: Fire OS
62
+ short_name: FIR
63
+ version: 5.3.6.2
64
+ platform: ""
58
65
  -
59
66
  user_agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:25.0) Gecko/20100101 Firefox/25.0
60
67
  os:
@@ -97,6 +104,13 @@
97
104
  short_name: HAI
98
105
  version:
99
106
  platform:
107
+ -
108
+ user_agent: Mozilla/5.0 (Macintosh; Intel Haiku R1 x86) AppleWebKit/605.1.17 (KHTML, like Gecko) WebPositive/1.2 Version/11.1 Safari/605.1.17
109
+ os:
110
+ name: Haiku OS
111
+ short_name: HAI
112
+ version: ""
113
+ platform: ""
100
114
  -
101
115
  user_agent: Mozilla/4.08 (Charon; Inferno)
102
116
  os:
@@ -125,6 +139,13 @@
125
139
  short_name: KBT
126
140
  version:
127
141
  platform:
142
+ -
143
+ user_agent: Mozilla/5.0 (Mobile; LYF/F30C/LYF_F30C-000-09-10-140318; Android; rv:48.0) Gecko/48.0 Firefox/48.0 KAIOS/2.0
144
+ os:
145
+ name: KaiOS
146
+ short_name: KOS
147
+ version: "2.0"
148
+ platform: ""
128
149
  -
129
150
  user_agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.1) Gecko/2008072820 Kubuntu/8.04 (hardy) Firefox/3.0.1
130
151
  os:
@@ -329,6 +350,13 @@
329
350
  short_name: WIN
330
351
  version: "10"
331
352
  platform: x64
353
+ -
354
+ user_agent: Mozilla/5.0 (Windows IoT 10.0; Android 6.0.1; WebView/3.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Mobile Safari/537.36 Edge/17.17083
355
+ os:
356
+ name: Windows IoT
357
+ short_name: WIO
358
+ version: "10"
359
+ platform:
332
360
  -
333
361
  user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20
334
362
  os:
@@ -427,6 +455,13 @@
427
455
  short_name: AND
428
456
  version: "2.2.2"
429
457
  platform:
458
+ -
459
+ user_agent: Mozilla/5.0 (Linux; Android 9; Pixel XL Build/PPR1.180610.009) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.91 Mobile Safari/537.36
460
+ os:
461
+ name: Android
462
+ short_name: AND
463
+ version: "9"
464
+ platform: ""
430
465
  -
431
466
  user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 8.12; MSIEMobile 6.0) acer_F900
432
467
  os:
@@ -476,6 +511,55 @@
476
511
  short_name: IOS
477
512
  version: "9.3.2"
478
513
  platform:
514
+ -
515
+ user_agent: Interflora/22 CFNetwork/808.0.1 Darwin/16.0.0
516
+ os:
517
+ name: iOS
518
+ short_name: IOS
519
+ version: "10.0"
520
+ platform: ""
521
+ -
522
+ user_agent: MobileSafari/602.1 CFNetwork/808.1.3 Darwin/16.1.0
523
+ os:
524
+ name: iOS
525
+ short_name: IOS
526
+ version: "10.1"
527
+ platform: ""
528
+ -
529
+ user_agent: MobileSafari/602.1 CFNetwork/808.2.16 Darwin/16.3.0
530
+ os:
531
+ name: iOS
532
+ short_name: IOS
533
+ version: "10.2"
534
+ platform: ""
535
+ -
536
+ user_agent: MobileSafari/602.1 CFNetwork/811.5.4 Darwin/16.6.0
537
+ os:
538
+ name: iOS
539
+ short_name: IOS
540
+ version: "10.3"
541
+ platform: ""
542
+ -
543
+ user_agent: MobileSafari/602.1 CFNetwork/808.3 Darwin/16.3.0
544
+ os:
545
+ name: iOS
546
+ short_name: IOS
547
+ version: "10.3"
548
+ platform: ""
549
+ -
550
+ user_agent: MobileSafari/604.1 CFNetwork/887 Darwin/17.0.0
551
+ os:
552
+ name: iOS
553
+ short_name: IOS
554
+ version: "11.0"
555
+ platform: ""
556
+ -
557
+ user_agent: MobileSafari/604.1 CFNetwork/889.9 Darwin/17.2.0
558
+ os:
559
+ name: iOS
560
+ short_name: IOS
561
+ version: "11.1"
562
+ platform: ""
479
563
  -
480
564
  user_agent: NokiaN73-2/3.0-630.0.2 Series60/3.0 Profile/MIDP-2.0 Configuration/CLDC-1.1
481
565
  os:
@@ -523,14 +607,14 @@
523
607
  os:
524
608
  name: Chrome OS
525
609
  short_name: COS
526
- version: "4731.101.0"
610
+ version: "31.0.1650.67"
527
611
  platform: x64
528
612
  -
529
613
  user_agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Large Screen Safari/534.24 GoogleTV/092754
530
614
  os:
531
615
  name: Google TV
532
616
  short_name: GTV
533
- version: "92754"
617
+ version: "092754"
534
618
  platform: x86
535
619
  -
536
620
  user_agent: Opera/9.80 (MTK; Nucleus; U; en-US) Presto/2.4.18 Version/10.00
@@ -595,6 +679,13 @@
595
679
  short_name: PSP
596
680
  version: "Vita"
597
681
  platform:
682
+ -
683
+ user_agent: Mozilla/5.0 (Web0S; Linux/SmartTV) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.2.1 Chrome/38.0.2125.122 Safari/537.36 WebAppManager
684
+ os:
685
+ name: webOS
686
+ short_name: WOS
687
+ version: ""
688
+ platform: ""
598
689
  -
599
690
  user_agent: Mozilla/5.0 (webOS/1.4.5; U; ru-RU) AppleWebKit/532.2 (KHTML, like Gecko) Version/1.0 Safari/532.2 Pixi/1.0
600
691
  os:
@@ -658,6 +749,13 @@
658
749
  short_name: WMO
659
750
  version:
660
751
  platform:
752
+ -
753
+ user_agent: Opera/9.7 (WindowsMobile; PPC; Opera Mobi/35267; U; en; Presto/2.1.1)
754
+ os:
755
+ name: Windows Mobile
756
+ short_name: WMO
757
+ version: ""
758
+ platform: ""
661
759
  -
662
760
  user_agent: Mozilla/3.0 WebTV/1.2 (compatible; MSIE 2.0)
663
761
  os:
@@ -798,3 +896,194 @@
798
896
  short_name: BTR
799
897
  version:
800
898
  platform: x86
899
+ -
900
+ user_agent: Instacast/4.5.4 CFNetwork/672.1.14 Darwin/14.0.0
901
+ os:
902
+ name: iOS
903
+ short_name: IOS
904
+ version: "7.1"
905
+ platform:
906
+ -
907
+ user_agent: InstacastHD/1.1.2 CFNetwork/711.0.6 Darwin/14.0.0
908
+ os:
909
+ name: iOS
910
+ short_name: IOS
911
+ version: "8.0"
912
+ platform:
913
+ -
914
+ user_agent: Instacast/2380 CFNetwork/673.3 Darwin/13.4.0 (x86_64) (MacBookPro5%2C4)
915
+ os:
916
+ name: Mac
917
+ short_name: MAC
918
+ version: "10.9"
919
+ platform: "x64"
920
+ -
921
+ user_agent: Safari/12602.3.12.0.1 CFNetwork/807.2.14 Darwin/16.3.0 (x86_64)
922
+ os:
923
+ name: Mac
924
+ short_name: MAC
925
+ version: "10.12"
926
+ platform: "x64"
927
+ -
928
+ user_agent: Safari/12603.3.8 CFNetwork/811.5.4 Darwin/16.7.0 (x86_64)
929
+ os:
930
+ name: Mac
931
+ short_name: MAC
932
+ version: "10.12"
933
+ platform: "x64"
934
+ -
935
+ user_agent: Safari/13604.1.38.1.6 CFNetwork/887 Darwin/17.0.0 (x86_64)
936
+ os:
937
+ name: Mac
938
+ short_name: MAC
939
+ version: "10.13"
940
+ platform: x64
941
+ -
942
+ user_agent: Podcasts/2.1.2
943
+ os:
944
+ name: iOS
945
+ short_name: IOS
946
+ version:
947
+ platform:
948
+ -
949
+ user_agent: Shifty Jelly Pocket Casts, Android v4.4.3.1
950
+ os:
951
+ name: Android
952
+ short_name: AND
953
+ version:
954
+ platform:
955
+ -
956
+ user_agent: Shifty Jelly Pocket Casts, iOS v4.3
957
+ os:
958
+ name: iOS
959
+ short_name: IOS
960
+ version:
961
+ platform:
962
+
963
+ -
964
+ user_agent: Mozilla/5.0 (Linux; U; en-us; BeyondPod)
965
+ os:
966
+ name: Android
967
+ short_name: AND
968
+ version:
969
+ platform:
970
+
971
+ -
972
+ user_agent: AntennaPod/0.9.9.1
973
+ os:
974
+ name: Android
975
+ short_name: AND
976
+ version:
977
+ platform:
978
+
979
+ -
980
+ user_agent: Overcast/1.0 (+http://overcast.fm/; iOS podcast app)
981
+ os:
982
+ name: iOS
983
+ short_name: IOS
984
+ version:
985
+ platform:
986
+
987
+ -
988
+ user_agent: Podkicker Pro/1.9.4
989
+ os:
990
+ name: Android
991
+ short_name: AND
992
+ version:
993
+ platform:
994
+
995
+ -
996
+ user_agent: Castro/64 CFNetwork/672.1.15 Darwin/14.0.0
997
+ os:
998
+ name: iOS
999
+ short_name: IOS
1000
+ version: "7.1"
1001
+ platform:
1002
+
1003
+ -
1004
+ user_agent: Mozilla/5.0 (Linux; U; Windows NT 6.1; en-us; dream) DoggCatcher
1005
+ os:
1006
+ name: Android
1007
+ short_name: AND
1008
+ version:
1009
+ platform:
1010
+
1011
+ -
1012
+ user_agent: iTunes-iPod/6.1.6 (4; 16GB; dt:71)
1013
+ os:
1014
+ name: iOS
1015
+ short_name: IOS
1016
+ version:
1017
+ platform:
1018
+
1019
+ -
1020
+ user_agent: TwitterAndroid/7.73.0-release.17 (8900198-r-17) HUAWEI VNS-L53/7.0 (HUAWEI;HUAWEI VNS-L53;HUAWEI;VNS-L53;0;;1;2013)
1021
+ os:
1022
+ name: Android
1023
+ short_name: AND
1024
+ version: "7.0"
1025
+ platform:
1026
+
1027
+ -
1028
+ user_agent: TwitterAndroid/7.71.1-release.15 (8900196-r-15) TA-1028/8.0.0 (HMD Global;TA-1028;Nokia;TA-1028_00WW;0;;1;2013)
1029
+ os:
1030
+ name: Android
1031
+ short_name: AND
1032
+ version: "8.0.0"
1033
+ platform:
1034
+ -
1035
+ user_agent: RSSRadio/9220 (iPad;iOS;12.3.1)
1036
+ os:
1037
+ name: iOS
1038
+ short_name: IOS
1039
+ version: ""
1040
+ platform:
1041
+ -
1042
+ user_agent: RSSRadio/9252
1043
+ os:
1044
+ name: iOS
1045
+ short_name: IOS
1046
+ version: ""
1047
+ platform:
1048
+ -
1049
+ user_agent: RSSRadio/
1050
+ os:
1051
+ name: iOS
1052
+ short_name: IOS
1053
+ version: ""
1054
+ platform:
1055
+ -
1056
+ user_agent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0 Ordissimo/3.8.6.6+svn37147
1057
+ os:
1058
+ name: Ordissimo
1059
+ short_name: ORD
1060
+ version: ""
1061
+ platform: x86
1062
+ -
1063
+ user_agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 Ordissimo/3.8.20+svn37598
1064
+ os:
1065
+ name: Ordissimo
1066
+ short_name: ORD
1067
+ version: ""
1068
+ platform: x64
1069
+ -
1070
+ user_agent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0 webissimo3/3.7.30+svn32090
1071
+ os:
1072
+ name: Ordissimo
1073
+ short_name: ORD
1074
+ version: ""
1075
+ platform: x86
1076
+ -
1077
+ user_agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:42.0) Gecko/20100101 Firefox/42.0 webissimo3/3.7.22+svn30377
1078
+ os:
1079
+ name: Ordissimo
1080
+ short_name: ORD
1081
+ version: ""
1082
+ platform: x64
1083
+ -
1084
+ user_agent: Mozilla/5.0 (X11 TOS; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 ToGate/72.0.3626.109 Safari/537.36
1085
+ os:
1086
+ name: TmaxOS
1087
+ short_name: TOS
1088
+ version: ""
1089
+ platform: x64