Skip to content

Commit 51af095

Browse files
committed
Release 1.0.21
* Updated module versions in dependencies.
2 parents e74fb04 + 3449baf commit 51af095

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+5434
-3688
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.21 ===
6+
* Updated module versions in dependencies.
7+
58
=== 1.0.20 ===
69
* Updated module versions in dependencies.
710

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

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,28 @@ namespace lsp
3737
lsp_trace(" port id=%s", (p)->metadata()->id);
3838
return p;
3939
}
40+
41+
#ifdef LSP_TRACE
42+
#define BIND_PORT(dst) \
43+
do { \
44+
dst = ports[port_id++]; \
45+
const ::lsp::meta::port_t *port_meta_ = dst->metadata(); \
46+
lsp_trace("Bind port %s -> %s (%s)", port_meta_->id, LSP_STRINGIFY(dst), port_meta_->name); \
47+
} while (false)
48+
49+
#define SKIP_PORT(dst) \
50+
do { \
51+
const ::lsp::meta::port_t *port_meta_ = ports[port_id++]->metadata(); \
52+
lsp_trace("Skip port %s -> %s (%s)", port_meta_->id, LSP_STRINGIFY(dst), port_meta_->name); \
53+
} while (false)
54+
#else
55+
#define BIND_PORT(dst) \
56+
dst = ports[port_id++];
57+
58+
#define SKIP_PORT(dst) \
59+
++port_id;
60+
#endif /* LSP_TRACE */
61+
4062
} /* namespace lsp */
4163

4264
#endif /* LSP_PLUG_IN_SHARED_DEBUG_H_ */

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
#define LSP_LADSPA_URI(id) LSP_BASE_URI "plugins/ladspa/" id
3333
#define LSP_LV2UI_URI(id) LSP_BASE_URI "ui/lv2/" id
3434
#define LSP_CLAP_URI(id) "in.lsp-plug." id
35+
#define LSP_VST3_UID(id) "dsp " id
36+
#define LSP_VST3UI_UID(id) "ui " id
3537

3638
// LADSPA identifier allocation
3739
#define LSP_LADSPA_PHASE_DETECTOR_BASE (LSP_LADSPA_BASE + 0)

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 20
27+
#define LSP_PLUGINS_SHARED_MICRO 21
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.33
22+
LSP_COMMON_LIB_VERSION := 1.0.34
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.23
28+
LSP_TEST_FW_VERSION := 1.0.24
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.21
34+
LSP_PLUGIN_FW_VERSION := 1.0.22
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.20
26+
ARTIFACT_VERSION = 1.0.21
2727
ARTIFACT_EXPORT_ALL = 1
2828

2929
# Weak property

res/doc/img/ui_guidlines/bottom.png

1.95 KB
Loading

res/doc/img/ui_guidlines/cgroup.png

14.1 KB
Loading

res/doc/img/ui_guidlines/cycles.png

19.7 KB
Loading

res/doc/img/ui_guidlines/gott.png

169 KB
Loading

0 commit comments

Comments
 (0)