File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ procedure TAboutForm.FormCreate(Sender: TObject);
6767var
6868 Png: TPortableNetworkGraphic;
6969 ResourceName: String;
70+ VersionStr: String;
7071begin
7172 Caption := Localizer.I18N(' About' );
7273
@@ -89,8 +90,13 @@ procedure TAboutForm.FormCreate(Sender: TObject);
8990 ProgramNameLabel.Caption := Application.Title;
9091
9192 VersionTitleLabel.Caption := Localizer.I18N(' Version' ) + ' :' ;
93+ VersionStr := GetProgramVersionStr;
94+ { $IfDef Linux}
95+ // ToDo: Don't forget to remove this in the future
96+ VersionStr := VersionStr + ' Alpha-1' ;
97+ { $EndIf}
9298 VersionValueLabel.Caption := Format(' %s (%s) %s' , [
93- GetProgramVersionStr() , Bitness,
99+ VersionStr , Bitness,
94100 IfThen(IsPortable, Localizer.I18N(' Portable' ))
95101 ]);
96102 { $IFOPT D+}
You can’t perform that action at this time.
0 commit comments