Ignore:
Timestamp:
Feb 23, 2013, 6:40:47 PM (12 years ago)
Author:
alloc
Message:

AEI2 0.99q:

  • Updates dialog: Updating the to-download-size on (un)checking updates to download
  • Updates dialog: Show download size of individual updates
  • Tool execution: Support for .NET tools (Mod_Info.cfg added ExeType flag)
  • Depot backend: Ignore mod nodes with an empty package number field
File:
1 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotManager.java

    r662 r672  
    275275                                NodeMod nm = (NodeMod) n;
    276276                                if (nm.getInstallMethod().getName()
    277                                                 .equalsIgnoreCase(instMethName))
    278                                         result.add(nm);
     277                                                .equalsIgnoreCase(instMethName)) {
     278                                        try {
     279                                                nm.getPackageNumber();
     280                                                result.add(nm);
     281                                        } catch (NumberFormatException e) {
     282                                                System.err.println("Node " + nm.getNid() + " does not have a package number!!!");
     283                                        }
     284                                }
    279285                        }
    280286                }
Note: See TracChangeset for help on using the changeset viewer.