X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/42f5333f806d9c3609a32455d7cf7ec633bce8cc..d43e302b68ee04a8b7773f0baf5f1989fb334ec4:/wxPython/docs/CHANGES.txt diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt index 2de2a1d91d..c1100cf786 100644 --- a/wxPython/docs/CHANGES.txt +++ b/wxPython/docs/CHANGES.txt @@ -1,7 +1,18 @@ Recent Changes for wxPython ===================================================================== -2.5.5.0 +2.6.0.0 +------- + +wxGTK: wx.StaticText can wrap text if the width is set to an explicit +value. + + + + + + +2.5.5.1 ------- wxMSW: Fixed bug #1022383, 'several ComboBoxes appear selected' @@ -49,6 +60,43 @@ wxMSW: Applied patch #1166587, removes all flicker from wx.StaticBox Added wx.lib.foldpanelbar, Andrea Gavana's port of Jorgen Bodde's C++ wxFoldPanelBar classes to Python. +wxGTK: Applied patch #1173802, reimplementation of GtkFileChooser +wxFileDialog by Mart Raudsepp. Note that this new file dialog is only +used on GTK2 >= 2.4. For earlier GTK2 versions and GTK1 then the +older generic file dialog is used. + +wxMSW: fixes to static box borders calculations (finalizes patch +#1166587) + +wx.Image: Use Python's buffer interface API for all image data and +alpha Set/Get methods and the ImageFromData* constructors. They all +still copy the buffer except for SetDataBuffer and SetAlphaBuffer, but +this gives more flexibility on where the data can come from. + +Added MDI support to XRC + +Added wx.animate module and a demo. The wx.animate module provides a +control that is able to display an animated GIF file. + +wx.lib.plot.py: Applied patch from Werner F. Bruhin that allows either +vertical and/or horizontal gridlines. + +wxMSW: Extra space given for top border of wx.StaticBoxSizer so the +upper line is not cliped when there is no label. + +wxMSW: Restored old behaviour of wx.StaticBox.SetBackgroundColour only +affecting the label. + +wxMSW: Fixed missing EVT_RIGHT_DOWN and EVT_TREE_ITEM_RIGHT_CLICK +events in a wx.TreeCtrl. + +Added wx.GetTopLevelWindows() function which returns a copy of the +list of top-level windows that currently exist in the application. + +Updated docview library modules and sample apps from the ActiveGrid +folks. + +Added the ActiveGrid IDE as a sample application.