Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package flameshot for openSUSE:Factory checked in at 2023-05-17 10:53:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/flameshot (Old) and /work/SRC/openSUSE:Factory/.flameshot.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "flameshot" Wed May 17 10:53:23 2023 rev:18 rq:1087460 version:12.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/flameshot/flameshot.changes 2022-08-02 22:09:24.145808899 +0200 +++ /work/SRC/openSUSE:Factory/.flameshot.new.1533/flameshot.changes 2023-05-17 10:53:56.055606851 +0200 @@ -1,0 +2,7 @@ +Tue May 16 09:22:22 UTC 2023 - Guido Berhoerster <guido+opens...@berhoerster.name> + +- Add flameshot-remove-update-check.patch: Remove update check, updates are + supplied by the distribution and making a network request has privacy + implications + +------------------------------------------------------------------- New: ---- flameshot-remove-update-check.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ flameshot.spec ++++++ --- /var/tmp/diff_new_pack.m8TPxD/_old 2023-05-17 10:53:56.527609393 +0200 +++ /var/tmp/diff_new_pack.m8TPxD/_new 2023-05-17 10:53:56.531609414 +0200 @@ -1,7 +1,7 @@ # # spec file for package flameshot # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,6 +24,8 @@ Group: Productivity/Graphics/Other URL: https://github.com/flameshot-org/flameshot#flameshot Source0: https://github.com/flameshot-org/flameshot/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +# PATCH-FEATURE-OPENSUSE flameshot-remove-update-check.patch -- Remove update check +Patch0: flameshot-remove-update-check.patch BuildRequires: cmake BuildRequires: fdupes BuildRequires: gcc-c++ ++++++ flameshot-remove-update-check.patch ++++++ Index: src/core/flameshotdaemon.cpp =================================================================== --- src/core/flameshotdaemon.cpp.orig 2022-07-03 13:42:21.000000000 +0000 +++ src/core/flameshotdaemon.cpp 2023-05-16 09:20:48.878903358 +0000 @@ -180,6 +180,7 @@ void FlameshotDaemon::showUpdateNotifica void FlameshotDaemon::getLatestAvailableVersion() { +#if 0 // This features is required for MacOS and Windows user and for Linux users // who installed Flameshot not from the repository. m_networkCheckUpdates = new QNetworkAccessManager(this); @@ -196,6 +197,7 @@ void FlameshotDaemon::getLatestAvailable this->getLatestAvailableVersion(); } }); +#endif } void FlameshotDaemon::checkForUpdates()