• 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

Revisão3215e581b91f24199f8b1678f8a7bbabad299cce (tree)
Hora2004-07-26 14:00:18
AutorLars Clausen <lclausen@src....>
CommiterLars Clausen

Mensagem de Log

0.94-pre3

Mudança Sumário

Diff

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
11 2004-07-25 Lars Clausen <lars@raeder.dk>
22
3+ * dia.spec (Release):
4+ * configure.in:
5+ * NEWS:
6+ * config.h.win32:
7+ * doc/en/dia.xml:
8+ * doc/pl/dia.xml: Pre3 coming out.
9+
310 * lib/diarenderer.c (draw_polygon):
411 * plug-ins/dxf/dxf-export.c (export_dxf): Two fixes by Takeshi
512 Hamasaki <hma@syd.odn.ne.jp>: Correct header to be a 0 (zero)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
1+dia-0.94-pre3: 25-Jul-2004
2+
3+Fixing a number of png issues and a few bugs.
4+
15 dia-0.94-pre2: 17-Jul-2004
26
37 Second prerelease of version 0.94. Bunch of small fixes, but together
--- a/config.h.win32
+++ b/config.h.win32
@@ -17,7 +17,7 @@
1717 #define GETTEXT_PACKAGE "dia"
1818 #define LOCALEDIR "../lib/locale"
1919
20-#define VERSION "0.94-pre2"
20+#define VERSION "0.94-pre3"
2121
2222 /*
2323 * 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.94-pre2, http://bugzilla.gnome.org/enter_bug.cgi?product=dia)
3+AC_INIT(dia, 0.94-pre3, 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/dia.spec
+++ b/dia.spec
@@ -6,7 +6,7 @@ Summary: A gtk+ based diagram creation program.
66 Name: %name
77 Version: %ver
88 # This indicates changes to the spec file after last time %ver has changed.
9-Release: pre2
9+Release: pre3
1010 Copyright: GPL
1111 Group: Applications/
1212 Source: ftp://ftp.gnome.org/pub/GNOME/stable/sources/dia/%{name}-%{ver}.tar.gz
--- a/doc/en/dia.xml
+++ b/doc/en/dia.xml
@@ -8,7 +8,7 @@
88
99 [
1010
11- <!ENTITY VERSION "0.94-pre2">
11+ <!ENTITY VERSION "0.94-pre3">
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.94-pre2">
4+<!ENTITY VERSION "0.94-pre3">
55 <!ENTITY INTRODUCTION SYSTEM "intro.sgml">
66 <!ENTITY QUICKSTART SYSTEM "usage-quickstart.sgml">
77 <!ENTITY CANVAS SYSTEM "usage-canvas.sgml">
--- a/lib/diagdkrenderer.c
+++ b/lib/diagdkrenderer.c
@@ -642,7 +642,7 @@ draw_string (DiaRenderer *object,
642642
643643 {
644644 int height_pixels = dia_transform_length(renderer->transform, object->font_height);
645- if (height_pixels < 2) {
645+ if (height_pixels < 2) { /* "Greeking" instead of making tiny font */
646646 int width_pixels = dia_transform_length(
647647 renderer->transform,
648648 dia_font_string_width(text, object->font, object->font_height));