[cairo-commit] goocanvas NEWS, 1.7, 1.8 README, 1.10, 1.11 configure.in, 1.16, 1.17

Damon Chaplin commit at pdx.freedesktop.org
Tue Aug 14 03:51:04 PDT 2007


Committed by: damon

Update of /cvs/cairo/goocanvas
In directory kemper:/tmp/cvs-serv6000

Modified Files:
	NEWS README configure.in 
Log Message:
released 0.9


Index: NEWS
===================================================================
RCS file: /cvs/cairo/goocanvas/NEWS,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- NEWS	3 Apr 2007 09:58:05 -0000	1.7
+++ NEWS	14 Aug 2007 10:50:46 -0000	1.8
@@ -1,5 +1,29 @@
 
 
+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)
 =============
 

Index: README
===================================================================
RCS file: /cvs/cairo/goocanvas/README,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- README	3 Apr 2007 09:58:05 -0000	1.10
+++ README	14 Aug 2007 10:50:46 -0000	1.11
@@ -13,9 +13,6 @@
 and uses interfaces for items & models (so you can easily turn any
 application object into a canvas item or model).
 
-The API for version 1.0 should be fixed very soon, at which point we'll
-guarantee backwards compatability.
-
 To build it run './configure' and 'make'. To run the demo cd into 'demo' and
 run './demo'. (Or run ./simple-demo for the very simple demo, or ./mv-demo
 for the model-view demo.)

Index: configure.in
===================================================================
RCS file: /cvs/cairo/goocanvas/configure.in,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- configure.in	3 Apr 2007 09:58:05 -0000	1.16
+++ configure.in	14 Aug 2007 10:50:46 -0000	1.17
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 
-AC_INIT(goocanvas, 0.8)
+AC_INIT(goocanvas, 0.9)
 AC_PREREQ(2.50)
 AC_CONFIG_SRCDIR(src/goocanvas.c)
 AC_CONFIG_HEADERS(config.h)
@@ -10,7 +10,7 @@
 # If the code has changed at all: REVISION++.
 # If any interfaces have changed at all: CURRENT++, REVISION=0.
 # If it is backwards compatible: AGE++, else AGE=0.
-LT_CURRENT=2
+LT_CURRENT=3
 LT_REVISION=0
 LT_AGE=0
 



More information about the cairo-commit mailing list