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/modtable/ModTableModel.java

    r637 r638  
    5959                        case 5:
    6060                                SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    61                                 return sdf
    62                                                 .format(new Date(mod.getFile().getTimestamp() * 1000));
     61                                if (mod.getFile() != null)
     62                                        return sdf.format(new Date(
     63                                                        mod.getFile().getTimestamp() * 1000));
     64                                else
     65                                        return null;
    6366                }
    6467                return null;
Note: See TracChangeset for help on using the changeset viewer.