Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lsp-plugins for openSUSE:Factory checked in at 2026-08-17 16:58:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lsp-plugins (Old) and /work/SRC/openSUSE:Factory/.lsp-plugins.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lsp-plugins" Mon Aug 17 16:58:42 2026 rev:51 rq:1371443 version:1.2.34 Changes: -------- --- /work/SRC/openSUSE:Factory/lsp-plugins/lsp-plugins.changes 2026-06-15 19:45:25.556397750 +0200 +++ /work/SRC/openSUSE:Factory/.lsp-plugins.new.1258/lsp-plugins.changes 2026-08-17 17:02:01.937475579 +0200 @@ -1,0 +2,29 @@ +Sun Aug 16 00:24:42 UTC 2026 - pallas wept <[email protected]> + +- update to 1.2.34 + * Implemented Deesser Plugin series. + * VST2 plugins now are packaged into shell plugin which makes faster scanning of plugins and requires less shared object files to provide. + * Significant refactoring of static and dynamic filter functions, eliminated some bugs in mathematics for ARM32 and AArch64 archtectures that were hard to catch. + * Added support of biquad filter cascades that contain 16 filters at one time, optimized filter cascades for AVX-512 support. + * Added hard clipping of the input signal to the maximum peak value of 120 dBFS to avoid mathematic failures which may yield to NaN and Inf values. + * Added delayed display of the 'Loading' status for the AudioSample widget to avoid flickering of the sample widget when quickly navigating samples on the sample navigation panel. + * Added possibility to select audio driver by clicking current Audio driver's name at the bottom-right part of the window. + * The Input Gain knob now controls the gain of input signal only and does not affect the level of external sidechain or shared memory link for the list of following plugins: + * Multiband Compressor; + * Multiband Dynamics Processor; + * Multiband Expander; + * Multiband Gate; + * Multiband Limiter; + * Multiband Ring-Modulated Sidechain. + * Usage of system FreeType library for hosts that provide it's own built-in FreeType library now is turned off by default and can be turned on by setting the LSP_WS_FORCE_SYSTEM_FREETYPE=on environment variable. + * Fixed regression in filter transfer function calculation functions that could yield to improper display of filter characteristics for the highest frequency band on some crossovers. + * Fixed VST3 scaling issues on MacOS (contributed by lltwist @ github.com) + * Fixed regression that caused a crash when launching standalone plugins in headless mode. + * Fixed out of sync parameters for the ctl::Envelope controller which fixes behaviour of audio envelope in Sampler plugin series. + * Bugfixes in PipeWire driver: fixed registry synchronization code that could yield to hangup or crashes. + * Fixed VST3 paths for 32-bit and 64-bit ARM architectures. + * Fixed bug related to failures of saving global configuration file when user's configuration directory of LSP Plugins does not exist (for example, on first installation). +- Added backported empty_url.patch + * Fixes interpreting empty URL as missing server name + +------------------------------------------------------------------- Old: ---- lsp-plugins-src-1.2.33.tar.gz New: ---- empty_url.patch lsp-plugins-src-1.2.34.tar.gz ----------(New B)---------- New: * Fixed bug related to failures of saving global configuration file when user's configuration directory of LSP Plugins does not exist (for example, on first installation). - Added backported empty_url.patch * Fixes interpreting empty URL as missing server name ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lsp-plugins.spec ++++++ --- /var/tmp/diff_new_pack.1IwfP0/_old 2026-08-17 17:02:03.027514093 +0200 +++ /var/tmp/diff_new_pack.1IwfP0/_new 2026-08-17 17:02:03.029514164 +0200 @@ -22,13 +22,15 @@ %global _lto_cflags %{?_lto_cflags} -ffat-lto-objects Name: lsp-plugins -Version: 1.2.33 +Version: 1.2.34 Release: 0 Summary: Linux Studio Plugins Project (Stand-alone) License: LGPL-3.0-or-later Group: Productivity/Multimedia/Sound/Utilities URL: https://lsp-plug.in/ Source0: https://github.com/sadko4u/lsp-plugins/releases/download/%{version}/%{name}-src-%{version}.tar.gz +# PATCH-FIX-UPSTREAM empty_url.patch +Patch0: empty_url.patch BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: ladspa @@ -163,6 +165,7 @@ %prep %setup -q -n %{name} +%autopatch -p1 %build export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" ++++++ empty_url.patch ++++++ >From c6ec866cda49d38f12d101ae2bf5a32ef68f6c3c Mon Sep 17 00:00:00 2001 From: Vladimir Sadovnikov <[email protected]> Date: Sat, 15 Aug 2026 19:05:25 +0300 Subject: [PATCH] Interpreting empty URL as missing server name --- modules/lsp-audio-jack-lib/src/main/backend.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/lsp-audio-jack-lib/src/main/backend.cpp b/modules/lsp-audio-jack-lib/src/main/backend.cpp index b98e9cb..fc4c5cb 100644 --- a/modules/lsp-audio-jack-lib/src/main/backend.cpp +++ b/modules/lsp-audio-jack-lib/src/main/backend.cpp @@ -187,7 +187,7 @@ namespace lsp free(client_name); }; - if (params->client_name != NULL) + if ((params->client_name != NULL) && (strlen(params->client_name) > 0)) { const size_t max_client_size = jack_client_name_size(); client_name = static_cast<char *>(malloc(max_client_size)); @@ -200,7 +200,7 @@ namespace lsp // Get JACK client jack_status_t jack_status; - jack_client_t *client = (params->url != NULL) ? + jack_client_t *client = ((params->url != NULL) && (strlen(params->url) > 0)) ? jack_client_open(client_name, jack_options_t(JackNoStartServer | JackServerName), &jack_status, params->url) : jack_client_open(client_name, JackNoStartServer, &jack_status); if (client == NULL) ++++++ lsp-plugins-src-1.2.33.tar.gz -> lsp-plugins-src-1.2.34.tar.gz ++++++ /work/SRC/openSUSE:Factory/lsp-plugins/lsp-plugins-src-1.2.33.tar.gz /work/SRC/openSUSE:Factory/.lsp-plugins.new.1258/lsp-plugins-src-1.2.34.tar.gz differ: char 13, line 1
