Code development platform for open source projects from the European Union institutions

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
No related branches found
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 @@ ...@@ -2,6 +2,22 @@
**VECTO 3.3.0** **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)*** ***Build 1250 (2018-06-04)***
......
This diff is collapsed.
Documentation/VECTO-3.3.0.1398_FC-comparison.PNG

58 KiB

File added
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* by the European Commission - subsequent versions of the EUPL (the "Licence"); * by the European Commission - subsequent versions of the EUPL (the "Licence");
* You may not use VECTO except in compliance with the Licence. * You may not use VECTO except in compliance with the Licence.
* You may obtain a copy of the Licence at: * You may obtain a copy of the Licence at:
* *
* https://joinup.ec.europa.eu/community/eupl/og_page/eupl * https://joinup.ec.europa.eu/community/eupl/og_page/eupl
* *
* Unless required by applicable law or agreed to in writing, VECTO * Unless required by applicable law or agreed to in writing, VECTO
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("0.2.0.1250")] [assembly: AssemblyVersion("0.2.0.1398")]
[assembly: AssemblyFileVersion("0.2.0.1250")] [assembly: AssemblyFileVersion("0.2.0.1398")]
...@@ -8,11 +8,11 @@ Option 1: Compiling from the command-line ...@@ -8,11 +8,11 @@ Option 1: Compiling from the command-line
you can build VECTO using the following command: 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 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. Option 2: Load the solution file in Visual Studio and compile VECTO.
......
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("3.3.0.1250")] [assembly: AssemblyVersion("3.3.0.1398")]
[assembly: AssemblyFileVersion("3.3.0.1250")] [assembly: AssemblyFileVersion("3.3.0.1398")]
\ No newline at end of file \ No newline at end of file
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("1.2.0.1250")] [assembly: AssemblyVersion("1.2.0.1398")]
[assembly: AssemblyFileVersion("1.2.0.1250")] [assembly: AssemblyFileVersion("1.2.0.1398")]
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* by the European Commission - subsequent versions of the EUPL (the "Licence"); * by the European Commission - subsequent versions of the EUPL (the "Licence");
* You may not use VECTO except in compliance with the Licence. * You may not use VECTO except in compliance with the Licence.
* You may obtain a copy of the Licence at: * You may obtain a copy of the Licence at:
* *
* https://joinup.ec.europa.eu/community/eupl/og_page/eupl * https://joinup.ec.europa.eu/community/eupl/og_page/eupl
* *
* Unless required by applicable law or agreed to in writing, VECTO * Unless required by applicable law or agreed to in writing, VECTO
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("3.3.0.1250")] [assembly: AssemblyVersion("3.3.0.1398")]
[assembly: AssemblyFileVersion("3.3.0.1250")] [assembly: AssemblyFileVersion("3.3.0.1398")]
\ No newline at end of file \ No newline at end of file
...@@ -151,8 +151,12 @@ namespace TUGraz.VectoCore.OutputData.XML ...@@ -151,8 +151,12 @@ namespace TUGraz.VectoCore.OutputData.XML
private XElement GetApplicationInfo() private XElement GetApplicationInfo()
{ {
var versionNumber = VectoSimulationCore.VersionNumber;
#if RELEASE_CANDIDATE
versionNumber += " !!NOT FOR CERTIFICATION!!";
#endif
return new XElement(tns + XMLNames.Report_ApplicationInfo_ApplicationInformation, 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, new XElement(tns + XMLNames.Report_ApplicationInfo_Date,
XmlConvert.ToString(DateTime.Now, XmlDateTimeSerializationMode.Utc))); XmlConvert.ToString(DateTime.Now, XmlDateTimeSerializationMode.Utc)));
} }
......
...@@ -342,8 +342,12 @@ namespace TUGraz.VectoCore.OutputData.XML ...@@ -342,8 +342,12 @@ namespace TUGraz.VectoCore.OutputData.XML
private XElement GetApplicationInfo() private XElement GetApplicationInfo()
{ {
var versionNumber = VectoSimulationCore.VersionNumber;
#if RELEASE_CANDIDATE
versionNumber += " !!NOT FOR CERTIFICATION!!";
#endif
return new XElement(tns + XMLNames.Report_ApplicationInfo_ApplicationInformation, 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, new XElement(tns + XMLNames.Report_ApplicationInfo_Date,
XmlConvert.ToString(DateTime.Now, XmlDateTimeSerializationMode.Utc))); XmlConvert.ToString(DateTime.Now, XmlDateTimeSerializationMode.Utc)));
} }
......
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
*/ */
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("3.3.0.1250")] [assembly: AssemblyVersion("3.3.0.1398")]
[assembly: AssemblyFileVersion("3.3.0.1250")] [assembly: AssemblyFileVersion("3.3.0.1398")]
...@@ -33,10 +33,17 @@ namespace TUGraz.VectoCore.Utils ...@@ -33,10 +33,17 @@ namespace TUGraz.VectoCore.Utils
{ {
public static class VectoSimulationCore public static class VectoSimulationCore
{ {
#if RELEASE_CANDIDATE
private const string SUFFIX = "-RC";
#else
private const string SUFFIX = "";
#endif
public static string VersionNumber public static string VersionNumber
{ {
get { get {
return "3.3.0.1250"; return "3.3.0.1398" + SUFFIX;
} }
} }
......
...@@ -36,10 +36,17 @@ namespace TUGraz.VectoCore.Utils ...@@ -36,10 +36,17 @@ namespace TUGraz.VectoCore.Utils
{ {
public static class VectoSimulationCore public static class VectoSimulationCore
{ {
#if RELEASE_CANDIDATE
private const string SUFFIX = "-RC";
#else
private const string SUFFIX = "";
#endif
public static string VersionNumber public static string VersionNumber
{ {
get { get {
return "<#= GetVectoCoreVersionNumber() #>"; return "<#= GetVectoCoreVersionNumber() #>" + SUFFIX;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment