]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/CHANGES.txt
removed 68K targets and preferences and renamed output libraries
[wxWidgets.git] / wxPython / CHANGES.txt
index 623386fb63f38010c6e8a1d78a5ee6919a95ad79..99aa9001cb7e72364b5a6cdbe7458f23132a0dd2 100644 (file)
@@ -22,11 +22,12 @@ Changed the img2py tool to use PNG instead of XPM for embedding image
 data in Python source code, and the generated code now uses streams to
 convert the image data to wxImage, wxBitmap, or wxIcon.
 
-Added wxPython.lib.rcsizer which contains RowColSizer.  This sizer is
-based on code from Niki Spahiev and lets you specify a row and column
-for each item, as well as optional column or row spanning.  Cells with
-no item assigned to it are just left blank.  Stretchable rows or
-columns are specified and work the same as in wxFlexGridSizer.
+Added the wxPython.lib.rcsizer module which contains RowColSizer.
+This sizer is based on code from Niki Spahiev and lets you specify a
+row and column for each item, as well as optional column or row
+spanning.  Cells with no item assigned to it are just left blank.
+Stretchable rows or columns are specified and work the same as in
+wxFlexGridSizer.
 
 Updated XRCed from Roman Rolinsky
 
@@ -51,11 +52,10 @@ UNICODE!
     MSLU, (Microsoft Layer for Unicode).  It simply gets out of the
     way if the app is run on an NT box, or if run on a win9x box it
     loads a special DLL that provides the unicode versions of the
-    windows API.  So far I have not been able to get this to work on
-    win9x with the stock python.exe and pythonw.exe executables.
-    Instead I've had to rebuild the Python loaders linked with this
-    MSLU library from Microsoft.  I'd like to find a way to build
-    wxWindows/wxPython such that this is not needed...
+    windows API.  So far I have not been able to get this to work
+    perfectly on win9x.  Most things work fine but wxTaskBarIcon for
+    example will cause a crash if used with the unicode build on
+    win95.
 
     So how do you use it?  It's very simple.  When unicode is enabled,
     then all functions and methods in wxPython that return a wxString
@@ -69,9 +69,11 @@ UNICODE!
     codecs first and then pass the unicode string to the wxPython
     method.
 
+Added wxListCtrlAutoWidthMixin from Erik Westra.
 
-Bad news: The API for adding tools to toolbars has changed again.
-Good news: Toolbar tools can now have labels!
+Added wxIconBundle and wxTopLevelWindow.SetIcons.
+
+Added wxLocale and wxEncodingConverter.