schnabear / swfobject

SWFObject is an easy-to-use and standards-friendly method to embed Flash content, which utilizes one small JavaScript file.
http://code.google.com/p/swfobject
0 stars 0 forks source link

Parse complete flash version string #620

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
SWFObject only represents versions with the first three digits in the version 
string: <major>.<minor>.<release> This behavior makes it difficult to detect 
the presence of critical security patches such as 11.1.102.62 (SWFObject 
discards the final ".62"). 

> getFlashPlayerVersion()
{major:11, minor:1, release:102}

It should return:
{major:11, minor:1, release:102, revision?:62}

http://www.adobe.com/support/security/bulletins/apsb12-03.html

Original issue reported on code.google.com by asr...@gmail.com on 24 Feb 2012 at 9:23

GoogleCodeExporter commented 9 years ago
I'm not sure the revision (aka build) number has always been supplied, 
depending on Flash Player version and browser.  

Changing from defect to enhancement request.

Original comment by platelu...@gmail.com on 2 Mar 2012 at 5:06