Changeset 615 for AE/installer2/src/net


Ignore:
Timestamp:
Jan 15, 2013, 1:49:04 AM (12 years ago)
Author:
alloc
Message:

AEI2:

  • Save Depot cache when exiting AEI instead of letting it initialize the edition
  • Close downloaded zip-files so they get deleted after unpacking
Location:
AE/installer2/src/net/oni2/aeinstaller
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/AEInstaller.properties

    r612 r615  
    11appname=AE Installer 2
    2 appversion=0.76
     2appversion=0.77
    33
    44invalidPath.title=Wrong directory
  • AE/installer2/src/net/oni2/aeinstaller/backend/unpack/Unpacker.java

    r605 r615  
    115115                                        return;
    116116                                case RUNNING:
     117                                        ZipFile zf = null;
    117118                                        try {
    118119                                                int pathStart = 0;
    119120                                                String pathStartName = "";
    120121
    121                                                 ZipFile zf = new ZipFile(zip);
     122                                                zf = new ZipFile(zip);
    122123                                                target.mkdirs();
    123124                                                for (Enumeration<? extends ZipEntry> e = zf.entries(); e
     
    166167                                                // TODO Auto-generated catch block
    167168                                                e.printStackTrace();
     169                                        } finally {
     170                                                try {
     171                                                        if (zf != null)
     172                                                                zf.close();
     173                                                } catch (IOException e) {
     174                                                        // TODO Auto-generated catch block
     175                                                        e.printStackTrace();
     176                                                }
    168177                                        }
    169178                                        break;
  • AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.java

    r612 r615  
    496496                                        JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
    497497                        if (res == JOptionPane.NO_OPTION) {
     498                                saveLocalData();
    498499                                exit();
    499500                        } else {
Note: See TracChangeset for help on using the changeset viewer.