chiark / gitweb /
disable pctb uploads for now as they are broken
[jarrg-ian.git] / src / com / tedpearson / ypp / market / ControlPanel.java
index dba9c7d6cdb2ac769cd9e03de91cdc82955cb499..57ed140fe967bdc4ea48819c43c092e376c1b06d 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) {
@@ -31,11 +31,11 @@ public class ControlPanel extends JFrame {
                liveortest.add(testing);
 
                String version_label = " version: " +
-                   com.tedpearson.ypp.market.Version.version + " ";
+                   com.tedpearson.ypp.market.Version.version;
                JLabel version = new JLabel(version_label);
 
                setLayout(new GridLayout(6,1));
-               add(toPCTB);
+               //add(toPCTB);
                add(toYarrg);
                add(live);
                add(testing);
@@ -47,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());