/usr/share/doc/python-traitsui/CHANGES.txt is in python-traitsui 4.5.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | Traits 3.5.1 (not yet released)
===============================
Traits 3.5.0 (Oct 15, 2010)
===========================
Enhancements
------------
* adding support for drop-down menu in Button traits, but only for qt backend
* adding 'show_notebook_menu' option to ListEditor so that the user can
right-click and show or hide the context menu (Qt)
* added selection range traits to make it possible for users to replace
selected text
Fixes
-----
* fixed null color editor to work with tuples
* bug when opening a view with the ToolbarButton
Traits 3.4.0 (May 26, 2010)
===========================
Enhancements
------------
* adding new example to make testing rgb color editor easier
Fixes
-----
* fixed NumericColumn to not expect object to have model_selection attribute,
and removed more dead theming code
* fixed API bugs with the NumericColumn where its function signatures
differed from its base class, but the calling code expected them to all
be the same
* fixed bug which was related to type name errors caused when running Sphinx
* when using File(exists=True), be sure to validate the type of the value
first before using os.path.isfile()
Traits 3.3.0 (Feb 24, 2010)
===========================
Enhancements
------------
The major enhancement this release is that the entire Traits package has been
changed to use relative imports so that it can be installed as a sub-package
inside another larger library or package. This was not previously possible,
since the various modules inside Traits would import each other directly
through "traits.[module]". Many thanks to Darren Dale for the
patch.
Fixes
-----
There have been numerous minor bugfixes since the last release. The most notable
ones are:
* Many fixes involve making Traits UI more robust if wxPython is not installed
on a system. In the past, we have been able to use Qt if it was also
installed, but removing Wx would lead to a variety of little bugs in various
places. We've squashed a number of these. We've also added better checks
to make sure we're selecting the right toolkit at import and at runtime.
* A nasty cyclic reference was discovered and eliminated in DelegatesTo traits.
* The Undefined and Uninitialized Traits were made into true singletons.
* Much of the inconsistent formatting across the entire Traits source has
been eliminated and normalized (tabs/spaces, line endings).
Traits 3.2.0 (July 15, 2009)
============================
Enhancements
------------
* Implemented editable_labels attribute in the TabularEditor for enabling editing of the labels (i.e. the first column)
* Saving/restoring window positions works with multiple displays of different sizes
* New ProgressEditor
* Changed default colors for TableEditor
* Added support for HTMLEditor for QT backend using QtWebKit
* Improved support for opening links in external browser from HTMLEditor
* Added support for TabularEditor for QT backend
* Added support for marking up the CodeEditor, including adding squiggles and dimming lines
* Added SearchEditor
* Improved unicode support
* Changed behavior of RangeEditor text box to not auto-set
* Added support in RangeEditor for specifying the method to evaluate new values.
* Add DefaultOverride editor factory courtesy Stéfan van der Walt
* Removed sys.exit() call from SaveHandler.exit()
Fixes
-----
|