forked from pool/FreeFileSync
Accepting request 1112735 from network
- Update to 13.0: * Rename (multiple) files manually (F2 key) * Configure individual directions for DB-based sync * Detect moved files with "Update" sync variant (requires sync.ffs_db files) * Update variant: Do not restore files that were deleted on target * Distinguish file renames from file moves and simplify grid display * Fixed ERROR_NOT_SUPPORTED when copying files with NTFS extended attributes * Fixed error during process initialization while connecting with quick launch * Avoid redundant file reopen when setting file times during copy * Set working directory to match FFS configuration file when double-clicking (Linux) OBS-URL: https://build.opensuse.org/request/show/1112735 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/FreeFileSync?expand=0&rev=18
This commit is contained in:
commit
9e9099975a
@ -1,7 +1,7 @@
|
||||
diff -ru orig/FreeFileSync/Source/ui/gui_generated.cpp mod/FreeFileSync/Source/ui/gui_generated.cpp
|
||||
--- orig/FreeFileSync/Source/ui/gui_generated.cpp 2023-07-21 15:28:49.000000000 +0200
|
||||
+++ mod/FreeFileSync/Source/ui/gui_generated.cpp 2023-08-02 14:27:08.425812785 +0200
|
||||
@@ -108,13 +108,13 @@
|
||||
diff -ru a/FreeFileSync/Source/ui/gui_generated.cpp b/FreeFileSync/Source/ui/gui_generated.cpp
|
||||
--- a/FreeFileSync/Source/ui/gui_generated.cpp 2023-09-13 12:16:12.000000000 +0200
|
||||
+++ b/FreeFileSync/Source/ui/gui_generated.cpp 2023-09-21 10:05:00.360102541 +0200
|
||||
@@ -108,10 +108,10 @@
|
||||
m_menuItemHelp = new wxMenuItem( m_menuHelp, wxID_HELP, wxString( _("&View help") ) + wxT('\t') + wxT("F1"), wxEmptyString, wxITEM_NORMAL );
|
||||
m_menuHelp->Append( m_menuItemHelp );
|
||||
|
||||
@ -12,16 +12,12 @@ diff -ru orig/FreeFileSync/Source/ui/gui_generated.cpp mod/FreeFileSync/Source/u
|
||||
- m_menuHelp->Append( m_menuItemCheckVersionNow );
|
||||
+ //m_menuHelp->Append( m_menuItemCheckVersionNow );
|
||||
|
||||
m_menuItemCheckVersionAuto = new wxMenuItem( m_menuHelp, wxID_ANY, wxString( _("Check &automatically once a week") ) , wxEmptyString, wxITEM_CHECK );
|
||||
- m_menuHelp->Append( m_menuItemCheckVersionAuto );
|
||||
+ //m_menuHelp->Append( m_menuItemCheckVersionAuto );
|
||||
m_menuItemCheckVersionAuto->Check( true );
|
||||
|
||||
m_menuHelp->AppendSeparator();
|
||||
diff -ru orig/FreeFileSync/Source/ui/main_dlg.cpp mod/FreeFileSync/Source/ui/main_dlg.cpp
|
||||
--- orig/FreeFileSync/Source/ui/main_dlg.cpp 2023-07-21 15:28:49.000000000 +0200
|
||||
+++ mod/FreeFileSync/Source/ui/main_dlg.cpp 2023-08-02 14:27:26.222583175 +0200
|
||||
@@ -955,7 +955,7 @@
|
||||
|
||||
diff -ru a/FreeFileSync/Source/ui/main_dlg.cpp b/FreeFileSync/Source/ui/main_dlg.cpp
|
||||
--- a/FreeFileSync/Source/ui/main_dlg.cpp 2023-09-13 12:16:12.000000000 +0200
|
||||
+++ b/FreeFileSync/Source/ui/main_dlg.cpp 2023-09-21 10:05:32.806975589 +0200
|
||||
@@ -962,7 +962,7 @@
|
||||
updateGui();
|
||||
|
||||
//register regular check for update on next idle event
|
||||
@ -30,12 +26,12 @@ diff -ru orig/FreeFileSync/Source/ui/main_dlg.cpp mod/FreeFileSync/Source/ui/mai
|
||||
|
||||
//asynchronous call to wxWindow::Dimensions(): fix superfluous frame on right and bottom when FFS is started in fullscreen mode
|
||||
Bind(wxEVT_IDLE, &MainDialog::onLayoutWindowAsync, this);
|
||||
diff -ru orig/FreeFileSync/Source/ui/version_check.cpp mod/FreeFileSync/Source/ui/version_check.cpp
|
||||
--- orig/FreeFileSync/Source/ui/version_check.cpp 2023-07-21 15:28:49.000000000 +0200
|
||||
+++ mod/FreeFileSync/Source/ui/version_check.cpp 2023-08-02 14:27:41.709340094 +0200
|
||||
@@ -84,7 +84,8 @@
|
||||
return false;
|
||||
|
||||
diff -ru a/FreeFileSync/Source/ui/version_check.cpp b/FreeFileSync/Source/ui/version_check.cpp
|
||||
--- a/FreeFileSync/Source/ui/version_check.cpp 2023-09-13 12:16:13.000000000 +0200
|
||||
+++ b/FreeFileSync/Source/ui/version_check.cpp 2023-09-21 10:06:09.283874265 +0200
|
||||
@@ -58,7 +58,8 @@
|
||||
bool fff::automaticUpdateCheckDue(time_t lastUpdateCheck)
|
||||
{
|
||||
const time_t now = std::time(nullptr);
|
||||
- return std::abs(now - lastUpdateCheck) >= 7 * 24 * 3600; //check weekly
|
||||
+ //return std::abs(now - lastUpdateCheck) >= 7 * 24 * 3600; //check weekly
|
||||
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 21 08:01:13 UTC 2023 - Paolo Stivanin <info@paolostivanin.com>
|
||||
|
||||
- Update to 13.0:
|
||||
* Rename (multiple) files manually (F2 key)
|
||||
* Configure individual directions for DB-based sync
|
||||
* Detect moved files with "Update" sync variant (requires sync.ffs_db files)
|
||||
* Update variant: Do not restore files that were deleted on target
|
||||
* Distinguish file renames from file moves and simplify grid display
|
||||
* Fixed ERROR_NOT_SUPPORTED when copying files with NTFS extended attributes
|
||||
* Fixed error during process initialization while connecting with quick launch
|
||||
* Avoid redundant file reopen when setting file times during copy
|
||||
* Set working directory to match FFS configuration file when double-clicking (Linux)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 2 12:20:05 UTC 2023 - Paolo Stivanin <info@paolostivanin.com>
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: FreeFileSync
|
||||
Version: 12.5
|
||||
Version: 13.0
|
||||
Release: 0
|
||||
Summary: Backup software to synchronize files and folders
|
||||
License: GPL-3.0-or-later
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:29337f1db34b3fffb3e6baf2a77c03468e9cee5d37be2ead53109764f3065283
|
||||
size 2735308
|
3
FreeFileSync_13.0_Source.zip
Normal file
3
FreeFileSync_13.0_Source.zip
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:13495828d095b64767848dcd3f1f3cdbc173eac7e6226d7c2920b43525a01df4
|
||||
size 2759324
|
Loading…
Reference in New Issue
Block a user