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
|
From: Ole Streicher <olebole@debian.org>
Date: Thu, 3 Nov 2016 17:55:31 +0100
Subject: Don't call home for logging
By default, Aladin loggs back every start, which can be disabled in
the configuration. For a better privacy, we reverse this
behaviour. Aladin will now ask at the first start whether logging
shall be enabled or not.
Note however, that Aladin is an online tool and automatically connects to
GLU server to retrieve the list of available data sources. This is intended
behaviour of the program, which would otherwise not function as expected.
---
cds/aladin/Default.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cds/aladin/Default.java b/cds/aladin/Default.java
index 72a9f46..4a0426e 100644
--- a/cds/aladin/Default.java
+++ b/cds/aladin/Default.java
@@ -41,5 +41,5 @@ public class Default {
// If yes, Aladin will check if a new official version of Aladin is available on the CDS site.
// If it is the case, a popup window will suggest to install the new version
// by opening the CDS downloading page in the browser
- public static boolean VERSIONTEST = true;
+ public static boolean VERSIONTEST = false;
}
|