device_detector 0.9.1 → 1.0.4

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 (91) 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 +16 -3
  6. data/README.md +7 -9
  7. data/Rakefile +19 -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 +44 -21
  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 +840 -20
  22. data/regexes/client/browser_engine.yml +11 -2
  23. data/regexes/client/browsers.yml +909 -108
  24. data/regexes/client/feed_readers.yml +38 -2
  25. data/regexes/client/libraries.yml +76 -2
  26. data/regexes/client/mediaplayers.yml +25 -5
  27. data/regexes/client/mobile_apps.yml +167 -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 +10123 -465
  33. data/regexes/device/portable_media_player.yml +4 -6
  34. data/regexes/device/televisions.yml +18 -4
  35. data/regexes/oss.yml +115 -21
  36. data/regexes/vendorfragments.yml +6 -2
  37. data/spec/device_detector/concrete_user_agent_spec.rb +16 -17
  38. data/spec/device_detector/detector_fixtures_spec.rb +51 -11
  39. data/spec/device_detector/device_spec.rb +28 -48
  40. data/spec/device_detector/memory_cache_spec.rb +60 -28
  41. data/spec/device_detector/model_extractor_spec.rb +3 -3
  42. data/spec/device_detector/version_extractor_spec.rb +5 -6
  43. data/spec/device_detector_spec.rb +60 -69
  44. data/spec/fixtures/client/browser.yml +1785 -262
  45. data/spec/fixtures/client/feed_reader.yml +47 -35
  46. data/spec/fixtures/client/library.yml +112 -3
  47. data/spec/fixtures/client/mediaplayer.yml +32 -37
  48. data/spec/fixtures/client/mobile_app.yml +193 -6
  49. data/spec/fixtures/client/pim.yml +37 -18
  50. data/spec/fixtures/detector/bots.yml +1426 -118
  51. data/spec/fixtures/detector/camera.yml +36 -10
  52. data/spec/fixtures/detector/car_browser.yml +64 -3
  53. data/spec/fixtures/detector/console.yml +80 -26
  54. data/spec/fixtures/detector/desktop.yml +2222 -1589
  55. data/spec/fixtures/detector/feature_phone.yml +151 -42
  56. data/spec/fixtures/detector/feed_reader.yml +186 -121
  57. data/spec/fixtures/detector/mediaplayer.yml +113 -39
  58. data/spec/fixtures/detector/mobile_apps.yml +366 -21
  59. data/spec/fixtures/detector/phablet.yml +2597 -570
  60. data/spec/fixtures/detector/portable_media_player.yml +41 -16
  61. data/spec/fixtures/detector/smart_display.yml +8 -5
  62. data/spec/fixtures/detector/smart_speaker.yml +55 -0
  63. data/spec/fixtures/detector/smartphone-1.yml +5468 -5010
  64. data/spec/fixtures/detector/smartphone-10.yml +9977 -0
  65. data/spec/fixtures/detector/smartphone-11.yml +9891 -0
  66. data/spec/fixtures/detector/smartphone-12.yml +9906 -0
  67. data/spec/fixtures/detector/smartphone-13.yml +9920 -0
  68. data/spec/fixtures/detector/smartphone-14.yml +2662 -0
  69. data/spec/fixtures/detector/smartphone-2.yml +5213 -4635
  70. data/spec/fixtures/detector/smartphone-3.yml +5082 -4533
  71. data/spec/fixtures/detector/smartphone-4.yml +6806 -2625
  72. data/spec/fixtures/detector/smartphone-5.yml +9914 -0
  73. data/spec/fixtures/detector/smartphone-6.yml +9962 -0
  74. data/spec/fixtures/detector/smartphone-7.yml +9899 -0
  75. data/spec/fixtures/detector/smartphone-8.yml +9931 -0
  76. data/spec/fixtures/detector/smartphone-9.yml +9899 -0
  77. data/spec/fixtures/detector/smartphone.yml +5225 -4652
  78. data/spec/fixtures/detector/tablet-1.yml +4691 -4191
  79. data/spec/fixtures/detector/tablet-2.yml +9800 -71
  80. data/spec/fixtures/detector/tablet-3.yml +9959 -0
  81. data/spec/fixtures/detector/tablet-4.yml +4528 -0
  82. data/spec/fixtures/detector/tablet.yml +4664 -4177
  83. data/spec/fixtures/detector/tv.yml +3399 -1048
  84. data/spec/fixtures/detector/unknown.yml +1017 -977
  85. data/spec/fixtures/detector/wearable.yml +61 -0
  86. data/spec/fixtures/device/camera.yml +4 -3
  87. data/spec/fixtures/device/car_browser.yml +9 -2
  88. data/spec/fixtures/device/console.yml +15 -14
  89. data/spec/fixtures/parser/oss.yml +284 -2
  90. data/spec/fixtures/parser/vendorfragments.yml +8 -2
  91. metadata +50 -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
@@ -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
@@ -658,6 +742,13 @@
658
742
  short_name: WMO
659
743
  version:
660
744
  platform:
745
+ -
746
+ user_agent: Opera/9.7 (WindowsMobile; PPC; Opera Mobi/35267; U; en; Presto/2.1.1)
747
+ os:
748
+ name: Windows Mobile
749
+ short_name: WMO
750
+ version: ""
751
+ platform: ""
661
752
  -
662
753
  user_agent: Mozilla/3.0 WebTV/1.2 (compatible; MSIE 2.0)
663
754
  os:
@@ -798,3 +889,194 @@
798
889
  short_name: BTR
799
890
  version:
800
891
  platform: x86
892
+ -
893
+ user_agent: Instacast/4.5.4 CFNetwork/672.1.14 Darwin/14.0.0
894
+ os:
895
+ name: iOS
896
+ short_name: IOS
897
+ version: "7.1"
898
+ platform:
899
+ -
900
+ user_agent: InstacastHD/1.1.2 CFNetwork/711.0.6 Darwin/14.0.0
901
+ os:
902
+ name: iOS
903
+ short_name: IOS
904
+ version: "8.0"
905
+ platform:
906
+ -
907
+ user_agent: Instacast/2380 CFNetwork/673.3 Darwin/13.4.0 (x86_64) (MacBookPro5%2C4)
908
+ os:
909
+ name: Mac
910
+ short_name: MAC
911
+ version: "10.9"
912
+ platform: "x64"
913
+ -
914
+ user_agent: Safari/12602.3.12.0.1 CFNetwork/807.2.14 Darwin/16.3.0 (x86_64)
915
+ os:
916
+ name: Mac
917
+ short_name: MAC
918
+ version: "10.12"
919
+ platform: "x64"
920
+ -
921
+ user_agent: Safari/12603.3.8 CFNetwork/811.5.4 Darwin/16.7.0 (x86_64)
922
+ os:
923
+ name: Mac
924
+ short_name: MAC
925
+ version: "10.12"
926
+ platform: "x64"
927
+ -
928
+ user_agent: Safari/13604.1.38.1.6 CFNetwork/887 Darwin/17.0.0 (x86_64)
929
+ os:
930
+ name: Mac
931
+ short_name: MAC
932
+ version: "10.13"
933
+ platform: x64
934
+ -
935
+ user_agent: Podcasts/2.1.2
936
+ os:
937
+ name: iOS
938
+ short_name: IOS
939
+ version:
940
+ platform:
941
+ -
942
+ user_agent: Shifty Jelly Pocket Casts, Android v4.4.3.1
943
+ os:
944
+ name: Android
945
+ short_name: AND
946
+ version:
947
+ platform:
948
+ -
949
+ user_agent: Shifty Jelly Pocket Casts, iOS v4.3
950
+ os:
951
+ name: iOS
952
+ short_name: IOS
953
+ version:
954
+ platform:
955
+
956
+ -
957
+ user_agent: Mozilla/5.0 (Linux; U; en-us; BeyondPod)
958
+ os:
959
+ name: Android
960
+ short_name: AND
961
+ version:
962
+ platform:
963
+
964
+ -
965
+ user_agent: AntennaPod/0.9.9.1
966
+ os:
967
+ name: Android
968
+ short_name: AND
969
+ version:
970
+ platform:
971
+
972
+ -
973
+ user_agent: Overcast/1.0 (+http://overcast.fm/; iOS podcast app)
974
+ os:
975
+ name: iOS
976
+ short_name: IOS
977
+ version:
978
+ platform:
979
+
980
+ -
981
+ user_agent: Podkicker Pro/1.9.4
982
+ os:
983
+ name: Android
984
+ short_name: AND
985
+ version:
986
+ platform:
987
+
988
+ -
989
+ user_agent: Castro/64 CFNetwork/672.1.15 Darwin/14.0.0
990
+ os:
991
+ name: iOS
992
+ short_name: IOS
993
+ version: "7.1"
994
+ platform:
995
+
996
+ -
997
+ user_agent: Mozilla/5.0 (Linux; U; Windows NT 6.1; en-us; dream) DoggCatcher
998
+ os:
999
+ name: Android
1000
+ short_name: AND
1001
+ version:
1002
+ platform:
1003
+
1004
+ -
1005
+ user_agent: iTunes-iPod/6.1.6 (4; 16GB; dt:71)
1006
+ os:
1007
+ name: iOS
1008
+ short_name: IOS
1009
+ version:
1010
+ platform:
1011
+
1012
+ -
1013
+ 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)
1014
+ os:
1015
+ name: Android
1016
+ short_name: AND
1017
+ version: "7.0"
1018
+ platform:
1019
+
1020
+ -
1021
+ 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)
1022
+ os:
1023
+ name: Android
1024
+ short_name: AND
1025
+ version: "8.0.0"
1026
+ platform:
1027
+ -
1028
+ user_agent: RSSRadio/9220 (iPad;iOS;12.3.1)
1029
+ os:
1030
+ name: iOS
1031
+ short_name: IOS
1032
+ version: ""
1033
+ platform:
1034
+ -
1035
+ user_agent: RSSRadio/9252
1036
+ os:
1037
+ name: iOS
1038
+ short_name: IOS
1039
+ version: ""
1040
+ platform:
1041
+ -
1042
+ user_agent: RSSRadio/
1043
+ os:
1044
+ name: iOS
1045
+ short_name: IOS
1046
+ version: ""
1047
+ platform:
1048
+ -
1049
+ user_agent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0 Ordissimo/3.8.6.6+svn37147
1050
+ os:
1051
+ name: Ordissimo
1052
+ short_name: ORD
1053
+ version: ""
1054
+ platform: x86
1055
+ -
1056
+ user_agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 Ordissimo/3.8.20+svn37598
1057
+ os:
1058
+ name: Ordissimo
1059
+ short_name: ORD
1060
+ version: ""
1061
+ platform: x64
1062
+ -
1063
+ user_agent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0 webissimo3/3.7.30+svn32090
1064
+ os:
1065
+ name: Ordissimo
1066
+ short_name: ORD
1067
+ version: ""
1068
+ platform: x86
1069
+ -
1070
+ user_agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:42.0) Gecko/20100101 Firefox/42.0 webissimo3/3.7.22+svn30377
1071
+ os:
1072
+ name: Ordissimo
1073
+ short_name: ORD
1074
+ version: ""
1075
+ platform: x64
1076
+ -
1077
+ 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
1078
+ os:
1079
+ name: TmaxOS
1080
+ short_name: TOS
1081
+ version: ""
1082
+ platform: x64