From fd903d9ed1a9cc3d198b2c1d9c40be740e55e8dd Mon Sep 17 00:00:00 2001 From: mattias Date: Sun, 2 Jan 2005 11:24:25 +0000 Subject: [PATCH] increased version to 0.9.4 git-svn-id: trunk@6456 - --- components/codetools/codecompletiontool.pas | 27 +++++++++++++++++++-- ide/lazarusidestrconsts.pas | 2 +- tools/install/create_lazarus_deb.sh | 2 +- tools/install/create_lazarus_rpm.sh | 2 +- tools/install/debian_lazarus/changelog | 2 +- tools/install/win32/create_installer.bat | 2 +- 6 files changed, 30 insertions(+), 7 deletions(-) diff --git a/components/codetools/codecompletiontool.pas b/components/codetools/codecompletiontool.pas index 67c32819e2..09681dace0 100644 --- a/components/codetools/codecompletiontool.pas +++ b/components/codetools/codecompletiontool.pas @@ -32,10 +32,33 @@ - add missing forward proc bodies - complete event assignments - complete local variables - - + - insert header comment for classes ToDo: - -insert header comment for classes + -add code for index properties (TList, array of, Pointer array) + TList: + property Items[Index: integer]: AType accesstlist; + -> creates + property Items[Index: Type1]: Type2 read GetItems write SetItems; + private FItems: TList; + private function GetItems(Index: Type1): Type2; + begin + Result:=Type2(FItems[Index]); + end; + private procedure SetItems(Index: Type1; const AValue: Type2); + begin + FItems[Index]:=Type2; + end; + public constructor Create; + begin + FItems:=TList.Create; + end; + public destructor Destroy; override; + begin + FItems.Free; + inherited Destroy; + end; + -ProcExists: search procs in ancestors too -VarExists: search vars in ancestors too } diff --git a/ide/lazarusidestrconsts.pas b/ide/lazarusidestrconsts.pas index a93c76a1c1..e354e8df27 100644 --- a/ide/lazarusidestrconsts.pas +++ b/ide/lazarusidestrconsts.pas @@ -43,7 +43,7 @@ uses resourcestring lisEnterTransla = 'Enter translation language'; // version - lisLazarusVersionString = '0.9.3 beta'; + lisLazarusVersionString = '0.9.4 beta'; lisLeaveEmptyFo = 'Leave empty for default .po file'; lisMenuCollectPoFil = 'Collect .po files'; lisMenuCreatePoFile = 'Create .po files'; diff --git a/tools/install/create_lazarus_deb.sh b/tools/install/create_lazarus_deb.sh index ef44bb6672..902198cf44 100644 --- a/tools/install/create_lazarus_deb.sh +++ b/tools/install/create_lazarus_deb.sh @@ -16,7 +16,7 @@ Month=`date +%m` Day=`date +%d` Date=20$Year$Month$Day -LazVersion=0.9.3 +LazVersion=0.9.4 LazRelease=`dpkg -s fp-compiler | grep '^Version' | sed -e 's/Version: //'` LazRelease=`echo $LazRelease | sed -e 's/-/_/g'` SrcTGZ=lazarus-$Date.tgz diff --git a/tools/install/create_lazarus_rpm.sh b/tools/install/create_lazarus_rpm.sh index b91213b9f4..9575990c65 100644 --- a/tools/install/create_lazarus_rpm.sh +++ b/tools/install/create_lazarus_rpm.sh @@ -17,7 +17,7 @@ fi FPCRPMVersion=`echo $FPCRPM | sed -e 's/fpc-//g'` Date=$Year$Month$Day -LazVersion=0.9.3 +LazVersion=0.9.4 LazRelease=`echo $FPCRPM | sed -e 's/-/_/g'` SrcTGZ=lazarus-$Date.tgz TmpDir=/tmp/lazarus$LazVersion diff --git a/tools/install/debian_lazarus/changelog b/tools/install/debian_lazarus/changelog index a73ebce41c..d8a33ce92f 100644 --- a/tools/install/debian_lazarus/changelog +++ b/tools/install/debian_lazarus/changelog @@ -1,4 +1,4 @@ -lazarus (0.9.0.1) +lazarus (0.9.4) * Started package diff --git a/tools/install/win32/create_installer.bat b/tools/install/win32/create_installer.bat index 28295403cb..3e2b58541f 100644 --- a/tools/install/win32/create_installer.bat +++ b/tools/install/win32/create_installer.bat @@ -1,5 +1,5 @@ :: This setting need to change for every build -SET LAZVERSION=0.9.3 +SET LAZVERSION=0.9.4 :: These settings are dependent on the configuration of the build machine :: Path to the Inno Setup Compiler