You've already forked lazarus-ccr
* 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:
@ -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
|
||||
* Published BorderSpacing
|
||||
* 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
|
@ -3,7 +3,7 @@
|
||||
{ TGradientFill, Copyright 1995, Curtis White. All Rights Reserved. }
|
||||
{ TNetGradient, Copyright 1997, Heiko Webers. All Rights Reserved. }
|
||||
{ This component can be freely used and distributed in commercial and private }
|
||||
{ environments, provided this notice is not modified in any way. }
|
||||
{ environments, provided this notice is not modified in any way. }
|
||||
{ ----------------------------------------------------------------------------}
|
||||
{ Feel free to contact me if you have any questions, comments or suggestions }
|
||||
{ at cwhite@teleport.com }
|
||||
@ -12,7 +12,7 @@
|
||||
{ Date last modified: 18/10/2009 }
|
||||
{ ----------------------------------------------------------------------------}
|
||||
{ ----------------------------------------------------------------------------}
|
||||
{ TNetGradient v2.05 }
|
||||
{ TNetGradient v2.1 }
|
||||
{ ----------------------------------------------------------------------------}
|
||||
{ Description: }
|
||||
{ A gradient fill like in the new Netscape Communicator Options Box. }
|
||||
@ -32,6 +32,7 @@
|
||||
{ 2.03: -Bug TextLetf }
|
||||
{ 2.04: FillDirection: +ftTopToBottom, +ftBottomToTop }
|
||||
{ 2.05: +Begin/EndUpdate, Fix crash in frames, Fix memory leaks, Cleanup }
|
||||
{ 2.1: +FlatBorder, +TDBNetGradient, allow children controls, Cleanup }
|
||||
{ ----------------------------------------------------------------------------}
|
||||
|
||||
unit SMNetGradient;
|
||||
|
@ -2,19 +2,24 @@
|
||||
<CONFIG>
|
||||
<Package Version="3">
|
||||
<Name Value="smnetgradientlaz"/>
|
||||
<Author Value="Curtis White & Heiko Webers (converted for lazarus by barko)"/>
|
||||
<Author Value="Curtis White & Heiko Webers (converted for lazarus by barko, fixes and improvements by Luiz Américo)"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="8"/>
|
||||
<Version Value="9"/>
|
||||
<SearchPaths>
|
||||
<UnitOutputDirectory Value="lib"/>
|
||||
</SearchPaths>
|
||||
<Parsing>
|
||||
<SyntaxOptions>
|
||||
<UseAnsiStrings Value="False"/>
|
||||
</SyntaxOptions>
|
||||
</Parsing>
|
||||
<Other>
|
||||
<CompilerPath Value="$(CompPath)"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<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."/>
|
||||
<Version Major="2" Release="5"/>
|
||||
<Version Major="2" Minor="1"/>
|
||||
<Files Count="2">
|
||||
<Item1>
|
||||
<Filename Value="smnetgradient.pas"/>
|
||||
@ -38,7 +43,7 @@
|
||||
</Item2>
|
||||
</RequiredPkgs>
|
||||
<UsageOptions>
|
||||
<UnitPath Value="$(PkgOutDir)/"/>
|
||||
<UnitPath Value="$(PkgOutDir)"/>
|
||||
</UsageOptions>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
|
Reference in New Issue
Block a user