Skip to content

Commit

Permalink
Prepare for 11.12.0 release (#3260)
Browse files Browse the repository at this point in the history
* msgs.cc: fix unrecognized wideanglecamera warning

Signed-off-by: Steve Peters <scpeters@openrobotics.org>
  • Loading branch information
scpeters authored Sep 16, 2022
1 parent 0e8e34d commit 4214fda
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)
string (TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPER)

set (GAZEBO_MAJOR_VERSION 11)
set (GAZEBO_MINOR_VERSION 11)
set (GAZEBO_MINOR_VERSION 12)
# The patch version may have been bumped for prerelease purposes; be sure to
# check gazebo-release/ubuntu/debian/changelog@default to determine what the
# next patch version should be for a regular release.
Expand Down
34 changes: 34 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
## Gazebo 11

## Gazebo 11.12.0 (2022-09-14)

1. BulletLink: add and set force and torque
* [Pull request #3255](https://github.com/osrf/gazebo/pull/3255)

1. Camera: expose intrinsics parameters
* [Pull request #3245](https://github.com/osrf/gazebo/pull/3245)

1. Add missing header includes
* [Pull request #3227](https://github.com/osrf/gazebo/pull/3227)

1. Permit users to override `USE_EXTERNAL_TINYXML2` and `USE_EXTERNAL_TINYXML`
* [Pull request #3254](https://github.com/osrf/gazebo/pull/3254)

1. CustomPSSMShadowCamera: support custom projection matrix
* [Pull request #3249](https://github.com/osrf/gazebo/pull/3249)

1. Update Readme and add gazebo logo
* [Pull request #3233](https://github.com/osrf/gazebo/pull/3233)
* [Pull request #3226](https://github.com/osrf/gazebo/pull/3226)

1. Wheel plowing approximation in ODEPhysics
* [Pull request #3164](https://github.com/osrf/gazebo/pull/3164)

1. LensFlare: parameterize number of occlusion steps
* [Pull request #3234](https://github.com/osrf/gazebo/pull/3234)
* [Pull request #3241](https://github.com/osrf/gazebo/pull/3241)

1. Support shininess value for each Visual in a Model
* [Pull request #3235](https://github.com/osrf/gazebo/pull/3235)

1. Fix shininess and add tests
* [Pull request #3231](https://github.com/osrf/gazebo/pull/3231)

## Gazebo 11.11.0 (2022-05-25)

1. Convert `OGRE_RESOURCE_PATH` with `TO_CMAKE_PATH`
Expand Down
3 changes: 2 additions & 1 deletion gazebo/msgs/msgs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,8 @@ namespace gazebo
if (_sdf->HasElement("topic"))
result.set_topic(_sdf->Get<std::string>("topic"));

if (type == "camera" || type == "depth")
if (type == "camera" || type == "depth"
|| type == "wideanglecamera" || type == "wide_angle_camera")
{
result.mutable_camera()->CopyFrom(
msgs::CameraSensorFromSDF(_sdf->GetElement("camera")));
Expand Down

0 comments on commit 4214fda

Please sign in to comment.