-
Notifications
You must be signed in to change notification settings - Fork 494
Added a few Android devices #5766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
regexes/device/mobiles.yml
Outdated
- regex: '(?:SAMSUNG-)?SM-J111[FGLM]' | ||
- regex: '(?:SAMSUNG-)?SM-J110[FHML]' | ||
model: 'GALAXY J1 Ace' | ||
- regex: '(?:SAMSUNG-)?SM-J111F' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you remove J111[GLM]
on purpose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think they actually exist: couldn't find information on those on the internet, and there were no tests/user-agents on them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There seems to be at least a SM-J111M
(see https://www.handsetdetection.com/device-detection-database/devices/samsung/sm-j111m/)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, indeed, added this one back!
regexes/device/mobiles.yml
Outdated
- regex: 'P008 Build[);/ ]' | ||
model: 'ZenPad Z8' | ||
device: 'tablet' | ||
- regex: 'P027 Build[);/ ]' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
having the [);/ ]
here is not really needed, as it is already matched in the overall regex and Pxxx Build
should be enough for an exact match then
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, changed!
No description provided.