From: Ian Jackson Date: Sun, 22 Aug 2010 22:00:32 +0000 (+0100) Subject: installer no longer phones home (!) X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=jarrg-owen.git;a=commitdiff_plain;h=3a7cd290935c44dad8c18ade31b777db2c6e9f19;ds=sidebyside installer no longer phones home (!) --- diff --git a/src/com/tedpearson/ypp/market/Installer.java b/src/com/tedpearson/ypp/market/Installer.java index a7621b8..2662fe9 100644 --- a/src/com/tedpearson/ypp/market/Installer.java +++ b/src/com/tedpearson/ypp/market/Installer.java @@ -18,7 +18,6 @@ import java.net.URLDecoder; * An Installer for PCTB Java Client. */ public class Installer extends JFrame { - public final static int VERSION = 8; private JLabel label; private JProgressBar progress; private JButton install, uninstall; @@ -137,10 +136,6 @@ public class Installer extends JFrame { public Installer(String[] args) { super("PCTB Installer"); - Updater.getUpdater().checkAndUpdate(null, "http://tedpearson.com/market/version", - "the PCTB Uploader client", VERSION, true, - getClass().getProtectionDomain().getCodeSource().getLocation().getPath()); - // gui: simple window with status area and progress bar checkPermission(args); label = new JLabel("Ready to install!"); @@ -342,4 +337,4 @@ public class Installer extends JFrame { uninstalled = false; } } -} \ No newline at end of file +}