Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 7509e54c authored by Martin Dippold's avatar Martin Dippold
Browse files

* New version number

  * Adaption of gearbox types. Old gearbox types are also valid
  * Update DemoData
  * Update ReleaseNotes
parent c54a276b
Branches
Tags
No related merge requests found
VECTO-AirDrag: Changes
===================
#### 2019-01-31: v3.1.9 ####
TUG improvements:
* New version number
* Adaption of gearbox types. Old gearbox types are also valid
* Update DemoData
* Update ReleaseNotes
#### 2019-01-04: v3.1.8 ####
TUG improvements:
......
......@@ -18,7 +18,9 @@ Public Enum VehicleConfig
End Enum
Public Enum gearBoxConfig
AT
APT
MT_AMT
SMT
AMT
DCT
......@@ -116,7 +118,7 @@ The generic parameters for classes are stored in the GenShape.shp",
},
"gearBox_type": {
"title": "gearBox type",
"enum": ["SMT", "AMT", "DCT", "APT"],
"enum": ["SMT", "AMT", "DCT", "APT", "AT", "MT_AMT"],
"required": true,
"title": "Gear box type is SMT, AMT, DCT or APT?",
},
......@@ -282,13 +284,13 @@ The generic parameters for classes are stored in the GenShape.shp",
Public ReadOnly Property IsAPT As Boolean
Get
Return Me.gearBox_type = gearBoxConfig.APT
Return (Me.gearBox_type = gearBoxConfig.APT Or Me.gearBox_type = gearBoxConfig.AT)
End Get
End Property
Public ReadOnly Property IsSMT_AMT_DCT As Boolean
Get
Return (Me.gearBox_type = gearBoxConfig.SMT Or Me.gearBox_type = gearBoxConfig.AMT Or Me.gearBox_type = gearBoxConfig.DCT)
Return (Me.gearBox_type = gearBoxConfig.SMT Or Me.gearBox_type = gearBoxConfig.AMT Or Me.gearBox_type = gearBoxConfig.DCT Or Me.gearBox_type = gearBoxConfig.MT_AMT)
End Get
End Property
End Class
......@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("3.1.8.0")>
<Assembly: AssemblyFileVersion("3.1.8.0")>
<Assembly: AssemblyVersion("3.1.9.0")>
<Assembly: AssemblyFileVersion("3.1.9.0")>
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment