Skip to content

Commit 730c43d

Browse files
committed
Release 1.0.2
* Added support of JACK connection status indication. * Fixed the icon installation script. * Added different icons for branding into the code tree. * Fixed typo in Wavefront Object File Format name.
2 parents 543512d + 7e738f3 commit 730c43d

Some content is hidden

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

53 files changed

+1665
-31
lines changed

CHANGELOG

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

5+
=== 1.0.2 ===
6+
* Added support of JACK connection status indication.
7+
* Fixed the icon installation script.
8+
* Added different icons for branding into the code tree.
9+
* Fixed typo in Wavefront Object File Format name.
10+
511
=== 1.0.1 ===
612
* Update build.
713

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 1
27+
#define LSP_PLUGINS_SHARED_MICRO 2
2828

2929
#ifdef LSP_LLTL_LIB_BUILTIN
3030
#define LSP_PLUGINS_SHARED_EXPORT

make/tools.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ INSTALL := $(X_INSTALL_TOOL)
6363

6464
# Patch flags and tools for (cross) build
6565
FLAG_RELRO = -Wl,-z,relro,-z,now
66-
FLAG_STDLIB = -lc
66+
FLAG_STDLIB =
6767
CFLAGS_EXT = $(ARCHITECTURE_CFLAGS)
6868
CXXFLAGS_EXT = $(ARCHITECTURE_CFLAGS)
6969
EXE_FLAGS_EXT = $(ARCHITECTURE_CFLAGS)
@@ -136,7 +136,7 @@ CXXDEFS += -DLSP_INSTALL_PREFIX=\\\"$(PREFIX)\\\"
136136
INCLUDE :=
137137
LDFLAGS := $(LDFLAGS_EXT) -r
138138
EXE_FLAGS := $(EXE_FLAGS_EXT) $(FLAG_RELRO) -Wl,--gc-sections
139-
SO_FLAGS := $(SO_FLAGS_EXT) $(FLAG_RELRO) -Wl,--gc-sections -shared -Llibrary $(FLAG_STDLIB) -fPIC
139+
SO_FLAGS := $(SO_FLAGS_EXT) $(FLAG_RELRO) -Wl,--gc-sections -shared $(FLAG_STDLIB) -fPIC
140140

141141
# Define flags for host build
142142
HOST_CFLAGS := $(CFLAGS)

modules.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ 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.1
34+
LSP_PLUGIN_FW_VERSION := 1.0.3
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.1
26+
ARTIFACT_VERSION = 1.0.2
2727
ARTIFACT_EXPORT_ALL = 1
2828

2929
# Weak property

res/branding/lsp-01.svg

Lines changed: 120 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)