From 0d637afed6217435cc327f018aebef307c3007d3 Mon Sep 17 00:00:00 2001 From: zbyna Date: Fri, 3 May 2024 23:10:58 +0200 Subject: [PATCH] Adds version info to main form caption --- audiobookconverter.lpi | 3 +-- audiobookconverter.res | Bin 68045 -> 68045 bytes layout.xml | 2 +- main.lfm | 1 + main.pas | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) diff --git a/audiobookconverter.lpi b/audiobookconverter.lpi index 69d8a43..e1e009c 100644 --- a/audiobookconverter.lpi +++ b/audiobookconverter.lpi @@ -19,8 +19,7 @@ - - + diff --git a/audiobookconverter.res b/audiobookconverter.res index 419d7f6abd3cea780b47476641ff3b2a3f392609..064d78a9a13534c0425e44d2ba9df85dce7625e1 100644 GIT binary patch delta 43 zcmX>*ndR(cmJKEB%nS@nlgrstCkt@&uo^MwF&Io<$Z>h{9d?uE63*!*oQ#nGEyxXG delta 43 zcmX>*ndR(cmJKEB%xnydlgrstCp&POOuob3!)nN&$6z)&m*aAC3Fq_@PR2+8HS7&( diff --git a/layout.xml b/layout.xml index 167d0d5..c4a234a 100644 --- a/layout.xml +++ b/layout.xml @@ -3,7 +3,7 @@ - + diff --git a/main.lfm b/main.lfm index a6e1ef3..c8c6030 100644 --- a/main.lfm +++ b/main.lfm @@ -8,6 +8,7 @@ object frmMain: TfrmMain OnActivate = FormActivate OnClose = FormClose OnCreate = FormCreate + LCLVersion = '2.3.0.0' object mmMain: TMainMenu Images = ilMain ImagesWidth = 16 diff --git a/main.pas b/main.pas index 984014a..4501432 100644 --- a/main.pas +++ b/main.pas @@ -145,7 +145,7 @@ procedure tfrmmain.loadlayout(filename: string); [mbCancel],0); end; end; - frmMain.Caption:= 'Audio book Converter'; + frmMain.Caption:= 'Audio book Converter 2.0'; end; end.