Repository: flex-sdk Updated Branches: refs/heads/develop 1907c6c54 -> a7e0e0801
Set 4.16.0 as latest version Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/a7e0e080 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/a7e0e080 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/a7e0e080 Branch: refs/heads/develop Commit: a7e0e0801a7f76458ffc7dc7f9a4a833ffd5004e Parents: 1907c6c Author: Justin Mclean <[email protected]> Authored: Sun Jan 10 17:02:27 2016 +1100 Committer: Justin Mclean <[email protected]> Committed: Sun Jan 10 17:02:27 2016 +1100 ---------------------------------------------------------------------- .../projects/framework/src/mx/core/FlexVersion.as | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a7e0e080/frameworks/projects/framework/src/mx/core/FlexVersion.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/framework/src/mx/core/FlexVersion.as b/frameworks/projects/framework/src/mx/core/FlexVersion.as index bce991b..08650af 100644 --- a/frameworks/projects/framework/src/mx/core/FlexVersion.as +++ b/frameworks/projects/framework/src/mx/core/FlexVersion.as @@ -56,7 +56,21 @@ public class FlexVersion * @playerversion AIR 1.1 * @productversion Flex 3 */ - public static const CURRENT_VERSION:uint = 0x040F0000; + public static const CURRENT_VERSION:uint = 0x04100000; + + /** + * The <code>compatibilityVersion</code> value of Flex 4.16, + * encoded numerically as a <code>uint</code>. + * Code can compare this constant against + * the <code>compatibilityVersion</code> + * to implement version-specific behavior. + * + * @langversion 3.0 + * @playerversion Flash 11 + * @playerversion AIR 3 + * @productversion Apache Flex 4.16 + */ + public static const VERSION_4_16:uint = 0x04100000; /** * The <code>compatibilityVersion</code> value of Flex 4.15, @@ -68,7 +82,7 @@ public class FlexVersion * @langversion 3.0 * @playerversion Flash 11 * @playerversion AIR 3 - * @productversion Apache Flex 4.14 + * @productversion Apache Flex 4.15 */ public static const VERSION_4_15:uint = 0x040F0000;
