• 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

Revision50552bcde9ddeb0861a9f469b55ca7f61cdc70f0 (tree)
Time2006-03-23 03:43:01
AuthorLars Clausen <lclausen@src....>
CommiterLars Clausen

Log Message

pre6 commit, just a day late:)

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
1+2006-03-21 Lars Clausen <lars@raeder.dk>
2+
3+ * installer/win32/dia.nsi:
4+ * doc/en/dia.xml:
5+ * doc/eu/dia.xml:
6+ * doc/pl/dia.xml:
7+ * config.h.win32:
8+ * configure.in:
9+ * NEWS: -pre6
10+
11+ * plug-ins/xfig/xfig-import.c: Last missing stack underflow check.
12+
113 2006-03-19 Hans Breuer <hans@breuer.org>
214
315 * app/display.c app/preferences.c : unset transient, still issues
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
1+dia-0.95-pre6: 21-Mar-2006
2+
3+* Transient (window-on-top) off till issues resolved.
4+
5+* Stack corruption errors in XFig import fixed.
6+
7+* Locale dependency in HPGL file loading removed.
8+
19 dia-0.95-pre5: 12-Mar-2006
210
311 * Fixed positioning and height of UML operations when wrapped.
--- a/RELEASE-PROCESS
+++ b/RELEASE-PROCESS
@@ -24,6 +24,10 @@ When a new version is about to be released:
2424
2525 Make sure to check for open Bugzilla bugs with the PATCH keyword.
2626
27+ If there are enough changes that a security audit is appropriate
28+ (e.g. new or changed importers), there is a standing offer from infamous
29+ <infamous41md@sol-biotech.com> to get audits.
30+
2731 1) The core developers agree on the next version number. It's called
2832 $VERSION thereafter. They also look if DIA_PLUGIN_API_VERSION needs
2933 to be updated.
@@ -78,7 +82,7 @@ When a new version is about to be released:
7882 How to make a tarball
7983 ---------------------
8084 1. Update the version number in configure.in, config.h.win32,
81- doc/{en,eu,pl}/dia.xml, doc/en/dia.1. Also update dia.spec when changing
85+ doc/{en,eu,pl}/dia.xml. Also update dia.spec when changing
8286 the version number, but not for a change of prerelease number.
8387 2. Add information about things that have changed to the NEWS file.
8488 3. make sure you have up to date build tools installed on the system.
--- 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-pre5"
21+#define VERSION "0.95-pre6"
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-pre5, http://bugzilla.gnome.org/enter_bug.cgi?product=dia)
3+AC_INIT(dia, 0.95-pre6, 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-pre5">
11+ <!ENTITY VERSION "0.95-pre6">
1212
1313 <!ENTITY INTRODUCTION SYSTEM "intro.xml">
1414
--- a/doc/eu/dia.xml
+++ b/doc/eu/dia.xml
@@ -4,7 +4,7 @@
44
55 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "../../dtd/docbookx.dtd" [
66
7- <!ENTITY VERSION "0.95-pre5">
7+ <!ENTITY VERSION "0.95-pre6">
88
99 <!ENTITY INTRODUCTION SYSTEM "intro.xml">
1010
--- 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-pre5">
4+<!ENTITY VERSION "0.95-pre6">
55 <!ENTITY INTRODUCTION SYSTEM "intro.xml">
66 <!ENTITY QUICKSTART SYSTEM "usage-quickstart.xml">
77 <!ENTITY CANVAS SYSTEM "usage-canvas.xml">
--- a/objects/standard/ellipse.c
+++ b/objects/standard/ellipse.c
@@ -472,9 +472,9 @@ ellipse_copy(Ellipse *ellipse)
472472 newellipse->aspect = ellipse->aspect;
473473 newellipse->line_style = ellipse->line_style;
474474
475- newobj->handles[8] = &newellipse->center_handle;
476475 newellipse->center_handle = ellipse->center_handle;
477476 newellipse->center_handle.connected_to = NULL;
477+ newobj->handles[8] = &newellipse->center_handle;
478478
479479 for (i=0;i<9;i++) {
480480 newobj->connections[i] = &newellipse->connections[i];
--- a/plug-ins/xfig/xfig-import.c
+++ b/plug-ins/xfig/xfig-import.c
@@ -696,7 +696,7 @@ fig_read_text_line(FILE *file) {
696696 return text_buf;
697697 }
698698
699-static GList *depths[1000];
699+static GList *depths[FIG_MAX_DEPTHS];
700700
701701 /* If there's something in the compound stack, we ignore the depth field,
702702 as it will be determined by the group anyway */
@@ -1382,7 +1382,7 @@ fig_read_object(FILE *file, DiagramData *dia) {
13821382 return FALSE;
13831383 }
13841384
1385- if (colornumber < 0 || colornumber > FIG_MAX_USER_COLORS) {
1385+ if (colornumber < 32 || colornumber > FIG_MAX_USER_COLORS) {
13861386 message_error(_("Color number %d out of range 0..%d. Discarding color.\n"),
13871387 colornumber, FIG_MAX_USER_COLORS);
13881388 return FALSE;