Skip to content

Commit 88ad5f7

Browse files
authored
Merge pull request #53 from introlab/dev
Main merge for 1.0.3 release
2 parents 07f4f98 + 8e4b047 commit 88ad5f7

File tree

3,025 files changed

+781639
-1707
lines changed

Some content is hidden

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

3,025 files changed

+781639
-1707
lines changed

.gitmodules

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,4 @@
33
url = https://github.com/protocolbuffers/protobuf.git
44
[submodule "external/messages"]
55
path = external/messages
6-
url = https://github.com/introlab/opentera_messages.git
7-
[submodule "external/opentera-webcamoid"]
8-
path = external/opentera-webcamoid
9-
url = https://github.com/introlab/opentera-webcamoid.git
10-
branch = devel
6+
url = https://github.com/introlab/opentera_messages.git

CMakeLists.txt

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cmake_policy(SET CMP0043 NEW)
1313
# Software version
1414
SET(CPACK_PACKAGE_VERSION_MAJOR "1")
1515
SET(CPACK_PACKAGE_VERSION_MINOR "0")
16-
SET(CPACK_PACKAGE_VERSION_PATCH "2")
16+
SET(CPACK_PACKAGE_VERSION_PATCH "3")
1717
SET(CPACK_PACKAGE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
1818
add_definitions(-DOPENTERAPLUS_VERSION="${CPACK_PACKAGE_VERSION}" )
1919
add_definitions(-DOPENTERAPLUS_VERSION_MAJOR="${CPACK_PACKAGE_VERSION_MAJOR}" )
@@ -30,6 +30,13 @@ endif(NOT CMAKE_BUILD_TYPE)
3030
set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME openteraplus)
3131
set(CMAKE_INSTALL_PREFIX ${CMAKE_CURRENT_SOURCE_DIR}/deploy)
3232

33+
if (APPLE)
34+
set(CMAKE_INSTALL_BINDIR OpenTeraPlus.app/Contents/bin)
35+
set(CMAKE_INSTALL_LIBDIR OpenTeraPlus.app/Contents/lib)
36+
set (CMAKE_INSTALL_INCLUDEDIR OpenTeraPlus.app/Contents/include)
37+
endif(APPLE)
38+
39+
3340
set(CMAKE_VERBOSE_MAKEFILE ON)
3441
set(CMAKE_CXX_STANDARD 11)
3542
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
@@ -52,8 +59,11 @@ add_subdirectory(client)
5259
# Tests
5360
add_subdirectory(tests)
5461

62+
# Readme and other files
63+
add_custom_target(readme SOURCES README.md LICENSE.TXT)
64+
65+
# Install LICENSE / README
66+
install(FILES README.md LICENSE.TXT DESTINATION .)
67+
5568
# Package
5669
add_subdirectory(package)
57-
58-
# Readme and other files
59-
add_custom_target(readme SOURCES README.md)

client/resources/TeraClient.qrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,5 +133,13 @@
133133
<file>icons/random.png</file>
134134
<file>logos/LogoOpenTeraPlus.png</file>
135135
<file>icons/OpenTeraPlus.ico</file>
136+
<file>icons/record.png</file>
137+
<file>icons/record_stop.png</file>
138+
<file>controls/green_button.png</file>
139+
<file>controls/grey_button.png</file>
140+
<file>controls/red_button.png</file>
141+
<file>controls/yellow_button.png</file>
142+
<file>controls/blue_button.png</file>
143+
<file>controls/blue_button_pressed.png</file>
136144
</qresource>
137145
</RCC>
2.33 KB
Loading
2.29 KB
Loading
99.9 KB
Loading
32.2 KB
Loading
84.7 KB
Loading
2.2 KB
Loading

client/resources/defaults/OpenTeraPlus.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"Settings": {
33
"showServers": true,
4-
"logToFile": true
4+
"logToFile": true,
5+
"kitMode": false
56
},
67
"Servers": {
78
"Local - Port 40075": {

0 commit comments

Comments
 (0)