Skip to content

Commit 85000b8

Browse files
committed
First alpha release for Linux
1 parent 839f5d1 commit 85000b8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

uAbout.pas

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ procedure TAboutForm.FormCreate(Sender: TObject);
6767
var
6868
Png: TPortableNetworkGraphic;
6969
ResourceName: String;
70+
VersionStr: String;
7071
begin
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+}

0 commit comments

Comments
 (0)