Skip to content

Commit a6ce022

Browse files
authored
Merge pull request #10 from jhu-saw/rc-2.2.0
rc 2.2.0
2 parents 39a1daf + c85072c commit a6ce022

File tree

9 files changed

+27
-17
lines changed

9 files changed

+27
-17
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Change log
22
==========
33

4+
2.2.0 (2024-08-30)
5+
==================
6+
7+
* API changes:
8+
* Now uses `cmnJointType` instead of `prmJointType`
9+
* Deprecated features:
10+
* None
11+
* New features:
12+
* None
13+
* Bug fixes:
14+
* CMake Qt library: added missing library to link on Windows
15+
416
2.1.0 (2023-11-21)
517
==================
618

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# (C) Copyright 2012-2023 Johns Hopkins University (JHU), All Rights Reserved.
2+
# (C) Copyright 2012-2024 Johns Hopkins University (JHU), All Rights Reserved.
33
#
44
# --- begin cisst license - do not edit ---
55
#
@@ -10,7 +10,7 @@
1010
# --- end cisst license ---
1111

1212
cmake_minimum_required (VERSION 3.10)
13-
project (sawControllersAll VERSION 2.1.0)
13+
project (sawControllersAll VERSION 2.2.0)
1414

1515
find_package (cisst REQUIRED)
1616
include (${CISST_USE_FILE})

components/CMakeLists.txt

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# (C) Copyright 2011-2023 Johns Hopkins University (JHU), All Rights Reserved.
2+
# (C) Copyright 2011-2024 Johns Hopkins University (JHU), All Rights Reserved.
33
#
44
# --- begin cisst license - do not edit ---
55
#
@@ -10,11 +10,7 @@
1010
# --- end cisst license ---
1111

1212
cmake_minimum_required (VERSION 3.10)
13-
project (sawControllers VERSION 2.1.0)
14-
15-
set (CMAKE_CXX_STANDARD 14)
16-
set (CMAKE_CXX_STANDARD_REQUIRED ON)
17-
set (CMAKE_CXX_EXTENSIONS OFF)
13+
project (sawControllers VERSION 2.2.0)
1814

1915
set (REQUIRED_CISST_LIBRARIES
2016
cisstCommon
@@ -25,7 +21,7 @@ set (REQUIRED_CISST_LIBRARIES
2521
cisstRobot
2622
cisstNumerical)
2723

28-
find_package (cisst 1.2.0 REQUIRED ${REQUIRED_CISST_LIBRARIES})
24+
find_package (cisst 1.3.0 REQUIRED ${REQUIRED_CISST_LIBRARIES})
2925

3026
if (cisst_FOUND)
3127

components/code/Qt/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ if (cisst_FOUND_AS_REQUIRED)
4646
VERSION ${sawControllers_VERSION}
4747
FOLDER "sawControllers")
4848
cisst_target_link_libraries (sawControllersQt ${REQUIRED_CISST_LIBRARIES})
49+
target_link_libraries (sawControllersQt
50+
${sawControllers_LIBRARIES})
4951

5052
install (TARGETS sawControllersQt COMPONENT sawControllers-Qt
5153
RUNTIME DESTINATION bin

components/code/Qt/mtsPIDQtWidget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Author(s): Zihan Chen, Anton Deguet
66
Created on: 2013-02-20
77
8-
(C) Copyright 2013-2023 Johns Hopkins University (JHU), All Rights Reserved.
8+
(C) Copyright 2013-2024 Johns Hopkins University (JHU), All Rights Reserved.
99
1010
--- begin cisst license - do not edit ---
1111
@@ -157,7 +157,7 @@ void mtsPIDQtWidget::Startup(void)
157157
UnitFactor.SetAll(0.0);
158158
} else {
159159
// set unitFactor;
160-
prmJointTypeToFactor(PID.m_configuration_js.Type(), 1.0 / cmn_mm, cmn180_PI, UnitFactor);
160+
cmnJointTypeToFactor(PID.m_configuration_js.Type(), 1.0 / cmn_mm, cmn180_PI, UnitFactor);
161161
}
162162

163163
// get other configuration from PID

components/code/mtsPIDConfiguration.cdg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ex: set filetype=cpp softtabstop=4 shiftwidth=4 tabstop=4 cindent expandtab:
33

44
inline-header {
5-
#include <cisstParameterTypes/prmJointType.h>
5+
#include <cisstCommon/cmnJointType.h>
66
#include <sawControllers/sawControllersExport.h>
77
}
88

@@ -22,7 +22,7 @@ class {
2222
}
2323
member {
2424
name type;
25-
type prmJointType;
25+
type cmnJointType;
2626
visibility public;
2727
description 1 for prismatic or 2 for revolute;
2828
}

components/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package>
22
<name>saw_controllers</name>
3-
<version>2.1.0</version>
3+
<version>2.2.0</version>
44
<description>
55
sawControllers
66
</description>

examples/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# (C) Copyright 2011-2023 Johns Hopkins University (JHU), All Rights Reserved.
2+
# (C) Copyright 2011-2024 Johns Hopkins University (JHU), All Rights Reserved.
33
#
44
# --- begin cisst license - do not edit ---
55
#
@@ -10,7 +10,7 @@
1010
# --- end cisst license ---
1111

1212
cmake_minimum_required (VERSION 3.10)
13-
project (sawControllersExamples VERSION 2.1.0)
13+
project (sawControllersExamples VERSION 2.2.0)
1414

1515
set (REQUIRED_CISST_LIBRARIES
1616
cisstCommon

examples/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package>
22
<name>saw_controllers_examples</name>
3-
<version>2.1.0</version>
3+
<version>2.2.0</version>
44
<description>
55
sawControllers Examples
66
</description>

0 commit comments

Comments
 (0)