From 7d88e7f6963e702e433f717ac72f975b431315fc Mon Sep 17 00:00:00 2001 From: Nate Koenig Date: Wed, 25 Oct 2023 07:38:08 -0700 Subject: [PATCH] Remove ignition (#525) Signed-off-by: Nate Koenig Co-authored-by: Michael Carroll --- NEWS | 2 +- graphics/src/AssimpLoader.cc | 2 +- src/Filesystem_TEST.cc | 4 ++-- tutorials/profiler.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 6b7be6e12..a73d9b7c1 100644 --- a/NEWS +++ b/NEWS @@ -1 +1 @@ -http://ignition_robotics.org +http://gazebosim.org diff --git a/graphics/src/AssimpLoader.cc b/graphics/src/AssimpLoader.cc index 0b5961021..183880a5f 100644 --- a/graphics/src/AssimpLoader.cc +++ b/graphics/src/AssimpLoader.cc @@ -55,7 +55,7 @@ class AssimpLoader::Implementation /// \brief the Assimp importer used to parse meshes public: Assimp::Importer importer; - /// \brief Convert a color from assimp implementation to Ignition common + /// \brief Convert a color from assimp implementation to Gazebo common /// \param[in] _color the assimp color to convert /// \return the matching math::Color public: math::Color ConvertColor(aiColor4D& _color) const; diff --git a/src/Filesystem_TEST.cc b/src/Filesystem_TEST.cc index 86a72c8ad..dad616fa4 100644 --- a/src/Filesystem_TEST.cc +++ b/src/Filesystem_TEST.cc @@ -357,8 +357,8 @@ TEST_F(FilesystemTest, append) #endif // Make sure that the slashes in the middle of string are not altered. - path = joinPaths("https://fuel.ignitionrobotics.org", "/models", "box"); - EXPECT_EQ(path, "https://fuel.ignitionrobotics.org/models/box"); + path = joinPaths("https://fuel.gazebosim.org", "/models", "box"); + EXPECT_EQ(path, "https://fuel.gazebosim.org/models/box"); } ///////////////////////////////////////////////// diff --git a/tutorials/profiler.md b/tutorials/profiler.md index eea7b83ce..94cfe1107 100644 --- a/tutorials/profiler.md +++ b/tutorials/profiler.md @@ -63,7 +63,7 @@ cmake_minimum_required(VERSION 2.8 FATAL_ERROR) find_package(gz-common6 QUIET REQUIRED COMPONENTS profiler) add_executable(profiler_example profiler.cc) -target_link_libraries(profiler_example ignition-common6::profiler) +target_link_libraries(profiler_example gz-common6::profiler) # Enable the profiler for the example target_compile_definitions(profiler_example PUBLIC "GZ_PROFILER_ENABLE=1") ```