Skip to content

Commit

Permalink
Merge branch 'gz-rendering7' into ogre_shaders
Browse files Browse the repository at this point in the history
  • Loading branch information
iche033 authored Sep 29, 2023
2 parents 20ca0c7 + 61bf635 commit 410b4d6
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
#============================================================================
# Initialize the project
#============================================================================
project(gz-rendering7 VERSION 7.4.1)
project(gz-rendering7 VERSION 7.4.2)

#============================================================================
# Find gz-cmake
Expand Down
38 changes: 38 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

### Gazebo Rendering 7.X

### Gazebo Rendering 7.4.2 (2023-09-26)

1. ogre2: use CMAKE_INSTALL_RPATH
* [Pull request #909](https://github.com/gazebosim/gz-rendering/pull/909)

1. Disable setting color range in particle emitter
* [Pull request #903](https://github.com/gazebosim/gz-rendering/pull/903)

1. Documentation updates
* [Pull request #892](https://github.com/gazebosim/gz-rendering/pull/892)
* [Pull request #896](https://github.com/gazebosim/gz-rendering/pull/896)

1. Revert mesh viewer background color back to gray
* [Pull request #894](https://github.com/gazebosim/gz-rendering/pull/894)

### Gazebo Rendering 7.4.1 (2023-08-17)

1. Infrastructure
Expand Down Expand Up @@ -365,6 +380,29 @@

### Gazebo Rendering 6.X

### Gazebo Rendering 6.6.1 (2023-09-01)

1. Fixed light visual in OGRE
* [Pull request #864](https://github.com/gazebosim/gz-rendering/pull/864)

1. Lower severity level for ogre2 visibility mask msgs and unavailable render passes
* [Pull request #830](https://github.com/gazebosim/gz-rendering/pull/830)

1. Infrastructure
* [Pull request #834](https://github.com/gazebosim/gz-rendering/pull/834)

1. Rename COPYING to LICENSE
* [Pull request #833](https://github.com/gazebosim/gz-rendering/pull/833)

1. Add message to see troubleshooting page when render engine fails to create dummy window
* [Pull request #829](https://github.com/gazebosim/gz-rendering/pull/829)

1. Tweak max camera position limit
* [Pull request #827](https://github.com/gazebosim/gz-rendering/pull/827)

1. Limit max camera position vector length
* [Pull request #824](https://github.com/gazebosim/gz-rendering/pull/824)

### Gazebo Rendering 6.6.0 (2023-02-02)

1. Backport Composite BaseVisual destroy fix to 6
Expand Down
2 changes: 1 addition & 1 deletion examples/mesh_viewer/Main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void buildScene(ScenePtr _scene)
{
// initialize _scene
_scene->SetAmbientLight(0.3, 0.3, 0.3);
_scene->SetBackgroundColor(0.0, 0.0, 0.3);
_scene->SetBackgroundColor(0.3, 0.3, 0.3);
VisualPtr root = _scene->RootVisual();

// create directional light
Expand Down

0 comments on commit 410b4d6

Please sign in to comment.