Skip to content

Commit e74fb04

Browse files
committed
Release 1.0.20
* Updated module versions in dependencies.
2 parents 059e291 + 1b6dc09 commit e74fb04

25 files changed

+394
-56
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* RECENT CHANGES
33
*******************************************************************************
44

5+
=== 1.0.20 ===
6+
* Updated module versions in dependencies.
7+
58
=== 1.0.19 ===
69
* Updated module versions in dependencies.
710

include/lsp-plug.in/shared/debug.h

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Copyright (C) 2023 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
* (C) 2023 Vladimir Sadovnikov <sadko4u@gmail.com>
4+
*
5+
* This file is part of lsp-plugins-clipper
6+
* Created on: 11 нояб. 2023 г.
7+
*
8+
* lsp-plugins-shared is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* any later version.
12+
*
13+
* lsp-plugins-shared is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Lesser General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Lesser General Public License
19+
* along with lsp-plugins-shared. If not, see <https://www.gnu.org/licenses/>.
20+
*/
21+
22+
#ifndef LSP_PLUG_IN_SHARED_DEBUG_H_
23+
#define LSP_PLUG_IN_SHARED_DEBUG_H_
24+
25+
#include <lsp-plug.in/common/debug.h>
26+
#include <lsp-plug.in/plug-fw/plug.h>
27+
28+
namespace lsp
29+
{
30+
/**
31+
* Trace port identifier and return the port passed as an argument
32+
* @param p port to trace
33+
* @return the poointer to the port passed as an argument
34+
*/
35+
static inline plug::IPort *trace_port(plug::IPort *p)
36+
{
37+
lsp_trace(" port id=%s", (p)->metadata()->id);
38+
return p;
39+
}
40+
} /* namespace lsp */
41+
42+
#endif /* LSP_PLUG_IN_SHARED_DEBUG_H_ */

include/lsp-plug.in/shared/meta/developers.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@
6969
#define LSP_LADSPA_FILTER_BASE (LSP_LADSPA_BASE + 190)
7070
#define LSP_LADSPA_BIT_BREATHER_BASE (LSP_LADSPA_BASE + 200)
7171
#define LSP_LADSPA_AUTOGAIN_BASE (LSP_LADSPA_BASE + 210)
72-
#define LSP_LADSPA_MAXIMIZER_BASE (LSP_LADSPA_BASE + 220)
72+
#define LSP_LADSPA_CLIPPER_BASE (LSP_LADSPA_BASE + 220)
73+
#define LSP_LADSPA_MB_CLIPPER_BASE (LSP_LADSPA_BASE + 230)
74+
#define LSP_LADSPA_PARA_EQUALIZER_X8 (LSP_LADSPA_BASE + 240)
75+
7376

7477
namespace lsp
7578
{

include/lsp-plug.in/shared/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#define LSP_PLUGINS_SHARED_MAJOR 1
2626
#define LSP_PLUGINS_SHARED_MINOR 0
27-
#define LSP_PLUGINS_SHARED_MICRO 19
27+
#define LSP_PLUGINS_SHARED_MICRO 20
2828

2929
#ifdef LSP_LLTL_LIB_BUILTIN
3030
#define LSP_PLUGINS_SHARED_EXPORT

modules.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
#
2020

2121
# Variables that describe dependencies
22-
LSP_COMMON_LIB_VERSION := 1.0.32
22+
LSP_COMMON_LIB_VERSION := 1.0.33
2323
LSP_COMMON_LIB_NAME := lsp-common-lib
2424
LSP_COMMON_LIB_TYPE := src
2525
LSP_COMMON_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_COMMON_LIB_NAME).git
2626
LSP_COMMON_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_COMMON_LIB_NAME).git
2727

28-
LSP_TEST_FW_VERSION := 1.0.22
28+
LSP_TEST_FW_VERSION := 1.0.23
2929
LSP_TEST_FW_NAME := lsp-test-fw
3030
LSP_TEST_FW_TYPE := src
3131
LSP_TEST_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_TEST_FW_NAME).git
3232
LSP_TEST_FW_URL_RW := git@github.com:lsp-plugins/$(LSP_TEST_FW_NAME).git
3333

34-
LSP_PLUGIN_FW_VERSION := 1.0.20
34+
LSP_PLUGIN_FW_VERSION := 1.0.21
3535
LSP_PLUGIN_FW_NAME := lsp-plugin-fw
3636
LSP_PLUGIN_FW_TYPE := src
3737
LSP_PLUGIN_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_PLUGIN_FW_NAME).git

project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ARTIFACT_ID = LSP_PLUGINS_SHARED
2323
ARTIFACT_NAME = lsp-plugins-shared
2424
ARTIFACT_DESC = Shared resources for LSP Plugins
2525
ARTIFACT_HEADERS = lsp-plug.in
26-
ARTIFACT_VERSION = 1.0.19
26+
ARTIFACT_VERSION = 1.0.20
2727
ARTIFACT_EXPORT_ALL = 1
2828

2929
# Weak property

res/doc/img/graph/clipper-scheme.png

161 KB
Loading

res/main/i18n/default/actions.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@
9999
"ui_behavior": {
100100
"": "UI behavior",
101101
"ediable_knob_scale": "Editable knob scale",
102+
"enable_zoomable_spectrum": "Automatic frequency graph scaling",
103+
"filter_point_thickness": "Filter point thickness",
102104
"override_hydrogen_kits": "Override Hydrogen kits",
103105
"vscroll": {
104106
"invert_global": "Invert vertical mouse scroll",

res/main/i18n/default/graph.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
"idS_ide": "{@id}S",
3333
"max": "max",
3434
"min": "min",
35+
"x::f": "{@value%.4f}",
3536
"x:db": "{@value} dB",
37+
"x:db:f": "{@value%.2f} dB",
3638
"x:hz": "{@value} Hz",
3739
"x:lu": "{@value} LU",
3840
"x:lufs": "{@value} LUFS",

res/main/i18n/default/groups.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121

2222
"gain": "Gain",
2323
"general": "General",
24+
25+
"global_threshold": "Global Threshold",
2426

2527
"global_delay_ctr": "Global Delay Line Controls",
2628

0 commit comments

Comments
 (0)