]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/docs/CHANGES.txt
fixed compile error
[wxWidgets.git] / wxPython / docs / CHANGES.txt
index caaf126f1c7a5be3dd96a5bb4aacaae8ea84ea20..c4f6e6e419f5e3c332fe4343fe808356d8525187 100644 (file)
@@ -1,7 +1,52 @@
 Recent Changes for wxPython
 =====================================================================
 
-2.5.2.3
+
+2.5.2.8
+-------
+
+Predominantly a bug-fix release.
+
+  * Fixed fatal error due to improper wrapping of wx.FSFile.
+
+  * Fixed return type of EditableListBox.GetListCtrl
+
+  * Give generic tree and list controls a DoGetBestSize so they play
+    nicer with sizers when there is no minimal size.
+
+  * Some tweaks in the demo and samples to correct layout, some
+    flicker problems, and namespace use.
+
+  * Add wx.Image.ConvertAlphaToMask
+
+  * Minor corrections in wx.lib.dialogs
+
+  * wx.FileHistory constructor now accepts the documented 2nd
+    parameter.
+
+  * Corrections for exceptions in the new ogl
+
+  * Fixed XRCed to not use reparenting of windows to implement caching
+    of property panels, since Reparent on wxMac is not implemented.
+
+  * Add support for wxTAB_TRAVERSAL to the XRC handler for
+    wxScrolledWindow. 
+
+  * Add support for all wxListBox styles to the XRC handler for
+    wxCheckListBox. 
+
+  * Fix for wx.Listbook.DeleteAllPages to really delete everything.
+
+  * wxGTK2 now supports alpha blended bitmap drawing
+
+  * Made wx.grid.Grid play nicer with sizers.
+
+  * etc.
+
+
+
+
+2.5.2.7
 -------
 
 wx.ADJUST_MINSIZE is now the default behaviour for window items in
@@ -103,9 +148,21 @@ MoveBeforeInTabOrder methods of wx.Window.
 Applied (and heavily modified) a patch from Eugene
 <svip123@fastmail.fm> that allows the sample modules in the demo to be
 edited and reloaded, all from within the demo.  You can switch back
-and forth beteen the default and your edited version, and any errors
+and forth between the default and your edited version, and any errors
 ocurring upon the reload are reported on the Demo tab.
 
+Added a menu item in the demo that will open a PyShell window that has
+the app and demo frame preloaded in the namespace.  This is another
+good way to explore and play with the objects in the currently running
+sample.  For example, load the Button sample and then do the following
+in the PyShell::
+
+       >>> b = frame.demoPage.GetChildren()[0]
+       >>> for x in range(0, 500, 10):
+       ...     b.Move((x, 50))
+       ...     app.Yield(True)
+       ...     wx.MilliSleep(10)
+