aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure2
-rw-r--r--debian/changelog15
-rw-r--r--generic/Types.h2
3 files changed, 16 insertions, 3 deletions
diff --git a/configure b/configure
index 051500a..6f74a63 100755
--- a/configure
+++ b/configure
@@ -646,7 +646,7 @@ fi
#-----------------------------------------------------------------------
MAJOR_VERSION=3
MINOR_VERSION=2
-PATCHLEVEL=95
+PATCHLEVEL=96
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${PATCHLEVEL}
diff --git a/debian/changelog b/debian/changelog
index 281ca1c..e328445 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,18 @@
zinc-tk (3.2.96) unstable; urgency=low
+ * Fixed a bad redraw of maps (traces) and adapted for floating
+ point MapInfos.
+ * MapInfo coordinates converted to floating point. This should
+ greatly improve map usefullness in Zinc.
+ * Fixed an erroneous clipping shape when specified with
+ an unaligned rectangle or an icon.
+ * Fixed a core dump in curve when -closed 1 under X.
+ * Added tcompose, tset, skew transformation commands.
+ * The transform command now accept the reserved tag 'device' as
+ source and destination. This specifies the device coordinate
+ space. A named transform can be given as source and destination.
+ * The tsave command accept the reserved tag 'identity' as source.
+ It can also take a named transform as source.
* Zinc is now able to use all font glyphs above 0x20 in a
256 glyph font.
* The smooth method reports a list of line segment vertices
@@ -31,7 +44,7 @@ zinc-tk (3.2.96) unstable; urgency=low
'withtype', pathtags. More images tests. Tests for text items.
Tests for openGL fonts with multiple sizes (C. Mertz).
- -- Patrick Lecoanet <lecoanet@ath.cena.fr> Fri Nov 28 14:43:30 2003
+ -- Patrick Lecoanet <lecoanet@ath.cena.fr> Fri, 28 Nov 2003 13:37:48 +0200
zinc-tk (3.2.95) unstable; urgency=low
diff --git a/generic/Types.h b/generic/Types.h
index a7dd5a5..948ea80 100644
--- a/generic/Types.h
+++ b/generic/Types.h
@@ -91,7 +91,7 @@ extern "C" {
#endif
-typedef double ZnReal; /* Keep it a double for GL. */
+typedef double ZnReal; /* Keep it a double for GL and Tcl. */
typedef int ZnBool; /* Keep it an int to keep Tk happy */
typedef ZnReal ZnPos;
typedef ZnReal ZnDim;