mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 20:13:31 +03:00
6e8ccdd473
Closes #309
28 lines
653 B
YAML
28 lines
653 B
YAML
###############
|
|
# Device Detector - The Universal Device Detection library for parsing User Agents
|
|
#
|
|
# @link https://matomo.org
|
|
# @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later
|
|
###############
|
|
|
|
#Nikon
|
|
Nikon:
|
|
regex: 'Coolpix S800c'
|
|
device: 'camera'
|
|
model: 'Coolpix S800c'
|
|
|
|
# Samsung
|
|
Samsung:
|
|
regex: 'EK-G[CN][0-9]{3}'
|
|
device: 'camera'
|
|
models:
|
|
- regex: 'EK-GN120'
|
|
model: 'GALAXY NX'
|
|
- regex: 'EK-GC100'
|
|
model: 'GALAXY Camera'
|
|
- regex: 'EK-GC110'
|
|
model: 'GALAXY Camera WiFi only'
|
|
- regex: 'EK-GC200'
|
|
model: 'GALAXY Camera 2'
|
|
- regex: 'EK-GC([0-9]{3})'
|
|
model: 'GALAXY Camera $1' |