chiark / gitweb /
get rid of code for obsolete "launchAtStartup" pref
[jarrg-ian.git] / src / com / tedpearson / ypp / market / ControlPanel.java
index 1a78b2d67307a113e7fab4498a789e2313d58bdd..ccdc7c6730cf410e001d02144b3c436a23274bda 100644 (file)
@@ -7,7 +7,7 @@ import java.util.prefs.*;
 
 /**
 *      ControlPanel is a simple management utility that sets
-*      a preference for whether the PCTB client is to launch or not.
+*      a preference for which server(s) to upload to.
 */
 public class ControlPanel extends JFrame {
        public static void main(String[] args) {
@@ -30,11 +30,16 @@ public class ControlPanel extends JFrame {
                liveortest.add(live);
                liveortest.add(testing);
 
+               String version_label = " version: " +
+                   com.tedpearson.ypp.market.Version.version;
+               JLabel version = new JLabel(version_label);
+
                setLayout(new GridLayout(6,1));
                add(toPCTB);
                add(toYarrg);
                add(live);
                add(testing);
+               add(version);
 
                final int exitstatus = Integer.parseInt(System.getProperty("com.tedpearson.ypp.market.controlpanel.exitstatus", "0"));
 
@@ -42,7 +47,6 @@ public class ControlPanel extends JFrame {
                add(but);
                but.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
-                               prefs.putBoolean("launchAtStartup", true);
                                prefs.putBoolean("uploadToPCTB", toPCTB.isSelected());
                                prefs.putBoolean("uploadToYarrg", toYarrg.isSelected());
                                prefs.putBoolean("useLiveServers", live.isSelected());