* change version to 2.1

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1444 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
blikblum 2011-01-13 20:47:04 +00:00
parent 3ae273b430
commit 0044f972e6
3 changed files with 20 additions and 6 deletions

View File

@ -12,3 +12,11 @@ Changes between 2.0.4 and 2.0.5 (By Luiz Américo)
* Added BeginUpdate and EndUpdate: protects against handle creation while loading * Added BeginUpdate and EndUpdate: protects against handle creation while loading
* Published BorderSpacing * Published BorderSpacing
* Fixed memory leaks * Fixed memory leaks
Changes between 2.0.5 and 2.1 (By Luiz Américo)
* Added FlatBorder option
* Separated TNetGradient and TDBNetGradient
* Use Caption and Font from TControl instead of a local copy
* Allow placing a child control
* Fix SubCaption streaming
* Code cleanup

View File

@ -12,7 +12,7 @@
{ Date last modified: 18/10/2009 } { Date last modified: 18/10/2009 }
{ ----------------------------------------------------------------------------} { ----------------------------------------------------------------------------}
{ ----------------------------------------------------------------------------} { ----------------------------------------------------------------------------}
{ TNetGradient v2.05 } { TNetGradient v2.1 }
{ ----------------------------------------------------------------------------} { ----------------------------------------------------------------------------}
{ Description: } { Description: }
{ A gradient fill like in the new Netscape Communicator Options Box. } { A gradient fill like in the new Netscape Communicator Options Box. }
@ -32,6 +32,7 @@
{ 2.03: -Bug TextLetf } { 2.03: -Bug TextLetf }
{ 2.04: FillDirection: +ftTopToBottom, +ftBottomToTop } { 2.04: FillDirection: +ftTopToBottom, +ftBottomToTop }
{ 2.05: +Begin/EndUpdate, Fix crash in frames, Fix memory leaks, Cleanup } { 2.05: +Begin/EndUpdate, Fix crash in frames, Fix memory leaks, Cleanup }
{ 2.1: +FlatBorder, +TDBNetGradient, allow children controls, Cleanup }
{ ----------------------------------------------------------------------------} { ----------------------------------------------------------------------------}
unit SMNetGradient; unit SMNetGradient;

View File

@ -2,19 +2,24 @@
<CONFIG> <CONFIG>
<Package Version="3"> <Package Version="3">
<Name Value="smnetgradientlaz"/> <Name Value="smnetgradientlaz"/>
<Author Value="Curtis White &amp; Heiko Webers (converted for lazarus by barko)"/> <Author Value="Curtis White &amp; Heiko Webers (converted for lazarus by barko, fixes and improvements by Luiz Américo)"/>
<CompilerOptions> <CompilerOptions>
<Version Value="8"/> <Version Value="9"/>
<SearchPaths> <SearchPaths>
<UnitOutputDirectory Value="lib"/> <UnitOutputDirectory Value="lib"/>
</SearchPaths> </SearchPaths>
<Parsing>
<SyntaxOptions>
<UseAnsiStrings Value="False"/>
</SyntaxOptions>
</Parsing>
<Other> <Other>
<CompilerPath Value="$(CompPath)"/> <CompilerPath Value="$(CompPath)"/>
</Other> </Other>
</CompilerOptions> </CompilerOptions>
<Description Value="A gradient fill like in the new Netscape Communicator Options Box."/> <Description Value="A gradient fill like in the new Netscape Communicator Options Box."/>
<License Value="This component can be freely used and distributed in commercial and private environments, provided this notice is not modified in any way."/> <License Value="This component can be freely used and distributed in commercial and private environments, provided this notice is not modified in any way."/>
<Version Major="2" Release="5"/> <Version Major="2" Minor="1"/>
<Files Count="2"> <Files Count="2">
<Item1> <Item1>
<Filename Value="smnetgradient.pas"/> <Filename Value="smnetgradient.pas"/>
@ -38,7 +43,7 @@
</Item2> </Item2>
</RequiredPkgs> </RequiredPkgs>
<UsageOptions> <UsageOptions>
<UnitPath Value="$(PkgOutDir)/"/> <UnitPath Value="$(PkgOutDir)"/>
</UsageOptions> </UsageOptions>
<PublishOptions> <PublishOptions>
<Version Value="2"/> <Version Value="2"/>