Lazarus 0.9.24 release notes
From Free Pascal wiki
Jump to navigationJump to search
│
English (en) │
Statistics:
- commits: 1942
- log: svn log -r 10808:12750
- resolved bug tracker issues: 385 (according to mantis)
LCL Interfaces Major changes:
- The win32 widgetset interface can be used on win64 too and has been relabeled win32/win64.
- First stable release of the Windows CE version
- huge improvements in Carbon (by Tombo):
- Improved TGraphicControl and TCustomControl descendants, scrolling, TSpeedButton and TSplitter.
- Implemented TMainMenu, TPopupMenu, TStatusBar, TNotebook, T(Float)SpinEdit, TArrow, TPairSplitter.
- Implemented regions and TClipboard.
- Implemented TabOrder, TabStop and focusing.
- Added TOpenDialog, TSaveDialog and TSelectDirectoryDialog from Philip J. Hess, TFontDialog.
- Added TListBox, TCheckListBox from Giulio Bernardi.
- huge improvements in Qt (by Zeljko (Zeljan), Felipe, Den and Paul)
- Improved TCustomControl descendants, TCustomEdit, TCustomComboBox, TRadioButton, TCheckBox, TTrackBar, TFontDialog, TSaveDialog, TOpenDialog ...
- Implemented TScrollBar, TSpinEdit,TCustomListView, TCalendar, MDIForms, TCustomCheckGroup, TCustomRadioGroup, TColorDialog, TArrow, TCheckListBox, TToggleBox, THintWindow ...
- Implemented winapi functions: clipboard, caret, capture
- Implemented drag and drop.
- Lazarus Qt IDE can be compiled & used :)
- A lot of various improvements & bugfixes.
- huge improvements in Gtk2
- the GTK2 IDE works pretty good and the overall stability is comparable to the gtk1. Some things work better in gtk2, some work better in gtk1. For compatibility reasons the gtk1 is still better and therefore still the default.
- event handling of OnClick, OnChange, ... is now more compatible
- Bitmap rework: rawimage changed into object and reimplemeted to better handling of mask and alpha channel
- Imagelist rework. Using win32 native imagelist (with returning valid win32 handle).
- Removed gnome widgetset. The gnome specials are used in the gtk2 widgetsets anyway.
- Much improved unicode support with the win32/win64 widgetset
LCL Major changes
- New class TThemesServices (unit Themes) to support theming (Theme library).
- New component THeaderControl
- TMaskEdit contained copyrighted code. This code was removed and a bare minimum had been implemented to keep things compilable.
LCL Minor changes:
- Drag/Drop fixes
- Cursor fixes
- Various WinXp themes improvements (new speedbutton and splitter look, fixes)
- DBGrid improvements
- Various improvements and fixes in file dialogs (save/open file dialog, select directory dialog)
- New application and form event OnDropFiles (Drop files event)
- TBitBtn: implemented NumGlyphs from Giuliano Colla
- removed TRTLCtriticalSection, it is provided by the RTL now
- made TMenuItem.Caption and Hint translatable (TTranslateString)
- Moved the minimum necessary types and constants from commctrl to lcltype to allow compilation of gtk, gtk2, carbon and qt. Removed the commctrl unit as it is no longer needed.
- masks: added TParseStringList for parsing mask lists
- enabled loading of standard windows status icons instead of LCL
- Published Colorbox selection property
- grids: added gdSelected in addition to gdfocused
- FindNextControl returns first control, if the current control is not in the taborder list (fixes 9390) from Gerard Visent
- removed dummy function SetTextAlign, SetMapMode, GetMapMode
- translations: default charset is now UTF-8, gtk1 and win32 will disable this if needed
- removed TLeftRight, is now part of the classes unit
- moved TButton from buttons unit to stdctrls
- added procedure CloseDebugOutput to LCLProc unit
- derived T(Float)SpinEdit from TCustomEdit to remove redundant code
- added TColorBox.GetColor, TColorListBox.GetColor from Michael Van Canneyt
- published TFileListBox.Directory
- published Font and ParentFont for Radiobutton and Checkbox
- removed endian conversion functions, they are part of the fpc 2.0.4 RTL now
- removed HKEY_xxx constants from lcltype unit, fpc supplies them in the registry unit
- published TEditButton.CharCase and OnEditingDone for several TCustomEditButton descendants
- published TRadioGroup.AutoSize
- keep selected item list of a treeview ordered from Gerard Visent
- Forced graphic to be transparent when TImage is transparent
- TTrayIcon is now a standard component instead of an optional package
- autosizing parent control now work with childs anchored to parent
- added example how to load current .po file with the gettext uni
- changed TApplication.AddOnIdleHandler to use TIdleEvent instead of TNotifyEvent
- added TCustomSpeedButton.OnMouseEnter/Exit from Graeme
IDE:
- Under linux the link /usr/bin/lazarus was renamed to /usr/bin/lazarus-ide. This means the IDE can no longer be started by typing 'lazarus'. Start the IDE with 'startlazarus' or 'lazarus-ide'. This solves a conflict with the tct package which already contains a program named 'lazarus'.
- debugging under mac osx
- Added Lazarus IDE Application Bundle for Mac OS X from Phil J. Hess
- added insert todo dialog from wile64
- identifier completion: adding := (can be disabled in environment / codetools options)
- new IDE package - editor toolbar (details will come from Graeme)
- modern icons in ide menu and some dialogs
- new build lazarus dialog look
- Ability to add xp manifest into windows executables (project options)
- improved and enabled creation of .lrt files and combining all .rst/.lrt files into one .po files per project from Luis Rodrigues
- added package option Provides (Package Editor / Options / Provides) - needed by KOL
- using sysutils.GetTempDir to find the temporary directory on windows
- added menu item Help -> Reporting a bug from Tom
- implemented auto invoking code templates on space
- code explorer: added directives page
- designer: implemented menu item: Change parent
- added various tests to Project / Compiler Options / Test to find common misconfigurations
- added workaround for the fact that windres (called by fpc 2.2.0) cannot find the preprocessor, if it is not on the path
- added Lithuanian to the list of translations
- added new project type: console application - a program using TCustomApplication
- added fpc component TEventLog
- codetools: now parses fpc 2.3.1 generics, simple find declaration for generics, added directives parser and optimizer, added tools to fix alias types and functions
Components
- added LazReport