diff --git a/trunk/.idea/ant.xml b/trunk/.idea/ant.xml
index db0112b75..6ddee46ae 100644
--- a/trunk/.idea/ant.xml
+++ b/trunk/.idea/ant.xml
@@ -2,6 +2,14 @@
+
+
+
+
+
+
+
+
diff --git a/trunk/.idea/libraries/lib1.xml b/trunk/.idea/libraries/lib.xml
similarity index 67%
rename from trunk/.idea/libraries/lib1.xml
rename to trunk/.idea/libraries/lib.xml
index ddc47d775..d062ade52 100644
--- a/trunk/.idea/libraries/lib1.xml
+++ b/trunk/.idea/libraries/lib.xml
@@ -1,7 +1,6 @@
-
+
-
diff --git a/trunk/.idea/workspace.xml b/trunk/.idea/workspace.xml
index e47745fba..8e4cd62eb 100644
--- a/trunk/.idea/workspace.xml
+++ b/trunk/.idea/workspace.xml
@@ -74,6 +74,7 @@
@@ -133,38 +134,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -172,8 +141,10 @@
+
+
@@ -181,10 +152,11 @@
-
+
+
-
+
@@ -293,7 +265,42 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
localhost
5050
@@ -319,24 +326,24 @@
-
+
-
-
-
-
-
-
-
+
-
+
+
+
+
+
+
+
+
-
@@ -374,32 +381,51 @@
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
-
-
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/trunk/ASDec.iml b/trunk/ASDec.iml
index 30070a743..7cd600407 100644
--- a/trunk/ASDec.iml
+++ b/trunk/ASDec.iml
@@ -1,6 +1,8 @@
-
+
+
+
@@ -9,7 +11,16 @@
-
+
+
+
+
+
+
+
+
+
+
diff --git a/trunk/graphics/codelogo.svg b/trunk/graphics/codelogo.svg
new file mode 100644
index 000000000..af8901700
--- /dev/null
+++ b/trunk/graphics/codelogo.svg
@@ -0,0 +1,246 @@
+
+
+
+
diff --git a/trunk/graphics/icon.svg b/trunk/graphics/icon.svg
new file mode 100644
index 000000000..f80e9eee3
--- /dev/null
+++ b/trunk/graphics/icon.svg
@@ -0,0 +1,280 @@
+
+
+
+
diff --git a/trunk/lib/commons-codec-1.3.jar b/trunk/lib/commons-codec-1.3.jar
deleted file mode 100644
index 957b6752a..000000000
Binary files a/trunk/lib/commons-codec-1.3.jar and /dev/null differ
diff --git a/trunk/libsrc/jpproxy/jpproxy.iml b/trunk/libsrc/jpproxy/jpproxy.iml
index bcd297458..9522f9dc8 100644
--- a/trunk/libsrc/jpproxy/jpproxy.iml
+++ b/trunk/libsrc/jpproxy/jpproxy.iml
@@ -1,6 +1,8 @@
-
+
+
+
diff --git a/trunk/test/com/jpexs/asdec/TestRecompile.java b/trunk/test/com/jpexs/asdec/TestRecompile.java
index 183857805..a75bc8163 100644
--- a/trunk/test/com/jpexs/asdec/TestRecompile.java
+++ b/trunk/test/com/jpexs/asdec/TestRecompile.java
@@ -4,15 +4,12 @@ import com.jpexs.asdec.abc.NotSameException;
import junit.framework.TestCase;
import org.junit.Test;
-import java.io.ByteArrayOutputStream;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.IOException;
+import java.io.*;
public class TestRecompile extends TestCase {
public static final String TESTDATADIR = "testdata";
- private void testRecompile(String filename) {
+ private void testRecompileOne(String filename) {
try {
SWF swf = new SWF(new FileInputStream(TESTDATADIR + File.separator + filename));
Main.DEBUG_COPY = true;
@@ -20,23 +17,21 @@ public class TestRecompile extends TestCase {
} catch (IOException ex) {
fail();
} catch (NotSameException ex) {
- //ex.printStackTrace();
fail("File is different after recompiling: " + filename);
}
}
@Test
- public void testRecompile1() {
- testRecompile("01.swf");
+ public void testRecompile() {
+ File dir=new File(TESTDATADIR);
+ File files[]=dir.listFiles(new FilenameFilter(){
+ public boolean accept(File dir, String name) {
+ return name.toLowerCase().endsWith(".swf");
+ }
+ });
+ for(File f:files){
+ testRecompileOne(f.getAbsolutePath());
+ }
}
- @Test
- public void testRecompile2() {
- testRecompile("02.swf");
- }
-
- @Test
- public void testRecompile3() {
- testRecompile("03.swf");
- }
}