From 90fa618ee08bc5313ed6de99f5f9c615db48cc2e Mon Sep 17 00:00:00 2001 From: Roman Rolinsky Date: Thu, 17 Oct 2002 18:49:29 +0000 Subject: [PATCH] Notes about 0.0.8-1. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17557 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/tools/XRCed/CHANGES | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/wxPython/wxPython/tools/XRCed/CHANGES b/wxPython/wxPython/tools/XRCed/CHANGES index c2fc33f141..4703a5316c 100644 --- a/wxPython/wxPython/tools/XRCed/CHANGES +++ b/wxPython/wxPython/tools/XRCed/CHANGES @@ -1,3 +1,23 @@ +0.0.8-1 +------- + +Using WX_2_4_BRANCH. + +Added new controls: wxSpinCtrl, wxGenericDirCtrl, unknown (custom +control), improved wxXRC format suppor (menu styles, etc.). + +Some I18N support: parsing "encoding" attribute in XML header, later +it can be modified in "properties" panel for "XML tree". + +UNIX note: currently XML writing for non-ascii chars works only if +sys.getdefaultencoding() returns good value. To do this, one has to +put following lines to "sitecustomize.py" file: + +# Start code segment +import sys +sys.setdefaultencoding('iso-8859-1') # or whatever +# End code segment + 0.0.7 -----