Ignore:
Timestamp:
Jan 29, 2013, 12:43:01 PM (12 years ago)
Author:
alloc
Message:

AEI2 0.99i:

  • Added (un)select all button
  • Fixed install in offline mode
  • Added entry in mod-table-context menu to delete local package
  • Added "added" column to mod table
File:
1 edited

Legend:

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

    r651 r657  
    6060                                return res;
    6161                        case 5:
     62                                if (mod.getNode() != null)
     63                                        return sdf.format(new Date(
     64                                                        mod.getNode().getCreated() * 1000));
     65                                else
     66                                        return null;
     67                        case 6:
    6268                                if (mod.getFile() != null)
    6369                                        return sdf.format(new Date(
     
    8389                                return bundle.getString("mod.state");
    8490                        case 5:
     91                                return bundle.getString("mod.added");
     92                        case 6:
    8593                                return bundle.getString("mod.date");
    8694                }
     
    95103        @Override
    96104        public int getColumnCount() {
    97                 return 6;
     105                return 7;
    98106        }
    99107
     
    112120                                return String.class;
    113121                        case 5:
     122                                return String.class;
     123                        case 6:
    114124                                return String.class;
    115125                }
     
    153163                                break;
    154164                        case 5:
    155                                 w = 115;
     165                                w = 100;
     166                                col.setPreferredWidth(w);
     167                                col.setMinWidth(w);
     168                                col.setMaxWidth(w);
     169                                break;
     170                        case 6:
     171                                w = 100;
    156172                                col.setPreferredWidth(w);
    157173                                col.setMinWidth(w);
Note: See TracChangeset for help on using the changeset viewer.