• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

作図ソフト dia の改良版


Commit MetaInfo

Révision2301e609a3ff3438778f1032bbe2d3f5f6d27e57 (tree)
l'heure2003-10-26 21:39:09
AuteurLars Clausen <lclausen@src....>
CommiterLars Clausen

Message de Log

Brown bag release 0.92.1

Change Summary

Modification

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
1+2003-10-26 Lars Clausen <lrclause@cs.uiuc.edu>
2+
3+ * doc/en/dia-manual.xml:
4+ * doc/pl/dia-manual.sgml:
5+ * dia.spec:
6+ * config.h.win32:
7+ * configure.in:
8+ * NEWS: Brown Bag release 0.92.1
9+
10+ * lib/dynamic_obj.c: Fixed embarassing dynamic object removal bug.
11+
12+2003-10-25 Lars Clausen <lrclause@cs.uiuc.edu>
13+
14+ * app/app_procs.c (app_init): Rearrangement for translators.
15+
116 2003-10-24 Steffen Macke <sdteffen@web.de>
217
318 * lib/text.c(text_key_event): enforcing the inserted text length now,
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
1+dia-0.92.1: 26-Oct-2003
2+
3+* Brown Bag release. Fixes crashbug in the "Analog Clock" symbol, and bug
4+ with pasting multiple lines of text.
5+
16 dia-0.92: 19-Oct-2003
27
38 * Like pre7, but with some updated translations and documentation. Now
--- a/app/app_procs.c
+++ b/app/app_procs.c
@@ -279,20 +279,24 @@ myXmlErrorReporting (void *ctx, const char* msg, ...)
279279 #endif
280280
281281 #ifdef HAVE_FREETYPE
282+/* Translators: This is an option, not to be translated */
282283 #define EPS_PANGO "eps-pango, "
283284 #else
284285 #define EPS_PANGO ""
285286 #endif
286287
287288 #ifdef G_OS_WIN32
289+/* Translators: This is an option, not to be translated */
288290 #define WMF "wmf, "
289291 #else
290292 #define WMF ""
291293 #endif
292294
293295 #if defined(HAVE_LIBPNG) && defined(HAVE_LIBART)
296+/* Translators: This is an option, not to be translated */
294297 #define BITMAPS "png, "
295298 #else
299+/* Translators: This is an option, not to be translated */
296300 #define BITMAPS "bmp, gif, jpg, png, pnm, ras, tif, "
297301 #endif
298302
@@ -314,16 +318,20 @@ app_init (int argc, char **argv)
314318 int rc = 0;
315319 #endif
316320 poptContext poptCtx = NULL;
321+ gchar *export_format_string =
322+ /* Translators: The argument is a list of options, not to be translated */
323+ g_strdup_printf(_("Export to file format and exit. Supported formats are: %s"),
324+ "cgm, dia, dxf, eps, " EPS_PANGO
325+ "fig, mp, plt, hpgl, " BITMAPS
326+ "shape, svg, tex, " WMF
327+ "wpg");
328+
317329 struct poptOption options[] =
318330 {
319331 {"export", 'e', POPT_ARG_STRING, NULL /* &export_file_name */, 0,
320332 N_("Export loaded file and exit"), N_("OUTPUT")},
321333 {"export-to-format",'t', POPT_ARG_STRING, NULL /* &export_file_format */,
322- 0, N_("Export to file format and exit. Supported formats are: "
323- "cgm, dia, dxf, eps, " EPS_PANGO
324- "fig, mp, plt, hpgl, " BITMAPS
325- "shape, svg, tex, " WMF
326- "wpg"), N_("FORMAT")
334+ 0, export_format_string, N_("FORMAT")
327335 },
328336 {"nosplash", 'n', POPT_ARG_NONE, &nosplash, 0,
329337 N_("Don't show the splash screen"), NULL },
--- a/config.h.win32
+++ b/config.h.win32
@@ -14,7 +14,7 @@
1414 #define GETTEXT_PACKAGE "dia"
1515 #define LOCALEDIR "../lib/locale"
1616
17-#define VERSION "0.92"
17+#define VERSION "0.92.1"
1818
1919 /*
2020 * 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.92, http://bugzilla.gnome.org/enter_bug.cgi?product=dia)
3+AC_INIT(dia, 0.92.1, 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
@@ -1,9 +1,11 @@
11 %define name dia
2-%define ver 0.92
2+# This is the full Dia version
3+%define ver 0.92.1
34
45 Summary: A gtk+ based diagram creation program.
56 Name: %name
67 Version: %ver
8+# This indicates changes to the spec file after last time %ver has changed.
79 Release: 1
810 Copyright: GPL
911 Group: Applications/
--- a/doc/en/dia-manual.xml
+++ b/doc/en/dia-manual.xml
@@ -8,7 +8,7 @@
88
99 [
1010
11- <!ENTITY VERSION "0.92">
11+ <!ENTITY VERSION "0.92.1">
1212
1313 <!ENTITY INTRODUCTION SYSTEM "intro.xml">
1414
--- a/doc/pl/dia-manual.sgml
+++ b/doc/pl/dia-manual.sgml
@@ -1,5 +1,5 @@
11 <!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook V4.1//EN"[
2-<!ENTITY VERSION "0.92">
2+<!ENTITY VERSION "0.92.1">
33 <!ENTITY INTRODUCTION SYSTEM "intro.sgml">
44 <!ENTITY QUICKSTART SYSTEM "usage-quickstart.sgml">
55 <!ENTITY CANVAS SYSTEM "usage-canvas.sgml">
--- a/lib/dynamic_obj.c
+++ b/lib/dynamic_obj.c
@@ -51,8 +51,12 @@ void dynobj_list_remove_object(Object* obj) {
5151
5252 if (item) {
5353 DynobjRec* dor = item->data;
54- dyn_obj_list = g_list_remove(dyn_obj_list,item);
54+ printf("Removing obj %p from list of len %d\n",
55+ obj, g_list_length(dyn_obj_list));
56+ dyn_obj_list = g_list_remove(dyn_obj_list,dor);
5557 g_free(dor);
58+ } else {
59+ printf("Dying object %p not found\n", obj);
5660 }
5761 }
5862