~ubuntu-branches/ubuntu/utopic/python-traitsui/utopic

« back to all changes in this revision

Viewing changes to docs/CHANGES.txt

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-07-09 13:57:39 UTC
  • Revision ID: james.westby@ubuntu.com-20110709135739-x5u20q86huissmn1
Tags: upstream-4.0.0
Import upstream version 4.0.0

Show diffs side-by-side

added added

removed removed

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