diff --git a/CHANGELOG.md b/CHANGELOG.md index e1715b484f8..d9fc8ca3189 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## CARLA 0.8.3 + + * Added two-wheeled vehicles, 3 bicycles and 4 motorbikes + * Several art optimizations (CARLA is now about 10% faster) + - Improved the performance of vegetation assets, adjusted LOD and culling distance, set billboards where possible + - Drastically reduced the number of polygons of the landscape while keeping the original shape + - Removed some high-cost unnecessary assets + - Remodelled Mustang and NissanMicra, now with less polygons and materials, better textures and LOD + - Remodelled building SM_TerracedHouse_01, now with more polygons but less materials and better textures + * CARLA releases include now a Dockerfile for building docker images + * Change in HUD: replace "FPS" by "Simulation Step" + * The current map name is now included in the scene description message sent to the client + * Adapted "manual_control.py" and "view_start_positions.py" to use the map name sent by the simulator + * Improved the vehicle spawning algorithm, now it tries to spawn as much cars as possible even if there are not enough spawn points + * "Setup.sh" is now faster and accepts an argument to run multiple jobs in parallel + * Fixed foliage distance culling using wrong distance in "Low Mode" + * Fixed NissanMicra slightly turning left when driving straight + ## CARLA 0.8.2 * Revamped driving benchmark diff --git a/PythonClient/setup.py b/PythonClient/setup.py index 41db70141f5..1f05f5fb8ab 100644 --- a/PythonClient/setup.py +++ b/PythonClient/setup.py @@ -4,7 +4,7 @@ setup( name='carla_client', - version='0.8.2', + version='0.8.3', packages=['carla', 'carla.driving_benchmark', 'carla.agent', 'carla.driving_benchmark.experiment_suites', 'carla.planner'], license='MIT License', diff --git a/Unreal/CarlaUE4/Config/DefaultGame.ini b/Unreal/CarlaUE4/Config/DefaultGame.ini index a4dabf0dea5..04a96c0cc0f 100644 --- a/Unreal/CarlaUE4/Config/DefaultGame.ini +++ b/Unreal/CarlaUE4/Config/DefaultGame.ini @@ -3,7 +3,7 @@ ProjectID=675BF8694238308FA9368292CC440350 ProjectName=CARLA UE4 CompanyName=CVC CopyrightNotice="Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de Barcelona (UAB). This work is licensed under the terms of the MIT license. For a copy, see ." -ProjectVersion=0.8.2 +ProjectVersion=0.8.3 [/Script/UnrealEd.ProjectPackagingSettings] BuildConfiguration=PPBC_Development diff --git a/Unreal/CarlaUE4/Plugins/Carla/Carla.uplugin b/Unreal/CarlaUE4/Plugins/Carla/Carla.uplugin index 87fe9811f73..671d9505ce2 100644 --- a/Unreal/CarlaUE4/Plugins/Carla/Carla.uplugin +++ b/Unreal/CarlaUE4/Plugins/Carla/Carla.uplugin @@ -1,7 +1,7 @@ { "FileVersion": 3, "Version": 1, - "VersionName": "0.8.2", + "VersionName": "0.8.3", "FriendlyName": "CARLA", "Description": "Open-source simulator for autonomous driving research.", "Category": "Science",