Updated detection of Flash and AdobeAIR.

This commit is contained in:
Jan Grashoefer 2015-07-24 13:58:21 +02:00
parent 5ffe76f336
commit b765c95d6e
2 changed files with 38 additions and 5 deletions

View file

@ -280,6 +280,13 @@ function parse_mozilla(unparsed_version: string): Description
v = parse(parts[1])$version;
}
}
else if ( /AdobeAIR\/[0-9\.]*/ in unparsed_version )
{
software_name = "AdobeAIR";
parts = split_string_all(unparsed_version, /AdobeAIR\/[0-9\.]*/);
if ( 1 in parts )
v = parse(parts[1])$version;
}
else if ( /AppleWebKit\/[0-9\.]*/ in unparsed_version )
{
software_name = "Unspecified WebKit";