• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

作図ソフト dia の改良版


Commit MetaInfo

Revisiónd70b27432a04880b040ef6ff5292c0acf9d1bf05 (tree)
Tiempo2006-02-23 02:31:45
AutorLars Clausen <lclausen@src....>
CommiterLars Clausen

Log Message

Update to pre2

Cambiar Resumen

Diferencia incremental

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
1+2006-02-21 Lars Clausen <lars@raeder.dk>
2+
3+ * NEWS:
4+ * doc/pl/dia.xml:
5+ * doc/en/dia.xml:
6+ * configure.in:
7+ * config.h.win32: Update to -pre2.
8+
9+ * lib/beziershape.c (add_handles): Fixing CP pos calculation for
10+ adding new CP's. Fixes bug #331557.
11+
112 2006-02-20 Lars Clausen <lars@raeder.dk>
213
314 * lib/diarenderer.c (find_center_point): Better handling of some
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
1+dia-0.95-pre1: 21-Feb-2006
2+
3+* A couple bugs fixed: 331489 (metapost font size), 331371 (win32 margins),
4+ 331491 (text position in metapost), 331557 (crash with beziergon undo),
5+ 331372 (arc disappears).
6+
17 dia-0.95-pre1: 12-Feb-2006
28
39 * Quite some bugs fixed, at least:
--- a/config.h.win32
+++ b/config.h.win32
@@ -18,7 +18,7 @@
1818 #undef LOCALEDIR /* needs to be calculated at runtime */
1919 /* NOT: #define LOCALEDIR "../lib/locale" */
2020
21-#define VERSION "0.95-pre1"
21+#define VERSION "0.95-pre2"
2222
2323 /*
2424 * We are linking libxml as DLL with either msvc or mingw, but this
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
11 dnl Process this -*- autoconf -*- file with autoconf to produce a
22 dnl configure script.
3-AC_INIT(dia, 0.95-pre1, http://bugzilla.gnome.org/enter_bug.cgi?product=dia)
3+AC_INIT(dia, 0.95-pre2, http://bugzilla.gnome.org/enter_bug.cgi?product=dia)
44 AC_CONFIG_SRCDIR(app/diagram.c)
55 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME,AC_PACKAGE_VERSION)
66
--- a/doc/en/dia.xml
+++ b/doc/en/dia.xml
@@ -8,7 +8,7 @@
88
99 [
1010
11- <!ENTITY VERSION "0.95-pre1">
11+ <!ENTITY VERSION "0.95-pre2">
1212
1313 <!ENTITY INTRODUCTION SYSTEM "intro.xml">
1414
--- a/doc/pl/dia.xml
+++ b/doc/pl/dia.xml
@@ -1,7 +1,7 @@
11 <?xml version="1.0" encoding="iso-8859-1"?>
22
33 <!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "../../dtd/docbookx.dtd"[
4-<!ENTITY VERSION "0.95-pre1">
4+<!ENTITY VERSION "0.95-pre2">
55 <!ENTITY INTRODUCTION SYSTEM "intro.xml">
66 <!ENTITY QUICKSTART SYSTEM "usage-quickstart.xml">
77 <!ENTITY CANVAS SYSTEM "usage-canvas.xml">
--- a/lib/beziershape.c
+++ b/lib/beziershape.c
@@ -344,8 +344,8 @@ add_handles(BezierShape *bezier, int pos, BezPoint *point,
344344 object_add_handle_at((DiaObject*)bezier, handle1, 3*pos-3);
345345 object_add_handle_at((DiaObject*)bezier, handle2, 3*pos-2);
346346 object_add_handle_at((DiaObject*)bezier, handle3, 3*pos-1);
347- object_add_connectionpoint_at((DiaObject *)bezier, cp1, 2*pos-1);
348- object_add_connectionpoint_at((DiaObject *)bezier, cp2, 2*pos);
347+ object_add_connectionpoint_at((DiaObject *)bezier, cp1, 2*pos-2);
348+ object_add_connectionpoint_at((DiaObject *)bezier, cp2, 2*pos-1);
349349 }
350350
351351 static void