From 1ca112132b113d08b714f861f46eb0d2af7da795 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sat, 22 Nov 2014 19:42:10 +0100 Subject: [PATCH] SWF version to FlashPlayer version map updated --- .../src/com/jpexs/decompiler/flash/xfl/FLAVersion.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/FLAVersion.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/FLAVersion.java index a20eb5c7a..09a84ef2e 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/FLAVersion.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/FLAVersion.java @@ -12,7 +12,8 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library. */ + * License along with this library. + */ package com.jpexs.decompiler.flash.xfl; import java.util.HashMap; @@ -58,6 +59,9 @@ public enum FLAVersion { versionToPlayerMap.put(21, "FlashPlayer11.8"); versionToPlayerMap.put(22, "FlashPlayer11.9"); versionToPlayerMap.put(23, "FlashPlayer12.0"); + versionToPlayerMap.put(24, "FlashPlayer13.0"); + versionToPlayerMap.put(25, "FlashPlayer14.0"); + versionToPlayerMap.put(26, "FlashPlayer15.0"); } private FLAVersion(String shortName, String applicationName, String xflVersion, int maxSwfVersion) {