File tree Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 2
2
* RECENT CHANGES
3
3
*******************************************************************************
4
4
5
+ === 1.0.21 ===
6
+ * Updated build scripts.
7
+ * Updated module versions in dependencies.
8
+
5
9
=== 1.0.20 ===
6
10
* Optimization of compressor and gate functions using AVX-512 instruction set.
7
11
* Introduced SIMD-optimized expander curve and gain functions.
Original file line number Diff line number Diff line change 25
25
// Define version of headers
26
26
#define LSP_DSP_LIB_MAJOR 1
27
27
#define LSP_DSP_LIB_MINOR 0
28
- #define LSP_DSP_LIB_MICRO 20
28
+ #define LSP_DSP_LIB_MICRO 21
29
29
30
30
#if defined(__WINDOWS__ ) || defined(__WIN32__ ) || defined(__WIN64__ ) || defined(_WIN64 ) || defined(_WIN32 ) || defined(__WINNT ) || defined(__WINNT__ )
31
31
#define LSP_DSP_LIB_EXPORT_MODIFIER __declspec(dllexport)
Original file line number Diff line number Diff line change @@ -61,3 +61,9 @@ vmajor = $(shell echo "$(strip $1)" | sed -E 's/([0-9]+)\.([0-9
61
61
vminor = $(shell echo "$(strip $1) " | sed -E 's/([0-9]+) \.([0-9]+)\.([0-9]+)(-(.*))?/\2/')
62
62
vmicro = $(shell echo "$(strip $1) " | sed -E 's/([0-9]+) \.([0-9]+)\.([0-9]+)(-(.*))?/\3/')
63
63
vbranch = $(shell echo "$(strip $1) " | sed -E 's/([0-9]+) \.([0-9]+)\.([0-9]+)(-(.*))?/\5/')
64
+
65
+ ifeq ("$(MSYSTEM ) ","")
66
+ pathconv = $1
67
+ else
68
+ pathconv = $(shell cygpath -w "$1")
69
+ endif
Original file line number Diff line number Diff line change 19
19
#
20
20
21
21
# Variables that describe dependencies
22
- LSP_COMMON_LIB_VERSION := 1.0.33
22
+ LSP_COMMON_LIB_VERSION := 1.0.34
23
23
LSP_COMMON_LIB_NAME := lsp-common-lib
24
24
LSP_COMMON_LIB_TYPE := src
25
25
LSP_COMMON_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_COMMON_LIB_NAME ) .git
26
26
LSP_COMMON_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_COMMON_LIB_NAME ) .git
27
27
28
- LSP_TEST_FW_VERSION := 1.0.23
28
+ LSP_TEST_FW_VERSION := 1.0.24
29
29
LSP_TEST_FW_NAME := lsp-test-fw
30
30
LSP_TEST_FW_TYPE := src
31
31
LSP_TEST_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_TEST_FW_NAME ) .git
Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ ARTIFACT_ID = LSP_DSP_LIB
23
23
ARTIFACT_NAME = lsp-dsp-lib
24
24
ARTIFACT_DESC = DSP library for digital signal processing
25
25
ARTIFACT_HEADERS = lsp-plug.in
26
- ARTIFACT_VERSION = 1.0.20
26
+ ARTIFACT_VERSION = 1.0.21
You can’t perform that action at this time.
0 commit comments