Ignore:
Timestamp:
May 3, 2013, 11:52:50 PM (12 years ago)
Author:
alloc
Message:

AEI2.10:

  • Switched caching from Raw Depot cache to AEI packages cache (more compact, faster startup)
Location:
java/installer2/src/net/oni2/aeinstaller/gui/modtable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • java/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTable.java

    r840 r857  
    338338                                        }
    339339
    340                                         if (mod.getFile() != null) {
     340                                        if (!mod.isLocalOnly()) {
    341341                                                // Download package
    342342                                                JMenuItem downloadPackage = new JMenuItem(
     
    370370                                                        @Override
    371371                                                        public void actionPerformed(ActionEvent arg0) {
    372                                                                 if (mod.getNode() == null) {
     372                                                                if (mod.isLocalOnly()) {
    373373                                                                        JOptionPane.showMessageDialog(
    374374                                                                                        null,
  • java/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.java

    r840 r857  
    6868                                return res;
    6969                        case 5:
    70                                 if (mod.getNode() != null)
    71                                         return sdf.format(new Date(
    72                                                         mod.getNode().getCreated() * 1000));
     70                                if (mod.getCreatedMillis() > 0)
     71                                        return sdf.format(new Date(mod.getCreatedMillis() * 1000));
    7372                                else
    7473                                        return null;
    7574                        case 6:
    76                                 if (mod.getFile() != null)
    77                                         return sdf.format(new Date(
    78                                                         mod.getFile().getTimestamp() * 1000));
     75                                if (mod.getUpdatedMillis() > 0)
     76                                        return sdf.format(new Date(mod.getUpdatedMillis() * 1000));
    7977                                else
    8078                                        return null;
Note: See TracChangeset for help on using the changeset viewer.