1############### 2# Device Detector - The Universal Device Detection library for parsing User Agents 3# 4# @link https://matomo.org 5# @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later 6############### 7 8Archos: 9 regex: 'Archos.*GAMEPAD([2]?)' 10 device: 'console' 11 model: 'Gamepad $1' 12 13Microsoft: 14 regex: 'Xbox' 15 device: 'console' 16 models: 17 - regex: 'Xbox Series X' 18 model: 'Xbox Series X' 19 - regex: 'Xbox One X' 20 model: 'Xbox One X' 21 - regex: 'Xbox One' 22 model: 'Xbox One' 23 - regex: 'XBOX_ONE_ED' 24 model: 'Xbox One S' 25 - regex: 'Xbox' 26 model: 'Xbox 360' 27 28Nintendo: 29 regex: 'Nintendo (([3]?DS[i]?)|Wii[U]?|Switch|GameBoy)' 30 device: 'console' 31 model: '$1' 32 33OUYA: 34 regex: 'OUYA' 35 device: 'console' 36 model: 'OUYA' 37 38Sanyo: 39 regex: 'Aplix_SANYO' 40 device: 'console' 41 model: '3DO TRY' 42 43Sega: 44 regex: 'Dreamcast|Aplix_SEGASATURN' 45 device: 'console' 46 models: 47 - regex: 'Dreamcast' 48 model: 'Dreamcast' 49 - regex: 'Aplix_SEGASATURN' 50 model: 'Saturn' 51 52JXD: 53 regex: 'JXD_S601WIFI' 54 device: 'console' 55 model: 'S601 WiFi' 56 57Sony: 58 regex: '(?:PlayStation ?(4 Pro|[2-5]|Portable|Vita)|sony_tv;ps5;|\(PS3\))' 59 device: 'console' 60 models: 61 - regex: 'sony_tv;ps5;' 62 model: 'PlayStation 5' 63 - regex: 'PlayStation 4 PRO' 64 model: 'PlayStation 4 Pro' 65 - regex: '\(PS3\)' 66 model: 'PlayStation 3' 67 - regex: 'PlayStation ?(4 Pro|[2-5]|Portable|Vita)' 68 model: 'PlayStation $1' 69 70# Retroid Pocket (www.goretroid.com) 71Retroid Pocket: 72 regex: 'Retroid Pocket' 73 device: 'console' 74 models: 75 - regex: 'Pocket ([23]) ?(?:Plus|\+)' 76 model: '$1 Plus' 77 - regex: 'Pocket 4 Pro' 78 model: '4 Pro' 79 - regex: 'Pocket ([235])' 80 model: '$1' 81