diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html
index 47321450eb..1d3cff8338 100644
--- a/wxPython/docs/CHANGES.html
+++ b/wxPython/docs/CHANGES.html
@@ -293,7 +293,34 @@ ul.auto-toc {
Recent Changes for wxPython
-
+
+
+
Fixed a bug in the MaskedEdit controls caused by conflicting IsEmpty
+methods.
+
Patch #1579280: Some mimetype optimizations on unix-like systems.
+
wxMac: Several wx.webkit.WebKitCtrl enhancements/fixes, including:
+
+
+- new methods for increasing/decreasing text size, getting
+selection, getting/setting scroll position, printing, enabling
+editing, and running JavaScripts on the page.
+- added new event (wx.webkit.WebKitBeforeLoadEvent) for catching, and
+possibly vetoing, load events before they occur.
+- wx.webkit.WebKitCtrl now fires mouse events for certain events
+that it was eating before. This improves wxSplitterWindow
+resizing behavior.
+- refactoring of the sizing logic to move the Cocoa view. Tested
+with splitter windows, panels, notebooks and all position
+correctly with this.
+
+
+
Some improvements to the drawing code in CustomTreeCtrl.
+
Fixed refcount leak in wx.Window.GetChildren.
+
+
+
@@ -398,7 +425,7 @@ of the component data objects to use to access the data.
Changed how the stock objects (wx.RED, wx.RED_PEN, wx.RED_BRUSH, etc.)
are initialized. They are now created as uninitialized instances
using __new__. Then after the wx.App has been created, but before
-OnInit is called, the .this attribute of each obhect is initialized.
+OnInit is called, the .this attribute of each object is initialized.
This was needed because of some delayed initialization functionality
that was implemented in wxWidgets, but the end result is cleaner for
wxPython as well, and allowed me to remove some ugly code previously
@@ -505,7 +532,7 @@ Andrea Gavana's FancyButtonPanel module.
Renamed wx.FutureCall to wx.CallLater so it is named more like
wx.CallAfter. wx.FutureCall is now an empty subclass of wx.CallLater
for compatibility of older code.
-
Added the wx.lib.customtreectrl the from Andrea Gavana.
+
Added the wx.lib.customtreectrl module from Andrea Gavana.
Added ChangeSelection to wx.BookCtrl (the base class for wx.Notebook
and other book controls) that is the same as SetSelection but doesn't
send the change events.
@@ -556,7 +583,7 @@ wx.PaintDC or wx.BufferedPaintDC. This uses the new
wx.Window.IsDoubleBuffered method.
-
+
@@ -593,7 +620,7 @@ machines, but at least all compile errors and warnings related to it
have been resolved.
-
+
@@ -627,7 +654,7 @@ already shown.
is selected only with the keyboard.
-
+
@@ -689,7 +716,7 @@ zoomed plot and move it around with a mouse drag.
Added wx.StandardPaths.GetDocumentsDir() (patch 1214360)
-
+
@@ -858,7 +885,7 @@ be easy to accommodate, all you need to do is add a parenthesis
pair: (...x, y, ...) ---> (...(x,y), ...)
-
+
@@ -886,7 +913,7 @@ calls.
change will get written at the next flush.
-
+
@@ -999,7 +1026,7 @@ there is a range of allowed values (so a wx.SpinCtrl is used instead
of a wx.TextCtrl.)
-
+
@@ -1077,7 +1104,7 @@ EVT_KEY_UP and EVT_TEXT events from its embedded text control.
-
+
@@ -1146,7 +1173,7 @@ folks.
Added the ActiveGrid IDE as a sample application.
-
+
@@ -1380,7 +1407,7 @@ wx.Image.
-
+
@@ -1537,7 +1564,7 @@ it.
version installs, and comes with an uninstaller script.
-
+
@@ -1569,7 +1596,7 @@ wxCheckListBox.
-
+
@@ -1753,7 +1780,7 @@ MigrationGuide for more details on using the new module.
Floats are allowed again as function parameters where ints are expected.
-
+
@@ -1766,7 +1793,7 @@ demonstrated in the Threads sample in the demo.
Added Chris Barker's FloatCanvas.
-
+
@@ -1821,7 +1848,7 @@ and Spacers can be specified with a wxSize (or 2-tuple) parameter
Added wxCursorFromBits.
-
+
@@ -1861,7 +1888,7 @@ think I am testing in the future...
Updated to 0.9b of PyCrust.
-
+
@@ -1922,7 +1949,7 @@ doesn't have a standard place for them.
Updated to the 0.9a version of PyCrust
-
+
@@ -1931,7 +1958,7 @@ doesn't have a standard place for them.
Added wxPyColourChooser by Michael Gilfix.
-
+
@@ -1941,14 +1968,14 @@ enhancements.
wxPython/lib/dialogs.py for more details.
-
+
@@ -2006,7 +2033,7 @@ HTMLHelp viewer does. Changed how the wxPythonDocs tarball is built
and added a script to launch the doc viewer.
-
+
@@ -2152,7 +2179,7 @@ example.
Added wxTimeCtrl from Will Sadkin.
-
+
@@ -2162,7 +2189,7 @@ without barfing and is also still compatible with Python debuggers.
Added some patches from library contributors.
-
+
@@ -2248,7 +2275,7 @@ wxPython/contrib/dllwidget and wxPython/demo/dllwidget for more
details.
-
+
@@ -2265,7 +2292,7 @@ subclass wxXmlResourceHandler, etc...
Added enhanced wxVTKRenderWindow by Prabhu Ramachandran
-
+
@@ -2365,7 +2392,7 @@ by having smaller functional apps to play with. They can be found in
wxPython/samples.
-
+
@@ -2373,7 +2400,7 @@ wxPython/samples.
changes and fixes in the wxWindows library.
-
+
diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt
index 30bd319aaf..66ffb34b43 100644
--- a/wxPython/docs/CHANGES.txt
+++ b/wxPython/docs/CHANGES.txt
@@ -3,7 +3,7 @@ Recent Changes for wxPython
2.7.1.2
-------
-* 20-Oct-2006
+* 21-Oct-2006
Fixed a bug in the MaskedEdit controls caused by conflicting IsEmpty
methods.
@@ -27,6 +27,9 @@ wxMac: Several wx.webkit.WebKitCtrl enhancements/fixes, including:
with splitter windows, panels, notebooks and all position
correctly with this.
+Some improvements to the drawing code in CustomTreeCtrl.
+
+Fixed refcount leak in wx.Window.GetChildren.