GooCanvas 0.9 (Aug 13 2007) ============= o Added "scale-x" and "scale-y" properties to GooCanvas, so the horizontal and vertical scale can be set independently. o Added "integer-layout" property to GooCanvas, so all layout can be done to the nearest integer (useful for widgets). o Added "automatic-bounds", "bounds-from-origin" and "bounds-padding" properties, used to calculate the canvas bounds automatically. o Added "wrap" property to GooCanvasText, to specify how to wrap text. o Added demo code to show how to create very large items. o Reduced flicker when scrolling. o Fixed crash when changing a GooCanvasPathModel. o Fixed crash in animation code. o Fixed bug that meant the canvas wasn't redrawn properly when the bounds were changed. o Fixed problem when calculating item sizes before the canvas is realized. o Fixed problems calculating bounds of items with empty fills or strokes. GooCanvas 0.8 (Apr 3 2007) ============= o Added support for "width-for-height" layout - items whose requested height changes according to their allocated width (typically text items). o Added "background-color" and "background-color-rgb" properties to GooCanvas. o Added "ellipsize" property to GooCanvasText. o Added goo_canvas_item_remove() and goo_canvas_item_model_remove() convenience functions to remove an item or model from the canvas. o Fixed bug removing widget items. o Fixed bug which meant that the fill pattern couldn't be reset to NULL. o Fixed the item event signals, so that returning TRUE from a handler stops the signal emission. o Added a few things that will be needed to support tooltips, when GTK+ 2.12 is available. (Though I don't want to depend on GTK+ 2.12 yet.) o Added "const" to arguments, where appropriate. GooCanvas 0.7 (Feb 27 2007) ============= o Added goo_canvas_get_items_at() and goo_canvas_get_items_in_area() to get all the items at a given point or in a given area. o Use CAIRO_ANTIALIAS_GRAY as the default antialiasing mode, since that is what is recommended by cairo for unhinted text. o Added "hint-metrics" style property, so people can use hinted text if they want to (though they shouldn't change the canvas scale in that case, as the bounds of the text item may become incorrect). o Unref all objects in dispose methods rather than finalize, to help bindings. o Remove embedded widgets properly. o Clip GooCanvasTable children if needed. o Set the clip path in goo_canvas_render() if needed. o Use the ink rects & the logical rects to calculate the text item bounds. o Copied GTK+ build stuff for generating goocanvasmarshal.[hc] and goocanvasenumtypes.[hc], so hopefully it is easier to build on Windows. o Fixed a few other minor bugs. GooCanvas 0.6 (Feb 17 2007) ============= o Major rewrite to make the model optional, so people can choose to have either a simple canvas or a model/view canvas. The standard items can be used in either scenario. o Added support for cascading style properties (things like fill color, stroke width, font etc.). Properties use a GQuark for a unique identifier, and a GValue for the property value, so they are very flexible. o Added GooCanvasTable item to layout child items. o Made it much easier to create new items, by subclassing GooCanvasItemSimple which handles most of the work. See demo/demo-item.c for a simple item. o Added support for different units - pixels, points, inches or millimeters, and allow setting of vertical and horizontal resolution (dpi). o Added workaround for cairo's 16-bit limit, to support large canvases. o Added demo/scalability-demo which creates 100,000 items over a large canvas. It takes a few seconds to create all the items, but once created it seems to work fast enough. o Improved the animation code, supporting relative or absolute values for the x, y, scale and rotation. o Added "clip-path" and "clip-fill-rule" to specify a clip path for an item. GooCanvas 0.5 (Oct 10 2006) ============= o This was just a development release previewing the new optional model-view rewrite. GooCanvas 0.4 (Aug 24 2006) ============= o Many minor changes to support the PyGooCanvas python bindings. o Added goo_canvas_view_get_item_view() to get views of particular items, to make it easier to setup signal handlers for simple canvases. (See demo/simple-demo.c for a demo of this.) o Support transforms on item views as well as on items. GooCanvas 0.3 (Apr 24 2006) ============= o New GooCanvasPath item (similar to SVG path element). o Accessibility support. o Keyboard focus navigation. o API documentation. o Convenience functions for coordinate conversions. o Smooth scrolling & zooming. o Zoom-independent text layout. o Render part or all of canvas to a cairo_t, for ps/pdf output. o New "visibility" and "visibility-threshold" properties for items. o New "pointer-events" property specifying which parts of items get events. GooCanvas 0.2 (Dec 5 2005) ============= o Affine transformations for all items. o Event handling, including support for pointer grabs. o Support for simple animation. o Finished port of FooCanvas demo, and added test for pointer grabs. GooCanvas 0.1 (Nov 17 2005) ============= o Basic items working. o Model/view split. o Interfaces for items & views.