device_detector 1.0.7 → 1.1.1
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/CHANGELOG.md +11 -0
- data/README.md +25 -4
- data/lib/device_detector/browser.rb +184 -5
- data/lib/device_detector/client_hint.rb +181 -0
- data/lib/device_detector/device.rb +522 -3
- data/lib/device_detector/os.rb +33 -3
- data/lib/device_detector/parser.rb +25 -3
- data/lib/device_detector/vendor_fragment.rb +25 -0
- data/lib/device_detector/version.rb +1 -1
- data/lib/device_detector.rb +82 -16
- data/regexes/bots.yml +757 -17
- data/regexes/client/browsers.yml +365 -54
- data/regexes/client/hints/apps.yml +102 -0
- data/regexes/client/hints/browsers.yml +195 -0
- data/regexes/client/libraries.yml +200 -3
- data/regexes/client/mobile_apps.yml +396 -14
- data/regexes/client/pim.yml +15 -0
- data/regexes/device/car_browsers.yml +1 -1
- data/regexes/device/consoles.yml +8 -3
- data/regexes/device/mobiles.yml +12126 -2425
- data/regexes/device/portable_media_player.yml +24 -2
- data/regexes/device/shell_tv.yml +16 -0
- data/regexes/device/televisions.yml +26 -4
- data/regexes/oss.yml +381 -50
- metadata +11 -7
|
@@ -5,6 +5,24 @@
|
|
|
5
5
|
# @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later
|
|
6
6
|
###############
|
|
7
7
|
|
|
8
|
+
# Naver (https://apps.apple.com/app/id393499958)
|
|
9
|
+
- regex: 'NAVER/(\d+[\.\d]+) CFNetwork'
|
|
10
|
+
name: 'Naver'
|
|
11
|
+
version: '$1'
|
|
12
|
+
|
|
13
|
+
# Naver (https://play.google.com/store/apps/details?id=com.nhn.android.search)
|
|
14
|
+
- regex: 'NAVER\(inapp; search; .+; (\d+[\.\d]+);.+\)'
|
|
15
|
+
name: 'Naver'
|
|
16
|
+
version: '$1'
|
|
17
|
+
- regex: 'NAVER\(inapp; search; .+; (\d+[\.\d]+)\)'
|
|
18
|
+
name: 'Naver'
|
|
19
|
+
version: '$1'
|
|
20
|
+
|
|
21
|
+
# Soldier
|
|
22
|
+
- regex: 'Chrome/Soldier_([\d\.]+)'
|
|
23
|
+
name: 'Soldier'
|
|
24
|
+
version: '$1'
|
|
25
|
+
|
|
8
26
|
# AndroidDownloadManager
|
|
9
27
|
- regex: 'AndroidDownloadManager(?:[ /]([\d\.]+))?'
|
|
10
28
|
name: 'AndroidDownloadManager'
|
|
@@ -15,6 +33,11 @@
|
|
|
15
33
|
name: 'Apple News'
|
|
16
34
|
version: '$1'
|
|
17
35
|
|
|
36
|
+
# Apple TV
|
|
37
|
+
- regex: 'appletv.client'
|
|
38
|
+
name: 'Apple TV'
|
|
39
|
+
version: ''
|
|
40
|
+
|
|
18
41
|
- regex: 'bPod'
|
|
19
42
|
name: 'bPod'
|
|
20
43
|
version: ''
|
|
@@ -44,6 +67,11 @@
|
|
|
44
67
|
name: 'Facebook Lite'
|
|
45
68
|
version: '$1'
|
|
46
69
|
|
|
70
|
+
# Meta Business Suite (https://apps.apple.com/us/app/facebook-business-suite/id514643583)
|
|
71
|
+
- regex: 'FBAN/FBPageAdmin.+FBAV(?:[ /]([\d\.]+))?'
|
|
72
|
+
name: 'Meta Business Suite'
|
|
73
|
+
version: '$1'
|
|
74
|
+
|
|
47
75
|
# Facebook
|
|
48
76
|
- regex: '(?:FBAV|com.facebook.katana)(?:[ /]([\d\.]+))?'
|
|
49
77
|
name: 'Facebook'
|
|
@@ -62,6 +90,11 @@
|
|
|
62
90
|
name: 'Google Go'
|
|
63
91
|
version: ''
|
|
64
92
|
|
|
93
|
+
# Google Photos
|
|
94
|
+
- regex: 'com.google.android.apps.photos'
|
|
95
|
+
name: 'Google Photos'
|
|
96
|
+
version: ''
|
|
97
|
+
|
|
65
98
|
# Google Play Kiosk
|
|
66
99
|
- regex: 'com.google.android.apps.magazines'
|
|
67
100
|
name: 'Google Play Newsstand'
|
|
@@ -78,7 +111,7 @@
|
|
|
78
111
|
version: '$1'
|
|
79
112
|
|
|
80
113
|
# WeChat
|
|
81
|
-
- regex: 'MicroMessenger/([
|
|
114
|
+
- regex: 'MicroMessenger/([\d\.]+)'
|
|
82
115
|
name: 'WeChat'
|
|
83
116
|
version: '$1'
|
|
84
117
|
- regex: 'WeChat/([\d\.]+)'
|
|
@@ -113,6 +146,11 @@
|
|
|
113
146
|
name: 'YouTube'
|
|
114
147
|
version: '$1'
|
|
115
148
|
|
|
149
|
+
# Rutube
|
|
150
|
+
- regex: 'Rutube(?:TV)?BlackAndroid'
|
|
151
|
+
name: 'Rutube'
|
|
152
|
+
version: '$1'
|
|
153
|
+
|
|
116
154
|
# Netflix (https://play.google.com/store/apps/details?id=com.netflix.mediaclient)
|
|
117
155
|
- regex: 'com.netflix.mediaclient(?:/(\d+\.[\d\.]+))?'
|
|
118
156
|
name: 'Netflix'
|
|
@@ -133,7 +171,7 @@
|
|
|
133
171
|
version: '$1'
|
|
134
172
|
|
|
135
173
|
# AFNetworking generic
|
|
136
|
-
- regex: '([^/]
|
|
174
|
+
- regex: '(?!AlohaBrowser)([^/]*)/(\d+\.[\d.]+) \((?:iPhone|iPad); (?:iOS|iPadOS) [0-9\.]+; Scale/[0-9\.]+\)'
|
|
137
175
|
name: '$1'
|
|
138
176
|
version: '$2'
|
|
139
177
|
|
|
@@ -226,7 +264,7 @@
|
|
|
226
264
|
- regex: 'BingWeb/([\d\.]+)?'
|
|
227
265
|
name: 'BingWebApp'
|
|
228
266
|
version: '$1'
|
|
229
|
-
- regex: '(?:com.google.GoogleMobile|GSA)/([\d
|
|
267
|
+
- regex: '(?:com.google.GoogleMobile|GSA|GoogleApp)/([\d.]+)?'
|
|
230
268
|
name: 'Google Search App'
|
|
231
269
|
version: '$1'
|
|
232
270
|
- regex: 'Flipboard/([\d\.]+)?'
|
|
@@ -238,6 +276,12 @@
|
|
|
238
276
|
- regex: 'baiduboxapp/([\d\.]+)?'
|
|
239
277
|
name: 'Baidu Box App'
|
|
240
278
|
version: '$1'
|
|
279
|
+
- regex: 'baiduinput/([\d.]+)?'
|
|
280
|
+
name: 'Baidu Input'
|
|
281
|
+
version: '$1'
|
|
282
|
+
- regex: 'PetalSearch/([\d\.]+)?'
|
|
283
|
+
name: 'Petal Search App'
|
|
284
|
+
version: '$1'
|
|
241
285
|
- regex: 'Crosswalk(?!.*(?:Streamy|QwantMobile))/([\d\.]+)?'
|
|
242
286
|
name: 'CrosswalkApp'
|
|
243
287
|
version: '$1'
|
|
@@ -261,12 +305,19 @@
|
|
|
261
305
|
- regex: 'TopBuzz/([\d\.]+)'
|
|
262
306
|
name: 'TopBuzz'
|
|
263
307
|
version: '$1'
|
|
264
|
-
|
|
308
|
+
|
|
309
|
+
# Snapchat
|
|
310
|
+
- regex: '(?:Safari/[\d\.]+)?Snapchat/?([\d\.]+)'
|
|
265
311
|
name: 'Snapchat'
|
|
266
312
|
version: '$1'
|
|
313
|
+
- regex: 'CronetSnapDevSheldon'
|
|
314
|
+
name: 'Snapchat'
|
|
315
|
+
version: ''
|
|
316
|
+
|
|
267
317
|
- regex: 'AhaRadio2/([\d\.]+)'
|
|
268
318
|
name: 'Aha Radio 2'
|
|
269
319
|
version: '$1'
|
|
320
|
+
|
|
270
321
|
# Unibox (https://apps.apple.com/app/id933879046)
|
|
271
322
|
- regex: 'Unibox/([\d\.]+)'
|
|
272
323
|
name: 'Unibox'
|
|
@@ -297,7 +348,7 @@
|
|
|
297
348
|
name: 'Roblox'
|
|
298
349
|
version: '$1'
|
|
299
350
|
|
|
300
|
-
- regex: 'Viber
|
|
351
|
+
- regex: 'Viber(?:/(\d+[\.\d]+))?'
|
|
301
352
|
name: 'Viber'
|
|
302
353
|
version: '$1'
|
|
303
354
|
|
|
@@ -376,16 +427,34 @@
|
|
|
376
427
|
name: '1Password'
|
|
377
428
|
version: '$1'
|
|
378
429
|
|
|
379
|
-
- regex: '(?:Microsoft Office )?(Access|Excel|OneDrive for Business|OneNote|PowerPoint|Project|Publisher|Visio|Word)[ /]([\d
|
|
430
|
+
- regex: '(?:Microsoft Office )?(Access|Excel|OneDrive for Business|OneNote|PowerPoint|Project|Publisher|Visio|Word)(?: 20\d{2})?[ /]\(?(\d+\.[\d.]*)'
|
|
380
431
|
name: 'Microsoft Office $1'
|
|
381
432
|
version: '$2'
|
|
433
|
+
- regex: '^Mozilla/4\.0 \(compatible; ms-office; MSOffice[ /]([\d\.]+)'
|
|
434
|
+
name: 'Microsoft Office'
|
|
435
|
+
version: '$1'
|
|
436
|
+
- regex: 'Microsoft Office SyncProc ([\d\.]+)'
|
|
437
|
+
name: 'Microsoft Office'
|
|
438
|
+
version: '$1'
|
|
439
|
+
- regex: 'Microsoft Lync ([\d\.]+)'
|
|
440
|
+
name: 'Microsoft Lync'
|
|
441
|
+
version: '$1'
|
|
442
|
+
|
|
443
|
+
# https://play.google.com/store/apps/details?id=cn.wps.moffice_eng
|
|
444
|
+
- regex: 'WpsM?office/([\d\.]+)'
|
|
445
|
+
name: 'WPS Office'
|
|
446
|
+
version: '$1'
|
|
382
447
|
|
|
383
448
|
# https://apps.apple.com/us/app/microsoft-onedrive/id477537958
|
|
384
449
|
- regex: 'OneDriveiOSApp/([\d\.]+)'
|
|
385
450
|
name: 'Microsoft OneDrive'
|
|
386
451
|
version: '$1'
|
|
387
452
|
|
|
388
|
-
- regex: 'Microsoft Office
|
|
453
|
+
- regex: 'Microsoft Office Existence Discovery'
|
|
454
|
+
name: 'Microsoft Office'
|
|
455
|
+
version: ''
|
|
456
|
+
|
|
457
|
+
- regex: '(?:Microsoft Office Mobile|officemobile)[ /]([\d\.]+)'
|
|
389
458
|
name: 'Microsoft Office Mobile'
|
|
390
459
|
version: '$1'
|
|
391
460
|
|
|
@@ -403,16 +472,16 @@
|
|
|
403
472
|
name: 'Skype for Business'
|
|
404
473
|
version: '$1'
|
|
405
474
|
|
|
475
|
+
# GroupMe (https://apps.apple.com/us/app/groupme/id392796698)
|
|
476
|
+
- regex: 'GroupMe/([\d\.]+)'
|
|
477
|
+
name: 'GroupMe'
|
|
478
|
+
version: '$1'
|
|
479
|
+
|
|
406
480
|
# TikTok (https://apps.apple.com/app/id835599320 | https://play.google.com/store/apps/details?id=com.zhiliaoapp.musically)
|
|
407
481
|
- regex: '(?:TikTok[/ ]|musical_ly_|AppName/musical_ly app_version/)(\d+\.(?:[\.\d]+))?'
|
|
408
482
|
name: 'TikTok'
|
|
409
483
|
version: '$1'
|
|
410
484
|
|
|
411
|
-
# https://apps.apple.com/app/id393499958
|
|
412
|
-
- regex: 'NAVER/(\d+[\.\d]+) CFNetwork'
|
|
413
|
-
name: 'Naver'
|
|
414
|
-
version: '$1'
|
|
415
|
-
|
|
416
485
|
# https://apps.apple.com/app/id1026349850
|
|
417
486
|
- regex: 'Copied/(\d+[\.\d]+) CFNetwork'
|
|
418
487
|
name: 'Copied'
|
|
@@ -437,6 +506,9 @@
|
|
|
437
506
|
- regex: 'Slack/(\d+[\.\d]+) CFNetwork'
|
|
438
507
|
name: 'Slack'
|
|
439
508
|
version: ''
|
|
509
|
+
- regex: 'com.tinyspeck.chatlyio/(\d+[\.\d]+)'
|
|
510
|
+
name: 'Slack'
|
|
511
|
+
version: '$1'
|
|
440
512
|
|
|
441
513
|
# https://apps.apple.com/us/app/id362057947
|
|
442
514
|
- regex: 'KAKAOTALK (\d+\.(?:[\.\d]+))?'
|
|
@@ -489,7 +561,7 @@
|
|
|
489
561
|
version: '$1'
|
|
490
562
|
|
|
491
563
|
# https://apps.apple.com/us/app/zalo/id579523206
|
|
492
|
-
- regex: 'Zalo/([\d\.]+)'
|
|
564
|
+
- regex: 'Zalo/([\d\.]+)|Zalo android'
|
|
493
565
|
name: 'Zalo'
|
|
494
566
|
version: '$1'
|
|
495
567
|
|
|
@@ -643,10 +715,14 @@
|
|
|
643
715
|
name: 'Teams'
|
|
644
716
|
version: '$1'
|
|
645
717
|
|
|
646
|
-
- regex: 'TeamsMobile-iOS'
|
|
718
|
+
- regex: 'TeamsMobile-(?:Android|iOS)'
|
|
647
719
|
name: 'Teams'
|
|
648
720
|
version: ''
|
|
649
721
|
|
|
722
|
+
- regex: 'SohuNews/(\d+\.[.\d]+)'
|
|
723
|
+
name: 'SohuNews'
|
|
724
|
+
version: '$1'
|
|
725
|
+
|
|
650
726
|
# Streamlabs OBS (https://streamlabs.com/)
|
|
651
727
|
- regex: 'StreamlabsOBS/(\d+[\.\d]+)'
|
|
652
728
|
name: 'Streamlabs OBS'
|
|
@@ -681,6 +757,21 @@
|
|
|
681
757
|
name: 'AliExpress'
|
|
682
758
|
version: '$1'
|
|
683
759
|
|
|
760
|
+
# Lazada
|
|
761
|
+
- regex: '(?:lazada_android|AliApp\(LA)[/ _](\d+\.[\d.]+)'
|
|
762
|
+
name: 'Lazada'
|
|
763
|
+
version: '$1'
|
|
764
|
+
|
|
765
|
+
# Taobao
|
|
766
|
+
- regex: '(?:taobao_android|AliApp\(TB)[/ _](\d+\.[\d.]+)'
|
|
767
|
+
name: 'Taobao'
|
|
768
|
+
version: '$1'
|
|
769
|
+
|
|
770
|
+
# Alipay
|
|
771
|
+
- regex: '(?:AlipayClient|AliApp\(AP)[/ _](\d+\.[\d.]+)'
|
|
772
|
+
name: 'Alipay'
|
|
773
|
+
version: '$1'
|
|
774
|
+
|
|
684
775
|
# Blue Proxy (https://play.google.com/store/apps/details?id=com.udicorn.proxy)
|
|
685
776
|
- regex: 'Blue Proxy/([\d\.]+)'
|
|
686
777
|
name: 'Blue Proxy'
|
|
@@ -1045,6 +1136,11 @@
|
|
|
1045
1136
|
name: 'Microsoft Bing Search'
|
|
1046
1137
|
version: '$1'
|
|
1047
1138
|
|
|
1139
|
+
# Microsoft Start (https://play.google.com/store/apps/details?id=com.microsoft.amp.apps.bingnews | https://apps.apple.com/us/app/microsoft-start/id945416273)
|
|
1140
|
+
- regex: 'NewsSapphire/(\d+\.[\.\d]+)'
|
|
1141
|
+
name: 'Microsoft Start'
|
|
1142
|
+
version: '$1'
|
|
1143
|
+
|
|
1048
1144
|
# HiSearch
|
|
1049
1145
|
- regex: '.+HiSearch/(\d+\.[\.\d]+)'
|
|
1050
1146
|
name: 'HiSearch'
|
|
@@ -1079,3 +1175,289 @@
|
|
|
1079
1175
|
- regex: 'com.Nanoteq.QmunicateH10p.+/(\d+\.[\.\d]+) \('
|
|
1080
1176
|
name: 'Q-municate'
|
|
1081
1177
|
version: '$1'
|
|
1178
|
+
|
|
1179
|
+
# NET.mede (https://apps.apple.com/us/app/net-mede/id597007101)
|
|
1180
|
+
- regex: 'NET.mede'
|
|
1181
|
+
name: 'NET.mede'
|
|
1182
|
+
version: ''
|
|
1183
|
+
|
|
1184
|
+
# My Bentley (https://apps.apple.com/us/app/my-bentley/id1008052243)
|
|
1185
|
+
- regex: 'My%20Bentley'
|
|
1186
|
+
name: 'My Bentley'
|
|
1187
|
+
version: ''
|
|
1188
|
+
|
|
1189
|
+
# Skyeng (https://apps.apple.com/us/app/skyeng-english-online/id1065290732)
|
|
1190
|
+
- regex: 'Skyeng%20App'
|
|
1191
|
+
name: 'Skyeng'
|
|
1192
|
+
version: ''
|
|
1193
|
+
|
|
1194
|
+
# Skyeng Teachers (https://apps.apple.com/us/app/skyeng-teachers/id1483049537)
|
|
1195
|
+
- regex: 'Skyeng%20Teachers'
|
|
1196
|
+
name: 'Skyeng Teachers'
|
|
1197
|
+
version: ''
|
|
1198
|
+
|
|
1199
|
+
# Bank Millenium (https://apps.apple.com/us/app/bank-millennium/id412646128)
|
|
1200
|
+
- regex: '(Millennium/|Millennium%20Corp)'
|
|
1201
|
+
name: 'Bank Millenium'
|
|
1202
|
+
version: ''
|
|
1203
|
+
|
|
1204
|
+
# MBolsa (https://apps.apple.com/us/app/mbolsa/id1533621499)
|
|
1205
|
+
- regex: 'MBolsa'
|
|
1206
|
+
name: 'MBolsa'
|
|
1207
|
+
version: ''
|
|
1208
|
+
|
|
1209
|
+
# MEmpresas (https://apps.apple.com/us/app/mempresas/id669516182)
|
|
1210
|
+
- regex: '(MEmpresas|Millennium%20Empresas)'
|
|
1211
|
+
name: 'MEmpresas'
|
|
1212
|
+
version: ''
|
|
1213
|
+
|
|
1214
|
+
# Orange Radio (https://apps.apple.com/fr/app/orange-radio/id1201284975?l=en)
|
|
1215
|
+
- regex: 'OrangeRadio/(\d+\.[\.\d]+)'
|
|
1216
|
+
name: 'Orange Radio'
|
|
1217
|
+
version: '$1'
|
|
1218
|
+
|
|
1219
|
+
# Radio Italiane https://apps.apple.com/us/app/radio-italiane-radio-it/id1390350146)
|
|
1220
|
+
- regex: 'Radio%20Italiane/(\d+\.[\.\d]+)'
|
|
1221
|
+
name: 'Radio Italiane'
|
|
1222
|
+
version: '$1'
|
|
1223
|
+
|
|
1224
|
+
# Safari Search Helper
|
|
1225
|
+
- regex: 'com.apple.Safari.SearchHelper/(\d+\.[\.\d]+)'
|
|
1226
|
+
name: 'Safari Search Helper'
|
|
1227
|
+
version: '$1'
|
|
1228
|
+
|
|
1229
|
+
# Citrix Workspace (https://apps.apple.com/us/app/citrix-workspace/id363501921)
|
|
1230
|
+
- regex: 'Citrix%20Viewer'
|
|
1231
|
+
name: 'Citrix Workspace'
|
|
1232
|
+
version: ''
|
|
1233
|
+
|
|
1234
|
+
# Mercantile Bank of Michigan (https://apps.apple.com/us/app/mercantile-bank-of-michigan/id428982831)
|
|
1235
|
+
- regex: 'com.mercbank.s1mobileipad'
|
|
1236
|
+
name: 'Mercantile Bank of Michigan'
|
|
1237
|
+
version: ''
|
|
1238
|
+
|
|
1239
|
+
# DStream Air (https://apps.apple.com/us/app/dstream-air/id1214400521)
|
|
1240
|
+
- regex: 'D-Stream%20Air'
|
|
1241
|
+
name: 'DStream Air'
|
|
1242
|
+
version: ''
|
|
1243
|
+
|
|
1244
|
+
# Expedia (https://apps.apple.com/us/app/expedia-hotels-flights-car/id427916203)
|
|
1245
|
+
- regex: 'ExpediaBookings'
|
|
1246
|
+
name: 'Expedia'
|
|
1247
|
+
version: ''
|
|
1248
|
+
|
|
1249
|
+
# Windows Antivirus
|
|
1250
|
+
- regex: 'Windows Antivirus (\d+\.[\.\d]+)'
|
|
1251
|
+
name: 'Windows Antivirus'
|
|
1252
|
+
version: '$1'
|
|
1253
|
+
|
|
1254
|
+
# Macrium Reflect (https://www.macrium.com/reflectfree)
|
|
1255
|
+
- regex: '^Reflect'
|
|
1256
|
+
name: 'Macrium Reflect'
|
|
1257
|
+
version: ''
|
|
1258
|
+
|
|
1259
|
+
- regex: 'Opera autoupdate agent'
|
|
1260
|
+
name: 'Opera Updater'
|
|
1261
|
+
version: ''
|
|
1262
|
+
|
|
1263
|
+
# Ballz (https://apps.apple.com/us/app/ballz/id1139609950)
|
|
1264
|
+
- regex: 'Ballz/(\d+\.[\.\d]+)'
|
|
1265
|
+
name: 'Ballz'
|
|
1266
|
+
version: '$1'
|
|
1267
|
+
|
|
1268
|
+
# RNPS Action Cards
|
|
1269
|
+
- regex: 'rnps-action-cards/(\d+\.[\.\d]+)'
|
|
1270
|
+
name: 'RNPS Action Cards'
|
|
1271
|
+
version: '$1'
|
|
1272
|
+
|
|
1273
|
+
# Plex Media Server (https://www.plex.tv/sv/media-server-downloads/)
|
|
1274
|
+
- regex: 'PlexMediaServer/(\d+\.[\.\d]+)'
|
|
1275
|
+
name: 'Plex Media Server'
|
|
1276
|
+
version: '$1'
|
|
1277
|
+
|
|
1278
|
+
# SafeIP (https://www.freesafeip.com/)
|
|
1279
|
+
- regex: 'FreeSafeIP'
|
|
1280
|
+
name: 'SafeIP'
|
|
1281
|
+
version: ''
|
|
1282
|
+
|
|
1283
|
+
# Surfshark (https://play.google.com/store/apps/details?id=com.surfshark.vpnclient.android)
|
|
1284
|
+
- regex: 'SurfsharkAndroid/(\d+\.[\.\d]+)'
|
|
1285
|
+
name: 'Surfshark'
|
|
1286
|
+
version: '$1'
|
|
1287
|
+
|
|
1288
|
+
# Hago (https://play.google.com/store/apps/details?id=com.yy.hiyo)
|
|
1289
|
+
- regex: 'APP/yym-hago-and(\d+\.[\.\d]+)'
|
|
1290
|
+
name: 'Hago'
|
|
1291
|
+
version: '$1'
|
|
1292
|
+
|
|
1293
|
+
# Vuze Bittorent Client
|
|
1294
|
+
- regex: 'Azureus (\d+\.[\.\d]+)'
|
|
1295
|
+
name: 'Vuze'
|
|
1296
|
+
version: '$1'
|
|
1297
|
+
|
|
1298
|
+
# Adobe IPM
|
|
1299
|
+
- regex: 'IPM'
|
|
1300
|
+
name: 'Adobe IPM'
|
|
1301
|
+
version: ''
|
|
1302
|
+
|
|
1303
|
+
# Adobe NGL
|
|
1304
|
+
- regex: 'NGL Client/(\d+\.[\.\d]+)'
|
|
1305
|
+
name: 'Adobe NGL'
|
|
1306
|
+
version: '$1'
|
|
1307
|
+
|
|
1308
|
+
# Bitcoin Core (https://bitcoin.org/en/bitcoin-core/)
|
|
1309
|
+
- regex: '/Satoshi:(\d+\.[\.\d]+)/'
|
|
1310
|
+
name: 'Bitcoin Core'
|
|
1311
|
+
version: '$1'
|
|
1312
|
+
|
|
1313
|
+
# Amazon Shopping (https://play.google.com/store/apps/details?id=com.amazon.mShop.android.shopping)
|
|
1314
|
+
- regex: 'Amazon.com/(\d+\.[\.\d]+)'
|
|
1315
|
+
name: 'Amazon Shopping'
|
|
1316
|
+
version: '$1'
|
|
1317
|
+
|
|
1318
|
+
# mobile.de (https://play.google.com/store/apps/details?id=de.mobile.android.app)
|
|
1319
|
+
- regex: 'de.mobile.android.app/(\d+\.[\.\d]+)'
|
|
1320
|
+
name: 'mobile.de'
|
|
1321
|
+
version: '$1'
|
|
1322
|
+
- regex: 'de.mobile.android.app/(.*) \((\d+\.[\.\d]+)\)'
|
|
1323
|
+
name: 'mobile.de'
|
|
1324
|
+
version: '$2'
|
|
1325
|
+
|
|
1326
|
+
# Jitsi Meet (https://meet.jit.si/)
|
|
1327
|
+
- regex: 'jitsi-meet/'
|
|
1328
|
+
name: 'Jitsi Meet'
|
|
1329
|
+
version: ''
|
|
1330
|
+
|
|
1331
|
+
# Don't Waste My Time! (https://apps.apple.com/us/app/dont-waste-my-time/id1503883738)
|
|
1332
|
+
- regex: 'Waste My Time! Extension/(\d+\.[\.\d]+)'
|
|
1333
|
+
name: "Don't Waste My Time!"
|
|
1334
|
+
version: '$1'
|
|
1335
|
+
|
|
1336
|
+
# Surfshark (https://apps.apple.com/app/apple-store/id1391782046)
|
|
1337
|
+
- regex: 'Surfshark/(\d+\.[\.\d]+)'
|
|
1338
|
+
name: 'Surfshark'
|
|
1339
|
+
version: '$1'
|
|
1340
|
+
|
|
1341
|
+
# 1Password (https://apps.apple.com/us/app/1password-password-manager/id568903335)
|
|
1342
|
+
- regex: '1Password/(\d+\.[\.\d]+)'
|
|
1343
|
+
name: '1Password'
|
|
1344
|
+
version: '$1'
|
|
1345
|
+
|
|
1346
|
+
# Startsiden (https://apps.apple.com/us/app/startsiden/id435032741)
|
|
1347
|
+
- regex: 'iOSStartsidenApp'
|
|
1348
|
+
name: 'Startsiden'
|
|
1349
|
+
version: ''
|
|
1350
|
+
|
|
1351
|
+
# HisThumbnail
|
|
1352
|
+
- regex: 'HisThumbnail'
|
|
1353
|
+
name: 'HisThumbnail'
|
|
1354
|
+
version: ''
|
|
1355
|
+
|
|
1356
|
+
# Yahoo OneSearch (https://apps.apple.com/us/app/yahoo-onesearch/id1494021151)
|
|
1357
|
+
- regex: 'OneSearch/(\d+\.[\.\d]+)'
|
|
1358
|
+
name: 'Yahoo OneSearch'
|
|
1359
|
+
version: '$1'
|
|
1360
|
+
|
|
1361
|
+
# Bing iPad
|
|
1362
|
+
- regex: 'bingipadclient'
|
|
1363
|
+
name: 'Bing iPad'
|
|
1364
|
+
version: ''
|
|
1365
|
+
|
|
1366
|
+
# AntiBrowserSpy (https://www.abelssoft.de/en/windows/security-privacy/antibrowserspy)
|
|
1367
|
+
- regex: 'anonymized by Abelssoft'
|
|
1368
|
+
name: 'AntiBrowserSpy'
|
|
1369
|
+
version: ''
|
|
1370
|
+
|
|
1371
|
+
# 다음 or Daum
|
|
1372
|
+
- regex: 'DaumApps/(\d+\.[.\d]+)?'
|
|
1373
|
+
name: 'Daum'
|
|
1374
|
+
version: '$1'
|
|
1375
|
+
|
|
1376
|
+
# DIRECTV (https://play.google.com/store/apps/details?id=com.att.tv)
|
|
1377
|
+
- regex: 'AT&T TV'
|
|
1378
|
+
name: 'DIRECTV'
|
|
1379
|
+
version: ''
|
|
1380
|
+
|
|
1381
|
+
# Reddit (https://play.google.com/store/apps/details?id=com.reddit.frontpage)
|
|
1382
|
+
- regex: 'Reddit/Version (\d+\.[.\d]+)/'
|
|
1383
|
+
name: 'Reddit'
|
|
1384
|
+
version: '$1'
|
|
1385
|
+
|
|
1386
|
+
# Tuya Smart Life (https://play.google.com/store/apps/details?id=com.tuya.smartlife)
|
|
1387
|
+
- regex: 'TuyaSmart/(\d+\.[.\d]+)'
|
|
1388
|
+
name: 'Tuya Smart Life'
|
|
1389
|
+
version: '$1'
|
|
1390
|
+
|
|
1391
|
+
# Spotify (https://apps.apple.com/us/app/spotify-music-and-podcasts/id324684580)
|
|
1392
|
+
- regex: 'Spotify/(\d+\.[.\d]+)'
|
|
1393
|
+
name: 'Spotify'
|
|
1394
|
+
version: '$1'
|
|
1395
|
+
|
|
1396
|
+
# Amazon Music (https://apps.apple.com/us/app/amazon-music-songs-podcasts/id510855668)
|
|
1397
|
+
- regex: 'AmazonMusic/(\d+\.[.\d]+)'
|
|
1398
|
+
name: 'Amazon Music'
|
|
1399
|
+
version: '$1'
|
|
1400
|
+
|
|
1401
|
+
# Klarna (https://apps.apple.com/us/app/klarna-shop-now-pay-later/id1115120118)
|
|
1402
|
+
- regex: 'Klarna/(\d+\.[.\d]+)'
|
|
1403
|
+
name: 'Klarna'
|
|
1404
|
+
version: '$1'
|
|
1405
|
+
|
|
1406
|
+
# WhatsApp+2
|
|
1407
|
+
- regex: 'YoWhatsApp2Plus(?:/(\d+[\.\d]+))?'
|
|
1408
|
+
name: 'WhatsApp+2'
|
|
1409
|
+
version: '$1'
|
|
1410
|
+
|
|
1411
|
+
# GBWhatsApp
|
|
1412
|
+
- regex: 'GBWhatsApp(?:/(\d+[\.\d]+))?'
|
|
1413
|
+
name: 'GBWhatsApp'
|
|
1414
|
+
version: '$1'
|
|
1415
|
+
|
|
1416
|
+
# R (https://www.r-project.org/)
|
|
1417
|
+
- regex: '^R/(\d+[\.\d]+)'
|
|
1418
|
+
name: 'R'
|
|
1419
|
+
version: '$1'
|
|
1420
|
+
|
|
1421
|
+
# RadioApp (https://apps.apple.com/us/app/radioapp-a-simple-radio/id720291153)
|
|
1422
|
+
- regex: 'RadioAppFree/'
|
|
1423
|
+
name: 'RadioApp'
|
|
1424
|
+
version: ''
|
|
1425
|
+
|
|
1426
|
+
# Audible
|
|
1427
|
+
- regex: '^(?:Audible, Android, |com.audible.playersdk.player/|Audible/)(\d+\.[.\d]+)?'
|
|
1428
|
+
name: 'Audible'
|
|
1429
|
+
version: '$1'
|
|
1430
|
+
|
|
1431
|
+
# Overcast (http://overcast.fm/)
|
|
1432
|
+
- regex: 'Overcast/?(\d+\.[.\d]+)? \(\+http://overcast.fm/; (?:Apple Watch|iOS) podcast'
|
|
1433
|
+
name: 'Overcast'
|
|
1434
|
+
version: '$1'
|
|
1435
|
+
|
|
1436
|
+
# HTTP request maker (https://play.google.com/store/apps/details?id=com.proj.httprequestmaker)
|
|
1437
|
+
- regex: '^HTTPrequestmaker'
|
|
1438
|
+
name: 'HTTP request maker'
|
|
1439
|
+
version: ''
|
|
1440
|
+
|
|
1441
|
+
# bonprix (https://play.google.com/store/apps/details?id=com.proj.httprequestmaker)
|
|
1442
|
+
- regex: '^bonprix mobile App (\d+\.[.\d]+)'
|
|
1443
|
+
name: 'BonPrix'
|
|
1444
|
+
version: '$1'
|
|
1445
|
+
|
|
1446
|
+
# Quora https://apps.apple.com/us/app/quora/id456034437
|
|
1447
|
+
- regex: 'Safari Quora (\d+\.[.\d]+)'
|
|
1448
|
+
name: 'Quora'
|
|
1449
|
+
version: '$1'
|
|
1450
|
+
|
|
1451
|
+
# jj2go https://apps.apple.com/us/app/jj2go/id1438749275
|
|
1452
|
+
- regex: 'RelesysApp/(\d+\.[.\d]+) \(\d{1,2}\) net.relesysapp.jj2go'
|
|
1453
|
+
name: 'JJ2GO'
|
|
1454
|
+
version: '$1'
|
|
1455
|
+
|
|
1456
|
+
# My Watch Party
|
|
1457
|
+
- regex: 'MyWatchParty/(\d+\.[.\d]+)'
|
|
1458
|
+
name: 'My Watch Party'
|
|
1459
|
+
version: '$1'
|
|
1460
|
+
|
|
1461
|
+
- regex: 'LoseIt!/(\d+\.[.\d]+)'
|
|
1462
|
+
name: 'LoseIt!'
|
|
1463
|
+
version: '$1'
|
data/regexes/client/pim.yml
CHANGED
|
@@ -112,3 +112,18 @@
|
|
|
112
112
|
- regex: 'Mailbird/(\d+\.[\.\d]+)/'
|
|
113
113
|
name: 'Mailbird'
|
|
114
114
|
version: '$1'
|
|
115
|
+
|
|
116
|
+
# Yahoo Mail (https://apps.apple.com/us/app/yahoo-mail-organised-email/id577586159)
|
|
117
|
+
- regex: 'Yahoo%20Mail'
|
|
118
|
+
name: 'Yahoo Mail'
|
|
119
|
+
version: ''
|
|
120
|
+
|
|
121
|
+
# eM Client (https://emclient.com/)
|
|
122
|
+
- regex: 'eM Client/(\d+\.[\.\d]+)'
|
|
123
|
+
name: 'eM Client'
|
|
124
|
+
version: '$1'
|
|
125
|
+
|
|
126
|
+
# NAVER Mail (https://play.google.com/store/apps/details?id=com.nhn.android.mail)
|
|
127
|
+
- regex: 'NaverMailApp/(\d+\.[\.\d]+)'
|
|
128
|
+
name: 'NAVER Mail'
|
|
129
|
+
version: '$1'
|
data/regexes/device/consoles.yml
CHANGED
|
@@ -26,7 +26,7 @@ Microsoft:
|
|
|
26
26
|
model: 'Xbox 360'
|
|
27
27
|
|
|
28
28
|
Nintendo:
|
|
29
|
-
regex: 'Nintendo (([3]?DS[i]?)|Wii[U]?|Switch)'
|
|
29
|
+
regex: 'Nintendo (([3]?DS[i]?)|Wii[U]?|Switch|GameBoy)'
|
|
30
30
|
device: 'console'
|
|
31
31
|
model: '$1'
|
|
32
32
|
|
|
@@ -40,13 +40,18 @@ Sega:
|
|
|
40
40
|
device: 'console'
|
|
41
41
|
model: 'Dreamcast'
|
|
42
42
|
|
|
43
|
+
JXD:
|
|
44
|
+
regex: 'JXD_S601WIFI'
|
|
45
|
+
device: 'console'
|
|
46
|
+
model: 'S601 WiFi'
|
|
47
|
+
|
|
43
48
|
Sony:
|
|
44
|
-
regex: 'PlayStation (3|4 Pro|4|5|Portable|Vita)'
|
|
49
|
+
regex: 'PlayStation ?(2|3|4 Pro|4|5|Portable|Vita)'
|
|
45
50
|
device: 'console'
|
|
46
51
|
model: 'PlayStation $1'
|
|
47
52
|
|
|
48
53
|
# Retroid Pocket (www.goretroid.com)
|
|
49
54
|
Retroid Pocket:
|
|
50
|
-
regex: 'Retroid Pocket
|
|
55
|
+
regex: 'Retroid Pocket 2(?:Plus|\+)'
|
|
51
56
|
device: 'console'
|
|
52
57
|
model: '2 Plus'
|