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 1d64e88c authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

Merge pull request #644 in VECTO/vecto-sim from ~EMQUARIMA/vecto-sim:master to master

* commit 'b54bdfe8':
  adding checklist for new release
  new VECTO release
  updating release notes
  release candidate versions
parents a278d2e5 b54bdfe8
Branches
Tags Release/v3.3.0.1398-RC
No related merge requests found
Showing
with 81 additions and 26 deletions
File added
No preview for this file type
No preview for this file type
......@@ -2,6 +2,22 @@
**VECTO 3.3.0**
***Build 1398 (2018-10-30)***
- Bugfixes
* [VECTO-723] - Simulation aborts with engine speed too high in RD cycle
* [VECTO-724] - Simulation aborts with error 'EngineSpeedTooHigh' - duplicate of VECTO-744
* [VECTO-728] - Simulation aborts when vehicle's max speed (n95h) is below the target speed
* [VECTO-730] - Simulation Aborts with ResponseOverload
* [VECTO-744] - ResponseEngineSpeedTooHigh (due to torque limits in gearbox)
* [VECTO-731] - Case Mismatch - Torque Converter
* [VECTO-711] - Elements without types in CIF and MRF
* [VECTO-757] - Correct contact mail address in Hashing Tool
* [VECTO-703] - PTO output in MRF file
* [VECTO-713] - Manufacturer Information File in the legislation is not compatible with the Simulation results
* [VECTO-704] - Allow VTP-simulations for AT gearboxes
***Build 1250 (2018-06-04)***
......
This diff is collapsed.
Documentation/VECTO-3.3.0.1398_FC-comparison.PNG

58 KiB

File added
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("0.2.0.1250")]
[assembly: AssemblyFileVersion("0.2.0.1250")]
[assembly: AssemblyVersion("0.2.0.1398")]
[assembly: AssemblyFileVersion("0.2.0.1398")]
......@@ -8,11 +8,11 @@ Option 1: Compiling from the command-line
you can build VECTO using the following command:
"c:\Program Files (x86)\MSBuild\12.0\Bin\MSBuild.exe" Vecto.sln /t:Build /p:Configuration=Release
"c:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" Vecto.sln /t:Build /p:Configuration=Release
or
"c:\Program Files (x86)\MSBuild\12.0\Bin\MSBuild.exe" Vecto.sln /t:Build /p:Configuration=Debug
"c:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" Vecto.sln /t:Build /p:Configuration=Debug
Option 2: Load the solution file in Visual Studio and compile VECTO.
......
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("3.3.0.1250")]
[assembly: AssemblyFileVersion("3.3.0.1250")]
\ No newline at end of file
[assembly: AssemblyVersion("3.3.0.1398")]
[assembly: AssemblyFileVersion("3.3.0.1398")]
\ No newline at end of file
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("1.2.0.1250")]
[assembly: AssemblyFileVersion("1.2.0.1250")]
[assembly: AssemblyVersion("1.2.0.1398")]
[assembly: AssemblyFileVersion("1.2.0.1398")]
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("3.3.0.1250")]
[assembly: AssemblyFileVersion("3.3.0.1250")]
\ No newline at end of file
[assembly: AssemblyVersion("3.3.0.1398")]
[assembly: AssemblyFileVersion("3.3.0.1398")]
\ No newline at end of file
......@@ -151,8 +151,12 @@ namespace TUGraz.VectoCore.OutputData.XML
private XElement GetApplicationInfo()
{
var versionNumber = VectoSimulationCore.VersionNumber;
#if RELEASE_CANDIDATE
versionNumber += " !!NOT FOR CERTIFICATION!!";
#endif
return new XElement(tns + XMLNames.Report_ApplicationInfo_ApplicationInformation,
new XElement(tns + XMLNames.Report_ApplicationInfo_SimulationToolVersion, VectoSimulationCore.VersionNumber),
new XElement(tns + XMLNames.Report_ApplicationInfo_SimulationToolVersion, versionNumber),
new XElement(tns + XMLNames.Report_ApplicationInfo_Date,
XmlConvert.ToString(DateTime.Now, XmlDateTimeSerializationMode.Utc)));
}
......
......@@ -342,8 +342,12 @@ namespace TUGraz.VectoCore.OutputData.XML
private XElement GetApplicationInfo()
{
var versionNumber = VectoSimulationCore.VersionNumber;
#if RELEASE_CANDIDATE
versionNumber += " !!NOT FOR CERTIFICATION!!";
#endif
return new XElement(tns + XMLNames.Report_ApplicationInfo_ApplicationInformation,
new XElement(tns + XMLNames.Report_ApplicationInfo_SimulationToolVersion, VectoSimulationCore.VersionNumber),
new XElement(tns + XMLNames.Report_ApplicationInfo_SimulationToolVersion, versionNumber),
new XElement(tns + XMLNames.Report_ApplicationInfo_Date,
XmlConvert.ToString(DateTime.Now, XmlDateTimeSerializationMode.Utc)));
}
......
......@@ -30,5 +30,5 @@
*/
using System.Reflection;
[assembly: AssemblyVersion("3.3.0.1250")]
[assembly: AssemblyFileVersion("3.3.0.1250")]
[assembly: AssemblyVersion("3.3.0.1398")]
[assembly: AssemblyFileVersion("3.3.0.1398")]
......@@ -33,10 +33,17 @@ namespace TUGraz.VectoCore.Utils
{
public static class VectoSimulationCore
{
#if RELEASE_CANDIDATE
private const string SUFFIX = "-RC";
#else
private const string SUFFIX = "";
#endif
public static string VersionNumber
{
get {
return "3.3.0.1250";
return "3.3.0.1398" + SUFFIX;
}
}
......
......@@ -36,10 +36,17 @@ namespace TUGraz.VectoCore.Utils
{
public static class VectoSimulationCore
{
#if RELEASE_CANDIDATE
private const string SUFFIX = "-RC";
#else
private const string SUFFIX = "";
#endif
public static string VersionNumber
{
get {
return "<#= GetVectoCoreVersionNumber() #>";
return "<#= GetVectoCoreVersionNumber() #>" + SUFFIX;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment