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

AEI2 0.99c:

  • Download window: Show which file is currently being downloaded and if it is an automaticly resolved dependency
  • Added mandatory packages dialog
  • Added option to show automatic resolved dependencies after installation is done instead of interrupting installation process to ask whether to continue
  • ToolManager: version number + last change added
  • Correct output of download-size in mainwin after installation of mods done
Location:
AE/installer2/src/net/oni2/aeinstaller/gui/settings
Files:
2 edited

Legend:

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

    r641 r646  
    3535
    3636        private JCheckBox chkNotifyOnStart;
     37        private JCheckBox chkNotifyDepsAfterInstall;
    3738        private JCheckBox chkCopyIntro;
    3839        private JCheckBox chkCopyOutro;
     
    7172
    7273                chkNotifyOnStart.setSelected(set.get("notifyupdates", true));
     74                chkNotifyDepsAfterInstall.setSelected(set.get("notifyDepsAfterInstall", false));
    7375                chkCopyIntro.setSelected(set.get("copyintro", false));
    7476                chkCopyOutro.setSelected(set.get("copyoutro", true));
     
    8082
    8183                set.put("notifyupdates", chkNotifyOnStart.isSelected());
     84                set.put("notifyDepsAfterInstall", chkNotifyDepsAfterInstall.isSelected());
    8285                set.put("copyintro", chkCopyIntro.isSelected());
    8386                set.put("copyoutro", chkCopyOutro.isSelected());
  • AE/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.yml

    r625 r646  
    1313      - JLabel(name=lblNotifyOnStart, text=lblNotifyOnStart)
    1414      - JCheckBox(name=chkNotifyOnStart)
     15      - JLabel(name=lblNotifyDepsAfterInstall, text=lblNotifyDepsAfterInstall, toolTipText=lblNotifyDepsAfterInstall.tooltip)
     16      - JCheckBox(name=chkNotifyDepsAfterInstall, toolTipText=lblNotifyDepsAfterInstall.tooltip)
    1517      - JLabel(name=lblCopyIntro, text=lblCopyIntro)
    1618      - JCheckBox(name=chkCopyIntro)
     
    1820      - JCheckBox(name=chkCopyOutro)
    1921      - MigLayout: |
    20            [min]                [grow]
    21            >lblNotifyOnStart    chkNotifyOnStart         [pref]
    22            >lblCopyIntro        chkCopyIntro             [pref]
    23            >lblCopyOutro        chkCopyOutro             [pref]
     22           [min]                       [grow]
     23           >lblNotifyOnStart           chkNotifyOnStart           [pref]
     24           >lblNotifyDepsAfterInstall  chkNotifyDepsAfterInstall  [pref]
     25           >lblCopyIntro               chkCopyIntro               [pref]
     26           >lblCopyOutro               chkCopyOutro               [pref]
    2427    - JPanel(name=panUI, groupTitle=panUI):
    2528      - JLabel(name=lblLaF, text=lblLaF)
Note: See TracChangeset for help on using the changeset viewer.