File tree Expand file tree Collapse file tree 5 files changed +18
-9
lines changed
include/lsp-plug.in/r3d/base Expand file tree Collapse file tree 5 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 2
2
* RECENT CHANGES
3
3
*******************************************************************************
4
4
5
+ === 1.0.19 ===
6
+ * Updated build scripts.
7
+ * Updated module versions in dependencies.
8
+
5
9
=== 1.0.18 ===
6
10
* Updated build scripts.
7
11
* Updated module versions in dependencies.
Original file line number Diff line number Diff line change 24
24
25
25
#define LSP_R3D_BASE_LIB_MAJOR 1
26
26
#define LSP_R3D_BASE_LIB_MINOR 0
27
- #define LSP_R3D_BASE_LIB_MICRO 18
27
+ #define LSP_R3D_BASE_LIB_MICRO 19
28
28
29
29
#if defined(LSP_R3D_BASE_LIB_PUBLISHER )
30
30
#define LSP_R3D_BASE_LIB_PUBLIC LSP_EXPORT_MODIFIER
Original file line number Diff line number Diff line change @@ -80,10 +80,15 @@ $(ALL_SRC_MODULES) $(ALL_HDR_MODULES):
80
80
$(GIT ) -C " $( $( @) _PATH) " reset --hard
81
81
$(GIT ) -C " $( $( @) _PATH) " fetch origin --force --prune --prune-tags
82
82
$(GIT ) -C " $( $( @) _PATH) " fetch origin ' refs/tags/*:refs/tags/*' --force
83
- $(GIT ) -c advice.detachedHead=false -C " $( $( @) _PATH) " checkout -B " $( $( @) _BRANCH) " " origin/$( $( @) _BRANCH) " || \
84
- $(GIT ) -c advice.detachedHead=false -C " $( $( @) _PATH) " checkout " refs/tags/$( $( @) _BRANCH) " || \
85
- $(GIT ) -c advice.detachedHead=false -C " $( $( @) _PATH) " checkout -B " $( $( @) _NAME) -$( $( @) _BRANCH) " " origin/$( $( @) _NAME) -$( $( @) _BRANCH) " || \
86
- $(GIT ) -c advice.detachedHead=false -C " $( $( @) _PATH) " checkout " refs/tags/$( $( @) _NAME) -$( $( @) _BRANCH) "
83
+ if $( GIT) -C " $( $( @) _PATH) " rev-parse -q --verify " origin/$( $( @) _BRANCH) " > /dev/null; then \
84
+ $(GIT ) -c advice.detachedHead=false -C " $( $( @) _PATH) " checkout -B " $( $( @) _BRANCH) " " origin/$( $( @) _BRANCH) " > /dev/null; \
85
+ elif $(GIT ) -C " $( $( @) _PATH) " rev-parse -q --verify " refs/tags/$( $( @) _BRANCH) " > /dev/null; then \
86
+ $(GIT ) -c advice.detachedHead=false -C " $( $( @) _PATH) " checkout " refs/tags/$( $( @) _BRANCH) " ; \
87
+ elif $(GIT ) -C " $( $( @) _PATH) " rev-parse -q --verify " origin/$( $( @) _NAME) -$( $( @) _BRANCH) " > /dev/null; then \
88
+ $(GIT ) -c advice.detachedHead=false -C " $( $( @) _PATH) " checkout -B " $( $( @) _NAME) -$( $( @) _BRANCH) " " origin/$( $( @) _NAME) -$( $( @) _BRANCH) " ; \
89
+ else \
90
+ $(GIT ) -c advice.detachedHead=false -C " $( $( @) _PATH) " checkout " refs/tags/$( $( @) _NAME) -$( $( @) _BRANCH) " ; \
91
+ fi
87
92
88
93
fetch : $(SRC_MODULES ) $(HDR_MODULES )
89
94
Original file line number Diff line number Diff line change 20
20
21
21
# ------------------------------------------------------------------------------
22
22
# Variables that describe source code dependencies
23
- LSP_COMMON_LIB_VERSION := 1.0.36
23
+ LSP_COMMON_LIB_VERSION := 1.0.37
24
24
LSP_COMMON_LIB_NAME := lsp-common-lib
25
25
LSP_COMMON_LIB_TYPE := src
26
26
LSP_COMMON_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_COMMON_LIB_NAME ) .git
27
27
LSP_COMMON_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_COMMON_LIB_NAME ) .git
28
28
29
- LSP_TEST_FW_VERSION := 1.0.25
29
+ LSP_TEST_FW_VERSION := 1.0.26
30
30
LSP_TEST_FW_NAME := lsp-test-fw
31
31
LSP_TEST_FW_TYPE := src
32
32
LSP_TEST_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_TEST_FW_NAME ) .git
33
33
LSP_TEST_FW_URL_RW := git@github.com:lsp-plugins/$(LSP_TEST_FW_NAME ) .git
34
34
35
- LSP_R3D_IFACE_VERSION := 1.0.18
35
+ LSP_R3D_IFACE_VERSION := 1.0.19
36
36
LSP_R3D_IFACE_NAME := lsp-r3d-iface
37
37
LSP_R3D_IFACE_TYPE := src
38
38
LSP_R3D_IFACE_URL_RO := https://github.com/lsp-plugins/$(LSP_R3D_IFACE_NAME ) .git
Original file line number Diff line number Diff line change @@ -23,5 +23,5 @@ ARTIFACT_ID = LSP_R3D_BASE_LIB
23
23
ARTIFACT_NAME = lsp-r3d-base-lib
24
24
ARTIFACT_DESC = Base library for implementing and loading 3D rendering backend
25
25
ARTIFACT_HEADERS = lsp-plug.in
26
- ARTIFACT_VERSION = 1.0.18
26
+ ARTIFACT_VERSION = 1.0.19
27
27
ARTIFACT_EXPORT_SYMBOLS = 0
You can’t perform that action at this time.
0 commit comments