[izpack-changes] r1604 - in izpack-src/branches/branch-3.9: . src src/dist-files src/lib/com/izforge/izpack/compiler

noreply at berlios.de noreply at berlios.de
Tue Sep 19 07:05:45 CEST 2006


Author: jponge
Date: 2006-09-19 07:05:29 +0200 (Tue, 19 Sep 2006)
New Revision: 1604

Modified:
   izpack-src/branches/branch-3.9/IzPack-head.iml
   izpack-src/branches/branch-3.9/Versions.txt
   izpack-src/branches/branch-3.9/src/build.xml
   izpack-src/branches/branch-3.9/src/dist-files/IzPack-install.xml
   izpack-src/branches/branch-3.9/src/lib/com/izforge/izpack/compiler/Compiler.java
Log:
3.9.0-RC1

Modified: izpack-src/branches/branch-3.9/IzPack-head.iml
===================================================================
--- izpack-src/branches/branch-3.9/IzPack-head.iml	2006-09-17 01:10:54 UTC (rev 1603)
+++ izpack-src/branches/branch-3.9/IzPack-head.iml	2006-09-19 05:05:29 UTC (rev 1604)
@@ -9,6 +9,8 @@
       <sourceFolder url="file://$MODULE_DIR$/src/tests" isTestSource="true" />
       <excludeFolder url="file://$MODULE_DIR$/_build" />
       <excludeFolder url="file://$MODULE_DIR$/_dist" />
+      <excludeFolder url="file://$MODULE_DIR$/doc/izpack" />
+      <excludeFolder url="file://$MODULE_DIR$/doc/izpack/javadoc" />
     </content>
     <orderEntry type="inheritedJdk" />
     <orderEntry type="sourceFolder" forTests="false" />

Modified: izpack-src/branches/branch-3.9/Versions.txt
===================================================================
--- izpack-src/branches/branch-3.9/Versions.txt	2006-09-17 01:10:54 UTC (rev 1603)
+++ izpack-src/branches/branch-3.9/Versions.txt	2006-09-19 05:05:29 UTC (rev 1604)
@@ -17,7 +17,7 @@
 - Spanish langpack update (Cesar Martinez Izquierdo).
 - New Polish langpack (Fabrice Mirabile, thanks to Radek)
 - Fixed the createPWD.sh (Fabrice Mirabile, thanks to Radek)
-- Workaround for crashes at end of installation with java VM version
+- Workaround for crashes at end of installation with Java VM version
   1.5 (also known as 5.0) (Klaus Bartz).
 - Updated russian langpack (Fabrice Mirabile)
 - Fixed indent of ShortcutPanels Headline (Marc Eppelmann)

Modified: izpack-src/branches/branch-3.9/src/build.xml
===================================================================
--- izpack-src/branches/branch-3.9/src/build.xml	2006-09-17 01:10:54 UTC (rev 1603)
+++ izpack-src/branches/branch-3.9/src/build.xml	2006-09-19 05:05:29 UTC (rev 1604)
@@ -192,7 +192,7 @@
 
     <property file="src/ant.properties" />
     <property name="ver" value="3.9" />
-    <property name="rel" value="0-M1" />
+    <property name="rel" value="0-RC1" />
     <property name="build.number" value="${ver}.${rel}" />
 
     <property name="src.dir" value="${basedir}/src/lib" />

Modified: izpack-src/branches/branch-3.9/src/dist-files/IzPack-install.xml
===================================================================
--- izpack-src/branches/branch-3.9/src/dist-files/IzPack-install.xml	2006-09-17 01:10:54 UTC (rev 1603)
+++ izpack-src/branches/branch-3.9/src/dist-files/IzPack-install.xml	2006-09-19 05:05:29 UTC (rev 1604)
@@ -23,7 +23,7 @@
     <!-- The info section -->
     <info>
         <appname>IzPack</appname>
-        <appversion>3.9.0-M1 (build 2006.09.07)</appversion>
+        <appversion>3.9.0-RC1 (build 2006.09.19)</appversion>
         <authors>
             <author email="" name="Julien Ponge (maintainer and original developer)"/>
 
@@ -39,6 +39,7 @@
             <author email="" name="Scott Starks @JBoss/RedHat (contributors)" />
             <author email="" name="Alex Pinkin @JBoss/RedHat (contributors)" />
             <author email="" name="Dennis Reil (contributor)" />
+            <author email="" name="Thomas Edwin Santosa (contributor)" />
 
             <author email=""
                     name="... the many other developers and contributors to the previous releases (see Thanks.txt)"/>

Modified: izpack-src/branches/branch-3.9/src/lib/com/izforge/izpack/compiler/Compiler.java
===================================================================
--- izpack-src/branches/branch-3.9/src/lib/com/izforge/izpack/compiler/Compiler.java	2006-09-17 01:10:54 UTC (rev 1603)
+++ izpack-src/branches/branch-3.9/src/lib/com/izforge/izpack/compiler/Compiler.java	2006-09-19 05:05:29 UTC (rev 1604)
@@ -25,21 +25,6 @@
 
 package com.izforge.izpack.compiler;
 
-import java.io.File;
-import java.io.IOException;
-import java.net.MalformedURLException;
-import java.net.URL;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.HashMap;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-import java.util.Properties;
-import java.util.Set;
-import java.util.jar.JarInputStream;
-import java.util.zip.ZipEntry;
-
 import com.izforge.izpack.CustomData;
 import com.izforge.izpack.GUIPrefs;
 import com.izforge.izpack.Info;
@@ -47,6 +32,14 @@
 import com.izforge.izpack.util.Debug;
 import com.izforge.izpack.util.VariableSubstitutor;
 
+import java.io.File;
+import java.io.IOException;
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.*;
+import java.util.jar.JarInputStream;
+import java.util.zip.ZipEntry;
+
 /**
  * The IzPack compiler class. This is now a java bean style class that can be
  * configured using the object representations of the install.xml
@@ -62,7 +55,7 @@
 public class Compiler extends Thread
 {
     /** The IzPack version. */
-    public final static String IZPACK_VERSION = "3.8.1";
+    public final static String IZPACK_VERSION = "3.9.0";
 
     /** The IzPack home directory. */
     public static String IZPACK_HOME = ".";




More information about the izpack-changes mailing list