summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_no_check_updates.patch
blob: 4e56d1912ac8662f296528d2bec608805271f8c3 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
diff --exclude '*.orig' -Naur 10.14-0/FreeFileSync/Source/ui/main_dlg.cpp 10.14-1/FreeFileSync/Source/ui/main_dlg.cpp
--- 10.9-0/FreeFileSync/Source/ui/main_dlg.cpp	2019-02-10 22:01:42.029158919 -0500
+++ 10.14-1/FreeFileSync/Source/ui/main_dlg.cpp	2019-07-16 10:56:40.213575535 -0400
@@ -5298,7 +5298,7 @@
         globalCfg_.gui.lastUpdateCheck = 0; //reset to GlobalSettings.xml default value!
 
     m_menuItemCheckVersionAuto->Check(updateCheckActive(globalCfg_.gui.lastUpdateCheck));
-
+    /*
     if (shouldRunAutomaticUpdateCheck(globalCfg_.gui.lastUpdateCheck))
     {
         flashStatusInformation(_("Searching for program updates..."));
@@ -5306,6 +5306,7 @@
         automaticUpdateCheckEval(this, globalCfg_.gui.lastUpdateCheck, globalCfg_.gui.lastOnlineVersion,
                                  automaticUpdateCheckRunAsync(automaticUpdateCheckPrepare().get()).get());
     }
+    */
 }
 
 
@@ -5313,7 +5314,7 @@
 {
     //execute just once per startup!
     Disconnect(wxEVT_IDLE, wxIdleEventHandler(MainDialog::OnRegularUpdateCheck), nullptr, this);
-
+    /*
     if (shouldRunAutomaticUpdateCheck(globalCfg_.gui.lastUpdateCheck))
     {
         flashStatusInformation(_("Searching for program updates..."));
@@ -5327,6 +5328,7 @@
                                      resultAsync.get()); //run on main thread:
         });
     }
+    */
 }
 
 
diff --exclude '*.orig' -Naur 10.14-0/FreeFileSync/Source/ui/version_check.cpp 10.14-1/FreeFileSync/Source/ui/version_check.cpp
--- 10.9-0/FreeFileSync/Source/ui/version_check.cpp	2019-02-10 22:01:42.126160041 -0500
+++ 10.14-1/FreeFileSync/Source/ui/version_check.cpp	2019-07-16 11:45:36.113848111 -0400
@@ -69,6 +69,8 @@
 
 bool fff::shouldRunAutomaticUpdateCheck(time_t lastUpdateCheck)
 {
+    // short-circuit
+    return false;
     if (lastUpdateCheck == getVersionCheckInactiveId())
         return false;
 
@@ -156,8 +158,7 @@
     {
         try
         {
-            const std::string buf = sendHttpGet(utfTo<Zstring>("https://api.freefilesync.org/latest_changes?" + xWwwFormUrlEncode({ { "since", ffsVersion } })),
-            ffsUpdateCheckUserAgent, nullptr /*caCertFilePath*/, nullptr /*notifyUnbufferedIO*/).readAll(); //throw SysError
+            const std::string buf = "";
             updateDetailsMsg = utfTo<std::wstring>(buf);
         }
         catch (const zen::SysError& e) { throw FileError(_("Failed to retrieve update information."), e.toString()); }
@@ -187,8 +188,7 @@
 //access is thread-safe on Windows (WinInet), but not on Linux/OS X (wxWidgets)
 std::string getOnlineVersion(const std::vector<std::pair<std::string, std::string>>& postParams) //throw SysError
 {
-    const std::string buffer = sendHttpPost(Zstr("https://api.freefilesync.org/latest_version"), postParams,
-                                            ffsUpdateCheckUserAgent, nullptr /*caCertFilePath*/, nullptr /*notifyUnbufferedIO*/).readAll(); //throw SysError
+    const std::string buffer = "";
     return trimCpy(buffer);
 }
 
@@ -235,13 +235,13 @@
         const std::string onlineVersion = getOnlineVersion(geHttpPostParameters()); //throw SysError
         lastOnlineVersion = onlineVersion;
 
-        if (haveNewerVersionOnline(onlineVersion))
-            showUpdateAvailableDialog(parent, onlineVersion);
-        else
+        //if (haveNewerVersionOnline(onlineVersion))
+        //    showUpdateAvailableDialog(parent, onlineVersion);
+        //else
             showNotificationDialog(parent, DialogInfoType::info, PopupDialogCfg().
                                    setIcon(getResourceImage(L"update_check")).
                                    setTitle(_("Check for Program Updates")).
-                                   setMainInstructions(_("FreeFileSync is up to date.")));
+                                   setMainInstructions(_("Use your package manager for any updates to FreeFileSync.")));
     }
     catch (const zen::SysError& e)
     {
bgstack15