You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/03/24 16:36:16 UTC

[royale-compiler] branch develop updated: Add newer swf version for compiler It permit to use newer version of swf player. It allow to manage Workers

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/develop by this push:
     new 204ac16  Add newer swf version for compiler It permit to use newer version of swf player. It allow to manage Workers
     new 08a7cde  Merge pull request #137 from LenraOfficial/develop
204ac16 is described below

commit 204ac16420bf5cd31439b5e7614e5522f66ddc64
Author: thomas_lenra <th...@lenra.fr>
AuthorDate: Tue Mar 24 17:29:46 2020 +0100

    Add newer swf version for compiler
    It permit to use newer version of swf player.
    It allow to manage Workers
---
 .../royale/compiler/config/Configuration.java      | 42 ++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java b/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java
index 10717b3..d41198e 100644
--- a/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java
+++ b/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java
@@ -1305,6 +1305,27 @@ public class Configuration
         // 11.7 -> 20
         // 11.8 -> 21
         // 11.9 -> 22
+        // 12.0 -> 23
+        // 13.0 -> 24
+        // 14.0 -> 25
+        // 15.0 -> 26
+        // 16.0 -> 27
+        // 17.0 -> 28
+        // 18.0 -> 29
+        // 19.0 -> 30
+        // 20.0 -> 31
+        // 21.0 -> 32
+        // 22.0 -> 33
+        // 23.0 -> 34
+        // 24.0 -> 35
+        // 25.0 -> 36
+        // 26.0 -> 37
+        // 27.0 -> 38
+        // 28.0 -> 39
+        // 29.0 -> 40
+        // 30.0 -> 41
+        // 31.0 -> 42
+        // 32.0 -> 43
 
         Map<String, Integer> map = new HashMap<String, Integer>(10);
 
@@ -1322,6 +1343,27 @@ public class Configuration
         map.put("11.7", 20);
         map.put("11.8", 21);
         map.put("11.9", 22);
+        map.put("12.0", 23);
+        map.put("13.0", 24);
+        map.put("14.0", 25);
+        map.put("15.0", 26);
+        map.put("16.0", 27);
+        map.put("17.0", 28);
+        map.put("18.0", 29);
+        map.put("19.0", 30);
+        map.put("20.0", 31);
+        map.put("21.0", 32);
+        map.put("22.0", 33);
+        map.put("23.0", 34);
+        map.put("24.0", 35);
+        map.put("25.0", 36);
+        map.put("26.0", 37);
+        map.put("27.0", 38);
+        map.put("28.0", 39);
+        map.put("29.0", 40);
+        map.put("30.0", 41);
+        map.put("31.0", 42);
+        map.put("32.0", 43);
 
         return map;
     }