device_detector 0.8.2 → 0.9.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.
- checksums.yaml +4 -4
- data/.travis.yml +11 -3
- data/CHANGELOG.md +10 -5
- data/README.md +4 -4
- data/Rakefile +24 -19
- data/device_detector.gemspec +1 -1
- data/lib/device_detector.rb +25 -3
- data/lib/device_detector/device.rb +1 -1
- data/lib/device_detector/model_extractor.rb +4 -0
- data/lib/device_detector/os.rb +8 -3
- data/lib/device_detector/parser.rb +1 -1
- data/lib/device_detector/version.rb +1 -1
- data/regexes/bots.yml +211 -27
- data/regexes/client/browsers.yml +192 -58
- data/regexes/client/feed_readers.yml +6 -0
- data/regexes/client/libraries.yml +4 -0
- data/regexes/client/mediaplayers.yml +8 -4
- data/regexes/client/mobile_apps.yml +39 -4
- data/regexes/client/pim.yml +4 -0
- data/regexes/device/mobiles.yml +1803 -242
- data/regexes/device/televisions.yml +53 -11
- data/regexes/oss.yml +180 -12
- data/regexes/vendorfragments.yml +1 -0
- data/spec/device_detector/concrete_user_agent_spec.rb +36 -0
- data/spec/device_detector/detector_fixtures_spec.rb +1 -1
- data/spec/fixtures/client/browser.yml +313 -2
- data/spec/fixtures/client/feed_reader.yml +8 -1
- data/spec/fixtures/client/library.yml +7 -1
- data/spec/fixtures/client/mediaplayer.yml +6 -1
- data/spec/fixtures/client/mobile_app.yml +6 -0
- data/spec/fixtures/client/pim.yml +6 -0
- data/spec/fixtures/detector/bots.yml +2307 -612
- data/spec/fixtures/detector/camera.yml +6 -0
- data/spec/fixtures/detector/car_browser.yml +1 -0
- data/spec/fixtures/detector/console.yml +14 -0
- data/spec/fixtures/detector/desktop.yml +308 -48
- data/spec/fixtures/detector/feature_phone.yml +63 -0
- data/spec/fixtures/detector/feed_reader.yml +50 -26
- data/spec/fixtures/detector/mediaplayer.yml +28 -6
- data/spec/fixtures/detector/mobile_apps.yml +117 -0
- data/spec/fixtures/detector/phablet.yml +1066 -183
- data/spec/fixtures/detector/portable_media_player.yml +8 -0
- data/spec/fixtures/detector/smart_display.yml +39 -0
- data/spec/fixtures/detector/smartphone-1.yml +9469 -0
- data/spec/fixtures/detector/smartphone-2.yml +9414 -0
- data/spec/fixtures/detector/smartphone-3.yml +9396 -0
- data/spec/fixtures/detector/smartphone-4.yml +5742 -0
- data/spec/fixtures/detector/smartphone.yml +3446 -23680
- data/spec/fixtures/detector/tablet-1.yml +9495 -0
- data/spec/fixtures/detector/tablet-2.yml +248 -0
- data/spec/fixtures/detector/tablet.yml +2786 -7961
- data/spec/fixtures/detector/tv.yml +1376 -210
- data/spec/fixtures/detector/unknown.yml +205 -509
- data/spec/fixtures/device/console.yml +6 -0
- data/spec/fixtures/parser/oss.yml +194 -1
- data/spec/fixtures/parser/vendorfragments.yml +6 -0
- metadata +16 -6
- data/spec/fixtures/parser/bots.yml +0 -2055
@@ -16,6 +16,12 @@
|
|
16
16
|
type: 4
|
17
17
|
brand: MS
|
18
18
|
model: Xbox One
|
19
|
+
-
|
20
|
+
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
|
+
device:
|
22
|
+
type: 4
|
23
|
+
brand: MS
|
24
|
+
model: Xbox One
|
19
25
|
-
|
20
26
|
user_agent: Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7498.EU
|
21
27
|
device:
|
@@ -5,335 +5,413 @@
|
|
5
5
|
name: AmigaOS
|
6
6
|
short_name: AMG
|
7
7
|
version:
|
8
|
+
platform:
|
8
9
|
-
|
9
10
|
user_agent: Mozilla/5.0 (AmigaOS; U; AmigaOS 1.3; en-US; rv:1.8.1.21) Gecko/20090303 SeaMonkey/1.1.15
|
10
11
|
os:
|
11
12
|
name: AmigaOS
|
12
13
|
short_name: AMG
|
13
14
|
version: "1.3"
|
15
|
+
platform:
|
14
16
|
-
|
15
17
|
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
18
|
os:
|
17
19
|
name: Arch Linux
|
18
20
|
short_name: ARL
|
19
21
|
version:
|
22
|
+
platform: x64
|
20
23
|
-
|
21
24
|
user_agent: Mozilla/3.0 (compatible; NetPositive/2.2.1; BeOS)
|
22
25
|
os:
|
23
26
|
name: BeOS
|
24
27
|
short_name: BEO
|
25
28
|
version:
|
29
|
+
platform:
|
26
30
|
-
|
27
31
|
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
32
|
os:
|
29
33
|
name: CentOS
|
30
34
|
short_name: CES
|
31
35
|
version: "3.0.6"
|
36
|
+
platform: x64
|
32
37
|
-
|
33
38
|
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
39
|
os:
|
35
40
|
name: Debian
|
36
41
|
short_name: DEB
|
37
42
|
version:
|
43
|
+
platform: x86
|
38
44
|
-
|
39
45
|
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
46
|
os:
|
41
47
|
name: Debian
|
42
48
|
short_name: DEB
|
43
49
|
version: "3.0.6"
|
50
|
+
platform: x86
|
44
51
|
-
|
45
52
|
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
53
|
os:
|
47
54
|
name: Fedora
|
48
55
|
short_name: FED
|
49
56
|
version: "1.9.0.8"
|
57
|
+
platform: x86
|
50
58
|
-
|
51
59
|
user_agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:25.0) Gecko/20100101 Firefox/25.0
|
52
60
|
os:
|
53
61
|
name: FreeBSD
|
54
62
|
short_name: BSD
|
55
63
|
version:
|
64
|
+
platform: x64
|
56
65
|
-
|
57
66
|
user_agent: Mozilla/3.0 (WorldGate Gazelle 3.5.1 build 11; FreeBSD2.2.8-STABLE)
|
58
67
|
os:
|
59
68
|
name: FreeBSD
|
60
69
|
short_name: BSD
|
61
70
|
version: "2.2.8"
|
71
|
+
platform:
|
62
72
|
-
|
63
73
|
user_agent: Mozilla/5.0 (X11; U; Gentoo x86_64; de-DE) Firefox/26.0
|
64
74
|
os:
|
65
75
|
name: Gentoo
|
66
76
|
short_name: GNT
|
67
77
|
version:
|
78
|
+
platform: x64
|
68
79
|
-
|
69
80
|
user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20100101 conkeror/1.0pre
|
70
81
|
os:
|
71
82
|
name: GNU/Linux
|
72
83
|
short_name: LIN
|
73
84
|
version:
|
85
|
+
platform: x64
|
86
|
+
-
|
87
|
+
user_agent: MOT-A1600/1.0 LinuxOS/2.4.20 Release/8.22.2006 Browser/Opera8.00 Profile/MIDP-2.0 Configuration/CLDC-1.1 Software/R542_G_11.61.33R
|
88
|
+
os:
|
89
|
+
name: GNU/Linux
|
90
|
+
short_name: LIN
|
91
|
+
version:
|
92
|
+
platform:
|
74
93
|
-
|
75
94
|
user_agent: Mozilla/5.0 (BeOS; U; Haiku BePC; en-US; rv:1.8.1.21pre) Gecko/20090218 BonEcho/2.0.0.21pre
|
76
95
|
os:
|
77
96
|
name: Haiku OS
|
78
97
|
short_name: HAI
|
79
98
|
version:
|
99
|
+
platform:
|
80
100
|
-
|
81
101
|
user_agent: Mozilla/4.08 (Charon; Inferno)
|
82
102
|
os:
|
83
103
|
name: Inferno
|
84
104
|
short_name: INF
|
85
105
|
version:
|
106
|
+
platform:
|
86
107
|
-
|
87
108
|
user_agent: 'Mozilla/4.04 [en] (X11; I; IRIX 5.3 IP22)'
|
88
109
|
os:
|
89
110
|
name: IRIX
|
90
111
|
short_name: IRI
|
91
112
|
version: "5.3"
|
113
|
+
platform:
|
114
|
+
-
|
115
|
+
user_agent: 'Mozilla/4.77 [en] (X11; I; IRIX;64 6.5 IP30)'
|
116
|
+
os:
|
117
|
+
name: IRIX
|
118
|
+
short_name: IRI
|
119
|
+
version: "6.5"
|
120
|
+
platform:
|
92
121
|
-
|
93
122
|
user_agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Kubuntu)
|
94
123
|
os:
|
95
124
|
name: Kubuntu
|
96
125
|
short_name: KBT
|
97
126
|
version:
|
127
|
+
platform:
|
98
128
|
-
|
99
129
|
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
130
|
os:
|
101
131
|
name: Kubuntu
|
102
132
|
short_name: KBT
|
103
133
|
version: "8.04"
|
134
|
+
platform: x64
|
104
135
|
-
|
105
136
|
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
137
|
os:
|
107
138
|
name: Mac
|
108
139
|
short_name: MAC
|
109
140
|
version:
|
141
|
+
platform:
|
110
142
|
-
|
111
143
|
user_agent: QuickTime\xaa.7.0.4 (qtver=7.0.4;cpu=PPC;os=Mac 10.3.9)
|
112
144
|
os:
|
113
145
|
name: Mac
|
114
146
|
short_name: MAC
|
115
147
|
version: "10.3.9"
|
148
|
+
platform:
|
116
149
|
-
|
117
150
|
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
151
|
os:
|
119
152
|
name: Mandriva
|
120
153
|
short_name: MDR
|
121
154
|
version: "1.9.2.17"
|
155
|
+
platform: x86
|
122
156
|
-
|
123
157
|
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
158
|
os:
|
125
159
|
name: MildWild
|
126
160
|
short_name: MLD
|
127
161
|
version: "8.0"
|
162
|
+
platform:
|
128
163
|
-
|
129
164
|
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
165
|
os:
|
131
166
|
name: MorphOS
|
132
167
|
short_name: MOR
|
133
168
|
version: 3.7
|
169
|
+
platform:
|
134
170
|
-
|
135
171
|
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
172
|
os:
|
137
173
|
name: CyanogenMod
|
138
174
|
short_name: CYN
|
139
175
|
version: "7.2.0"
|
176
|
+
platform:
|
140
177
|
-
|
141
178
|
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
179
|
os:
|
143
180
|
name: RazoDroiD
|
144
181
|
short_name: RZD
|
145
182
|
version:
|
183
|
+
platform:
|
146
184
|
-
|
147
185
|
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
186
|
os:
|
149
187
|
name: MocorDroid
|
150
188
|
short_name: MCD
|
151
189
|
version: "2.3.5"
|
190
|
+
platform:
|
191
|
+
-
|
192
|
+
user_agent: Mozilla/5.0 (X11; U; Linux armv7l; pt-PT; rv:1.9.2.3pre) Gecko/20100723 Firefox/3.5 Maemo Browser 1.7.4.8 RX-51 N900
|
193
|
+
os:
|
194
|
+
name: Maemo
|
195
|
+
short_name: MAE
|
196
|
+
version:
|
197
|
+
platform: ARM
|
198
|
+
client:
|
152
199
|
-
|
153
200
|
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
201
|
os:
|
155
202
|
name: Mint
|
156
203
|
short_name: MIN
|
157
204
|
version: "16"
|
205
|
+
platform: x86
|
158
206
|
-
|
159
207
|
user_agent: Mozilla/5.0 (X11; U; NetBSD amd64; fr-FR; rv:1.8.0.7) Gecko/20061102 Firefox/1.5.0.7
|
160
208
|
os:
|
161
209
|
name: NetBSD
|
162
210
|
short_name: NBS
|
163
211
|
version:
|
212
|
+
platform: x64
|
164
213
|
-
|
165
214
|
user_agent: Mozilla/5.0 (X11; OpenBSD amd64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.45 Safari/537.36
|
166
215
|
os:
|
167
216
|
name: OpenBSD
|
168
217
|
short_name: OBS
|
169
218
|
version:
|
219
|
+
platform: x64
|
170
220
|
-
|
171
221
|
user_agent: Mozilla/5.0 (OS/2; Warp 4.5; rv:10.0.12) Gecko/20100101 Firefox/10.0.12
|
172
222
|
os:
|
173
223
|
name: OS/2
|
174
224
|
short_name: OS2
|
175
225
|
version:
|
226
|
+
platform:
|
176
227
|
-
|
177
228
|
user_agent: Mozilla/3.0 (X11; I; OSF1 V4.0 alpha)
|
178
229
|
os:
|
179
230
|
name: OSF1
|
180
231
|
short_name: T64
|
181
232
|
version: "4.0"
|
233
|
+
platform:
|
182
234
|
-
|
183
235
|
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
236
|
os:
|
185
237
|
name: Red Hat
|
186
238
|
short_name: RHT
|
187
239
|
version: "4.3.4"
|
240
|
+
platform:
|
188
241
|
-
|
189
242
|
user_agent: Opera/9.80 (X11; Linux x86_64; Sabayon) Presto/2.12.388 Version/12.16
|
190
243
|
os:
|
191
244
|
name: Sabayon
|
192
245
|
short_name: SAB
|
193
246
|
version:
|
247
|
+
platform: x64
|
194
248
|
-
|
195
249
|
user_agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.30 (KHTML, like Gecko) Slackware/Chrome/12.0.742.100 Safari/534.30
|
196
250
|
os:
|
197
251
|
name: Slackware
|
198
252
|
short_name: SLW
|
199
253
|
version:
|
254
|
+
platform: x86
|
200
255
|
-
|
201
256
|
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
257
|
os:
|
203
258
|
name: Slackware
|
204
259
|
short_name: SLW
|
205
260
|
version: "13.0"
|
261
|
+
platform: x86
|
206
262
|
-
|
207
263
|
user_agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:1.9.1.9) Gecko/20100525 Firefox/3.5.9
|
208
264
|
os:
|
209
265
|
name: Solaris
|
210
266
|
short_name: SOS
|
211
267
|
version:
|
268
|
+
platform: x86
|
212
269
|
-
|
213
270
|
user_agent: Mozilla/4.0 (compatible; MSIE 5.0; SunOS 5.10 sun4u; X11)
|
214
271
|
os:
|
215
272
|
name: Solaris
|
216
273
|
short_name: SOS
|
217
274
|
version: "5.10"
|
275
|
+
platform:
|
218
276
|
-
|
219
277
|
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
278
|
os:
|
221
279
|
name: SUSE
|
222
280
|
short_name: SSE
|
223
281
|
version: "3.6.24"
|
282
|
+
platform: x86
|
224
283
|
-
|
225
284
|
user_agent: Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)
|
226
285
|
os:
|
227
286
|
name: Syllable
|
228
287
|
short_name: SYL
|
229
288
|
version:
|
289
|
+
platform:
|
230
290
|
-
|
231
291
|
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
292
|
os:
|
233
293
|
name: Ubuntu
|
234
294
|
short_name: UBT
|
235
295
|
version:
|
296
|
+
platform: x64
|
236
297
|
-
|
237
298
|
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
299
|
os:
|
239
300
|
name: Ubuntu
|
240
301
|
short_name: UBT
|
241
302
|
version: "1.1.9"
|
303
|
+
platform: x86
|
242
304
|
-
|
243
305
|
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
306
|
os:
|
245
307
|
name: Ubuntu
|
246
308
|
short_name: UBT
|
247
309
|
version: "9.25"
|
310
|
+
platform: x86
|
248
311
|
-
|
249
312
|
user_agent: Mozilla/5.0 (Windows; U; Win9x; en; Stable) Gecko/20020911 Beonex/0.8.1-stable
|
250
313
|
os:
|
251
314
|
name: Windows
|
252
315
|
short_name: WIN
|
253
316
|
version:
|
317
|
+
platform:
|
254
318
|
-
|
255
319
|
user_agent: Mozilla/5.0 (Windows NT 6.4; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko
|
256
320
|
os:
|
257
321
|
name: Windows
|
258
322
|
short_name: WIN
|
259
323
|
version: "10"
|
324
|
+
platform: x64
|
260
325
|
-
|
261
326
|
user_agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko
|
262
327
|
os:
|
263
328
|
name: Windows
|
264
329
|
short_name: WIN
|
265
330
|
version: "10"
|
331
|
+
platform: x64
|
266
332
|
-
|
267
333
|
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
334
|
os:
|
269
335
|
name: Windows
|
270
336
|
short_name: WIN
|
271
337
|
version: "2000"
|
338
|
+
platform:
|
272
339
|
-
|
273
340
|
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
341
|
os:
|
275
342
|
name: Windows
|
276
343
|
short_name: WIN
|
277
344
|
version: "7"
|
345
|
+
platform: x64
|
278
346
|
-
|
279
347
|
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
348
|
os:
|
281
349
|
name: Windows
|
282
350
|
short_name: WIN
|
283
351
|
version: "8"
|
352
|
+
platform: x64
|
284
353
|
-
|
285
354
|
user_agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0
|
286
355
|
os:
|
287
356
|
name: Windows
|
288
357
|
short_name: WIN
|
289
358
|
version: "8.1"
|
359
|
+
platform: x64
|
290
360
|
-
|
291
361
|
user_agent: Mozilla/2.0 (compatible; MSIE 3.02; Update a; AOL 3.0; Windows 95)
|
292
362
|
os:
|
293
363
|
name: Windows
|
294
364
|
short_name: WIN
|
295
365
|
version: "95"
|
366
|
+
platform:
|
296
367
|
-
|
297
368
|
user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322)
|
298
369
|
os:
|
299
370
|
name: Windows
|
300
371
|
short_name: WIN
|
301
372
|
version: "ME"
|
373
|
+
platform:
|
302
374
|
-
|
303
375
|
user_agent: Mozilla/4.0 (compatible; MSIE 4.01; Digital AlphaServer 1000A 4/233; Windows NT; Powered By 64-Bit Alpha Processor)
|
304
376
|
os:
|
305
377
|
name: Windows
|
306
378
|
short_name: WIN
|
307
379
|
version: "NT"
|
380
|
+
platform:
|
308
381
|
-
|
309
382
|
user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; en-US; rv:1.9a1) Gecko/20061007 Minefield/3.0a1
|
310
383
|
os:
|
311
384
|
name: Windows
|
312
385
|
short_name: WIN
|
313
386
|
version: "Server 2003"
|
387
|
+
platform: x64
|
314
388
|
-
|
315
389
|
user_agent: Mozilla/5.0 (Windows NT 6.0; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0
|
316
390
|
os:
|
317
391
|
name: Windows
|
318
392
|
short_name: WIN
|
319
393
|
version: "Vista"
|
394
|
+
platform: x64
|
320
395
|
-
|
321
396
|
user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Avant Browser; InfoPath.1)
|
322
397
|
os:
|
323
398
|
name: Windows
|
324
399
|
short_name: WIN
|
325
400
|
version: "XP"
|
401
|
+
platform:
|
326
402
|
-
|
327
403
|
user_agent: Mozilla/5.0 (Linux; U; Android 0.5; en-us) AppleWebKit/522+ (KHTML, like Gecko) Safari/419.3
|
328
404
|
os:
|
329
405
|
name: Android
|
330
406
|
short_name: AND
|
331
407
|
version: "0.5"
|
408
|
+
platform:
|
332
409
|
-
|
333
410
|
user_agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; Acer; Allegro)
|
334
411
|
os:
|
335
412
|
name: Windows Phone
|
336
413
|
short_name: WPH
|
414
|
+
platform:
|
337
415
|
version: "7.5"
|
338
416
|
-
|
339
417
|
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
|
@@ -341,267 +419,382 @@
|
|
341
419
|
name: Windows Phone
|
342
420
|
short_name: WPH
|
343
421
|
version: "8.1"
|
422
|
+
platform: ARM
|
344
423
|
-
|
345
424
|
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
425
|
os:
|
347
426
|
name: Android
|
348
427
|
short_name: AND
|
349
428
|
version: "2.2.2"
|
429
|
+
platform:
|
350
430
|
-
|
351
431
|
user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 8.12; MSIEMobile 6.0) acer_F900
|
352
432
|
os:
|
353
433
|
name: Windows CE
|
354
434
|
short_name: WCE
|
355
435
|
version:
|
436
|
+
platform:
|
356
437
|
-
|
357
438
|
user_agent: Mozilla/5.0 (Mobile; ALCATEL ONE TOUCH 4012A; rv:18.1) Gecko/18.1 Firefox/18.1
|
358
439
|
os:
|
359
440
|
name: Firefox OS
|
360
441
|
short_name: FOS
|
361
442
|
version:
|
443
|
+
platform:
|
444
|
+
-
|
445
|
+
user_agent: AtomicBrowser/3.7.1 CFNetwork/467.12 Darwin/10.3.1
|
446
|
+
os:
|
447
|
+
name: iOS
|
448
|
+
short_name: IOS
|
449
|
+
version: "3.2"
|
450
|
+
platform:
|
362
451
|
-
|
363
452
|
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
453
|
os:
|
365
454
|
name: iOS
|
366
455
|
short_name: IOS
|
367
456
|
version: "4.1"
|
457
|
+
platform:
|
458
|
+
-
|
459
|
+
user_agent: CFNetwork/758.2.8 Darwin/15.0.0
|
460
|
+
os:
|
461
|
+
name: iOS
|
462
|
+
short_name: IOS
|
463
|
+
version: "9.2"
|
464
|
+
platform:
|
465
|
+
-
|
466
|
+
user_agent: CFNetwork/758.3.15 Darwin/15.4.0
|
467
|
+
os:
|
468
|
+
name: iOS
|
469
|
+
short_name: IOS
|
470
|
+
version: "9.3"
|
471
|
+
platform:
|
472
|
+
-
|
473
|
+
user_agent: SPORT1/4059 CFNetwork/758.4.3 Darwin/15.5.0
|
474
|
+
os:
|
475
|
+
name: iOS
|
476
|
+
short_name: IOS
|
477
|
+
version: "9.3.2"
|
478
|
+
platform:
|
368
479
|
-
|
369
480
|
user_agent: NokiaN73-2/3.0-630.0.2 Series60/3.0 Profile/MIDP-2.0 Configuration/CLDC-1.1
|
370
481
|
os:
|
371
482
|
name: Symbian OS Series 60
|
372
483
|
short_name: S60
|
373
484
|
version: "3.0"
|
485
|
+
platform:
|
374
486
|
-
|
375
487
|
user_agent: XBMC/PRE-11.0 Git:20110623-62171b3 (iOS; 11.0.0 AppleTV2,1; http://www.xbmc.org)
|
376
488
|
os:
|
377
489
|
name: Apple TV
|
378
490
|
short_name: ATV
|
379
491
|
version:
|
492
|
+
platform:
|
380
493
|
-
|
381
494
|
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
495
|
os:
|
383
496
|
name: Bada
|
384
497
|
short_name: SBA
|
385
498
|
version: "1.0"
|
499
|
+
platform:
|
386
500
|
-
|
387
501
|
user_agent: BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/134
|
388
502
|
os:
|
389
503
|
name: BlackBerry OS
|
390
504
|
short_name: BLB
|
391
505
|
version: "5.0.0.681"
|
506
|
+
platform:
|
392
507
|
-
|
393
508
|
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
509
|
os:
|
395
510
|
name: BlackBerry Tablet OS
|
396
511
|
short_name: QNX
|
397
512
|
version: "2.1.0"
|
513
|
+
platform:
|
398
514
|
-
|
399
515
|
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
516
|
os:
|
401
517
|
name: Brew
|
402
518
|
short_name: BMP
|
403
519
|
version: "1.0.4"
|
520
|
+
platform:
|
404
521
|
-
|
405
522
|
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
523
|
os:
|
407
524
|
name: Chrome OS
|
408
525
|
short_name: COS
|
409
526
|
version: "4731.101.0"
|
527
|
+
platform: x64
|
410
528
|
-
|
411
529
|
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
530
|
os:
|
413
531
|
name: Google TV
|
414
532
|
short_name: GTV
|
415
533
|
version: "92754"
|
534
|
+
platform: x86
|
535
|
+
-
|
536
|
+
user_agent: Opera/9.80 (MTK; Nucleus; U; en-US) Presto/2.4.18 Version/10.00
|
537
|
+
os:
|
538
|
+
name: MTK / Nucleus
|
539
|
+
short_name: MTK
|
540
|
+
version:
|
541
|
+
platform:
|
542
|
+
-
|
543
|
+
user_agent: UNTRUSTED/1.0/HS-T39_TD/1.0 Release/03.03.2011 Threadx/4.0 Mocor/W10 Browser/NF4.0 Profile/MIDP-2.0 Config/CLDC-1.1
|
544
|
+
os:
|
545
|
+
name: ThreadX
|
546
|
+
short_name: TDX
|
547
|
+
version: 4.0
|
548
|
+
platform:
|
416
549
|
-
|
417
550
|
user_agent: Mozilla/5.0 (MeeGo; NokiaN9) AppleWebKit/534.13 (KHTML, like Gecko) NokiaBrowser/8.5.0 Mobile Safari/534.13
|
418
551
|
os:
|
419
552
|
name: MeeGo
|
420
553
|
short_name: SMG
|
421
554
|
version:
|
555
|
+
platform:
|
422
556
|
-
|
423
557
|
user_agent: Mozilla/5.0 (PLAYSTATION 3 4.46) AppleWebKit/531.22.8 (KHTML, like Gecko)
|
424
558
|
os:
|
425
559
|
name: PlayStation
|
426
560
|
short_name: PS3
|
427
561
|
version: "3"
|
562
|
+
platform:
|
428
563
|
-
|
429
564
|
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
565
|
os:
|
431
566
|
name: Nintendo
|
432
567
|
short_name: WII
|
433
568
|
version: "Wii"
|
569
|
+
platform:
|
434
570
|
-
|
435
571
|
user_agent: Bunjalloo/0.7.6(Nintendo DS;U;en)
|
436
572
|
os:
|
437
573
|
name: Nintendo Mobile
|
438
574
|
short_name: NDS
|
439
575
|
version: "DS"
|
576
|
+
platform:
|
440
577
|
-
|
441
578
|
user_agent: Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7498.EU
|
442
579
|
os:
|
443
580
|
name: Nintendo Mobile
|
444
581
|
short_name: NDS
|
445
582
|
version: "3DS"
|
583
|
+
platform:
|
446
584
|
-
|
447
585
|
user_agent: Mozilla/4.0 (PlayStation Portable); 2.00)
|
448
586
|
os:
|
449
587
|
name: PlayStation Portable
|
450
588
|
short_name: PSP
|
451
589
|
version: "Portable"
|
590
|
+
platform:
|
452
591
|
-
|
453
592
|
user_agent: Mozilla/5.0 (PlayStation Vita 3.01) AppleWebKit/536.26 (KHTML, like Gecko) Silk/3.2
|
454
593
|
os:
|
455
594
|
name: PlayStation Portable
|
456
595
|
short_name: PSP
|
457
596
|
version: "Vita"
|
597
|
+
platform:
|
458
598
|
-
|
459
599
|
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
600
|
os:
|
461
601
|
name: webOS
|
462
602
|
short_name: WOS
|
463
603
|
version: "1.4.5"
|
604
|
+
platform:
|
464
605
|
-
|
465
606
|
user_agent: CorePlayer/1.0 (Palm OS 5.4.9; ARM Intel PXA27x; en) CorePlayer/1.3.2_6909
|
466
607
|
os:
|
467
608
|
name: palmOS
|
468
609
|
short_name: POS
|
469
610
|
version: "5.4.9"
|
611
|
+
platform: ARM
|
612
|
+
-
|
613
|
+
user_agent: 'Palmscape/3.0J [ja] (v. 3.5.2H1.5; 153x130; c8)'
|
614
|
+
os:
|
615
|
+
name: palmOS
|
616
|
+
short_name: POS
|
617
|
+
version:
|
618
|
+
platform:
|
619
|
+
-
|
620
|
+
user_agent: Browse/0.6 (Linux 3.10.0+; RemixOS 5.1.1; RemixOS SDK built for x86; en_us) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.0.0 Desktop (Opera Mini/Compression)
|
621
|
+
os:
|
622
|
+
name: Remix OS
|
623
|
+
short_name: REM
|
624
|
+
version: "1"
|
625
|
+
platform:
|
626
|
+
-
|
627
|
+
user_agent: Browse/0.6.mini (Linux 3.4.0+; RemixOS 6.0; Motorola Moto G 2014; en_us) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.119 Desktop
|
628
|
+
os:
|
629
|
+
name: Remix OS
|
630
|
+
short_name: REM
|
631
|
+
version: 2
|
632
|
+
platform:
|
470
633
|
-
|
471
634
|
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
635
|
os:
|
473
636
|
name: YunOs
|
474
637
|
short_name: YNS
|
475
638
|
version: "1.0.0.3"
|
639
|
+
platform:
|
476
640
|
-
|
477
641
|
user_agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; ARM; Trident/6.0; Touch; ARMBJS)
|
478
642
|
os:
|
479
643
|
name: Windows RT
|
480
644
|
short_name: WRT
|
481
645
|
version:
|
646
|
+
platform: ARM
|
482
647
|
-
|
483
648
|
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
649
|
os:
|
485
650
|
name: Windows RT
|
486
651
|
short_name: WRT
|
487
652
|
version: "8.1"
|
653
|
+
platform: ARM
|
488
654
|
-
|
489
655
|
user_agent: Opera/9.80 (Windows Mobile; WCE; Opera Mobi/WMD-50433; U; en) Presto/2.4.13 Version/10.00
|
490
656
|
os:
|
491
657
|
name: Windows Mobile
|
492
658
|
short_name: WMO
|
493
659
|
version:
|
660
|
+
platform:
|
494
661
|
-
|
495
662
|
user_agent: Mozilla/3.0 WebTV/1.2 (compatible; MSIE 2.0)
|
496
663
|
os:
|
497
664
|
name: WebTV
|
498
665
|
short_name: WTV
|
499
666
|
version: "1.2"
|
667
|
+
platform:
|
500
668
|
-
|
501
669
|
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
670
|
os:
|
503
671
|
name: Tizen
|
504
672
|
short_name: TIZ
|
505
|
-
version:
|
673
|
+
version: "1.0"
|
674
|
+
platform:
|
506
675
|
-
|
507
676
|
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
677
|
os:
|
509
678
|
name: Symbian^3
|
510
679
|
short_name: SY3
|
511
680
|
version: "Anna"
|
681
|
+
platform:
|
512
682
|
-
|
513
683
|
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
684
|
os:
|
515
685
|
name: Symbian OS Series 40
|
516
686
|
short_name: S40
|
517
687
|
version:
|
688
|
+
platform:
|
518
689
|
-
|
519
690
|
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
691
|
os:
|
521
692
|
name: Symbian
|
522
693
|
short_name: SYM
|
523
694
|
version:
|
695
|
+
platform:
|
696
|
+
-
|
697
|
+
user_agent: Mozilla/5.0 (Symbian; U; N8-00; xx) AppleWebKit/534.3 (KHTML, like Gecko) MiniBrowserMobile/4.0 Mobile Safari/534.3
|
698
|
+
os:
|
699
|
+
name: Symbian OS
|
700
|
+
short_name: SYS
|
701
|
+
version:
|
702
|
+
platform:
|
524
703
|
-
|
525
704
|
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
705
|
os:
|
527
706
|
name: Sailfish OS
|
528
707
|
short_name: SAF
|
529
708
|
version:
|
709
|
+
platform:
|
530
710
|
-
|
531
711
|
user_agent: 'Mozilla/1.10 [en] (Compatible; RISC OS 3.70; Oregano 1.10)'
|
532
712
|
os:
|
533
713
|
name: RISC OS
|
534
714
|
short_name: ROS
|
535
715
|
version: "3.70"
|
716
|
+
platform:
|
536
717
|
-
|
537
718
|
user_agent: Mozilla/5.0 (X11; U; AIX 5.3; en-US; rv:1.7.12) Gecko/20051025
|
538
719
|
os:
|
539
720
|
name: AIX
|
540
721
|
short_name: AIX
|
541
722
|
version: "5.3"
|
723
|
+
platform:
|
542
724
|
-
|
543
725
|
user_agent: Mozilla/5.0 (compatible; Konqueror/4.1; DragonFly) KHTML/4.1.4 (like Gecko)
|
544
726
|
os:
|
545
727
|
name: DragonFly
|
546
728
|
short_name: DFB
|
547
729
|
version:
|
730
|
+
platform:
|
548
731
|
-
|
549
732
|
user_agent: Mozilla/5.0 (X11; U; HP-UX 9000/785; es-ES; rv:1.0.1) Gecko/20020827 Netscape/7.0
|
550
733
|
os:
|
551
734
|
name: HP-UX
|
552
735
|
short_name: HPX
|
553
736
|
version: "9000"
|
737
|
+
platform:
|
554
738
|
-
|
555
739
|
user_agent: Mozilla/5.0 (X11; Knoppix; Linux i686; rv:20.0) Gecko/20100101 Firefox/20.0
|
556
740
|
os:
|
557
741
|
name: Knoppix
|
558
742
|
short_name: KNO
|
559
743
|
version:
|
744
|
+
platform: x86
|
560
745
|
-
|
561
746
|
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
747
|
os:
|
563
748
|
name: VectorLinux
|
564
749
|
short_name: VLN
|
565
750
|
version: "3.5.3"
|
751
|
+
platform: x86
|
566
752
|
-
|
567
753
|
user_agent: 'Mozilla/5.0 (SymbianOS/9.1; U; [en-us]) AppleWebKit/413 (KHTML, like Gecko) Safari/413'
|
568
754
|
os:
|
569
755
|
name: Symbian OS
|
570
756
|
short_name: SYS
|
571
757
|
version: "9.1"
|
758
|
+
platform:
|
572
759
|
-
|
573
760
|
user_agent: Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)
|
574
761
|
os:
|
575
762
|
name: Windows
|
576
763
|
short_name: WIN
|
577
764
|
version: "3.1"
|
765
|
+
platform:
|
578
766
|
-
|
579
767
|
user_agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)
|
580
768
|
os:
|
581
769
|
name: Windows
|
582
770
|
short_name: WIN
|
583
771
|
version: "98"
|
772
|
+
platform:
|
584
773
|
-
|
585
774
|
user_agent: XBMC/3.3-DEV-r31572 (Xbox; http://www.xbmc.org)
|
586
775
|
os:
|
587
776
|
name: Xbox
|
588
777
|
short_name: XBX
|
589
778
|
version: "360"
|
779
|
+
platform:
|
590
780
|
-
|
591
781
|
user_agent: Mozilla/5.0 (X11; Linux i686; rv:7.0.1) Firefox/17.0 Xubuntu 12.10
|
592
782
|
os:
|
593
783
|
name: Xubuntu
|
594
784
|
short_name: XBT
|
595
785
|
version: "12.10"
|
786
|
+
platform: x86
|
596
787
|
-
|
597
788
|
user_agent: Opera/9.80 (X11; Linux i686; U; lubuntu 10.10; en) Presto/2.7
|
598
789
|
os:
|
599
790
|
name: Lubuntu
|
600
791
|
short_name: LBT
|
601
792
|
version: "10.10"
|
793
|
+
platform: x86
|
602
794
|
-
|
603
795
|
user_agent: Mozilla/4.0 (X11; BackTrack; Linux i686; rv:10.0.2) Gecko/20100101 Firefox/4.0
|
604
796
|
os:
|
605
797
|
name: BackTrack
|
606
798
|
short_name: BTR
|
607
799
|
version:
|
800
|
+
platform: x86
|