作図ソフト dia の改良版
Revision | 286828e8a3b8ee3430df8f88e6914a4883f06a82 (tree) |
---|---|
Time | 2006-12-14 07:19:52 |
Author | Lars Clausen <lclausen@src....> |
Commiter | Lars Clausen |
Version 0.96 first prerelease updates, and some build fixes.
@@ -1,3 +1,22 @@ | ||
1 | +2006-12-13 Lars Clausen <lars@raeder.dk> | |
2 | + | |
3 | + * Makefile.am (core-translation-report): Clean up after | |
4 | + po-checktrans copying. | |
5 | + | |
6 | + * lib/plug-ins.h (DIA_PLUGIN_API_VERSION): Updated due to changes. | |
7 | + | |
8 | + * NEWS: | |
9 | + * configure.in: | |
10 | + * config.h.win32: | |
11 | + * doc/en/dia.xml: | |
12 | + * doc/pl/dia.xml: | |
13 | + * doc/eu/dia.xml: Updated to version 0.96-pre1 | |
14 | + | |
15 | + * plug-ins/vdx/Makefile.am (libvdx_filter_la_SOURCES): Added | |
16 | + visio-types.h | |
17 | + | |
18 | + * po/POTFILES.in: Removed EML.sheet.in. | |
19 | + | |
1 | 20 | 2006-12-09 Lars Clausen <lars@raeder.dk> |
2 | 21 | |
3 | 22 | * app/diapsft2renderer.c (ANNOYING_SCALE_FACTOR): Recalculated the |
@@ -36,11 +36,14 @@ po/Makefile: po/Makefile.in | ||
36 | 36 | (cd po ; make -f Makefile.in Makefile ; make) # gettext hack |
37 | 37 | |
38 | 38 | core-translation-report: po/dia.pot $(srcdir)/po-checktrans.py $(srcdir)/po-checktrans |
39 | - if [ "$(srcdir)" != "." ]; then \ | |
39 | + if [ ! "$(srcdir)" -ef "." ]; then \ | |
40 | 40 | cp $(srcdir)/po-checktrans .; \ |
41 | 41 | cp $(srcdir)/po-checktrans.py .; \ |
42 | 42 | fi |
43 | 43 | ./po-checktrans po/dia.pot $(srcdir)/po/*.po |
44 | + if [ ! "$(srcdir)" -ef "." ]; then \ | |
45 | + rm -f ./po-checktrans ./po-checktrans.py; \ | |
46 | + fi | |
44 | 47 | |
45 | 48 | all-local: core-translation-report po/Makefile |
46 | 49 |
@@ -1,4 +1,4 @@ | ||
1 | -dia-0.96-pre1: 3-Dev-2006 | |
1 | +dia-0.96-pre1: 13-Dev-2006 | |
2 | 2 | |
3 | 3 | * First release candidate for 0.96. Main improvements: |
4 | 4 |
@@ -18,7 +18,7 @@ | ||
18 | 18 | #undef LOCALEDIR /* needs to be calculated at runtime */ |
19 | 19 | /* NOT: #define LOCALEDIR "../lib/locale" */ |
20 | 20 | |
21 | -#define VERSION "0.95+cvs" | |
21 | +#define VERSION "0.96-pre1" | |
22 | 22 | |
23 | 23 | /* |
24 | 24 | * We are linking libxml as DLL with either msvc or mingw, but this |
@@ -1,6 +1,6 @@ | ||
1 | 1 | dnl Process this -*- autoconf -*- file with autoconf to produce a |
2 | 2 | dnl configure script. |
3 | -AC_INIT(dia, 0.95+cvs, http://bugzilla.gnome.org/enter_bug.cgi?product=dia) | |
3 | +AC_INIT(dia, 0.96-pre1, http://bugzilla.gnome.org/enter_bug.cgi?product=dia) | |
4 | 4 | AC_CONFIG_SRCDIR(app/diagram.c) |
5 | 5 | AM_INIT_AUTOMAKE(AC_PACKAGE_NAME,AC_PACKAGE_VERSION) |
6 | 6 |
@@ -8,7 +8,7 @@ | ||
8 | 8 | |
9 | 9 | [ |
10 | 10 | |
11 | - <!ENTITY VERSION "0.95"> | |
11 | + <!ENTITY VERSION "0.96-pre1"> | |
12 | 12 | |
13 | 13 | <!ENTITY INTRODUCTION SYSTEM "intro.xml"> |
14 | 14 |
@@ -4,7 +4,7 @@ | ||
4 | 4 | |
5 | 5 | <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "../../dtd/docbookx.dtd" [ |
6 | 6 | |
7 | - <!ENTITY VERSION "0.95"> | |
7 | + <!ENTITY VERSION "0.96-pre1"> | |
8 | 8 | |
9 | 9 | <!ENTITY INTRODUCTION SYSTEM "intro.xml"> |
10 | 10 |
@@ -1,7 +1,7 @@ | ||
1 | 1 | <?xml version="1.0" encoding="iso-8859-1"?> |
2 | 2 | |
3 | 3 | <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "../../dtd/docbookx.dtd"[ |
4 | -<!ENTITY VERSION "0.95"> | |
4 | +<!ENTITY VERSION "0.96-pre1"> | |
5 | 5 | <!ENTITY INTRODUCTION SYSTEM "intro.xml"> |
6 | 6 | <!ENTITY QUICKSTART SYSTEM "usage-quickstart.xml"> |
7 | 7 | <!ENTITY CANVAS SYSTEM "usage-canvas.xml"> |
@@ -48,7 +48,7 @@ G_BEGIN_DECLS | ||
48 | 48 | * The list is by no means complete. If in doubt about your change |
49 | 49 | * please ask on dia-list or alternative increment ;-) --hb |
50 | 50 | */ |
51 | -#define DIA_PLUGIN_API_VERSION 7 | |
51 | +#define DIA_PLUGIN_API_VERSION 8 | |
52 | 52 | |
53 | 53 | typedef enum { |
54 | 54 | DIA_PLUGIN_INIT_OK, |
@@ -4,6 +4,7 @@ pkglib_LTLIBRARIES = libvdx_filter.la | ||
4 | 4 | |
5 | 5 | libvdx_filter_la_SOURCES = \ |
6 | 6 | vdx.c \ |
7 | + visio-types.h \ | |
7 | 8 | vdx-import.c \ |
8 | 9 | vdx-export.c \ |
9 | 10 | vdx-common.c \ |
@@ -199,7 +199,6 @@ sheets/ChemEng.sheet.in | ||
199 | 199 | sheets/Circuit.sheet.in |
200 | 200 | sheets/Contact.sheet.in |
201 | 201 | sheets/Cybernetics.sheet.in |
202 | -sheets/EML.sheet.in | |
203 | 202 | sheets/ER.sheet.in |
204 | 203 | sheets/Electric.sheet.in |
205 | 204 | sheets/FS.sheet.in |