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

* BETA Version implemented

parent 04833976
Branches
Tags
No related merge requests found
......@@ -226,6 +226,9 @@ Public Class F_Main
If RELEASE_CANDIDATE Then
logme(7, False, "ATTENTION: RELEASE CANDIDATE, Not FOR CERTIFICATION!")
End If
If BETA_VERSION Then
logme(7, False, "ATTENTION: BETA VERSION, Not FOR CERTIFICATION!")
End If
End If
Dim asyncJob As cAsyncJob = e.Result
......
......@@ -175,6 +175,8 @@ Public Class F_VECTOInput
Dim AppVersx As String
If RELEASE_CANDIDATE Then
AppVersx = AppVers + " - RELEASE CANDIDATE, NOT FOR CERTIFICATION!"
ElseIf BETA_VERSION Then
AppVersx = AppVers + " - BETA VERSION, NOT FOR CERTIFICATION!"
Else
AppVersx = AppVers
End If
......
......@@ -12,10 +12,11 @@
Module declaration_public
' Description of the form
Public Const AppName As String = "Air Drag - RC" ' Name of the programm
Public Const AppName As String = "Air Drag - BETA" ' Name of the programm
Public AppVers As String = Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() '"3.1.0" ' Version of the Programm
Public AppDate As String ' Date of the compilation of the programm
Public RELEASE_CANDIDATE As Boolean = True
Public RELEASE_CANDIDATE As Boolean = False
Public BETA_VERSION As Boolean = True
' Control variables
Public Const komment = "#" ' Symbol for a comment in the input files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment