Skip to content

Commit

Permalink
rc-2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adeguet1 committed Jan 17, 2025
1 parent 0cf81ab commit bc6c3c9
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 17 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Change log
==========

2.3.1 (2025-01-17)
==================

* API changes:
* The dvrk_console_json will close all the relays for the user. You shouldn't need to use `qlacommand -c close-relays` anymore! This can be overriden in the console JSON config.
* All arms are re-homed and the encoder preload on the controllers are ignored. It's a bit slower but prevents some issues with potentiometer drift. This can be overriden in the console JSON config.
* Deprecated features:
* All site specific directories under `share` have been removed. Repositories with the existing files have been created under https://github.com/orgs/dvrk-config/repositories. Let Anton know if you need access to your site's repository.
* New features:
* Added more arm_from_ros
* Added script to reconnect all bluetooth for SUJ Si
* Bug fixes:
* Added missing include for Ubuntu 24.04
* Fixed bug when using -I


2.3.0 (2024-08-30)
==================

Expand Down
4 changes: 2 additions & 2 deletions core/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# (C) Copyright 2009-2024 Johns Hopkins University (JHU), All Rights Reserved.
# (C) Copyright 2009-2025 Johns Hopkins University (JHU), All Rights Reserved.
#
# --- begin cisst license - do not edit ---
#
Expand All @@ -10,7 +10,7 @@
# --- end cisst license ---

cmake_minimum_required(VERSION 3.10)
project (sawIntuitiveResearchKitCore VERSION 2.3.0)
project (sawIntuitiveResearchKitCore VERSION 2.3.1)

find_package (cisst REQUIRED)
include (${CISST_USE_FILE})
Expand Down
6 changes: 3 additions & 3 deletions core/components/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# (C) Copyright 2011-2024 Johns Hopkins University (JHU), All Rights Reserved.
# (C) Copyright 2011-2025 Johns Hopkins University (JHU), All Rights Reserved.
#
# --- begin cisst license - do not edit ---
#
Expand All @@ -10,7 +10,7 @@
# --- end cisst license ---

cmake_minimum_required (VERSION 3.10)
project (sawIntuitiveResearchKit VERSION 2.3.0)
project (sawIntuitiveResearchKit VERSION 2.3.1)

set (REQUIRED_CISST_LIBRARIES
cisstCommon
Expand All @@ -22,7 +22,7 @@ set (REQUIRED_CISST_LIBRARIES
cisstRobot
cisstNumerical)

find_package (cisst 1.3.0 REQUIRED ${REQUIRED_CISST_LIBRARIES})
find_package (cisst 1.3.1 REQUIRED ${REQUIRED_CISST_LIBRARIES})

if (cisst_FOUND)

Expand Down
2 changes: 1 addition & 1 deletion core/components/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package>
<name>saw_intuitive_research_kit</name>
<version>2.3.0</version>
<version>2.3.1</version>
<description>
sawIntuitiveResearchKit
</description>
Expand Down
6 changes: 3 additions & 3 deletions ros/dvrk_arms_from_ros/components/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# (C) Copyright 2020-2024 Johns Hopkins University (JHU), All Rights Reserved.
# (C) Copyright 2020-2025 Johns Hopkins University (JHU), All Rights Reserved.
#
# --- begin cisst license - do not edit ---
#
Expand All @@ -10,7 +10,7 @@
# --- end cisst license ---

cmake_minimum_required (VERSION 3.10)
project (dvrk_arms_from_ros VERSION 2.3.0)
project (dvrk_arms_from_ros VERSION 2.3.1)


# first test for ROS1
Expand Down Expand Up @@ -59,7 +59,7 @@ set (REQUIRED_CISST_LIBRARIES
cisstParameterTypes
)

find_package (cisst 1.3.0 REQUIRED ${REQUIRED_CISST_LIBRARIES})
find_package (cisst 1.3.1 REQUIRED ${REQUIRED_CISST_LIBRARIES})

if (cisst_FOUND_AS_REQUIRED)

Expand Down
2 changes: 1 addition & 1 deletion ros/dvrk_arms_from_ros/components/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="3">
<name>dvrk_arms_from_ros</name>
<version>2.3.0</version>
<version>2.3.1</version>
<description>
sawIntuitiveResearchKit compatible arm from ROS topics
</description>
Expand Down
8 changes: 4 additions & 4 deletions ros/dvrk_robot/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# (C) Copyright 2015-2024 Johns Hopkins University (JHU), All Rights Reserved.
# (C) Copyright 2015-2025 Johns Hopkins University (JHU), All Rights Reserved.
#
# --- begin cisst license - do not edit ---
#
Expand All @@ -10,7 +10,7 @@
# --- end cisst license ---

cmake_minimum_required (VERSION 3.10)
project (dvrk_robot VERSION 2.3.0)
project (dvrk_robot VERSION 2.3.1)

# first test for ROS1
set (ROS1_depends cisst_ros_crtk roscpp roslib)
Expand Down Expand Up @@ -65,7 +65,7 @@ set (
cisstQt
)

find_package (cisst 1.3.0 REQUIRED ${REQUIRED_CISST_LIBRARIES})
find_package (cisst 1.3.1 REQUIRED ${REQUIRED_CISST_LIBRARIES})

if (cisst_FOUND_AS_REQUIRED)

Expand All @@ -78,7 +78,7 @@ if (cisst_FOUND_AS_REQUIRED)
# sawRobotIO1394 has been compiled within cisst, we should find it automatically
find_package (sawRobotIO1394 2.3.0 REQUIRED)
find_package (sawControllers 2.2.0 REQUIRED)
find_package (sawIntuitiveResearchKit 2.3.0 REQUIRED)
find_package (sawIntuitiveResearchKit 2.3.1 REQUIRED)

include_directories (
${dvrk_robot_SOURCE_DIR}/include
Expand Down
2 changes: 1 addition & 1 deletion ros/dvrk_robot/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>dvrk_robot</name>
<version>2.3.0</version>
<version>2.3.1</version>
<description>The dvrk_robot package</description>
<maintainer email="[email protected]">Anton Deguet</maintainer>
<license>cisst</license>
Expand Down
2 changes: 1 addition & 1 deletion share/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required (VERSION 3.10)
project (dvrk_config VERSION 2.3.0)
project (dvrk_config VERSION 2.3.1)

# ROS 1
find_package (catkin QUIET)
Expand Down
2 changes: 1 addition & 1 deletion share/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>dvrk_config</name>
<version>2.3.0</version>
<version>2.3.1</version>
<description>dVRK config files</description>

<maintainer email="[email protected]">Anton Deguet</maintainer>
Expand Down

0 comments on commit bc6c3c9

Please sign in to comment.