increased version to 0.9.4

git-svn-id: trunk@6456 -
This commit is contained in:
mattias 2005-01-02 11:24:25 +00:00
parent cf818e4584
commit fd903d9ed1
6 changed files with 30 additions and 7 deletions

View File

@ -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
}

View File

@ -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';

View File

@ -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

View File

@ -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

View File

@ -1,4 +1,4 @@
lazarus (0.9.0.1)
lazarus (0.9.4)
* Started package

View File

@ -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