Hello community,

here is the log from the commit of package FreeFileSync for openSUSE:Factory 
checked in at 2020-12-13 17:30:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/FreeFileSync (Old)
 and      /work/SRC/openSUSE:Factory/.FreeFileSync.new.2328 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "FreeFileSync"

Sun Dec 13 17:30:41 2020 rev:4 rq:855495 version:11.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/FreeFileSync/FreeFileSync.changes        
2020-11-05 21:56:42.139943732 +0100
+++ /work/SRC/openSUSE:Factory/.FreeFileSync.new.2328/FreeFileSync.changes      
2020-12-13 17:31:08.320434670 +0100
@@ -1,0 +2,19 @@
+Fri Dec 11 07:53:28 UTC 2020 - Jannik Seiler <[email protected]>
+
+- Update to 11.4
+  - New progress graph "this one sparks joy"
+  - Remember progress dialog size
+  - New config file context menu option: Show in file manager
+  - Work around libcurl performance bug during FTP upload
+  - Only log modification time errors after comparing by size or content
+  - Smaller icon size for efficient screen layout (Linux)
+  - Use system-native recycle bin icon
+  - Fixed DeviceIoControl(IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS): 
ERROR_MORE_DATA
+  - Support MTP devices lacking a friendly name
+  - Fix grid scrolling with small mouse rotations (macOS)
+  - Faster mouse scrolling on high-DPI resolution displays
+  - Keep previous windows size when maximized during auto-exit
+- use %autosetup instead of %setup and %patch
+- replace %desktop_database_postun with %filetrigger{in,postun}
+
+-------------------------------------------------------------------

Old:
----
  FreeFileSync_11.3_Source.zip

New:
----
  FreeFileSync_11.4_Source.zip

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ FreeFileSync.spec ++++++
--- /var/tmp/diff_new_pack.IxuGKf/_old  2020-12-13 17:31:09.144435505 +0100
+++ /var/tmp/diff_new_pack.IxuGKf/_new  2020-12-13 17:31:09.144435505 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           FreeFileSync
-Version:        11.3
+Version:        11.4
 Release:        0
 Summary:        Free backup software to synchronize files and folders
 License:        GPL-3.0-or-later
@@ -56,12 +56,9 @@
 Usually this command line will trigger a FreeFileSync batch job.
 
 %prep
-%setup -q -c %{name}-%{version}
+%autosetup -p1 -c %{name}-%{version}
 sed -i 's/\r$//' License.txt
-#chmod -x License.txt
 mkdir FreeFileSync/Build/Bin
-%patch0 -p1
-%patch1 -p1
 
 %build
 export TMPDIR=/tmp # necessary since 11.0
@@ -97,11 +94,11 @@
 %suse_update_desktop_file -i %{name}
 %suse_update_desktop_file -i RealTimeSync
 
-%post
-%desktop_database_post
+%filetriggerin -- %{_datadir}/applications
+%{_bindir}/update-desktop-database --quiet %{_datadir}/applications || true
 
-%postun
-%desktop_database_postun
+%filetriggerpostun -- %{_datadir}/applications
+%{_bindir}/update-desktop-database --quiet %{_datadir}/applications || true
 
 %files
 %license %attr(444, -, -) License.txt

++++++ FreeFileSync-Build.patch ++++++
--- /var/tmp/diff_new_pack.IxuGKf/_old  2020-12-13 17:31:09.180435542 +0100
+++ /var/tmp/diff_new_pack.IxuGKf/_new  2020-12-13 17:31:09.180435542 +0100
@@ -1,6 +1,6 @@
-diff -ruN FreeFileSync_11.2_Source_orig/FreeFileSync/Source/Makefile 
FreeFileSync_11.2_Source/FreeFileSync/Source/Makefile
---- FreeFileSync_11.2_Source_orig/FreeFileSync/Source/Makefile 2020-10-02 
20:14:56.000000000 +0200
-+++ FreeFileSync_11.2_Source/FreeFileSync/Source/Makefile      2020-10-03 
10:53:29.564126702 +0200
+diff -Naur FreeFileSync_11.4_Source_orig/FreeFileSync/Source/Makefile 
FreeFileSync_11.4_Source/FreeFileSync/Source/Makefile
+--- FreeFileSync_11.4_Source_orig/FreeFileSync/Source/Makefile 2020-12-05 
14:38:38.000000000 +0100
++++ FreeFileSync_11.4_Source/FreeFileSync/Source/Makefile      2020-12-11 
09:24:39.418116342 +0100
 @@ -2,9 +2,9 @@
  
  cxxFlags = -std=c++2a -pipe -DWXINTL_NO_GETTEXT_MACRO -I../.. -I../../zenXml 
-include "zen/i18n.h" -include "zen/warn_static.h" \
@@ -8,8 +8,8 @@
 -           -O3 -DNDEBUG `wx-config --cxxflags --debug=no` -pthread
 +           -O3 -DNDEBUG `wx-config --cxxflags --debug=no` -pthread -fpie
  
--linkFlags = -s -no-pie `wx-config --libs std, aui --debug=no` -pthread
-+linkFlags = -s `wx-config --libs std, aui --debug=no` -pthread -lz -pie
+-linkFlags = -s -no-pie `wx-config --libs std, aui, richtext --debug=no` 
-pthread
++linkFlags = -s `wx-config --libs std, aui, richtext --debug=no` -pthread -lz 
-pie
  
  
  cxxFlags  += `pkg-config --cflags openssl`
@@ -26,9 +26,9 @@
  
  #support for SELinux (optional)
  SELINUX_EXISTING=$(shell pkg-config --exists libselinux && echo YES)
-diff -ruN 
FreeFileSync_11.2_Source_orig/FreeFileSync/Source/RealTimeSync/Makefile 
FreeFileSync_11.2_Source/FreeFileSync/Source/RealTimeSync/Makefile
---- FreeFileSync_11.2_Source_orig/FreeFileSync/Source/RealTimeSync/Makefile    
2020-10-02 20:14:56.000000000 +0200
-+++ FreeFileSync_11.2_Source/FreeFileSync/Source/RealTimeSync/Makefile 
2020-10-03 10:54:14.051922165 +0200
+diff -Naur 
FreeFileSync_11.4_Source_orig/FreeFileSync/Source/RealTimeSync/Makefile 
FreeFileSync_11.4_Source/FreeFileSync/Source/RealTimeSync/Makefile
+--- FreeFileSync_11.4_Source_orig/FreeFileSync/Source/RealTimeSync/Makefile    
2020-12-05 14:38:38.000000000 +0100
++++ FreeFileSync_11.4_Source/FreeFileSync/Source/RealTimeSync/Makefile 
2020-12-11 09:19:38.287288344 +0100
 @@ -2,14 +2,15 @@
  
  cxxFlags = -std=c++2a -pipe -DWXINTL_NO_GETTEXT_MACRO -I../../.. 
-I../../../zenXml -include "zen/i18n.h" -include "zen/warn_static.h" \
@@ -36,8 +36,8 @@
 -           -O3 -DNDEBUG `wx-config --cxxflags --debug=no` -pthread
 +           -O3 -DNDEBUG `wx-config --cxxflags --debug=no` -pthread -fpie
  
--linkFlags = -s -no-pie `wx-config --libs std, aui --debug=no` -pthread
-+linkFlags = -s `wx-config --libs std, aui --debug=no` -pthread -lz -pie
+-linkFlags = -s -no-pie `wx-config --libs std, aui, richtext --debug=no` 
-pthread
++linkFlags = -s `wx-config --libs std, aui, richtext --debug=no` -pthread -lz 
-pie
  
  #Gtk - support "no button border"
 -cxxFlags  += `pkg-config --cflags gtk+-2.0`
@@ -49,9 +49,9 @@
  
  cppFiles=
  cppFiles+=application.cpp
-diff -ruN FreeFileSync_11.2_Source_orig/libssh2/libssh2_wrap.h 
FreeFileSync_11.2_Source/libssh2/libssh2_wrap.h
---- FreeFileSync_11.2_Source_orig/libssh2/libssh2_wrap.h       2020-10-02 
20:14:58.000000000 +0200
-+++ FreeFileSync_11.2_Source/libssh2/libssh2_wrap.h    2020-10-03 
10:55:03.571680367 +0200
+diff -Naur FreeFileSync_11.4_Source_orig/libssh2/libssh2_wrap.h 
FreeFileSync_11.4_Source/libssh2/libssh2_wrap.h
+--- FreeFileSync_11.4_Source_orig/libssh2/libssh2_wrap.h       2020-12-05 
14:38:38.000000000 +0100
++++ FreeFileSync_11.4_Source/libssh2/libssh2_wrap.h    2020-12-11 
09:17:38.447774909 +0100
 @@ -20,6 +20,22 @@
      #error libssh2_sftp.h header guard changed
  #endif
@@ -61,7 +61,7 @@
 + * packets.
 + */
 +#ifndef MAX_SFTP_READ_SIZE
-+#define MAX_SFTP_READ_SIZE 30000
++    #define MAX_SFTP_READ_SIZE 30000
 +#endif
 +
 +/*
@@ -69,15 +69,15 @@
 + * amount of data sent in each FXP_WRITE packet
 + */
 +#ifndef MAX_SFTP_OUTGOING_SIZE
-+#define MAX_SFTP_OUTGOING_SIZE 30000
++    #define MAX_SFTP_OUTGOING_SIZE 30000
 +#endif
 +
  //fix libssh2 64-bit warning mess: https://github.com/libssh2/libssh2/pull/96
  #undef libssh2_userauth_password
  inline int libssh2_userauth_password(LIBSSH2_SESSION* session, const 
std::string& username, const std::string& password)
-diff -ruN FreeFileSync_11.2_Source_orig/zen/ring_buffer.h 
FreeFileSync_11.2_Source/zen/ring_buffer.h
---- FreeFileSync_11.2_Source_orig/zen/ring_buffer.h    2020-10-02 
20:14:58.000000000 +0200
-+++ FreeFileSync_11.2_Source/zen/ring_buffer.h 2020-10-03 10:55:35.991520674 
+0200
+diff -Naur FreeFileSync_11.4_Source_orig/zen/ring_buffer.h 
FreeFileSync_11.4_Source/zen/ring_buffer.h
+--- FreeFileSync_11.4_Source_orig/zen/ring_buffer.h    2020-12-05 
14:38:38.000000000 +0100
++++ FreeFileSync_11.4_Source/zen/ring_buffer.h 2020-12-11 09:16:43.519997924 
+0100
 @@ -8,6 +8,7 @@
  #define RING_BUFFER_H_01238467085684139453534
  
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/[email protected]

Reply via email to