From 6278a635ebc4ededecda1d61407869dfdc772e1e Mon Sep 17 00:00:00 2001 From: f0reachARR Date: Fri, 20 Dec 2024 12:01:36 +0900 Subject: [PATCH] Add jazzy as supported distribution --- src/Ros2ForUnity/Scripts/ROS2ForUnity.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ros2ForUnity/Scripts/ROS2ForUnity.cs b/src/Ros2ForUnity/Scripts/ROS2ForUnity.cs index 4ba7cfd..7d2c317 100644 --- a/src/Ros2ForUnity/Scripts/ROS2ForUnity.cs +++ b/src/Ros2ForUnity/Scripts/ROS2ForUnity.cs @@ -203,7 +203,7 @@ public string GetROSVersionSourced() /// private void CheckROSSupport(string ros2Codename) { - List supportedVersions = new List() { "foxy", "galactic", "humble", "rolling" }; + List supportedVersions = new List() { "foxy", "galactic", "humble", "jazzy", "rolling" }; var supportedVersionsString = String.Join(", ", supportedVersions); if (string.IsNullOrEmpty(ros2Codename)) {