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

Skip to content
Snippets Groups Projects
Commit d9ad3dee authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

Pull request #901: Develop

Merge in VECTO/vecto-sim from VECTO/mq_vecto-sim:develop to develop

* commit 'f5ca793a':
  bugfix: add missing parameter in interface for factory method, uploading release report, results
  updating changelog and release notes
parents 439f6354 f5ca793a
No related branches found
No related tags found
No related merge requests found
File added
File added
No preview for this file type
# Changelog # Changelog
**VECTO-3.3.12**
***Build 2769 (2022-08-01) RELEASE CANDIDATE***
- Improvement
* [VECTO-1584] - Hashing library uses constructor that is deprecated in newer .net versions
* [VECTO-1619] - Adaptations of XML Results in transition period
* [VECTO-1619] - Reading Engine and Tyre component according to 2nd amendment (schema version 2.3)
* [VECTO-1461] - Alignment of Steering Pump Technology and Steered Axles not checked by VECTO
* [VECTO-1571] - Help file: Vehicle defined Torque Limitations
* [VECTO-1585] - Validate component hashes in declaration mode (disabled by default)
* [VECTO-1587] - update build script to include files required for xml parameter documentation
* [VECTO-1598] - Execution time in latest official release
* [VECTO-1608] - Adaptation of Reports (MRF/CIF) for transition in official VECTO Release
- Bugfixes
* [VECTO-1622] - Unexpected response: Response Underload in LH LowLoad
* [VECTO-1623] - Unexpected response: Response Underload in LH EMS RefLoad
**VECTO-3.3.11** **VECTO-3.3.11**
***Build 2675 (2022-04-29) OFFICIAL RELEASE*** ***Build 2675 (2022-04-29) OFFICIAL RELEASE***
......
Source diff could not be displayed: it is too large. Options to address this: view the blob.
File added
...@@ -39,6 +39,6 @@ namespace TUGraz.VectoCore.Models.Simulation ...@@ -39,6 +39,6 @@ namespace TUGraz.VectoCore.Models.Simulation
{ {
ISimulatorFactory Factory( ISimulatorFactory Factory(
ExecutionMode mode, IInputDataProvider dataProvider, IOutputDataWriter writer, ExecutionMode mode, IInputDataProvider dataProvider, IOutputDataWriter writer,
IDeclarationReport declarationReport = null, IVTPReport vtpReport = null, bool validate = true); IDeclarationReport declarationReport = null, IVTPReport vtpReport = null, bool validate = true, bool validateHashes = false);
} }
} }
...@@ -6,6 +6,6 @@ int GetBuildNumber() ...@@ -6,6 +6,6 @@ int GetBuildNumber()
string GetVectoCoreVersionNumber() string GetVectoCoreVersionNumber()
{ {
return "3.3.11." + GetBuildNumber(); return "3.3.12." + GetBuildNumber();
} }
#> #>
\ No newline at end of file
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