aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlecoanet2003-01-15 12:30:19 +0000
committerlecoanet2003-01-15 12:30:19 +0000
commitd49f3476d42a354d771e928105c235bdc484918a (patch)
tree296da06385c188dc090698e4f010b14b668f1446
parent953583b837f1560c8d50252b91e72870bd2b3581 (diff)
downloadtkzinc-d49f3476d42a354d771e928105c235bdc484918a.zip
tkzinc-d49f3476d42a354d771e928105c235bdc484918a.tar.gz
tkzinc-d49f3476d42a354d771e928105c235bdc484918a.tar.bz2
tkzinc-d49f3476d42a354d771e928105c235bdc484918a.tar.xz
*** empty log message ***
-rw-r--r--debian/changelog20
-rw-r--r--sandbox/testshape.pl4
2 files changed, 23 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 490e90c..f877c03 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,18 @@
+zinc-tk (3.2.6g) unstable; urgency=low
+
+ * Edition des attributs dans ZincDebug: la plupart des champs attributs
+ sont maintenant éditables (un <Control-z> dans un champ permet de
+ restaurer la valeur initiale)
+ * Possibilite de visualiser la bounding box d'un item dans ZincDebug.
+ * Ajout d'un module permettant de tracer les appels perl aboutissant
+ à une commande zinc améliorant ainsi passablement le confort de
+ debugging d'une appli (Christophe/Daniel).
+ * Correction d'un bug d'analyse des listes de points d'ancienne forme.
+ * Correction d'un core dump lors d'une tentative de clonage du top
+ group.
+
+ -- Patrick Lecoanet <lecoanet@ath.cena.fr> Wed, 15 Jan 2003 11:35:50 +0100
+
zinc-tk (3.2.6f) unstable; urgency=low
* Adaptation des méthodes fit, smooth, transform, coords, contour
@@ -11,6 +26,11 @@ zinc-tk (3.2.6f) unstable; urgency=low
* Correction d'un bug d'affichage de texte en GL avec plusieurs
fenêtres (cycle de création/destruction).
* Corrections de bugs en relation avec le premier point.
+ * La limitation qui obligeait à déclarer comme globale l'instance de zinc
+ lorsque ZincDebug était chargé au runtime (perl -MZincDebug script.pl)
+ n'est plus.
+ * Correction de bug (ZincDebug): la selection du groupe 1 dans l'arbre des
+ items provoquait un segmentation fault.
-- Patrick Lecoanet <lecoanet@ath.cena.fr> Tue, 14 Jan 2003 12:14:38 +0100
diff --git a/sandbox/testshape.pl b/sandbox/testshape.pl
index 3daf779..e14d341 100644
--- a/sandbox/testshape.pl
+++ b/sandbox/testshape.pl
@@ -58,7 +58,9 @@ $arc2 = $zinc->add('arc', $view, [90,0, 160,50],
-fillcolor => 'brown');
$g3 = $zinc->add('group', $view);
$zinc->translate($g3, 300, 300);
-$cv3 = $zinc->add('curve', $g3, [[-50, -40], [0, 0], [-50, 40], [50, 40], [50, -40]],
+$cv3 = $zinc->add('curve', $g3,
+# [[-50, -40], [0, 0], [-50, 40], [50, 40], [50, -40]],
+ [-50, -40, 0, 0, -50, 40, 50, 40, 50, -40],
-visible => 0,
-filled => 1,
-fillcolor => "#ffffff:100 0 28|#66848c:100 80|#7192aa:100 100/270"