Skip to content

Commit d8fb274

Browse files
committed
Release 1.0.31
* Added reset envelope button. * Updated build scripts and dependencies.
2 parents b5ace68 + 16032ba commit d8fb274

19 files changed

Lines changed: 176 additions & 19 deletions

CHANGELOG

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

5+
=== 1.0.31 ===
6+
* Added reset envelope button.
7+
* Updated build scripts and dependencies.
8+
59
=== 1.0.30 ===
610
* Updated build scripts and dependencies.
711

include/private/ui/sampler.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ namespace lsp
133133
tk::MessageBox *wMessageBox;
134134
tk::Edit *wCurrentInstrument; // Name of the current instrument
135135
tk::ComboGroup *wInstrumentsGroup; // Instruments group
136+
tk::Button *wResetEnvelope; // Reset envelope
136137
DragInSink *pDragInSink; // Drag&drop sink
137138

138139
lltl::parray<tk::Widget> vHydrogenMenus;
@@ -161,6 +162,8 @@ namespace lsp
161162

162163
static status_t slot_drag_request(tk::Widget *sender, void *ptr, void *data);
163164

165+
static status_t slot_reset_envelope(tk::Widget *sender, void *ptr, void *data);
166+
164167
protected:
165168
static ssize_t cmp_drumkit_files(const h2drumkit_t *a, const h2drumkit_t *b);
166169
static ssize_t cmp_sfz_regions(const sfz_region_t *a, const sfz_region_t *b);
@@ -178,10 +181,15 @@ namespace lsp
178181
status_t import_sfz_file(const io::Path *base, const io::Path *path);
179182
status_t add_sample(const io::Path *base, int id, int jd, const hydrogen::layer_t *layer);
180183
status_t add_instrument(int id, const hydrogen::instrument_t *inst);
184+
void begin_edit(const char *fmt...);
185+
void end_edit(const char *fmt...);
186+
void notify_port(const char *fmt...);
187+
void set_default_value(const char *fmt...);
181188
void set_float_value(float value, const char *fmt...);
182189
void set_path_value(const char *path, const char *fmt...);
183190
void set_kvt_instrument_name(core::KVTStorage *kvt, int id, const char *name);
184191
void set_ui_instrument_name(inst_name_t *inst, const LSPString *name);
192+
void reset_current_envelope();
185193

186194
void sync_hydrogen_files();
187195
void lookup_hydrogen_files();

modules.mk

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

2121
# Variables that describe dependencies
22-
LSP_3RD_PARTY_VERSION := 1.0.23
22+
LSP_3RD_PARTY_VERSION := 1.0.24
2323
LSP_3RD_PARTY_NAME := lsp-3rd-party
2424
LSP_3RD_PARTY_TYPE := hdr
2525
LSP_3RD_PARTY_INC_OPT := -idirafter
@@ -32,19 +32,19 @@ LSP_COMMON_LIB_TYPE := src
3232
LSP_COMMON_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_COMMON_LIB_NAME).git
3333
LSP_COMMON_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_COMMON_LIB_NAME).git
3434

35-
LSP_DSP_LIB_VERSION := 1.0.31
35+
LSP_DSP_LIB_VERSION := 1.0.32
3636
LSP_DSP_LIB_NAME := lsp-dsp-lib
3737
LSP_DSP_LIB_TYPE := src
3838
LSP_DSP_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_DSP_LIB_NAME).git
3939
LSP_DSP_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_DSP_LIB_NAME).git
4040

41-
LSP_DSP_UNITS_VERSION := 1.0.30
41+
LSP_DSP_UNITS_VERSION := 1.0.31
4242
LSP_DSP_UNITS_NAME := lsp-dsp-units
4343
LSP_DSP_UNITS_TYPE := src
4444
LSP_DSP_UNITS_URL_RO := https://github.com/lsp-plugins/$(LSP_DSP_UNITS_NAME).git
4545
LSP_DSP_UNITS_URL_RW := git@github.com:lsp-plugins/$(LSP_DSP_UNITS_NAME).git
4646

47-
LSP_LLTL_LIB_VERSION := 1.0.26
47+
LSP_LLTL_LIB_VERSION := 1.0.27
4848
LSP_LLTL_LIB_NAME := lsp-lltl-lib
4949
LSP_LLTL_LIB_TYPE := src
5050
LSP_LLTL_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_LLTL_LIB_NAME).git
@@ -74,7 +74,7 @@ LSP_R3D_WGL_LIB_TYPE := bin
7474
LSP_R3D_WGL_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_R3D_WGL_LIB_NAME).git
7575
LSP_R3D_WGL_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_R3D_WGL_LIB_NAME).git
7676

77-
LSP_RUNTIME_LIB_VERSION := 1.0.29
77+
LSP_RUNTIME_LIB_VERSION := 1.0.30
7878
LSP_RUNTIME_LIB_NAME := lsp-runtime-lib
7979
LSP_RUNTIME_LIB_TYPE := src
8080
LSP_RUNTIME_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_RUNTIME_LIB_NAME).git
@@ -86,26 +86,26 @@ LSP_TEST_FW_TYPE := src
8686
LSP_TEST_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_TEST_FW_NAME).git
8787
LSP_TEST_FW_URL_RW := git@github.com:lsp-plugins/$(LSP_TEST_FW_NAME).git
8888

89-
LSP_TK_LIB_VERSION := 1.0.29
89+
LSP_TK_LIB_VERSION := 1.0.30
9090
LSP_TK_LIB_NAME := lsp-tk-lib
9191
LSP_TK_LIB_TYPE := src
9292
LSP_TK_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_TK_LIB_NAME).git
9393
LSP_TK_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_TK_LIB_NAME).git
9494

95-
LSP_WS_LIB_VERSION := 1.0.29
95+
LSP_WS_LIB_VERSION := 1.0.30
9696
LSP_WS_LIB_NAME := lsp-ws-lib
9797
LSP_WS_LIB_TYPE := src
9898
LSP_WS_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_WS_LIB_NAME).git
9999
LSP_WS_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_WS_LIB_NAME).git
100100

101101
# Plugin-related module dependencies
102-
LSP_PLUGIN_FW_VERSION := 1.0.31
102+
LSP_PLUGIN_FW_VERSION := 1.0.32
103103
LSP_PLUGIN_FW_NAME := lsp-plugin-fw
104104
LSP_PLUGIN_FW_TYPE := src
105105
LSP_PLUGIN_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_PLUGIN_FW_NAME).git
106106
LSP_PLUGIN_FW_URL_RW := git@github.com:lsp-plugins/$(LSP_PLUGIN_FW_NAME).git
107107

108-
LSP_PLUGINS_SHARED_VERSION := 1.0.30
108+
LSP_PLUGINS_SHARED_VERSION := 1.0.31
109109
LSP_PLUGINS_SHARED_NAME := lsp-plugins-shared
110110
LSP_PLUGINS_SHARED_TYPE := src
111111
LSP_PLUGINS_SHARED_URL_RO := https://github.com/lsp-plugins/$(LSP_PLUGINS_SHARED_NAME).git

project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ARTIFACT_TYPE = plug
2525
ARTIFACT_DESC = LSP Sampler Plugin Series
2626
ARTIFACT_HEADERS = lsp-plug.in
2727
ARTIFACT_EXPORT_HEADERS = 0
28-
ARTIFACT_VERSION = 1.0.30
28+
ARTIFACT_VERSION = 1.0.31
2929

3030

3131

-10.5 KB
Loading
-10.5 KB
Loading
-10.3 KB
Loading
-9.84 KB
Loading
-10.3 KB
Loading
-10.3 KB
Loading

0 commit comments

Comments
 (0)