forked from pool/lsp-plugins
Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 9778b9d1a1 | |||
| 5b18fccc98 | |||
| 776b7bb7b5 | |||
| 03283ba624 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f07dff42c4ca83366fd4576cd18bcbb82c68979b4e7655dc6fc1809881da4a73
|
||||
size 45697401
|
||||
3
lsp-plugins-src-1.2.19.tar.gz
Normal file
3
lsp-plugins-src-1.2.19.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:184d95a8a58d8f1f2285b57bbbf8b4c7d773455cbe864c289631469d5023e4e6
|
||||
size 53598847
|
||||
@@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 12 20:29:16 UTC 2024 - Konstantin Voinov <kv@kott.no-ip.biz>
|
||||
|
||||
- update to 1.2.19
|
||||
- update .spec for tar.gz source
|
||||
|
||||
* Rollback of source code distribution to tar.gz archive format.
|
||||
* Fixed unneeded resource object deletion and use-after-free in
|
||||
VST plugin wrapper.
|
||||
* Fixed window sizing for CLAP plugin format.
|
||||
* Updated CLAP SDK to 1.2.2.
|
||||
* Updated VST3 SDK to 3.7.12, may be breaking changes related to
|
||||
parameter identifiers as Steinberg has twice reduced the set of
|
||||
valid paremeter identifiers.
|
||||
* Several fixes in build scripts.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 9 23:04:53 UTC 2024 - Konstantin Voinov <kv@kott.no-ip.biz>
|
||||
|
||||
- update to 1.2.18
|
||||
|
||||
* Implemented Send Mono and Send Stereo plugins for sending audio
|
||||
streams to named connection points stored in shared memory.
|
||||
* Implemented Return Mono and Return Stereo plugins for receiving
|
||||
audio streams from named connection points stored in shared memory.
|
||||
* Added inter-communication between Parametric and Graphic Equalizers
|
||||
using new send/return communication primitives which allows to show
|
||||
the spectrogram of another Equalizer's output on the graph.
|
||||
* Added Reverse button for Impulse Responses plugin series that allows
|
||||
to reverse the impulse response.
|
||||
* Added support of sidechain passed by shared memory link for
|
||||
Autogain plugin series.
|
||||
* Added support of sidechain passed by shared memory link for
|
||||
single-band dynamics processing plugin series:
|
||||
* Compressor;
|
||||
* Dynamics Processor;
|
||||
* Expander;
|
||||
* Gate;
|
||||
* Limiter.
|
||||
* Added support of sidechain passed by shared memory link for multi-band
|
||||
dynamics processing plugin series:
|
||||
* GOTT Compressor;
|
||||
* Multiband Compressor;
|
||||
* Multiband Dynamics Processor;
|
||||
* Multiband Expander;
|
||||
* Multiband Gate;
|
||||
* Multiband Limiter.
|
||||
* Mono samples are now played as stereo samples with duplicated left
|
||||
channel for Trigger, Sampler and Multisampler plugin series.
|
||||
* Added pre-reverse button to apply sample reversal before cuts,
|
||||
stretches and fades being applied in Sampler and Multisampler
|
||||
plugin series.
|
||||
* Several UI improvements related to instrument names in Multisampler
|
||||
plugin series: instrument name is now displayed in drop-down list
|
||||
and heading of the drop-down group.
|
||||
* Added documentation_path parameter in user configuration file which
|
||||
allows to configure the path to the offline documentation installation.
|
||||
* Update makefiles to simplify cross-compiling, added cross compiling
|
||||
instructions to README.
|
||||
* Added LUFS meters to the Loudness Compensator plugin series.
|
||||
* Added reference Pink noise generator of different standard loudness
|
||||
levels to the Loudness Compensator plugin series.
|
||||
* Added directory contents view and navigation of currently loaded
|
||||
sample for following plugin series:
|
||||
* Impulse Responses;
|
||||
* Impulse Reverb;
|
||||
* Multsampler;
|
||||
* Sampler;
|
||||
* Trigger.
|
||||
* Fixed random crashes when navigating file dialog in Windows.
|
||||
* Fixed invalid UI draw issue on Windows when using larger desktop DPI.
|
||||
* Fixed regression in offline documentation build.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 4 02:09:18 UTC 2024 - Konstantin Voinov <kv@kott.no-ip.biz>
|
||||
|
||||
|
||||
@@ -22,22 +22,17 @@
|
||||
%global _lto_cflags %{?_lto_cflags} -ffat-lto-objects
|
||||
|
||||
Name: lsp-plugins
|
||||
Version: 1.2.17
|
||||
Version: 1.2.19
|
||||
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}.7z#/%{name}-%{version}.7z
|
||||
Source0: https://github.com/sadko4u/lsp-plugins/releases/download/%{version}/%{name}-src-%{version}.tar.gz
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: ladspa
|
||||
BuildRequires: ladspa-devel
|
||||
%if 0%{?suse_version} > 1600
|
||||
BuildRequires: 7zip
|
||||
%else
|
||||
BuildRequires: p7zip-full
|
||||
%endif
|
||||
BuildRequires: php8
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: update-desktop-files
|
||||
@@ -168,7 +163,7 @@ Requires: %{name}-common = %{version}
|
||||
Development files for Linux Studio Plugins
|
||||
|
||||
%prep
|
||||
%setup -qn %{name}-src-%{version}
|
||||
%autosetup -n %{name}
|
||||
|
||||
%build
|
||||
export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}"
|
||||
|
||||
Reference in New Issue
Block a user