~ubuntu-branches/ubuntu/trusty/python-enable/trusty

« back to all changes in this revision

Viewing changes to docs/CHANGES.txt

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2010-10-17 23:10:41 UTC
  • mto: (1.2.1 upstream) (8.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20101017231041-rziowhgl7zhxra2i
Tags: upstream-3.3.2
ImportĀ upstreamĀ versionĀ 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Enable 3.3.1 (not yet released)
2
 
===============================
3
 
 
 
1
Enable 3.3.2 (October 15, 2010)
 
2
===============================
 
3
 
 
4
Enhancements
 
5
------------
 
6
 
 
7
* Context manager methods were added to the Kiva GraphicsContext class, so
 
8
  now, instead of this common pattern for a GraphicsContext gc:
 
9
 
 
10
      gc.save_state()
 
11
      try:
 
12
          # Do stuff with gc...
 
13
      except:
 
14
          gc.restore_state()
 
15
 
 
16
  one can do this::
 
17
  
 
18
      with gc:
 
19
          # Do stuff with gc...
 
20
 
 
21
* Stacked layout containers were added.
 
22
 
 
23
* qt4_backend: Added Tony Yu's patch to better handling keypresses in Qt4
 
24
  when modifier keys are pressed (r25644).
 
25
 
 
26
* vtk_backend: Added John Wiggins patch which adds key bindings to
 
27
  EnableVTKWindow (r25796).
 
28
 
 
29
* The Kiva backend for the Mac, implemented in ABCGI.pyx, is now processed
 
30
  with cython instead of pyrex.
 
31
 
 
32
 
 
33
Fixes
 
34
-----
 
35
 
 
36
* vtk_backend: Got rid of timer that was causing performance problems on
 
37
  the Mac by looking for the "StartEvent" on the RenderWindow to determine
 
38
  when we are about to do a vtk render. (r25605)
 
39
* savage:  Avoid the wx-specific FileInspector in Sike and use the
 
40
  CodeEditor directly. (r25742)
 
41
* Exceptions were updated to use the new Exception classes in several places.
 
42
 
 
43
 
 
44
Enable 3.3.1 (Feb 24, 2010)
 
45
===============================
 
46
 
 
47
Enhancements
 
48
------------
 
49
 
 
50
* Added dimming mask to disabled buttons when using wx backend (r25405).
 
51
* Added toggle_label and toggle_tooltip from Brad Buran's patch (r25414).
 
52
* vtk_backend: Made _redraw call _paint to force an immediate draw.
 
53
  Added a request_render callable slot that will be called instead of
 
54
  self.control.render if set. This allows renders to be coordinated to
 
55
  avoid duplicate renders. (r25423)
 
56
* Added option of making center section of compass clickable by setting
 
57
  "enable_center" to True. (r25492)
 
58
* kiva agg backend: fixed minor issues causing compiler warnings (r25498)
 
59
 
 
60
Fixes
 
61
-----
 
62
 
 
63
* Fixed hover_tool so it imports correctly under the 'null' toolkit, as
 
64
  reported on mailing list (r25407).
4
65
 
5
66
 
6
67
Enable 3.3.0 (Feb 24, 2010)
33
94
motivating thus far, please heed them and change your imports to use
34
95
"enthought.enable"!
35
96
 
 
97
 
36
98
Enable 3.2.0 (July 15th, 2009)
37
99
==============================
38
100