2017-06-08 11:25:13 +00:00
|
|
|
Index: FreeFileSync-9.1/FreeFileSync/Source/fs/abstract.h
|
|
|
|
===================================================================
|
|
|
|
--- FreeFileSync-9.1.orig/FreeFileSync/Source/fs/abstract.h
|
|
|
|
+++ FreeFileSync-9.1/FreeFileSync/Source/fs/abstract.h
|
2017-04-23 14:24:32 +00:00
|
|
|
@@ -12,6 +12,7 @@
|
|
|
|
#include <zen/zstring.h>
|
|
|
|
#include <zen/optional.h>
|
|
|
|
#include <zen/serialize.h> //InputStream/OutputStream support buffered stream concept
|
|
|
|
+#include <zen/warn_static.h>
|
|
|
|
#include "../lib/icon_holder.h"
|
|
|
|
|
|
|
|
|
2017-06-08 11:25:13 +00:00
|
|
|
Index: FreeFileSync-9.1/FreeFileSync/Source/Makefile
|
|
|
|
===================================================================
|
|
|
|
--- FreeFileSync-9.1.orig/FreeFileSync/Source/Makefile
|
|
|
|
+++ FreeFileSync-9.1/FreeFileSync/Source/Makefile
|
|
|
|
@@ -121,5 +121,5 @@ install:
|
2017-04-23 14:24:32 +00:00
|
|
|
$(APPSHAREDIR)
|
|
|
|
|
|
|
|
mkdir -p $(DOCSHAREDIR)
|
|
|
|
- cp ../Build/Changelog.txt $(DOCSHAREDIR)/changelog
|
|
|
|
+ cp ../../Changelog.txt $(DOCSHAREDIR)/changelog
|
|
|
|
gzip $(DOCSHAREDIR)/changelog
|
2017-06-08 11:25:13 +00:00
|
|
|
Index: FreeFileSync-9.1/FreeFileSync/Source/ui/main_dlg.cpp
|
|
|
|
===================================================================
|
|
|
|
--- FreeFileSync-9.1.orig/FreeFileSync/Source/ui/main_dlg.cpp
|
|
|
|
+++ FreeFileSync-9.1/FreeFileSync/Source/ui/main_dlg.cpp
|
|
|
|
@@ -956,7 +956,7 @@ xmlAccess::XmlGlobalSettings MainDialog:
|
2017-04-23 14:24:32 +00:00
|
|
|
history.resize(globalSettings.gui.cfgFileHistMax);
|
|
|
|
|
|
|
|
globalSettings.gui.cfgFileHistory = history;
|
|
|
|
- globalSettings.gui.cfgFileHistFirstItemPos = m_listBoxHistory->GetTopItem();
|
|
|
|
+ // globalSettings.gui.cfgFileHistFirstItemPos = m_listBoxHistory->GetTopItem();
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
globalSettings.gui.lastUsedConfigFiles.clear();
|
|
|
|
for (const Zstring& cfgFilePath : activeConfigFiles)
|
2017-06-08 11:25:13 +00:00
|
|
|
@@ -4767,13 +4767,13 @@ void MainDialog::OnMenuCheckVersionAutom
|
2017-04-23 14:24:32 +00:00
|
|
|
|
|
|
|
m_menuItemCheckVersionAuto->Check(updateCheckActive(globalCfg.gui.lastUpdateCheck));
|
|
|
|
|
|
|
|
- if (shouldRunPeriodicUpdateCheck(globalCfg.gui.lastUpdateCheck))
|
|
|
|
+ /*if (shouldRunPeriodicUpdateCheck(globalCfg.gui.lastUpdateCheck))
|
|
|
|
{
|
|
|
|
flashStatusInformation(_("Searching for program updates..."));
|
|
|
|
//synchronous update check is sufficient here:
|
|
|
|
periodicUpdateCheckEval(this, globalCfg.gui.lastUpdateCheck, globalCfg.gui.lastOnlineVersion,
|
|
|
|
periodicUpdateCheckRunAsync(periodicUpdateCheckPrepare().get()).get());
|
|
|
|
- }
|
|
|
|
+ }*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-08 11:25:13 +00:00
|
|
|
@@ -4782,7 +4782,7 @@ void MainDialog::OnRegularUpdateCheck(wx
|
2017-04-23 14:24:32 +00:00
|
|
|
//execute just once per startup!
|
|
|
|
Disconnect(wxEVT_IDLE, wxIdleEventHandler(MainDialog::OnRegularUpdateCheck), nullptr, this);
|
|
|
|
|
|
|
|
- if (shouldRunPeriodicUpdateCheck(globalCfg.gui.lastUpdateCheck))
|
|
|
|
+ /*if (shouldRunPeriodicUpdateCheck(globalCfg.gui.lastUpdateCheck))
|
|
|
|
{
|
|
|
|
flashStatusInformation(_("Searching for program updates..."));
|
|
|
|
|
2017-06-08 11:25:13 +00:00
|
|
|
@@ -4794,7 +4794,7 @@ void MainDialog::OnRegularUpdateCheck(wx
|
2017-04-23 14:24:32 +00:00
|
|
|
periodicUpdateCheckEval(this, globalCfg.gui.lastUpdateCheck, globalCfg.gui.lastOnlineVersion,
|
|
|
|
resultAsync.get()); //run on main thread:
|
|
|
|
});
|
|
|
|
- }
|
|
|
|
+ }*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|