Skip to content

Commit

Permalink
Release 1.0.11
Browse files Browse the repository at this point in the history
* Updated build scripts and dependencies.
  • Loading branch information
sadko4u committed Dec 22, 2023
2 parents d18130b + e5900a1 commit 03741a8
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 22 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
run: make VERBOSE=1
- name: Install binaries
run: make install
- name: System information
run: lscpu
- name: Lint LV2 plugins
run: |
for _plugin in $(jq -r '.plugins[].lv2_uri | select( . != null )' ${{ env.PLUGIN_METADATA }} ); do \
Expand Down Expand Up @@ -80,6 +82,8 @@ jobs:
run: make VERBOSE=1
- name: Install binaries
run: make install
- name: System information
run: lscpu
- name: LADSPA runtime checks
run: |
for _plugin in $(jq -r '.plugins[].ladspa_label | select( . != null )' ${{ env.PLUGIN_METADATA }}); do \
Expand Down Expand Up @@ -119,6 +123,8 @@ jobs:
run: make VERBOSE=1
- name: Install binaries
run: make install
- name: System information
run: lscpu
- name: LADSPA runtime checks
run: |
for _plugin in $(jq -r '.plugins[].ladspa_label | select( . != null )' ${{ env.PLUGIN_METADATA }}); do \
Expand Down
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.11 ===
* Updated build scripts and dependencies.

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

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ help:
$(MAKE) -f "$(BASEDIR)/make/configure.mk" $(@) VERBOSE="$(VERBOSE)"
echo ""
echo "Available FEATURES:"
echo " clap CLAP plugin format binaries"
echo " doc Generate standalone HTML documentation"
echo " jack Standalone JACK plugins"
echo " ladspa LADSPA plugins"
Expand Down
4 changes: 2 additions & 2 deletions make/tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ else ifeq ($(PLATFORM),BSD)
endif

ifeq ($(DEBUG),1)
CFLAGS_EXT += -Og -g3 -DLSP_DEBUG
CXXFLAGS_EXT += -Og -g3 -DLSP_DEBUG
CFLAGS_EXT += -Og -g3 -DLSP_DEBUG -falign-functions=16
CXXFLAGS_EXT += -Og -g3 -DLSP_DEBUG -falign-functions=16
else
CFLAGS_EXT += -O2
CXXFLAGS_EXT += -O2
Expand Down
30 changes: 15 additions & 15 deletions modules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,93 +19,93 @@
#

# Variables that describe dependencies
LSP_3RD_PARTY_VERSION := 1.0.13
LSP_3RD_PARTY_VERSION := 1.0.14
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 := git@github.com:lsp-plugins/$(LSP_3RD_PARTY_NAME).git

LSP_COMMON_LIB_VERSION := 1.0.32
LSP_COMMON_LIB_VERSION := 1.0.33
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 := git@github.com:lsp-plugins/$(LSP_COMMON_LIB_NAME).git

LSP_DSP_LIB_VERSION := 1.0.19
LSP_DSP_LIB_VERSION := 1.0.20
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 := git@github.com:lsp-plugins/$(LSP_DSP_LIB_NAME).git

LSP_DSP_UNITS_VERSION := 1.0.18
LSP_DSP_UNITS_VERSION := 1.0.19
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 := git@github.com:lsp-plugins/$(LSP_DSP_UNITS_NAME).git

LSP_LLTL_LIB_VERSION := 1.0.15
LSP_LLTL_LIB_VERSION := 1.0.16
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 := git@github.com:lsp-plugins/$(LSP_LLTL_LIB_NAME).git

LSP_R3D_BASE_LIB_VERSION := 1.0.15
LSP_R3D_BASE_LIB_VERSION := 1.0.16
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 := git@github.com:lsp-plugins/$(LSP_R3D_BASE_LIB_NAME).git

LSP_R3D_IFACE_VERSION := 1.0.15
LSP_R3D_IFACE_VERSION := 1.0.16
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 := git@github.com:lsp-plugins/$(LSP_R3D_IFACE_NAME).git

LSP_R3D_GLX_LIB_VERSION := 1.0.15
LSP_R3D_GLX_LIB_VERSION := 1.0.16
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 := git@github.com:lsp-plugins/$(LSP_R3D_GLX_LIB_NAME).git

LSP_R3D_WGL_LIB_VERSION := 1.0.10
LSP_R3D_WGL_LIB_VERSION := 1.0.11
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 := git@github.com:lsp-plugins/$(LSP_R3D_WGL_LIB_NAME).git

LSP_RUNTIME_LIB_VERSION := 1.0.18
LSP_RUNTIME_LIB_VERSION := 1.0.19
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
LSP_RUNTIME_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_RUNTIME_LIB_NAME).git

LSP_TEST_FW_VERSION := 1.0.22
LSP_TEST_FW_VERSION := 1.0.23
LSP_TEST_FW_NAME := lsp-test-fw
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 := git@github.com:lsp-plugins/$(LSP_TEST_FW_NAME).git

LSP_TK_LIB_VERSION := 1.0.18
LSP_TK_LIB_VERSION := 1.0.19
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 := git@github.com:lsp-plugins/$(LSP_TK_LIB_NAME).git

LSP_WS_LIB_VERSION := 1.0.18
LSP_WS_LIB_VERSION := 1.0.19
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 := git@github.com:lsp-plugins/$(LSP_WS_LIB_NAME).git

# Plugin-related module dependencies
LSP_PLUGIN_FW_VERSION := 1.0.20
LSP_PLUGIN_FW_VERSION := 1.0.21
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 := git@github.com:lsp-plugins/$(LSP_PLUGIN_FW_NAME).git

LSP_PLUGINS_SHARED_VERSION := 1.0.19
LSP_PLUGINS_SHARED_VERSION := 1.0.20
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 Noise Generator Plugin Series
ARTIFACT_HEADERS = lsp-plug.in
ARTIFACT_EXPORT_HEADERS = 0
ARTIFACT_VERSION = 1.0.10
ARTIFACT_VERSION = 1.0.11



Binary file modified res/doc/screenshots/noise_generator_x1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/doc/screenshots/noise_generator_x2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/doc/screenshots/noise_generator_x4.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions res/main/ui/util/noise_generator.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,20 +48,20 @@
<!-- Meshes -->
<ui:for id="i" first="1" count="4">
<ui:set id="hue" value="${(:i-1.0)/:channels}" />
<mesh id="isg_${i}" width="2" smooth="false"
<mesh id="isg_${i}" width="2" smooth="true"
color="graph_mesh_cycle" color.hue="${hue}" />
</ui:for>
<ui:for id="i" first="1" count="4">
<ui:set id="hue" value="${(:i-1)/4.0}" />
<mesh id="nsc_${i}" width="2" smooth="true"
color="graph_mesh_cycle" color.hue="${hue}" fill="true"
fcolor="graph_mesh_cycle" fcolor.hue="${hue}" fcolor.a="0.8" />
<mesh id="nsg_${i}" width="2" smooth="false"
<mesh id="nsg_${i}" width="2" smooth="true"
color="graph_mesh_cycle" color.hue="${hue}" />
</ui:for>
<ui:for id="i" first="1" count="4">
<ui:set id="hue" value="${(:i-1.0)/:channels}" />
<mesh id="osg_${i}" width="2" smooth="false"
<mesh id="osg_${i}" width="2" smooth="true"
color="graph_mesh_cycle" color.hue="${hue}" />
</ui:for>

Expand Down
5 changes: 4 additions & 1 deletion src/main/meta/noise_generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

#define LSP_PLUGINS_NOISE_GENERATOR_VERSION_MAJOR 1
#define LSP_PLUGINS_NOISE_GENERATOR_VERSION_MINOR 0
#define LSP_PLUGINS_NOISE_GENERATOR_VERSION_MICRO 10
#define LSP_PLUGINS_NOISE_GENERATOR_VERSION_MICRO 11

#define LSP_PLUGINS_NOISE_GENERATOR_VERSION \
LSP_MODULE_VERSION( \
Expand Down Expand Up @@ -265,6 +265,7 @@ namespace lsp

const plugin_t noise_generator_x1 =
{
"Noise Generator x1",
"Noise Generator x1",
"Noise Generator x1",
"NG1",
Expand All @@ -289,6 +290,7 @@ namespace lsp

const plugin_t noise_generator_x2 =
{
"Noise Generator x2",
"Noise Generator x2",
"Noise Generator x2",
"NG2",
Expand All @@ -313,6 +315,7 @@ namespace lsp

const plugin_t noise_generator_x4 =
{
"Noise Generator x4",
"Noise Generator x4",
"Noise Generator x4",
"NG4",
Expand Down

0 comments on commit 03741a8

Please sign in to comment.