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 247ea805 authored by Martin Dippold's avatar Martin Dippold
Browse files

* Update UserManual

* Update ReleaseNotes
* Update Changelog
* Correct implementation of the VECTO input file generation
parent 0a6ac7b2
Branches
No related tags found
No related merge requests found
VECTO-AirDrag: Changes VECTO-AirDrag: Changes
=================== ===================
#### 2017-07-14: v3.1.0 ####
TUG improvements:
* New version number
* Bugfix for correct detection of first/last datapoint inside of a MS
* Update VECTO input file generation
* Update VECTO hashing added
* Update ReleaseNotes
* Update UserManual
#### 2017-03-22: v3.0.8 #### #### 2017-03-22: v3.0.8 ####
TUG improvements: TUG improvements:
......
...@@ -91,11 +91,11 @@ ...@@ -91,11 +91,11 @@
<Reference Include="System.Core" /> <Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" /> <Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" /> <Reference Include="System.Data.DataSetExtensions" />
<Reference Include="VectoCommon, Version=3.1.2.903, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="VectoCommon, Version=3.2.0.925, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>bin\Release\VectoCommon.dll</HintPath> <HintPath>bin\Release\VectoCommon.dll</HintPath>
</Reference> </Reference>
<Reference Include="VectoHashing, Version=0.1.0.127, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="VectoHashing, Version=1.1.0.924, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>bin\Release\VectoHashing.dll</HintPath> <HintPath>bin\Release\VectoHashing.dll</HintPath>
</Reference> </Reference>
......
...@@ -107,7 +107,7 @@ Public Class F_VECTOInput ...@@ -107,7 +107,7 @@ Public Class F_VECTOInput
TBTransR.Text = "0" TBTransR.Text = "0"
End If End If
TBCdxA.Text = Math.Round(Job.CdxA0, 4) + Convert.ToDouble(TBWorstCase.Text) + Convert.ToDouble(TBTransR.Text) 'TBCdxA.Text = Math.Round(Job.CdxA0, 4) + Convert.ToDouble(TBWorstCase.Text) + Convert.ToDouble(TBTransR.Text)
End Sub End Sub
' Check the input in TBWorstCase ' Check the input in TBWorstCase
...@@ -135,8 +135,8 @@ Public Class F_VECTOInput ...@@ -135,8 +135,8 @@ Public Class F_VECTOInput
TBWorstCase.Clear() TBWorstCase.Clear()
MessageBox.Show("only values between 0 and 0.2 are allowed. Please correct your input.") MessageBox.Show("only values between 0 and 0.2 are allowed. Please correct your input.")
TBWorstCase.Focus() TBWorstCase.Focus()
Else 'Else
TBCdxA.Text = Math.Round(Job.CdxA0, 4) + Convert.ToDouble(TBWorstCase.Text) + Convert.ToDouble(TBTransR.Text) ' TBCdxA.Text = Math.Round(Job.CdxA0, 4) + Convert.ToDouble(TBWorstCase.Text) + Convert.ToDouble(TBTransR.Text)
End If End If
End Sub End Sub
#End Region #End Region
...@@ -183,9 +183,9 @@ Public Class F_VECTOInput ...@@ -183,9 +183,9 @@ Public Class F_VECTOInput
New XElement(tns + "CertificationNumber", VECTOconf.CertNum), New XElement(tns + "CertificationNumber", VECTOconf.CertNum),
New XElement(tns + "Date", XmlConvert.ToString(DateTime.Now, XmlDateTimeSerializationMode.Utc)), New XElement(tns + "Date", XmlConvert.ToString(DateTime.Now, XmlDateTimeSerializationMode.Utc)),
New XElement(tns + "AppVersion", "VECTOAirDrag_" + AppVers), New XElement(tns + "AppVersion", "VECTOAirDrag_" + AppVers),
New XElement(tns + "CdxA_0", Math.Round(VECTOconf.CdxA, 2)), New XElement(tns + "CdxA_0", VECTOconf.CdxA.ToString("F2")),
New XElement(tns + "TransferredCdxA", Math.Round(VECTOconf.TransfR, 2)), New XElement(tns + "TransferredCdxA", (VECTOconf.CdxA + VECTOconf.TransfR).ToString("F2")),
New XElement(tns + "DeclaredCdxA", Math.Round(VECTOconf.WorstCase, 2)))) New XElement(tns + "DeclaredCdxA", (VECTOconf.CdxA + VECTOconf.TransfR + VECTOconf.WorstCase).ToString("F2"))))
End Function End Function
#End Region #End Region
End Class End Class
\ No newline at end of file
...@@ -13,7 +13,7 @@ Module declaration_public ...@@ -13,7 +13,7 @@ Module declaration_public
' Description of the form ' Description of the form
Public Const AppName As String = "Air Drag" ' Name of the programm Public Const AppName As String = "Air Drag" ' Name of the programm
Public Const AppVers As String = "3.0.8" ' Version of the Programm Public Const AppVers As String = "3.1.0" ' Version of the Programm
Public AppDate As String ' Date of the compilation of the programm Public AppDate As String ' Date of the compilation of the programm
' Control variables ' Control variables
......
No preview for this file type
File deleted
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment