[cairo-commit] goocanvas ChangeLog, 1.71, 1.72 TODO, 1.20, 1.21 configure.in, 1.10, 1.11

Damon Chaplin commit at pdx.freedesktop.org
Fri Feb 9 05:41:08 PST 2007


Committed by: damon

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

Modified Files:
	ChangeLog TODO configure.in 
Log Message:
2007-02-09  Damon Chaplin  <damon at gnome.org>

	* demo/demo-item.c (goo_demo_item_update): don't convert bounds to
	device space.

	* src/*.h: added padding to all *Class structs, to allow a bit of
	expansion without breaking backwards compatibility.

	* docs/*.xml: added example code to the introductory sections.
	Needs more explanation at some point.

	* configure.in: 
	* src/Makefile.am: added libtool version numbers.



Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/goocanvas/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- ChangeLog	8 Feb 2007 22:56:44 -0000	1.71
+++ ChangeLog	9 Feb 2007 13:41:02 -0000	1.72
@@ -1,3 +1,17 @@
+2007-02-09  Damon Chaplin  <damon at gnome.org>
+
+	* demo/demo-item.c (goo_demo_item_update): don't convert bounds to
+	device space.
+
+	* src/*.h: added padding to all *Class structs, to allow a bit of
+	expansion without breaking backwards compatibility.
+
+	* docs/*.xml: added example code to the introductory sections.
+	Needs more explanation at some point.
+
+	* configure.in: 
+	* src/Makefile.am: added libtool version numbers.
+
 2007-02-08  Damon Chaplin  <damon at gnome.org>
 
 	* src/goocanvasitemmodel.c

Index: TODO
===================================================================
RCS file: /cvs/cairo/goocanvas/TODO,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- TODO	4 Feb 2007 18:02:30 -0000	1.20
+++ TODO	9 Feb 2007 13:41:03 -0000	1.21
@@ -1,14 +1,7 @@
 
-Do we need to make parts of GooCanvasItemSimple public, for subclasses?
- - things like canvas, parent, model, bounds, simple_data->style,
-   simple_data->pointer_events are all needed for subclasses.
-
 Better animation code - interpolate translation, scale & rotation separately
 and recalculate the transform at each step.
 
-Add padding to class/object structs to allow a bit of extension in future
-without breaking backwards compatability.
-
 
 Bugs
 

Index: configure.in
===================================================================
RCS file: /cvs/cairo/goocanvas/configure.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- configure.in	29 Nov 2006 18:47:02 -0000	1.10
+++ configure.in	9 Feb 2007 13:41:03 -0000	1.11
@@ -6,6 +6,17 @@
 AC_CONFIG_HEADERS(config.h)
 AM_INIT_AUTOMAKE
 
+# Libtool versioning - only update before a public release.
+# 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=0
+LT_REVISION=0
+LT_AGE=0
+
+VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
+AC_SUBST(VERSION_INFO)
+
 AM_MAINTAINER_MODE
 
 AC_ISC_POSIX



More information about the cairo-commit mailing list