device_detector 0.7.0 → 0.8.0

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 (72) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +4 -0
  3. data/Rakefile +12 -6
  4. data/device_detector.gemspec +1 -1
  5. data/lib/device_detector.rb +65 -4
  6. data/lib/device_detector/client.rb +6 -6
  7. data/lib/device_detector/device.rb +62 -31
  8. data/lib/device_detector/memory_cache.rb +1 -1
  9. data/lib/device_detector/metadata_extractor.rb +4 -13
  10. data/lib/device_detector/model_extractor.rb +10 -1
  11. data/lib/device_detector/name_extractor.rb +1 -1
  12. data/lib/device_detector/os.rb +141 -5
  13. data/lib/device_detector/parser.rb +23 -12
  14. data/lib/device_detector/version.rb +1 -1
  15. data/lib/device_detector/version_extractor.rb +1 -1
  16. data/regexes/bots.yml +36 -1
  17. data/regexes/{browser_engines.yml → client/browser_engine.yml} +4 -1
  18. data/regexes/{browsers.yml → client/browsers.yml} +31 -27
  19. data/regexes/{feed_readers.yml → client/feed_readers.yml} +0 -1
  20. data/regexes/{libraries.yml → client/libraries.yml} +1 -1
  21. data/regexes/{mediaplayers.yml → client/mediaplayers.yml} +1 -1
  22. data/regexes/{mobile_apps.yml → client/mobile_apps.yml} +0 -1
  23. data/regexes/{pim.yml → client/pim.yml} +1 -1
  24. data/regexes/{devices → device}/cameras.yml +1 -1
  25. data/regexes/{devices → device}/car_browsers.yml +0 -1
  26. data/regexes/{devices → device}/consoles.yml +0 -1
  27. data/regexes/{devices → device}/mobiles.yml +193 -49
  28. data/regexes/{devices/portable_media_players.yml → device/portable_media_player.yml} +0 -1
  29. data/regexes/{devices → device}/televisions.yml +0 -3
  30. data/regexes/oss.yml +105 -102
  31. data/regexes/vendorfragments.yml +70 -0
  32. data/spec/device_detector/bot_fixtures_spec.rb +30 -0
  33. data/spec/device_detector/client_fixtures_spec.rb +31 -0
  34. data/spec/device_detector/concrete_user_agent_spec.rb +41 -1
  35. data/spec/device_detector/detector_fixtures_spec.rb +56 -0
  36. data/spec/device_detector/device_fixtures_spec.rb +36 -0
  37. data/spec/device_detector/device_spec.rb +3 -3
  38. data/spec/device_detector/memory_cache_spec.rb +1 -1
  39. data/spec/device_detector/model_extractor_spec.rb +7 -7
  40. data/spec/device_detector/os_fixtures_spec.rb +26 -0
  41. data/spec/device_detector/version_extractor_spec.rb +10 -10
  42. data/spec/device_detector_spec.rb +1 -1
  43. data/spec/fixtures/client/browser.yml +986 -0
  44. data/spec/fixtures/client/feed_reader.yml +180 -0
  45. data/spec/fixtures/client/library.yml +78 -0
  46. data/spec/fixtures/client/mediaplayer.yml +144 -0
  47. data/spec/fixtures/client/mobile_app.yml +24 -0
  48. data/spec/fixtures/client/pim.yml +90 -0
  49. data/spec/fixtures/detector/bots.yml +716 -0
  50. data/spec/fixtures/detector/camera.yml +91 -0
  51. data/spec/fixtures/detector/car_browser.yml +19 -0
  52. data/spec/fixtures/detector/console.yml +253 -0
  53. data/spec/fixtures/detector/desktop.yml +4568 -0
  54. data/spec/fixtures/detector/feature_phone.yml +719 -0
  55. data/spec/fixtures/detector/feed_reader.yml +462 -0
  56. data/spec/fixtures/detector/mediaplayer.yml +141 -0
  57. data/spec/fixtures/detector/mobile_apps.yml +32 -0
  58. data/spec/fixtures/detector/phablet.yml +1095 -0
  59. data/spec/fixtures/detector/portable_media_player.yml +145 -0
  60. data/spec/fixtures/detector/smart_display.yml +19 -0
  61. data/spec/fixtures/detector/smartphone.yml +28673 -0
  62. data/spec/fixtures/detector/tablet.yml +13201 -0
  63. data/spec/fixtures/detector/tv.yml +1380 -0
  64. data/spec/fixtures/detector/unknown.yml +3536 -0
  65. data/spec/fixtures/device/camera.yml +18 -0
  66. data/spec/fixtures/device/car_browser.yml +6 -0
  67. data/spec/fixtures/device/console.yml +72 -0
  68. data/spec/fixtures/parser/bots.yml +2055 -0
  69. data/spec/fixtures/parser/oss.yml +607 -0
  70. data/spec/fixtures/parser/vendorfragments.yml +156 -0
  71. data/spec/spec_helper.rb +6 -2
  72. metadata +84 -17
@@ -0,0 +1,607 @@
1
+ ---
2
+ -
3
+ user_agent: Mozilla/6.0 (Macintosh; U; Amiga-AWeb) Safari 3.1
4
+ os:
5
+ name: AmigaOS
6
+ short_name: AMG
7
+ version:
8
+ -
9
+ user_agent: Mozilla/5.0 (AmigaOS; U; AmigaOS 1.3; en-US; rv:1.8.1.21) Gecko/20090303 SeaMonkey/1.1.15
10
+ os:
11
+ name: AmigaOS
12
+ short_name: AMG
13
+ version: "1.3"
14
+ -
15
+ user_agent: Mozilla/5.0 ArchLinux (X11; U; Linux x86_64; en-US) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30
16
+ os:
17
+ name: Arch Linux
18
+ short_name: ARL
19
+ version:
20
+ -
21
+ user_agent: Mozilla/3.0 (compatible; NetPositive/2.2.1; BeOS)
22
+ os:
23
+ name: BeOS
24
+ short_name: BEO
25
+ version:
26
+ -
27
+ user_agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.9.0.6) Gecko/2009020414 CentOS/3.0.6-1.el5.centos Firefox/3.0.6
28
+ os:
29
+ name: CentOS
30
+ short_name: CES
31
+ version: "3.0.6"
32
+ -
33
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; fr-fr) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6
34
+ os:
35
+ name: Debian
36
+ short_name: DEB
37
+ version:
38
+ -
39
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.0.15) Gecko/2009102815 Iceweasel/3.0.6 (Debian-3.0.6-3)
40
+ os:
41
+ name: Debian
42
+ short_name: DEB
43
+ version: "3.0.6"
44
+ -
45
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.8) Gecko Fedora/1.9.0.8-1.fc10 Kazehakase/0.5.6
46
+ os:
47
+ name: Fedora
48
+ short_name: FED
49
+ version: "1.9.0.8"
50
+ -
51
+ user_agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:25.0) Gecko/20100101 Firefox/25.0
52
+ os:
53
+ name: FreeBSD
54
+ short_name: BSD
55
+ version:
56
+ -
57
+ user_agent: Mozilla/3.0 (WorldGate Gazelle 3.5.1 build 11; FreeBSD2.2.8-STABLE)
58
+ os:
59
+ name: FreeBSD
60
+ short_name: BSD
61
+ version: "2.2.8"
62
+ -
63
+ user_agent: Mozilla/5.0 (X11; U; Gentoo x86_64; de-DE) Firefox/26.0
64
+ os:
65
+ name: Gentoo
66
+ short_name: GNT
67
+ version:
68
+ -
69
+ user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20100101 conkeror/1.0pre
70
+ os:
71
+ name: GNU/Linux
72
+ short_name: LIN
73
+ version:
74
+ -
75
+ user_agent: Mozilla/5.0 (BeOS; U; Haiku BePC; en-US; rv:1.8.1.21pre) Gecko/20090218 BonEcho/2.0.0.21pre
76
+ os:
77
+ name: Haiku OS
78
+ short_name: HAI
79
+ version:
80
+ -
81
+ user_agent: Mozilla/4.08 (Charon; Inferno)
82
+ os:
83
+ name: Inferno
84
+ short_name: INF
85
+ version:
86
+ -
87
+ user_agent: 'Mozilla/4.04 [en] (X11; I; IRIX 5.3 IP22)'
88
+ os:
89
+ name: IRIX
90
+ short_name: IRI
91
+ version: "5.3"
92
+ -
93
+ user_agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Kubuntu)
94
+ os:
95
+ name: Kubuntu
96
+ short_name: KBT
97
+ version:
98
+ -
99
+ 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
100
+ os:
101
+ name: Kubuntu
102
+ short_name: KBT
103
+ version: "8.04"
104
+ -
105
+ user_agent: 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Arora/0.10.1 (Git: 1329 e5385f3) Safari/532.1'
106
+ os:
107
+ name: Mac
108
+ short_name: MAC
109
+ version:
110
+ -
111
+ user_agent: QuickTime\xaa.7.0.4 (qtver=7.0.4;cpu=PPC;os=Mac 10.3.9)
112
+ os:
113
+ name: Mac
114
+ short_name: MAC
115
+ version: "10.3.9"
116
+ -
117
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110429 Mandriva Linux/1.9.2.17-0.1mdv2010.0 (2010.0) Firefox/3.6.17
118
+ os:
119
+ name: Mandriva
120
+ short_name: MDR
121
+ version: "1.9.2.17"
122
+ -
123
+ user_agent: Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; HTC Desire Build/GRI40; MildWild CM-8.0 JG Stable) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
124
+ os:
125
+ name: MildWild
126
+ short_name: MLD
127
+ version: "8.0"
128
+ -
129
+ user_agent: Mozilla/5.0 (Macintosh; PowerPC MorphOS 3.7; Odyssey Web Browser; rv:1.23) AppleWebKit/538.1 (KHTML, like Gecko) OWB/1.23 Safari/538.1
130
+ os:
131
+ name: MorphOS
132
+ short_name: MOR
133
+ version: 3.7
134
+ -
135
+ user_agent: Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus One Build/GRK39F; CyanogenMod-7.2.0) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
136
+ os:
137
+ name: CyanogenMod
138
+ short_name: CYN
139
+ version: "7.2.0"
140
+ -
141
+ user_agent: Mozilla/5.0 (Linux; U; Android 2.3.6(RazoDroiD); fr-fr; GT-S5830i Build/RazoDroiD v2.0 by (rajrocks)rishee) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
142
+ os:
143
+ name: RazoDroiD
144
+ short_name: RZD
145
+ version:
146
+ -
147
+ user_agent: Mozilla 5.0 (Linux; U; Android 2.3.5; zh-cn; ZTE U793 Build MocorDroid2.3.5) UC AppleWebKit 534.31 (KHTML, like Gecko) Mobile Safari 534.31
148
+ os:
149
+ name: MocorDroid
150
+ short_name: MCD
151
+ version: "2.3.5"
152
+ -
153
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; es-ES; rv:2.0) Gecko/20100101 Linux Mint 16/Petra Firefox/25.0.1.
154
+ os:
155
+ name: Mint
156
+ short_name: MIN
157
+ version: "16"
158
+ -
159
+ user_agent: Mozilla/5.0 (X11; U; NetBSD amd64; fr-FR; rv:1.8.0.7) Gecko/20061102 Firefox/1.5.0.7
160
+ os:
161
+ name: NetBSD
162
+ short_name: NBS
163
+ version:
164
+ -
165
+ user_agent: Mozilla/5.0 (X11; OpenBSD amd64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.45 Safari/537.36
166
+ os:
167
+ name: OpenBSD
168
+ short_name: OBS
169
+ version:
170
+ -
171
+ user_agent: Mozilla/5.0 (OS/2; Warp 4.5; rv:10.0.12) Gecko/20100101 Firefox/10.0.12
172
+ os:
173
+ name: OS/2
174
+ short_name: OS2
175
+ version:
176
+ -
177
+ user_agent: Mozilla/3.0 (X11; I; OSF1 V4.0 alpha)
178
+ os:
179
+ name: OSF1
180
+ short_name: T64
181
+ version: "4.0"
182
+ -
183
+ user_agent: Mozilla/5.0 (compatible; Konqueror/4.3; Linux) KHTML/4.3.4 (like Gecko) Red Hat Enterprise Linux/4.3.4-19.el6
184
+ os:
185
+ name: Red Hat
186
+ short_name: RHT
187
+ version: "4.3.4"
188
+ -
189
+ user_agent: Opera/9.80 (X11; Linux x86_64; Sabayon) Presto/2.12.388 Version/12.16
190
+ os:
191
+ name: Sabayon
192
+ short_name: SAB
193
+ version:
194
+ -
195
+ user_agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.30 (KHTML, like Gecko) Slackware/Chrome/12.0.742.100 Safari/534.30
196
+ os:
197
+ name: Slackware
198
+ short_name: SLW
199
+ version:
200
+ -
201
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.2) Gecko/20090729 Slackware/13.0 Firefox/3.5.2
202
+ os:
203
+ name: Slackware
204
+ short_name: SLW
205
+ version: "13.0"
206
+ -
207
+ user_agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:1.9.1.9) Gecko/20100525 Firefox/3.5.9
208
+ os:
209
+ name: Solaris
210
+ short_name: SOS
211
+ version:
212
+ -
213
+ user_agent: Mozilla/4.0 (compatible; MSIE 5.0; SunOS 5.10 sun4u; X11)
214
+ os:
215
+ name: Solaris
216
+ short_name: SOS
217
+ version: "5.10"
218
+ -
219
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.24) Gecko/20111101 SUSE/3.6.24-0.2.1 Firefox/3.6.24
220
+ os:
221
+ name: SUSE
222
+ short_name: SSE
223
+ version: "3.6.24"
224
+ -
225
+ user_agent: Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)
226
+ os:
227
+ name: Syllable
228
+ short_name: SYL
229
+ version:
230
+ -
231
+ user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/31.0.1650.63 Chrome/31.0.1650.63 Safari/537.36
232
+ os:
233
+ name: Ubuntu
234
+ short_name: UBT
235
+ version:
236
+ -
237
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.13) Gecko/20080313 SeaMonkey/1.1.9 (Ubuntu-1.1.9+nobinonly-0ubuntu1)
238
+ os:
239
+ name: Ubuntu
240
+ short_name: UBT
241
+ version: "1.1.9"
242
+ -
243
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; it-IT; rv:1.9.0.2) Gecko/2008092313 Ubuntu/9.25 (jaunty) Firefox/3.8
244
+ os:
245
+ name: Ubuntu
246
+ short_name: UBT
247
+ version: "9.25"
248
+ -
249
+ user_agent: Mozilla/5.0 (Windows; U; Win9x; en; Stable) Gecko/20020911 Beonex/0.8.1-stable
250
+ os:
251
+ name: Windows
252
+ short_name: WIN
253
+ version:
254
+ -
255
+ user_agent: Mozilla/5.0 (Windows NT 6.4; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko
256
+ os:
257
+ name: Windows
258
+ short_name: WIN
259
+ version: "10"
260
+ -
261
+ user_agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko
262
+ os:
263
+ name: Windows
264
+ short_name: WIN
265
+ version: "10"
266
+ -
267
+ user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20
268
+ os:
269
+ name: Windows
270
+ short_name: WIN
271
+ version: "2000"
272
+ -
273
+ user_agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.4.9999.1900 Safari/537.31 BDSpark/26.4
274
+ os:
275
+ name: Windows
276
+ short_name: WIN
277
+ version: "7"
278
+ -
279
+ user_agent: Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17
280
+ os:
281
+ name: Windows
282
+ short_name: WIN
283
+ version: "8"
284
+ -
285
+ user_agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0
286
+ os:
287
+ name: Windows
288
+ short_name: WIN
289
+ version: "8.1"
290
+ -
291
+ user_agent: Mozilla/2.0 (compatible; MSIE 3.02; Update a; AOL 3.0; Windows 95)
292
+ os:
293
+ name: Windows
294
+ short_name: WIN
295
+ version: "95"
296
+ -
297
+ user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322)
298
+ os:
299
+ name: Windows
300
+ short_name: WIN
301
+ version: "ME"
302
+ -
303
+ user_agent: Mozilla/4.0 (compatible; MSIE 4.01; Digital AlphaServer 1000A 4/233; Windows NT; Powered By 64-Bit Alpha Processor)
304
+ os:
305
+ name: Windows
306
+ short_name: WIN
307
+ version: "NT"
308
+ -
309
+ user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; en-US; rv:1.9a1) Gecko/20061007 Minefield/3.0a1
310
+ os:
311
+ name: Windows
312
+ short_name: WIN
313
+ version: "Server 2003"
314
+ -
315
+ user_agent: Mozilla/5.0 (Windows NT 6.0; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0
316
+ os:
317
+ name: Windows
318
+ short_name: WIN
319
+ version: "Vista"
320
+ -
321
+ user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Avant Browser; InfoPath.1)
322
+ os:
323
+ name: Windows
324
+ short_name: WIN
325
+ version: "XP"
326
+ -
327
+ user_agent: Mozilla/5.0 (Linux; U; Android 0.5; en-us) AppleWebKit/522+ (KHTML, like Gecko) Safari/419.3
328
+ os:
329
+ name: Android
330
+ short_name: AND
331
+ version: "0.5"
332
+ -
333
+ user_agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; Acer; Allegro)
334
+ os:
335
+ name: Windows Phone
336
+ short_name: WPH
337
+ version: "7.5"
338
+ -
339
+ user_agent: Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 928) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537
340
+ os:
341
+ name: Windows Phone
342
+ short_name: WPH
343
+ version: "8.1"
344
+ -
345
+ user_agent: Mozilla/5.0 (Linux; U; Android 2.2.2; fr-fr; E310 Build/FRG83G) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 ACER_E310/1.300.05
346
+ os:
347
+ name: Android
348
+ short_name: AND
349
+ version: "2.2.2"
350
+ -
351
+ user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 8.12; MSIEMobile 6.0) acer_F900
352
+ os:
353
+ name: Windows CE
354
+ short_name: WCE
355
+ version:
356
+ -
357
+ user_agent: Mozilla/5.0 (Mobile; ALCATEL ONE TOUCH 4012A; rv:18.1) Gecko/18.1 Firefox/18.1
358
+ os:
359
+ name: Firefox OS
360
+ short_name: FOS
361
+ version:
362
+ -
363
+ user_agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; ru-ru) AppleWebKit/532.9 (KHTML, like Gecko) Mobile/8B117
364
+ os:
365
+ name: iOS
366
+ short_name: IOS
367
+ version: "4.1"
368
+ -
369
+ user_agent: NokiaN73-2/3.0-630.0.2 Series60/3.0 Profile/MIDP-2.0 Configuration/CLDC-1.1
370
+ os:
371
+ name: Symbian OS Series 60
372
+ short_name: S60
373
+ version: "3.0"
374
+ -
375
+ user_agent: XBMC/PRE-11.0 Git:20110623-62171b3 (iOS; 11.0.0 AppleTV2,1; http://www.xbmc.org)
376
+ os:
377
+ name: Apple TV
378
+ short_name: ATV
379
+ version:
380
+ -
381
+ user_agent: Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S7230E-VODAFONE/S723EBUJJ3; U; Bada/1.0; en-us) AppleWebKit/533.1 (KHTML, like Gecko) Dolfin/2.0 Mobile WQVGA SMM-MMS/1.2.0 NexPlayer/3.0 profile/MIDP-2.1 configuration/CLDC-1.1 OPN-B
382
+ os:
383
+ name: Bada
384
+ short_name: SBA
385
+ version: "1.0"
386
+ -
387
+ user_agent: BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/134
388
+ os:
389
+ name: BlackBerry OS
390
+ short_name: BLB
391
+ version: "5.0.0.681"
392
+ -
393
+ user_agent: Mozilla/5.0 (PlayBook; U; RIM Tablet OS 2.1.0; en-US) AppleWebKit/536.2+ (KHTML, like Gecko) Version/7.2.1.0 Safari/536.2+
394
+ os:
395
+ name: BlackBerry Tablet OS
396
+ short_name: QNX
397
+ version: "2.1.0"
398
+ -
399
+ user_agent: NetFront/4.2 (BMP 1.0.4; U; en-us; LG; NetFront/4.2/AMB) Boost LG272 MMP/2.0 Profile/MIDP-2.1 Configuration/CLDC-1.1
400
+ os:
401
+ name: Brew
402
+ short_name: BMP
403
+ version: "1.0.4"
404
+ -
405
+ user_agent: Mozilla/5.0 (X11; CrOS x86_64 4731.101.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.67 Safari/537.36
406
+ os:
407
+ name: Chrome OS
408
+ short_name: COS
409
+ version: "4731.101.0"
410
+ -
411
+ 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
412
+ os:
413
+ name: Google TV
414
+ short_name: GTV
415
+ version: "92754"
416
+ -
417
+ user_agent: Mozilla/5.0 (MeeGo; NokiaN9) AppleWebKit/534.13 (KHTML, like Gecko) NokiaBrowser/8.5.0 Mobile Safari/534.13
418
+ os:
419
+ name: MeeGo
420
+ short_name: SMG
421
+ version:
422
+ -
423
+ user_agent: Mozilla/5.0 (PLAYSTATION 3 4.46) AppleWebKit/531.22.8 (KHTML, like Gecko)
424
+ os:
425
+ name: PlayStation
426
+ short_name: PS3
427
+ version: "3"
428
+ -
429
+ 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
430
+ os:
431
+ name: Nintendo
432
+ short_name: WII
433
+ version: "Wii"
434
+ -
435
+ user_agent: Bunjalloo/0.7.6(Nintendo DS;U;en)
436
+ os:
437
+ name: Nintendo Mobile
438
+ short_name: NDS
439
+ version: "DS"
440
+ -
441
+ user_agent: Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7498.EU
442
+ os:
443
+ name: Nintendo Mobile
444
+ short_name: NDS
445
+ version: "3DS"
446
+ -
447
+ user_agent: Mozilla/4.0 (PlayStation Portable); 2.00)
448
+ os:
449
+ name: PlayStation Portable
450
+ short_name: PSP
451
+ version: "Portable"
452
+ -
453
+ user_agent: Mozilla/5.0 (PlayStation Vita 3.01) AppleWebKit/536.26 (KHTML, like Gecko) Silk/3.2
454
+ os:
455
+ name: PlayStation Portable
456
+ short_name: PSP
457
+ version: "Vita"
458
+ -
459
+ 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
460
+ os:
461
+ name: webOS
462
+ short_name: WOS
463
+ version: "1.4.5"
464
+ -
465
+ user_agent: CorePlayer/1.0 (Palm OS 5.4.9; ARM Intel PXA27x; en) CorePlayer/1.3.2_6909
466
+ os:
467
+ name: palmOS
468
+ short_name: POS
469
+ version: "5.4.9"
470
+ -
471
+ user_agent: Mozilla/5.0 (Linux; U; Android 2.3 YunOs 1.0.0.3; zh-cn; K-Touch W658 Build/AliyunOs-2012) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
472
+ os:
473
+ name: YunOs
474
+ short_name: YNS
475
+ version: "1.0.0.3"
476
+ -
477
+ user_agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; ARM; Trident/6.0; Touch; ARMBJS)
478
+ os:
479
+ name: Windows RT
480
+ short_name: WRT
481
+ version:
482
+ -
483
+ user_agent: Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; .NET4.0E; .NET4.0C; Tablet PC 2.0; rv:11.0) like Gecko
484
+ os:
485
+ name: Windows RT
486
+ short_name: WRT
487
+ version: "8.1"
488
+ -
489
+ user_agent: Opera/9.80 (Windows Mobile; WCE; Opera Mobi/WMD-50433; U; en) Presto/2.4.13 Version/10.00
490
+ os:
491
+ name: Windows Mobile
492
+ short_name: WMO
493
+ version:
494
+ -
495
+ user_agent: Mozilla/3.0 WebTV/1.2 (compatible; MSIE 2.0)
496
+ os:
497
+ name: WebTV
498
+ short_name: WTV
499
+ version: "1.2"
500
+ -
501
+ user_agent: Mozilla/5.0 (Linux; U; Tizen/1.0 like Android; en-us; AppleWebKit/534.46 (KHTML, like Gecko) Tizen Browser/1.0 Mobile
502
+ os:
503
+ name: Tizen
504
+ short_name: TIZ
505
+ version:
506
+ -
507
+ user_agent: Mozilla/5.0 (Symbian/3; Series60/5.2 Nokia500/010.029; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/533.4 (KHTML, like Gecko) NokiaBrowser/7.3.1.37 Mobile Safari/533.4 3gpp-gba
508
+ os:
509
+ name: Symbian^3
510
+ short_name: SY3
511
+ version: "Anna"
512
+ -
513
+ user_agent: Mozilla/5.0 (Series40; Nokia306/03.63; Profile/MIDP-2.1 Configuration/CLDC-1.1) Gecko/20100401 S40OviBrowser/3.9.0.0.22
514
+ os:
515
+ name: Symbian OS Series 40
516
+ short_name: S40
517
+ version:
518
+ -
519
+ user_agent: Nokia210/2.0 (04.12) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0 (Java; U; MIDP-2.0; en-US; Nokia210) U2/1.0.0 UCBrowser/9.3.0.326 U2/1.0.0 Mobile
520
+ os:
521
+ name: Symbian
522
+ short_name: SYM
523
+ version:
524
+ -
525
+ user_agent: Mozilla/5.0 (Maemo; Linux; U; Jolla; Sailfish; Mobile; rv:26.0) Gecko/26.0 Firefox/26.0 SailfishBrowser/1.0 like Safari/538.1
526
+ os:
527
+ name: Sailfish OS
528
+ short_name: SAF
529
+ version:
530
+ -
531
+ user_agent: 'Mozilla/1.10 [en] (Compatible; RISC OS 3.70; Oregano 1.10)'
532
+ os:
533
+ name: RISC OS
534
+ short_name: ROS
535
+ version: "3.70"
536
+ -
537
+ user_agent: Mozilla/5.0 (X11; U; AIX 5.3; en-US; rv:1.7.12) Gecko/20051025
538
+ os:
539
+ name: AIX
540
+ short_name: AIX
541
+ version: "5.3"
542
+ -
543
+ user_agent: Mozilla/5.0 (compatible; Konqueror/4.1; DragonFly) KHTML/4.1.4 (like Gecko)
544
+ os:
545
+ name: DragonFly
546
+ short_name: DFB
547
+ version:
548
+ -
549
+ user_agent: Mozilla/5.0 (X11; U; HP-UX 9000/785; es-ES; rv:1.0.1) Gecko/20020827 Netscape/7.0
550
+ os:
551
+ name: HP-UX
552
+ short_name: HPX
553
+ version: "9000"
554
+ -
555
+ user_agent: Mozilla/5.0 (X11; Knoppix; Linux i686; rv:20.0) Gecko/20100101 Firefox/20.0
556
+ os:
557
+ name: Knoppix
558
+ short_name: KNO
559
+ version:
560
+ -
561
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (VectorLinux package 3.5.3-1vl60)
562
+ os:
563
+ name: VectorLinux
564
+ short_name: VLN
565
+ version: "3.5.3"
566
+ -
567
+ user_agent: 'Mozilla/5.0 (SymbianOS/9.1; U; [en-us]) AppleWebKit/413 (KHTML, like Gecko) Safari/413'
568
+ os:
569
+ name: Symbian OS
570
+ short_name: SYS
571
+ version: "9.1"
572
+ -
573
+ user_agent: Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)
574
+ os:
575
+ name: Windows
576
+ short_name: WIN
577
+ version: "3.1"
578
+ -
579
+ user_agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)
580
+ os:
581
+ name: Windows
582
+ short_name: WIN
583
+ version: "98"
584
+ -
585
+ user_agent: XBMC/3.3-DEV-r31572 (Xbox; http://www.xbmc.org)
586
+ os:
587
+ name: Xbox
588
+ short_name: XBX
589
+ version: "360"
590
+ -
591
+ user_agent: Mozilla/5.0 (X11; Linux i686; rv:7.0.1) Firefox/17.0 Xubuntu 12.10
592
+ os:
593
+ name: Xubuntu
594
+ short_name: XBT
595
+ version: "12.10"
596
+ -
597
+ user_agent: Opera/9.80 (X11; Linux i686; U; Lubuntu 10.10; en) Presto/2.7
598
+ os:
599
+ name: Lubuntu
600
+ short_name: LBT
601
+ version: "10.10"
602
+ -
603
+ user_agent: Mozilla/4.0 (X11; BackTrack; Linux i686; rv:10.0.2) Gecko/20100101 Firefox/4.0
604
+ os:
605
+ name: BackTrack
606
+ short_name: BTR
607
+ version: