2018-12-05 05:42:41 +03:00
1.0.0
-----
- Port to Python 3 with support for 3.5, 3.6, and 3.7
- Python < 2.7 no longer supported
- Port from PyGTK to PyGObject
2011-03-26 23:24:27 +03:00
0.7.2
-----
- Fix bug in calculating bounding box for rotated text
- Few minor updates
2010-12-08 11:34:01 +03:00
0.7.1
-----
- Views no longer lose reference to canvas on unrealize()
2011-02-06 18:45:33 +03:00
- bug fix in log message
2010-12-08 11:34:01 +03:00
2010-09-19 23:04:19 +04:00
0.7.0
2010-03-31 09:38:14 +04:00
-----
- Painters are bound to a specific view, like tools
2010-09-19 23:04:19 +04:00
- Introduced aspects for finding items and handles
- New feature: Guides, for aligning elements
- Free hand drawing style
2010-03-31 09:38:14 +04:00
2010-02-22 10:16:05 +03:00
0.6.0
-----
- Handlers are no longer called recursively for observed methods/properties.
- removed enable_dispatching() and disable_dispatching() calls.
- Made aspect code simpler.
- Moved disconnect code from tool to aspect, as stated in Aspect's docstring.
2010-02-24 23:31:52 +03:00
- Fixed issues in connections.
- Lot's of fixes and testing has been done on the undo mechanism.
2010-02-22 10:16:05 +03:00
2010-01-13 20:54:23 +03:00
0.5.0
-----
- Split tools in tools and aspects, separating the _what_ from the _how_.
For this, a dependency to the simplegeneric module is introduced.
- Renamed VariablePoint to Position.
- Handle is no longer inheriting from VariablePoint/Position.
- Handle connections are no longer registered on the handle, but are
maintained in the Canvas instance. This makes for much easier querying
(e.g. which elements are attached to some element).
Added a Table class to support this functionality.
- Added a timeout property on the @async decorator. The method is invoked
the amunt of milliseconds after the first invocation.
2009-09-08 10:39:07 +04:00
0.4.1
------
- Call Item._set_canvas after matrix update
- Verify if value changed before marking variable as dirty.
2008-12-09 07:07:26 +03:00
0.4.0
------
- allow to define connectable parts of item's (ports feature)
- implemented default connection tool (thanks to ports feature)
- line segment tool implemented (code taken from gaphor)
2008-12-09 07:10:33 +03:00
- implemented Item.constraint method to simplify item's constraint
creation
2009-01-27 07:50:42 +03:00
- The canvas (-view) is no longer tied to the (0, 0) position. Scrolling can
be done quite fluidly with the new PanTool implementation.
2008-12-09 07:10:33 +03:00
- API changes
- use positions instead of "x, y" pairs in all method calls