Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3 ➡️ 4 #1017

Merged
merged 9 commits into from
Sep 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ if (NOT APPLE)
API_MAINPAGE_MD "${CMAKE_BINARY_DIR}/api.md"
TUTORIALS_MAINPAGE_MD "${CMAKE_BINARY_DIR}/tutorials.md"
ADDITIONAL_INPUT_DIRS "${CMAKE_SOURCE_DIR}/src/systems ${CMAKE_SOURCE_DIR}/src/gui/plugins"
IMAGE_PATH_DIRS "${CMAKE_SOURCE_DIR}/tutorials/files"
TAGFILES
"${IGNITION-MATH_DOXYGEN_TAGFILE} = ${IGNITION-MATH_API_URL}"
"${IGNITION-MSGS_DOXYGEN_TAGFILE} = ${IGNITION-MSGS_API_URL}"
Expand Down
8 changes: 7 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,13 @@
### Ignition Gazebo 3.X.X (202X-XX-XX)


### Ignition Gazebo 3.9.0 (2021-08-XX)
### Ignition Gazebo 3.9.0 (2021-08-16)

1. Entity tree: prevent creation of repeated entity items
* [Pull request #974](https://github.com/ignitionrobotics/ign-gazebo/pull/974)

1. Don't use $HOME on most tests (InternalFixture)
* [Pull request #971](https://github.com/ignitionrobotics/ign-gazebo/pull/971)

1. Be more specific when looking for physics plugins
* [Pull request #965](https://github.com/ignitionrobotics/ign-gazebo/pull/965)
Expand Down
103 changes: 0 additions & 103 deletions bitbucket-pipelines.yml

This file was deleted.

1 change: 1 addition & 0 deletions examples/worlds/logical_camera_sensor.sdf
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
<alwaysOn>1</alwaysOn>
<visualize>true</visualize>
<topic>logical_camera</topic>
<enable_metrics>true</enable_metrics>
</sensor>
</link>
</model>
Expand Down
1 change: 0 additions & 1 deletion examples/worlds/pendulum_links.sdf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

-->

<?xml version="1.0" ?>
<sdf version="1.7">
<world name="double_pendulum">
<physics name="1ms" type="ignored">
Expand Down
4 changes: 4 additions & 0 deletions examples/worlds/sensors.sdf
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
<update_rate>30</update_rate>
<visualize>true</visualize>
<topic>altimeter</topic>
<enable_metrics>true</enable_metrics>
<altimeter>
<vertical_position>
<noise type="gaussian">
Expand All @@ -136,6 +137,7 @@
<update_rate>30</update_rate>
<visualize>true</visualize>
<topic>air_pressure</topic>
<enable_metrics>true</enable_metrics>
<air_pressure>
<reference_altitude>123</reference_altitude>
<pressure>
Expand All @@ -152,12 +154,14 @@
<update_rate>100</update_rate>
<visualize>true</visualize>
<topic>imu</topic>
<enable_metrics>true</enable_metrics>
</sensor>
<sensor name="magnetometer" type="magnetometer">
<always_on>1</always_on>
<update_rate>100</update_rate>
<visualize>true</visualize>
<topic>magnetometer</topic>
<enable_metrics>true</enable_metrics>
<magnetometer>
<x>
<noise type="gaussian">
Expand Down
4 changes: 4 additions & 0 deletions examples/worlds/sensors_demo.sdf
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,12 @@
<update_rate>30</update_rate>
<visualize>true</visualize>
<topic>camera_alone</topic>
<enable_metrics>true</enable_metrics>
</sensor>
<sensor name="depth_camera1" type="depth_camera">
<update_rate>10</update_rate>
<topic>depth_camera</topic>
<enable_metrics>true</enable_metrics>
<camera>
<horizontal_fov>1.05</horizontal_fov>
<image>
Expand Down Expand Up @@ -344,6 +346,7 @@
<sensor name='gpu_lidar' type='gpu_lidar'>"
<topic>lidar</topic>
<update_rate>10</update_rate>
<enable_metrics>true</enable_metrics>
<ray>
<scan>
<horizontal>
Expand Down Expand Up @@ -415,6 +418,7 @@
<update_rate>30</update_rate>
<visualize>true</visualize>
<topic>rgbd_camera</topic>
<enable_metrics>true</enable_metrics>
</sensor>
</link>
</model>
Expand Down
Loading