Skip to content

Commit

Permalink
Merge branch 'ign-gazebo4' into particle_system
Browse files Browse the repository at this point in the history
  • Loading branch information
iche033 authored Feb 17, 2021
2 parents 2ed1013 + 5e0c773 commit 8c13dce
Show file tree
Hide file tree
Showing 37 changed files with 3,867 additions and 119 deletions.
29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

23 changes: 0 additions & 23 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

52 changes: 0 additions & 52 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

6 changes: 0 additions & 6 deletions .github/PULL_REQUEST_TEMPLATE/port.md

This file was deleted.

4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5.1 FATAL_ERROR)
#============================================================================
# Initialize the project
#============================================================================
project(ignition-gazebo4 VERSION 4.3.0)
project(ignition-gazebo4 VERSION 4.4.0)

#============================================================================
# Find ignition-cmake
Expand Down Expand Up @@ -53,7 +53,7 @@ set(IGN_TRANSPORT_VER ${ignition-transport9_VERSION_MAJOR})

#--------------------------------------
# Find ignition-msgs
ign_find_package(ignition-msgs6 REQUIRED)
ign_find_package(ignition-msgs6 REQUIRED VERSION 6.2)
set(IGN_MSGS_VER ${ignition-msgs6_VERSION_MAJOR})

#--------------------------------------
Expand Down
17 changes: 17 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
## Ignition Gazebo 4.x

### Ignition Gazebo 4.4.0 (2020-02-10)

1. Added issue and PR templates
* [Pull Request 613](https://github.com/ignitionrobotics/ign-gazebo/pull/613)

1. Fix segfault in SetRemovedComponentsMsgs method
* [Pull Request 495](https://github.com/ignitionrobotics/ign-gazebo/pull/495)

1. Make topics configurable for joint controllers
* [Pull Request 584](https://github.com/ignitionrobotics/ign-gazebo/pull/584)

1. Add about dialog
* [Pull Request 609](https://github.com/ignitionrobotics/ign-gazebo/pull/609)

1. Add thermal sensor system for configuring thermal camera properties
* [Pull Request 614](https://github.com/ignitionrobotics/ign-gazebo/pull/614)

### Ignition Gazebo 4.3.0 (2020-02-02)

1. Non-blocking paths request.
Expand Down
7 changes: 4 additions & 3 deletions examples/worlds/joint_position_controller.sdf
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
Try sending joint position commands:
ign topic -t "/model/joint_position_controller_demo/joint/j1/0/cmd_pos" -m ignition.msgs.Double -p "data: -1.0"
ign topic -t "/rotor_cmd" -m ignition.msgs.Double -p "data: -1.0"
ign topic -t "/model/joint_position_controller_demo/joint/j1/0/cmd_pos" -m ignition.msgs.Double -p "data: 1.0"
ign topic -t "/rotor_cmd" -m ignition.msgs.Double -p "data: 1.0"
-->
<sdf version="1.6">
<world name="default">
Expand Down Expand Up @@ -45,7 +45,7 @@
<property type="double" key="height">72</property>
<property type="double" key="width">121</property>
<property type="double" key="z">1</property>

<property type="string" key="state">floating</property>
<anchors target="3D View">
<line own="left" target="left"/>
Expand Down Expand Up @@ -156,6 +156,7 @@
filename="ignition-gazebo-joint-position-controller-system"
name="ignition::gazebo::systems::JointPositionController">
<joint_name>j1</joint_name>
<topic>rotor_cmd</topic>
<p_gain>1</p_gain>
<i_gain>0.1</i_gain>
<d_gain>0.01</d_gain>
Expand Down
Loading

0 comments on commit 8c13dce

Please sign in to comment.