Hello community, here is the log from the commit of package Jamulus for openSUSE:Factory checked in at 2020-09-25 16:35:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/Jamulus (Old) and /work/SRC/openSUSE:Factory/.Jamulus.new.4249 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "Jamulus" Fri Sep 25 16:35:45 2020 rev:10 rq:837223 version:3.5.11 Changes: -------- --- /work/SRC/openSUSE:Factory/Jamulus/Jamulus.changes 2020-08-17 12:05:22.534694103 +0200 +++ /work/SRC/openSUSE:Factory/.Jamulus.new.4249/Jamulus.changes 2020-09-25 16:37:18.536197883 +0200 @@ -1,0 +2,24 @@ +Thu Sep 24 18:57:44 UTC 2020 - Luigi Baldoni <[email protected]> + +- Update to version 3.5.11 + * support a check for updates + * added an optional server list whitelist filter + * added a command line argument to enable multithreading in + the server + * added support for split protocol messages (fixes bug with + large number of clients connected to a server) + * store recorder settings + * added a command line argument to disable recording on start + up + * accessibility improvements + * added Jack audio audio latency calculation + * show the server name in the title bar + * bug fix: crash when using the Jack backend and quickly + reconfiguring, coded by hselasky + * bug fix: Alt+h shortcut to open the Chat dialog did not + work, use Alt+c instead + * bug fix: pan is not correctly initialized in the server on a + new connection +- Add Jamulus-disable_version_check.patch + +------------------------------------------------------------------- Old: ---- jamulus-r3_5_10.tar.gz New: ---- Jamulus-disable_version_check.patch jamulus-r3_5_11.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Jamulus.spec ++++++ --- /var/tmp/diff_new_pack.fdxSFN/_old 2020-09-25 16:37:19.404198652 +0200 +++ /var/tmp/diff_new_pack.fdxSFN/_new 2020-09-25 16:37:19.408198657 +0200 @@ -17,16 +17,18 @@ # -%define tarball_version 3_5_10 +%define tarball_version 3_5_11 Name: Jamulus -Version: 3.5.10 +Version: 3.5.11 Release: 0 Summary: Low-latency internet connection tool for real-time jam sessions License: GPL-2.0-or-later URL: http://llcon.sourceforge.net/index.html Source0: https://github.com/corrados/jamulus/archive/r%{tarball_version}.tar.gz#/jamulus-r%{tarball_version}.tar.gz Source1: %{name}_icon.png +# PATCH-FIX-UPSTREAM Jamulus-disable_version_check.patch +Patch0: Jamulus-disable_version_check.patch BuildRequires: ImageMagick BuildRequires: fdupes BuildRequires: gcc-c++ @@ -34,6 +36,7 @@ BuildRequires: jack-devel BuildRequires: pkgconfig BuildRequires: update-desktop-files +BuildRequires: pkgconfig(Qt5Concurrent) BuildRequires: pkgconfig(Qt5Network) BuildRequires: pkgconfig(Qt5Widgets) BuildRequires: pkgconfig(Qt5Xml) @@ -51,11 +54,11 @@ and sends the mix back to each client. %prep -%autosetup -n jamulus-r%{tarball_version} +%autosetup -p1 -n jamulus-r%{tarball_version} install %{SOURCE1} . %build -%qmake5 CONFIG+=opus_shared_lib +%qmake5 CONFIG+=opus_shared_lib CONFIG+=disable_version_check %make_jobs %install ++++++ Jamulus-disable_version_check.patch ++++++ >From a05f354bccebc8b80692135e8e37da53dd6a349a Mon Sep 17 00:00:00 2001 From: Volker Fischer <[email protected]> Date: Thu, 24 Sep 2020 17:08:23 +0200 Subject: [PATCH] added qmake CONFIG parameter disable_version_check for disabling the automatic version check --- Jamulus.pro | 6 ++++++ src/clientdlg.cpp | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Jamulus.pro b/Jamulus.pro index 6605be7e..3f0db7e5 100755 --- a/Jamulus.pro +++ b/Jamulus.pro @@ -1011,3 +1011,9 @@ contains(CONFIG, "opus_shared_lib") { SOURCES += $$SOURCES_OPUS DISTFILES += $$DISTFILES_OPUS } + +# disable version check if requested +contains(CONFIG, "disable_version_check") { + message(The version check is disabled.) + DEFINES += DISABLE_VERSION_CHECK +} diff --git a/src/clientdlg.cpp b/src/clientdlg.cpp index afe18f8f..8c4a6d4d 100755 --- a/src/clientdlg.cpp +++ b/src/clientdlg.cpp @@ -756,7 +756,7 @@ void CClientDlg::OnCLVersionAndOSReceived ( CHostAddress InetAddr, QString strVersion ) { // update check -#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) +#if ( QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) ) && !defined ( DISABLE_VERSION_CHECK ) if ( QVersionNumber::compare ( QVersionNumber::fromString ( strVersion ), QVersionNumber::fromString ( VERSION ) ) > 0 ) { lblUpdateCheck->show(); ++++++ jamulus-r3_5_10.tar.gz -> jamulus-r3_5_11.tar.gz ++++++ /work/SRC/openSUSE:Factory/Jamulus/jamulus-r3_5_10.tar.gz /work/SRC/openSUSE:Factory/.Jamulus.new.4249/jamulus-r3_5_11.tar.gz differ: char 13, line 1
