device_detector 1.0.7 → 1.1.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/CHANGELOG.md +5 -0
- data/README.md +25 -4
- data/lib/device_detector/browser.rb +178 -5
- data/lib/device_detector/client_hint.rb +166 -0
- data/lib/device_detector/device.rb +291 -2
- data/lib/device_detector/os.rb +33 -3
- data/lib/device_detector/version.rb +1 -1
- data/lib/device_detector.rb +50 -15
- data/regexes/bots.yml +594 -16
- data/regexes/client/browsers.yml +334 -40
- data/regexes/client/hints/apps.yml +102 -0
- data/regexes/client/hints/browsers.yml +190 -0
- data/regexes/client/libraries.yml +199 -2
- data/regexes/client/mobile_apps.yml +320 -12
- data/regexes/client/pim.yml +15 -0
- data/regexes/device/car_browsers.yml +1 -1
- data/regexes/device/consoles.yml +6 -1
- data/regexes/device/mobiles.yml +8406 -1948
- data/regexes/device/portable_media_player.yml +18 -2
- data/regexes/device/shell_tv.yml +11 -0
- data/regexes/device/televisions.yml +26 -4
- data/regexes/oss.yml +329 -47
- metadata +10 -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'
|
@@ -44,6 +62,11 @@
|
|
44
62
|
name: 'Facebook Lite'
|
45
63
|
version: '$1'
|
46
64
|
|
65
|
+
# Meta Business Suite (https://apps.apple.com/us/app/facebook-business-suite/id514643583)
|
66
|
+
- regex: 'FBAN/FBPageAdmin.+FBAV(?:[ /]([\d\.]+))?'
|
67
|
+
name: 'Meta Business Suite'
|
68
|
+
version: '$1'
|
69
|
+
|
47
70
|
# Facebook
|
48
71
|
- regex: '(?:FBAV|com.facebook.katana)(?:[ /]([\d\.]+))?'
|
49
72
|
name: 'Facebook'
|
@@ -62,6 +85,11 @@
|
|
62
85
|
name: 'Google Go'
|
63
86
|
version: ''
|
64
87
|
|
88
|
+
# Google Photos
|
89
|
+
- regex: 'com.google.android.apps.photos'
|
90
|
+
name: 'Google Photos'
|
91
|
+
version: ''
|
92
|
+
|
65
93
|
# Google Play Kiosk
|
66
94
|
- regex: 'com.google.android.apps.magazines'
|
67
95
|
name: 'Google Play Newsstand'
|
@@ -78,7 +106,7 @@
|
|
78
106
|
version: '$1'
|
79
107
|
|
80
108
|
# WeChat
|
81
|
-
- regex: 'MicroMessenger/([
|
109
|
+
- regex: 'MicroMessenger/([\d\.]+)'
|
82
110
|
name: 'WeChat'
|
83
111
|
version: '$1'
|
84
112
|
- regex: 'WeChat/([\d\.]+)'
|
@@ -226,7 +254,7 @@
|
|
226
254
|
- regex: 'BingWeb/([\d\.]+)?'
|
227
255
|
name: 'BingWebApp'
|
228
256
|
version: '$1'
|
229
|
-
- regex: '(?:com.google.GoogleMobile|GSA)/([\d
|
257
|
+
- regex: '(?:com.google.GoogleMobile|GSA|GoogleApp)/([\d.]+)?'
|
230
258
|
name: 'Google Search App'
|
231
259
|
version: '$1'
|
232
260
|
- regex: 'Flipboard/([\d\.]+)?'
|
@@ -238,6 +266,12 @@
|
|
238
266
|
- regex: 'baiduboxapp/([\d\.]+)?'
|
239
267
|
name: 'Baidu Box App'
|
240
268
|
version: '$1'
|
269
|
+
- regex: 'baiduinput/([\d.]+)?'
|
270
|
+
name: 'Baidu Input'
|
271
|
+
version: '$1'
|
272
|
+
- regex: 'PetalSearch/([\d\.]+)?'
|
273
|
+
name: 'Petal Search App'
|
274
|
+
version: '$1'
|
241
275
|
- regex: 'Crosswalk(?!.*(?:Streamy|QwantMobile))/([\d\.]+)?'
|
242
276
|
name: 'CrosswalkApp'
|
243
277
|
version: '$1'
|
@@ -261,12 +295,19 @@
|
|
261
295
|
- regex: 'TopBuzz/([\d\.]+)'
|
262
296
|
name: 'TopBuzz'
|
263
297
|
version: '$1'
|
264
|
-
|
298
|
+
|
299
|
+
# Snapchat
|
300
|
+
- regex: '(?:Safari/[\d\.]+)?Snapchat/?([\d\.]+)'
|
265
301
|
name: 'Snapchat'
|
266
302
|
version: '$1'
|
303
|
+
- regex: 'CronetSnapDevSheldon'
|
304
|
+
name: 'Snapchat'
|
305
|
+
version: ''
|
306
|
+
|
267
307
|
- regex: 'AhaRadio2/([\d\.]+)'
|
268
308
|
name: 'Aha Radio 2'
|
269
309
|
version: '$1'
|
310
|
+
|
270
311
|
# Unibox (https://apps.apple.com/app/id933879046)
|
271
312
|
- regex: 'Unibox/([\d\.]+)'
|
272
313
|
name: 'Unibox'
|
@@ -297,7 +338,7 @@
|
|
297
338
|
name: 'Roblox'
|
298
339
|
version: '$1'
|
299
340
|
|
300
|
-
- regex: 'Viber
|
341
|
+
- regex: 'Viber(?:/(\d+[\.\d]+))?'
|
301
342
|
name: 'Viber'
|
302
343
|
version: '$1'
|
303
344
|
|
@@ -376,16 +417,34 @@
|
|
376
417
|
name: '1Password'
|
377
418
|
version: '$1'
|
378
419
|
|
379
|
-
- regex: '(?:Microsoft Office )?(Access|Excel|OneDrive for Business|OneNote|PowerPoint|Project|Publisher|Visio|Word)[ /]([\d
|
420
|
+
- regex: '(?:Microsoft Office )?(Access|Excel|OneDrive for Business|OneNote|PowerPoint|Project|Publisher|Visio|Word)(?: 20\d{2})?[ /]\(?(\d+\.[\d.]*)'
|
380
421
|
name: 'Microsoft Office $1'
|
381
422
|
version: '$2'
|
423
|
+
- regex: '^Mozilla/4\.0 \(compatible; ms-office; MSOffice[ /]([\d\.]+)'
|
424
|
+
name: 'Microsoft Office'
|
425
|
+
version: '$1'
|
426
|
+
- regex: 'Microsoft Office SyncProc ([\d\.]+)'
|
427
|
+
name: 'Microsoft Office'
|
428
|
+
version: '$1'
|
429
|
+
- regex: 'Microsoft Lync ([\d\.]+)'
|
430
|
+
name: 'Microsoft Lync'
|
431
|
+
version: '$1'
|
432
|
+
|
433
|
+
# https://play.google.com/store/apps/details?id=cn.wps.moffice_eng
|
434
|
+
- regex: 'WpsM?office/([\d\.]+)'
|
435
|
+
name: 'WPS Office'
|
436
|
+
version: '$1'
|
382
437
|
|
383
438
|
# https://apps.apple.com/us/app/microsoft-onedrive/id477537958
|
384
439
|
- regex: 'OneDriveiOSApp/([\d\.]+)'
|
385
440
|
name: 'Microsoft OneDrive'
|
386
441
|
version: '$1'
|
387
442
|
|
388
|
-
- regex: 'Microsoft Office
|
443
|
+
- regex: 'Microsoft Office Existence Discovery'
|
444
|
+
name: 'Microsoft Office'
|
445
|
+
version: ''
|
446
|
+
|
447
|
+
- regex: '(?:Microsoft Office Mobile|officemobile)[ /]([\d\.]+)'
|
389
448
|
name: 'Microsoft Office Mobile'
|
390
449
|
version: '$1'
|
391
450
|
|
@@ -403,16 +462,16 @@
|
|
403
462
|
name: 'Skype for Business'
|
404
463
|
version: '$1'
|
405
464
|
|
465
|
+
# GroupMe (https://apps.apple.com/us/app/groupme/id392796698)
|
466
|
+
- regex: 'GroupMe/([\d\.]+)'
|
467
|
+
name: 'GroupMe'
|
468
|
+
version: '$1'
|
469
|
+
|
406
470
|
# TikTok (https://apps.apple.com/app/id835599320 | https://play.google.com/store/apps/details?id=com.zhiliaoapp.musically)
|
407
471
|
- regex: '(?:TikTok[/ ]|musical_ly_|AppName/musical_ly app_version/)(\d+\.(?:[\.\d]+))?'
|
408
472
|
name: 'TikTok'
|
409
473
|
version: '$1'
|
410
474
|
|
411
|
-
# https://apps.apple.com/app/id393499958
|
412
|
-
- regex: 'NAVER/(\d+[\.\d]+) CFNetwork'
|
413
|
-
name: 'Naver'
|
414
|
-
version: '$1'
|
415
|
-
|
416
475
|
# https://apps.apple.com/app/id1026349850
|
417
476
|
- regex: 'Copied/(\d+[\.\d]+) CFNetwork'
|
418
477
|
name: 'Copied'
|
@@ -437,6 +496,9 @@
|
|
437
496
|
- regex: 'Slack/(\d+[\.\d]+) CFNetwork'
|
438
497
|
name: 'Slack'
|
439
498
|
version: ''
|
499
|
+
- regex: 'com.tinyspeck.chatlyio/(\d+[\.\d]+)'
|
500
|
+
name: 'Slack'
|
501
|
+
version: '$1'
|
440
502
|
|
441
503
|
# https://apps.apple.com/us/app/id362057947
|
442
504
|
- regex: 'KAKAOTALK (\d+\.(?:[\.\d]+))?'
|
@@ -643,10 +705,14 @@
|
|
643
705
|
name: 'Teams'
|
644
706
|
version: '$1'
|
645
707
|
|
646
|
-
- regex: 'TeamsMobile-iOS'
|
708
|
+
- regex: 'TeamsMobile-(?:Android|iOS)'
|
647
709
|
name: 'Teams'
|
648
710
|
version: ''
|
649
711
|
|
712
|
+
- regex: 'SohuNews/(\d+\.[.\d]+)'
|
713
|
+
name: 'SohuNews'
|
714
|
+
version: '$1'
|
715
|
+
|
650
716
|
# Streamlabs OBS (https://streamlabs.com/)
|
651
717
|
- regex: 'StreamlabsOBS/(\d+[\.\d]+)'
|
652
718
|
name: 'Streamlabs OBS'
|
@@ -1045,6 +1111,11 @@
|
|
1045
1111
|
name: 'Microsoft Bing Search'
|
1046
1112
|
version: '$1'
|
1047
1113
|
|
1114
|
+
# Microsoft Start (https://play.google.com/store/apps/details?id=com.microsoft.amp.apps.bingnews | https://apps.apple.com/us/app/microsoft-start/id945416273)
|
1115
|
+
- regex: 'NewsSapphire/(\d+\.[\.\d]+)'
|
1116
|
+
name: 'Microsoft Start'
|
1117
|
+
version: '$1'
|
1118
|
+
|
1048
1119
|
# HiSearch
|
1049
1120
|
- regex: '.+HiSearch/(\d+\.[\.\d]+)'
|
1050
1121
|
name: 'HiSearch'
|
@@ -1079,3 +1150,240 @@
|
|
1079
1150
|
- regex: 'com.Nanoteq.QmunicateH10p.+/(\d+\.[\.\d]+) \('
|
1080
1151
|
name: 'Q-municate'
|
1081
1152
|
version: '$1'
|
1153
|
+
|
1154
|
+
# NET.mede (https://apps.apple.com/us/app/net-mede/id597007101)
|
1155
|
+
- regex: 'NET.mede'
|
1156
|
+
name: 'NET.mede'
|
1157
|
+
version: ''
|
1158
|
+
|
1159
|
+
# My Bentley (https://apps.apple.com/us/app/my-bentley/id1008052243)
|
1160
|
+
- regex: 'My%20Bentley'
|
1161
|
+
name: 'My Bentley'
|
1162
|
+
version: ''
|
1163
|
+
|
1164
|
+
# Skyeng (https://apps.apple.com/us/app/skyeng-english-online/id1065290732)
|
1165
|
+
- regex: 'Skyeng%20App'
|
1166
|
+
name: 'Skyeng'
|
1167
|
+
version: ''
|
1168
|
+
|
1169
|
+
# Skyeng Teachers (https://apps.apple.com/us/app/skyeng-teachers/id1483049537)
|
1170
|
+
- regex: 'Skyeng%20Teachers'
|
1171
|
+
name: 'Skyeng Teachers'
|
1172
|
+
version: ''
|
1173
|
+
|
1174
|
+
# Bank Millenium (https://apps.apple.com/us/app/bank-millennium/id412646128)
|
1175
|
+
- regex: '(Millennium/|Millennium%20Corp)'
|
1176
|
+
name: 'Bank Millenium'
|
1177
|
+
version: ''
|
1178
|
+
|
1179
|
+
# MBolsa (https://apps.apple.com/us/app/mbolsa/id1533621499)
|
1180
|
+
- regex: 'MBolsa'
|
1181
|
+
name: 'MBolsa'
|
1182
|
+
version: ''
|
1183
|
+
|
1184
|
+
# MEmpresas (https://apps.apple.com/us/app/mempresas/id669516182)
|
1185
|
+
- regex: '(MEmpresas|Millennium%20Empresas)'
|
1186
|
+
name: 'MEmpresas'
|
1187
|
+
version: ''
|
1188
|
+
|
1189
|
+
# Orange Radio (https://apps.apple.com/fr/app/orange-radio/id1201284975?l=en)
|
1190
|
+
- regex: 'OrangeRadio/(\d+\.[\.\d]+)'
|
1191
|
+
name: 'Orange Radio'
|
1192
|
+
version: '$1'
|
1193
|
+
|
1194
|
+
# Radio Italiane https://apps.apple.com/us/app/radio-italiane-radio-it/id1390350146)
|
1195
|
+
- regex: 'Radio%20Italiane/(\d+\.[\.\d]+)'
|
1196
|
+
name: 'Radio Italiane'
|
1197
|
+
version: '$1'
|
1198
|
+
|
1199
|
+
# Safari Search Helper
|
1200
|
+
- regex: 'com.apple.Safari.SearchHelper/(\d+\.[\.\d]+)'
|
1201
|
+
name: 'Safari Search Helper'
|
1202
|
+
version: '$1'
|
1203
|
+
|
1204
|
+
# Citrix Workspace (https://apps.apple.com/us/app/citrix-workspace/id363501921)
|
1205
|
+
- regex: 'Citrix%20Viewer'
|
1206
|
+
name: 'Citrix Workspace'
|
1207
|
+
version: ''
|
1208
|
+
|
1209
|
+
# Mercantile Bank of Michigan (https://apps.apple.com/us/app/mercantile-bank-of-michigan/id428982831)
|
1210
|
+
- regex: 'com.mercbank.s1mobileipad'
|
1211
|
+
name: 'Mercantile Bank of Michigan'
|
1212
|
+
version: ''
|
1213
|
+
|
1214
|
+
# DStream Air (https://apps.apple.com/us/app/dstream-air/id1214400521)
|
1215
|
+
- regex: 'D-Stream%20Air'
|
1216
|
+
name: 'DStream Air'
|
1217
|
+
version: ''
|
1218
|
+
|
1219
|
+
# Expedia (https://apps.apple.com/us/app/expedia-hotels-flights-car/id427916203)
|
1220
|
+
- regex: 'ExpediaBookings'
|
1221
|
+
name: 'Expedia'
|
1222
|
+
version: ''
|
1223
|
+
|
1224
|
+
# Windows Antivirus
|
1225
|
+
- regex: 'Windows Antivirus (\d+\.[\.\d]+)'
|
1226
|
+
name: 'Windows Antivirus'
|
1227
|
+
version: '$1'
|
1228
|
+
|
1229
|
+
# Macrium Reflect (https://www.macrium.com/reflectfree)
|
1230
|
+
- regex: '^Reflect'
|
1231
|
+
name: 'Macrium Reflect'
|
1232
|
+
version: ''
|
1233
|
+
|
1234
|
+
- regex: 'Opera autoupdate agent'
|
1235
|
+
name: 'Opera Updater'
|
1236
|
+
version: ''
|
1237
|
+
|
1238
|
+
# Ballz (https://apps.apple.com/us/app/ballz/id1139609950)
|
1239
|
+
- regex: 'Ballz/(\d+\.[\.\d]+)'
|
1240
|
+
name: 'Ballz'
|
1241
|
+
version: '$1'
|
1242
|
+
|
1243
|
+
# RNPS Action Cards
|
1244
|
+
- regex: 'rnps-action-cards/(\d+\.[\.\d]+)'
|
1245
|
+
name: 'RNPS Action Cards'
|
1246
|
+
version: '$1'
|
1247
|
+
|
1248
|
+
# Plex Media Server (https://www.plex.tv/sv/media-server-downloads/)
|
1249
|
+
- regex: 'PlexMediaServer/(\d+\.[\.\d]+)'
|
1250
|
+
name: 'Plex Media Server'
|
1251
|
+
version: '$1'
|
1252
|
+
|
1253
|
+
# SafeIP (https://www.freesafeip.com/)
|
1254
|
+
- regex: 'FreeSafeIP'
|
1255
|
+
name: 'SafeIP'
|
1256
|
+
version: ''
|
1257
|
+
|
1258
|
+
# Surfshark (https://play.google.com/store/apps/details?id=com.surfshark.vpnclient.android)
|
1259
|
+
- regex: 'SurfsharkAndroid/(\d+\.[\.\d]+)'
|
1260
|
+
name: 'Surfshark'
|
1261
|
+
version: '$1'
|
1262
|
+
|
1263
|
+
# Hago (https://play.google.com/store/apps/details?id=com.yy.hiyo)
|
1264
|
+
- regex: 'APP/yym-hago-and(\d+\.[\.\d]+)'
|
1265
|
+
name: 'Hago'
|
1266
|
+
version: '$1'
|
1267
|
+
|
1268
|
+
# Vuze Bittorent Client
|
1269
|
+
- regex: 'Azureus (\d+\.[\.\d]+)'
|
1270
|
+
name: 'Vuze'
|
1271
|
+
version: '$1'
|
1272
|
+
|
1273
|
+
# Adobe IPM
|
1274
|
+
- regex: 'IPM'
|
1275
|
+
name: 'Adobe IPM'
|
1276
|
+
version: ''
|
1277
|
+
|
1278
|
+
# Adobe NGL
|
1279
|
+
- regex: 'NGL Client/(\d+\.[\.\d]+)'
|
1280
|
+
name: 'Adobe NGL'
|
1281
|
+
version: '$1'
|
1282
|
+
|
1283
|
+
# Bitcoin Core (https://bitcoin.org/en/bitcoin-core/)
|
1284
|
+
- regex: '/Satoshi:(\d+\.[\.\d]+)/'
|
1285
|
+
name: 'Bitcoin Core'
|
1286
|
+
version: '$1'
|
1287
|
+
|
1288
|
+
# Amazon Shopping (https://play.google.com/store/apps/details?id=com.amazon.mShop.android.shopping)
|
1289
|
+
- regex: 'Amazon.com/(\d+\.[\.\d]+)'
|
1290
|
+
name: 'Amazon Shopping'
|
1291
|
+
version: '$1'
|
1292
|
+
|
1293
|
+
# mobile.de (https://play.google.com/store/apps/details?id=de.mobile.android.app)
|
1294
|
+
- regex: 'de.mobile.android.app/(\d+\.[\.\d]+)'
|
1295
|
+
name: 'mobile.de'
|
1296
|
+
version: '$1'
|
1297
|
+
- regex: 'de.mobile.android.app/(.*) \((\d+\.[\.\d]+)\)'
|
1298
|
+
name: 'mobile.de'
|
1299
|
+
version: '$2'
|
1300
|
+
|
1301
|
+
# Jitsi Meet (https://meet.jit.si/)
|
1302
|
+
- regex: 'jitsi-meet/'
|
1303
|
+
name: 'Jitsi Meet'
|
1304
|
+
version: ''
|
1305
|
+
|
1306
|
+
# Don't Waste My Time! (https://apps.apple.com/us/app/dont-waste-my-time/id1503883738)
|
1307
|
+
- regex: 'Waste My Time! Extension/(\d+\.[\.\d]+)'
|
1308
|
+
name: "Don't Waste My Time!"
|
1309
|
+
version: '$1'
|
1310
|
+
|
1311
|
+
# Surfshark (https://apps.apple.com/app/apple-store/id1391782046)
|
1312
|
+
- regex: 'Surfshark/(\d+\.[\.\d]+)'
|
1313
|
+
name: 'Surfshark'
|
1314
|
+
version: '$1'
|
1315
|
+
|
1316
|
+
# 1Password (https://apps.apple.com/us/app/1password-password-manager/id568903335)
|
1317
|
+
- regex: '1Password/(\d+\.[\.\d]+)'
|
1318
|
+
name: '1Password'
|
1319
|
+
version: '$1'
|
1320
|
+
|
1321
|
+
# Startsiden (https://apps.apple.com/us/app/startsiden/id435032741)
|
1322
|
+
- regex: 'iOSStartsidenApp'
|
1323
|
+
name: 'Startsiden'
|
1324
|
+
version: ''
|
1325
|
+
|
1326
|
+
# HisThumbnail
|
1327
|
+
- regex: 'HisThumbnail'
|
1328
|
+
name: 'HisThumbnail'
|
1329
|
+
version: ''
|
1330
|
+
|
1331
|
+
# Yahoo OneSearch (https://apps.apple.com/us/app/yahoo-onesearch/id1494021151)
|
1332
|
+
- regex: 'OneSearch/(\d+\.[\.\d]+)'
|
1333
|
+
name: 'Yahoo OneSearch'
|
1334
|
+
version: '$1'
|
1335
|
+
|
1336
|
+
# Bing iPad
|
1337
|
+
- regex: 'bingipadclient'
|
1338
|
+
name: 'Bing iPad'
|
1339
|
+
version: ''
|
1340
|
+
|
1341
|
+
# AntiBrowserSpy (https://www.abelssoft.de/en/windows/security-privacy/antibrowserspy)
|
1342
|
+
- regex: 'anonymized by Abelssoft'
|
1343
|
+
name: 'AntiBrowserSpy'
|
1344
|
+
version: ''
|
1345
|
+
|
1346
|
+
# 다음 or Daum
|
1347
|
+
- regex: 'DaumApps/(\d+\.[.\d]+)?'
|
1348
|
+
name: 'Daum'
|
1349
|
+
version: '$1'
|
1350
|
+
|
1351
|
+
# DIRECTV (https://play.google.com/store/apps/details?id=com.att.tv)
|
1352
|
+
- regex: 'AT&T TV'
|
1353
|
+
name: 'DIRECTV'
|
1354
|
+
version: ''
|
1355
|
+
|
1356
|
+
# Reddit (https://play.google.com/store/apps/details?id=com.reddit.frontpage)
|
1357
|
+
- regex: 'Reddit/Version (\d+\.[.\d]+)/'
|
1358
|
+
name: 'Reddit'
|
1359
|
+
version: '$1'
|
1360
|
+
|
1361
|
+
# Tuya Smart Life (https://play.google.com/store/apps/details?id=com.tuya.smartlife)
|
1362
|
+
- regex: 'TuyaSmart/(\d+\.[.\d]+)'
|
1363
|
+
name: 'Tuya Smart Life'
|
1364
|
+
version: '$1'
|
1365
|
+
|
1366
|
+
# Spotify (https://apps.apple.com/us/app/spotify-music-and-podcasts/id324684580)
|
1367
|
+
- regex: 'Spotify/(\d+\.[.\d]+)'
|
1368
|
+
name: 'Spotify'
|
1369
|
+
version: '$1'
|
1370
|
+
|
1371
|
+
# Amazon Music (https://apps.apple.com/us/app/amazon-music-songs-podcasts/id510855668)
|
1372
|
+
- regex: 'AmazonMusic/(\d+\.[.\d]+)'
|
1373
|
+
name: 'Amazon Music'
|
1374
|
+
version: '$1'
|
1375
|
+
|
1376
|
+
# Klarna (https://apps.apple.com/us/app/klarna-shop-now-pay-later/id1115120118)
|
1377
|
+
- regex: 'Klarna/(\d+\.[.\d]+)'
|
1378
|
+
name: 'Klarna'
|
1379
|
+
version: '$1'
|
1380
|
+
|
1381
|
+
# WhatsApp+2
|
1382
|
+
- regex: 'YoWhatsApp2Plus(?:/(\d+[\.\d]+))?'
|
1383
|
+
name: 'WhatsApp+2'
|
1384
|
+
version: '$1'
|
1385
|
+
|
1386
|
+
# R (https://www.r-project.org/)
|
1387
|
+
- regex: '^R/(\d+[\.\d]+)'
|
1388
|
+
name: 'R'
|
1389
|
+
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
@@ -40,8 +40,13 @@ 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
|
|