Ignore:
Timestamp:
Jan 20, 2013, 3:01:47 PM (12 years ago)
Author:
alloc
Message:

AEI2 0.95:

  • Made download-window non-abortable as soon as last file was downloaded (but not yet unpacked)
  • Fixed table to work with local-only packages again (regression introduced when adding last-change column)
  • Added mod version number to contents pane
File:
1 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/gui/downloadwindow/Downloader.java

    r629 r638  
    44import java.util.TreeSet;
    55
     6import javax.swing.JButton;
    67import javax.swing.JDialog;
    78import javax.swing.JLabel;
     
    3637        private JLabel lblRateVal;
    3738        private JProgressBar progress;
     39       
     40        private JButton btnAbort;
    3841
    3942        private ModDownloader downloader;
     
    8790                        close();
    8891                } else {
     92                        if (state == State.LAST_FILE_DOWNLOADED)
     93                                btnAbort.setEnabled(false);
     94                       
    8995                        progress.setValue(bytesDown);
    9096                        progress.setToolTipText(String.format("%d / %d files downloaded",
Note: See TracChangeset for help on using the changeset viewer.