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

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

* New version number

* Hotfix for VECTO AirDrag output (now always 2 digits are given)
* Bugfix for date in LogFile. Always use the en-US standard in each thread
* Update ReleaseNotes
parent 1d1f9d2a
No related branches found
No related tags found
No related merge requests found
VECTO-AirDrag: Changes VECTO-AirDrag: Changes
=================== ===================
#### 2018-02-15: v3.1.6 ####
TUG improvements:
* New version number
* Hotfix for VECTO Input file
* Culture info is automatically set to [en-US] standard
#### 2018-02-08: v3.1.5 #### #### 2018-02-08: v3.1.5 ####
TUG improvements: TUG improvements:
......
...@@ -53,7 +53,7 @@ Namespace My ...@@ -53,7 +53,7 @@ Namespace My
VECTOconfigPath = joinPaths(MyPath, "config", "VECTOconfig.json") VECTOconfigPath = joinPaths(MyPath, "config", "VECTOconfig.json")
'Separator! 'Separator!
If System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator <> "." Then If System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator <> "." Or Threading.Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName <> "en" Then
Try Try
System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("en-US") System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("en-US")
System.Threading.Thread.CurrentThread.CurrentUICulture = New System.Globalization.CultureInfo("en-US") System.Threading.Thread.CurrentThread.CurrentUICulture = New System.Globalization.CultureInfo("en-US")
......
...@@ -179,9 +179,9 @@ Public Class F_VECTOInput ...@@ -179,9 +179,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, MidpointRounding.AwayFromZero)), New XElement(tns + "CdxA_0", Math.Round(VECTOconf.CdxA, 2, MidpointRounding.AwayFromZero).ToString("0.00")),
New XElement(tns + "TransferredCdxA", Math.Round(VECTOconf.CdxA + VECTOconf.TransfR, 2, MidpointRounding.AwayFromZero)), New XElement(tns + "TransferredCdxA", Math.Round(VECTOconf.CdxA + VECTOconf.TransfR, 2, MidpointRounding.AwayFromZero).ToString("0.00")),
New XElement(tns + "DeclaredCdxA", Math.Round((VECTOconf.CdxA + VECTOconf.TransfR + VECTOconf.WorstCase), 2, MidpointRounding.AwayFromZero)))) New XElement(tns + "DeclaredCdxA", Math.Round((VECTOconf.CdxA + VECTOconf.TransfR + VECTOconf.WorstCase), 2, MidpointRounding.AwayFromZero).ToString("0.00"))))
End Function End Function
#End Region #End Region
End Class End Class
\ No newline at end of file
...@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices ...@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben: ' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("3.1.5.0")> <Assembly: AssemblyVersion("3.1.6.0")>
<Assembly: AssemblyFileVersion("3.1.5.0")> <Assembly: AssemblyFileVersion("3.1.6.0")>
No preview for this file type
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