File: ChangeLog

package info (click to toggle)
dia 0.97.3-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 49,248 kB
  • ctags: 18,377
  • sloc: ansic: 150,303; xml: 55,218; cpp: 15,396; sh: 11,898; python: 3,782; makefile: 3,675
file content (1671 lines) | stat: -rw-r--r-- 49,035 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
# Generated by Makefile. Do not edit.

 * 2014-08-24  Hans Breuer  <hans@breuer.org>  addc77b

Bug 735303 - Don't create empty groups from VDX

Fixed in the VDX plug-in itself but also on the lib API level
with g_return_val_if_fail (objects != NULL, NULL);

(cherry picked from commit ec4dbbcbc21e1233e46ba9ae059a18bed459ca24)

 * 2014-07-26  Balázs Úr  <urbalazs@gmail.com>  9e5d28b

Updated Hungarian translation


 * 2014-05-09  Gokturk Yuksek  <gokturk@binghamton.edu>  6b99cb6

cairo: do not compile cairo plugin if '--without-cairo' is defined.

Passing '--without-cairo' option to the build system disables
the inclusion of cairo header files but does not prevent the
code from building. As a result the compilation fails with
'implicit declaration of function' errors.

To fix this, modify the Makefile.am so that it does not compile
the plugin if '--without-cairo' is defined. Note that this
option must be passed by the user explicitly as the build system
will always detect libcairo on the system since GTK depends on it.

See: https://bugzilla.gnome.org/show_bug.cgi?id=729668
See: https://bugs.gentoo.org/show_bug.cgi?id=509636

Signed-off-by: Gokturk Yuksek <gokturk@binghamton.edu>
(cherry picked from commit ceb7265b65ed969698c358a850f8ff3ad42cc9d5)

Conflicts:
	plug-ins/cairo/diacairo-renderer.c
	plug-ins/cairo/diacairo.c

 * 2014-05-13  Мирослав Николић  <miroslavnikolic@rocketmail.com>  b5e989c

Updated Serbian translation


 * 2014-04-18  Hans Breuer  <hans@breuer.org>  cefc9fa

Bug 728405 - Include custom shapes for unit test

Formerly only programmed objects were tested within the build
environment, except if shapes were found outside of the source
tree (e.g. from home directory or build prefix)

 * 2014-04-18  Hans Breuer  <hans@breuer.org>  3e3d787

Bug 728405 - back-port some bounding box calculation fixes from master

... so that the unit test works without complaints.

 * 2014-04-18  Hans Breuer  <hans@breuer.org>  7befee2

[build] Remove -D*_DISABLE_DEPRECATED from makefile.msc

Deprecation updates wont happen on the stable branch if not absolutely
necessary.

 * 2014-03-29  Hans Breuer  <hans@breuer.org>  2960412

Dia 0.97.3 NEWS update


 * 2014-03-27  Steffen Macke  <sdteffen@sdteffen.de>  5a1cd94

Improved Control Panel info, optional desktop shortcut.


 * 2014-03-26  Steffen Macke  <sdteffen@sdteffen.de>  d180e9d

Improved uninstallation, fixed pixbuf loader problem.


 * 2014-03-26  Steffen Macke  <sdteffen@sdteffen.de>  1d961ab

Improved uninstallation, ensure that translations are installed if needed.


 * 2014-03-25  Steffen Macke  <sdteffen@sdteffen.de>  273cb29

Updates from master branch, cosmetic updates.


 * 2014-03-16  Ting-Wei Lan  <lantw44@gmail.com>  19d73ed

Bug 726458 - Fix build problem on FreeBSD

Define _BSD_SOURCE does not make fchmod() available on FreeBSD. Change
_POSIX_C_SOURCE to 200809L so we can build it on FreeBSD.

Signed-off-by: Hans Breuer <hans@breuer.org>
(cherry picked from commit 4e948cc8fca17ff2ae4b961defc0f48ad78bae6d)

Conflicts:
	app/load_save.c

 * 2009-09-26  Hans Breuer  <hans@breuer.org>  aa89b06

[scan-build] Unitialized argument

In case of malformed spline an uninitialized pointer was passed to
g_free()

http://clang-analyzer.llvm.org/scan-build
(cherry picked from commit c308a61b42f4dccb820cdd6bafad2c97b126cd36)

 * 2011-11-01  Hans Breuer  <hans@breuer.org>  29d048d

Fix 'UML - Classicon' property 'type' flags (especially being optional)

The property flag initialization was wrongly using the logical OR operator,
it was meant to be bitwise OR. Occurrence only in the master branch.

(cherry picked from commit 1aaf9592cffbb03c199cddb85fcc63b06cad0f8e)

 * 2013-05-20  Hans Breuer  <hans@breuer.org>  2c650a4

[warningectomy] implicit conversion from enumeration type

implicit conversion from enumeration type 'enum _cairo_font_slant' to
different enumeration type 'cairo_font_weight_t' (aka 'enum
_cairo_font_weight') [-Wenum-conversion]
                          DIA_FONT_STYLE_GET_WEIGHT (style) <
DIA_FONT_MEDIUM ? CAIRO_FONT_SLANT_NORMAL : CAIRO_FONT_WEIGHT_BOLD);

^~~~~~~~~~~~~~~~~~~~~~~

(cherry picked from commit 36104262d2d3cffb1ac61ed3ce6585ec306904c1)

 * 2009-11-07  Hans Breuer  <hans@breuer.org>  d339ca4

Bug #600983 - Use automake's silent rules for nicer build

For now only tested with automake 1.10.2, but it does not disturb the
build there. Patch from Jon Dufresne.

(cherry picked from commit 3d66c398445ba92a094e899f6253cbac0d16d472)

 * 2014-01-26  Hans Breuer  <hans@breuer.org>  60ed98f

[warnigectomy] Use -Werror=... rather than --std=c89

On win32 we still need c89/c90 w/o gnu extension due to msvc6 use.
But --std=c89 is very strict, e.g. it prohibits single line
comments.
The following -Werror= reject constructs which break the Windows
build

 -Werror=declaration-after-statement
 -Werror=implicit-function-declaration

There might be more conmstructs to avoid, but these arte the most
pressing. Actually the second is turned into an error explicetly
on Windows, too. But the first one is a compiler limitation.

(cherry picked from commit 65b4ff6191f210201acfe11f8f969e4d910b1928)

 * 2014-03-14  Hans Breuer  <hans@breuer.org>  c207653

Bug 710818 - Overflow safe wrappers for acos/asin (now really)

acos() and asin() are only defined in a certain range. Implement some
range/overflow safe wrappers rather than potentially passing infinite
to other modules (e.g. cairo did assert() on it.)

Additionally check for !isinf() in cairo plug-in (should not trigger
anymore).

(cherry picked from commit 9a1f90855fb65ae1f129ccf5687bdf5ad3a37a55)

Conflicts:
	plug-ins/cairo/diacairo-renderer.c

 * 2014-03-08  Hans Breuer  <hans@breuer.org>  19af742

Update NEWS for Dia 0.97.3 bug-fix-only


 * 2013-12-16  Dominique Leuenberger  <dimstar@opensuse.org>  e09d97f

plugin: Use the Freetype developer's proposed way if #include'ing their headers.

Allows us to build against Freetype 2.5.1 (without breaking older
versions).

https://bugzilla.gnome.org/show_bug.cgi?id=720573

Signed-off-by: Hans Breuer <hans@breuer.org>
(cherry picked from commit 0b863adcad031c70601e375d72dae64fdd967752)

 * 2013-12-14  Hans Breuer  <hans@breuer.org>  c23b661

Bug 711418 - Handle diagram file with comments

A comment as the first part in the XML file was prohibiting to load
the file at all with “Not a Dia file” error.

(cherry picked from commit 805905eae28f215c74716c1fef684106a9997c54)

 * 2013-11-17  Hans Breuer  <hans@breuer.org>  c2ec399

Bug 710818 - Overflow safe wrappers for acos/asin

acos() and asin() are only defined in a certain range. Implement some
range/overflow safe wrappers rather than potentially passing infinite
to other modules (e.g. cairo did assert() on it.)

(cherry picked from commit 846a7ff5b5cb5d21f3c97d21f7a1890a0fcfb65b)

Conflicts:
	lib/boundingbox.c
	lib/geometry.c

 * 2011-06-05  Hans Breuer  <hans@breuer.org>  87c40b9

Bug 651949 - Don't crash on save in non-browse mode

Not getting a filename looks like a contract violation in Gtk+ to me.
Still Dia would be crashing, instead simply go back to the dialog.

(cherry picked from commit cfc6810939d8fce9e17b306f4c72b58427b98a70)

 * 2014-03-02  Hans Breuer  <hans@breuer.org>  1bd456b

Bug 721851 - Command line export not working for pixbuf

The pixbuf export requires a diaplay. Use gtk_init_check() to
allow command line export from an X terminal without sacrificing
the command line mode without X11.

(cherry picked from commit c3dcf1eec1b4ef57c45c58410048b77c83ea50dd)

 * 2011-06-13  Hans Breuer  <hans@breuer.org>  4d5c06a

Bug 651127 - Correctly detect swig 2.x

Patch from ismail@namtrac.org

(cherry picked from commit fb277f11d744c9724475babc6388489437faa5e6)

 * 2013-04-05  Robie Basak  <robie.basak@canonical.com>  0d59161

Use python-config where available

In the next Ubuntu release, python will be installed with multiarch support,
which breaks the build because assumptions are made about python library
locations which no longer hold true.

python-config has been supported in upstream Python since 2.6, so use
python-config to determine include file and library locations and names if it
is available. Otherwise fall back to the old behaviour.

This fixes the build in the current development release of Ubuntu, and is a
reasonably generic and cross-platform way to configure the build for Python.

Signed-off-by: Hans Breuer <hans@breuer.org>
(cherry picked from commit c66f9543c41008ccc2f093b744da6893c2cb91e9)

 * 2014-02-14  Hans Breuer  <hans@breuer.org>  8a57c7f

Bug 573261 - Avoid font kerning problems with pangocairo(fc)

There is a recurring bug with pangocairo related to kerning and font scaling.
See: https://bugzilla.gnome.org/buglist.cgi?quicksearch=341481+573261+700592
Rather than waiting for another fix let's try to implement the ultimate work
around. With Pango-1.32 and HarfBuzz the kludge in Pango is gone and apparently
substituted with a precision problem. If we now use huge fonts when talking
to Pango and downscale these with cairo it should work with all Pango versions.

Also add a sequence diagram used to understand the problem.

(cherry picked from commit 226fb87f34d4b49e700fb9cb340b49b67fd59540)

 * 2014-02-23  Balázs Úr  <urbalazs@src.gnome.org>  7f05d87

Updated Hungarian translation


 * 2013-09-03  Balázs Úr  <urbalazs@src.gnome.org>  be917f5

Updated Hungarian translation


 * 2014-02-03  Мирослав Николић  <miroslavnikolic@rocketmail.com>  976f7c7

Updated Serbian translation


 * 2013-10-03  Hans Breuer  <hans@breuer.org>  f1dcb67

Bug 709017 [warningectomy] array subscript is above array bounds

Get rid of the temporary array for font name, loose the limitation
of maximum font name length and spare a string copy.

 * 2013-09-13  Hans Breuer  <hans@breuer.org>  7bce4c6

Bug 707497 - Fix fatal PNG error wit libpng16

Thanks to Evgeny Bobkin for creating the fixed image.
https://bugzilla.gnome.org/show_bug.cgi?id=707497#c9

 * 2013-09-12  Martin Srebotnjak  <miles@filmsi.net>  58bea66

Updated Slovenian translation


 * 2013-08-21  Steffen Macke  <sdteffen@sdteffen.de>  0f73bb1

Improved folder icon.


 * 2013-08-18  Steffen Macke  <sdteffen@sdteffen.de>  cbd2c8c

Fixed black light shape reference.


 * 2013-08-16  Steffen Macke  <sdteffen@sdteffen.de>  8d769d8

Bug #667500 - Avoid $\r syntax for NSIS line breaks to avoid POEdit confusion


 * 2013-08-16  Hans Breuer  <hans@breuer.org>  0bcd633

Bug 683700 - vdx full of errors

Ensure message_error strings are linefeed-terminated.
Plus fixes merged from master:

cairo: don't screw cairo's matrix by scaling with 0
Seen with the VDX attached to bug 683700 - maybe there is also something wrong with the import?

vdx: UTF-8 safe variant to remove last newline
With the VDX attached to bug 683700 scrambled text appeared. Now corrected with the UTF-8 safe variant to search and replace "\n".

 * 2013-08-16  Hans Breuer  <hans@breuer.org>  0080531

Bug 660574 - Avoid cairo going into an endless loop with too small arcs

this should fix the issue with SADT flow arrow, although I could not reproduce it.

 * 2013-08-16  Hans Breuer  <hans@breuer.org>  02a87cc

Bug 672190 - Inputs Methods don't work in integrated mode

Connect im-related signals also to the integrated UI canvas

 * 2013-08-16  Hans Breuer  <hans@breuer.org>  3d5c36c

Fix assumption that table->prop_dialog is always valid

Not sure how I made it crash, but this extra safety measure
should not hurt in any case.

 * 2013-03-16  Hans Breuer  <hans@breuer.org>  fd035c6

Bug 694025 - GLib drop support for adding interfaces after class_init

Without this Dia crashes at startup with new GLib version and the
DiaGdkRenderer being default. Make a new DiaGdkInteractiveRenderer which
follows the pattern also used for DiaCairoInteraciveRenderer. This should
be functional equivalent to what was there before and should work for all
current GLib versions.

(cherry picked from commit 213bdfe956bf8fe57c86316f68a09408fef1647e)

 * 2013-07-03  Steffen Macke  <sdteffen@sdteffen.de>  03132b4

Made XQuartz interaction more robust.


 * 2013-07-02  Steffen Macke  <sdteffen@sdteffen.de>  833d789

Cleanup, check for X11, forward to XQuartz homepage, if necessary.


 * 2013-04-09  Мирослав Николић  <miroslavnikolic@rocketmail.com>  fee37e3

Added Serbian translation


 * 2013-02-10  Daniel Șerbănescu  <cyber19rider@gmail.com>  b3f1eca

Updated Romanian translation


 * 2013-01-13  Balázs Úr  <urbalazs@src.gnome.org>  3f4bf37

Updated Hungarian translation


 * 2012-12-28  Rafael Ferreira  <rafael.f.f1@gmail.com>  46e0c75

Updated Brazilian Portuguese Translation


 * 2010-10-07  Hans Breuer  <hans@breuer.org>  51b3537

grid-object: avoid crash on shrink

Fix some confusion about rows/columns using the wrong limits.
Resizing object::connections was too early.
(cherry picked from commit cddd958b71a4075751ab76ac3530ced3c33972ea)

 * 2012-06-23  Hans Breuer  <hans@breuer.org>  8de821b

Bug 676830 : Misc - Grid : don't crash on copy, resize

Row index was iterated with the columns range.

 * 2012-06-11  Christian Kirbach  <Christian.Kirbach@googlemail.com>  d99363b

Updated German translation


 * 2012-05-18  Maciej Jaros  <egil@wp.pl>  7c3b806

Updated Polish translation


 * 2009-06-06  Hans Breuer  <hans@breuer.org>  7befe28

Bug #585004 - implicit declaration of function 'finite' (2nd iteration)

To get the definition either _BSD_SOURCE or _SVID_SOURCE needs to
be defined before inclusion of <math.h>.
Removed HAVE_CONFIG_H and chanegd inclusion order
(cherry picked from commit 8f363f6dd82f9fbf502fceaf1d73a258c17593db)

 * 2011-12-01  Dominique Leuenberger  <dimstar@opensuse.org>  c832225

Bug 665335: Only #include <glib.h>: the other headers are implicit


 * 2012-04-08  Hans Breuer  <hans@breuer.org>  84ee62e

Bug 668587 - Double free() for some SVG rendering

The fix for bug 665648 introduced a memory corruption.
Now the #if-0'ed code as well as the #else branch respect
DiaSvgRender::get_fill_style() having a const return.
(cherry picked from commit 47bb76af3ba20b5e83be79a874df02c405934899)

 * 2011-12-18  Hans Breuer  <hans@breuer.org>  5528ab1

Dia 0.97.2 - bug-fix release (NEWS)


 * 2011-06-02  Hans Breuer  <hans@breuer.org>  fc367cd

Bug 618359 - Autrouting adjustment for arrowheads

Easy fix by reusing extra_spacing.(start|end)_trans, i.e. information
already available to the autoroute functions by OrthConn*.

 * 2011-06-06  Hans Breuer  <hans@breuer.org>  cfb4b13

Bug 622315 - multiplicity labels overlap with association name

Looks like the original attempt for bug 143891 did not go far enough.
I did not manage to overlap multiplicity labels with the class box, though.
(cherry picked from commit 57faf505d0ccaea7b98ef234828eae3d04162349)

 * 2010-07-30  Hans Breuer  <hans@breuer.org>  b78104a

Bug 625616 - fig export has wrong threshold for linewidth mapping

See also: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=590857
(cherry picked from commit 2e40104c80f5fcf4f3c4e32dfbbacef12af72276)

 * 2011-06-05  Hans Breuer  <hans@breuer.org>  8665713

Bug 649450 - Warning message instead of python backtrace

The SVG importer is limited, e.g. when parsing path data.
It stayed this way but now produces a more understandable
error message.
(cherry picked from commit ef1e4dac749648ef6a3f1712ac6a9aa756c04c3a)

 * 2011-12-17  Hans Breuer  <hans@breuer.org>  cd76f66

Bug 663047 - Replace and Match all don't work together

The reporter could make it crash, I simply couldn't make it work.
For the described case of non-flat property values the code would
need to be much more elaborated so Match all is disabled for the
Replace case.

 * 2011-12-17  Hans Breuer  <hans@breuer.org>  d93b671

Bug 665648 - SVG contains invalid CSS, font-size issue with Firefox

Thanks to https://bugzilla.mozilla.org/show_bug.cgi?id=707071#c4
there now is an acceptable solution for the long-time font-size
problem with Firefox - just moving the font-size out of the style
attribute into it's own attribute allows to keep it w/o unit.

 * 2011-12-11  Hans Breuer  <hans@breuer.org>  3d450ec

Bug 611374 : don't crash on delete while moving

Manually merged from master.

 * 2011-12-06  Steffen Macke  <sdteffen@sdteffen.de>  a87327d

Bug #656137 - Application crashes on Mac OS 10.7 Lion


 * 2011-11-23  Jiro Matsuzawa  <jmatsuzawa@src.gnome.org>  963a530

Updated Japanese translation


 * 2011-11-21  Yuri Myasoedov  <omerta13@yandex.ru>  6c440f2

Updated Russian translation


 * 2011-10-03  Tiffany Antopolski  <tiffany.antopolski@gmail.com>  21ccc94

Add Esperanto translation


 * 2011-10-01  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>  b4e003f

Updated Traditional Chinese translation(Hong Kong and Taiwan)


 * 2011-01-08  Hans Breuer  <hans@breuer.org>  1c34f79

Revert part of fix for bug 637462 burning CPU on win32

An idle handler to be removed shall return FALSE, I should have
read the API documentation or leave this part untouched.
Strangely enough this only caused 100% on win32, probably the
GSource implementation on *NIX is implemented more efficient.
(cherry picked from commit 1078d6a6d63522c8afd840c21ba49d2ef9e9eb40)

 * 2010-07-16  Hans Breuer  <hans@breuer.org>  cac07ef

Bug 619246 -  Pressing some keys while drawing can freeze the GUI

The correct solution would probably include some extra mode "while drawing" to disable the switching of tools than. But the "freeze" is caused by not releasing the pointer grab, and that should finally be done when freeing the tool.
(cherry picked from commit fbfe7ef7057a670b164b23e5d60fd37bc2141284)

 * 2010-05-15  Hans Breuer  <hans@breuer.org>  63554f4

Bug 616609 - Don't crash on files with empty groups

Make the code conform to the comment /* don't create empty groups */.
Otherwise later operations will crash on these.
(cherry picked from commit 50b5d9192af8bb6431aa61e0aad51929ce9a9604)

 * 2010-08-21  Hans Breuer  <hans@breuer.org>  e166042

Bug 627549 - UML Object dialog width not computed right for attributes

Add the missing call to actually calculate Text::max_width
(text_calc_boundingbox)
(cherry picked from commit 20e2271e1670f52e5f6ac1f806dc4f80a81b39a5)

 * 2011-01-07  Hans Breuer  <hans@breuer.org>  b85a0de

Bug 637462 - Dynamic objects create useless wakeups

No timed wakeup at all if there are no dynamic objects in use. After all
they are mostly an easter-egg and there is only one implementation delivered
with Dia.
(cherry picked from commit 5d2156d9e8b6b16df8c25f3cba6bb058d9e45df4)

 * 2011-01-28  Hans Breuer  <hans@breuer.org>  f53a2a5

Bug 640605 - Page margin limits not considering units

With "Preferences/Length unit" set to something else than Centimeter
the limit adjustment of margin edit controls was bogus. With a small
helper function
(cherry picked from commit f539025825eda946e514ffe2d882c7cd6729ab7d)

 * 2011-06-14  Hans Breuer  <hans@breuer.org>  b435e36

Explicit extents update for text editing

An empty text object does not contribute to the overall
diagram extent for some while. Also there was only recalculation
of the extent after movement of object or handle. As a result the
overall diagram extent did not include text objects until they
were moved.
(cherry picked from commit 907d2afd3390cb3c4533a2a0db108186d718d551)

 * 2011-08-28  Martin Srebotnjak  <miles@filmsi.net>  8594efe

Updated Slovenian translation


 * 2011-08-26  Kjartan Maraas  <kmaraas@gnome.org>  820cc8d

Updated Norwegian bokmål translation


 * 2011-07-13  Joe Hansen  <joedalton2@yahoo.dk>  7850ac6

Updated Danish translation


 * 2011-06-19  Steffen Macke  <sdteffen@sdteffen.de>  718aea2

Windows installer: Place a copy of the GPL in the installation folder


 * 2011-05-31  Christian Kirbach  <Christian.Kirbach@googlemail.com>  043bc8e

[l10n] Updated German translation


 * 2011-05-29  Steffen Macke  <sdteffen@sdteffen.de>  42c3b9d

Ignore generated Info.plist file.


 * 2011-03-27  Hans Breuer  <hans@breuer.org>  37fb854

Add C++ guards, to make wmf plug-in link on win32

This is a fix for the fix:

Commit:15dd90da6635d5d8d36546f6a0524f6c03c30179
* Newer gcc chokes on cascaded extern "C"
error: template with C linkage ...
(cherry picked from commit feeefe286b7aa9184c78241fc43a10453b8397bd)

 * 2011-04-25  Hans Breuer  <hans@breuer.org>  b354706

doc: bug 632660 - help update for text editing

There are more changes done on the manual since 2009,
so update revision info, too.

 * 2011-04-21  Steffen Macke  <sdteffen@sdteffen.de>  e685301

Removed unused script, added Mac icon to distribution.


 * 2011-04-21  Steffen Macke  <sdteffen@sdteffen.de>  849eeed

Icon and splash logo for the DMG build.


 * 2011-04-20  Steffen Macke  <sdteffen@sdteffen.de>  bd007e0

Bug 644488 - use Mac locale from DMG


 * 2011-04-19  Steffen Macke  <sdteffen@sdteffen.de>  b2c971e

Adding more required files to the DMG.


 * 2011-04-18  Steffen Macke  <sdteffen@sdteffen.de>  8ca9675

Continued work on Mac OS X DMG build automation.


 * 2011-04-17  Steffen Macke  <sdteffen@sdteffen.de>  aaa6146

File is used in the Mac DMG.


 * 2011-04-16  Steffen Macke  <sdteffen@sdteffen.de>  b909292

Fixed typo


 * 2010-04-11  Steffen Macke  <sdteffen@sdteffen.de>  fead11c

Added files to build App and dmg on Mac OS X.


 * 2011-04-03  Hans Breuer  <hans@breuer.org>  831fba8

Single configuration file for msvc build dependencies

To simplify switching between different dependency version
the inclusion of $(TOP)\glib\build\win32\make.msc is done
by a single file dia-make.msc.
This should not change anything for people having only one
GLib version installed.

 * 2010-07-29  Hans Breuer  <hans@breuer.org>  93169df

Bug 610530 - Don't use LOCALMODLIBS from Python for linking

Stop failing to link on Debian and derivates.
(cherry picked from commit 2edec01c98ff66ebb03d59c62196612917c501a1)

 * 2011-03-13  Steffen Macke  <sdteffen@sdteffen.de>  918f7e2

Bug 644488 - Env var DIA_LOCALE_PATH to specify locale file location


 * 2011-03-11  Hans Breuer  <hans@breuer.org>  59b0a4d

Newer gcc chokes on cascaded extern "C"

error: template with C linkage ...

 * 2011-02-27  Hans Breuer  <hans@breuer.org>  a2c95b3

Bug 642764 - use png_jmpbuf() rather than direct member access

Fix from Hanno Boeck to make Dia compile with libpng 1.5
https://bugzilla.gnome.org/show_bug.cgi?id=642764
(cherry picked from commit 8e28086b95578d17386c3be9aea132064be829a0)

 * 2011-03-12  Hans Breuer  <hans@breuer.org>  7b1fa44

Adjust number of maintainers (there is only one left)


 * 2011-02-20  Steffen Macke  <sdteffen@sdteffen.de>  ae96867

Two DLL name updates for current gtk+-bundle_2.16.6-20100912_win32.zip


 * 2011-02-20  Daniel Mustieles  <daniel.mustieles@gmail.com>  c31c85f

Updated Spanish translation


 * 2011-01-28  Steffen Macke  <sdteffen@sdteffen.de>  c478033

Reflecting translation updates for the win32 installer.


 * 2011-01-28  Steffen Macke  <sdteffen@sdteffen.de>  3b2d47d

Fixed line breaks in installer locale builds. Encoding problem with Korean file.


 * 2011-01-27  Steffen Macke  <sdteffen@sdteffen.de>  fa92713

Preparing for 0.97.2 release.


 * 2011-01-27  Steffen Macke  <sdteffen@sdteffen.de>  d5f0f5d

Added Spanish locale generation for NSIS installer.


 * 2011-01-27  Steffen Macke  <sdteffen@sdteffen.de>  1d80736

Makefiles to generate the installer locales


 * 2011-01-07  Hans Breuer  <hans@breuer.org>  08aa684

Prepare dia-0.97.2 release


 * 2010-01-13  Hans Breuer  <hans@breuer.org>  5c191f4

More color for SADT


 * 2009-09-19  Hans Breuer  <hans@breuer.org>  b69223d

Bug #581868 - dia -t tex file.dia export

Unique names for 'pgf-tex' and 'pstricks-tex' to allow
to select the filter to use when both tex exporters
are active.

 * 2010-08-04  Hans Breuer  <hans@breuer.org>  c00c6bc

Bug 540210 -  Improved zoom behavior for ctrl+mouse wheel

Basically the patch from Ithai Levi, but implemented in a new function (ddisplay_zoom_centered) to not interfere with other
zoom use cases.

 * 2011-01-07  Hans Breuer  <hans@breuer.org>  21fecba

Bug 637611 - Mangled SVG import (incomplete line-to handling)

There is a serious limitation with Dia's standard bezier serialization.
It can only represent a single move-to at the beginning and following
bezier points are assumed to be curve-to.
There is a more complete implementation by data_add_bezpoint and
data_bezpoint, but using that would hamper forward compatibility.

So implemented a work-around in dia_svg_parse_path() which reproduces
line-to appearance also by curve-to control points.

 * 2010-12-11  Hans Breuer  <hans@breuer.org>  293edab

Bug 637047 - SVG font name is sans-serif, not sanserif

Tested with render-test the font name change indeed makes the
Dia "sans" fonts appear w/o serifs. There is still something
wrong with the font size, but that seems independent.

To make compatibility with old and new (shape-)files both
"sanserif" and "sans-serif" are translated to the internal
"sans".

 * 2010-10-29  Hans Breuer  <hans@breuer.org>  d8f2bc9

Bug 633430 - Memory corruption when exporting to Xfig

(figText) : the escaping of backslash was not considered in new
string calculation.

 * 2010-10-17  Hans Breuer  <hans@breuer.org>  895a275

Bug 632175 - No arrow draw with invalid coordinates

The cairo renderer was rightly complaining about invalid transformations
caused by a line with length 0 - created by the mainpoint being to greedy.
Fixed hopefully all occurrences where invalid coordinated where produced
by 0/0

 * 2010-06-03  Hans Breuer  <hans@breuer.org>  3423950

Bug 619855 - Dash length ignored when exporting (with cairo)

The implementation of DiaCairoRenderer was relying on the wrong sequence of DiaRenderer::set_dashlength() and DiaRenderer::set_linestyle(). Now using the set dash-length is independent of the calling sequence (though slightly less efficient).

 * 2010-07-27  Hans Breuer  <hans@breuer.org>  e347acf

Bug 614134 -  align attribute of textboxes does not work

The text_align given from the shape file was not used when creating new_text() of the custom object.

 * 2010-07-27  Hans Breuer  <hans@breuer.org>  aa4cffd

Bug 614089 - crashes with <default-width> in the shape file

Searching of the unit was done with the wrong index and thus the result did depend on the number of connection points.

 * 2010-01-24  Hans Breuer  <hans@breuer.org>  74df7ca

Bug 607655 - Arcs are badly exported (sometimes)

The large-arc flag was not correctly calculated for angle1>angle2

 * 2010-10-20  Hans Breuer  <hans@breuer.org>  5ecbef4

Bug 607564 - custom shape svg:text elements positioned wrong

custom_distance_from(), custom_draw() and custom_update_data() are
modifying the conceptionally const display_list, i.e. the Text object
contained (shared between all object instances), but update_data was
not restoring the previous state.

 * 2009-11-08  Hans Breuer  <hans@breuer.org>  944a66a

Bug 594891 - Print pagination relative to extents, not origin

There was a mismatch between "page guides" and the actual pagination,
now the page guides give a good estimate of the placement when
printed (PDF exported).

Signed-off-by: Hans Breuer <hans@breuer.org>

 * 2010-10-29  Hans Breuer  <hans@breuer.org>  0f03a34

[build] Decouple --enable-debug and --enable-deprecation

There wont be any more deprecation work on dia-0-97 but
maybe some debugging ;)

 * 2010-08-03  Hans Breuer  <hans@breuer.org>  9a6ceb2

Fix Python detection for my gentoo box

Also updated to a more relevant Python version. I seriously doubt Dia
would still work with Python 1.5.2, but I'm sure it does with 2.3

 * 2010-01-31  Hans Breuer  <hans@breuer.org>  19f6141

Bug 581533 - checking for libpython2.6.a

Original patch from Roman Perier <mrpouet@gentoo.org> but keeping
part of the original code to also work for Python 2.5

 * 2010-11-03  Γιώργος Στεφανάκης  <george.stefanakis@gmail.com>  2370cbc

l10n: Updated Greek translation for dia


 * 2010-11-01  Ricardo Cruz  <rpmcruz@alunos.dcc.fc.up.pt>  48b2987

Updated Portuguese translation


 * 2010-10-29  Carles Ferrando  <carles.ferrando@gmail.com>  44bc4b2

Updated Catalan (Valencian) translation


 * 2010-10-29  Joe Hansen  <joedalton2@yahoo.dk>  4ed75bf

Updated Danish translation


 * 2010-10-24  Mario Blättermann  <mariobl@gnome.org>  631ec2f

[i18n] Updated German translation, fixed bug #633035


 * 2010-10-13  Takayuki KUSANO  <AE5T-KSN@asahi-net.or.jp>  15cc2da

Updated Japanese translation


 * 2010-10-02  Christian Kirbach  <Christian.Kirbach@googlemail.com>  8eb142d

[i18n] Updated German translation


 * 2010-09-22  Petr Kovar  <pknbe@volny.cz>  45eff4c

Update Czech translation by Marek Cernocky


 * 2010-06-06  Xandru Armesto  <xandru@softastur.org>  e40b8d8

Updated asturian translation


 * 2010-06-06  Xandru Armesto  <xandru@softastur.org>  28c37ea

Updated asturian translation


 * 2010-06-06  Xandru Armesto  <xandru@softastur.org>  7d2001c

Added asturian language


 * 2010-05-24  Christian Kirbach  <Christian.Kirbach@googlemail.com>  700f477

Updated German translation


 * 2010-05-02  Cristian Secară  <cristi@secarica.ro>  339e45d

Updated Romanian translation


 * 2010-04-20  Joe Hansen  <joedalton2@yahoo.dk>  cd9e19e

Updated Danish translation


 * 2010-04-02  Martin Srebotnjak  <miles@filmsi.net>  f77ab73

Updated Slovenian translation


 * 2010-03-29  Inaki Larranaga Murgoitio  <dooteo@zundan.com>  8404b1d

Updated Basque language


 * 2010-03-23  Christian.Kirbach  <Christian.Kirbach@googlemail.com>  88333d9

Updated German translation


 * 2010-03-20  Jin-Hwan Jeong  <yongdoria@gmail.com>  160b8e7

Updated Korean translation


 * 2010-03-16  Inaki Larranaga  <dooteo@zundan.com>  79305c9

Updated Basque translation


 * 2010-03-05  Antón Méixome  <meixome@mancomun.org>  d908df4

Updated Galician translation


 * 2010-02-13  Mario Blättermann  <mariobl@gnome.org>  3b0917d

Updated German translation


 * 2010-02-02  Steffen Macke  <sdteffen@sdteffen.de>  fe14a79

Delete registry key that gets created indirectly. Thanks to Bart for noticing.


 * 2010-01-30  Steffen Macke  <sdteffen@sdteffen.de>  97a732f

Updated logo in installer intro screen


 * 2010-01-26  Jorge González  <jorgegonz@svn.gnome.org>  c534d1e

Updated Spanish translation


 * 2010-01-25  Steffen Macke  <sdteffen@sdteffen.de>  7c3d2d7

Don't include the english documentation twice


 * 2010-01-17  Steffen Macke  <sdteffen@sdteffen.de>  03d4b24

Added some additional pixbuf loaders. Added gdk-pixbuf.loaders generation.


 * 2010-01-13  Steffen Macke  <sdteffen@sdteffen.de>  465ddbe

Add librsvg support to the pixbuf loader, enable SVG in standard image object.


 * 2009-11-09  Steffen Macke  <sdteffen@sdteffen.de>  a4830f7

Added Southern Catalan to win32 build.


 * 2009-08-12  Steffen Macke  <sdteffen@sdteffen.de>  1fae586

dia-win-remote.exe was unable to locate Dia with the integrated UI.


 * 2010-01-25  Takeshi AIHANA  <takeshi.aihana@gmail.com>  d1e8c8e

Updated Japanese translation.


 * 2010-01-24  Hans Breuer  <hans@breuer.org>  febb06a

Bug fix release dia 0.97.1

http://bugzilla.gnome.org/buglist.cgi?product=dia&target_milestone=0.97.1

 * 2010-01-24  Steffen Macke  <sdteffen@sdteffen.de>  fb2858b

Bug 570592 - URI-encodes filenames passed from dia-win-remote to diaw

The command line has to have locale encoding, usually not utf-8 on
windows. To pass filenames not representable in the locale encoding
they have to be encoded as URIs (ASCII charset is assumed to be
representable in every locale).

 * 2010-01-24  Hans Breuer  <hans@breuer.org>  8c17225

Bug 570592 - allow to pass filenames as URIs

The command line has to have locale encoding, usually not utf-8 on windows. To pass filenames not representable in the locale encoding hey have to be encoded as URIs (ASCII charset is assumed to be representable in every locale).
(cherry picked from commit 9a5f438d4b3e718c8ab0efe01d08ee2c3a0d9a86)

 * 2009-12-05  Hans Breuer  <hans@breuer.org>  158399a

Bug 570592 - Cannot open or save with localized path

Use G_OPTION_ARG_FILENAME to get filenames by command line arguments in the right encoding. Provide G_OPTION_ARG_CALLBACK for input and output directory processing. Inline process_opts() to simplify the code.
(cherry picked from commit aa5210d4e5ed919be127b08f5b508b2f7093e430)

 * 2010-01-24  Hans Breuer  <hans@breuer.org>  ed7169a

Remove superfluous include of <lib/filter.h>

Mysteriously it breaks 'make distcheck' in plug-ins/libart but it was the only inclusion of this kind anyway.
(cherry picked from commit c039190bd64a84e85b969614bf6256a179f08cca)

 * 2010-01-06  Jorge González  <jorgegonz@svn.gnome.org>  5580ade

Updated Spanish translation


 * 2009-12-27  Hans Breuer  <hans@breuer.org>  de23bfd

Simple context menu also for selection of objects

We can offer the Properties entry also for multiple selected
objects since Sameer's work on group properties.
(cherry picked from commit 55d3b2604d91667de9c071a8253ae3bcc7df22db)

 * 2009-12-14  Hans Breuer  <hans@breuer.org>  304e2c4

Fix endless loop in dictprop_load() (cherry picked from commit 1203a00efe2e3ca6dfb92c75f1abb075683497b1)


 * 2009-12-27  Hans Breuer  <hans@breuer.org>  e089adb

Bug 604474 - Outline blanking issue with e.g. Hash symbol

outline.c : some insignificant off-by-one errors and typos
geometry.c(line_crosses_ray) : used by distance_bez_shape_point() but did not consistently count. Thus the detection of the point being inside of the given area did not work reliably.
(merged from master)

 * 2009-12-05  Hans Breuer  <hans@breuer.org>  b5d3b02

Bug 603576 - wrong decimal separator with vdx

Temporarily switch to LC_NUMERIC, "C" in import and export callback.
(cherry picked from commit 5786137095d49a0064cfe1bfe18865383bdc9908)

 * 2009-12-05  Hans Breuer  <hans@breuer.org>  a15591e

Fix unconditional dia_font_unref(renderer->font) (cherry picked from commit c6d293737f44acc1d4c963a80445abc28a195ab2)


 * 2009-12-05  Hans Breuer  <hans@breuer.org>  b6f9bbb

Bug 587218 - endless loop with cairo

The change ensures a minimum line width of one device unit to be
given to cairo. Also the minimum dash length is limited as a
workaround for cairo version before 1.10, see:
https://bugs.freedesktop.org/show_bug.cgi?id=24702
(cherry picked from commit d47f096f810179451b3df962b88d946f7debeb84)

 * 2009-11-27  Hans Breuer  <hans@breuer.org>  6c05993

Bug 603004 - Exporting a document to png without --size crashes

Only show the size dialog when running interactive. Introduces a dependencies to app/ but crashing is worse.
(cherry picked from commit 93f1efad1e0336da83bd3789a0c8e505b0daac6c)

 * 2009-11-24  Hans Breuer  <hans@breuer.org>  d1bc0b9

Bug 602845 - '&' character disappears during SVG and Dia Shape export

Need to use xmlNexTextChild rather than xmlTextChild. The latter only translates to &lt; and &gt; but not &amp;.
(cherry picked from commit 53b7d2474ce171bfdc841438067aac8df3a93c6c)

 * 2009-11-09  Carles Ferrando  <carles.ferrando@gmail.com>  a7cda86

Updated Southern Catalan translation


 * 2009-11-08  Jorge González  <jorgegonz@svn.gnome.org>  d270032

Updated Spanish translation


 * 2009-11-08  Hans Breuer  <hans@breuer.org>  bd284d7

Bug 586303 - Parenting information not exposed to the python API

exposing DiaObject::parent in lack of a better API idea;)
(cherry picked from commit 91e71c7e9d1b27c7e4e79970c3c9be2fb44fdcc5)

 * 2009-10-25  Hans Breuer  <hans@breuer.org>  006ff8c

Bug #599587 - Shape export icon creation fails without libart renderer

1) it still required the libart PNG exporter, although the "size-hack"
  was already converted to the generic export interface
2) the exporter got the shape-exporters user_data, not it's own

 * 2009-11-07  Hans Breuer  <hans@breuer.org>  36ad1c4

Inconsistent line endings


 * 2009-11-07  Hans Breuer  <hans@breuer.org>  bad5530

Toplevel makefile.msc was not cleaning in bindings


 * 2009-11-07  Hans Breuer  <hans@breuer.org>  5124205

Part of bug #599447 - High Contrast Black & Inaccessible Widgets

DiaArrowChooser was wrongly using hardcoded black/white for rendering.
Now it is switched to widget colors to be consistent with
DiaLineChooser and useable with dark themes.
(cherry picked from commit 89287cf7b7c106f03af01b2dc1d769a37e83a484)

 * 2009-10-23  Hans Breuer  <hans@breuer.org>  4844cb7

Bug #590369 - fix rounding to SVG color (cherry picked from commit 76d34272cfdd07b8f365c830ef9741c2e08e8af7)


 * 2009-09-19  Hans Breuer  <hans@breuer.org>  faf82c3

Bug #594877 - Memory leak when writing vdx (cherry picked from commit 72a406b9926e1cd0fb7e120d27ea322a3364936f)


 * 2009-08-24  Steffen Macke  <sdteffen@sdteffen.de>  94fc2e0

Include PGF plugin in win32 build and installer. (cherry picked from commit b4e4d3f0c3f5fa8f3dd66597e09145a88b0812b4)


 * 2009-08-19  Hans Breuer  <hans@breuer.org>  3db893d

Bug #591403 - allow DiaCairoRenderer::set_font() even before call to begin() (cherry picked from commit a913f6f6a49fe0b41efed1ab1a951156e0f3c746)


 * 2009-10-11  Gabor Kelemen  <kelemeng@gnome.hu>  ebb85f9

Updated Hungarian translation


 * 2009-10-11  Gabor Kelemen  <kelemeng@gnome.hu>  24abae4

Updated Hungarian translation


 * 2009-08-29  Inaki Larranaga  <dooteo@zundan.com>  b3a840f

Updated Basque translation


 * 2009-07-26  Hans Breuer  <hans@breuer.org>  eca5335

Bug #589038 - Bashisms in configure

http://bugzilla.gnome.org/show_bug.cgi?id=589038
From: Gilles Dartiguelongue <eva@gentoo.org>
Date: Tue, 14 Jul 2009 19:57:25 +0200
Subject: [PATCH] Fix bashism

 * 2009-07-26  Hans Breuer  <hans@breuer.org>  d80b6cd

Bug #589037: make libemf plugin optional (allow --disable-libemf)

http://bugzilla.gnome.org/show_bug.cgi?id=589037
From: Gilles Dartiguelongue <eva@gentoo.org>
Date: Tue, 14 Jul 2009 20:17:18 +0200
Subject: [PATCH] Make libemf plugin optional.

 * 2009-07-13  ifelix  <ifelix@redhat.com>  e13cc35

Tamil linguas added


 * 2009-07-13  ifelix  <ifelix@redhat.com>  26d41e4

Updated Tamil Translations


 * 2009-07-07  Hans Breuer  <hans@breuer.org>  84d1b46

Bug #587967 - line artifacts with ellipse


 * 2009-07-05  Hans Breuer  <hans@breuer.org>  5e10327

More consistent case (spelling)


 * 2009-07-05  Hans Breuer  <hans@breuer.org>  ad560f2

Bug #581380 - memory leak with libart renderer

Patch from Jason Childs. The deprecated dia_font_push_context()/
dia_font_pop_context() had a superfluous call to dia_font_init()
"not needed, just testing" which resulted in a fast growing
memory leak, when using the almost deprecated libart renderer.

 * 2009-07-04  Hans Breuer  <hans@breuer.org>  30d8ece

Fix copy and paste translation bug


 * 2009-06-30  Sandeep Shedmake  <sshedmak@redhat.com>  3af577b

Updated Marathi Translations


 * 2009-06-29  Sandeep Shedmake  <sshedmak@redhat.com>  e686c7c

Updated Marathi Translations


 * 2009-06-28  Hans Breuer  <hans@breuer.org>  8fc05fd

Bug #583675 - missing sentinel (cherry picked from commit 65a76d16d1c51cbf438736d303af6fc26df59d6b)


 * 2009-06-28  Hans Breuer  <hans@breuer.org>  c5996a9

Bug #585973 and bug #586921 - Database dialog crash on close (cherry picked from commit 59d925a698b194a7bec6b84072c6c64a59f651f8)


 * 2009-06-27  Jin-Hwan Jeong  <yongdoria@gmail.com>  a11b471

Updated Korean translation


 * 2009-06-24  Sandeep Shedmake  <sshedmak@redhat.com>  03a876e

Updated Marathi Translations


 * 2009-06-22  Sandeep Shedmake  <sshedmak@redhat.com>  90ff9f2

Updated Marathi Translations


 * 2009-06-22  Sandeep Shedmake  <sshedmak@redhat.com>  47759f3

Updated Marathi Translations


 * 2009-06-19  Sandeep Shedmake  <sshedmak@redhat.com>  a7e0ce9

Updated Marathi Translations


 * 2009-06-16  Sandeep Shedmake  <sshedmak@redhat.com>  b705ba0

Updated Marathi Translations


 * 2009-06-07  Mario Blättermann  <mariobl@gnome.org>  93f1986

Updated German translation


 * 2009-06-06  Hans Breuer  <hans@breuer.org>  00819eb

Bug #585004 - implicit declaration of function 'abs'

abs() is coming from stdlib.h rather than from math.h

 * 2009-06-06  Hans Breuer  <hans@breuer.org>  6c4b170

Bug #585004 - implicit declaration of function 'fchmod'

Need to also add _BSD_SOURCE define before inclsuion of sys/stat.h

 * 2009-06-06  Hans Breuer  <hans@breuer.org>  48e2a07

Bug #585004 - implicit declaration of function 'finite'

Define _BSD_SOURCE before inclusion of sys/stat.h

 * 2009-06-06  Hans Breuer  <hans@breuer.org>  46a796f

Bug #585004 - implicit declaration of function 'finite'

To get the definition either _BSD_SOURCE or _SVID_SOURCE needs to
be defined before inclusion of <math.h>

 * 2009-06-06  Hans Breuer  <hans@breuer.org>  d409dba

Bug #585004 - undefined symbol gtk_signal_disconnect_by_data

--enable-debug defines GTK_DISABLE_DEPRECATED which results in
an unresolveable symbol - it is just a deprecated macro.
Fixed by using un-deprecated g_signal_handlers_disconnect_matched()

 * 2009-06-03  Manoj Kumar Giri  <mgiri@mgiri.csb>  441336e

Added Entries for Oriya Translation & addition to LINGUAS.


 * 2009-06-03  Manoj Kumar Giri  <mgiri@mgiri.csb>  df23f8f

Updated Oriya Translation


 * 2009-06-03  Manoj Kumar Giri  <mgiri@mgiri.csb>  5aa9ae6

Added Oriya Language into the List.


 * 2009-05-24  Hans Breuer  <hans@breuer.org>  f46d53b

Hope this gets rid of: you have local changes ...


 * 2009-05-24  Heikki Paajanen  <hepaajan@iki.fi>  6e7fa7e

Bug 582314 - Cairo PNG export doesn't paint the background correctly

Instead of filling an rectangle it uses cairo_paint to clear to surface
(as per http://cairographics.org/FAQ/#clear_a_surface)

Signed-off-by: Hans Breuer <hans@breuer.org>

 * 2009-05-24  Hans Breuer  <hans@breuer.org>  e3cfbc9

Bug 583092 - Wrongly translated string exit dialog

Patch from Heikki Paajanen:
Don't mark cell rendererd property name for translation

 * 2009-05-24  Hans Breuer  <hans@breuer.org>  0253a90

Add 0.97.1 bugs fixed query


 * 2009-05-23  Hans Breuer  <hans@breuer.org>  5347e53

Bug #581531 - Use diagtkrc from the config dir

Use diagtkrc from the config dir instead of current dir.
Patch from Vincent Untz with small modification to not use
dia_config_filename() without protoype.

 * 2009-05-23  Hans Breuer  <hans@breuer.org>  a236ca2

Bug #581177 - work around Python's untrusted search path vulnerability


 * 2009-05-23  Hans Breuer  <hans@breuer.org>  9c6c770

Implement transitive reduction


 * 2009-05-23  Hans Breuer  <hans@breuer.org>  906933b

Bug #583561 - avoid crashing with zero zoom


 * 2009-05-22  Hans Breuer  <hans@breuer.org>  5fa9782

Some updated screenshots


 * 2009-05-22  Hans Breuer  <hans@breuer.org>  5af6c64

Bug #583533 - broken Selection modes


 * 2009-05-11  Hans Breuer  <hans@breuer.org>  1eb7bd3

Working With Selected Objects - removed obsolete tip


 * 2009-05-11  Hans Breuer  <hans@breuer.org>  af390a4

Working With Individual Objects - rewritten to reflect changes in 0.97


 * 2009-05-11  Hans Breuer  <hans@breuer.org>  6516b86

Pure whitespace changes mostly automated


 * 2009-05-10  Hans Breuer  <hans@breuer.org>  e8fbaaa

Add missing <para/> and <title/> to pass docbook validation

Fixing bug #581189 reported by Thomas Dreibholz.
Note to self and everyone who wants to debug stuff like this.
The error:
        doc/en/dia.xml:261: element figure: validity error
can be located by:
        grep -n figure doc/en/*.xml | grep 261
here giving:
        doc/en/usage-customization.xml:261:      <figure>

 * 2009-05-10  Hans Breuer  <hans@breuer.org>  4356431

Bug 581529 - Use xdg-open instead of gnome-open

By Vincent Untz 2009-05-05 22:55 UTC:
Here's a patch to use xdg-open instead of gnome-open, for better
integration when running outside of GNOME.

 * 2009-05-10  Hans Breuer  <hans@breuer.org>  fc7dbf7

Fix harmless build warnings, bug #581542

If the code in plug-ins/drs/dia-render-script-import.c
would actually be used this would indeed be a crash.
Patch from Vincent Untz, bug #581542

 * 2009-05-10  Hans Breuer  <hans@breuer.org>  812d6a1

Fix building with DEBUG_CAIRO

Patch from Heikki Paajanen fixing bug #581615

 * 2009-05-10  Hans Breuer  <hans@breuer.org>  50f240a

Fix unstable bounding box calculation for many Cisco shapes

Perpendicular corners where not always considered pointy joins.
Adapted unit test to special case a lot less objects - bug #568115 -
and presumably fixing bug #581850.

 * 2009-05-10  Hans Breuer  <hans@breuer.org>  9c70b1c

Ensure menu update after leaving text edit with Esc, bug #581499


 * 2009-05-10  Hans Breuer  <hans@breuer.org>  24e52db

Work around Ellipse::move_handle not behaving as expected


 * 2009-05-10  Hans Breuer  <hans@breuer.org>  b3a3220

Comment about slightly broken sizing via DiaObject::move_handle


 * 2009-05-08  Mario Blättermann  <mariobl@gnome.org>  54c9e47

Updated German translation


 * 2009-05-07  Steffen Macke  <sdteffen@sdteffen.de>  57ac75b

Added Korean and Chinese installer locales.


 * 2009-05-06  Steffen Macke  <sdteffen@sdteffen.de>  97855e0

Fix typos in helper program. Add eu, fi and gl installer locales.


 * 2009-05-05  Steffen Macke  <sdteffen@sdteffen.de>  dd36a88

Use *.mo files generated by makefile.msc. Add Spanish installer locale.


 * 2009-05-05  Steffen Macke  <sdteffen@sdteffen.de>  f5ceb04

Add Marathi (mr) to win32 build and installer.


 * 2009-05-05  Steffen Macke  <sdteffen@sdteffen.de>  69e0c29

Don't install the SISSI objects, because they are still alpha.


 * 2009-05-03  Hans Breuer  <hans@breuer.org>  a2b6031

Update for 0.97 final


 * 2009-05-03  Hans Breuer  <hans@breuer.org>  c3f0732

Cancel exiting if the dialog is closed by the Window Manager


 * 2009-05-03  Hans Breuer  <hans@breuer.org>  bc9db5c

Remove empty files if generating them fails


 * 2009-05-03  Hans Breuer  <hans@breuer.org>  1cad81a

'Misc - Measure' did not implement copy/serialize correctly


 * 2009-04-18  Hans Breuer  <hans@breuer.org>  1403ce2

Prefer CAIRO_VERSION_STRING over CAIRO_VERSION_MAJOR


 * 2009-05-03  Hans Breuer  <hans@breuer.org>  cc70bb1

ChangeLog now auto-generated at make-dist-time

See http://live.gnome.org/Git/ChangeLog for reasoning

 * 2009-05-03  Hans Breuer  <hans@breuer.org>  d70321c

My last attempt to fix SISSI resulting in removal from installation

The SISSI objects are considered alpha due to various issues:
 - they use a non-common way of shape definition
 - they do not properly implement the std-props API
 - they us bitmap icons to draw and some of these are not found
 - fixing fialures in 'shape files' does not fix already created
   diagrams (maybe the icon is stored in the diagram?)
 - drawing icons looks like using uninitialized colors
 - the SISSI object configuration dialog has issues
 - some of these issue were already raised in the original
   bug report bgo#355995.  After that was closed the SISSI
   objects were basically unmaintained from the original
   contributor

 * 2009-05-01  Steffen Macke  <sdteffen@sdteffen.de>  c4177ac

Deploy custom_lines.dll and Database.dll. Reflect XPM deletions in installer.


 * 2009-04-26  Takeshi AIHANA  <takeshi.aihana@gmail.com>  b017c2e

Updated Japanese translation.


 * 2009-04-25  Hans Breuer  <hans@breuer.org>  deaed19

Bug #580215 - there were a lot of superfluous xpm installed


 * 2009-04-23  Steffen Macke  <sdteffen@sdteffen.de>  1dc5462

Inlcude kn translations in win32 installer build.


 * 2009-04-23  Steffen Macke  <sdteffen@sdteffen.de>  ddb19f5

For win32 build, add kn to ALL_LINGUAS


 * 2009-04-23  Shankar Prasad  <svenkate@redhat.com>  2032f88

Added Kannada Translation


 * 2009-04-23  Shankar Prasad  <svenkate@redhat.com>  d6d1c00

Added kn to the list


 * 2009-04-23  Shankar Prasad  <svenkate@redhat.com>  d5d41c8

Added Kannada Translation


 * 2009-04-21  Steffen Macke  <sdteffen@sdteffen.de>  9bca443

	* makefile.msc: Adjustments for libart.dll, deploye diaw.exe 	* installer/win32/dia.nsi: Remove drs.dll for the time being, re-add 	libart.dll, adjust for current libart 2.3.20 DLL from ftp.gnome.org


 * 2009-04-21  Steffen Macke  <sdteffen@sdteffen.de>  e8dd3ec

	* sk.po: Translation updates by Slavko Fedorik <slavino@slavino.sk>, fixes 	bug #579078


 * 2009-04-17  Hans Breuer  <hans@breuer.org>  4873ff6

Updated INSTALL, RELEASE-PROCESS and MAINTAINERS

Translated from SVN usage to Git, some spelling corrections

 * 2009-04-17  Steffen Macke  <sdteffen@sdteffen.de>  1c8f036

2009-04-17  Steffen Macke <sdteffen@sdteffen.de>

        * app/commands.c: Updated copyright date

 * 2009-04-17  Hans Breuer  <hans@breuer.org>  7ff2c41

Description for http://git.gnome.org/cgit/


 * 2009-04-17  Hans Breuer  <hans@breuer.org>  aa595bc

Initial set of .gitignore files


 * 2009-04-16  Jorge Gonzalez  <jorgegonz@svn.gnome.org>  28d61d1

Updated Spanish translation


 * 2009-04-15  Steffen Macke  <sdteffen@sdteffen.de>  0df7ff4

cairo, drs, locale build fixes Various updates for 0.97-pre3

2009-04-15  Steffen Macke <sdteffen@sdteffen.de>

	* makefile.msc: cairo, drs, locale build fixes
	* dia.nsi: Various updates for 0.97-pre3

svn path=/trunk/; revision=4384