Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Oct 19, 2024
2 parents c6348a6 + 9186b4b commit 6141f89
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
6 changes: 5 additions & 1 deletion apps/rosbag2rawlog/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

if(NOT TARGET ros1bridge)
return()
# Try to find it as an external project (needed for mrpt_ros package)
find_package(ros1bridge QUIET)
if(NOT TARGET ros1bridge)
return()
endif()
endif()

project(rosbag2rawlog)
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# version format
version: 2.14.3-{branch}-build{build}
version: 2.14.4-{branch}-build{build}

os: Visual Studio 2019

Expand Down
5 changes: 5 additions & 0 deletions doc/source/doxygen-docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
\page changelog Change Log

# Version 2.14.4: Released Oct 19th, 2024
- BUG FIXES:
- mrpt::nav::CAbstractPTGBasedReactive: Missing heading information in recently-added TP-Space targets as TPose2D.
- rosbag2rawlog: Fix detection of mrpt-ros1bridge when built within mrpt_ros ROS packaging.

# Version 2.14.3: Released Oct 12th, 2024
- Changes in libraries:
- \ref mrpt_img_grp:
Expand Down
1 change: 1 addition & 0 deletions libs/nav/src/reactive/CAbstractPTGBasedReactive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1462,6 +1462,7 @@ void CAbstractPTGBasedReactive::build_movement_candidate(
ptg_target.target_alpha = ptg->index2alpha(ptg_target.target_k);
ptg_target.TP_Target.x = cos(ptg_target.target_alpha) * ptg_target.target_dist;
ptg_target.TP_Target.y = sin(ptg_target.target_alpha) * ptg_target.target_dist;
ptg_target.TP_Target.phi = trg.phi;

ipf.targets.emplace_back(ptg_target);
}
Expand Down
4 changes: 2 additions & 2 deletions samples/nav_rrt_planning_example/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ void TestRRT1()
// gridmap.getAsPointCloud( planner_input.obstacles_points );

// Workspace bounding box:
planner_input.world_bbox_min = mrpt::math::TPoint2D(bbox.min.x, bbox.min.y);
planner_input.world_bbox_max = mrpt::math::TPoint2D(bbox.max.x, bbox.max.y);
planner_input.world_bbox_min = {bbox.min.x, bbox.min.y, -M_PI};
planner_input.world_bbox_max = {bbox.max.x, bbox.max.y, +M_PI};

// size_t iters=0;
// Show results in a GUI and keep improving:
Expand Down
2 changes: 1 addition & 1 deletion version_prefix.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2.14.3
2.14.4
# IMPORTANT: This file is parsed by CMake, don't add any comment to
# the first line.
# This file is used in both Windows and Linux scripts to automatically
Expand Down

0 comments on commit 6141f89

Please sign in to comment.