Ignore:
Timestamp:
May 20, 2013, 1:24:58 PM (12 years ago)
Author:
alloc
Message:

AEI2.14:

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

    r872 r873  
    4141        private JCheckBox chkNotifyNewPackagesOnStart;
    4242        private JCheckBox chkNotifyDepsAfterInstall;
     43        private JCheckBox chkShowTipsAtStart;
    4344        private JCheckBox chkCopyIntro;
    4445        private JCheckBox chkCopyOutro;
     
    8687                chkNotifyDepsAfterInstall.setSelected(set.get("notifyDepsAfterInstall",
    8788                                false));
     89                chkShowTipsAtStart.setSelected(set.get("showTips", true));
    8890                chkCopyIntro.setSelected(set.get("copyintro", false));
    8991                chkCopyOutro.setSelected(set.get("copyoutro", true));
     
    145147                set.put("notifyDepsAfterInstall",
    146148                                chkNotifyDepsAfterInstall.isSelected());
     149                set.put("showTips", chkShowTipsAtStart.isSelected());
    147150                set.put("copyintro", chkCopyIntro.isSelected());
    148151                set.put("copyoutro", chkCopyOutro.isSelected());
  • java/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.yml

    r860 r873  
    1414      - JCheckBox(name=chkNotifyNewPackagesOnStart, horizontalTextPosition=LEADING, text=lblNotifyNewPackagesOnStart)
    1515      - JCheckBox(name=chkNotifyDepsAfterInstall, horizontalTextPosition=LEADING, text=lblNotifyDepsAfterInstall, toolTipText=lblNotifyDepsAfterInstall.tooltip)
     16      - JCheckBox(name=chkShowTipsAtStart, horizontalTextPosition=LEADING, text=lblShowTipsAtStart)
    1617      - JCheckBox(name=chkCopyIntro, horizontalTextPosition=LEADING, text=lblCopyIntro)
    1718      - JCheckBox(name=chkCopyOutro, horizontalTextPosition=LEADING, text=lblCopyOutro)
     
    2122           >chkNotifyNewPackagesOnStart  [pref]
    2223           >chkNotifyDepsAfterInstall    [pref]
     24           >chkShowTipsAtStart           [pref]
    2325           >chkCopyIntro                 [pref]
    2426           >chkCopyOutro                 [pref]
Note: See TracChangeset for help on using the changeset viewer.