Ignore:
Timestamp:
May 8, 2013, 12:25:39 PM (12 years ago)
Author:
alloc
Message:

AEI2.11:

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

Legend:

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

    r856 r860  
    3939
    4040        private JCheckBox chkNotifyOnStart;
     41        private JCheckBox chkNotifyNewPackagesOnStart;
    4142        private JCheckBox chkNotifyDepsAfterInstall;
    4243        private JCheckBox chkCopyIntro;
     
    8182
    8283                chkNotifyOnStart.setSelected(set.get("notifyupdates", true));
     84                chkNotifyNewPackagesOnStart.setSelected(set.get("notifynewpackages",
     85                                true));
    8386                chkNotifyDepsAfterInstall.setSelected(set.get("notifyDepsAfterInstall",
    8487                                false));
     
    137140
    138141                set.put("notifyupdates", chkNotifyOnStart.isSelected());
     142                set.put("notifynewpackages", chkNotifyNewPackagesOnStart.isSelected());
    139143                set.put("notifyDepsAfterInstall",
    140144                                chkNotifyDepsAfterInstall.isSelected());
  • java/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.yml

    r856 r860  
    1212    - JPanel(name=panCommon, groupTitle=panCommon):
    1313      - JCheckBox(name=chkNotifyOnStart, horizontalTextPosition=LEADING, text=lblNotifyOnStart)
     14      - JCheckBox(name=chkNotifyNewPackagesOnStart, horizontalTextPosition=LEADING, text=lblNotifyNewPackagesOnStart)
    1415      - JCheckBox(name=chkNotifyDepsAfterInstall, horizontalTextPosition=LEADING, text=lblNotifyDepsAfterInstall, toolTipText=lblNotifyDepsAfterInstall.tooltip)
    1516      - JCheckBox(name=chkCopyIntro, horizontalTextPosition=LEADING, text=lblCopyIntro)
     
    1718      - MigLayout: |
    1819           [grow]
    19            >chkNotifyOnStart           [pref]
    20            >chkNotifyDepsAfterInstall  [pref]
    21            >chkCopyIntro               [pref]
    22            >chkCopyOutro               [pref]
     20           >chkNotifyOnStart             [pref]
     21           >chkNotifyNewPackagesOnStart  [pref]
     22           >chkNotifyDepsAfterInstall    [pref]
     23           >chkCopyIntro                 [pref]
     24           >chkCopyOutro                 [pref]
    2325    - JPanel(name=panProxy, groupTitle=panProxy):
    2426      - JLabel(name=empty)
Note: See TracChangeset for help on using the changeset viewer.