2018-02-26 17:02:13 +00:00
|
|
|
diff -Naur FreeFileSync_9.8_Source_orig/FreeFileSync/Source/lib/dir_lock.cpp FreeFileSync_9.8_Source/FreeFileSync/Source/lib/dir_lock.cpp
|
|
|
|
--- FreeFileSync_9.8_Source_orig/FreeFileSync/Source/lib/dir_lock.cpp 2018-02-06 17:36:09.000000000 +0100
|
|
|
|
+++ FreeFileSync_9.8_Source/FreeFileSync/Source/lib/dir_lock.cpp 2018-02-25 10:32:21.437527408 +0100
|
|
|
|
@@ -22,6 +22,8 @@
|
|
|
|
#include <signal.h> //kill()
|
|
|
|
#include <pwd.h> //getpwuid_r()
|
2017-04-23 14:24:32 +00:00
|
|
|
|
2018-02-26 17:02:13 +00:00
|
|
|
+#include <zen/warn_static.h>
|
|
|
|
+
|
|
|
|
using namespace zen;
|
|
|
|
using namespace fff;
|
2017-04-23 14:24:32 +00:00
|
|
|
|
2018-02-26 17:02:13 +00:00
|
|
|
diff -Naur FreeFileSync_9.8_Source_orig/FreeFileSync/Source/ui/main_dlg.cpp FreeFileSync_9.8_Source/FreeFileSync/Source/ui/main_dlg.cpp
|
|
|
|
--- FreeFileSync_9.8_Source_orig/FreeFileSync/Source/ui/main_dlg.cpp 2018-02-06 17:36:08.000000000 +0100
|
|
|
|
+++ FreeFileSync_9.8_Source/FreeFileSync/Source/ui/main_dlg.cpp 2018-02-25 10:31:52.414217565 +0100
|
|
|
|
@@ -4821,13 +4821,13 @@
|
2017-04-23 14:24:32 +00:00
|
|
|
|
2017-07-17 20:53:04 +00:00
|
|
|
m_menuItemCheckVersionAuto->Check(updateCheckActive(globalCfg_.gui.lastUpdateCheck));
|
2017-04-23 14:24:32 +00:00
|
|
|
|
2018-02-26 17:02:13 +00:00
|
|
|
- if (shouldRunAutomaticUpdateCheck(globalCfg_.gui.lastUpdateCheck))
|
|
|
|
+ /* if (shouldRunAutomaticUpdateCheck(globalCfg_.gui.lastUpdateCheck))
|
2017-04-23 14:24:32 +00:00
|
|
|
{
|
|
|
|
flashStatusInformation(_("Searching for program updates..."));
|
|
|
|
//synchronous update check is sufficient here:
|
2018-02-26 17:02:13 +00:00
|
|
|
automaticUpdateCheckEval(this, globalCfg_.gui.lastUpdateCheck, globalCfg_.gui.lastOnlineVersion,
|
|
|
|
automaticUpdateCheckRunAsync(automaticUpdateCheckPrepare().get()).get());
|
2017-04-23 14:24:32 +00:00
|
|
|
- }
|
2018-02-26 17:02:13 +00:00
|
|
|
+ } */
|
2017-04-23 14:24:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-26 17:02:13 +00:00
|
|
|
@@ -4836,7 +4836,7 @@
|
2017-04-23 14:24:32 +00:00
|
|
|
//execute just once per startup!
|
|
|
|
Disconnect(wxEVT_IDLE, wxIdleEventHandler(MainDialog::OnRegularUpdateCheck), nullptr, this);
|
|
|
|
|
2018-02-26 17:02:13 +00:00
|
|
|
- if (shouldRunAutomaticUpdateCheck(globalCfg_.gui.lastUpdateCheck))
|
|
|
|
+ /* if (shouldRunAutomaticUpdateCheck(globalCfg_.gui.lastUpdateCheck))
|
2017-04-23 14:24:32 +00:00
|
|
|
{
|
|
|
|
flashStatusInformation(_("Searching for program updates..."));
|
|
|
|
|
2018-02-26 17:02:13 +00:00
|
|
|
@@ -4848,7 +4848,7 @@
|
|
|
|
automaticUpdateCheckEval(this, globalCfg_.gui.lastUpdateCheck, globalCfg_.gui.lastOnlineVersion,
|
|
|
|
resultAsync.get()); //run on main thread:
|
2017-04-23 14:24:32 +00:00
|
|
|
});
|
|
|
|
- }
|
2018-02-26 17:02:13 +00:00
|
|
|
+ } */
|
2017-04-23 14:24:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|