Difference between revisions of "LMD 2010 - History LMD ElPack"

From LMD
Jump to: navigation, search
Line 5: Line 5:
  
 
== History Logs ==
 
== History Logs ==
 +
 +
==== Release 8.06 (16-Dec-2009) ====
 +
This is mainly a release to work around a problem introduced with recent Delphi 2010 Updates in the shared runtime. The following line:<br>
 +
<code>TLMDOnHeaderWrite = procedure(Sender : TObject; var Target : Text) of object;</code><br>
 +
causes now a TI894 internal error. <br>
 +
This method signature is used OnHeaderWrite events in TLMDApplication class and TLMDApplicationCtrl control. For Delphi 2010 and above this line is now changed to:<br>
 +
<code>TLMDOnHeaderWrite=procedure(Sender : TObject;const Target: TStringList) of object;</code><br>
 +
This is a breaking change. If you used this event you need to change your code slightly (add your header lines now to Stringlist instead writing to a TEXT variable.<br>
 +
Other (minor) changes fix reported problems with VistaDialogs.<br>
  
 
==== Release 8.05 (14-Dec-2009) ====
 
==== Release 8.05 (14-Dec-2009) ====
 
 
[-] ElFolderDlg: Behaviour on Windows 9x platforms with LMD_UNICODE switch enabled fixed<br>[*] ElEdits, ElIni: minor refactoring<br>[+] ElFontCombo: option for hiding @-prefixed fonts added<br>[-] ElShadowWindow: Fixed "Control ''has no parent window" exception in Windows 2000<br>''[-] BTS #754 fixed (TElXTree: Incorrect calculation of text alignment in columns)<br>[-] ElHeader, ElHeaderX: last empty section rendering fixed for ThemeMode=ttmNative<br>[-]&nbsp;BTS#758 fixed (Disappearing controls when adding&nbsp;ElPopBtn on the ElPanel in IDE)<br>[-] ElXTree: gutter rendering improved<br>[-] ElSBCtrl: minor refactoring (IsInRect -&gt; LMDPointInRect -&gt; LMDProcs)<br>[-] ElToolBar: ThemeMode was reset to ttmPlatform while loading from dfm if control is themed - fixed<br>
 
[-] ElFolderDlg: Behaviour on Windows 9x platforms with LMD_UNICODE switch enabled fixed<br>[*] ElEdits, ElIni: minor refactoring<br>[+] ElFontCombo: option for hiding @-prefixed fonts added<br>[-] ElShadowWindow: Fixed "Control ''has no parent window" exception in Windows 2000<br>''[-] BTS #754 fixed (TElXTree: Incorrect calculation of text alignment in columns)<br>[-] ElHeader, ElHeaderX: last empty section rendering fixed for ThemeMode=ttmNative<br>[-]&nbsp;BTS#758 fixed (Disappearing controls when adding&nbsp;ElPopBtn on the ElPanel in IDE)<br>[-] ElXTree: gutter rendering improved<br>[-] ElSBCtrl: minor refactoring (IsInRect -&gt; LMDPointInRect -&gt; LMDProcs)<br>[-] ElToolBar: ThemeMode was reset to ttmPlatform while loading from dfm if control is themed - fixed<br>
  

Revision as of 20:22, 17 December 2009

<< Back to Main Page or Product Resources page

[edit]

Introduction

This documents contains history logs for LMD ElPack 8.0 releases.
First official release: 25-Aug-2009

Legend
[+] Feature added
[*] Feature changed
[-] Bug fixed

History Logs

Release 8.06 (16-Dec-2009)

This is mainly a release to work around a problem introduced with recent Delphi 2010 Updates in the shared runtime. The following line:
TLMDOnHeaderWrite = procedure(Sender : TObject; var Target : Text) of object;
causes now a TI894 internal error.
This method signature is used OnHeaderWrite events in TLMDApplication class and TLMDApplicationCtrl control. For Delphi 2010 and above this line is now changed to:
TLMDOnHeaderWrite=procedure(Sender : TObject;const Target: TStringList) of object;
This is a breaking change. If you used this event you need to change your code slightly (add your header lines now to Stringlist instead writing to a TEXT variable.
Other (minor) changes fix reported problems with VistaDialogs.

Release 8.05 (14-Dec-2009)

[-] ElFolderDlg: Behaviour on Windows 9x platforms with LMD_UNICODE switch enabled fixed
[*] ElEdits, ElIni: minor refactoring
[+] ElFontCombo: option for hiding @-prefixed fonts added
[-] ElShadowWindow: Fixed "Control has no parent window" exception in Windows 2000
[-] BTS #754 fixed (TElXTree: Incorrect calculation of text alignment in columns)
[-] ElHeader, ElHeaderX: last empty section rendering fixed for ThemeMode=ttmNative
[-] BTS#758 fixed (Disappearing controls when adding ElPopBtn on the ElPanel in IDE)
[-] ElXTree: gutter rendering improved
[-] ElSBCtrl: minor refactoring (IsInRect -> LMDPointInRect -> LMDProcs)
[-] ElToolBar: ThemeMode was reset to ttmPlatform while loading from dfm if control is themed - fixed

Release 8.04 (23-Nov-2009)

[+] ElCombos: ForceItemHeight property added to TElComboBox
[+] ElCombos: SaveUnicode property added in TElComboBox
[-] ElDTPick.pas: Fixed AutoAdvance (Entering first digit in the year field moved cursor to hour field)
[-] ElPgCtl.pas: TabStop set to true by default
[-] ElXHeader: LockHeight was ignored - fixed

[-] ElSpinEdit: Spin button rendering bug (extra pixels when ButtonWidth = 0) fixed
[-] ElIni: Fixed saving unicode ini files (added BOM marker). This change affects also ElStyleManager issue (*.els files written from D2009 could not be read)
[-] ElBtnEdit: AdjustBoundsRect fixed
[-] ElBtnEdit: ElComboBox dropdown button and ElButtonEdit main buttons were not visible - fixed

Release 8.03 (15-Oct-2009)

[-] ElTreeGrids: ChangeScale modified
[-] ElSpin: spin buttons sizes corrected
[-] ElBtnEdit: setting theme mode to ttmNative has no effect on AltButton - fixed
[-] ElRTTIInspector: BTS #745 issue fixed
[-] ElXTree: Fixed BTS #737, #738 issues

Release 8.02 (02-Oct-2009)

[+] TElPopupMenu: IsPopuped property added
[+] ElWideDBMemo: Support of ftWideMemo field type
[+] ElXTree: PlusPosition property, which allows control of vertical position of plus/minus button
[-] ELMenuBar: BTS #740
[-] ElStyleManager editor did not start - fixed
[-] ElXTree: mouse selection color fixed
[-] ElXTree: Draw order when HighAlphaLevel < 255 fixed

Release 8.01 (08-Sep-2009)

[-] ElComboBox rendering with Style = csDropDownList in Vista was broken - fixed
[-] BTS#716: Properties AltButtonPngGlyph, AltButtonUsePng added for a number of controls
[-] ElPack Megademo compilability in B2007 fixed
[*] ElEdits: Call to AdjustHeight added in TCustomElEdit.CMCtl3DChanged
[-] ElEdits: OnChange doesn't called after pasting text from clipboard
[-] BTS#721 (ElMemo blink when typing) fixed
[-] LMDApplication.ThemeUseColorProperty handling in ElEdits was broken - fixed
[+] TWinControl descendants: DoubleBuffered property made published
[+] ElAdvPanel: ChangeScale method overridden for better scaling
[*] ElVclUtils: CopyTextToClipboard renamed to LMDCopyTextToClipboard and moved to LMDUtils
[-] ElPromptDlg: Ctrl+C did not work in ElPromptDialog - fixed
[+] ElPromptDlg: Caption, separators and button captions added to text copied to ClipBoard from ElPromptDialog
[+] ElXtree: MakeColVisible method added
[+] ElXTree: GetNextChecked and GetCheckedCount methods added
[-] ElListBox: BTS#727 fixed

Release 8.0 (25-Aug-2009)

Initial Release.