Recent Changes for wxPython
=====================================================================
+2.5.2.9
+-------
+
+wxMac focus and border refreshes corrected.
+
+Updated internal PNG library.
+
+wxMac fix for metal appearance on wx.ToolBar.
+
+wx.grid.Grid fix allowing DoGetBestSize to be called before CreateGrid
+(which means that a min size doesn't need to be specified.)
+
+wxMac fix for not sending a native click to a control if it is not
+enabled (does an enable itself)
+
+Added wx.ogl.DrawShape
+
+Added support to XRC and XRCed for the 3-state checkbox flags and also
+for wx.ToggleButton. Updated the generic window styles supported by
+XRCed.
+
+It is now possible to create "stock" buttons. Basically this means
+that you only have to provide one of the stock IDs (and an empty
+label) when creating the button and wxWidgets will choose the stock
+label to go with it automatically. Additionally on the platforms that
+have a native concept of a stock button (currently only GTK2) then the
+native stock button will be used. For example, the following will
+result in a button with "Cancel" as the label and an accelerator on
+the "C", and if on wxGTK2 there will be an image of a red X::
+
+ b = wx.Button(parent, wx.ID_CANCEL)
+
+
+Added wx.lib.ticker.Ticker class from Chris Mellon.
+
+
+
2.5.2.8
-------