summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_desktop_notifications.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-06 19:19:10 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-06 19:19:10 -0500
commit246a68b11fbc758dc1438c7d8d864867a6ea0642 (patch)
tree127938da43e69f97ddf0560917e8e86bcc28133c /freefilesync/ffs_desktop_notifications.patch
parentMerge branch 'notepadpp-bump' into 'master' (diff)
downloadstackrpms-246a68b11fbc758dc1438c7d8d864867a6ea0642.tar.gz
stackrpms-246a68b11fbc758dc1438c7d8d864867a6ea0642.tar.bz2
stackrpms-246a68b11fbc758dc1438c7d8d864867a6ea0642.zip
ffs 11.17
Diffstat (limited to 'freefilesync/ffs_desktop_notifications.patch')
-rw-r--r--freefilesync/ffs_desktop_notifications.patch14
1 files changed, 7 insertions, 7 deletions
diff --git a/freefilesync/ffs_desktop_notifications.patch b/freefilesync/ffs_desktop_notifications.patch
index 121616a..2dd257e 100644
--- a/freefilesync/ffs_desktop_notifications.patch
+++ b/freefilesync/ffs_desktop_notifications.patch
@@ -1,5 +1,5 @@
-Version: 11.16
-Date: 2022-01-04
+Version: 11.17
+Date: 2022-02-06
Author: bgstack15
Message: Add support for building with desktop notification support.
diff -aur 11.9-1/FreeFileSync/Source/Makefile 11.9-2/FreeFileSync/Source/Makefile
@@ -20,11 +20,11 @@ diff -aur 11.9-1/FreeFileSync/Source/Makefile 11.9-2/FreeFileSync/Source/Makefil
SELINUX_EXISTING=$(shell pkg-config --exists libselinux && echo YES)
ifeq ($(SELINUX_EXISTING),YES)
diff -aur 11.9-1/FreeFileSync/Source/ui/progress_indicator.cpp 11.9-2/FreeFileSync/Source/ui/progress_indicator.cpp
---- 11.9-1/FreeFileSync/Source/ui/progress_indicator.cpp 2021-05-06 15:20:34.286831934 -0400
-+++ 11.9-2/FreeFileSync/Source/ui/progress_indicator.cpp 2021-05-06 17:11:45.486004158 -0400
-@@ -32,6 +32,9 @@
- #include "../perf_check.h"
+--- 11.17-0/FreeFileSync/Source/ui/progress_indicator.cpp 2022-02-06 16:30:56.883997654 -0500
++++ 11.17-1/FreeFileSync/Source/ui/progress_indicator.cpp 2022-02-06 17:05:57.763911330 -0500
+@@ -31,6 +31,9 @@
#include "../icon_buffer.h"
+ #include "../base/speed_test.h"
+#ifdef with_notifications
+#include<giomm-2.4/giomm.h>
@@ -32,7 +32,7 @@ diff -aur 11.9-1/FreeFileSync/Source/ui/progress_indicator.cpp 11.9-2/FreeFileSy
using namespace zen;
using namespace fff;
-@@ -1358,6 +1361,22 @@
+@@ -1372,6 +1375,22 @@
pnl_.m_staticTextPhase->SetLabelText(getSyncResultLabel(syncResult));
//pnl_.m_bitmapStatus->SetToolTip(); -> redundant
bgstack15