Only in jbidwatcher-0.9.8: classes Only in jbidwatcher-0.9.8-old: display.cfg diff -rup jbidwatcher-0.9.8-old/FilterManager.java jbidwatcher-0.9.8/FilterManager.java --- jbidwatcher-0.9.8-old/FilterManager.java 2005-06-04 12:18:23.000000000 +0200 +++ jbidwatcher-0.9.8/FilterManager.java 2005-08-08 16:57:56.000000000 +0200 @@ -298,7 +298,8 @@ public class FilterManager implements Me if(ae.isSeller()) { return findSellerList(); } - if(ae.isEnded()) { + if(JConfig.queryConfiguration("move_completed", "true").equals("true") + && ae.isEnded()) { return findCompletedList(); } } Only in jbidwatcher-0.9.8: JBidWatcher-0.9.8.jar diff -rup jbidwatcher-0.9.8-old/JConfigGeneralTab.java jbidwatcher-0.9.8/JConfigGeneralTab.java --- jbidwatcher-0.9.8-old/JConfigGeneralTab.java 2005-08-01 21:29:17.000000000 +0200 +++ jbidwatcher-0.9.8/JConfigGeneralTab.java 2005-08-08 17:17:45.000000000 +0200 @@ -44,6 +44,7 @@ public class JConfigGeneralTab extends J private JCheckBox allowConfigUpdateBox; private JCheckBox allowArchival; + private JCheckBox moveCompletedBox; private JCheckBox limitsBox; private JCheckBox macMetalBox; @@ -93,6 +94,7 @@ public class JConfigGeneralTab extends J JConfig.setConfiguration("ebay.affiliate", affiliateBox.isSelected() ? "true" : "false"); JConfig.setConfiguration("deleted.ignore", ignoreDeletedBox.isSelected() ? "true" : "false"); + JConfig.setConfiguration("move_completed", moveCompletedBox.isSelected() ? "true" : "false"); JConfig.setConfiguration("limits.enabled", limitsBox.isSelected() ? "true" : "false"); if (limitsBox.isSelected()) { JConfig.setConfiguration("limits.amount", spendLimit.getText()); @@ -145,6 +147,7 @@ public class JConfigGeneralTab extends J String doIgnoreDeleted = JConfig.queryConfiguration("deleted.ignore", "true"); String doAllowConfigUpdates = JConfig.queryConfiguration("updates.allowConfig", "true"); String doSpendingLimits = JConfig.queryConfiguration("limits.enabled", "false"); + String doMoveCompleted = JConfig.queryConfiguration("move_completed", "true"); String doMacMetal = JConfig.queryConfiguration("mac.useMetal", "true"); String doWinTray = JConfig.queryConfiguration("windows.tray", "true"); String doArchival = JConfig.queryConfiguration("store.auctionHTML", "true"); @@ -163,6 +166,7 @@ public class JConfigGeneralTab extends J macMetalBox.setSelected(doMacMetal.equals("true")); } + moveCompletedBox.setSelected(doMoveCompleted.equals("true")); if(limitsBox != null) { limitsBox.setSelected(doSpendingLimits.equals("true")); } @@ -217,7 +221,11 @@ public class JConfigGeneralTab extends J JPanel tp = new JPanel(); tp.setBorder(BorderFactory.createTitledBorder("General Options")); - tp.setLayout(new GridLayout(4, 2)); + if(Platform.isMac() || Platform.isWindows()) { + tp.setLayout(new GridLayout(5, 2)); + } else { + tp.setLayout(new GridLayout(4, 2)); + } doVersionUpdateCheckBox = new JCheckBox("Regularly check for new versions"); // TODO -- doVersionUpdateCheckBox.setToolTipText("...TODO...explanation?..."); @@ -250,6 +258,10 @@ public class JConfigGeneralTab extends J allowArchival.setToolTipText("JBidwatcher will save auctions in compressed format, readable even after eBay has removed the item."); tp.add(allowArchival); + moveCompletedBox = new JCheckBox("Move Completed Auctions."); + moveCompletedBox.setToolTipText("move completed auctions to \"complete\" tab."); + tp.add(moveCompletedBox); + if(Platform.isMac()) { macMetalBox = new JCheckBox("Use Brushed Metal UI"); macMetalBox.setToolTipText("Turn on / off brushed metal look under MacOSX.");