Skip to content

Commit

Permalink
Release 1.0.13
Browse files Browse the repository at this point in the history
* Updated build scripts and dependencies.
  • Loading branch information
sadko4u committed Sep 10, 2023
2 parents cf0181b + 22d7c38 commit 6b74904
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 20 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
* RECENT CHANGES
*******************************************************************************

=== 1.0.13 ===
* Updated build scripts and dependencies.

=== 1.0.12 ===
* Added Stereo Split mode for stereo versions of plugins.
* Implemented Linear Phase operating mode.
Expand Down
5 changes: 4 additions & 1 deletion include/private/plugins/mb_gate.h
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,12 @@ namespace lsp
static size_t select_fft_rank(size_t sample_rate);
static void process_band(void *object, void *subject, size_t band, const float *data, size_t sample, size_t count);

protected:
void do_destroy();

public:
explicit mb_gate(const meta::plugin_t *metadata, bool sc, size_t mode);
virtual ~mb_gate();
virtual ~mb_gate() override;

virtual void init(plug::IWrapper *wrapper, plug::IPort **ports) override;
virtual void destroy() override;
Expand Down
28 changes: 14 additions & 14 deletions modules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,62 +19,62 @@
#

# Variables that describe dependencies
LSP_3RD_PARTY_VERSION := 1.0.11
LSP_3RD_PARTY_VERSION := 1.0.12
LSP_3RD_PARTY_NAME := lsp-3rd-party
LSP_3RD_PARTY_TYPE := hdr
LSP_3RD_PARTY_INC_OPT := -idirafter
LSP_3RD_PARTY_URL_RO := https://github.com/lsp-plugins/$(LSP_3RD_PARTY_NAME).git
LSP_3RD_PARTY_URL_RW := [email protected]:lsp-plugins/$(LSP_3RD_PARTY_NAME).git

LSP_COMMON_LIB_VERSION := 1.0.30
LSP_COMMON_LIB_VERSION := 1.0.31
LSP_COMMON_LIB_NAME := lsp-common-lib
LSP_COMMON_LIB_TYPE := src
LSP_COMMON_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_COMMON_LIB_NAME).git
LSP_COMMON_LIB_URL_RW := [email protected]:lsp-plugins/$(LSP_COMMON_LIB_NAME).git

LSP_DSP_LIB_VERSION := 1.0.14
LSP_DSP_LIB_VERSION := 1.0.16
LSP_DSP_LIB_NAME := lsp-dsp-lib
LSP_DSP_LIB_TYPE := src
LSP_DSP_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_DSP_LIB_NAME).git
LSP_DSP_LIB_URL_RW := [email protected]:lsp-plugins/$(LSP_DSP_LIB_NAME).git

LSP_DSP_UNITS_VERSION := 1.0.13
LSP_DSP_UNITS_VERSION := 1.0.15
LSP_DSP_UNITS_NAME := lsp-dsp-units
LSP_DSP_UNITS_TYPE := src
LSP_DSP_UNITS_URL_RO := https://github.com/lsp-plugins/$(LSP_DSP_UNITS_NAME).git
LSP_DSP_UNITS_URL_RW := [email protected]:lsp-plugins/$(LSP_DSP_UNITS_NAME).git

LSP_LLTL_LIB_VERSION := 1.0.13
LSP_LLTL_LIB_VERSION := 1.0.14
LSP_LLTL_LIB_NAME := lsp-lltl-lib
LSP_LLTL_LIB_TYPE := src
LSP_LLTL_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_LLTL_LIB_NAME).git
LSP_LLTL_LIB_URL_RW := [email protected]:lsp-plugins/$(LSP_LLTL_LIB_NAME).git

LSP_R3D_BASE_LIB_VERSION := 1.0.13
LSP_R3D_BASE_LIB_VERSION := 1.0.14
LSP_R3D_BASE_LIB_NAME := lsp-r3d-base-lib
LSP_R3D_BASE_LIB_TYPE := src
LSP_R3D_BASE_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_R3D_BASE_LIB_NAME).git
LSP_R3D_BASE_LIB_URL_RW := [email protected]:lsp-plugins/$(LSP_R3D_BASE_LIB_NAME).git

LSP_R3D_IFACE_VERSION := 1.0.13
LSP_R3D_IFACE_VERSION := 1.0.14
LSP_R3D_IFACE_NAME := lsp-r3d-iface
LSP_R3D_IFACE_TYPE := src
LSP_R3D_IFACE_URL_RO := https://github.com/lsp-plugins/$(LSP_R3D_IFACE_NAME).git
LSP_R3D_IFACE_URL_RW := [email protected]:lsp-plugins/$(LSP_R3D_IFACE_NAME).git

LSP_R3D_GLX_LIB_VERSION := 1.0.13
LSP_R3D_GLX_LIB_VERSION := 1.0.14
LSP_R3D_GLX_LIB_NAME := lsp-r3d-glx-lib
LSP_R3D_GLX_LIB_TYPE := bin
LSP_R3D_GLX_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_R3D_GLX_LIB_NAME).git
LSP_R3D_GLX_LIB_URL_RW := [email protected]:lsp-plugins/$(LSP_R3D_GLX_LIB_NAME).git

LSP_R3D_WGL_LIB_VERSION := 1.0.8
LSP_R3D_WGL_LIB_VERSION := 1.0.9
LSP_R3D_WGL_LIB_NAME := lsp-r3d-wgl-lib
LSP_R3D_WGL_LIB_TYPE := bin
LSP_R3D_WGL_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_R3D_WGL_LIB_NAME).git
LSP_R3D_WGL_LIB_URL_RW := [email protected]:lsp-plugins/$(LSP_R3D_WGL_LIB_NAME).git

LSP_RUNTIME_LIB_VERSION := 1.0.16
LSP_RUNTIME_LIB_VERSION := 1.0.17
LSP_RUNTIME_LIB_NAME := lsp-runtime-lib
LSP_RUNTIME_LIB_TYPE := src
LSP_RUNTIME_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_RUNTIME_LIB_NAME).git
Expand All @@ -86,26 +86,26 @@ LSP_TEST_FW_TYPE := src
LSP_TEST_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_TEST_FW_NAME).git
LSP_TEST_FW_URL_RW := [email protected]:lsp-plugins/$(LSP_TEST_FW_NAME).git

LSP_TK_LIB_VERSION := 1.0.13
LSP_TK_LIB_VERSION := 1.0.15
LSP_TK_LIB_NAME := lsp-tk-lib
LSP_TK_LIB_TYPE := src
LSP_TK_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_TK_LIB_NAME).git
LSP_TK_LIB_URL_RW := [email protected]:lsp-plugins/$(LSP_TK_LIB_NAME).git

LSP_WS_LIB_VERSION := 1.0.13
LSP_WS_LIB_VERSION := 1.0.15
LSP_WS_LIB_NAME := lsp-ws-lib
LSP_WS_LIB_TYPE := src
LSP_WS_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_WS_LIB_NAME).git
LSP_WS_LIB_URL_RW := [email protected]:lsp-plugins/$(LSP_WS_LIB_NAME).git

# Plugin-related module dependencies
LSP_PLUGIN_FW_VERSION := 1.0.15
LSP_PLUGIN_FW_VERSION := 1.0.17
LSP_PLUGIN_FW_NAME := lsp-plugin-fw
LSP_PLUGIN_FW_TYPE := src
LSP_PLUGIN_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_PLUGIN_FW_NAME).git
LSP_PLUGIN_FW_URL_RW := [email protected]:lsp-plugins/$(LSP_PLUGIN_FW_NAME).git

LSP_PLUGINS_SHARED_VERSION := 1.0.14
LSP_PLUGINS_SHARED_VERSION := 1.0.16
LSP_PLUGINS_SHARED_NAME := lsp-plugins-shared
LSP_PLUGINS_SHARED_TYPE := src
LSP_PLUGINS_SHARED_URL_RO := https://github.com/lsp-plugins/$(LSP_PLUGINS_SHARED_NAME).git
Expand Down
2 changes: 1 addition & 1 deletion project.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ARTIFACT_TYPE = plug
ARTIFACT_DESC = LSP Multiband Gate Plugin Series
ARTIFACT_HEADERS = lsp-plug.in
ARTIFACT_EXPORT_HEADERS = 0
ARTIFACT_VERSION = 1.0.12
ARTIFACT_VERSION = 1.0.13



2 changes: 1 addition & 1 deletion src/main/meta/mb_gate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define LSP_PLUGINS_MB_GATE_VERSION_MAJOR 1
#define LSP_PLUGINS_MB_GATE_VERSION_MINOR 0
#define LSP_PLUGINS_MB_GATE_VERSION_MICRO 12
#define LSP_PLUGINS_MB_GATE_VERSION_MICRO 13

#define LSP_PLUGINS_MB_GATE_VERSION \
LSP_MODULE_VERSION( \
Expand Down
10 changes: 7 additions & 3 deletions src/main/plug/mb_gate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ namespace lsp

mb_gate::~mb_gate()
{
do_destroy();
}

bool mb_gate::compare_bands_for_sort(const gate_band_t *b1, const gate_band_t *b2)
Expand Down Expand Up @@ -188,6 +189,12 @@ namespace lsp
}

void mb_gate::destroy()
{
plug::Module::destroy();
do_destroy();
}

void mb_gate::do_destroy()
{
// Determine number of channels
size_t channels = (nMode == MBGM_MONO) ? 1 : 2;
Expand Down Expand Up @@ -244,9 +251,6 @@ namespace lsp

// Destroy analyzer
sAnalyzer.destroy();

// Destroy plugin
plug::Module::destroy();
}

void mb_gate::init(plug::IWrapper *wrapper, plug::IPort **ports)
Expand Down

0 comments on commit 6b74904

Please sign in to comment.