-
Notifications
You must be signed in to change notification settings - Fork 449
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
Fix OS version detection for Chrome OS #231
base: master
Are you sure you want to change the base?
Conversation
Same (rebase) game ... |
regexes.yaml
Outdated
@@ -925,6 +925,9 @@ os_parsers: | |||
# http://code.google.com/p/chromium-os/issues/detail?id=11573 | |||
# http://code.google.com/p/chromium-os/issues/detail?id=13790 | |||
########## | |||
# Newer versions of Chrome OS require you to look at the Chrome version to get the real version | |||
- regex: '(CrOS) [a-z0-9_]+ \d\d\d\d\.\d+\.\d+\) .* Chrome/(\d+)\.(\d+)\.(\d+)\.(\d+)' |
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.
Will the leading CrOS number always be 4 digits? Might it be worth matching any number of digits to future proof it? i.e. (CrOS) [a-z0-9_]+ \d+\.\d+\.\d+\)
? Just a thought.
@seandilda Can you please rebase and fix the failing tests? |
I'm not using this project anymore and don't currently have the spare cycles for this. Please feel free to close this PR if no one else is willing to take this on. |
No description provided.