X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..b86ad1d632e9d7c677177631d3a5484cb3195f0e:/wxPython/wx/tools/XRCed/CHANGES.txt diff --git a/wxPython/wx/tools/XRCed/CHANGES.txt b/wxPython/wx/tools/XRCed/CHANGES.txt index dff8641b48..dcc4dcabf2 100644 --- a/wxPython/wx/tools/XRCed/CHANGES.txt +++ b/wxPython/wx/tools/XRCed/CHANGES.txt @@ -1,3 +1,203 @@ +0.1.8-5 +------- + +Preferences for default "sizeritem" parameters for new panels and +controls can be configured ("File">"Preferences..."). + +Implemented comment object for including simple one-line comments and +comment directives as tree nodes. No validation is performed for a +valid XML string so comments must not contain "-->". Comment directive +is a special comment starting with '%' character, followed by a line +of python code. It is executed using 'exec' when the resource file is +opened. This is useful to import plugin modules containing custom +handlers which are specific to the resource file, hovewer this is of +course a security hole if you use foreign XRC files. A warning is +displayed if the preference option 'ask' is selected (by default). + +Added support for custom controls and plugin modules. Refer to this +wxPythonWiki for the details: + http://wiki.wxpython.org/index.cgi/XRCed#custom + +Tool panel sections can be collapsed/expanded by clicking on the +label of a tool group. + +Some undo/redo and other fixes. + +0.1.8-4 +------- + +Fixes for wxMSW (notebook highlighting, control sizes, tree Unselect). + +0.1.8-3 +------- + +Notebook page highlighting fix. Highlight resizes when the window +is resized. ParamUnit spin button detects event handler re-entry +(wxGTK probably has a bug in wxSpinButton with repeated events). + +0.1.8-2 +------- + +Fix for dealing with empty 'growable' property, using MiniFrame +for properties panel, the panel is restored together with the +main window. + +0.1.8-1 +------- + +Fixed SetItemBold and editing 'growable' properties of +wxFlexGridSizer. + +0.1.8-0 +------- + +New feature added from a patch submitted on sourceforge by botg: +moving of tree items. + +Bugs fixed: +- ChecklistBox content editing; +- Window styles more in sync with the docs; +- Replacing items; +- Reference property page created correctly (every property is + optional). + +0.1.7-5 +------- + +Fix for non-ascii characters support when using other encodings +than utf-8 in 'content' property. Tested under unicode build. + +0.1.7-4 +------- + +Second fix for Copy/Paste (using expat.native_encoding property). +Added cellpos,cellspan properties for Spacer in GridBag sizer. + +0.1.7-3 +------- + +Fix for Copy/Paste objects with international characters. + +0.1.7-2 +------- + +Fixed Cut command, added support for MenuBar inside Frame/Dialog. + +0.1.7-1 +------- + +Important update of Paste command code which was passing too much data +thru clipboard using cPickle. Objects created while unpickling (from +minidom) were clogging memory. Now using toxml() (why didn't I do it +before - was I drunk or what? :) ). + +0.1.7-0 +------- + +Added new controls (Choicebook, Listbook, StatusBar, DatePicker), and +completed style flags. Test window is opened for an available parent +control if no specific view defined. Better handling of exceptions +(highlighting does not 'stick' anymore). Tested on wxGTK 2.6.1.0. + +0.1.6-7 +------- + +Using system clipboard for Copy/Paste. + +0.1.6-6 +------- + +Improved some dialogs (window styles, growable cols). Changed the +range for wxSpinCtrl min/max to all integers (default 0/100 is not +always good). + +0.1.6-5 +------- + +Fixed testing for any element inside object tree. + +0.1.6-4 +------- + +Fixed replacing op for sizer children and spacer objects. +UndoReplace is not yet implemented. + +0.1.6-3 +------- + +Fix for crash when opening new file with active tree selection. +Replacing controls bug fixed. + +0.1.6-2 +------- + +wxMSW wxTreeCtrl behaviour is still different from wxGTK for +wxTR_MULTIPLE, some fixes for this. + +0.1.6-1 +------- + +New (experimental ;) ) feature: support for "object_ref" tag, for +creating references to named objects (see tn0014.txt). "reference..." +menu command creates new object_ref node. Properties of the top-level +object can be overriden, but overriding child controls is not working +as expected (maybe a bug in wx). + +0.1.5-3 +------- + +xxxStdDialogButtonSizer pulldown menu with standard buttons. + +Some fixes for selecting tools inside toolbar with test window open +(whole toolbar is selected). + +Toolbars can be added inside windows. + +0.1.5-2 +------- + +Using wx.GetDefaultPyEncoding/wx.SetDefaultPyEncoding for changing active encoding. + +Fixed pasting siblings (Ctrl key pressed while pasting). + +Dealed with ascii build (Python does not recognize 'ascii' as valid encoding). +If encoding is not specified it is not written in XRC. Will add more +customization in the future. + +Changed to use SimpleTool instead or Toggle tool (does not work on Win32). + +0.1.5-1 +------- + +Added wxWizard, wxWizardPageSimple (only from pull-down menu). + +Hide command for test window. + +Replacing classes works better. + +Added Locate tool. + +0.1.4-1 +------- + +Edit->Locate command (Ctrl-L) for quick selection of items. +Works with event-handling controls (buttons, text fields) but +not with labels/sizers. + +Some improvements: relative paths for files supplied as command- +line argument work correctly, notebook panels are highlighted +better. + +0.1.2-1 +_______ + +Added support for wxGridBagSizer (supported in wxPython 2.5). + +0.1.1-5 +------- + +Added subclass attribute. + 0.1.1-4 -------