Ignore:
Timestamp:
Jan 10, 2013, 5:25:51 PM (12 years ago)
Author:
alloc
Message:

AEI2

Location:
AE/installer2/src/net/oni2/aeinstaller/gui
Files:
2 edited

Legend:

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

    r602 r603  
    7171        private JLabel lblSubmitterVal;
    7272        private JLabel lblCreatorVal;
    73         private JLabel lblFilesVal;
    7473        private HTMLLinkLabel lblDescriptionVal;
    7574
     
    191190
    192191                        tblMods.setVisible(true);
    193                         DepotManager.getInstance().printStats();
    194192                } catch (Exception e) {
    195193                        e.printStackTrace();
     
    266264        @DoInBackground(progressMessage = "mandatoryFiles.title", cancelable = false, indeterminateProgress = false)
    267265        private void checkMandatoryFiles(final BackgroundEvent evt) {
    268                 System.out.println("Tools:");
    269                 for (Mod m : ModManager.getInstance().getTools()) {
    270                         System.out.format("  %05d %s", m.getPackageNumber(), m.getName());
     266                //TODO
     267                System.out.println("Mandatory Tools:");
     268                for (Mod m : ModManager.getInstance().getMandatoryTools()) {
     269                        System.out.format("  %05d %15s - Local: %b - Update: %b", m.getPackageNumber(), m.getName(), m.isLocalAvailable(), m.isNewerAvailable());
    271270                }
    272271                System.out.println();
    273272               
    274                 System.out.println("Mandatory tools:");
    275                 for (Mod m : ModManager.getInstance().getMandatoryTools()) {
    276                         System.out.format("  %05d %s", m.getPackageNumber(), m.getName());
     273                System.out.println("Mandatory Mods:");
     274                for (Mod m : ModManager.getInstance().getMandatoryMods()) {
     275                        System.out.format("  %05d %15s - Local: %b - Update: %b", m.getPackageNumber(), m.getName(), m.isLocalAvailable(), m.isNewerAvailable());
    277276                }
    278277        }
     
    305304                lblSubmitterVal.setText("");
    306305                lblCreatorVal.setText("");
    307                 lblFilesVal.setText("");
    308306                lblDescriptionVal.setText("");
    309307                if (m != null) {
    310308                        lblSubmitterVal.setText(m.getName());
    311309                        lblCreatorVal.setText(m.getCreator());
    312                         if (m.getNode() != null) {
    313                                 lblFilesVal.setText(Integer.toString(m.getNode().getUploads()
    314                                                 .size()));
    315                         }
    316310                        lblDescriptionVal.setText(m.getDescription());
    317311                }
  • AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.yml

    r602 r603  
    5555            - JLabel(name=lblCreator, text=lblCreator.text)
    5656            - JLabel(name=lblCreatorVal)
    57             - JLabel(name=lblFiles, text=lblFiles.text)
    58             - JLabel(name=lblFilesVal)
    5957            - JLabel(name=lblDescription, text=lblDescription.text)
    6058            - JScrollPane(name=scrollDescription, vScrollBar=always, hScrollBar=asNeeded):
     
    6462                 >lblSubmitter     lblSubmitterVal    [min]
    6563                 >lblCreator       lblCreatorVal      [min]
    66                  >lblFiles         lblFilesVal        [min]
    6764                 >^lblDescription  scrollDescription  [grow]
    6865    - MigLayout:
Note: See TracChangeset for help on using the changeset viewer.