Changing version to 0.9.8
This commit is contained in:
parent
d5e96c539f
commit
7509e9d8de
|
@ -1,4 +1,4 @@
|
|||
## latest
|
||||
## CARLA 0.9.8
|
||||
|
||||
* Added beta version sumo-carla co-simulation.
|
||||
* Traffic Manager:
|
||||
|
|
|
@ -53,7 +53,7 @@ sudo apt-get install carla
|
|||
</p>
|
||||
</div>
|
||||
|
||||
The repository contains the different versions of the simulator available. The _development_ and _stable_ sections, contain the packages for the different official releases. The later the version the more experimental it is. The _nightly build_ is the current development version as today and so, the most unstable (developers are currently working with this build). By the time this documentation is written, __CARLA 0.9.7__ is the latest containing all new features (such as traffic manager), but __CARLA 0.8.2__ is the stable one, recommended for those who are looking for a neat run.
|
||||
The repository contains the different versions of the simulator available. The _development_ and _stable_ sections, contain the packages for the different official releases. The later the version the more experimental it is. The _nightly build_ is the current development version as today and so, the most unstable (developers are currently working with this build). If you want a more robust version, you may search for the latest tagged version.
|
||||
|
||||
!!! note
|
||||
Latest Windows release is __CARLA 0.9.5__, but this is to be updated soon.
|
||||
|
|
|
@ -125,7 +125,7 @@ def get_libcarla_extensions():
|
|||
|
||||
setup(
|
||||
name='carla',
|
||||
version='0.9.7',
|
||||
version='0.9.8',
|
||||
package_dir={'': 'source'},
|
||||
packages=['carla'],
|
||||
ext_modules=get_libcarla_extensions(),
|
||||
|
|
|
@ -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 <https://opensource.org/licenses/MIT>."
|
||||
ProjectVersion=0.9.7
|
||||
ProjectVersion=0.9.8
|
||||
|
||||
[/Script/Carla.CarlaSettings]
|
||||
+LowRoadMaterials=(MaterialInterface=MaterialInstanceConstant'"/Game/Carla/Static/GenericMaterials/Ground/SimpleRoad/CheapRoad.CheapRoad"',MaterialSlotName="Tileroad_Road",ImportedMaterialSlotName="",UVChannelData=(bInitialized=False,bOverrideDensities=False,LocalUVDensities[0]=0.000000,LocalUVDensities[1]=0.000000,LocalUVDensities[2]=0.000000,LocalUVDensities[3]=0.000000))
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"FileVersion": 3,
|
||||
"Version": 1,
|
||||
"VersionName": "0.9.7",
|
||||
"VersionName": "0.9.8",
|
||||
"FriendlyName": "CARLA",
|
||||
"Description": "Open-source simulator for autonomous driving research.",
|
||||
"Category": "Science",
|
||||
|
|
|
@ -30,4 +30,4 @@
|
|||
0.9.5: 20190404_c7b464a
|
||||
0.9.6: 20190710_0097e66
|
||||
0.9.7: 20191221_c88604b
|
||||
0.9.8: 20200306_3e9cfad
|
||||
0.9.8: 20200306_06b6cb1
|
||||
|
|
|
@ -9,17 +9,17 @@ sudo apt-get install build-essential dh-make
|
|||
DEBFULLNAME=Carla\ Simulator\ Team
|
||||
export DEBFULLNAME
|
||||
|
||||
#replace carla-0.9.7 with your required carla-<version>
|
||||
CARLA_DIR=carla-0.9.7
|
||||
CARLA_VERSION=0.9.7
|
||||
#replace CARLA_VERSION with your required carla-<version>
|
||||
CARLA_VERSION=0.9.8
|
||||
CARLA_DIR=carla-${CARLA_VERSION}
|
||||
|
||||
#replace the url with your carla release url
|
||||
CARLA_RELEASE_REPO=http://carla-assets-internal.s3.amazonaws.com/Releases/Linux/CARLA_0.9.7.tar.gz
|
||||
CARLA_RELEASE_REPO=http://carla-assets-internal.s3.amazonaws.com/Releases/Linux/CARLA_${CARLA_VERSION}.tar.gz
|
||||
|
||||
#replace the url with your required additional maps url
|
||||
#if you do not have additional map then comment line 21, 22, 40, 41
|
||||
ADDITIONALMAPS=http://carla-assets-internal.s3.amazonaws.com/Releases/Linux/AdditionalMaps_0.9.7.tar.gz
|
||||
ADDITIONALMAPS_TAR=AdditionalMaps_0.9.7.tar.gz
|
||||
ADDITIONALMAPS=http://carla-assets-internal.s3.amazonaws.com/Releases/Linux/AdditionalMaps_${CARLA_VERSION}.tar.gz
|
||||
ADDITIONALMAPS_TAR=AdditionalMaps_${CARLA_VERSION}.tar.gz
|
||||
|
||||
mkdir -p carla-debian/${CARLA_DIR}
|
||||
cd carla-debian/${CARLA_DIR}
|
||||
|
|
Loading…
Reference in New Issue