Package Details: freefilesync 14.2-1

Git Clone URL: https://aur.archlinux.org/freefilesync.git (read-only, click to copy)
Package Base: freefilesync
Description: Backup software to synchronize files and folders
Upstream URL: https://freefilesync.org
Licenses: custom
Submitter: tee
Maintainer: tee
Last Packager: tee
Votes: 4
Popularity: 0.70
First Submitted: 2024-03-26 09:59 (UTC)
Last Updated: 2025-02-21 05:23 (UTC)

Latest Comments

1 2 Next › Last »

EndUserOnly commented on 2025-02-24 20:09 (UTC) (edited on 2025-02-24 20:09 (UTC) by EndUserOnly)

The reason I posted at all is because I tried freefilesync-bin and it is calling for multi-lib (32bit) dependency's that I find undesirable. Others may feel the same. Thanks for the clarification though. I only need the binary.

JThundley commented on 2025-02-24 19:53 (UTC)

That's for the binary release, this package that you're commenting on is for the source release. The binary release that you're referencing can be installed using the package freefilesync-bin. This package requires a patched libgtk or something to be built. The last 2 or 3 versions have been failing because of this.

EndUserOnly commented on 2025-02-24 12:25 (UTC) (edited on 2025-02-24 12:26 (UTC) by EndUserOnly)

Hopefully this is not offensive to anybody, but freefilesync (with easy install script) can be found here: https://freefilesync.org

EndUserOnly commented on 2025-02-03 15:49 (UTC)

Thank you for what you do.

tee commented on 2025-02-03 14:38 (UTC)

@EndUserOnly

This is not my fault, the developer is silently updating the source file without bumping the version number. It's happened before, may happen again.

diff:

diff --git a/14_old/Bugs.txt b/14_new/Bugs.txt
index ca5e61c..ec9697d 100644
--- a/14_old/Bugs.txt
+++ b/14_new/Bugs.txt
@@ -199,6 +199,37 @@ See: http://soundfile.sapp.org/doc/WaveFormat/ => skip 8 bytes (Subchunk2ID and
 -    m_data->m_data = (&m_data->m_dataWithHeader[data_offset]);
 +    m_data->m_data = (&m_data->m_dataWithHeader[data_offset + 8]);

+__________________________________________________________________________________________________________
+/src/common/bmpbndl.cpp
+DoGetPreferredSize()'s lossy "GetDefaultSize()*scaleBest" calculation can be 1-pixel-off compared to real image size => superfluous + ugly-looking image shrinking!
+
+ wxSize wxBitmapBundleImplSet::GetPreferredBitmapSizeAtScale(double scale) const
+ {
++    //work around  DoGetPreferredSize()'s flawed "GetDefaultSize()*scaleBest" calculation
++    for (const auto& entry : m_entries)
++        if (entry.bitmap.GetScaleFactor() == scale)
++            return entry.bitmap.GetSize();
++
+     return DoGetPreferredSize(scale);
+ }
+
+__________________________________________________________________________________________________________
+/src/common/stattextcmn.cpp
+Fix wxWidgets stupidly doing *nothing* when trimming east asian language strings with few spaces
+
+   // Find the last word to chop off.
+-  const size_t lastSpace = line.rfind(' ', posEnd);
+
++  size_t lastSpace = line.rfind(' ', posEnd);
++
++  //no, wxWidgets we are not even close to "can't wrap"!
++  if (lastSpace == wxString::npos)
++  {
++      lastSpace = line.find(' ');
++      if (lastSpace != wxString::npos && lastSpace > 0)
++         widthMax = widths[lastSpace - 1];
++  }
+
 __________________________________________________________________________________________________________
 /src/gtk/button.cpp
 now this is absurd: if we add wxTranslations for "&OK/&Cancel", wxWidgets will detect "wxIsStockLabel()",
@@ -220,3 +251,28 @@ https://github.com/wxWidgets/wxWidgets/blob/6561ca020048de57ec28fec5b27f80b00d44
 -    }
     wxGCC_WARNING_RESTORE()
 #endif
+
+__________________________________________________________________________________________________________
+/src/common/toplvcmn.cpp
+wxTopLevelWindow::Destroy() uses wxPendingDelete for deferred deletion during next idle event.
+There might not be a next idle event! E.g. on GTK2 a hidden window doesn't receive idle events.
+Reproduce on GTK2+KDE for toplevel window: Hide(); wxTheApp->Yield(); Destroy(); => process not exiting! https://freefilesync.org/forum/viewtopic.php?t=11935
+
+-    for ( wxWindowList::const_iterator i = wxTopLevelWindows.begin(),
+-          end = wxTopLevelWindows.end();
+-          i != end;
+-          ++i )
+-    {
+-        wxTopLevelWindow* const win = static_cast<wxTopLevelWindow*>(*i);
+-        if ( win != this && win->IsShown() )
+-        {
+-            // there remains at least one other visible TLW, we can hide this
+-            // one
+-            Hide();
+-
+-            break;
+-        }
+-    }
++    Hide();
++    wxWakeUpIdle();
+__________________________________________________________________________________________________________

EndUserOnly commented on 2025-02-03 14:26 (UTC)

freefilesync has been failing to build on my system for awhile now:

==> ERROR: One or more files did not pass the validity check! error: failed to download sources for 'freefilesync-14.0-1': error: packages failed to build: freefilesync-14.0-1

pelopor commented on 2025-01-31 17:11 (UTC)

It seems that the problem is not FreeFileSync itself, but wxWidget. https://freefilesync.org/forum/viewtopic.php?p=46566

tee commented on 2025-01-22 08:08 (UTC)

@atescula i dont have a fix right now, if someone does please post it here

atescula commented on 2025-01-21 11:50 (UTC)

Starting build()... In file included from ui/cfg_grid.h:10, from ui/cfg_grid.cpp:7: ../../wx+/grid.h:110:46: error: ‘wxReadOnlyDC’ does not name a type 110 | virtual int getBestSize (const wxReadOnlyDC& dc, size_t row, ColumnType colType); //must correspond to renderCell()! | ^~ compilation terminated due to -Wfatal-errors. make: *** [Makefile:128: /tmp/FreeFileSync_Make/ffs/src/ui/cfg_grid.cpp.o] Error 1 make: *** Waiting for unfinished jobs.... In file included from config.h:12, from application.h:13, from application.cpp:7: ../../wx+/darkmode.h:19:27: error: ‘Appearance’ in ‘class wxApp’ does not name a type 19 | using ColorTheme = wxApp::Appearance; //why reinvent the wheel? | ^~ compilation terminated due to -Wfatal-errors. make: *** [Makefile:128: /tmp/FreeFileSync_Make/ffs/src/application.cpp.o] Error 1 In file included from config.h:12, from config.cpp:7: ../../wx+/darkmode.h:19:27: error: ‘Appearance’ in ‘class wxApp’ does not name a type 19 | using ColorTheme = wxApp::Appearance; //why reinvent the wheel? | ^~ compilation terminated due to -Wfatal-errors. make: *** [Makefile:128: /tmp/FreeFileSync_Make/ffs/src/config.cpp.o] Error 1 In file included from ui/../config.h:12, from ui/batch_status_handler.h:12, from ui/batch_status_handler.cpp:7: ../../wx+/darkmode.h:19:27: error: ‘Appearance’ in ‘class wxApp’ does not name a type 19 | using ColorTheme = wxApp::Appearance; //why reinvent the wheel? | ^~ compilation terminated due to -Wfatal-errors. make: *** [Makefile:128: /tmp/FreeFileSync_Make/ffs/src/ui/batch_status_handler.cpp.o] Error 1 In file included from config.h:12, from base_tools.h:12, from base_tools.cpp:7: ../../wx+/darkmode.h:19:27: error: ‘Appearance’ in ‘class wxApp’ does not name a type 19 | using ColorTheme = wxApp::Appearance; //why reinvent the wheel? | ^~ compilation terminated due to -Wfatal-errors. In file included from ui/../config.h:12, from ui/batch_config.h:11, from ui/batch_config.cpp:7: ../../wx+/darkmode.h:19:27: error: ‘Appearance’ in ‘class wxApp’ does not name a type 19 | using ColorTheme = wxApp::Appearance; //why reinvent the wheel? | ^~ compilation terminated due to -Wfatal-errors. make: *** [Makefile:128: /tmp/FreeFileSync_Make/ffs/src/base_tools.cpp.o] Error 1 make: *** [Makefile:128: /tmp/FreeFileSync_Make/ffs/src/ui/batch_config.cpp.o] Error 1 In file included from ui/gui_generated.h:18, from ui/abstract_folder_picker.cpp:12: ../../wx+/grid.h:110:46: error: ‘wxReadOnlyDC’ does not name a type 110 | virtual int getBestSize (const wxReadOnlyDC& dc, size_t row, ColumnType colType); //must correspond to renderCell()! | ^~ compilation terminated due to -Wfatal-errors. make: *** [Makefile:128: /tmp/FreeFileSync_Make/ffs/src/ui/abstract_folder_picker.cpp.o] Error 1 ==> ERROR: A failure occurred in build(). Aborting... -> error making: freefilesync-exit status 4 -> Failed to install the following packages. Manual intervention is required: freefilesync - exit status 4