Skip to content

Commit f083c5e

Browse files
committed
Code update, preparing for release
1 parent b831b9a commit f083c5e

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

dependencies.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Variables that describe dependencies
2-
LSP_COMMON_LIB_VERSION := 1.0.2
2+
LSP_COMMON_LIB_VERSION := 1.0.3
33
LSP_COMMON_LIB_NAME := lsp-common-lib
44
LSP_COMMON_LIB_URL := https://github.com/sadko4u/$(LSP_COMMON_LIB_NAME).git
55
LSP_COMMON_LIB_TYPE := hdr
66

7-
LSP_TEST_FW_VERSION := 1.0.2
7+
LSP_TEST_FW_VERSION := 1.0.3
88
LSP_TEST_FW_NAME := lsp-test-fw
99
LSP_TEST_FW_URL := https://github.com/sadko4u/$(LSP_TEST_FW_NAME).git
1010
LSP_TEST_FW_TYPE := src

include/lsp-plug.in/r3d/backend.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ namespace lsp
1919
{
2020
typedef struct backend_metadata_t
2121
{
22-
const char *id; // Enumeration unique identifier
23-
const char *display; // Display name
22+
const char *id; // Enumeration unique identifier
23+
const char *display; // Display name
24+
const char *lc_key; // Localized display name key
25+
version_t version; // Interface version
2426
} backend_metadata_t;
2527

2628
/**

include/lsp-plug.in/r3d/factory.h

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
#include <lsp-plug.in/r3d/types.h>
1313
#include <lsp-plug.in/r3d/base_backend.h>
1414

15-
#define R3D_FACTORY_FUNCTION_NAME "lsp_r3d_factory"
16-
1715
namespace lsp
1816
{
1917
namespace r3d
@@ -38,10 +36,9 @@ namespace lsp
3836

3937
/**
4038
* Factory function prototype
41-
* @param version
42-
* @return
39+
* @return pointer to the factory function
4340
*/
44-
typedef factory_t *(* factory_function_t)(const char *version);
41+
typedef factory_t *(* factory_function_t)();
4542
}
4643
}
4744

include/lsp-plug.in/r3d/types.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
#include <lsp-plug.in/r3d/version.h>
1212
#include <lsp-plug.in/common/types.h>
1313

14+
#define LSP_R3D_FACTORY_FUNCTION_NAME "lsp_r3d_factory"
15+
#define LSP_R3D_FACTORY_VERSION_NAME "lsp_r3d_version"
16+
1417
namespace lsp
1518
{
1619
namespace r3d

include/lsp-plug.in/r3d/version.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@
1212
#define LSP_R3D_BASE_MINOR 5
1313
#define LSP_R3D_BASE_MICRO 0
1414

15-
1615
#endif /* LSP_PLUG_IN_R3D_VERSION_H_ */

project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARTIFACT_NAME = lsp-r3d-base-lib
33
ARTIFACT_VARS = LSP_R3D_BASE_LIB
44
ARTIFACT_HEADERS = lsp-plug.in
55
ARTIFACT_EXPORT_ALL = 0
6-
VERSION = 0.5.0-devel
6+
VERSION = 0.5.0
77

88
# List of dependencies
99
TEST_DEPENDENCIES = \

0 commit comments

Comments
 (0)