summarylogtreecommitdiffstats
path: root/disable_version_check.patch
blob: 1a7e032acce3949b9a7ffc761ea34dc3e3c31148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# disable version check. updates come via package management
Index: chatty-0.7.3/src/chatty/Version.java
===================================================================
--- chatty-0.7.3.orig/src/chatty/Version.java	2015-01-19 21:39:08.293772537 +0100
+++ chatty-0.7.3/src/chatty/Version.java	2015-01-19 21:39:08.285772538 +0100
@@ -32,8 +32,8 @@
     }
     
     private void checkForNewVersion() {
-        LOGGER.info("Checking for new version..");
-        new Thread(new VersionChecker()).start();
+        //LOGGER.info("Checking for new version..");
+        //new Thread(new VersionChecker()).start();
     }
     
     /**
Index: chatty-0.7.3/src/chatty/TwitchClient.java
===================================================================
--- chatty-0.7.3.orig/src/chatty/TwitchClient.java	2015-01-19 21:39:08.293772537 +0100
+++ chatty-0.7.3/src/chatty/TwitchClient.java	2015-01-19 21:39:08.289772538 +0100
@@ -282,7 +282,7 @@
         
         // Check version, if enabled in this build
         if (Chatty.VERSION_CHECK_ENABLED) {
-            checkNewVersion();
+            //checkNewVersion();
         }
 
         // Connect or open connect dialog
@@ -341,7 +341,7 @@
      */
     private void checkNewVersion() {
         //g.setUpdateAvailable();
-        if (!settings.getBoolean("checkNewVersion")) {
+        /*if (!settings.getBoolean("checkNewVersion")) {
             return;
         }
         long ago = System.currentTimeMillis() - settings.getLong("versionLastChecked");
@@ -367,7 +367,7 @@
                     g.printSystem("You already have the newest version.");
                 }
             }
-        });
+        });*/
     }
     
     /**
Index: chatty-0.7.3/src/chatty/Chatty.java
===================================================================
--- chatty-0.7.3.orig/src/chatty/Chatty.java	2015-01-19 21:39:08.293772537 +0100
+++ chatty-0.7.3/src/chatty/Chatty.java	2015-01-19 21:39:08.289772538 +0100
@@ -53,7 +53,7 @@
      * Enable Version Checker (if you compile and distribute this yourself, you
      * may want to disable this)
      */
-    public static final boolean VERSION_CHECK_ENABLED = true;
+    public static final boolean VERSION_CHECK_ENABLED = false;
     
     /**
      * The regular URL of the textfile where the most recent version is stored.