File: ChangeLog

package info (click to toggle)
scribus 1.3.3.12.dfsg-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 58,392 kB
  • ctags: 14,721
  • sloc: cpp: 167,093; sh: 12,587; ansic: 8,920; python: 2,749; makefile: 2,441; perl: 2,009; xml: 419
file content (3680 lines) | stat: -rw-r--r-- 221,320 bytes parent folder | download | duplicates (2)
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
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
Changes since 1.2 (all Changes from 1.2 to 1.2.5 at the time of 1.3.3.8 release were included in the 1.3.3.8 Versions too)


Scribus - 1.3.3.12svn
=====================
- 0006667: [Releases] 1.3.3.12 release (plinnell) - closed.
- 0006666: [General] Margins fall back to standard values when 1:1 is clicked (cbradney) - closed.
- 0007089: [Import / Export] Broken import of SVG with cyrillic letters (jghali) - closed.
- 0007079: [Story Editor / Text Frames] text with bezier shows extra line when printed (jghali) - closed.
- 0007078: [Documentation] Bad link in toolbox12.html (plinnell) - closed.
- 0007081: [Translation] Spanish (Spain) Translation Update (plinnell) - closed.
- 0002620: [Story Editor / Text Frames] Copy > Paste Text in SE freezes on close or refresh text command. (cbradney) - closed.
- 0006112: [Story Editor / Text Frames] Text align doesn't work correctly (cbradney) - closed.
- 0006572: [Story Editor / Text Frames] Text scroll in SE after changing paragraph style via sideBar (jghali) - closed.
- 0007050: [Story Editor / Text Frames] OOWriter importer drop paragraph text after footnote (jghali) - closed.
- 0006925: [User Interface] Space bar needs to be hit twice after panning content. (cbradney) - closed.
- 0007071: [Translation] ru translation update (cbradney) - closed.
- 0007065: [Translation] Polish translation update for 1.3.3.12 (plinnell) - closed.
- 0007038: [Printing] Printing: Number of Copies (jghali) - closed.
- 0007056: [Translation] Dutch translation for 1.3.3.12 (plinnell) - closed.
- 0007054: [Translation] Updated Breton translation (plinnell) - closed.
- 0007042: [Translation] Danish Translation (plinnell) - closed.
- 0007040: [Translation] eo and it translations (plinnell) - closed.
- 0006985: [Canvas] snap to grid not working in some cases (jghali) - closed.
- 0004770: [General] 90% usage after changing line spacing mode (jghali) - closed.
- 0007000: [Translation] Updated Slovenian translation for 1.3.3.x (cbradney) - closed.
- 0006692: [General] Editor mess-up when text is replaced (jghali) - closed.
- 0006941: [General] scribus 1.3.3.11 won't find the hyphenation dicts (jghali) - closed.
- 0006901: [User Interface] Deactivating eye dropper deletes text frame (cbradney) - closed.
- 0006077: [Shape Drawing] Arrowheads are lost during copy'n'paste (cbradney) - closed.
- 0006984: [General] The name on the application menu should mean more to the end user (plinnell) - closed.
- 0006826: [Scripter] Add some useful Wiki scripts to Script > Scribus Scripts (christoph_s) - closed.
- 0005017: [User Interface] Frame Resize Grippers Nearly Impossible to Grap *Properly* (plinnell) - closed.
- 0006934: [Scripter] enhanced/modified BleedAndPrintMarks.py (subik) - closed.
- 0005464: [Scripter] Objects are not accessible when being created with Scripter (subik) - closed.
- 0006946: [Translation] Galician translation update (cbradney) - closed.
- 0006020: [User Interface] Input field in the "Insert > Glyphs" dialog doesn't work correctly (subik) - closed.
- 0006734: [Printing] Incorrect ps export of images placed in master pages (jghali) - closed.
- 0006928: [Plug-ins] [DE Translation] The Shortcut in the Barcode Generator does not working properly (christoph_s) - closed.
- 0006920: [Story Editor / Text Frames] ODT import crashes Scribus (jghali) - closed.
- 0005639: [General] Auto guides confuse left and right page margins in single page layout (subik) - closed.
- 0006847: [User Interface] "Extended Image Properties" window cannot be closed (subik) - closed.
- 0005631: [General] Guide manager doesn't recognise changes to margin settings (subik) - closed.
- 0006861: [Scripter] Crash after executing Script in the console (subik) - closed.
- 0005512: [PDF] Investigate optional content specifiers for layers or groups (fschmid) - closed.
- 0006898: [Translation] Hungarian Lorem Ipsum listed as "hu" in the sample text dialog (jghali) - closed.
- 0006130: [General] Hungarian lorem ipsum (plinnell) - closed.
- 0006886: [Translation] Spanish UI translation file update (plinnell) - closed.
- 0006882: [Scripter] Recommend removing ImageWizard.py from version (christoph_s) - closed.
- 0006807: [Translation] english in german windows (plinnell) - closed.
- 0006869: [Scripter] new version of Infobox.py (cbradney) - closed.
- 0006870: [Import / Export] Spot colours imported from EPS files are listed twice in the colour dialogs (fschmid) - closed.
- 0006512: [General] Collect for output does not collect font metrics files for Type1 fonts (fschmid) - closed.
- 0006837: [Import / Export] Cancelling ps/eps import while Ghostscript is running does not terminate gs properly (jghali) - closed.
- 0005286: [Usability] Measurement window labels may have insufficient size depending on units (jghali) - closed.
- 0006865: [PDF] Changing values for X and Y coordinates in the Annotation Properties works only after PDF export (jghali) - closed.
- 0006857: [User Interface] trying to fix the fractured English in Python console (cbradney) - closed.
- 0006855: [User Interface] missing space in button in Manage Images (cbradney) - closed.
- 0006840: [Scripter] Remember Path to last executed Script (jghali) - closed.
- 0006836: [PDF] Preflight Verifier doesn't provide PDF 1.5 as an option (jghali) - closed.
- 0006715: [Graphics / Image Frames] Incorrect handling of alpha channel with TIF files (jghali) - closed.
- 0006823: [PDF] Newline issue in PDF fields (jghali) - closed.
- 0006813: [General] Access to sla document infos from file dialog is slow and memory hungry (jghali) - closed.
- 0006800: [Win32] installation failed (jghali) - closed.
- 0006788: [Win32] Crash past 'New Document' window on Vista (jghali) - closed.
- 0006793: [Translation] French translation update (plinnell) - closed.
- 0006791: [Translation] Danish Translation (plinnell) - closed.
- 0006775: [Import / Export] Make text import dialog remember its settings (jghali) - closed.
- 0006780: [User Interface] Sample Text list has all full name of languages except French > Fr (jghali) - closed.
- 0006688: [Story Editor / Text Frames] Impossibles to replace spaces (jghali) - closed.
- 0004169: [Usability] Master Page Copy and Paste problems (jghali) - closed.
- 0006756: [Translation] Hungarian translation update (plinnell) - closed.
- 0006750: [Translation] Galician translation update (plinnell) - closed.
- 0006736: [Graphics / Image Frames] Image effects can still be applied to PDFs in image frames (jghali) - closed.
- 0006732: [User Interface] Display size ruler (fschmid) - closed.
- 0006592: [Graphics / Image Frames] "Adjust Frame To Image" is not relative to Basepoint (fschmid) - closed.
- 0006709: [User Interface] Palettes may go off screen depending of taskbar position (jghali) - closed.
- 0005083: [Scripter] API functions for Opacity (jghali) - closed.
- 0006705: [-] Crash when deleting characters in auto hyphenated long words in textframe (jghali) - closed.
- 0006673: [General] French sample text (plinnell) - closed.
- 0005401: [Story Editor / Text Frames] Selecting text in story editor copies it to the buffer (like CTRL+C) (jghali) - closed.
- 0005962: [PPCOSX / Macintosh] Endian Issue with PDF Export (avox) - closed.
- 0006610: [Graphics / Image Frames] use of the term "Picture Frame" should be abandoned (cbradney) - closed.
- 0006665: [Win32] Silent installation and removal (jghali) - closed.
- 0006656: [General] issue switching back and forth from english to another language (jghali) - closed.
- 0005890: [Import / Export] Abort export/printing completely when exporting multiple files (jghali) - closed.
- 0006617: [Translation] Change text string in PDF export dialog (cbradney) - closed.


Scribus - 1.3.3.11svn
=====================
- 0006650: [Build System] Automake build does not install translations correctly (plinnell) - closed.
- 0006651: [Translation] updated translation for 1.3.3.11 - a major bug fixed (plinnell) - closed.
- 0006341: [Import / Export] Special characters in plain text files aren't imported correctly (jghali) - closed.


Scribus - 1.3.3.10
==================
- 0005640: [Releases] 1.3.3.10 Release (plinnell) - closed.

Scribus - 1.3.3.10svn
=====================
- 0006638: [Translation] Updated translation for es_LA (cbradney) - closed.
- 0006636: [Usability] Reasonable default values for Scribus - 1.3.3.x (plinnell) - closed.
- 0005460: [Internal] Scribus should save to temporary file and then move atomically to avoid loss of data (jghali) - closed.
- 0006605: [Plug-ins] Barcode generator does not generate "ISBN" line correctly for 10- to 13-digit conversions (subik) - resolved.
- 0005460: [Internal] Scribus should save to temporary file and then move atomically to avoid loss of data (jghali) - resolved.
- 0006166: [Story Editor / Text Frames] Scribus Crashes when Copy-Delete (Shift + Delete) (jghali) - closed.
- 0006395: [Import / Export] ODG file freezes Scribus (jghali) - closed.
- 0006315: [PDF] EPS Images shifted in Exported PDF File (jghali) - closed.
- 0006233: [General] Editing Polygon in Master Pages without "Ending" Editing (fschmid) - closed.
- 0006500: [General] Printer isn't available in the page properties dialog (cbradney) - closed.
- 0006446: [Import / Export] Hyphens misplaced in exported pdf document (fschmid) - closed.
- 0005667: [User Interface] Frame borders are disappearing when using Page-up/down-keys (fschmid) - closed.
- 0006412: [General] Canvas: Odd behaviour of the magnifyer. (avox) - closed.
- 0005953: [PDF] Scribus 1.3.4 generates wrong PDF (fschmid) - closed.
- 0006186: [User Interface] Thumbnails of master pages in the "Arrange Pages" dialog don't work (jghali) - closed.
- 0006331: [General] Creation of external weblinks no longer works (jghali) - closed.
- 0005817: [Story Editor / Text Frames] Problems with text flow (jghali) - closed.
- 0006604: [Story Editor / Text Frames] Crash when deleting multiple empty paragraphs (jghali) - closed.
- 0005444: [PDF] PDF forms: broken kerning in text fields, list boxes, buttons, etc. (jghali) - closed.
- 0005444: [PDF] PDF forms: broken kerning in text fields, list boxes, buttons, etc. (jghali) - closed.
- 0005408: [PDF] Generated PDF-form doesn't show/accept äöüÄÖÜ (fschmid) - closed.
- 0005408: [PDF] Generated PDF-form doesn't show/accept äöüÄÖÜ (fschmid) - closed.
- 0003619: [Usability] Anchor points get lost by changing the z-order (cbradney) - closed.
- 0006598: [General] Order of Abort and Ignore buttons inconsistent (jghali) - closed.
- 0004016: [General] Crash by editing a linked text frame (avox)
- 0006585: [Translation] Russian translation update (plinnell)
- 0006591: [Translation] Polish translation update for 1.3.3.10 (plinnell)
- 0006586: [Translation] Updated Danish Translation (plinnell)
- 0003619: [Usability] Anchor points get lost by changing the z-order (cbradney)
- 0005364: [Story Editor / Text Frames] sample text is invisible when placed in already filled frame (cbradney)
- 0006580: [Translation] German Translation update for 1.3.3.10 (plinnell)
- 0005460: [Internal] Scribus should save to temporary file and then move atomically to avoid loss of data (jghali)
- 0006463: [User Interface] Jump to page: wrong input focus (cbradney)
- 0003634: [Story Editor / Text Frames] inconsistent text flow arrows (cbradney)
- 0003352: [Story Editor / Text Frames] Linked frame markers disapper after deleting one frame (cbradney)
- 0006547: [User Interface] Language configuration error. (jghali)
- 0006233: [General] Editing Polygon in Master Pages without "Ending" Editing (fschmid)
- 0006446: [Import / Export] Hyphens misplaced in exported pdf document (fschmid)
- 0006555: [Translation] Font Preview vs. Fonts Preview (cbradney)
- 0006504: [Graphics / Image Frames] Crash after deleting an inline object (jghali)
- 0006537: [Shape Drawing] Allow a page relative mode for the location spinboxes in the node edit palette (fschmid)
- 0006478: [Translation] "Full stop" is not an American English term (cbradney)
- 0005514: [User Interface] Broken display of cyrrillic letters in splash screen messages (cbradney)
- 0006497: [Import / Export] Crash when importing SVG graphics with incorrect viewBox entry. (fschmid)
- 0006505: [User Interface] Text typed in zoom factor edit box appears in text frame (cbradney)
- 0006496: [Translation] Chinese(Traditional) Translation Update (plinnell)
- 0005444: [PDF] PDF forms: broken kerning in text fields, list boxes, buttons, etc. (jghali)
- 0006500: [General] Printer isn't available in the page properties dialog (cbradney)
- 0006475: [Translation] Chinese(Traditional) Translation Update (plinnell)
- 0006367: [Plug-ins] Content of frames positioned incorrectly in SVG Export (jghali)
- 0006458: [Import / Export] Crashes whilst exporting a JPEG. (jghali)
- 0006410: [Translation] New Arabic Translation (plinnell)
- 0006422: [Graphics / Image Frames] Image effects are not copied if the content of an image frame is copied (jghali)
- 0006195: [Build System] error in "mspinbox.cpp" (cbradney)
- 0006395: [Import / Export] ODG file freezes Scribus (jghali)
- 0006331: [General] Creation of external weblinks no longer works (jghali)
- 0006166: [Story Editor / Text Frames] Scribus Crashes when Copy-Delete (Shift + Delete) (jghali)
- 0005408: [PDF] Generated PDF-form doesn't show/accept äöüÄÖÜ (fschmid)
- 0006246: [General] delete a template, it reappears (jghali)
- 0006322: [Import / Export] SVG exporter doesn't draw text boders (jghali)
- 0006314: [Translation] Updated Slovenian translation (plinnell)
- 0006346: [Translation] Swedish translation (cbradney)
- 0006315: [PDF] EPS Images shifted in Exported PDF File (jghali)
- 0006322: [Import / Export] SVG exporter doesn't draw text boders (jghali)
- 0006001: [Translation] Untranslateable string in the tab dialog (cbradney)
- 0006195: [Build System] error in "mspinbox.cpp" (cbradney)
- 0006318: [Documentation] Updated german manpage (plinnell)
- 0006307: [Translation] Spelling fixes for Finnish translation (Version133x) (Tsoots)
- 0006267: [Usability] Spaces in filenames when exporting one pdf file per page. (jghali)
- 0005817: [Story Editor / Text Frames] Problems with text flow (jghali)
- 0006136: [General] Crash when importing OpenOffice text with footnotes (jghali)
- 0006278: [Color Management] Gamut warning doesn't work for vector objects (jghali)
- 0006009: [Story Editor / Text Frames] Item on master page is displaced when moving an image on normal page (jghali)
- 0006246: [General] delete a template, it reappears (jghali)
- 0006218: [Documentation] No images visible in the help browser (cbradney)
- 0006138: [Import / Export] Incorrect handling of polylines in OpenOffice Draw document (jghali)
- 0006157: [User Interface] Clone master page doesn't clone margins (jghali)
- 0005747: [Website] Scribus file extensions not registered in Microsoft database (plinnell)
- 0006104: [-] Gradient properties not copied by "Copy Item Properties" tool (jghali)
- 0005586: [Styles] line style applies only to one member of group of polylines while it is expected to apply to all (jghali)
- 0005777: [Scripter] allPrinters method only return ['FILE'] printer (jghali)
- 0005784: [Scripter] print method won't work correctly on windows (jghali)
- 0003645: [Undo/Redo] Undo in connection with master pages triggers crash (Tsoots)
- 0005489: [Undo/Redo] Undo-ing 'Adjust frame to Image' doesn't work correctly (jghali)
- 0005988: [Undo/Redo] Bad undo after redimension (jghali)
- 0006068: [Translation] Updated Russian translation for 1.3.3.10 (plinnell)
- 0005701: [Internal] Bug #05696 still present in 1.3.3.10cvs (fschmid)
- 0006051: [PDF] PDF export does not work correctly when Master Page name contains foreign letters (jghali)
- 0006042: [General] Loading a second Scribus file fails to find images for image frames (jghali)
- 0006009: [Story Editor / Text Frames] Item on master page is displaced when moving an image on normal page (jghali)
- 0005817: [Story Editor / Text Frames] Problems with text flow (jghali)
- 0005988: [Undo/Redo] Bad undo after redimension (jghali)
- 0005982: [General] crash on close with file from 5435 (jghali)
- 0005109: [Import / Export] Crash on getting text from a .odt doc (jghali)
- 0005945: [-] scribus doesnt find gs 8.57 on one computer but does on another. dropped back to gs 8.56 ok (jghali)
- 0005837: [Translation] opening and closing preferences changes GUI language (jghali)
- 0005921: [Translation] mistranslation (plinnell)
- 0005667: [User Interface] Frame borders are disappearing when using Page-up/down-keys (fschmid)
- 0003616: [Internal] Submit Code for review at http://scan.coverity.com/ (plinnell)
- 0005829: [Scripter] Add SK (Slovak) to the calendar wizard (plinnell)
- 0005653: [Story Editor / Text Frames] Text loses shadow/underline words properties when text frame is duplicated (jghali)
- 0005692: [General] Objects don't get deleted when the layer they're on is deleted (cbradney)
- 0005803: [User Interface] 400% zoom not available (jghali)
- 0005656: [General] Toggle guides crashes Scribus when no document open (jghali)
- 0005762: [Scripter] Printer object has `print' method that's a reserved keyword in recent Python (jghali)
- 0005784: [Scripter] print method won't work correctly on windows (jghali)
- 0005777: [Scripter] allPrinters method only return ['FILE'] printer (jghali)
- 0005658: [Import / Export] Export to SVG of drawing previously imported as EPS sets wrong color (jghali)
- 0005707: [Translation] Traditional Chinese Translation Update (plinnell)
- 0005680: [General] Preview mode crash (plinnell)
- 0005168: [Scripter] Updated Calendar Wizard (plinnell)
- 0005700: [Translation] Another serbian translation update (plinnell)
- 0005701: [-] Bug #05696 still present in 1.3.3.10cvs (fschmid)


Scribus - 1.3.3.9cvs
====================
- 0005438: [Releases] 1.3.3.9 Release (plinnell)
- 0005624: [Graphics / Image Frames] Gamut warning colour is applied to RGB-PDFs (jghali)
- 0005617: [Plug-ins] Shortwords: update with italian short words (subik)
- 0005577: [Internal] _Huge_ increase in SE speed when applying styles after removing bogus signal connections (fschmid)
- 0005608: [Story Editor / Text Frames] strikeout button doesn't work right in SE [patch] (subik)
- 0005441: [General] Scribus 1.3.3.* refuses to embed perfectly embeddable TTF and PS fonts (fschmid)
- 0005596: [User Interface] Unclear warning during file import (jghali)
- 0005581: [User Interface] Level counting starts with zero (subik)
- 0005520: [Styles] line style editor suggests black instead of default line color for new styles (subik)
- 0005589: [Plug-ins] More short words in Russian (cbradney)
- 0005551: [General] Deleting unused colors may delete colors used by styles (jghali)
- 0005568: [Graphics / Image Frames] eps files are not displayed correctly in scribus (fschmid)
- 0005524: [General] new control points should be _on_ existing path in node editor (fschmid)
- 0005507: [Styles] Crash when renaming a linestyle (subik)
- 0005560: [Plug-ins] Barcode Generator creates wrong check digits for some UPC-E barcodes (subik)
- 0005527: [General] scroll canvas with arrow keys when nothing is selected (fschmid)
- 0005570: [Internal] some buggy codes in StoryText::removeChars method (avox)
- 0005557: [General] pressing ESC after using wand irrecoverably destroys object (cbradney)
- 0005528: [General] contour line moves if topmost nodes of frame are moved down in node editor (fschmid)
- 0005538: [User Interface] font size preview in dialogs too small (fschmid)
- 0005526: [General] rounded corner radius set to weird values on right-to-left shape create (fschmid)
- 0005521: [General] width of zero-width styled lines is reset to one and makes arrowheads appear (cbradney)
- 0005522: [General] wrong line style displayed in PP when switching from object with another style (cbradney)
- 0005515: [Translation] updated translation into Russian (plinnell)
- 0005488: [PDF] inline polygons are above the text in PDF and below on the screen (fschmid)
- 0005508: [General] Zooming with - / + key (cbradney)
- 0004749: [Story Editor / Text Frames] Copying then pasting special characters in story editor crashes Scribus (cbradney)
- 0005088: [Story Editor / Text Frames] Shadowed text doesn't activate line colour in SE (cbradney)
- 0005439: [Styles] Tabulators -- unable to set past 4.0000 inches when Document Setup -> Page Size -> Unit is "inches" (fschmid)
- 0002409: [Story Editor / Text Frames] drop caps won't go off (cbradney)
- 0005408: [PDF] Generated PDF-form doesn't show/accept äöüÄÖÜ (fschmid)
- 0005478: [-] updated mimetype sould be shipped and used (plinnell)
- 0005404: [User Interface] center-click pointlessly selects and deselects an object (fschmid)
- 0005422: [Import / Export] PDF form combo box: Preflight Verifier wrongly detects combo box options as "text overflow" (fschmid)
- 0005338: [Import / Export] Spaces are missing when html is imported (jghali)
- 0005483: [Undo/Redo] Scribus crashes when trying to resize an empty tiny text frame after undoing the addition of text. (jghali)
- 0005437: [PDF] Creating link to non-existant page crashes scribus (fschmid)
- 0005456: [Story Editor / Text Frames] Scribus crashes while editing the 'Styles' (jghali)
- 0005246: [User Interface] After Table is Copied, you are not able to edit the cells (jghali)
- 0005480: [General] Problem with saving "Scale Picture to frame size" pref setting (jghali)
- 0001914: [Import / Export] Exported SVG does not center correctly on page in other SVG viewers (fschmid)
- 0005467: [PDF] PDF export shows a dark square instead of a background with color fading. (fschmid)
- 0005445: [Import / Export] SVG import : support for symbol element (jghali)
- 0005376: [General] Screen 'paper' size missing. (jghali)
- 0005377: [General] Missing Globally Compatible Paper Size (PA4-based paper sizes) (jghali)
- 0005229: [Internal] gcc 4.2 warnings (cbradney)
- 0005456: [Story Editor / Text Frames] Scribus crashes while editing the 'Styles' (jghali)
- 0005446: [Scripter] Sample1.py is broken (jghali)
- 0005423: [Build System] mspinbox.cpp could not use fparser.{cpp,h} as delivered (jghali)
- 0005338: [Import / Export] Spaces are missing when html is imported (jghali)
- 0005445: [Import / Export] SVG import : support for symbol element (jghali)
- 0005440: [Translation] Galician translation update (plinnell)
- 0005441: [General] Scribus 1.3.3.* refuses to embed perfectly embeddable TTF and PS fonts (fschmid)
- 0005437: [PDF] Creating link to non-existant page crashes scribus (fschmid)
- 0005415: [Import / Export] Scribus doesn't recognise compressed svg file if the extension is svg (fschmid)
- 0005416: [Import / Export] PDF Export output not as expected (jghali)
- 0005422: [Import / Export] PDF form combo box: Preflight Verifier wrongly detects combo box options as "text overflow" (fschmid)
- 0005419: [Translation] Breton translation for 1.3.3.8 (plinnell)
- 0005398: [PPCOSX] Two deprecated features that may become showstoppers in MacOSX 10.5 (avox)
- 0005412: [Import / Export] Image export only takes into account Document Setup dimensions ie first page (jghali)
- 0005400: [Translation] Dutch translation for 1.3.4 (plinnell)
- 0005402: [Import / Export] image is broken (striped) when downsampling transparent tif (pdf export) (fschmid)
- 0005404: [User Interface] center-click pointlessly selects and deselects an object (fschmid)
- 0005397: [PDF] data disappears in form field when tabbed to next field (fschmid)
- 0005395: [Build System] undocumented build dependency on libjpeg (plinnell)
- 0005392: [Translation] greek translation update po file (plinnell)

Scribus - 1.3.3.8cvs
====================
- 0005230: [Releases] 1.3.3.8 Release (plinnell)
- 0004620: [PDF] Undeclared font in default appearance (DA) of PDF (fschmid)
- 0005345: [Import / Export] "Out of memory" on exported PDF (jghali)
- 0005382: [PDF] Bookmark names export incorrectly (fschmid)
- 0005341: [Printing] Strange behavior of the printing (jghali)
- 0005328: [Internal] new german hyphenation files available (plinnell)
- 0005365: [Printing] Gradient with different shades of a spot color gets converted to CMYK instead of halftones (fschmid)
- 0005385: [Import / Export] Bug creating the /DA attribute of PDF forms (fschmid)
- 0005384: [Translation] Finnish translation update (Tsoots)
- 0005381: [Translation] Updated translation for 1.3.3.7 (and 1.3.3.8) (cbradney)
- 0005370: [Story Editor / Text Frames] wrong labels in "Clear All Text" confirmation prompt (cbradney)
- 0005371: [Translation] Ukrainian translation update for 1.3.3.8 release (malex)
- 0005369: [Translation] Update Danish Translation (malex)
- 0005345: [Import / Export] "Out of memory" on exported PDF (jghali)
- 0003852: [Import / Export] Scribus Crashes with Signal 11 on PDF Export to RGB (cbradney)
- 0005254: [PDF] Cannot create usable PDF forms (fschmid)
- 0005288: [PDF] Contents page in pdf reader rendering incorrect. (fschmid)
- 0005314: [PDF] pdf causes errors in acrobat.exe (fschmid)
- 0005273: [-] Cannot calculate pdf fields correctly. (fschmid)
- 0005327: [-] New Dutch file for sample text (cbradney)
- 0005325: [General] Answer to 0005322: Danish Hyphenation patterns distributed without license and copyright information (cbradney)
- 0005324: [NLS] LPPL compliant README for PL hyphenation patters (for both branches 1.3.4 and 1.3.3.*) (cbradney)
- 0005292: [Graphics / Image Frames] combine polygons is broken (jghali)
- 0004082: [General] Former 1.2 file almost uneditable in 1.3.3cvs and crashing 1.3.4cvs (avox)
- 0005311: [Translation] Polish translation update for 1.3.3.8 (cbradney)
- 0005293: [Usability] obejcts don't get selected on click, if clicked while an image frame is in "pan mode" (fschmid)
- 0005280: [Build System] Extras - Farbkreis (subik)
- 0005304: [Translation] Translation update - pt_BR (cbradney)
- 0005303: [Translation] German Translation update for 1.3.3.8 (cbradney)
- 0005238: [General] Crash when escaping new from template after font substitution dialog (cbradney)
- 0005252: [Scripter] Scripts run from Script -> Execute Script improperly type some arithmetic expressions (subik)
- 0005285: [Translation] Updated Danish Translation (plinnell)
- 0005251: [Story Editor / Text Frames] Impossible to insert glyphs in the SE (cbradney)
- 0005245: [Translation] Updated translation into Russian (plinnell)
- 0005236: [User Interface] When undoing with snap on, esp snap to grid, it will snap the items to a location rather than to the original position. (fschmid)
- 0002552: [Graphics / Image Frames] TIFF image does not display on page and prints bright green (avox)
- 0005204: [Documentation] Table in the docs isn't rendered correctly (plinnell)
- 0004427: [PPCOSX] Cant import JPG in a normal way on Aqua Build (avox)
- 0005187: [General] Code Cleanup (cbradney)
- 0005139: [General] CMYK Spots don't display the same as pure CMYK with color management. (jghali)
- 0005158: [Translation] Slovenian Translation Update (plinnell)
- 0005166: [Build System] Wrong version number reported when built with cmake (cbradney)
- 0005146: [Import / Export] NO PNG EXPORT TO PDF (avox)
- 0005159: [Translation] Add Slovenian lorem-ipsum File (plinnell)
- 0005156: [Build System] cmake doesn't install the GenericCMYK profile (fschmid)
- 0005160: [Translation] scribus.xml Error - Slovenian string needs change (plinnell)
- 0005154: [General] Scribus fails to run on Mac OS X (avox)
- 0005143: [Translation] Default name for tocs isn't translatable (cbradney)
- 0005119: [General] Applying a style to a TOC requires closing the doc setup (cbradney)
- 0005062: [Documentation] Add a note on tooltips at the beginning of the docs and to the README file (plinnell)
- 0005134: [Translation] Polish translation update for 1.3.3.7cvs (cbradney)
- 0003054: [User Interface] preference icons shouldnt be transparent (jghali)

Scribus - 1.3.3.7
=================
- 0003199: [PPCOSX] Help About missing the logo (cbradney)
- 0003095: [PPCOSX] Aqua Scribus Not all fonts available (avox)


Scribus - 1.3.3.7cvs
====================
- 0005015: [Story Editor / Text Frames] Crash after Cut&Paste or Copy&Paste (jghali)
- 0005110: [General] Port Scribus to OS/2 (psmedley)
- 0004067: [General] Can't open saved document (avox)
- 0005090: [General] Margins of left master pages are wrong displayed (fschmid)
- 0005104: [Import / Export] Flipped gradients not exported correctly to PDF (fschmid)
- 0005106: [General] Polish hyphenation dictionary is out of date (cbradney)
- 0003685: [Story Editor / Text Frames] update text frames (jghali)
- 0002317: [User Interface] deleting black without replacing it creates a pseudo color called black but it's white (jghali)
- 0005069: [General] Crash due Signal 11 (avox)
- 0005009: [Import / Export] Imported SVG influences canvas display (plinnell)
- 0004809: [Import / Export] 1.3.3x import lets Scribus hang (avox)
- 0004492: [User Interface] jump to end button broken (cbradney)
- 0003609: [Usability] lock/unlock multiple objects in properties messes up coordinate display (cbradney)
- 0004115: [User Interface] Selection red box still appear (cbradney)
- 0003373: [Undo/Redo] Restoring objects changes stacking order (cbradney)
- 0002789: [Import / Export] Warn user if SVG with incompatible features encountered (subik)
- 0002480: [Plug-ins] more types of color blindness support (subik)
- 0004957: [Integration] scribus.xml magic does not match (reopen 0004206) (plinnell)
- 0004845: [Translation] Updated Dutch translation (plinnell)
- 0004737: [Import / Export] question marks instead of cyrillic letters in PDF layer names (fschmid)
- 0003374: [Story Editor / Text Frames] insert sample text: not visible until i move the text frame to another position. (cbradney)
- 0004737: [Import / Export] question marks instead of cyrillic letters in PDF layer names (fschmid)
- 0003774: [Import / Export] wrong svg export/import (jghali)
- 0003440: [Import / Export] SVG import does not handle <use> tags (jghali)
- 0004295: [User Interface] Slightly confusing string: Page layout (plinnell)
- 0004111: [Scripter] moveObject() odd group related behaviour (subik)
- 0004991: [General] adding a layer while editing a shape in 1.3.3.7cvs (fschmid)
- 0004796: [Shape Drawing] Mirror Path Horizontal or Vertical doesn't work in the Node Palette (fschmid)
- 0002353: [Import / Export] save file: if the filename does not contain the scribus extension and you click on compress then only gz is added instead of sla (fschmid)
- 0004247: [Win32] Heavy use of QPixmaps in combo boxes may trigger crash on windows (jghali)
- 0004736: [User Interface] PDF Export/Font Tab: replace "Subset" by "Convert to outlines" (cbradney)
- 0004888: [Graphics / Image Frames] Crash when selecting 'show images' in context menu (fschmid)
- 0004133: [Story Editor / Text Frames] Confirmation to "Clear all text" option (cbradney)
- 0004846: [Translation] Updated German translations (cbradney)
- 0003198: [Story Editor / Text Frames] Cursor in Story Editor always moves to top when switching window focus (avox)
- 0004788: [General] Crash after a sequence of copy paste (fschmid)
- 0004747: [Translation] Insert Page dialog: "Middle left" and "Middle right" not translatable (4-fold docs) (fschmid)
- 0004603: [User Interface] Unable to set pagination in document settings (cbradney)
- 0004757: [Build System] cairo finder with CMake build doesn't work with today's cvs (cbradney)
- 0004771: [Translation] Dutch Translation Update (subik)
- 0004796: [Shape Drawing] Mirror Path Horizontal or Vertical doesn't work in the Node Palette (fschmid)
- 0004788: [General] Crash after a sequence of copy paste (fschmid)
- 0004785: [Import / Export] Handle import of SVG etc that have only one gradient stop point (fschmid)
- 0004757: [Build System] cairo finder with CMake build doesn't work with today's cvs (cbradney)
- 0004767: [Story Editor / Text Frames] Superscript scaling resets to default 100% when converting text to outline (fschmid)
- 0004765: [Import / Export] SVG import: add handling of 'switch' element (jghali)
- 0004734: [User Interface] Warning for unsupported features in sxd and odg files (jghali)
- 0004737: [Import / Export] question marks instead of cyrillic letters in PDF layer names (fschmid)
- 0004731: [Build System] Scribus installs it's documentation in $PREFIX/share/doc/scribus/ by default (cbradney)
- 0003606: [User Interface] group/ungroup unavailable on context menu for locked items (cbradney)
- 0004382: [Story Editor / Text Frames] Pagenumbers breaks after n pages (cbradney)
- 0004758: [Translation] Update the information on active translator for Norwegian (plinnell)
- 0004313: [Graphics / Image Frames] Pageduplication fails to copy Pictureeffects (fschmid)
- 0004747: [Translation] Insert Page dialog: "Middle left" and "Middle right" not translatable (4-fold docs) (fschmid)
- 0004670: [User Interface] Wrong tooltip regarding location of Settings menu item (plinnell)
- 0004700: [Translation] Dutch Translation Update (plinnell)

Scribus - 1.3.3.6cvs
====================
- 0004545: [Releases] 1.3.3.6 Release Metabug (plinnell)
- 0004680: [Story Editor / Text Frames] Story editor does not remember size of the style-pane (fschmid)
- 0004487: [General] Changing the colour space of a colour sets colour list display to "None" (fschmid)
- 0004675: [Documentation] Add cmake instructions to the INSTALL files (1.3.3.6 ans 1.3.4cvs) (plinnell)
- 0004685: [Documentation] Setup 1.3.x doc: wrong info about Short Words (plinnell)
- 0004667: [Internal] 1.3.3.5 does not correctly read 1.2.x files (fschmid)
- 0004669: [Translation] Insert Page dialog doesn't use common strings (fschmid)
- 0004682: [Translation] Updated translation into Russian for 1.3.3.6 (plinnell)
- 0004666: [Translation] Updated Finnish translation (Tsoots)
- 0003731: [User Interface] Problem with inner/outer margins in master pages
- 0004615: [Translation] Please find Breton language update for Scribus 1.3.3.6 (cbradney)
- 0004616: [Translation] Updated Danish translation (cbradney)
- 0002645: [Story Editor / Text Frames] right click drag and copy text frames creates two instances of text0 in the outline palette
- 0004051: [Story Editor / Text Frames] Edit Story Crashes Scribus Error #1
- 0004597: [User Interface] Font Preview in SE makes SE disappear (subik)
- 0004607: [User Interface] Strange artifacts on canvas when creating a table (fschmid)
- 0004373: [General] "Convert to master page" doesn't update "Arrange pages" (fschmid)
- 0004608: [Translation] Polish translation update for 1.3.3.6 (plinnell)
- 0002193: [Import / Export] PDF SETTINGS not saved (fschmid)
- 0003909: [Printing] Export PDF dialogue forgets font settings (fschmid)
- 0004604: [Build System] Color wheel/Color/Color components => Crash (cbradney)
- 0004605: [Translation] File/Import/Get Text and Append Text: "Open" in window title not translatable (fschmid)
- 0004593: [Story Editor / Text Frames] Hang when redrawing/relayouting text with wrap/zoom etc (avox)
- 0004526: [General] Cairo Build of 1336cvs has crash when importing EPS (fschmid)
- 0004594: [Translation] Updated translation for Scribus 1.3.3.x (plinnell)
- 0004590: [Translation] pt-BR Translation Update (cbradney)
- 0004555: [PDF] gradient of opacity not in PDF, when PDF 1.5 is chosen (jghali)
- 0004537: [User Interface] 1.3.3.x: Gamut warning applied to background colour for font preview in paragraph styles (jghali)
- 0004536: [User Interface] 1.3.3.x: Scribus doesn't remember background settings for preview in paragraph styles (jghali)
- 0004529: [Translation] updated translation for 1.3.3.6 (plinnell)
- 0004502: [PDF] Bad PDF generated (fschmid)
- 0004096: [Import / Export] ????? characters instead of cyrillics in PDF metadata (fschmid)
- 0004461: [General] 1.3.3.5/Styles and Properties: tooltip for Line spacing still wrong (cbradney)
- 0004512: [Translation] NSIS/Installation: please add "Breton/Brezhoneg" to the list of supported languages since NSIS handles it (jghali)
- 0004502: [PDF] Bad PDF generated (fschmid)
- 0004461: [General] 1.3.3.5/Styles and Properties: tooltip for Line spacing still wrong (cbradney)
- 0004515: [Build System] Backport cmake for 1336 (cbradney)
- 0001184: [User Interface] Being able to edit master pages names in the master page dialog (cbradney)
- 0004514: [Integration] Backport the upgrade checker in Help About (cbradney)

Scribus - 1.3.3.5cvs
====================
- 0004439: [Releases] 1.3.3.5 Release Metabug (plinnell)
- 0004495: [Story Editor / Text Frames] automatic linespacing mode broken? (fschmid)
- 0003651: [Internal] default text colors for new paragraph style drawn from wrong place (cbradney)
- 0004488: [User Interface] Printer options dialog is only a tiny spot (fschmid)
- 0004408: [Printing] printing via kprinter fails (fschmid)
- 0004483: [PDF] The PDF Producer tidy (fschmid)
- 0002976: [Import / Export] Can't change number-field format in PDF Web Form (fschmid)
- 0004391: [Win32] acrobat 5 responds with javascript errors upon opening file (fschmid)
- 0004482: [Translation] Updated Danish Translation (cbradney)
- 0004469: [PDF] Exporting this file to PDF gives error in AdobeReader 7.x (fschmid)
- 0004218: [PDF] Period '.' should not allowed in AcroForm field names? (fschmid)
- 0002174: [Story Editor / Text Frames] select all for text frame selects only visible lines (avox)
- 0003749: [Story Editor / Text Frames] Document setup doesn't remember "hyphenation suggestions" setting (cbradney)
- 0004480: [Translation] updated Russian translation for 1.3.3.5 (cbradney)
- 0003182: [Story Editor / Text Frames] Text alignment buttons in the properties palette don't work as expected (plinnell)
- 0004477: [Translation] Polish translation update for 1.3.3.5 (cbradney)
- 0003650: [Internal] incorrect list entry in preferences:shape drawing tools (cbradney)
- 0004226: [User Interface] Wrong/confusing text string in Story Editor dialog (subik)
- 0004472: [Translation] Translation Update - pt_BR (plinnell)
- 0004471: [Translation] Greek translation po file corrections (plinnell)
- 0004470: [Translation] Ukrainian translation update for the upcoming 1.3.3.5 release (plinnell)
- 0003078: [Story Editor / Text Frames] Scribus crashes after applying changes from story editor (fschmid)
- 0002987: [Internal] SIG 11 (fschmid)
- 0003443: [General] Scrapbook eps don't undo correctly (Tsoots)
- 0003582: [Undo/Redo] undo shape resize undoes more then i have done (Tsoots)
- 0004462: [Translation] Updated Finnish translation (Tsoots)
- 0004432: [Story Editor / Text Frames] IFONT="" causes sig11 on some text frames when updating mpalette (cbradney)
- 0004358: [Undo/Redo] Delete/Undo-Strangeness crossing two documents leads to segfault (Tsoots)
- 0004448: [Build System] Configure doesn't detect Python 2.5 (plinnell)
- 0004459: [Translation] German translation update II (plinnell)
- 0004455: [Translation] German translation update for 1.3.3.5cvs (plinnell)
- 0003664: [Scripter] The 3columnA4 script in the "sample" folder can't be launch (plinnell)
- 0004418: [Printing] Issue with print separations and scribus preference files (fschmid)
- 0003696: [User Interface] Tooltip PDF-Export / General / Compression Method: Remove confusing info from tooltip (plinnell)
- 0004436: [Win32] Add "Scribus (with console)" shortcut to standard distributions (jghali)
- 0004451: [General] Language Setting of English US will not stick under non-US LANG settings (cbradney)
- 0004417: [Undo/Redo] undoing table ungrouping forgets it was a table (fschmid)
- 0004175: [Story Editor / Text Frames] shadow not copied with text frames (fschmid)
- 0004272: [Undo/Redo] undo image resize (Tsoots)
- 0004358: [Undo/Redo] Delete/Undo-Strangeness crossing two documents leads to segfault (Tsoots)
- 0003443: [General] Scrapbook eps don't undo correctly (Tsoots)
- 0003582: [Undo/Redo] undo shape resize undoes more then i have done (Tsoots)
- 0004441: [Undo/Redo] Switching doc from the windows menu doesn't change the undo stack (Tsoots)
- 0004401: [Picture Frames] Define max resolution with images with broken resolution tags (fschmid)
- 0004420: [Translation] New Breton (Brezhoneg) translation of Scribus (plinnell)
- 0004381: [Story Editor / Text Frames] Crash when undoing creation of a text frame when having Story Editor open for it (cbradney)
- 0004357: [General] Use after free(3) -- segfault after closing and reopening the same document (cbradney)
- 0003774: [Import / Export] wrong svg export/import (jghali)
- 0004374: [PDF] SVG gradients on PDFs do not show up (fschmid)
- 0004377: [Scripter] Font Sampler fails (jghali)
 -0004370: [Translation] Basque translation updated (plinnell)
- 0003774: [Import / Export] wrong svg export/import (jghali)
- 0000969: [Import / Export] SVG text alignment wrong (jghali)
- 0004381: [Story Editor / Text Frames] Crash when undoing creation of a text frame when having Story Editor open for it (cbradney)
- 0004357: [General] Use after free(3) -- segfault after closing and reopening the same document (cbradney)
- 0004377: [Scripter] Font Sampler fails (jghali)
- 0004374: [PDF] SVG gradients on PDFs do not show up (fschmid)
- 0004355: [General] Crash when saving file (sig #11) (fschmid)
- 0004217: [Story Editor / Text Frames] Gamut warning is not displayed for text colours (jghali)
- 0004365: [Translation] Japanese Translation Update for 1.3.x cvs (plinnell)
- 0004355: [General] Crash when saving file (sig #11) (fschmid)
- 0004350: [Translation] Updated Norwegian translation (plinnell)
- 0004352: [Shape Drawing] Line Styles with 0 point sizes still export in PDF or PSD (fschmid)

Scribus - 1.3.3.4cvs
====================
- 0004193: [Releases] 1.3.3.4 release (plinnell)
- 0004244: [Picture Frames] Setting low-resolution preview in document setup doesn't change already existing image frames. (fschmid)
- 0004210: [Import / Export] ps export: incorrect outline of text attached to a bezier curve (fschmid)
- 0004204: [General] Crash when inserting text in chained text frames (jghali)
- 0002679: [Import / Export] Incorrect display/import of an svg file (jghali)
- 0004321: [Plug-ins] ??? instead of cyrillic names of supported languages in Short Words plug-in summary (subik)
- 0004347: [Internal] Make libtiff and lcms mandatory requirements by build system and in code (ringerc)
- 0004342: [Translation] Translated list entries in TOC IndexPrefs are not displayed (cbradney)
- 0002083: [Story Editor / Text Frames] inserting any text places the cursor in front of the inserted text although it should be after the inserted text (plinnell)
- 0004343: [Translation] German Translation update for 1.3.3.4 (cbradney)
- 0004341: [General] Some parts of Node Palette remain active if left open when closing the document (cbradney)
- 0004233: [Import / Export] Importing SVG does not respect fill-rule (fschmid)
- 0004322: [Translation] updated Russian translation for 1.3.3.4 (plinnell)
- 0004258: [Translation] Original message's wrong function description (subik)
- 0004319: [Translation] Update of Slovenian localization (plinnell)
- 0004271: [Internal] Input ICC profiles should not be compressed when "Compress text and vector graphics" is off (fschmid)
- 0003303: [Import / Export] Import Inkscape SVG produces wrong output in Scribus (jghali)
- 0003219: [General] Add a warning for 1.3 development versions (cbradney)
- 0003278: [Import / Export] SVG gradients don't import correctly (jghali)
- 0004280: [Documentation] boilerplate.py missing (subik)
- 0004276: [Translation] Missing strings in 1.3.3.4cvs ts files (cbradney)
- 0004275: [Translation] German translation update for 1.3.3.4 (plinnell)
- 0003702: [Undo/Redo] Undo not working after shape edit (Tsoots)
- 0004251: [Import / Export] PDF export fails with imported OO draw doc (fschmid)
- 0004253: [General] image with some transparency.. if its shading is set to < 100%, the items below the transparency lose shading, not just the item (fschmid)
- 0004152: [Documentation] Empty language setting is not OS language but English (jghali)
- 0004216: [Plug-ins] Unknown Text-importer (subik)
- 0004230: [General] Flipping a groups mirros the objects independantly (fschmid)
- 0003847: [Import / Export] Radial Gradients in SVG do not import correctly (jghali)
- 0004205: [Story Editor / Text Frames] refesh issue after inserting sampletext in textchain (avox)
- 0004237: [Usability] Print dialog "remembers" copies setting from previous job (fschmid)
- 0004206: [Integration] Mime file doesn't include magic (plinnell)
- 0004219: [Scripter] missing functionality newDoc in Scripter API does not have parameter to specify number of pages (fschmid)
- 0002222: [Import / Export] SVG import failure (jghali)
- 0004048: [General] copy of elements disappears on changing the page by "jumper" (fschmid)
- 0004150: [User Interface] drag & drop into scrapbook broken (fschmid)
- 0003587: [Usability] send to scrapbook disabled for locked frames (fschmid)
- 0004114: [User Interface] Colors in Edit->Colors... does not reflect Color Management properties (jghali)
- 0004186: [Picture Frames] Adding Picture effects is not recorded by the undo system (Tsoots)
- 0003490: [Import / Export] Group objects automatically during page import (fschmid)
- 0004137: [Import / Export] PDF Export may position wrongly images used multiple times (jghali)
- 0004163: [User Interface] Double click on language should insert sample text (fschmid)
- 0004154: [General] horizontal ruler is flashing after selecting object with rectangle (fschmid)
- 0004070: [General] Copying items with the mouse doesn't switch page focus (fschmid)
- 0004182: [Undo/Redo] Wrong page is deleted when canceling insert page (Tsoots)
- 0004144: [Plug-ins] Insert Glyph does not show more than one glyph even if several are selected for insert (fschmid)
- 0003422: [User Interface] properties tab reset on deselecting object (cbradney)
- 0003654: [User Interface] Tool tip confusion in the properties palette (plinnell)
- 0003711: [Story Editor / Text Frames] text frames has default non-zero inset (fschmid)
- 0004165: [Translation] Updated Swedish translation for 1.3.x (plinnell)
- 0004056: [Internal] SampleItem won't work after 08/22/06 weekend grand changes (avox)
- 0004138: [Import / Export] libjpeg gives error message "Application transferred to few scanlines" (jghali)
- 0004139: [General] Potential crash when loading doc containing non-installed cmyk image profile (jghali)
- 0004066: [Story Editor / Text Frames] crashes (sig 11) when moving text frame after closing text editor (avox)
- 0004141: [PDF] PDF 1.5 exports default to Acrobat 3 low-level encryption (40bit) irrespective of what you do. (fschmid)
- 0004118: [General] Print Preview with CMYK previews is broken (fschmid)
- 0004120: [Import / Export] SVG import incorrectly handle transparency (jghali)
- 0004110: [Translation] Turkish translation update from Bar&#305;&#351; Atasoy for 1.3.3.2 (plinnell)

Scribus - 1.3.3.3
=================
- 0004117: [User Interface] The Import SVG, EPS, and Open Draw Gone Menu items and all plugins have gone (malex)


Scribus - 1.3.3.3cvs
====================
- 0004072: [Releases] 1.3.3.3 Release (plinnell)
- 0004107: [General] CMYK black is out out of gamut (jghali)
- 0004097: [Usability] "fullscreen" option is not saved in document for PDF export (fschmid)
- 0004095: [General] color names are borked (jghali)
- 0003932: [Story Editor / Text Frames] Unwanted indents when flowing text around a shape. (avox)
- 0004093: [Shape Drawing] Cannot add nodes to the left side of the image frame (fschmid)
- 0004092: [Translation] Updated Russian translation for 1.3.3.3 (plinnell)
- 0003512: [User Interface] Print preview: antialiasing errors (jghali)
- 0004027: [Win32] photoshop cannot save picture after opening them from within scribus (jghali)
- 0004035: [Picture Frames] corrupt images are displayed by an empty picture frame instead of a warning (jghali)
- 0004026: [Fonts] Bitstream Vera glyphs rendered wrongly (avox)
- 0004014: [Scripter] Litlle patch I wrote in order to add the function "duplicateObject" to the python API (subik)
- 0003932: [Story Editor / Text Frames] Unwanted indents when flowing text around a shape. (avox)
- 0003988: [User Interface] edit - Content is not translated when switching the language from within scribus (cbradney)
- 0004020: [Translation] Polish translation update for 1.3.3.3cvs (plinnell)
- 0003974: [Translation] Swedish translation update for 1.3.x (plinnell)
- 0003983: [Win32] scribus does not respect the windows ui font but uses its own (jghali)
- 0003973: [Translation] fixed translation for 1.3.3.3 (plinnell)
- 0003966: [Releases] Improper detection of location of previously existing Scribus installation (jghali)
- 0003890: [Integration] Ancillary program detection failure (jghali)
- 0003880: [General] "arrange $ align" function makes scribus crash (cbradney)
- 0003729: [User Interface] add an explanation about the warning sign in the color menu (plinnell)
- 0003936: [Import / Export] Wrong ps export of images in master pages (jghali)
- 0003916: [Story Editor / Text Frames] Using "Insert Glyth" to insert more than 4 characters crashes scribus (cbradney)
- 0003920: [Plug-ins] Crash when opening svg via startup dialog (jghali)
- 0003892: [Translation] Restored 100% completion of Greek translation po file (plinnell)
- 0003057: [User Interface] destroyed cursors displayed (jghali)
- 0003466: [User Interface] Improvements to gradient handling in the properties palette (avox)
- 0002835: [Import / Export] Detect and use the ps2write device in newer ghostscript (jghali)


Scribus - 1.3.3.2cvs
====================
- 0003874: [PDF] Scribus generated flawed PDFs whenever ChessBase diagram fonts are used (fschmid)
- 0003834: [Translation] Interface language cannot be changed (cbradney)
- 0003851: [Fonts] not compatible with freetype-2.2 (avox)
- 0003832: [Import / Export] Export to Image & PDF Draw Gray Margin Box (fschmid)
- 0003296: [Plug-ins] Barcode generator changes page layout (jghali)
- 0003705: [Picture Frames] TIFF files cause crash (jghali)
- 0003868: [Usability] Inserting a glyph should clear the list of glyphs (fschmid)
- 0003815: [General] Creating text frames in master pages copied from normal pages triggers crash (cbradney)
- 0003593: [General] Crash in PageItem_TextFrame in 1.3.3.1cvs and 1.3.4 cvs (avox)
- 0003522: [Win32] Crashes after some frames are moved (jghali)
- 0003777: [User Interface] Delete page menu item is not working! (cbradney)
- 0003859: [Picture Frames] Items in context menu greyed out until second invocation (cbradney)
- 0003836: [Usability] Get rid of the white background by default on image frames? (cbradney)
- 0003806: [User Interface] New CMYK icon for palettes uploaded (the current icon doesn't really represent reality) (plinnell)
- 0003840: [Translation] translation po file for greek interface (plinnell)
- 0003819: [Translation] Estonian GUI Translation (cbradney)
- 0003761: [Internal] crash when clicking into white space in "font preview" (cbradney)


Scribus - 1.3.3.1cvs
====================
- 0003604: [Releases] 1.3.3.1 Release (plinnell)
- 0003598: [Import / Export] antiword doesnt import that doc file. (jghali)
- 0003560: [Import / Export] PDF export should not `upsample' images (fschmid)
- 0003520: [Story Editor / Text Frames] copying inline frames results in crash (fschmid)
- 0003572: [User Interface] wrong tooltips for properties buttons (plinnell)
- 0002747: [Usability] PDF Export: Image "quality" setting only applies to JPEG (plinnell)
- 0003567: [Translation] Updated de and de_ol translation files for 1.3.3.1 (plinnell)
- 0003542: [Story Editor / Text Frames] Guide manager miscalculates columns (subik)
- 0003267: [Translation] Interface doesn't use Galician (jghali)
- 0003523: [Shape Drawing] group command is disabled after multiple duplicae (cbradney)
- 0003420: [Win32] Scribus is unable to load GhostScript (plinnell)
- 0003546: [Story Editor / Text Frames] Sig11 when attempting to insert a smart hyphen into an empty text frame (cbradney)
- 0003524: [Win32] scribus steals the focus when dragging files over scribus window (jghali)
- 0003510: [Scripter] Crash in Scripter Console when using F2 to run in console in Russian (subik)
- 0003130: [Scripter] newPage does load template, no error though (subik)


Scribus - 1.3.3cvs
==================
- 0003438: [Plug-ins] font preview: on startup a preview is shown although no font is selected (subik)
- 0003434: [General] Snap to guides can screw up vector graphics (fschmid)
- 0003504: [Fonts] Duplicate Fonts are reported as broken, when in fact they are not (avox)
- 0003465: [Translation] update of russian translation for upcoming v1.3.3 (cbradney)
- 0003506: [Translation] Translation.sl (Slovenian) (plinnell)
- 0003318: [Win32] crashes after some 10 frames are moved from page to page without saving (jghali)
- 0003365: [Import / Export] Importing images from the attached ps file fails (avox)
- 0003405: [User Interface] zoom from view menu changes page displayed (fschmid)
- 0003469: [Import / Export] scribus produces broken screen and pdf output when importing a psd file with layers (fschmid)
- 0003502: [Translation] Ukrainian translation update for the upcoming 1.3.3 release (cbradney)
- 0003500: [Translation] Updated de and de_ol files (cbradney)
- 0003498: [Translation] Dutch translation update for 1.3.3 (plinnell)
- 0003499: [Translation] german 1.3.3 translation (cbradney)
- 0003272: [PDF] Exported PDFX3 with missing TITLE-Information (fschmid)
- 0003240: [Picture Frames] Clipping path still sometimes not correct (fschmid)
- 0003238: [PDF] crash when exporting PDF (fschmid)
- 0003427: [Win32] task bar reports "application scribus" if scribus windows gets grouped (cbradney)
- 0003204: [General] Missing Aktion tag value for recreated bookmarks (fschmid)
- 0003421: [Story Editor / Text Frames] inaccurate display and weird behavior of text alignment buttons in properties (cbradney)
- 0003386: [PDF] Effects in Screen PDF display all pages without stopping (fschmid)
- 0003145: [General] Switching UI language doesn't work for all dialogs (cbradney)
- 0003372: [Undo/Redo] Restored text frames lose their content and don't accept sample text (avox)
- 0003488: [Story Editor / Text Frames] Item list corruption when linking items and not renumbering them (cbradney)
- 0003496: [User Interface] Untranslatable strings (cbradney)
- 0003418: [Shape Drawing] "Round corners" in PP needs to be greyed out for polygons and shapes (fschmid)
- 0003492: [Plug-ins] colorwheel: when doing import colors it should be possible to import by double click (subik)
- 0003495: [Plug-ins] colorwheel: entering a value into radius field and pressing enter adds the colours (subik)
- 0003491: [Plug-ins] color wheel: inner circle is not updated when choosing color components (subik)
- 0003485: [Translation] Updated Danish Translation (plinnell)
- 0003487: [Story Editor / Text Frames] Crash caused by middle clicking text frame when in frame linking mode. (cbradney)
- 0003478: [General] Converting page to Master Page doesn't carry margins. (cbradney)
- 0003438: [Plug-ins] font preview: on startup a preview is shown although no font is selected (subik)
- 0003371: [Import / Export] Scribus doesn't read its own EPS export correctly (avox)
- 0003483: [Translation] Polish translation update for 1.3.3 (cbradney)
- 0003470: [Translation] Catalan translation update (plinnell)
- 0003372: [Undo/Redo] Restored text frames lose their content and don't accept sample text (avox)
- 0003467: [Translation] Galician translation update (plinnell)
- 0003145: [General] Switching UI language doesn't work for all dialogs (cbradney)
- 0003464: [Translation] Japanese Translation FIle for Scribus 1.3.2 (cbradney)
- 0003411: [Story Editor / Text Frames] X/Y position co-ordinates revert to 0 (fschmid)
- 0003456: [User Interface] Frame type cannot be changed from the context menu (fschmid)
- 0003418: [Shape Drawing] "Round corners" in PP needs to be greyed out for polygons and shapes (fschmid)
- 0003405: [User Interface] zoom from view menu changes page displayed (fschmid)
- 0003435: [User Interface] Counting of items in document outline starts with zero (fschmid)
- 0003413: [General] arrowheads on lines not duplicated (fschmid)
- 0003447: [User Interface] Current icons to add objects don't work well on very dark objects (NEW ICONS INCLUDED) (fschmid)
- 0003453: [Translation] translation update for 1.3.3 (fschmid)
- 0003384: [User Interface] Barcode Generator: Wrong tooltip displayed (cbradney)
- 0003388: [User Interface] Dialog for master pages is too small (cbradney)
- 0003401: [Translation] pt_BR translation update (plinnell)
- 0003380: [Internal] invalid properties state stored in files (cbradney)
- 0003397: [Translation] Updated nb_NO translation for 1.3.3 cvs. (cbradney)
- 0003398: [Translation] Updated Finnish translation (Tsoots)
- 0003395: [Translation] Updated German de and de_ol files (plinnell)
- 0003394: [Translation] Catalan translation update (plinnell)
- 0003395: [Translation] Updated German de and de_ol files (plinnell)
- 0003050: [User Interface] context menu text partially obscured (Tsoots)
- 0003381: [User Interface] initial misdisplay of toolbars on starting Scribus (cbradney)
- 0003387: [User Interface] Enlarge text field in the short words dialog (subik)
- 0003393: [Translation] Polish translation update for 1.3.3 (cbradney)
- 0003156: [Win32] Scribus window does not save maximized status on exit (jghali)
- 0003383: [Story Editor / Text Frames] Change of text colour isn't registered in the properties palette (cbradney)
- 0003382: [Story Editor / Text Frames] weird behavior of text box mirror buttons in new CVS (cbradney)
- 0003392: [Translation] Danish updated translation for Scribus 1.3.3 (cbradney)
- 0003391: [Translation] Catalan translation update (cbradney)
- 0003204: [General] Missing Aktion tag value for recreated bookmarks (fschmid)
- 0003390: [Undo/Redo] Crash when undoing creation of a text item while editing text in it (cbradney)
- 0003309: [Usability] Ship Scribus with a deafult keyboard shortcut for the properties palette (plinnell)
- 0003376: [Story Editor / Text Frames] Story Editor alwys offers non-existing ligatures (cbradney)
- 0003368: [User Interface] erreur d'orthographe dans menu "Affichage" (cbradney)
- 0003378: [Plug-ins] Barcode Generator: Wrong descriptions when changig the code type (subik)
- 0003377: [Translation] Update for de.ts and first de_OL.ts files (cbradney)
- 0003375: [Translation] pt_BR translation update (cbradney)
- 0003132: [Win32] Drag files into the Scribus window should open them (jghali)
- 0002989: [General] Refresh Issue on creating new doc (jghali)
- 0003280: [User Interface] tools toolbar appears before the scribus window is open (Tsoots)
- 0003362: [General] page margins are not shown correctly (cbradney)
- 0002280: [Usability] Export to PDF / register "General" / tooltip of "Compatibility" (PDF-version) (plinnell)
- 0003361: [Shape Drawing] fit to screen uses page size in document setup and not the real page dimensions. (cbradney)
- 0001757: [User Interface] toolbar customizations are not being saved on exit. the original toolbar setting is always restored (Tsoots)
- 0003356: [Import / Export] Crash when loading a .psd file into an image frame after importing a .eps file (avox)
- 0003357: [Translation] German ts update (cbradney)
- 0003248: [User Interface] Selection of lines is shown incorrectly (fschmid)
- 0002989: [General] Refresh Issue on creating new doc (jghali)
- 0003334: [Undo/Redo] Add in undo/redo for image offset, scale and DPI (cbradney)
- 0002246: [Import / Export] PDF Export: Add tooltipp to Save button when it is disabled due to pdf/x-3 profile but empty info text (plinnell)
- 0002387: [General] objects change their position too easy (cbradney)
- 0003346: [Plug-ins] Font preview: crash when entering stars like * (subik)
- 0003353: [General] Cancel opening of a sla with missing fonts and creating a new doc crashes scribus (cbradney)
- 0003123: [Import / Export] Import sla file into new page & deleting this page leaves text frames behind (cbradney)
- 0001440: [User Interface] unwanted resizing at click (fschmid)
- 0003337: [User Interface] Moving controll points with mouse doesn't produce what the gui shows (fschmid)
- 0003205: [General] Changing a bookmark's position does not enable "Save" button (fschmid)
- 0002336: [User Interface] after adding a new Prepress-Check Profile is only displayed after reopening the preferences although it is created. (cbradney)
- 0003290: [Styles] ParagraphStyles are not always alphabetically listed (subik)
- 0003211: [User Interface] Margins in single page mode mixed up in Master Pages editing. (cbradney)
- 0003340: [Picture Frames] Add in ability to paste contents of an image frame with an absolute relation to canvas (cbradney)
- 0003137: [Picture Frames] editing a picture is not allowed directly after inserting it (cbradney)
- 0003087: [Shape Drawing] Stroke width is limited to 36pt (cbradney)
- 0003051: [Story Editor / Text Frames] mis-/nondisplay of overflow text near end of frame and in following linked frames (fschmid)
- 0003064: [Internal] ReformDoc: TODO fix these tr("None") things (subik)
- 0002716: [User Interface] Standard layout should only be available if it makes sense (subik)
- 0000761: [User Interface] Right-click on graphics tablet triggers drag-and-drop (fschmid)
- 0003333: [Translation] German ts update for 1.3.3. (cbradney)
- 0003239: [Picture Frames] Picture mask not applied when using a clipping path (jghali)
- 0003235: [User Interface] Allow resizing of frames with arrow keys (cbradney)
- 0003141: [Scripter] wrong sizes fore create-function (subik)
- 0003243: [User Interface] modifying master pages jumps to page 1 (fschmid)
- 0002294: [User Interface] Undo System: Record multiple duplications as one action (Tsoots)
- 0000697: [User Interface] ctrl+end / ctrl+home (cbradney)
- 0000390: [User Interface] constrained movement of objects with a modifier key (cbradney)
- 0003093: [Story Editor / Text Frames] ctrl+cursor right/left should ignore the spaces (cbradney)
- 0000316: [User Interface] Image- and textframe creation by dragging from the right to the left side, and fom down to up isn´t possible (cbradney)
- 0000250: [Shape Drawing] Add control-click/drag for lines to keep to 15 degree angles (cbradney)
- 0003297: [General] Scribus Crashes with Code 11 when trying to create a MasterPage of al previously layouted Page. (cbradney)
- 0000316: [User Interface] Image- and textframe creation by dragging from the right to the left side, and fom down to up isn´t possible (cbradney)
- 0003298: [Translation] pt_BR translation (cbradney)
- 0000250: [Shape Drawing] Add control-click/drag for lines to keep to 45 degree angles (cbradney)
- 0003239: [Picture Frames] Picture mask not applied when using a clipping path (jghali)
- 0000390: [User Interface] constrained movement of objects with a modifier key (cbradney)
- 0000697: [User Interface] ctrl+end / ctrl+home (cbradney)
- 0002435: [General] Trying to undo actions done on Master Page Objects whilst in operating on normal Pages triggers a crash. (Tsoots)
- 0002335: [Usability] picture move mode: inconsistent cursor. the cursor randomly changes between a hand and a cross. (cbradney)
- 0003240: [Picture Frames] Clipping path still sometimes not correct (fschmid)
- 0003216: [Import / Export] Misplacing Characters/lines on eps Load (avox)
- 0002294: [User Interface] Undo System: Record multiple duplications as one action (Tsoots)
- 0003290: [Styles] ParagraphStyles are not always alphabetically listed (subik)
- 0003285: [Fonts] Loosing i and l when converting them to outline and exportig to PDF (fschmid)
- 0003286: [Integration] Attempt to edit image fails with "libgimpui-2.0-0.dll was not found" (plinnell)
- 0003272: [PDF] Exported PDFX3 with missing TITLE-Information (fschmid)
- 0003060: [Plug-ins] font preview: hold cursor down pressed updates the preview but not the font name (subik)
- 0003279: [General] Converting text frame to polygon triggers crash (avox)
- 0003154: [User Interface] Preflight button always says "ignore errors" even when it finds no errors. (subik)
- 0003269: [Story Editor / Text Frames] Clear content doesn't work (avox)
- 0002730: [Plug-ins] Barcode generation Engine via Plugin (subik)
- 0003230: [Import / Export] Master page import and deletion issues (cbradney)
- 0003231: [Printing] Images will be printing in black when you apply effects (jghali)
- 0003167: [Picture Frames] EPS previews are wrong in image frames (fschmid)
- 0002054: [General] Hang on saving a complex drawing as an scs. (fschmid)
- 0002684: [Picture Frames] Enlargement of shapes on values other than per cent (cbradney)
- 0003249: [User Interface] Allow showing and hiding of rulers (cbradney)
- 0003251: [PDF] Missing converted to path vectors in PDF export (fschmid)
- 0003254: [Plug-ins] Update for Short Words French (plinnell)
- 0003253: [Import / Export] Add Microsoft Office Word Importer (Tsoots)
- 0003260: [Import / Export] Try to make grouped images visible makes crash (cbradney)
- 0003192: [User Interface] Preview-Background-Color in Change Paragraph Style Dialoge not applied (subik)
- 0002716: [User Interface] Standard layout should only be available if it makes sense (subik)
- 0003126: [Documentation] Help index does not have headings (subik)
- 0003234: [Import / Export] Palm PDB importer (subik)
- 0003263: [Translation] new version of scribus.ru.ts (cbradney)
- 0003243: [User Interface] modifying master pages jumps to page 1 (fschmid)
- 0003252: [Translation] GenericName[sv] in scribus.desktop is not in Swedish (plinnell)
- 0003253: [Import / Export] Add Microsoft Office Word Importer (Tsoots)
- 0003249: [User Interface] Allow showing and hiding of rulers (cbradney)
- 0003216: [Import / Export] Misplacing Characters/lines on eps Load (avox)
- 0003245: [Story Editor / Text Frames] Cursor positioning when the canvas size is extended by a frame off a page is incorrect (cbradney)
- 0003212: [User Interface] Applying Master doesn't change margins on page. (fschmid)
- 0003145: [General] Switching UI language doesn't work for all dialogs (cbradney)
- 0003216: [Import / Export] Misplacing Characters/lines on eps Load (avox)
- 0003237: [Translation] Translation update: pt_BR (cbradney)
- 0002741: [Usability] changes on the properties pallete are never undone (cbradney)
- 0003231: [Printing] Images will be printing in black when you apply effects (jghali)
- 0002684: [Picture Frames] Enlargement of shapes on values other than per cent (cbradney)
- 0003230: [Import / Export] Master page import and deletion issues (cbradney)
- 0002054: [General] Hang on saving a complex drawing as an scs. (fschmid)
- 0003212: [User Interface] Applying Master doesn't change margins on page. (fschmid)
- 0003110: [Shape Drawing] 'Combine Polygons' may leave holes in objects. (fschmid)
- 0003166: [User Interface] incorrect ruler origin, possible loss of precision in page item placement (fschmid)
- 0001757: [User Interface] toolbar customizations are not being saved on exit. the original toolbar setting is always restored (Tsoots)
- 0003052: [User Interface] desire persistence of UI settings (Tsoots)
- 0003103: [User Interface] Text size is always 0.5 pt (cbradney)
- 0002596: [General] Switching GUI from German to Polish: some strings don't switch (cbradney)
- 0003153: [Printing] Preflight does not ignore items marked 'printing disabled' (fschmid)
- 0003121: [Story Editor / Text Frames] copy text frames with text attached to a path won't work (fschmid)
- 0003165: [Story Editor / Text Frames] Inserting any character over selected text from the Insert menu doesn't overwrite the selection (cbradney)
- 0003158: [User Interface] fonts in property palette are sorted A-Z, then a-z (fschmid)
- 0002786: [Picture Frames] Use Exif info in jpeg,Tiff and PSD for previews and thumbnails (fschmid)
- 0003174: [Plug-ins] Collect for output fails to include image files in the directory (subik)
- 0002616: [User Interface] Arrange pages is still broken (fschmid)
- 0003122: [Plug-ins] Change the sample text in the font preview window (subik)
- 0003058: [User Interface] Horizontal (vertical) guides are removed when moving them to the scratch space at the right or left side (top or bottom) (fschmid)
- 0003166: [User Interface] incorrect ruler origin, possible loss of precision in page item placement (fschmid)
- 0003139: [User Interface] Arrange Pages: Pages created in this palette do not have a page number in it (fschmid)
- 0003134: [User Interface] copy with right click and drag does not work (cbradney)
- 0003067: [Win32] home icon looks wrong (jghali)
- 0003070: [Win32] issue with activating picture edit mode with doubleclick (jghali)
- 0003116: [Printing] Add in ability to import printer minimum margins from CUPS (cbradney)
- 0002356: [Usability] File - open recent files: Add accelerators for the entries (&1, &2 etc) (cbradney)
- 0003169: [User Interface] Path separators in recent file menu should be a backslash on windows (cbradney)
- 0003165: [Story Editor / Text Frames] Inserting any character over selected text from the Insert menu doesn't overwrite the selection (cbradney)
- 0003153: [Printing] Preflight does not ignore items marked 'printing disabled' (fschmid)
- 0003136: [Win32] gimp-win-remote doesn't work (jghali)
- 0003135: [Win32] Edit picture crashes GIMP 2.2 (jghali)
- 0003142: [Fonts] Add symbols for font formats in all dialogs where the font can be changed (fschmid)
- 0003146: [General] Sample text: "NO" button works as "Yes" (cbradney)
- 0003134: [User Interface] copy with right click and drag does not work (cbradney)
- 0003059: [Picture Frames] if show picture is disabled then the doubleclick to edit the position of the picture should also be disabled. (cbradney)
- 0003147: [Printing] Add in ability to get the printer margins from the printer for prefs or current document (cbradney)
- 0003148: [Translation] Updated Danish Translation for 1.3.x (plinnell)
- 0003139: [User Interface] Arrange Pages: Pages created in this palette do not have a page number in it (fschmid)
- 0003138: [User Interface] Layer Palette: layers should have unique names (fschmid)
- 0002296: [Story Editor / Text Frames] always take regular font style as standard, some have bold, some italics (fschmid)
- 0001557: [Plug-ins] current document as template
- 0003133: [Win32] Even after closing a file i cannot delete the folder that was containing the file (jghali)
- 0003110: [Shape Drawing] 'Combine Polygons' may leave holes in objects. (fschmid)
- 0003070: [Win32] issue with activating picture edit mode with doubleclick (jghali)
- 0003090: [User Interface] guide manager displays wrong guides (subik)
- 0003044: [User Interface] Name of plug-ins in "About plug-ins" dialog don't fit ListBox (subik)
- 0003119: [Story Editor / Text Frames] Cadre de texte personnalisé (fschmid)
- 0003049: [Plug-ins] no preview displayed in font preview box (subik)
- 0003071: [Win32] StoryEditor's window caption is out of reach by default (jghali)
- 0003081: [Story Editor / Text Frames] selecting text in a frame crashes scribus (cbradney)
- 0003069: [Documentation] Make COPYING and other basic docs install too (ringerc)
- 0003083: [Story Editor / Text Frames] Paragraph style preview crashed when in edit mode (subik)
- 0003086: [Import / Export] Crash when opening OpenOffice.org Draw file
- 0003053: [General] Scribus eats all my memory when built with cairo support (fschmid)
- 0003077: [Printing] Clip to margins option should be disabled by default (jghali)
- 0003079: [Shape Drawing] Select bezier tool, right click on canvas = crash (cbradney)
- 0003068: [Translation] Ukrainian Translation Update for 1.3.2 release. (cbradney)

Scribus - 1.3.2
===============
- 0002869: [Integration] Please put Scribus on Ubuntu/Gnome into Graphics menu (malex)
- 0003082: [Website] Add News item into sf.net (plinnell)
- 0002362: [PPCOSX] Scribus hangs or crashes while searching for fonts (avox)

Scribus - 1.3.2cvs
==================

- 0002843: [Story Editor / Text Frames] masterpages: table containing sample text doesnt display it (fschmid)
- 0003022: [Shape Drawing] Opening a Polygon with the Node-Editor doesn't work at all. (cbradney)
- 0003021: [Shape Drawing] Closing Polylines with the Node-Editor sometimes causes change of the object being edited (fschmid)
- 0002881: [PPCOSX] Scribus/Aqua cannot write or read directories/files (avox)
- 0003040: [Win32] on the page layout palette every page has a white rectangle inside its icon. (jghali)
- 0002843: [Story Editor / Text Frames] masterpages: table containing sample text doesnt display it (fschmid)
- 0003046: [Translation] update of russian translation for upcoming v1.3.2 (cbradney)
- 0003021: [Shape Drawing] Closing Polylines with the Node-Editor sometimes causes change of the object being edited (fschmid)
- 0003022: [Shape Drawing] Opening a Polygon with the Node-Editor doesn't work at all. (cbradney)
- 0003034: [Documentation] docs html fonts are too small in code or pre tags on windows (jghali)
- 0002948: [Scripter] scripter constantly grabs focus if running a long script (jghali)
- 0003035: [Translation] German translation update for 1.3.2 (plinnell)
- 0003033: [Translation] Finnish Translation update (Tsoots)
- 0003030: [Translation] Updated nb_NO translation for 1.3.2 (cbradney)
- 0003029: [Translation] Updated German translation for 1.3.2 (cbradney)
- 0003015: [User Interface] When scratch space is changed, master pages are drawn incorrectly (fschmid)
- 0001391: [User Interface] Double click does not select the word under the cursor (cbradney)
- 0003025: [General] Crash after creating a text frame and double click to edit it (cbradney)
- 0003026: [Translation] German translation for 1.3.2. (cbradney)
- 0003024: [Shape Drawing] Converting Objects with the Context-Menu doesn't work always correctly. (cbradney)
- 0003023: [Shape Drawing] Changing the level of an Object with the Context-Menu or the Properties Palette doesn't work correctly. (cbradney)
- 0002792: [Printing] EPS images are shown too small when printed (fschmid)
- 0003000: [Documentation] Clean up the Templates for 1.3.2 Release (plinnell)
- 0002872: [General] Collect for output duplicates images unnecessarily (subik)
- 0001771: [Picture Frames] Unable to choose scale frame to image size, does not exist, only exists in the context menu of "adjust frame to picture" (cbradney)
- 0003016: [General] Canvas mode: Impossible to move textcursor by mouseclick to end of sentence (cbradney)
- 0003018: [Translation] Polish translation update for 1.3.2cvs (cbradney)
- 0002983: [Printing] br1 template causes crash when print preview is chosen with defaults (fschmid)
- 0002961: [Plug-ins] scrolling down the font list in the font preview makes the preview part bigger and bigger (subik)
- 0002966: [Picture Frames] state of active layers is not saved with a psd-file (fschmid)
- 0002912: [Story Editor / Text Frames] Page/Copy won't always redraw textframes correctly (fschmid)
- 0002981: [Picture Frames] Appending EPS image to imageframe leads to wrong rendered image (fschmid)
- 0002988: [Fonts] Font Substitutions do not work automatically with doc created on linux, then opened on Win32 (jghali)
- 0003003: [Fonts] Font Substitution Mismatches going from Win32 > Linux (jghali)
- 0003009: [Win32] any text after "@" disappears when entered in the SE on Win32 (jghali)
- 0000387: [Import / Export] importing a page
- 0002944: [Story Editor / Text Frames] bad cursor placing in textframes when two columns (cbradney)
- 0002656: [General] Crash working with font sampler generated docs (cbradney)
- 0002510: [Import / Export] Sig. 11 when importing text (oo writer) and substituting font (cbradney)
- 0003004: [Usability] different order of layers in context menu and layer palette (cbradney)
- 0003012: [Story Editor / Text Frames] Resizing a multiselection of textboxes changes font size (cbradney)
- 0002873: [Story Editor / Text Frames] Linking several text frames (cbradney)
- 0002056: [Picture Frames] the image effect dialog should be also opened by the image context menu (cbradney)
- 0002638: [User Interface] "Unlink text frames" tool availability is weird (cbradney)
- 0002946: [Scripter] patch for faster insertText() (subik)
- 0001759: [General] improve file dialogs with last used files
- 0003010: [User Interface] refresh issue with two layers and selected objects (cbradney)
- 0002982: [Import / Export] Fill color in text frame blocks text export to PDF (cbradney)
- 0002832: [Plug-ins] Color Artifacts in Color Wheel under win32 (subik)
- 0002968: [Plug-ins] color wheel: list of colors in the document is not updated (subik)
- 0002293: [User Interface] Ctrl +- should zoom in/out by the stepping value set in preferences (cbradney)
- 0002995: [Story Editor / Text Frames] press shift+end should select the the whole line but it only selects the line -1 character (cbradney)
- 0002960: [Picture Frames] rotating picture frames rotates the mouse controls too (fschmid)
- 0002946: [Scripter] patch for faster insertText() (subik)
- 0002982: [Import / Export] Fill color in text frame blocks text export to PDF (cbradney)
- 0002998: [User Interface] the zoom out button does not respect the minimal zoom factor set in preferences (cbradney)
- 0002964: [General] Crash changing PDF version prefs (ringerc)
- 0002958: [Picture Frames] End the picture move mode by doubleclick does not work. (cbradney)
- 0002990: [Win32] new paths for fonts are not recognized (jghali)
- 0002977: [General] Importing Master Pages produces signal 11 crashes (sometimes) and always imports the page into another master (cbradney)
- 0002875: [Internal] crash while playing with documents (open, close) (ringerc)
- 0002624: [User Interface] activating spot or registration colour enlarges the edit colour dialog (fschmid)
- 0001913: [Import / Export] Save as SVG compressed adds incorrect extension (subik)
- 0002921: [Picture Frames] Crash with Sig 11 when importing the attached cmyk jpg image with embedded icc profile (plinnell)
- 0002871: [General] resize canvas to standard size around doc pages (fschmid)
- 0001139: [Picture Frames] Assign GIMP effects filters to pictures (plinnell)
- 0001099: [General] Inline graphics (fschmid)
- 0002770: [Scripter] setStyle (Scripter) applies only to first selected frame (subik)
- 0001606: [Scripter] setStyle changes complete frame style despite selection (subik)
- 0001346: [Story Editor / Text Frames] Tiny frames (plinnell)
- 0001591: [Story Editor / Text Frames] Layout changes after document opened (fschmid)
- 0002756: [Fonts] Hebrew letters don't print correctly from scribus (fschmid)
- 0002303: [User Interface] delete all guides, please (subik)
- 0002937: [Picture Frames] image will be display if "display" was set false before import (fschmid)
- 0002943: [Internal] Patch : replace system() calls by using QProcess (fschmid)
- 0000273: [Import / Export] More PDF presentation effects wanted (fschmid)
- 0002938: [User Interface] basepoint being ignored (fschmid)
- 0002945: [Usability] Can't change column number for newly created text frame (cbradney)
- 0002969: [Internal] Undoing creation of any object crashes Scribus (cbradney)
- 0002293: [User Interface] Ctrl +- should zoom in/out by the stepping value set in preferences (cbradney)
- 0002972: [Internal] EPS, PDF in image frame, PS/EPS file preview broken (ringerc)
- 0002956: [General] Scribus stops on launching while "Initializing Story Editor" (jghali)
- 0002951: [Internal] Crash when closing last open document using CTL-W (fschmid)
- 0002945: [Usability] Can't change column number for newly created text frame (cbradney)
- 0002957: [Translation] Polish translation update for 1.3.2cvs (plinnell)
- 0002950: [Translation] scribus --help > Unicode glyphs replaced by ? (ringerc)
- 0002912: [Story Editor / Text Frames] Page/Copy won't always redraw textframes correctly (fschmid)
- 0001993: [Import / Export] New PDF viewer and presentation effects with visible bookmarks or full screen (fschmid)
- 0002938: [-] basepoint being ignored (fschmid)
- 0002937: [Picture Frames] image will be display if "display" was set false before import (fschmid)
- 0001214: [User Interface] margins for facing landscape pages (plinnell)
- 0002303: [User Interface] delete all guides, please (subik)
- 0002756: [Fonts] Hebrew letters don't print correctly from scribus (fschmid)
- 0002871: [General] resize canvas to standard size around doc pages (fschmid)
- 0002921: [Picture Frames] Crash with Sig 11 when importing the attached cmyk jpg image with embedded icc profile (plinnell)
- 0001913: [Import / Export] Save as SVG compressed adds incorrect extension (subik)
- 0002624: [User Interface] activating spot or registration colour enlarges the edit colour dialog (fschmid)
- 0001099: [General] Inline graphics (fschmid)
- 0001759: [General] improve file dialogs with last used files
- 0001591: [Story Editor / Text Frames] Layout changes after document opened (fschmid)
- 0001346: [Story Editor / Text Frames] Tiny frames (plinnell)
- 0001606: [Scripter] setStyle changes complete frame style despite selection (subik)
- 0002770: [Scripter] setStyle (Scripter) applies only to first selected frame (subik)
- 0000952: [Documentation] Need a brief doc of what tags the HTML importer can handle (subik)
- 0002800: [Import / Export] Wanted option to import EPS or SVG into a new document. (ringerc)
- 0002257: [Import / Export] Importing svg leads to crash (cbradney)
- 0002857: [General] SIG #11 (after using Paragraph Styles) (cbradney)
- 0002914: [General] Edit Nodes Palette does not trigger un-saved state after changes (fschmid)
- 0002738: [Styles] Copying text frames produces duplicated Paragraph Styles (duplicated Styles are prefixed by “Copy of”) (cbradney)
- 0002740: [Story Editor / Text Frames] Text frames: Impossible to locate the cursor at the end of line (cbradney)
- 0001254: [User Interface] Cant get into panning mode when object is selected without clicking away (cbradney)
- 0001308: [User Interface] Support simple variables in spinbox calculations (cbradney)
- 0002711: [Internal] order of the page in document (cbradney)
- 0002463: [Internal] Issues with win32 build (jghali)
- 0002929: [Translation] Polish translation update for 1.3.2 (cbradney)
- 0002463: [Internal] Issues with win32 build (jghali)
- 0002886: [General] Incorrect Measurements displaying in inches in palette (cbradney)
- 0002711: [Internal] order of the page in document (cbradney)
- 0002923: [General] Scribus does not start correctly under Gnome (cbradney)
- 0000722: [User Interface] "Printing" message box (cbradney)
- 0001308: [User Interface] Support simple variables in spinbox calculations (cbradney)
- 0002795: [User Interface] Add panning option to a mouse button drag (cbradney)
- 0001254: [User Interface] Cant get into panning mode when object is selected without clicking away (cbradney)
- 0002915: [Internal] fparser library has been updated (fschmid)
- 0002917: [Translation] Hungarian translation update (cbradney)
- 0002740: [Story Editor / Text Frames] Text frames: Impossible to locate the cursor at the end of line (cbradney)
- 0002738: [Styles] Copying text frames produces duplicated Paragraph Styles (duplicated Styles are prefixed by “Copy of”) (cbradney)
- 0002420: [User Interface] Error message at startup is covered by the splash screen and the splash does not go away by clicking on it (ringerc)
- 0002914: [General] Edit Nodes Palette does not trigger un-saved state after changes (fschmid)
- 0002840: [Story Editor / Text Frames] multiple duplicating: textframes are not updated (cbradney)
- 0002907: [Picture Frames] Adjust frame to image size has a minor rounding error (fschmid)
- 0002805: [Picture Frames] Crash when deleting content of picture frames with effects applied (cbradney)
- 0002291: [User Interface] after editing a colour that colour should still have the focus (cbradney)
- 0002910: [Picture Frames] Multiple duplicate does not duplicate picture effects (fschmid)
- 0002857: [General] SIG #11 (after using Paragraph Styles) (cbradney)
- 0002908: [General] Flipping a group of objects triggers crash (cbradney)
- 0002257: [Import / Export] Importing svg leads to crash (cbradney)
- 0002906: [User Interface] Copy page to master page places items relative to location of original page, not the new master page's origin (cbradney)
- 0002621: [Picture Frames] Color profiles for jpegs not saved (fschmid)
- 0002892: [Import / Export] PDF form created by Scribus cannot be processed by ghostscript (fschmid)
- 0002903: [User Interface] Implement a better progress dialog for printing and pdf export, with cancellation possibilty (cbradney)
- 0002894: [Import / Export] Export to pdf doesn't colour arrowheads (fschmid)
- 0002688: [Import / Export] PDF export needs progress dialog (cbradney)
- 0002825: [User Interface] guidelines and grids are too thick (cbradney)
- 0002649: [Win32] Unable to restore from minimized with modal dialogs active (jghali)
- 0002797: [Win32] Scribus Does not find fonts installed via ATM Deluxe (jghali)
- 0002282: [General] Scribus crashes when opening a file from the tutorial from Niyam Bhushan (cbradney)
- 0002800: [Import / Export] Wanted option to import EPS or SVG into a new document. (ringerc
- 0002817: [Usability] on the property palette the x/y,rotation values can still be changed after locking the objects (cbradney)
- 0002355: [Import / Export] PDF Export: add accelerator for export layers and change resolution (cbradney)
- 0002825: [User Interface] guidelines and grids are too thick (cbradney)
- 0002282: [General] Scribus crashes when opening a file from the tutorial from Niyam Bhushan (fschmid)
- 0000774: [User Interface] option to add guidelines to every page in a document (subik)
- 0002855: [General] In manage guides, automatic guides row/col gap uses pts while displaying inches (subik)
- 0002634: [Story Editor / Text Frames] "Automatic guides" referring to "selection" doesn' t work for columns (subik)
- 0002633: [Story Editor / Text Frames] "Automatic Guides" doesn't take into account different page margins (subik)
- 0002859: [User Interface] Bright fonts in the paragraph preview are unreadable (subik)
- 0002783: [User Interface] Tidy up section numbering GUI and add some more functionality (cbradney)
- 0002798: [PPCOSX] Scribus crashes when duplicating a text area with colour graduation (avox)
- 0002775: [General] color profile discarded or swapped (fschmid)
- 0002774: [PPCOSX] Silently stops at launch during ICC profiles readings (International characters) (ringerc)
- 0002757: [General] When I insert a pdf field into a document and use underline only, it is not editable in the pdf. (fschmid)
- 0002630: [Scripter] Constant FIRSTPAGERIGHT/FIRSTPAGELEFT works in the wrong direction (subik)
- 0002807: [Import / Export] Crash when opening *.sla file (cbradney)
- 0002720: [Styles] replace paragraph style on delete (fschmid)
- 0002837: [User Interface] Sig11 on duplicate or import of master pages (cbradney)
- 0001083: [User Interface] Smaller font size for tool palettes (Tsoots)
- 0002856: [Import / Export] Running collect for output a subsequent time does not copy the images or update their paths (subik)
- 0000709: [User Interface] Switched Yes/No and Yes/No/Cancel dialogues (cbradney)
- 0002398: [Internal] Get plugins to compile on Windows (win32) (jghali)
- 0002634: [Story Editor / Text Frames] "Automatic guides" referring to "selection" doesn' t work for columns (subik)
- 0000774: [User Interface] option to add guidelines to every page in a document (subik)
- 0002633: [Story Editor / Text Frames] "Automatic Guides" doesn't take into account different page margins (subik)
- 0002859: [-] Bright fonts in the paragraph preview are unreadable (subik)
- 0001083: [User Interface] Smaller font size for tool palettes (Tsoots)
- 0002856: [Import / Export] Running collect for output a subsequent time does not copy the images or update their paths (subik)
- 0002606: [General] "Delete" key doesn't delete frames (cbradney)
- 0002854: [General] Scribus crashes after canceling startup dialog (plinnell)
- 0002830: [Scripter] Cannot edit the text frames created using font sampler script (cbradney)
- 0002848: [Import / Export] Scribus generated PDF has a wrong layout in Acrobat Reader (fschmid)
- 0002850: [Translation] Updated nb_NO translation for 1.3.2cvs (plinnell)
- 0002847: [User Interface] Spelling mistake in new document dialog (cbradney)
- 0002423: [Documentation] add a howto for lipsum (plinnell)
- 0002848: [Import / Export] Scribus generated PDF has a wrong layout in Acrobat Reader (fschmid)
- 0002824: [Import / Export] import image: preview is buggy for some pictures (fschmid)
- 0002815: [Printing] prepress checker doesnt recognize transparency in gradients for print preview (fschmid)
- 0002829: [General] Ignore Button in pre-flighter does not work (fschmid)
- 0002837: [User Interface] Sig11 on duplicate or import of master pages (cbradney)
- 0002739: [Picture Frames] images gets "invisible" while editing shape (fschmid)
- 0002830: [Scripter] Cannot edit the text frames created using font sampler script (cbradney)
- 0002810: [Translation] Updated nb_NO translation for 1.3.2cvs (plinnell)
- 0002824: [Import / Export] import image: preview is buggy for some pictures (fschmid)
- 0002811: [Story Editor / Text Frames] SE doesn't remember the position where it was opened the last time (subik)
- 0001246: [Picture Frames] doubleclick on image to move it works only after doubleclick, leave frame,doubleclick again (cbradney)
- 0002814: [Printing] text with outline on a path looks wrong in print preview (fschmid)
- 0002816: [Story Editor / Text Frames] cursor should be placed at the beginning of the textframe when pressing E to edit to (fschmid)
- 0002082: [User Interface] add/remove image effects from the "in use" list by double-clicking the items (cbradney)
- 0002820: [Translation] German translation update (cbradney)
- 0002815: [Shape Drawing] prepress checker doesnt recognize transparency in gradients for print preview (fschmid)
- 0002818: [Documentation] Typo in section "How to obtain the Scribus source" (cbradney)
- 0002807: [Import / Export] Crash when opening *.sla file (cbradney)
- 0002799: [Win32] Scripter : msvc compatibility patch (subik)
- 0002806: [Translation] Updated nb_NO translation for 1.3.2cvs (plinnell)
- 0002803: [Translation] Updated Danish Translation (plinnell)
- 0002771: [Story Editor / Text Frames] Cursor position is not retained on window switch (malex)
- 0002801: [Win32] Fix a bug where fonts located in subdirectories would not be loaded (cbradney)
- 0002352: [User Interface] startup dialog: reach tabs by shortcuts (idea: alt+1, alt+2, alt+3) (cbradney)
- 0002273: [Internal] Load correctly document located at drive root (win32) (cbradney)
- 0002082: [User Interface] add/remove image effects from the "in use" list by double-clicking the items (cbradney)
- 0001246: [Picture Frames] doubleclick on image to move it works only after doubleclick, leave frame,doubleclick again (cbradney)
- 0002746: [Usability] PDF Export: Image compression settings could be clearer (ringerc)
- 0002655: [Fonts] Startup font scan is very slow (fschmid)
- 0002780: [Printing] Print range ìnput field has no focus (cbradney)
- 0002219: [Internal] On Win32, add the ability to locate special directories and sytem fonts folder (ringerc)
- 0002714: [Fonts] Embedding TrueType Fonts into PDF sometimes fails (fschmid)
- 0002723: [Import / Export] Transparency in Gradients is lost in PDF export - regression from 1.2.4cvs (fschmid)
- 0002772: [Import / Export] PDF export of raster images is broken (fschmid)
- 0002690: [Import / Export] User requested compression choice not respected when exporting .jpg files into PDF (fschmid)
- 0002719: [Import / Export] When importing an eps its size is set to 1 pt (fschmid)
- 0002728: [Internal] Fix bad encoding handling in FileLoader, ScribusXML's .sla loading (ringerc)
- 0002665: [Plug-ins] short words: buttons are activated after mouse_click (subik)
- 0002721: [Plug-ins] Russian in Short Words (plinnell)
- 0002666: [Plug-ins] Color names are not translated if i merge colors from the color wheel plugin (subik)
- 0002787: [Internal] Memory leak in colour pixmap caches (cbradney)
- 0002743: [General] Problem with XYZ when changing basepoints (cbradney)
- 0002768: [User Interface] "Measurement" entry in Window Menu is higher than the other entries (cbradney)
- 0002761: [Internal] Slow moving large vector groups - profiling data (fschmid)
- 0002765: [General] copy and paste inserts page on the wrong page (fschmid)
- 0002794: [Win32] Add a scribus font directory on win32 plus some scpaths cleanup (cbradney)
- 0001742: [General] Let page numbered 1 be after document page 1 (cbradney)
- 0002778: [General] Implement section numbering (cbradney)
- 0002213: [Internal] mscv compatibility for main.cpp (jghali)
- 0002183: [Documentation] Regenerate the doxygen docs for 1.3.1 (subik)
- 0002701: [Scripter] Running Font sampler results in 1st page in right hand side of work area (subik)
- 0002742: [Usability] modifier for big steps on spin boxes (fschmid)
- 0002769: [Story Editor / Text Frames] New Style: preview is not updated if the value for character spacing is changed (fschmid)
- 0002757: [General] When I insert a pdf field into a document and use underline only, it is not editable in the pdf. (fschmid)
- 0002664: [Win32] Msvc compatibility patch (2005-10-03) (ringerc)
- 0002630: [Scripter] Constant FIRSTPAGERIGHT/FIRSTPAGELEFT works in the wrong direction (subik)
- 0002775: [General] color profile discarded or swapped (fschmid)
- 0002739: [Picture Frames] images gets "invisible" while editing shape (fschmid)
- 0002774: [PPCOSX] Silently stops at launch during ICC profiles readings (International characters) (ringerc)
- 0000315: [User Interface] Document navigation improvements
- 0002766: [User Interface] "Cut" in context menu is larger than the other entries. (cbradney)
- 0002760: [Scripter] russian localization for CalendarWizard.py (plinnell)
- 0002749: [General] Scribus crash with Signal 11 when trying to convert a page to Master Page (cbradney)
- 0002732: [Translation] Italian sample text (plinnell)
- 0002744: [User Interface] PDF Export/Printing: Add missing tooltips for advanced printing fucntions (plinnell)
- 0002748: [Shape Drawing] Rounded corners with negative value are wrong (cbradney)
- 0002743: [General] Problem with XYZ when changing basepoints (cbradney)
- 0002746: [Usability] PDF Export: Image compression settings could be clearer (ringerc)
- 0002666: [Plug-ins] Color names are not translated if i merge colors from the color wheel plugin (subik)
- 0002720: [Styles] replace paragraph style on delete (fschmid)
- 0002083: [Story Editor / Text Frames] inserting any text places the cursor in front of the inserted text although it should be after the inserted text (cbradney)
- 0002728: [Internal] Fix bad encoding handling in FileLoader, ScribusXML's .sla loading (ringerc)
- 0002183: [Documentation] Regenerate the doxygen docs for 1.3.1 (subik)
- 0002665: [Plug-ins] short words: buttons are activated after mouse_click (subik)
- 0002719: [Import / Export] When importing an eps its size is set to 1 pt (fschmid)
- 0002722: [User Interface] Too small window by default (fschmid)
- 0002723: [Import / Export] Transparency in Gradients is lost in PDF export - regression from 1.2.4cvs (fschmid)
- 0002704: [General] Can't undo Custom Tab Fill char in Prefs/Tools (fschmid)
- 0002721: [Plug-ins] Russian in Short Words (plinnell)
- 0002718: [Translation] Updated Slovak Translation (plinnell)
- 0002714: [Fonts] Embedding TrueType Fonts into PDF sometimes fails (fschmid)
- 0002702: [User Interface] Tweak linked frame markers for size and colour (cbradney)
- 0002710: [Shape Drawing] Change the keyboard modifiers for size locking. (cbradney)
- 0002698: [Win32] Crash in ScImage when loading the textbased template (fschmid)
- 0002606: [General] "Delete" key doesn't delete frames (cbradney)
- 0002710: [Shape Drawing] Change the keyboard modifiers for size locking. (cbradney)
- 0002083: [Story Editor / Text Frames] inserting any text places the cursor in front of the inserted text although it should be after the inserted text (cbradney)
- 0002698: [Win32] Crash in ScImage when loading the textbased template (fschmid)
- 0002697: [Import / Export] "collect for output" should change picture-paths to the archive output path (subik)
- 0002702: [User Interface] Tweak linked frame markers for size and colour (cbradney)
- 0002246: [Import / Export] Possibility to export PDF/X3 without infotext (fschmid)
- 0002677: [Import / Export] OO Draw Import Crashes on Import - Regression from 1.2.x (fschmid)
- 0002699: [General] running the scripter font sampler with current cvs crashes on run (cbradney)
- 0002681: [Printing] Bug in print preview (fschmid)
- 0002692: [Usability] warning dialog when closing unsaved document (cbradney)
- 0002682: [Usability] "Add Node" button looses state (fschmid)
- 0002689: [Printing] Spotcolours are converted to Processcolours when applied to Text. (fschmid)
- 0002696: [Fonts] crash when replacing missing fonts in NL1 template (fschmid)
- 0002687: [Internal] Latest font refactoring breaks code on linux but not on AVox Mac (avox)
- 0002655: [Fonts] Startup font scan is very slow (fschmid)
- 0002690: [Import / Export] User requested compression choice not respected when exporting .jpg files into PDF (fschmid)
- 0002509: [Win32] Trying to load Arial Unicode MS with font preview cause crash (Win32) (jghali)
- 0002234: [User Interface] Add a count to the copy page dialog (cbradney)
- 0002675: [Translation] Polish localization for the CalendarWizard.py script (subik)
- 0002671: [Build System] message in Xterminal (avox)
- 0002569: [Plug-ins] Short-words: punctuation is not handled (subik)
- 0002658: [Translation] Polish Translation Update for 1.3.1 (plinnell)
- 0002654: [Internal] Possible bug in slotEditCopy (avox)
- 0002653: [Translation] updated translation into Russian (cbradney)
- 0002070: [PPCOSX] Print preview does not work (avox)


Scribus - 1.3.1cvs
==================
- 0002488: [Releases] 1.3.1 release (plinnell)
- 0001522: [General] configure wrongly reports detected Python version (subik)
- 0002240: [PPCOSX] Story Editor Loses Focus When Called (avox)
- 0001666: [Printing] Registration color reduced to black (fschmid)
- 0002167: [Internal] Spot colours (fschmid)
- 0002240: [PPCOSX] Story Editor Loses Focus When Called (avox)
- 0002625: [Plug-ins] Cancelling Short Words triggers a crash (subik)
- 0002381: [Shape Drawing] zooming is not possible with ctrl & +- when doubleclicking a shape to edit it (cbradney)
- 0002422: [Internal] Attempting to change document preferences after running Font Sampler causes a crash
- 0002478: [Story Editor / Text Frames] Editing text frames deletes text (fschmid)
- 0002097: [Plug-ins] Re-write plugin API (ringerc)
- 0002318: [General] duplicating a page duplicates it on top of every page (fschmid)
- 0002643: [General] "Display Unprintable Area in Margin Colour": Colour isn't drawn correctly (fschmid)
- 0002636: [General] When leaving the "link text frames" tool, the text chains are not hidden even when "Show text chains" is disabled (fschmid)
- 0002569: [Plug-ins] Short-words: punctuation is not handled (subik)
- 0002625: [Plug-ins] Cancelling Short Words triggers a crash (subik)
- 0002639: [Plug-ins] Crash when deleting a text frame being edited (fschmid)
- 0002496: [Styles] Scribus crashes with Sig 11 after trying to import a Master Page from a different document (fschmid)
- 0001365: [Shape Drawing] Convert text on a path to outlines (fschmid)
- 0002613: [Scripter] getAllObjects() and getPageItems() appear to return all the objects/items in document instead of just ones on the current page (fschmid)
- 0002617: [Story Editor / Text Frames] Text flow around objects doesn't work as it should in one-column text frames (fschmid)
- 0002619: [User Interface] Re-order quotation marks in the "Insert" menu (cbradney)
- 0002640: [Translation] Ukrainian translation update for the upcoming 1.3.1 release (cbradney)
- 0002627: [Fonts] PDF Export has problems with opentype fonts when split across several pages (fschmid)
- 0002628: [Translation] Updated Danish Translation (plinnell)
- 0002629: [Translation] Catalan translation update (plinnell)
- 0002626: [Translation] german translation update (cbradney)
- 0002623: [Translation] Polish Translation Update for 1.3.1 (fschmid)
- 0002622: [Translation] Updated Danish Translation (plinnell)
- 0002614: [General] Units in Doc preferences are not calculating properly in inches (cbradney)
- 0002451: [Import / Export] "?" instead of cyrillic letters in pdf bookmarks (fschmid)
- 0002381: [Shape Drawing] zooming is not possible with ctrl & +- when doubleclicking a shape to edit it (cbradney)
- 0002287: [Import / Export] import a ps-file moves the ruler away (ringerc)
- 0002612: [Picture Frames] Clipping paths don't get parsed correctly (fschmid)
- 0002246: [Import / Export] Possibility to export PDF/X3 without infotext (fschmid)
- 0002502: [Win32] psimport patch (win32 compatibility) (fschmid)
- 0002321: [Win32] Add GhostScript support when gs directory contains blank spaces (win32) (fschmid)
- 0002418: [Win32] Export symbols from plugins to enable loading (win32) (ringerc)
- 0002466: [Win32] Perform ps to ps conversion using an explicit call to ghostscript (win32 compatibility) (fschmid)
- 0002446: [Win32] Patch for gettext plugins and printpreview (win32 compatibility) (fschmid)
- 0002467: [Win32] Search for pictures function does not work on win32 (cbradney)
- 0002272: [Win32] Modified Path2Relative function for win32 compatibility (fschmid)
- 0002490: [Win32] ScPaths patches (win32 compatibility) (fschmid)
- 0002410: [Win32] Export symbols from main app (for win32 compat) (ringerc)
- 0002442: [Win32] Patches for ps and pdf export (win32 compatibility) (fschmid)
- 0002611: [Win32] Msvc compatibility patch (2005-09-24) (fschmid)
- 0002428: [Picture Frames] EPS not transparent in PDF (fschmid)
- 0002360: [User Interface] style - tabulators: the scroll buttons for the ruler don't work (fschmid)
- 0002574: [General] When a master page is duplicated, in the saved doc, the duplicated items are on the source master page, not on the duplicata (fschmid)
- 0002230: [User Interface] Report gs version being used in about dialog (ringerc)
- 0002577: [General] Scribus forgets the Input profiles I have set on the next reload (fschmid)
- 0002434: [General] Page copy doesn't work properly when inserting before (fschmid)
- 0002393: [Story Editor / Text Frames] error message when linking in status bar (subik)
- 0002602: [Story Editor / Text Frames] Text selection in the story editor is mighty slow (fschmid)
- 0002607: [User Interface] Inconsistancy in doc settings and preferences (fschmid)
- 0002604: [Translation] Class 'MyPluginImpl' lacks Q_OBJECT macro (cbradney)
- 0002593: [Translation] Polish Translation Update for 1.3.1 (plinnell)
- 0001929: [Import / Export] exporting selection to eps clips content (fschmid)
- 0002399: [Shape Drawing] Ctrl + drag resizing is broken (fschmid)
- 0002602: [Story Editor / Text Frames] Text selection in the story editor is mighty slow (fschmid)
- 0002287: [Import / Export] import a ps-file moves the ruler away (ringerc)
- 0002607: [User Interface] Inconsistancy in doc settings and preferences (fschmid)
- 0002246: [Import / Export] Possibility to export PDF/X3 without infotext (fschmid)
- 0002610: [Translation] Catalan translation update (plinnell)
- 0002604: [Translation] Class 'MyPluginImpl' lacks Q_OBJECT macro (cbradney)
- 0002570: [Story Editor / Text Frames] Special characters, when copied to search/replace dialog, are replaced by their raw display character (fschmid)
- 0002417: [User Interface] Add a moving tool tip to the scrollbar to show the active page when scrolling (fschmid)
- 0002571: [User Interface] copy page with tables not goods (fschmid)
- 0002541: [Import / Export] PS/EPS importer crashes when used from File->Open (fschmid)
- 0002553: [Build System] Make fails (ringerc)
- 0002431: [General] Default layout for double sided documents (subik)
- 0002594: [General] Signal 11 when (cbradney)
- 0002536: [General] Add a dialog to the colour wheel dialog to enter "start" colour (subik)
- 0002598: [Translation] updated slovenian translation (cbradney)
- 0002595: [Translation] Galician Translation Update (plinnell)
- 0002451: [Import / Export] "?" instead of cyrillic letters in pdf bookmarks (fschmid)
- 0002567: [Picture Frames] Adjust Frame To Image is not independent of the canvas preview resolution (fschmid)
- 0002322: [Internal] Rename CMYKColor to ScColor (fschmid)
- 0002579: [Plug-ins] Polygon creation bug in EPS/PS importer after code clean (cbradney)
- 0001176: [General] Calendar Helper (subik)
- 0002517: [User Interface] menu entry for the story editor is heigher than any other menu entry (fschmid)
- 0002562: [General] Easy move of image inside the frame with key - mouse combination (fschmid)
- 0002592: [Translation] Missing strings in 1.3.1cvs TS file (cbradney)
- 0002588: [Translation] Missing strings in TS file after update (cbradney)
- 0002434: [General] Page copy doesn't work properly when inserting before (fschmid)
- 0002393: [Story Editor / Text Frames] error message when linking in status bar (subik)
- 0002561: [Printing] Crash when trying to Print Preview Font Sampler Output (fschmid)
- 0002577: [General] Scribus forgets the Input profiles I have set on the next reload (fschmid)
- 0002574: [General] When a master page is duplicated, in the saved doc, the duplicated items are on the source master page, not on the duplicata (fschmid)
- 0002439: [User Interface] Recently run scripts are not remembered in the menu. (ringerc)
- 0001666: [Printing] Registration color reduced to black (fschmid)
- 0002110: [General] margins should be rotated as well
- 0002406: [User Interface] Deleting Layer #1 causes Signal 11 crash (cbradney)
- 0002498: [Story Editor / Text Frames] Dialog is not closing (cbradney)
- 0001930: [Import / Export] Export produces broken PDF or EPS (fschmid)
- 0002496: [Styles] Scribus crashes with Sig 11 after trying to import a Master Page from a different document (fschmid)
- 0002410: [Internal] Export symbols from main app (for win32 compat) (ringerc)
- 0001961: [Internal] Limit symbol visibility in plug-ins for efficiency (ringerc)
- 0002212: [Internal] Check for preferences writing errors and warn user. (ringerc)
- 0002097: [Plug-ins] Re-write plugin API (ringerc)
- 0002314: [User Interface] clicking on the layer handler on the bottom of scribus twice should fold the drop down menu again (fschmid)
- 0002216: [Internal] 1.3's Import Pages doesnt know about 1.3 documents (fschmid)
- 0002315: [General] copying a page doesn't copy the orientation (fschmid)
- 0002395: [Internal] Portability: Casting between pointer and int (fschmid)
- 0001445: [General] enable optional building with cairo (fschmid)
- 0002502: [Internal] psimport patch (win32 compatibility) (fschmid)
- 0002440: [General] Scribus crashes when updating the TOC (cbradney)
- 0001039: [Story Editor / Text Frames] converting multiple text frames to outlines (cbradney)
- 0002312: [Printing] add "ignore" button the prepress checker when activating the print preview (fschmid)
- 0002521: [Printing] Add 'Print' and 'Cancel' to print preview dialog (fschmid)
- 0002442: [Internal] Patches for ps and pdf export (win32 compatibility) (fschmid)
- 0002515: [Internal] Msvc compatibility patch (2005-08-31) (fschmid)
- 0002519: [Internal] Incorrect Reading of prefs triggers pop-up on launch (ringerc)
- 0001894: [General] no conversion CMYK -> CMYK for image unless image contains embedded profile (fschmid)
- 0002529: [General] Doc Checker Preferences not properly saved (fschmid)
- 0002523: [General] Convert page to master page (fschmid)
- 0002522: [Printing] Add a zoom in/out function to print preview (subik)
- 0002360: [User Interface] style - tabulators: the scroll buttons for the ruler don't work (fschmid)
- 0002497: [General] Crash when applying a text frame (fschmid)
- 0002491: [General] Trying change the gui preferences in for the Qt theme, causes loop (jghali)
- 0002079: [User Interface] show CMYK.Color values as tooltip when moving the cursor over a color in the property palette (fschmid)
- 0002490: [Internal] ScPaths patches (win32 compatibility) (fschmid)
- 0002428: [Picture Frames] EPS not transparent in PDF (fschmid)
- 0002473: [Internal] lack of Q_OBJECT macro (cbradney)
- 0002327: [Internal] Superscript % lost when opening preferences screen (cbradney)
- 0002452: [-] question marks instead of cyrillic letters in startup splash screens (ringerc)
- 0002272: [Internal] Modified Path2Relative function for win32 compatibility (fschmid)
- 0002430: [User Interface] Move items to an appropriate menu (cbradney)
- 0002467: [General] Search for pictures function does not work on win32 (cbradney)
- 0002481: [Usability] confusing names of buttons in fonts preview plug-in (subik)
- 0002482: [Translation] another update of scribus.ru.ts (plinnell)
- 0002484: [Translation] Updated Galician (1.3.0cvs) (fschmid)
- 0002466: [Internal] Perform ps to ps conversion using an explicit call to ghostscript (win32 compatibility) (fschmid)
- 0002446: [Internal] Patch for gettext plugins and printpreview (win32 compatibility) (fschmid)
- 0002372: [Internal] Fixes for platform dependent system() calls (fschmid)
- 0002254: [Internal] Enable GhostScript to be called on Windows (fschmid)
- 0002256: [Internal] When adding custom font path, path miss the last character (fschmid)
- 0002284: [Internal] Avoid lots of memory reallocation in ScImage class (fschmid)
- 0002453: [Import / Export] Option for PDF export to split files. (fschmid)
- 0002455: [General] Color Wheel Displays shifted colors when enabling CMS (fschmid)
- 0001708: [User Interface] Color Wheel (subik)
- 0002477: [Import / Export] Crash on EPS export with spot colors. (fschmid)
- 0002469: [Translation] translation update german (plinnell)
- 0002459: [General] When Gamut check and the printer's colour emulation are activated, text in 100 % K is shown in Gamut warning colour (fschmid)
- 0002167: [Internal] Spot colours (fschmid)
- 0002454: [General] CMYK Color Management prefs are not honored (fschmid)
- 0002035: [General] Color Management display is incorrect. (fschmid)
- 0002242: [Build System] Configure fails even after make -f Makefile.cvs on the source tarball (ringerc)
- 0000509: [General] Vertical ruler has problems with number placement for large pages. (fschmid)
- 0002413: [User Interface] Add Page(s) -- wrong master page applied (fschmid)
- 0002424: [Usability] Confusing "New Doc" dialog: right page or left page? (fschmid)
- 0002426: [Scripter] Typo in the Exception (fschmid)
- 0002418: [Internal] Export symbols from plugins to enable loading (win32) (ringerc)
- 0002321: [Internal] Add GhostScript support when gs directory contains blank spaces (win32) (fschmid)
- 0002261: [Internal] Platform independent implementation of getGSVersion (ringerc)
- 0002236: [Internal] Convert gtgettext.cpp to new plugin loading api (ringerc)
- 0002394: [Internal] Fix msvc compatibility problem in scribusdoc.cpp (cbradney)
- 0002365: [General] Crash when you delete a Layer (cbradney)
- 0002397: [Picture Frames] Regression: EPS with clipping path does not work anymore with 1.3.0 (fschmid)
- 0000496: [Story Editor / Text Frames] Make "LoremIpsum.txt" translatable via TS/PO (subik)
- 0002415: [Translation] German lorem ipsum to include into the cvs repository (plinnell)
- 0002370: [User Interface] make the unit selector at the bottom a combobox and sort the entries alphabetically. (fschmid)
- 0002374: [User Interface] not possible to start selection from scratch space (fschmid)
- 0002347: [Import / Export] Opening a ps file or double clicking a file with the new startup dialog just makes the file dialog disappear, nothing else (fschmid)
- 0002408: [Translation] German ts update (cbradney)
- 0002289: [Styles] edit colour creates a copy of the colour (fschmid)
- 0002300: [User Interface] visual error when creating and removing a guide line (fschmid)
- 0002346: [User Interface] layer selector always display the not active layer (fschmid)
- 0002380: [Translation] Untranslatable strings in the Object Menu (subik)
- 0002342: [Story Editor / Text Frames] Ctrl+A doesnt work in text frames. nothing becomes selected. (subik)
- 0002390: [Translation] Updated Galician (1.3) (plinnell)
- 0002351: [Usability] after starting a selection the cursor should not change even if it goes over guides (fschmid)
- 0002304: [User Interface] Location of Image Editor / Ghostscript Preference not usable on non-Linux platofrms (cbradney)
- 0002301: [User Interface] new doc dialog: dialog gets bigger when selecting facing pages (subik)
- 0002359: [User Interface] Tabulators: fill characters are not translatable (fschmid)
- 0002333: [Translation] Translation update for German (plinnell)
- 0002337: [User Interface] Manage Page Properties: create a4 landscape page. set to a3. its changed to portrait although landscape is selected. (fschmid)
- 0002334: [Usability] disable the move cursor for an object when it is locked. (fschmid)
- 0002326: [Internal] Allow GhostScript to be automatically detected on Windows (fschmid)
- 0002188: [General] Adjustable distance between pages (fschmid)
- 0002306: [User Interface] Manage Page Properties: add combobox to choose page size (fschmid)
- 0002309: [Import / Export] SVG import crashes with attached file (fschmid)
- 0002318: [General] duplicating a page duplicates it on top of every page (fschmid)
- 0002302: [User Interface] double clicking a recent document should open it (subik)
- 0002189: [General] Different Page sizes in one document (fschmid)
- 0001144: [User Interface] Allow offset rulers and/or co-ordinate space in UI (makes full bleed work easier) (fschmid)
- 0002288: [Translation] Updated nb_NO translation for 1.3.1cvs. (fschmid)
- 0002305: [Scripter] Font Sampler Script fails with current CVS (cbradney)
- 0002283: [User Interface] When reopening a document with two pages I cannot reach the second one (fschmid)
- 0000405: [General] drag rulers to measure things (fschmid)
- 0002255: [General] Insert Sample Text > Wrong language description: Hebrew, not "Jiddish" (subik)
- 0002249: [User Interface] Tab order in initial dialog (fschmid)
- 0002265: [General] Crash after adding objects to pages > 1 (fschmid)
- 0001803: [User Interface] Strings in dialog PDF-Export (fschmid)
- 0001522: [General] configure wrongly reports detected Python version (subik)






Scribus - 1.3.0cvs
==================
- 0002046: [User Interface] Scribus appears to lock up when using Manage Pictures "Search" function (ringerc)
- 0000349: [User Interface] If a file is saved under a default name under a non-English locale it does not show up in the "Recent documents" submenu. (ringerc)
- 0001075: [General] Add-Item-to-Index checkbox in properties dialog (cbradney)
- 0002214: [Internal] Platform independent implementation of PicStatus (ringerc)
- 0002175: [User Interface] "apply master page" dialog elements don't fit (fschmid)
- 0002203: [Story Editor / Text Frames] sample text generator adds the text to the existing instead of replacing it (subik)
- 0002146: [User Interface] page size limited to 352.7778 cm (cbradney)
- 0002206: [Internal] Little patches for improved msvc compatibility (cbradney)
- 0002087: [Internal] Migrate font path prefs to 1.3 prefs API (ringerc)
- 0001811: [Picture Frames] Tools - manage images: Search button does not work (ringerc)
- 0000176: [Releases] 1.3 release Metabug (fschmid)
- 0002235: [User Interface] change tab order in page -> manage margins to make it user friendly (cbradney)-
- 0001811: [Picture Frames] Tools - manage images: Search button does not work (ringerc)
- 0002224: [Import / Export] no preview available for attached document when trying to import the pdf into scribus (fschmid)
- 0002214: [Internal] Platform independent implementation of PicStatus (ringerc)
- 0002046: [User Interface] Scribus appears to lock up when using Manage Pictures "Search" function (ringerc)
- 0001722: [User Interface] create page / inserte frame / crash (fschmid)
- 0001616: [Internal] PATCH: add getters and properties for all existing setters in PageItem (cbradney)
- 0001550: [User Interface] Wrong postition of "Preferences" menu item (fschmid)
- 0002179: [Scripter] Current 1.3.0 cvs does not display sjc's scripter properly (fschmid)
- 0002178: [Story Editor / Text Frames] Shift return and return have swapped functionality (cbradney)
- 0002203: [Story Editor / Text Frames] sample text generator adds the text to the existing instead of replacing it (subik)
- 0002218: [Translation] Update Danish Translation (cbradney)
- 0001923: [User Interface] properties window doesn't remember "keep ratio" for size. (cbradney)
- 0002111: [Story Editor / Text Frames] style designation and text paragraphs not aligned (see screenshot) (fschmid)
- 0002198: [Internal] Solves a MSVC.net compiler limitation in color.h (ringerc)
- 0002197: [Internal] Msvc compiler needs full type definition before destructor call (ringerc)
- 0002206: [Internal] Little patches for improved msvc compatibility (cbradney)
- 0002211: [User Interface] Doc Checker/Preflight Verifier names should match (cbradney)
- 0002210: [Internal] Fix msvc compatiliby problem in tocgenerator.cpp (ringerc)
- 0001387: [Story Editor / Text Frames] manual linebreak (shift-return) works only in a frame, not in the story editor (fschmid)
- 0002209: [Story Editor / Text Frames] Tabs in Para Styles do not get picked up on the main page view or canvas (fschmid)
- 0000349: [User Interface] If a file is saved under a default name under a non-English locale it does not show up in the "Recent documents" submenu. (ringerc)
- 0002166: [Internal] Platform independent library loading (ringerc)
- 0002168: [Translation] Polish Translation Update for 1.3.0 (cbradney)
- 0000081: [General] Ability to change page orientation after document creation (fschmid)
- 0002156: [Scripter] Closing console doesn't change status in the menu (cbradney)
- 0002160: [Scripter] Import SVGs with Python (ringerc)
- 0002066: [User Interface] behaviour of 'lock aspect ratio' (cbradney)
- 0001923: [User Interface] properties window doesn't remember "keep ratio" for size. (cbradney)
- 0002045: [Import / Export] Crash when creating a doc from template (Tsoots)
- 0002159: [Internal] Naming conflict in scribusstructs.h (cbradney)
- 0001802: [General] Document change not recognized when just moving an object (fschmid)
- 0002153: [Translation] german translation update (cbradney)
- 0002150: [Internal] Value Names in Unit enum conflicts with declarations in windows.h (cbradney)
- 0001555: [Story Editor / Text Frames] too many modal dialogs (e.g. story editor) (cbradney)
- 0001883: [Import / Export] Problem importing templates from older version (fschmid)
- 0001957: [User Interface] Rename Page Templates to be Master Pages (cbradney)
- 0001761: [Import / Export] Implement an OASIS document format importer (Tsoots)
- 0001762: [Build System] Implement a configure check for libtiff 3.6+ (ringerc)
- 0001723: [Internal] Page sizes are innaccurate where they are predefined values (cbradney)
- 0001690: [User Interface] Alllow the loading of customised shortcut sets (cbradney)
- 0001616: [Internal] PATCH: add getters and properties for all existing setters in PageItem (cbradney)
- 0001550: [User Interface] Wrong postition of "Preferences" menu item (fschmid)
- 0001529: [User Interface] "Undo history" palette (Tsoots)
- 0001609: [Internal] [PATCH] Minor PageItem cleanups (Tsoots)
- 0001886: [User Interface] soft proofing is always applied even not checked in interface (fschmid)
- 0001582: [Import / Export] A Preflight checker for Files (fschmid)
- 0001807: [User Interface] New file dialog opens with width and height disabled even if Custom page size is selected (cbradney)
- 0001881: [User Interface] 1 bit icons are not shown on Mac (cbradney)
- 0001885: [Picture Frames] bad icc conversion on screen (fschmid)
- 0001960: [Import / Export] Some vectors not exported to PDF (fschmid)
- 0002099: [User Interface] Make Story Editor non modal (cbradney)
- 0002103: [Internal] Import of 1.2.2 and 1.3 font path prefs is currently broken (ringerc)
- 0002147: [Translation] Polish Translation Update for 1.3.0 (cbradney)
- 0002129: [Scripter] groupObjects API function and documentation are inconsistent. (ringerc)
- 0002136: [Translation] updated translation into Russian (cbradney)
- 0002130: [Story Editor / Text Frames] Linespacing to big after paragraph with huge font size. (fschmid)
- 0002131: [Shape Drawing] When a group is deleted the display isn't updated correctly. (fschmid)
- 0002129: [Scripter] groupObjects API function and documentation are inconsistent. (ringerc)
- 0002087: [Internal] Migrate font path prefs to 1.3 prefs API (ringerc)
- 0002103: [-] Import of 1.2.2 and 1.3 font path prefs is currently broken (ringerc)
- 0001792: [Import / Export] Implement PDF 1.5 support for layers (fschmid)
- 0001744: [Internal] Add in centimeters as a unit of measurment (cbradney)
- 0001722: [User Interface] create page / inserte frame / crash (fschmid)
- 0001822: [Internal] Loss of precision in some fields in setup screen, eg, baseline grid. (cbradney)
- 0001819: [Import / Export] Scribus dies with no Errormessage when loading attached 1.2.2 file (fschmid)
- 0001833: [User Interface] Implement Control +/- for zoom functions (cbradney)
- 0001781: [Story Editor / Text Frames] force regeneration of bookmarks etc. (fschmid)
- 0001484: [User Interface] Double clicking on text frames may need to be repeated many times (fschmid)
- 0001837: [User Interface] Sig11 in Outline palette (fschmid)
- 0001836: [User Interface] Crash on moving object from scratch area to work area (Tsoots)
- 0001991: [PPCOSX] Native 1.3.0 build for Aqua won't launch (avox)
- 0001684: [General] Integrate MacOSX scripts to enable it to build easier in fink (ringerc)
- 0002072: [User Interface] Font preview in paragraph style editor inherits the canvas zoom level (fschmid)
- 0002076: [Story Editor / Text Frames] Hard (non-breaking) space does not work after a dash "-". (fschmid)
- 0002047: [Scripter] Function to convert unit in another unit (mm -> pt) (ringerc)
- 0002088: [Story Editor / Text Frames] Import EPS/PS in Text mode! (cbradney)
- 0001571: [User Interface] Setting of View -> Snap to guide and Snap to grid doesn't save (fschmid)
- 0001006: [Story Editor / Text Frames] white text is not visible (fschmid)
- 0002099: [-] Make Story Editor non modal (cbradney)
- 0002036: [Import / Export] request for a frame break (fschmid)
- 0001205: [User Interface] Insert Special window UI defects (fschmid)
- 0002051: [User Interface] Show effective image DPI in Properties->Image (fschmid)
- 0001223: [Story Editor / Text Frames] Make non-printable "characters" visible (fschmid)
- 0002067: [Shape Drawing] multiple objects color settings (cbradney)
- 0001602: [User Interface] insert a color picker to pick colors from pictures etc (cbradney)
- 0001780: [Fonts] Pick a font colour from image (cbradney)
- 0001102: [User Interface] Make all functions from Right click context menu appear on Item menu (cbradney)
- 0002076: [Story Editor / Text Frames] Hard (non-breaking) space does not work after a dash "-". (fschmid)
- 0001571: [User Interface] Setting of View -> Snap to guide and Snap to grid doesn't save (fschmid)
- 0002072: [User Interface] Font preview in paragraph style editor inherits the canvas zoom level (fschmid)
- 0002051: [User Interface] Show effective image DPI in Properties->Image (fschmid)
- 0001780: [Fonts] Pick a font colour from image (cbradney)
- 0001602: [User Interface] insert a color picker to pick colors from pictures etc (cbradney)
- 0002067: [Shape Drawing] multiple objects color settings (cbradney)
- 0001142: [User Interface] RFE: Move Baseline Grid controls (cbradney)
- 0001558: [Internal] Item > Distribue/Align, should be ever present and a toolbar (cbradney)
- 0002036: [Import / Export] request for a frame break (fschmid)
- 0001730: [Shape Drawing] Distribute/Align doesn't correctly distribute space (cbradney)
- 0000262: [General] Aligning objects based on the position of the first selected object (cbradney)
- 0002043: [Story Editor / Text Frames] Hard space cannot be inserted while in Story Editor (cbradney)
- 0001689: [General] Move all measurement calculations to units.cpp/.h (cbradney)
- 0001101: [User Interface] Add in general align tools in Distribute/Align (cbradney)
- 0001223: [Story Editor / Text Frames] Make non-printable "characters" visible (fschmid)
- 0002033: [Picture Frames] double click on empty image frame should open get image dialog (fschmid)
- 0001802: [General] Document change not recognized when just moving an object (fschmid)
- 0002042: [Story Editor / Text Frames] Crash when adding new pages to document with automatic text frames (fschmid)
- 0001074: [General] Tab Leaders (fschmid)
- 0001816: [Fonts] Fonts are only recognized in 'pfa', 'pfb', 'ttf' and 'otf' files. (cbradney)
- 0002037: [Translation] Polish translation update for 1.3.0cvs (plinnell)
- 0002034: [Story Editor / Text Frames] Drop cap in first text column misaligned to second column (fschmid)
- 0002031: [Story Editor / Text Frames] Editing txt in text frame: CTRL+C copies the whole scribus document (cbradney)
- 0001651: [Internal] Rewrite menus to use actions based system (cbradney)
- 0002020: [Import / Export] Going from 1.2.x to 1.3.x does not import rotated stuff correctly (fschmid)
- 0001175: [General] Switching between GUI languages from within Scribus (cbradney)
- 0001456: [User Interface] various docs settings (subik)
- 0001175: [General] Switching between GUI languages from within Scribus (cbradney)
- 0002020: [Import / Export] Going from 1.2.x to 1.3.x does not import rotated stuff correctly (fschmid)
- 0001651: [Internal] Rewrite menus to use actions based system (cbradney)
- 0001895: [User Interface] Some pages are not editable (fschmid)
- 0001958: [Internal] 1.3 uses LittleCMS types outside #ifdef HAVE_CMS blocks (cbradney)
- 0001951: [Story Editor / Text Frames] paragraph breaking onto new page behaves like new para (fschmid)
- 0001991: [Default] Native 1.3.0 build for Aqua won't launch (avox)
- 0001998: [Story Editor / Text Frames] native Aqua Build crashes in story editor (avox)
- 0002014: [Story Editor / Text Frames] Implement baseline offset for characters. (fschmid)
- 0002013: [Story Editor / Text Frames] Implement vertical scaling for characters. (fschmid)
- 0001981: [General] Add columns and gutter in Guide manager (subik)
- 0002008: [Default] 1.3: Help browser display error after maximizing (subik)
- 0002009: [Translation] "scribus --help" output should be translatable too (cbradney)
- 0001140: [Picture Frames] Additional image properties (fschmid)
- 0001507: [Story Editor / Text Frames] Add font vertical scaling (fschmid)
- 0001311: [User Interface] feature: preview of changed paragraph style (fschmid)
- 0001042: [User Interface] show more information when importing pictures (fschmid)
- 0002001: [Translation] Updated British English translation for 1.3 (cbradney)
- 0001999: [Translation] Polish translation update for 1.3.0cvs (plinnell)
- 0001982: [Story Editor / Text Frames] Implement custom underlining styles (fschmid)
- 0001983: [Story Editor / Text Frames] Implement custom strikethru styles (fschmid)
- 0001995: [Default] Add "Underline Words" to Style->Effects (fschmid)
- 0001127: [Styles] *All caps* option in Style>Effects (fschmid)
- 0001991: [Default] Native 1.3.0 build for Aqua won't launch (avox)
- 0001621: [User Interface] inserting frames through the menus (cbradney)
- 0001631: [Import / Export] when importing an eps, there is a quite severe distortion of colors,
- 0001969: [User Interface] Automatic creation of guides (split page in 2, 3, 4...) (subik)
- 0001973: [User Interface] Guides, more improvements [PATCH] (subik)
- 0001526: [User Interface] "Guides" tab in Preferences (fschmid)
- 0001528: [User Interface] "View" tab in Preferences (fschmid)
- 0001619: [General] Create Shortcut for Story-Editor (cbradney)
- 0001953: [User Interface] Cursor positioning with mouse broken at non-100% zoom (fschmid)
- 0000663: [User Interface] Templates: Outline palette doesn't show templates (cbradney)
- 0001951: [Story Editor / Text Frames] paragraph breaking onto new page behaves like new para (fschmid)
- 0001960: [Default] Some vectors not exported to PDF (fschmid)
- 0001831: [User Interface] after selecting a tool by its shortcut and moving the cursor over an existing object resets the cursor (fschmid)
- 0001883: [Default] Problem importing templates from older version (fschmid)
- 0001888: [Import / Export] vectormask inside jpeg cannot be use (fschmid)
- 0001889: [Import / Export] Parsing Photoshop resource must be strictly controlled (fschmid)
- 0001958: [Internal] 1.3 uses LittleCMS types outside #ifdef HAVE_CMS blocks (cbradney)
- 0001895: [User Interface] Some pages are not editable (fschmid)
- 0001955: [Story Editor / Text Frames] First Automatic text frame wrongly positioned for facing pages (fschmid)
- 0001957: [Default] Rename Page Templates to be Master Pages (cbradney)
- 0000237: [Picture Frames] Enable Toggling low-res / high - res display of picture on the canvas (fschmid)
- 0001890: [Import / Export] Embedded profile in Photoshop file are not use (fschmid)
- 0001922: [Scripter] getPosition ingnored pageoffset (ringerc)
- 0001882: [Scripter] Dimensions are strange in scripter (ringerc)
- 0001543: [Scripter] calling Scripter procedures or functions won't affect Mpalette widgets (subik)
- 0001906: [Scripter] sizeObject() sets wrong size (ringerc)
- 0001740: [General] Apply color to a grayscale tiff in scribus, without altering the linked file - colorizing the image to the desired color (fschmid)
- 0001950: [Scripter] docUnitXToPageX wrong (ringerc)
- 0000651: [Documentation] Enhancements to the Help Browser (subik)
- 0001740: [General] Apply color to a grayscale tiff in scribus, without altering the linked file - colorizing the image to the desired color (fschmid)
- 0001931: [User Interface] Document not flagged as modified after template deletion (ringerc)
- 0001891: [Import / Export] vectormask from tiff file cannot be use (plinnell)
- 0001882: [Scripter] Dimensions are strange in scripter (ringerc)
- 0001922: [Scripter] getPosition ingnored pageoffset (ringerc)
- 0001691: [Picture Frames] Options for performance (eg, DPI view in image frames, currently 72) low, med, hi, 72, 144, 300 ? (fschmid)
- 0000766: [Styles] Templates don't change left/right when a page is inserted
- 0000237: [Picture Frames] Enable Toggling low-res / high - res display of picture on the canvas (fschmid)
- 0001890: [Import / Export] Embedded profile in Photoshop file are not use (fschmid)
- 0001873: [Story Editor / Text Frames] Sometimes the linking of Textframes gets garbled during save. (fschmid)
- 0001857: [General] add the Open Office color set (plinnell)
- 0001887: [Import / Export] jpeg with embedded icc profile do not use it (fschmid)
- 0001885: [Default] bad icc conversion on screen (fschmid)
- 0001886: [Default] soft proofing is always applied even not checked in interface (fschmid)
- 0001909: [Picture Frames] previews on the canvas display pixelated with CMS (fschmid)
- 0001892: [Import / Export] properties panel for image scale wrong (fschmid)
- 0001902: [Picture Frames] crash when trying to move an image within a frame (cbradney)
- 0001883: [Default] Problem importing templates from older version (fschmid)
- 0001888: [Import / Export] vectormask inside jpeg cannot be use (fschmid)
- 0001889: [Import / Export] Parsing Photoshop resource must be strictly controlled (fschmid)
- 0001434: [Story Editor / Text Frames] double-click on style should open edit-style dialog (subik)
- 0001777: [User Interface] accessing any tool by pressing *one* key shortcut (cbradney)
- 0001872: [General] Manage Guides Dialog crashes when the document unit is set to cm (fschmid)
- 0001561: [User Interface] Escape behaviour in story editor (ringerc)
- 0001877: [Import / Export] PDF export of document crashes (fschmid)
- 0001878: [Import / Export] resampling image for export results in PDF error (fschmid)
- 0001881: [Default] 1 bit icons are not shown on Mac (cbradney)
- 0001867: [Translation] Galician Translation Update. For 1.3. (subik)
- 0001901: [Internal] Stripping binaries breaks MacOS/X's plug-in loading (ringerc)
- 0001857: [General] add the Open Office color set (plinnell)
- 0001873: [Story Editor / Text Frames] Sometimes the linking of Textframes gets garbled during save. (fschmid)
- 0001848: [General] Tool for copying certain Object Properties to another Object (fschmid)
- 0001638: [User Interface] wrong sequence of menus (cbradney)
- 0001801: [Import / Export] File open leads to crash signal #11 due to out of memory (fschmid)
- 0001856: [General] Using "SaveAs" leads to an immediate crash (Tsoots)
- 0001055: [Fonts] Scribus is extremely CPU and memory hungry when processing documents with large fonts (fschmid)
- 0001729: [User Interface] Interface to access and edit the file Short Words refers to (subik)
- 0001781: [Default] force regeneration of bookmarks etc. (fschmid)
- 0001633: [General] plugins manager (subik)
- 0001863: [Import / Export] Wrong export of CMYK Images to PDF when PDF-X/3 is choosen (fschmid)
- 0001852: [User Interface] Crashing on changing color fill method (fschmid)
- 0001434: [Story Editor / Text Frames] double-click on style should open edit-style dialog (subik)
- 0001484: [Default] Double clicking on text frames may need to be repeated many times (fschmid)
- 0000766: [Styles] Templates don't change left/right when a page is inserted
- 0001844: [General] After screen size adjustment last page of the doc does not show fully. (fschmid)
- 0001845: [User Interface] X,Y position are not correct when dragging guides away from rulers (fschmid)
- 0001358: [General] Ability to apply a template to all odd (or even) pages to a range of pages in Page>Apply template (cbradney)
- 0001842: [General] Create a de-select all key (cbradney)
- 0001841: [Internal] seg fault on changing item-type (cbradney)
- 0000114: [Import / Export] Adobe PSD File Importer (fschmid)
- 0001836: [Default] Crash on moving object from scratch area to work area (Tsoots)
- 0001837: [Default] Sig11 in Outline palette (fschmid)
- 0001826: [Import / Export] Lines are exported to PDF and Postscript slightly rotated (fschmid)
- 0001828: [General] Lines are sligthly rotated when you duplicate them (fschmid)
- 0001827: [Import / Export] RGB-Colours are slightly shifted when a Page is exported to an Image (fschmid)
- 0001829: [Picture Frames] CMYK-JPG, PDF with spaces in filename and *.TIFF (not *.TIF) are imported incorrectly (fschmid)
- 0001833: [Default] Implement Control +/- for zoom functions (cbradney)
- 0001588: [Story Editor / Text Frames] wrong EOL with supscripts (fschmid)
- 0001831: [User Interface] after selecting a tool by its shortcut and moving the cursor over an existing object resets the cursor (fschmid)
- 0001603: [User Interface] pressing ctrl and having selected an object sets notsaved state, although nothing changed (fschmid)
- 0001033: [Picture Frames] TIFF not found in non-US path (fschmid)
- 0001830: [Translation] updated slovenian translation (cbradney)
- 0001777: [User Interface] accessing any tool by pressing *one* key shortcut (cbradney)
- 0000192: [Story Editor / Text Frames] Text and image frames must be able to spread across the facing pages spread (fschmid)
- 0000506: [General] Unprompted objects resizing after more objects selection (fschmid)
- 0000562: [Shape Drawing] arrow-heads for line styles (fschmid)
- 0000773: [User Interface] save doc options when scribus exits (fschmid)
- 0001390: [User Interface] Font-preview in Styleeditor (subik)
- 0000945: [Fonts] option to choose between temporar and permanent font substitution (cbradney)
- 0001758: [User Interface] page palette: is empty when starting new document (cbradney)
- 0001595: [User Interface] insert page number (cbradney)
- 0001594: [Story Editor / Text Frames] inserting a page number, by the documented cntrl + # , does not work (cbradney)
- 0001817: [Shape Drawing] Line changes angle after closing and re-opening (fschmid)
- 0001584: [Import / Export] PNG image appears in "negative" colors in PDF (fschmid)
- 0001803: [User Interface] Strings in dialog PDF-Export (fschmid)
- 0001818: [Import / Export] Image import - greyscale jpg recognised as RGB (fschmid)
- 0001820: [Import / Export] export generates much too large files (fschmid)
- 0001753: [User Interface] Set the shortcut ctrl+f to search&replace as a standard shortcut (cbradney)
- 0001821: [Import / Export] margins switched on even-paged documents (fschmid)
- 0001819: [Default] Scribus dies with no Errormessage when loading attached 1.2.2 file (fschmid)
- 0001822: [Default] Loss of precision in some fields in setup screen, eg, baseline grid. (cbradney)
- 0000826: [Picture Frames] cmyk-jpg gets blue colour engraving (fschmid)
- 0001722: [Default] create page / inserte frame / crash (fschmid)
- 0001744: [Default] Add in centimeters as a unit of measurment (cbradney)
- 0001799: [User Interface] Margins are drawn on the wrong spot when editing a template page (fschmid)
- 0001807: [Default] New file dialog opens with width and height disabled even if Custom page size is selected (cbradney)
- 0001813: [General] Can not start program without removing .scribus (.scribus/prefs13.xml) (cbradney)
- 0001800: [Translation] Galician Translation Update (cbradney)
- 0001798: [User Interface] "Arrange Pages" doesn't get updated (fschmid)
- 0001805: [User Interface] Supress of font embedding in PDF-X3 (fschmid)
- 0001797: [Internal] 3rd part plugin compilation - missing h files plus some typos (subik)
- 0001796: [General] Scribus crashes when duplicating a template-page (fschmid)
- 0001789: [Import / Export] lines in tables do not export properly when line size is less than 1.0 pt (fschmid)
- 0000006: [User Interface] Ability to show some sort of indicator to show how a textframe chain flows (fschmid)
- 0001290: [Story Editor / Text Frames] Caret invisible in new text frames (fschmid)
- 0001535: [General] annotation settings issue (fschmid)
- 0001792: [Default] Implement PDF 1.5 support for layers (fschmid)
- 0001719: [Story Editor / Text Frames] Deleting first character of text frame leaves editing mode (fschmid)
- 0001718: [Story Editor / Text Frames] Can edit first empty line of text frame (fschmid)
- 0001784: [Internal] mistyped ScratchLeft in <DOCUMENT> (ringerc)
- 0001732: [User Interface] in the rotation field of the xyz-tab after 360° comes 0° (fschmid)
- 0001732: [User Interface] in the rotation field of the xyz-tab after 360° comes 0° (fschmid)
- 0001719: [Story Editor / Text Frames] Deleting first character of text frame leaves editing mode (fschmid)
- 0001765: [Picture Frames] selectin "goto" in the picture manager crashes scribus (fschmid)
- 0001582: [Default] A Preflight checker for Files (fschmid)
- 0001766: [General] Display of right hand margin too long (fschmid)
- 0001741: [Scripter] textoverflows() not working (subik)
- 0001762: [Default] Implement a configure check for libtiff 3.6+ (ringerc)
- 0001761: [Default] Implement an OASIS document format importer (Tsoots)
- 0001744: [Default] Add in centimeters as a unit of measurment (cbradney)
- 0001733: [User Interface] Quit key should quit scribus even when a palette has focus (cbradney)
- 0001658: [Scripter] PATCH: Minor scripter fixes, initialize variable in ScrAction constructor (ringerc)
- 0001722: [Default] create page / inserte frame / crash (fschmid)
- 0001723: [Default] Page sizes are innaccurate where they are predefined values (cbradney)
- 0001690: [Default] Alllow the loading of customised shortcut sets (cbradney)
- 0000826: [Picture Frames] cmyk-jpg gets blue colour engraving (fschmid)
- 0001550: [Default] Wrong postition of "Preferences" menu item (fschmid)
- 0001637: [User Interface] new icons for navigation bar (fschmid)
- 0001655: [Internal] PATCH: remove last traces of PType (Tsoots)
- 0001654: [Internal] PATCH: check for constructor failure in tree.cpp (Tsoots)
- 0001224: [Scripter] Scripter support for checking if a text box is overflowing. (subik)
- 0001639: [Internal] PATCH: Convert PageItem::PType to a protected enumerated member (cbradney)
- 0001626: [Story Editor / Text Frames] Added Bulgarian Hyphenation Patterns (fschmid)
- 0001628: [Scripter] PATCH: Basic version of Qt property based scripter interface for pageitems (subik)
- 0001632: [Internal] PATCH: add getters and properties for all existing setters in PageItem (Round 2) (Tsoots)
- 0001563: [User Interface] Show type icons for fonts in create PDF dialog
- 0001623: [Internal] PATCH: Convert more PageItem members to protected (cbradney)
- 0001616: [Default] PATCH: add getters and properties for all existing setters in PageItem (cbradney)
- 0001609: [Default] [PATCH] Minor PageItem cleanups (Tsoots)
- 0001611: [User Interface] PATCH: fix doc checker so that action is toggled on all hide types (cbradney)
- 0001610: [Internal] PATCH: build fix for no lcms (cbradney)
- 0001599: [Picture Frames] Make Images moveable with the Cursor keys when in Edit Mode. (fschmid)
- 0001590: [Internal] [PATCH] Don't redraw the whole canvas when deselecting a single item (fschmid)
- 0001589: [Scripter] 1.3 scripter object positioning fixes (subik)
- 0001538: [Default] Textframe disappears (fschmid)
- 0001529: [Default] "Undo history" palette (Tsoots)
- 0001559: [Fonts] Warn about missing glyphs on print, export (fschmid)
- 0001548: [Default] Redesign of Preferences - Guides (fschmid)
- 0001535: [General] annotation settings issue (fschmid)
- 0001528: [User Interface] "View" tab in Preferences (fschmid)
- 0001248: [Picture Frames] delete content should reset properties too (fschmid)
- 0001340: [Default] Occasional crash when trying to move locked frames/drawings (fschmid)
- 0001390: [User Interface] Font-preview in Styleeditor (subik)
- 0001290: [Story Editor / Text Frames] Caret invisible in new text frames (fschmid)
- 0000562: [Shape Drawing] arrow-heads for line styles (fschmid)
- 0000773: [User Interface] save doc options when scribus exits (fschmid)
- 0000506: [General] Unprompted objects resizing after more objects selection (fschmid)
- 0000006: [User Interface] Ability to show some sort of indicator to show how a textframe chain flows (fschmid)
- 0000192: [Story Editor / Text Frames] Text and image frames must be able to spread across the facing pages spread (fschmid)
- 0001525: [General] Unexpectedly access to the Manage Guides dialog (fschmid)
- 0001524: [User Interface] Grey out "page number field" in Page>Insert>at End (cbradney)
- 0001437: [User Interface] Usability-improvement for Extras:Insert Special. Make it possible to select the font (fschmid)
- 0001301: [User Interface] Text frame tool is confused when clicking on existing text frames
- 0001438: [User Interface] Usability-improvement for Extras:Insert Special. Point out that you can use the RMB for the magnifier (subik)
- 0001419: [General] Clear a selection by clicking outside the page boundary... (cbradney)
- 0001366: [Internal] Remove header class interdependencies (cbradney)
- 0000964: [User Interface] make settings > preferences look like most kde apps
- 0000159: [General] scratch space, please!
- 0001323: [User Interface] 1.3.0cvs: Implement -ns/--no-splash option on startup (cbradney)
- 0001724: [Default] replaced fonts in templates to avoid non-free licenses (cbradney)
- 0001681: [Scripter] add setBookmark (subik)
- 0001706: [Translation] Short-Words - Brazilian Portuguese Update (subik)
- 0001454: [Translation] pythons strings. several issues (cbradney)
- 0001705: [Translation] Brazilian Portguese Translation Update (cbradney)
- 0001618: [User Interface] automatically add .scs to the scrapbook name (cbradney)
- 0001715: [Translation] Updated Danish Translation (plinnell)
- 0001520: [Documentation] configure refuses to compile with Qt version lower than 3.3 (plinnell)
- 0001687: [Default] 1.2.1 crashes when deleting a locked object
- 0001642: [Import / Export] Attach text to path is not accurate (fschmid)
- 0001679: [Translation] Galician Translation Update (cbradney)
- 0001672: [Scripter] setColumnGap and getPageMargin ignore Unit (ringerc)
- 0001664: [Printing] No print preview and error in postscript output (fschmid)
- 0001667: [Documentation] PATCH: Update scripter FAQ, fix escaping of coding standards (plinnell)
- 0001647: [Plug-ins] /usr/lib/scribus/plugins/scribus-short-words.rc must not be executable (subik)
- 0001583: [Translation] Brazilian Portuguese Translation Update (cbradney)
- 0001452: [Scripter] Feature request - export image in script (subik)
- 0001523: [Scripter] Script console blocks when waiting for input (subik)
- 0001644: [Scripter] PATCH: Split MenuTest out of scriptplugin.cpp and rename (cbradney)
- 0001643: [Translation] Update translation for Albanian (SQ) (cbradney)
- 0001636: [Translation] Update of russian translation (cbradney)
- 0001649: [Translation] Brazilian Portuguese hyphenation (cbradney)
- 0001612: [Scripter] PATCH: fix moveObject and moveObjectAbs for groups (subik)
- 0001614: [Default] PATCH: scale image to frame control from scripter (subik)
- 0001585: [Scripter] [PATCH] Macro manager for Scripter (cbradney)
- 0001604: [General] Crash when deleting pages (cbradney)
- 0001608: [Translation] Please include Short Words translation strings into Scribus TS files (subik)
- 0001615: [Translation] Polish translation update for 1.2.2cvs (cbradney)
- 0001597: [Plug-ins] short-words plugin doesn't build and blocks the entire build. (subik)
- 0001600: [Import / Export] Non-break spaces from OpenOffice.org should be converted into Scribus' ones (Tsoots)
- 0001596: [Picture Frames] Image movement within frame has max in mm (32.764) and in (1.2864), not in pt and p. (fschmid)
- 0001389: [Plug-ins] short words for 1.2.1(cvs) (subik)
- 0001560: [Scripter] [patch] minor scripter fixes for selection and text color (subik)
- 0001570: [Translation] Ukrainian translation update (cbradney)
- 0001521: [Documentation] Compilation aborts when using Python 2.2 (subik)
- 0001536: [Translation] updated translation into Russian (plinnell)
- 0001544: [Translation] Galician Translation Update (plinnell)
- 0001515: [Scripter] scaleImage won't work (subik)
- 0001541: [General] scribus/plugins/scriptplugin/scripts/COPYING file is not needed and is a nuisance during packaging (cbradney)
- 0001516: [Story Editor / Text Frames] Can't import text from OO.o + can't import .txt without loosing all diacritic marks (French) (cbradney)
- 0001513: [Default] Crash in help browser if doc/en help files are all deleted (cbradney)

Changes since 1.2RC1 

26.08.2004
	* bug     # 583: if I try to change the level of a group, only the level of one object is changed
	* bug     #1004: PDF Export with annotations sometimes creates errors

25.08.2004
	* bug     # 842: New file > landscape has width and height reversed.
	* bug     #1000: Layer selector does not align layer name properly

24.08.2004
	* bug     # 263: distribute items shuffles the order of the items
	* bug     # 991: layer selector doesnt reflect the order of the layers
	* bug     # 996: Changing paragraph style in story editor then exit and text frame does not redraw, then goes blank
	* bug     # 998: Story Editor adds lines after paragraphs
	* bug     # 999: PDF Elements lose names on save
	* feature # 993: New french translators
	* feature # 995: Update of russian translation

23.08.2004
	* bug     # 804: Color tab for fill/line color doesn't jump to the specific color when entering the beginning character
	* bug     # 960: Python scripting only accepts text in Latin1
	* bug     # 985: Dingbat font did not work
	* bug     # 991: layer selector doesnt reflect the order of the layers
	* bug     # 992: French translation for Scribus 1.2
	* feature # 988: Italian Translation Update for 1.2
	* feature # 989: Russian Translation Update for 1.2

22.08.2004
	* bug     # 728: "Hanging Conjunctions"
	* feature # 953: small improvement to the layer selector at the bottom
	* feature # 983: German ts-file for 1.2

21.08.2004
	* feature # 980: Finnish translation update
	* feature # 981: czech translation
	* feature # 982: scribus 1.2rc1slovene translation file

20.08.2004
	* bug     # 977: Font spacing problem
	* bug     # 978: Selecting text font size box deselects text inside the Story Editor
	* bug     # 979: Some characters need to be presented as entity references when saving as template

19.08.2004
	* bug     # 547: multi-frame text disappears from later frames

18.08.2004
	* bug     # 962: Scribus crashes when opening a document not in .sla format
	* bug     # 976: settings-->hyphenator: wrong window title in German
	* feature # 973: Ukrainian Translation Update
	* feature # 974: Czech translation for 1.2rc
	* feature # 975: Updated Polish translation

Changes since Version 1.1.7

15.08.2004
	* bug     #963: Scribus crashes after launching font substitution dialog with document templates

14.08.2004
	* feature #828: Group members should be hidden for aligning and other operations

13.08.2004
	* bug     #263: distribute items shuffles the order of the items
	* feature #966: Scribus 1.2 Slovene translation file

11.08.2004
	* bug     #957: Scribus crashes when adding new paragraph style while text is selected
	* bug     #962: Scribus crashes when opening a document not in .sla format
	* feature #965: Welsh translation of 1.2rc1

09.08.2004
	* bug     #955: When switching between multiple windows size and X,Y origin location are not updated for the selected object

08.08.2004
	* bug     #160: zoom tool should recenter
	* bug     #616: Properties/Language: Wrong language descriptions
	* bug     #784: changing zoom level jumps to various pages
	* bug     #947: Ukrainian Translation Update
	* bug     #949: Saving
	* feature #946: Danish translation for 1.2
	* feature #951: Finnish translation update

07.08.2004
	* bug     #724: No left aligned page numbers
	* bug     #925: clicking on bookmarks in bookmark window should activate the corresponding text frame
	* bug     #936: shortcuts for palettes activates only hides them again when then main window has the focus
	* bug     #940: "general" is not highlighted when calling settings > preferences
	* bug     #942: change icon style for warning icon in replace font dialog
	* bug     #943: Deleting selected text in SE makes Scribus crash
	* feature # 28: Prepare shortcut keys for menus and dialogs, and more hotkeys for actions for 1.2 release
	* feature # 77: Prepare tooltips for 1.2 release
	* feature #190: left, right, centered, ... styles
	* feature #938: German Translation Update for 1.2
	* feature #939: British English Translation Update for 1.2
	* feature #941: German ts-file for 1.2
	* feature #944: Polish translation for 1.2

06.08.2004
	* bug     #167: spacing across columns/frames
	* bug     #312: Newlines not handled properly when c/p'ing
	* bug     #602: shift+scroll doesn't work in the text size box...
	* bug     #724: No left aligned page numbers
	* feature #650: cleaning-up main.cpp
	* feature #933: Scripter crash on running sample script when no previous documents open
	* feature #934: Search/Replace enabled when multiple items are selected and they arent all text frames
	* feature #935: add option to apply a template page to all odd/even pages

04.08.2004
	* bug     #790: Update Picture From Right-Click Menu Does Not Work
	* bug     #927: layer chooser on the bottom of scribus isnt updated after adding a new layer immediately
	* bug     #930: different width of opacity and shade text fields on the property palette, colors
	* feature #767: enter shouldnt close guideline dialog
	* feature #890: changing the level of of objects with pageup / pagedown keys

03.08.2004
	* bug     #926: with disabled guidelines the guide line cursor is shown when clicking onto a ruler
	* bug     #929: alignment in story editor does not work with empty text frame for the first paragraph

02.08.2004
	* bug     #467: The *Cancel* button does not work after using the *Apply* button in Distribute/Align feature
	* bug     #658: Templates: issues with text editing in story editor
	* bug     #659: Templates > Story Editor & Properties: Confusion about styles
	* bug     #707: Endian issues with images on fink?
	* bug     #921: importing SVG does not set save flag
	* bug     #928: Ukrainian Translation Update
	* feature # 25: Add Find & Replace option to Story Editor / Text Frames
	* feature # 25: Add Find & Replace option to Story Editor / Text Frames
	* feature #138: Add Clear Contents right click option for linked text frames
	* feature #883: Way of Switching between edit and select mode
	* feature #904: integrate font preview plugin to the story editor

01.08.2004
	* bug     #450: Dialog Tools>Layers needs <ESC> binding and loose the "X" button
	* bug     #768: insert sample text
	* bug     #794: Style>Colors: Color list doesn't disappear when cursor moves away
	* bug     #858: Palettes do not hide with F10 when one is selected
	* feature #902: hyphenate in linked text frames

31.07.2004
	* bug     #527: Wrong page shown in Properties Palette when reopened
	* bug     #528: Wrong page shown in Properties Palette - COLORS - when reopened
	* bug     #919: Text from story editor duplicates when two text frames are linked...
	* feature #909: add access possibility to text styles to the story editor
	* feature #920: Updated French Translation

30.07.2004
	* bug     #905: first line typed in the story editor is invisible
	* bug     #910: text alignment does not work after the first line
	* bug     #911: selected text gets unselected after changing the alignment setting of the selected text
	* bug     #912: improve stroke/fill color style
	* bug     #913: pressing shift after changing values for kerning, size & widht reset that values
	* feature #906: french translation updated
	* feature #907: improve "update textframe"

29.07.2004
	* bug     #135: Text properties disappears when using story editor and not set by styles
	* bug     #899: ctrl+a doesnt select the whole text
	* bug     #900: selecting text alignment without any text in the editor crashes scribus
	* bug     #905: first line typed in the story editor is invisible
	* bug     #908: toolbar for stroke color not movable if stroke is disabled
	* feature #901: Polish Translation Update
	* feature #903: British English Translation Update

28.07.2004
	* bug     #135: Text properties disappears when using story editor and not set by styles
	* feature #746: Story Editor rewrite
	* feature #896: German translation update
	* feature #897: Finnish translation update

27.07.2004
	* bug     #892: resizing imported svg with rotated elements  hurts gradients
	* feature #893: Polish Translation Update
	* feature #894: Crash when hypenating Swedish Texts

26.07.2004
	* bug     #891: gradients position does not change when objects are re-sized

24.07.2004
	* feature #884: German language update
	* feature #888: Updated Danish Translation

21.07.2004
	* bug     #878: Scribus crashes repeatedly while editing frame shapes
	* bug     #879: problem with registration color
	* feature # 58: Add registration colour for colour crop, fold and registration marks
	* feature #880: Updated British English translation
	* feature #881: Polish Translation Update

18.07.2004
	* bug     #874: Tab order in Multiple Duplicate
	* bug     #875: Preset values for linescreen angles, per color
	* feature # 98: Ability to have distance of text from outside edge of text or image frame
	* feature # 98: Ability to have distance of text from outside edge of text or image frame
	* feature #871: Corrupted PDF export issue

17.07.2004
	* bug     #860: Lots of crash saying that is due to signal 11

16.07.2004
	* bug     #860: Lots of crash saying that is due to signal 11
	* bug     #868: Editing shapes of frames needs lock/unlock actions
	* feature #848: Baseline Grid Behaviour
	* feature #855: Setting Linescreen in PDF export
	* feature #864: Ukrainian Translation Update

15.07.2004
	* bug     #863: Issue with background gradients overwriting images

14.07.2004
	* bug     #399: unable to copy from Properties/Geometry if object is locked
	* bug     #861: Cut / Copy / Paste broken on Paste

13.07.2004
	* bug     #756: Scribus does not honor settings for custom page sizes
	* bug     #850: moving grouped vector elements imported from large-scale eps
	* bug     #859: New File with Custom Page Size and mm, page size gets smaller when switching portrait and landscape
	* feature #848: Baseline Grid Behaviour
	* feature #856: Translation update for German
	* feature #857: Polish Translation Update

11.07.2004
	* bug     #852: import SVG, export PDF, import SVG again => crash
	* feature #844: selecting importet eps text very slow and not nice

08.07.2004
	* bug     #849: Scribus mailing list seems seems to be down
	* bug     #851: SVG import does not support paths properly

04.07.2004
	* bug     #844: selecting importet eps text very slow and not nice
	* feature #578: one-click/keyboard for toggling off and on all dialogboxes+guides etc
	* feature #845: Export Selection only to EPS

03.07.2004
	* feature #789: Calculating error
	* feature #841: Implement the primary Dublin Core Metadata Element Set for RDF Implementation

01.07.2004
	* feature #678: check buttons instead of lock/unlock and hide/show
	* feature #785: Add option to export PDFs with custom page numbers
	* feature #838: german update
	* feature #839: Updated Czech Translation

29.06.2004
	* feature #678: check buttons instead of lock/unlock and hide/show
	* feature #744: importing a range of pages into another
	* feature #834: slovenian update

28.06.2004
	* feature #  3: Ability to create pages when importing pages from other documents

27.06.2004
	* bug     #832: Scribus RC1cvs crashes (SIG #11) while opening a document

24.06.2004
	* bug     #829: when emergency save it called - font tags are stripped from the top of file
	* feature #831: Updated Brazilian Translation

23.06.2004
	* bug     #823: When dragging to and from the Scrapbook, unneeded styles are copied
	* bug     #824: Modifying a paragraph style does not affect all text previously formatted with that style.

22.06.2004
	* bug     #568: Copying items creates copies of paragraph styles
	* bug     #821: Detaching a text from a path doesn't keep the rotation for the path.
	* bug     #822: Gradients in PDF rendered in the wrong direction

21.06.2004
	* bug     #817: Ukrainian Translation Update
	* bug     #818: Attaching text from a path resets the rotation (if any) of a rotated path
	* bug     #820: Don't display the & Characters for Shortcuts in the Splash Screen

20.06.2004
	* bug     #343: Ctrl+H shouldn't delete characters
	* bug     #812: drop caps error with linked text frames on pdf export
	* feature #355: Allow of automatic page margin creation / snappy page margins.
	* feature #787: Complete the ps-importer for reading OpenOffice generated files
	* feature #814: Updated Danish Translation
	* feature #815: Updated Norwegian Translation

19.06.2004
	* bug     #813: Snap to Guides for moving and resizing of Groups
	* feature #799: Feature Request: Select All

18.06.2004
	* bug     #765: Paragraph indentation oops when rendering to pdf
	* bug     #781: Story Editor>Edit>Insert special... does nothing
	* bug     #807: saving doc in template mode corrupts file
	* bug     #811: indent not shown when editing styles
	* feature #795: Polish Translation Update
	* feature #800: Finnish translation update
	* feature #801: Norwegian Translation Update
	* feature #802: Italian Translation Update
	* feature #806: german translation update
	* feature #808: First Line Indent not saved from Paragraph Styles after closing and reopening the editor

15.06.2004
	* bug     #655: Window enlarge each time I select a file
	* bug     #703: guidelines interfere  selecting a group of objects
	* bug     #780: Automatic Pagenumber not placed correct on Export
	* feature #203: Snap to Grid/Guidelines too strong
	* feature #778: Updated Russian Translation

11.06.2004
	* bug     #633: Drop caps not reaching to the top, and other issues
	* bug     #655: Window enlarge each time I select a file
	* bug     #671: measurement icon
	* bug     #703: guidelines interfere  selecting a group of objects
	* feature #770: Update for the German language

10.06.2004
	* bug     #755: Collect for Output should ask confirmation
	* bug     #760: "icons" dir does not get copied by "make dist"
	* feature #761: Right-click on graphics tablet triggers drag-and-drop
	* feature #764: Enable transparent Gradients in PDF

08.06.2004
	* bug     #356: Margin Dialog not intuituve enough
	* bug     #721: add "current page" to print dialog
	* bug     #750: Placing guides in the foreground not saved on document save
	* bug     #751: Text box border magically reappears on reopening previously saved document
	* bug     #756: Scribus does not honor settings for custom page sizes
	* bug     #758: v1.1.7 (Alyssa) compile stops with an error at file scribusview.cpp
	* feature #759: Ability to create PostScript Level 2 or Level 1 only files.

06.06.2004
	* feature #745: Tracker for 1.1.7
	* feature #754: Inclusion of Tsoots "New from Template" Plugin

Changes since Version 1.1.6

04.06.2004
	* bug     #753: Guidelines couldn't be locked
	* feature #743: Slovenian Translation Update for 1.1.7
	* feature #747: Polish Translation Update for 1.1.7
	* feature #748: British English Translation Update for 1.1.7
	* feature #749: updated UK and FI translations
	* feature #752: Updated Danish Translation for 1.1.7

02.06.2004
	* bug     #739: Fonts Preview plugin entry in extras menu is not translatable
	* feature #741: german .ts update for 1.1.7
	* feature #742: Czech Translation for 1.1.7

01.06.2004
	* bug     #720: print dialog does not allow entering of page numbers
	* bug     #729: Importing SVG with gradient sometimes misses the colors
	* bug     #733: Choosing and unchoosing Fill buton makes color dialog smaller
	* bug     #735: move  "save document" up
	* bug     #737: When dragging the two endpoints of a gradient in the new editor you can only drag left to 1% and right to 99%
	* feature #732: updated translation files for slovenian language
	* feature #734: Update for the German language
	* feature #738: Finnish translation update

29.05.2004
	* bug     #707: Endian issues with images on fink?
	* bug     #715: When using Free Linear Gradient, importing an SVG can change the gradient
	* bug     #720: print dialog does not allow entering of page numbers
	* feature #662: Missing option to save Scribus file
	* feature #718: german translation update
	* feature #727: Add ability for Removing Recently Used Docs
	* feature #731: Ability to have Gradients with more than 2 Colors

26.05.2004
	* bug     #713: "Line Style" to "Type of Line"
	* feature #688: improve the zoom-icon function
	* feature #714: Added new type of Gradient "Free linear Gradient"

24.05.2004
	* bug     #623: Selecting Compress file deletes existing file name in dialog
	* bug     #647: Export as image plugin numbers images as "pagenumber - firstpagenumber".
	* feature #706: Image placement in a frame if not at 0,0 in frame, changes based on zoom level
	* feature #710: Updated Czech Translation
	* feature #711: Updated Brazilian Translation
	* feature #712: Updated Welsh Translation

23.05.2004
	* bug     #394: SVG: vertical gradient imported as horizontal gradient
	* feature #688: improve the zoom-icon function
	* feature #700: German update
	* feature #704: saving doesnt add the *.sla suffix
	* feature #705: No new e-mail since May 17

22.05.2004
	* bug     #606: Pressing END causes wrong cursor jump
	* feature #680: show grouped objects as grouped in the object manager
	* feature #681: sort objects in object manager
	* feature #690: doubleclick out of the shape could end editing
	* feature #694: Updated Polish Translation

20.05.2004
	* bug     #684: open-entry in the library should be moved
	* bug     #692: New Parameter for GetAllObjects
	* feature #643: Enable EPS and PS Import as Vector Objects
	* feature #677: Remove lingering empty messages from some .ts files
	* feature #679: Update for the German language
	* feature #687: put the pdf-options in the context menu in a submenu
	* feature #693: Updated Russian Translation

19.05.2004
	* bug     #673: Borders of tools are messed up on startup
	* feature #672: integrate the font preview plugin
	* feature #675: Update for the German language
	* feature #676: British English Translation Update

17.05.2004
	* bug     #656: wrong button behaviour in new xport as bitmap dialog
	* bug     #665: Line handles do not update after moving the line
	* bug     #667: Sliders misaligned and not the same length in Edit>Color>New dialog
	* bug     #669: cannot insert a tab into text frame using scripter
	* feature #670: Update for the German language
	* feature #674: French translation update

16.05.2004
	* bug     #282: Update language detection to use LC_* variables
	* bug     #623: Selecting Compress file deletes existing file name in dialog
	* bug     #660: UI translations shouldn't influence scribus behaviour
	* bug     #664: Bug 572 reloaded
	* feature #657: update for the german language
	* feature #661: Finnish translation update

15.05.2004
	* bug     #604: Grouped items can be grouped again
	* bug     #634: Can't edit Line Style name
	* bug     #649: Minor string update
	* bug     #652: scribus.ca.qm does not get installed on "make install"
	* feature #406: save must be enabled while creating templates
	* feature #563: measurement tool
	* feature #621: Need an addition to the scripter API: variable that is set by using "-lang xx".
	* feature #653: Implement Settings menu, cleaning up Edit, Tools and Help menu

13.05.2004
	* bug     #634: Can't edit Line Style name
	* bug     #638: Rename the translation file for Basque language
	* bug     #644: Crash caused by mouse cursor crossing from linked text frame # 2 to # 1
	* bug     #645: Update scribus.no_NO.po to remove some obsolete strings that interfere with msgmerge
	* bug     #646: There are many empty tr( "" ) strings that confuse and slow down xgettext on the .pot file update
	* feature #592: Ability to export a page to a bitmap format
	* feature #640: delete any object by pressing <del>

12.05.2004
	* bug     #613: Autotools fix for Debian
	* bug     #625: Suggestion for Speed up of SVG Import
	* bug     #630: Pasting text in direct text editing.
	* bug     #634: Can't edit Line Style name
	* bug     #637: Scribus crashes after a drag with the Right Mouse Button
	* feature #631: update for german
	* feature #635: Ukrainian Translation Update
	* feature #636: Update Danish Translation

09.05.2004
	* bug     #604: Grouped items can be grouped again
	* bug     #620: Differing tab settings can cause wrapping text on top of other text
	* bug     #622: Merge of charselect* and svgexport* POs
	* bug     #624: Scribus is inserting incorrect paths into file names when saving
	* feature #609: same style for saturation and intensity of a color
	* feature #629: Improve the Tabmanager and the EditStyle Dialogs with a Ruler for setting Tabs and Indents.

08.05.2004
	* bug     #608: Change buttons for "center" and "right" alignment...
	* bug     #613: Autotools fix for Debian
	* bug     #618: Minor rearranging of right click menu items
	* feature #231: Add in ability to import Colour Sets into current document
	* feature #614: Polish translation update
	* feature #615: Icon Set Number Two
	* feature #617: Ability to set, move and delete Tabs in the Ruler
	* feature #619: Fixes for broken POs

07.05.2004
	* bug     #596: strange behaviour of tab indicator in textfields

06.05.2004
	* bug     #596: strange behaviour of tab indicator in textfields
	* feature #578: one-click/keyboard for toggling off and on all dialogboxes+guides etc
	* feature #594: French translation update
	* feature #597: Issue with ending lines of paragraphs not aligning correctly with distances and alignment
	* feature #598: update for the german language

05.05.2004
	* bug     #590: Trying to copy frames from actual page to a just made page template crashes scribus with signal 11.
	* feature #593: Added three new Hyphenation Dictionarys: Lithuanian, Swedish and Slovene

04.05.2004
	* bug     #554: table context menu - layer is missing
	* bug     #580: No translation strings for units in "File>Document Setup"
	* bug     #581: Ruler coordinates in the status bar and the units changer don't have translation strings.
	* bug     #582: Muster.cpp and newtemp.cpp both translate the text and titel strings, missing Units translations in prefs and main gui
	* bug     #588: Clicking on the canvas within the "mouse grab radius" from a guide moves the guide.
	* feature #584: Ukrainian translation update
	* feature #587: Finnish translation update
	* feature #589: British English translation update
	* feature #591: Updated Czech Translation

02.05.2004
	* bug     #471: guideline symbols are reversed
	* bug     #571: Seems impossible to actually apply any kind of tab immediately after a right tab
	* bug     #572: Layers palette still shows a "Background" layer after the last document is closed
	* bug     #573: View menu should be greyed out if no document is open
	* feature #552: Tabs could be shown in the ruler
	* feature #560: layer and level should be displayed in properties and/or status line
	* feature #574: Windows menu item should be greyed out if no documents are open

01.05.2004
	* bug     #396: PDF Export: text field at wrong position
	* bug     #554: table context menu - layer is missing
	* feature #570: Added Translation for the Basque language

30.04.2004
	* bug     #499: svg text and box import don't work correctly
	* bug     #535: Story editor: can't delete selected text with Backspace
	* bug     #540: Mixed white fonts size on bottom of splash screen
	* bug     #542: PDF-Export changes img-size on copied pages when downsampling is enabeled
	* bug     #546: Updated Russian Translation from Alexandre Prokoudine
	* bug     #549: Empty Object Name
	* bug     #557: Strange message while updating TS file
	* bug     #558: Updated some tooltips
	* feature #536: Please move "Print Preview" to "File" menu
	* feature #545: translation files for Slovene
	* feature #548: TS-Update German
	* feature #550: Unique Object Names
	* feature #551: edit colour by doubleclick
	* feature #559: Ugly icons - new icons set
	* feature #561: Translation update German

28.04.2004
	* bug     #499: svg text and box import don't work correctly
	* bug     #525: Insert page after any given page in a document causes a crash with signal 11
	* bug     #530: Sending an object to another layer does not activate the save button
	* bug     #534: Scribus closing: After cancel of 'Saving dialog', Scribus is closed, but data are lost
	* bug     #537: Improve rendering speed of images
	* feature #503: Item renaming in overview
	* feature #531: Speaking names for objects
	* feature #539: Add new Splash Screen and Icons

27.04.2004
	* feature #529: Polish TS/QM update

26.04.2004
	* bug     #476: Text is placed to the right of where Scribus thinks it is
	* bug     #526: Red squares on object's border should not exist when object size is locked

25.04.2004
	* bug     #517: Move Level RMB menu items to a submenu
	* bug     #518: Please replace sample PDF form and PHP script in the docs
	* bug     #519: Deleting multiple characters or spaces causes Sig 11
	* bug     #524: Textframes with Gradients as Background are not exported correctly
	* feature #497: Beeing able to determine the column width instead of the gutter width (at will)
	* feature #503: Item renaming in overview
	* feature #521: TS-Update German

24.04.2004
	* bug     #495: unclosed SVG paths not importing properly
	* bug     #508: Short font and color list in object properties, bad dialog
	* bug     #513: Not able delete highlighted guide
	* bug     #514: Guide manager -> Guide coordinate will be resetted to 0.00
	* feature #462: PDF export resets color tints to solids
	* feature #511: "Lock object size" in context menu
	* Fixed Bug #514, Spinbox values are reset to 0.0 in Polish Language. 
	* Fixed Bug #513, Not able to delete highlighted Guide in the Guidemanager. 
	* Fixed Bug #508, Short font and color list in object properties. 
	* Fixed Bug #495, unclosed SVG paths not importing properly 
	* Opening the same document twice is now no loner possible. 

23.04.2004
	* Fixed wrong clipping in the Postscript output with styled lines. 
	* Fixed vanishing text in flipped Textframes when zooming in. 
	* Updated the Czech and Danish Translations. 
	* Fixed Bug #511 "Lock object size" is now in context menu 
	* Fixed Bug #510 Translated units are shown as question marks in the Page>Manage guides dialog. 
	* Fixed Bug #501 screen refresh when editing tables not nice. 
	* Fixed Bug #493 Additional Patch to configure for Debian Systems. 
	* Fixed Bug #462 PDF export resets color tints to solids. 

18.04.2004
	* Fixed wrong display with flipped textframes. 
	* Added "Insert LoremIpsum" Command for Textframes to the Context Menue. 
	* Fixed display issues with Tables. 
	* Updated the Czech and Russian Translation. 

17.04.2004
	* Fixed minor error in PDF export with tables. 
	* Transparent areas in EPS-Images are handled now correct in PDF-Export. 

16.04.2004
	* Updated the German and Finnish translations. 
	* Fixed recognition of en_GB locale. 

14.04.2004
	* Updated the Polish translation 
	* The Color Names are now editable in the Color Chooser. 
	* The Cups Options panel is now resizeable. 
	* The ESC-Key closes now the Scripting Console. 

13.04.2004
	* Updated the British translation. 

12.04.2004
	* Added new command "Adjust Frame to Picture" to the context menu. 
	* Added "Insert Special" Command to the Story Editor. 
	* You can now insert any Unicode character by entering the 4-digit Hex code after 
	* pressing F12. 

11.04.2004
	* Fixed wrong placement of characters in the PDF export. 
	* Updated the Brazilian translation. 

10.04.2004
	* Panning mode is now toggled by pressing space. Worls only when not editing a textframe. 
	* Pressing Shift+Return inserts now a new line into a paragraph, does not count as a paragraph seperator. 
	* Improved behaviour of the hyphenation, you can set now the number of hyphenations allowed to follow each other. 
	* Added more Tooltips. 

09.04.2004
	* Made various adjustments to dialog buttons. 
	* Improved Panning. 

08.04.2004
	* Fixed crash when exporting texts on a path to PDF. 
	* You can scroll now with the Mouse when no Object is selected and you press CTRL and move the Mouse. 

07.04.2004
	* Applied patch for better detecting CUPS. 
	* Improved the forced aligning of Text again. 

06.04.2004
	* Improved forced aligning of text. 
	* Changed the Styles Listbox to a Combobox in the Properties Palette. 

05.04.2004
	* Updated the Ukrainian translation. 
	* Fixed Issues with Polylines on Export to PDF and Postscript. 
	* Moved the Icons to $prefix/share/scribus/icons to be FHS compliant. 

04.04.2004
	* Fixed rounding problems with the Baseline Grid. 

03.04.2004
	* Added a frame independent baseline setting for textframes 
	* Updated the Finnish Translation. 

02.04.2004
	* Flipping state of images is now preserved when updating or editing images, Bug #408 
	* Properties Palette is now updated immediately after text style change, Bug #404 
	* Textcolor is now imported too when appending Styles, Bug #402 
	* Applying "No Style" resets now all Textproperties to the default style, Bug #400 
	* You can now move Objects in 0.1 Point units when pressing CTRL and the Cursor Keys, Bug #397 
	* Colors in PDF-Textfields are now exported correctly, Bug #396 
	* Pressing Tab while editing a Text doesn't jump to the Pageselector anymore, Bug #395 
	* Pressing Shift while rotating the Mouse Whell scrolls now horizontal, Bug #388 
	* Updated several Tooltips. 

30.03.2004
	* Fixed Issue on export to PDF and Postscript with objects with zero line width 
	* Fixed Issues with locked Objects and Groups. 
	* Double clicking on a Table Cell selects this Cell now. 
	* Resizing Tableitems with the Properties Palette should work now. 
	* Updated Polish Translation. 
	* Added horizontal Scrolling with the horizontal MouseWheel if available. 
	* Fixed compilation issues. 

29.03.2004
	* Removed implicit closing of Polylines in the SVG importer. 
	* Added a "Keep aspect ratio" Button to the X-Y-Z Tab of the Properties Palette. 
	* Added the missing pageselector.h file to the install function. 

Changes since Version 1.1.5
27.03.2004	Fixed Bug #364, Kerning isn't apllied anymore for the first Character of a line.
		Enabled all resizing Handles for Groups.
		Improved zooming (Patch from Jean-Jacques Sarton)

26.03.2004	Fixed Cursor position when overwriting selections.
		Resizing lock works also for Groups now.
 
25.03.2004	Fixed Bug when dragging Objects from the Scrapbook to Template Pages.
		Improved the drawing of the ouline Box when resizing Objects.
		Some more Patches from Jean-Jacques Sarton.
		Updated the Finnish Translation.
		Fixes for the zooming.

18.03.2004	Fixes for rotated Tables and Borderlines.

14.03.2004	Added first basic Support for Tables.
		Jean-Jacques Sarton completed the Textselection with the Cursor Keys:
			Shift+Cursor Key selects Chararcters.
			Ctrl+Shift+Cursor Key selects Words.
			Ctrl+Cursor Up/Down selects Lines.
			Ctrl+Home selects Text from the Start to the Cursor Position.
			Ctrl+End selects Text from the Cursor Position to the End.
			Ctrl+Cursor Key moves to the next Word.
		Updated the Danish Translation.

13.03.2004	Added Patch from Jean-Jacques Sarton to enable Textselection with the Cursor Keys and Shift pressed.
		Fixed Crash when cutting Text (also by Jean-Jacques Sarton).
		Improved Object resizing and selecting.
		Improved Display when moving Objects.

12.03.2004	Updated the Polish Translation.
		Fixed a Typo in the Brazilian Translation.

11.03.2004	Added ToolTips for the Preferences.
		When dragging Linked Textframes between Pages with the Mouse the linkage is now keeped.
		Updated the Scripter Commands for Linked Textframes too.

10.03.2004	Enabled dragging of Objects between Pages.
		When you convert a Textframe to outlines the important properties are copied too, Bug #337.

09.03.2004	Updated the Ukrainian Translation.
		Finally fixed placement of the Icons for PDF-Buttons.
		Objects keep their Name now when they are Cut and Pasted.

08.03.2004	Fixed behaviour of the Icons of PDF-Buttons.
		Added more ToolTips.

07.04.2004	Added an Option to the Preferences to determine if the Contents of a Page
		are clipped at the Margins or not.
		Added a Folder for storing official approved Scripts.
		Added some Patches from Jean-Jacques Sarton which speed up image handling.

06.03.2004	Added Settings for the external Tools to the Preferences.
		Scribus should now be more stable when it finds a corrupt Font on startup.
		Fixed Bugs #323, #311, #209 and #80

05.03.2004	Improved the PDF-Exporter, Images are now written only once into the PDF.
		Fixed Bug #314.

04.03.2004	Updated the Ukrainian and Czech translation.

03.03.2004	Updated the Finnish Translation.

02.03.2004	Added the Option to delete all Objects on a Layer, when deleting this Layer.
		Changed the readout of the Color Values to Percent in the ColorChooser.
		Added a new Command to the Scripter.
		Updated a couple of Tooltips and added more.
		Updated the Czech Translation.

01.03.2004	Improved the SVG-Importer, Text should be now better, but still not perfect.
		Added a new Colorset: SVG-Colors.
		Updated the Finnish Translation.

29.02.2004	Added first Gimp Integration, contributed by Jean Jacques Sarton.
		Improved the PrintPreview a little more.

27.02.2004	Improved the PrintPreview, it now remembers the last used Settings.
		Added some new Commands to the Scripter.

25.02.2004	Included a Patch from Alessandro Rimoldini for the main.cpp file.
		Included a Patch from Mathy Vanvoorden for the Story Editor.
		Fixed bugs with Textframes.
		Display of Textframes should look now the same in all Magnifications.
		Updated scribus.desktop file.

24.02.2004	Fixed Bug with wrong Gradients when copying Objects.
		Moved the Documentation files to $prefix/share/scribus
		Fixed Problems with Editing Styles changing unexpectedly Textframes.
		All Fonts used in a Document are now embedded into PDF by default.

23.02.2004	Added the Option to protect an Object against resizing.
		Fixed Issues with Rounded Corners.
		Added a Context Menueitem for updating Picture frames.
		Updated the Finnish Translation.
		Changed the behaviour of Mouse Clicks:
			Ctrl+Shift+Click selects the Object beneath another.
			Shift+Click adds an Object to the Selection.
			Ctrl+Alt+Click selects a single Object out of a Group.

22.02.2004	Included Patches from Jean-Jacques Sarton.
		Fixed Bug #278
		Updated the Ukrainian Translation.
		Another addition for the Scripter from Petr Vanek.

21.02.2004	Added ability to include Softmasks into PDFs when exporting to PDF 1.4
		Fixed Bugs #279, #277, #235
		Bug #235 was fixed by Petr Vanek.

20.02.2004	Fixed Bug when scaling Groups containg lines, Bug #276

19.02.2004	Improved the PDF-Export settings, the Compression method for
	Images can now be set. Zip and JPEG Compression is available.

18.02.2004	Improved the PDF-Export, Images are now written as jpg into the PDF.
	Fixed a problem with freetype > 2.1.4

17.02.2004	Updated the Danish and Welsh Translation.
	Added a new Command to the Scripter, contributed by Petr Vanek.

15.02.2004	Fixed some mismatches in the German Translation.
	Updated the Czech Translation.
	Fixed Bug #268
	Fixed Problem with changing Fontsizes in Textframes with no Styles when editing Styles.
	Fixed Bug #223

Changes since Version 1.1.4
13.02.2004	Fixed Crash when editing Linestyles.
		Found last missing Strings for Translations.

12.02.2004	Updated the Finnish and the German Translation.

11.02.2004	Updated the Ukrainian Translation.

10.02.2004	Updated the CzechTranslation.
		Added a CMYK Preview to the Print Preview.

09.02.2004	Updated Danish Translation.
		Fixed Transparency Issues with Tiff Images.

08.02.2004	Fixed Problems with Images having an Alpha Channel.
		Added an Option to remove unused Colors.

05.02.2004	Added two new Color Sets, a Greyscale one, and a Gnome Colors Set.
		Added a new Splash Screen and Icons.
 
02.02.2004	Added Irish Hyphenation Patterns.
		Updated the Polish Translation.
		Groups can now freely scaled with the Mouse.
		Pressing the Control-Key while scaling Objects and Groups
		keeps now the Aspect Ratio.
		Selecting Objects below others works now with Shift+Control Click.

01.02.2004	The Rulers are now following the Magnification.
		Added a Scribus.pro file for use with lupdate for creating Translations.

31.01.2004	Added a new Guide Manager from Allessandro Rimoldini.
		More speedups for the Scripter.

30.01.2004	Fixed Problems with accented Filenames.
		Fixed some more translation Problems.

29.01.2004	Added a Progress Bar for the PDF-Export too.

28.01.2004	Line Styles and Paragraph Styles are now listed in alphapetical Order.
		The Style Menue is now disabled instead of being empty when no Object is selected.

26.01.2004	Added a Finnish Hyphenation.

25.01.2004	Added Font Effects and Colors to the Paragraph Styles.
		Applied Craig's patches for better Precision.

24.01.2004	Since there is a bad Bug in the Font embedding Functions all
		TrueType Fonts are now subsetted.

22.01.2004	Updated Python Scripts from Henning Schröder.

21.01.2004	Added the possiblity to search and replace Font Effects.

20.01.2004	First Version of the "Search/Replace" Dialog working.

17.01.2004	Added "Save to File" and "Load from File" Commands to the Story Editor.
		The Clipboard no longer discards Textattributes.
		Its no longer possible to attach linked Textframes to a Path.
		Added new Command "Detach Text from Path".

15.01.2004	Updated the Russian Translation.
		The Page Selector on the Bottom of the Window is now a Spinbox.

14.01.2004	Removed Hardcoded Paths from the Source.

13.01.2004	Fixed Cursor Placement Issues.

12.01.2004	Fixed Bug with Sub/Superscript.
		Fixed Crash when copying Pages.

11.01.2004	Added Drop Caps to the Paragraph Styles.
		Applied Ted Powells Layers Patch.

10.01.2004	Added Named Color Sets.

09.01.2004	Fixed a problem when deleting a Layer.
		Fixed memory leak in the Postscript Export.

08.01.2004	Replaced the Color Submenue in the Style Menue with a ComboBox.

07.01.2004	Added the missing centered Tabulator.
		Added the Colors of the XFree RGB Color Database as alternative Default Colors.
		Added a Button to restore the Default Colors to the Color Editor.

06.01.2004	The Tab-Key switches now between Docs when not in Edit-Mode.
		Improved the MSpinBox API.

05.01.2004	Fixed Bug with multicolumn Textframes.
		Started Code Documentation.

04.01.2004	Added a Freehand Drawing Tool.
		Enabled Rotation of Groups with the Mouse.

03.01.2004	Fixed Cursor placement Issues with Tabulators.
		Fixed Text editing Issues with linked Textframes.

01.01.2004	Added Right, Full Stop and Comma Tabulators.
		Default Tabs are now every 36 pts == 1.27 mm == 0.5 in.
		Added a Dialog to manage the Tabulator Settings.
		Textstyles have now also a Tabulator Property.

31.12.2003	Fixed Rounding Errors in the Properties Palette.
		Added Settings for Number of Columns and the ColumnGap to the Preferences.
		First Support for Tabs, currently there is a Tab set every 100 pts in a Textframe.

29.12.2003	Fixed Crash when closing Docs.

28.12.2003	Text flows now around both Sides of Objects.
		You can use now Units like pt or mm in Floating Point Spinboxes where applicable.
		Added some new Commands to the Scripter:
			- MessageBox
			- StatusMessage
			- GetColums
			- GetColumnGap
			- SetColums
			- SetColumnGap

27.12.2003	All Floating Point Spinboxes can now evaluate Expressions like
		(1 + 3) * 5, there is now a full calculator available. (Code borrowed from QCad)

26.12.2003	Fixed Issues with rotated Text when converting to Outlines.
		Fixed Issues with rotated Object when joining Polygons.
		Fixed column width not being equal for all columns on Textframes.

25.12.2003	Added a Gap Setting for multi-column Textframes.

23.12.2003	Textframes can have now more than 1 Column.
		Added an Clear Contents Entry to the Context Menu.

22.12.2003	Improved the Geometry Settings in the Properties Palette for Groups.

21.12.2003	Added a right Click Context Menu for Pages too.
		Improved the Node Palette.
		You can set now the Base Point for Object resizing and moving
		in the Properties Palette the same way as for the Rotation.

Changes since Version 1.1.3
18.12.2003	Groups can now rotated with the Properties Palette.

17.12.2003	Updated the German and Russian Translation.

16.12.2003	Added new Brazilian Translation.
			Updated the Russian Translation.

15.12.2003	Added infomation about Pictures to the Info Entry in the context Menue.

14.12.2003	Added an Info Entry to the right mouse click context Menue.
		Fixed redraw Issues.
		Fixed Grid drawing Issues when the Zoom Factor is != 100 %.

12.12.2003	Added a Toolbar Button for the Story Editor.
		Added a Statusbar to the Story Editor.

10.12.2003	Fixed Preferences Issues.
		Combined the Toolbar Buttons for Rectangles and Circles into one Button
		containing all Autoforms.

09.12.2003	Added some new Shapes to the Autoforms Menue.
		Fixed the disabled Keyboard Bug.

07.12.2003	Added various Shapes to the Shape Tab in the Properties Palette.
		Fixed misbehaviour with some corrupted Docs.

06.12.2003	Added Convert to Outlines to right mouse click context Menue.
		The resolution setting is now used for all Pictures if they provide one.

05.12.2003	Fixed incorrect hyphens in the PDF-Export with Russian Text.

04.12.2003	Fixed Crash with SVG-Import.

03.12.2003	Updated the Danish Traslation.
		Added a Crash Handler.

01.12.2003	Fixed crash when holding down a key whilst editing a Textframe.
		Improved import of Template Pages, Line Styles and Styles.
		Fixed PDF-Export Issues.

30.11.2003	Template Pages and Line Styles can now imported too.

29.11.2003	Added Button for importing Styles for other Documents to the Style Editor.
		You can now switch Blackpoint Compensation on or off in the CMS Preferences.

Changes since Version 1.1.2
28.11.2003	Fixed Bug that prevented proper recognition of User Defined ICC-Profile Directorys.

27.11.2003	Fixed Bug that caused Scribus to hang when importing the same Page twice.

26.11.2003	Fixed Crash when loading Documents.

24.11.2003	Fixed duplication of Styles when importing Pages or Objects.

23.11.2003	Added a "Revert to Saved" Option to the File Menu.

22.11.2003	Added Group/Ungroup Items to Right Mouse Click Context Menu.
		The Fontsize is now a float, you can have now Fontsize like 12.3 pt
		Managed Guides is now available for Template Pages too.
		
21.11.2003	The Linewith of a Textframe is now honoured in the Distances of the
		Text to the Frameborders when the Borderline is visible.

20.11.2003	Fixed Bug in the PDF and Postscript Export with linked Frames.
		Increased the maximum Linewidth to 36 pts.
		Fixed Segfault when deleting more than one Page at once.

19.11.2003	Fixed Bug in the Story Editor with linked Textframes.
		You can now edit Texts on a Path with the Story Editor too.

15.11.2003	Added first version of the Story Editor.

12.11.2003	Fixed Bug with TIFF-Images.

10.11.2003	Added Web-Links to the PDF-Export.
		Fixed compilation issues with Python 2.3

09.11.2003	Fixed compilation issues with the Scripter-Plugin.
		Fixed wrong colors for Gradients in PDF.

08.11.2003	You can now insert Pictures by simply dragging them to a Page.
		Added an absolute coordinate Mode to the Node-Palette.

06.11.2003	Added a --without-python option to ./configure for
		those who don't have a use for the Scripter-Plugin.

05.11.2003	Improved the Preview in the charselect plugin.

04.11.2003	When you resize a Textframe with the Mouse and press
		CTRL+SHIFT the Text is scaled accordingly.

02.11.2003	Reenabled the Fontpreview in the Preferences.
		
Changes since Version 1.1.1
28.10.2003	The Contents of the Outline Palette doesn't collapse anymore
		when you are editing Objects or adding or removing Pages.

26.10.2003	Added patch for acinclude.m4 to recognize Python 2.3
		Fixed issue with certain Hebrew fonts.

25.10.2003	Scribus can now handle Filenames with Spaces correctly.
		Included Patch for BigEndian Systems.

23.10.2003	Using Symlinks for Fonts works now.
		Fixed missing Lines around Textbox in PDF-Output.

21.10.2003	Included the new Icons contributed by Sven Powalla.

20.10.2003	Included the Scripter Plugin into the main Package.
		Fixed the ./configure script that libtiff is recognized
		on a stock RH9 installation.

17.10.2003	The AutoSave Option is now working again.

11.10.2003	Fixed Bug when converting Text to Outlines.

05.10.2003	Improved History in the Helpbrowser.

Changes since Version 1.1.0
03.10.2003	Improved rendering of linked Textframes.
		Added a new .pot file for Scribus-1.1.1

02.10.2003	Removed some small Bugs reported after reopening the CVS 
		to the public.

30.09.2003	Every Textbox can have now it's own Language for
		Hyphenation.

29.09.2003	Added a Catalan Hyphenation Dictionary.

28.09.2003	Subsetting Fonts and OpenType Fonts works now in PDF and Postscript.
		Updated the CharSelect Plugin.
		Added a User defineable Directory for ICC-Profiles in the Preferences.

27.09.2003	Replaced the LineEdit for the Zoom-Factor in the lower left Corner of
		the Working Window by a SpinBox.
		Updated the Welsh Translation.

21.09.2003	Removed the "Modify Object" Dialog since all of it's functionality
		in now in the former "Measurement" Palette, which is now called
		"Properties" Palette.

19.09.2003	Scaling Glyphs in the X-Direction works now in PS and PDF.

18.09.2003	Now you can scale Glyphs in the X-Direction.

16.09.2003	Improved Redraw of linked Textframes.
		The PS-Exporter does now support Text with Fill & Stroke.
		Removed all Font Encoding Stuff from the PS-Exporter, all
		Text Rendering is now done with "glyphshow".

15.09.2003	Text with Fill & Stroke can now exported to PDF and SVG.
		Fixed Crash when deleting Pages containing linked Textframes.
		Fixed Crash after Drag-Copying Elements.

14.09.2003	Added the possibility to set the fill and stroke of Glyphs.

Changes since Version 1.0.1
06.09.2003	Unterlining doesn't cut the decents of the Glyphs anymore.

04.09.2003	Added new Type Style Outlined.

02.09.2003	Fixed Segfault when cutting Text when there is no Text.

31.08.2003	Added a Zoom for Characters, if you click the Right Mouse Button
		over a Character a Zoom Window pops up.
		Added the possibility to have different Transparencys for Strokes
		and Fills.

22.08.2003	Made first Steps to replace the old rendering Engine
		with libart.

13.08.2003	Added Greek Hyphenation. 

12.08.2003	Changed behaviour of the Save-Button in the Toolbar.

11.08.2003	Added an SVG-Import Plugin.

10.08.2003	Added PDF-Keywords.
		Enabled the Black Point Compensation in the Color-
		Management when lcms-1.11 is used.
		
09.08.2003	Added a History Function to the Help Viewer.

08.08.2003	Templates are now reapplied to the Pages when 
		they where changed.
		Templates can now applied to more than one Page.
		
Changes since Version 1.0
07.08.2003	Added Indonesian Translation.

25.07.2003	Fixed Bug with the Picture Preview.
		Added Dutch, Ukrainian and Portuguese Hyphenation.

18.07.2003	Fixed Bug which caused Pictures to disappear when the actual
		Application Directory isn't the users Home Directory.

Changes since Version 0.9.11.1
21.06.2003	Fixed the Radial Gradients in the SVG-Export.
		Fixed Bug with rounded Rectangles.

20.06.2003	Limited the Values for the Margins to fit the Page.

19.06.2003	Disabled Color "None" for Gradients.

18.06.2003	Implemented a new Fontselection Dialog.

Changes since Version 0.9.10
13.06.2003	Moved the Preview generation to a seperate Class.
		Updated Polish translation.

11.06.2003	Improved and updated the Creation of the Previews

10.06.2003	Added Support for Named Linestyles, allowing to have
		Paths stroked with multiple Lines.

07.06.2003	Improved Image Support for SVG, Images are now saved as PNG-Images in the
		same Folder as the SVG File.
		Added New Plugin for Print Preview, needs Ghostscript to work.

01.06.2003	Moved the SVG-Export Plugin to the Main Package
		and added Support for Gradients and combined Polygons.

30.05.2003	Added Support for Links to external PDF-Documents.
		Added Encoding Support for writing Textfiles.

27.05.2003	Added a Splash Screen.
		Updated Danish Translation.

25.05.2003	The first Page of a PDF can now placed like a EPS-File.
		The Postscript-Exporter embeds now only really used Fonts.

24.05.2003	Improved the Clipboard once more, works now with Nedit, OpenOffice
		and Mozilla too.
		Improved importing of Text, you can now choose an Encoding in
		the Fileselect Dialog.

22.05.2003	Added shearing of Polygons.
		Included Patches for HP-UX contributed by Martin Gansser.

19.05.2003	Added Norwegian Translation contributed by Johannes Wilm.

Changes since Version 0.9.9
16.05.2003	Added the possiblity to adjust the Display for true WYSIWYG.
		e.g 1 Inch displayed on the Rulers is now really an Inch on the
		Screen.

14.05.2003	Picture Frames can now have a Borderline too.

11.05.2003	Added Support for Automatic Kerning Values from .afm Files.
		
09.05.2003	Added Color Model "Websave RGB".
		Solved the Problem that the last Hyphen in linked Textframes wasn't printed.
		Fixed crash with PDF-Previes enabled.

06.05.2003	Added a Command to split combined Polygons.

05.05.2003	When you edit a Path, you can select now more than one Point for moving,
		either by pressing the Shift Key or using the selection Rectangle.
		Fonts are now scanned for their Chararcter width only when they are used.
		(Avoids building big Tables for never used Fonts)

04.05.2003	Extended the Node-Palette.
		The PDF-Exporter now embeds only really used Fonts.

03.05.2003	Added new Command "Convert Text to Polygons"

27.04.2003	Implemented Subpaths for Polygons.
		Removed various Copy and Paste Errors.

26.04.2003	Improved Textrendering for Zoomfactors > 100 %

Changes since Version 0.9.8
18.04.2003	Added a Build-ID to the About Box for easier finding out which Librarys are used when
		Scribus was compiled.

17.04.2003	There is now an Option in the Print Dialog to apply ICC-Profiles before printing.

16.04.2003	Extended the PDF-Exporter to use Unicode too.

12.04.2003	Implemented Reverse Writing Mode for Textboxes.

11.04.2003	Character Widths are now also calculated with Freetype.
		The "Insert Special" now uses Freetype for displaying the Characaters.

08.04.2003	Scribus uses now Freetype2 (if available) to do the embedding of TTF-Fonts
		into Postscript, this allows the use of Unicode in the Postscript Output.

05.04.2003	Added a Dialog to choose the Page when importing Pages from other Documents
		Apply Template doesn't duplicate Guidelines anymore.

03.04.2003	Added Import of Pages from other Documents.

29.03.2003	Improved the zooming with the Mouse Wheel by enableing it when you press the Mouse Wheel.

28.03.2003	Added an Autosave Option.

27.03.2003	Added Hungarian Hyphenation.
		The Scrapbook is now saved everytime you drop an Item on it.
		
Changes since Version 0.9.7
25.03.2003	You can now zoom In and Out withe the Mouse Wheel when you hold the Shift-Key
		whilst rotating the Wheel.

23.03.2003	The Postscript Driver can now seperate RGB-Images too. The only thing that
		doesn't work are Gradient Fills of Objects on Template Pages.
		
22.03.2003	The PDF-Exporter converts now RGB-Images to CMYK when Destination Printer is
		selected.
		
17.03.2003	Added support for the Clipboard. (works with KDE and QT Applications)

14.03.2003	Added the ability to print Pages mirrored.

10.03.2003	Guides can now be locked.

01.03.2003	Again redesigned the Measurement Palette to reduce their Size.

26.02.2003	Fixed Bug with the Docking Palettes.

24.02.2003	Added a Workaround for the Qt-3.1.1 setClipRegion Bug.

Changes since Version 0.9.6
21.02.2003	Scribus is now complete Qt-3.1.1 compatible.

18.02.2003	Completed Redesign of the Measurement Palette.

15.02.2003	Made Rotation from Center possible.

02.02.2003	Added a "Collect for Output" Command to save everything into
		a User Defined Folder.

31.01.2003	Images are stored now with their relative Paths.

29.01.2003	Added Slovak Hyphenation.

28.01.2003	Added Danish Translation and Hyphenation.

27.01.2003	Finished the new Bookmark-Palette.

19.01.2003	Redesigned the handling of Bookmarks.

18.01.2003	Added the missing Textproperties Underline and Striketrough to
		the PDF-Exporter.

16.01.2003	Moved the Documentation to a seperate Package.

15.01.2003	Added several Patches.

Changes since Version 0.9.5
11.01.2003	Extended the Encryption for PDF-1.4 File to 128 Bits.

07.01.2003	Added PDF-Encryption.

03.01.2003	Added support for CUPS.

02.01.2003	Scribus can now write PDF/X-3 conform Documents.

31.12.2002	Fixed a long standing Bug with Documents printed directly after loading.

Changes since Version 0.9.4
30.12.2002	You can now embed ICC-Profiles in the PDF-Output.

27.12.2002	Fixed a Bug in the PDF-Exporter with resampled Images.

26.12.2002	Template Pages are now stored as Forms in the PDF and Postscript Output.

24.12.2002	Added Compression for Images in the Postscript Output.

22.12.2002	PDF-1.4 Transparency added.

21.12.2002	Now you can manage the additional Fontpath in the Fontpreferences.

20.12.2002	Now you can edit the Font Substitution List.

19.12.2002	Extended the Font Preferences, now you can exlude certain Fonts from being used.

18.12.2002	Added a Font Substitution List.

16.12.2002	Fixed several Bugs in the Postscript Driver.

Changes since Version 0.9.3
14.12.2002	Improved the File-Format to prevent troubles loading Documents.

12.12.2002	Added a Dialog to manage the Guidelines.

09.12.2002	Now you can snap Objects to the Guidelines.

08.12.2002	Added User defined Guidelines, which can be dragged out of the Rulers.

05.12.2002	Added Polish Translation contributed by Maciej Haski <m.hanski@gmx.at>

03.12.2002	PDF-Export Options are now saved with the Document.

02.12.2002	The PDF-Export now also supports the Gradient Fills.

01.12.2002	Gradient Fills are printable now.

30.11.2002	Added Gradient Fills.

26.11.2002	Added a Button to the File Select Dialog which moves to a
		User Defined Folder.
		Disabled deleting and editing of the Colors: White, Black, Cyan
		Magenta and Yellow.
		
25.11.2002	You can now lock Objects.

Changes since Version 0.9.2
23.11.2002	PDF and Postscript Files are now spooled to Disk instead of
		creating them in Memory.

22.11.2002	Now you can set Font and Fontsize in Paragraph-Style-Templates.

21.11.2002	Added Russian Hyphenation.

20.11.2002	LowRes Previews are now used for displaying on the Screen.

19.11.2002	Scribus now works with QT 3.1

17.11.2002	You can set the Name of an Object in the "Modify Object" Dialog.

Changes since Version 0.9.1
14.11.2002	Fixed a crash in the Print Dialog when /etc/printcap is missing.
		Type1 Fonts are now recognized even when your local encoding is
		is08859-15 or utf8.

13.11.2002	Made some cosmetic Changes to the Button Layout of varios Dialogs.
		Fixed handling of Toolbar Buttons and Menu-Entrys when switching
		Documents.

12.11.2002	Preferences are now stored in an own Folder called ".scribus".

11.11.2002	Fixed a grave Bug when opening Documents with missing Fonts.
		MDI-Mode is generally more stable now.

10.11.2002	Moved a misplaced #endif that caused Compilation Errors to the
		right Place (the Line 5050 Bug)

Changes since Version 0.8
09.11.2002	MDI-Mode complete.

05.11.2002	Begun to implement MDI-Mode.

03.11.2002	Enhanched the Hyphenator by adding an Auto-Check-Mode during Typing

02.11.2002	The Hypenator-Plugin is now fully integrated into the Main Code.

29.09.2002	Release of Scribus 0.8

Changes since Version 0.7.8
24.09.2002	Made last Code Refinements.

22.09.2002	Fixed a Bug with Documents created with Automatic Text Frames.

Changes since Version 0.7.7
08.09.2002	Added Tooltips to the Page Palette.

07.09.2002	Fixed a bug in the PDF-Export with Grayscale jpg's.

03.09.2002	Now you can change the Size of Textboxes during Edit-Mode.

01.09.2002	Added a new Commandline Option --lang xx
		xx represents a Language code just like the 
		Environment Variable LANG.
		Fixed some Bugs in the PDF-Fields.
		
29.08.2002	Added a Page Palette for better handling of Pages.

15.08.2002	Added the missing Home and End Keys to the Textbox.
		The Print Dialog now remembers the last extended
		Printing Command.
		
Changes since Version 0.7.6
30.07.2002	New Developers Version 0.7.7

26.07.2002	Fixed a Bug with transparent Images in the Postscript Driver

25.07.2002	Changed all Path Descriptions to use floating Point Coordinates.

24.07.2002	Written a FPointArray Class (with floating Point Coordinate Values)
		for the internal Path representation.

23.07.2002	New Measurement Unit: Picas

22.07.2002	New Measurement Unit: Inches
		Object Movements with the Keyboard can now be undone too.

21.07.2002	Improved scaling of Groups, should now be more exact.
		Scaling of Groups is always proportional.
		Added Undo for raising and lowering of Objects.

20.07.2002	Support for Colormanagement improved.

17.07.2002	Fixed Bug in the creation of Master Pages
		Added Progress Bar for Saving
		If you create Elements with Shift Key pressed while dragging the 
		Mouse the dimensions are now constrained to a square.
		
16.07.2002	Now you can undo: Delete Object
				  Move Object
				  Resize Object
				  Rotate Object

15.07.2002	First Undo-Code implemented

14.07.2002	Added Gamut-Check to the Colormanagement Options

Changes since Version 0.7.5
14.07.2002	New Developers Release 0.7.6

13.07.2002	Improved Drag'n'Drop of Groups.

06.07.2002	Groups can now be moved with the Cursor Keys,
		Measurement-Palette and scaled with the Mouse.

02.07.2002	Added Toolbar-Icon for creating PDF-Annotations.

01.07.2002	Completed the Icon properties for PDF-Buttons.
		Added Import Data Action.

30.06.2002	Added Icons for PDF-Buttons.

29.06.2002	Added Submit Form Action for PDF-Buttons
		Added the ability to rotate PDF-Fields
		Added turkish Translation for the GUI.

28.06.2002	Added Toolbar-Icon for creating PDF-Fields.
		Added support for global JavaScripts.

27.06.2002	Added Page Rages to to the PDF-Export Options.
		Added Support for translation files for Plugins.
		The Translations must be stored in the Folder ..../scribus/plugins

26.06.2002	Fixed a minor Bug in the PDF-Exporter.
		Added a Dialog for selecting Fields in the Annotation Properties Dialog
		Extended the JavaScript Editor with a Menu Bar for the most common
		editing tasks.

Changes since Version 0.7.4
25.06.2002	New Developers Release 0.7.5

24.06.2002	Finished development of the export of PDF-Forms.
		Doubleclicking an Annotation now opens the Annotation Properties Dialog
		
08.06.2002	Began to develop the export of interactive PDF-Elements.

Changes since Version 0.7.3
07.06.2002	New Developers Release 0.7.4

03.06.2002	Added document-wide Layers.

01.06.2002	Added 2 new Buttons to the Node-Palette for resetting Controlpoints

29.05.2002	The Clipping Paths of Picture and Text Frame are now
		also Bezier Curves.

27.05.2002	You can now convert Polygons to Beziercurves and vice versa

Changes since Version 0.7.2
26.05.2002	New Developers Release 0.7.3

25.05.2002	Doubleclicking on an Object does now the following:
		for Rectangles, Ovals and Lines:  Opens the Modify Object Dialog
		for Text and Pictures:            Enters Textediting or Picture moving state
		for Path-Texts and Bezier Curves: Enters Node editing mode

24.05.2002	Text can now be attached to a Bezier Curve.

23.05.2002	New Object: Bezier Curves
		Combined with Polylines in one Objecttype.

22.05.2002	Finished Redesign of the Node-Palette

20.05.2002	New Object: Polylines

19.05.2002	Now all 8 handles of an object are fully functional.

16.05.2002	Improved behavior of the Zoom Tool.

15.05.2002	Color-Profiles can have now the extensions .icm or .icc (Lower or Uppercase)

14.05.2002	The Polygon properties Dialog has now an Option to rotate the Polygon

13.05.2002	You can convert between Textframes, Pictureframes and Polygons with the
		Context Menu.

Changes since Version 0.7.1:
12.05.2002	New Developers Release 0.7.2

11.05.2002	Finished the Polygon Preferences Dialog.

10.05.2002	Added Polygons
		Final fixes for the Line-Code.

09.05.2002	Finished Redesign of the Measurements Palette

08.05.2002	Lines thinner than 1 pt are now possible.

05.05.2002	Begun redesign of the Measurements Palette

03.05.2002	Improved editing the Clipping-Path.

28.04.2002	New Developers-Release 0.7.1
		Fixed bug with "Save as..."
		Added missing math.h to scribusXml.h
		Added Lithauian translation

27.04.2002	New Developers-Release 0.7
		Ported to QT3
		Rewrote the code for the Lines.
		Changed the New File Dialog
		Added the ability to print via an external Command.

13.04.2002	New stable Version 0.6
		Fixed a great bunch of bugs since Version 0.5.8
		
Changes since Version 0.5.7:
29.03.2002	Extended the Measurements Palette a little.

26.03.2002	Removed a bug with linked Textframes which caused infinite recursion.
		Added the ability to set the Application Font Size in the Preferences.
		
25.03.2002	Added iso8859-15 encoding for the PDF-Export

24.03.2002	Changed the Font related Code so that Fonts encoded in ISO-8859-2
		can be used for PDF-Export

Changes since Version 0.5.6:
21.03.2002	Linked Textframes are now exported as PDF-Articles.

20.03.2002	Added PDF-Presentation Effects to the PDF-Exporter.

19.03.2002	Costum Clipping Paths of Text- and Pictureframes are now
		scaled accordingly if the Frame is resized.

18.03.2002	Changed the behaviour of Template Pages. They act now as
		a background Layer. Objects of Template Pages are no longer
		selectable if you are working on normal Pages.

17.03.2002	Text- and Pictureframes are able to have rounded Corners.

09.03.2002	Rectangles can have round Edges.

Changes since Version 0.5.5:
01.03.2002	Now you can define your own Keyboard-Shortcuts.

23.02.2002	Hypertext-Links in PDF are now useable.

17.02.2002	Now you can export PDF-Bookmarks as a Tree.

07.02.2002	Redesigned the PDF-Options dialog a little.
		Changed parsing of /etc/printcap .
		
06.02.2002	Enabled downsampling of Pictures in the PDF-Export.

05.02.2002	Scribus now checks that fonts which are listed in fonts.dir
		or fonts.scale really do exist.(Mandrake 8.1 seems to have
		some faulty font.dir files)

04.02.2002	Made some Bugfixes with linked Textboxes.

02.02.2002	The PDF-Export works now.

19.01.2002	Began work on a new PDF-Exporter.

17.01.2002	Scribus can now read embedded Profiles from
		TIFF-Pictures.
		
15.01.2002	Added TIFF-Support.

06.01.2002	Experimental Support for Colormanagement

28.12.2001	Plugins are now working.

15.12.2001	Last Bugfixes in the postscript driver and some other places.

11.12.2001	RGB-Mode of the Color-Chooser changed slightly.

09.12.2001	Scribus now uses the extension .scd for Documents to avoid
		conflicts with other Applications.
		
08.12.2001	The Postscript-Driver now uses only PS-Level 2 constructs
		except for PDF-creation. PS-Level 3 is used to create PDF-
		Files with masked Images due to a bug in Ghostscript.

30.11.2001	Added custom Fileselector with Previews.

28.11.2001	New Dialog for searching of Pictures.

26.11.2001	Added RGB-Mode to the Color-Chooser
		New Version 0.5

24.11.2001	Added Keyboard Shortcuts for Textalignments
		CTRL-E = centered, CTRL-L = left, CTRL-R = right
		Extended the Preferences a little.
		Added zooming to Selection Rectangle.

22.11.2001	Added a Recent Documents Menue.

21.11.2001	Added a Dialog for quick finding of missing Pictures.
		Improved Screen-Redraw
		New Version 0.4.10

17.11.2001	Added french documentation contributed by Yves Ceccone <yves@yeccoe.org>
		Made even more speed improvements.

16.11.2001	Fixed several bugs

14.11.2001	New french translation contributed by Yves Ceccone <yves@yeccoe.org>
		Made some more speed improvements with large Documents.
		Added smart hypens for better Wordbreaks.

12.11.2001	Eliminated more unneeded redraws.
		New Version 0.4.9

10.11.2001	Objectgroups are now fully working.

09.11.2001	Fixed a bug which causes Scribus to crash when loading Documents
		which contain the character � This crash happens only in the
		locale fr.

07.11.2001	Objects can now be grouped together

05.11.2001	Scribus now displays Pages of Documents with facing Pages side by side.
		This can switched off in the Preferences.
		Some new Icons contributed by Alastair Robinson.
		New Version 0.4.8

03.11.2001	Template pages are now fully working.
		Added Slovak and Ukrainian translation.
		
01.11.2001	Template pages can now be used.

31.10.2001	Updated TTF-Code from Alastair Robinson

29.01.2001	New Version 0.4.7
		Began work on template pages.

28.10.2001	Fixed a bug that caused Scribus not to find Fonts on RedHat-Systems (again)
		Polished the Scrapbook-Window a little.

26.10.2001	Implemented the first subset of Keyboard Shortcuts.

24.10.2001	Implemented the usual Selection Rectangle.
		Bugfixes, Bugfixes, Bugfixes....

23.10.2001	Fixed some bugs in the printing of text on the screen.
		New Version 0.4.6

22.10.2001	Fixed a bug that prevents Scribus from starting properly.
		Patch submitted by Arnd Bergmann <arnd@bergmann-dalldorf.de>

20.10.2001	Added a Scrapbook-Window for storing often used objects.
		Fixed numerous minor bugs.
		TTF-Fonts can now be printed. Code contributed by Alastair Robinson.

14.10.2001	Fixed a Bug that causes Scribus not to print correctly.
		Began work on TTF-Support, Code contributed by Alastair Robinson.
		New version 0.4.5

11.10.2001	Added a Palette for Frame-Editing

06.10.2001	New Version 0.4.4
		Scribus now uses the AFM-File of a Font if available.
		
03.10.2001	Added the Alignments Full and Forced.

02.10.2001	Added new Options to Paragraph-Styles
		Fixed various bugs.
		Enhanched printing speed.
		Patch submitted by Alastair Robinson <blackfive@fakenhamweb.co.uk>

01.10.2001	New Version 0.4.3

29.09.2001	Now you can set a Backgroundcolor for the Pages (Display only)

28.09.2001	Implemented first subset of Paragraph-Style-Templates.
		Fixed bug regarding the display of the rulers
		Fixed bug in the code for the Wheel-Mouse
		Patches submitted by Alastair Robinson <blackfive@fakenhamweb.co.uk>

23.09.2001	Fixed a bug in the installation of the German documentation.
		Fixed bug regarding the display of the Gridlines.
		Patch submitted by Alastair Robinson <blackfive@fakenhamweb.co.uk>

22.09.2001	New Version 0.4.2
		Implemented Textalignments Left, Right and Center.
		
21.09.2001	Finished basic Color-Separations.
		Fixed a bug in the embedding of Fonts in the Postscript-
		output. Patch submitted by Alastair Robinson <blackfive@fakenhamweb.co.uk>

20.09.2001	Removed a bug that causes Text that is located on other
		pages than the first not being printed.

18.09.2001	New Print-Dialog which supports Options required for
		doing Separations.

16.09.2001	The EPS-Import now recognizes DCS-Comments for CMYK-Colors
		in the EPS-Files. Scribus imports these Colors.
		
15.09.2001	New ColorPicker for CMYK-Colors.

10.09.2000	Changed the Color-Representation to CMYK-Colors

08.09.2001	Released Version 0.4 to the Public

29.08.2001	Finished reprogramming the Dialogs.

27.08.2001	Version 0.4
		Redesigned Distribute/Align Dialog
		
25.08.2001	Decided to make Version 0.3.11 the Release Candiate for 0.4
		Limited maximum Pointsize for Text to 512 pt.
		
19.08.2001	New Version 0.3.11
		Begin redesigning all Dialog so that Texts in all
		Languages will fit.

17.08.2001      Added Confirmation Dialogs for File->New, File->Open
                if there is an unsaved Document in use.

15.08.2001      Added automatic Linebreak on Word-Boundarys.

14.08.2001      Removed the "No Fill" Checkboxes in the Modify Objects Dialog,
                Preferencens and in the Contextmenue. Their Functionality is
                now achieved by the Color "None".

13.08.2001      Redesigned About-Box.

12.08.2001      Improved Drag'nDrop.
                New Version 0.3.10

10.08.2001      ImageMagick and pfb2pfa are no longer required
                to run Scribus

09.08.2001      Added Toolbar to Main Window.

08.08.2001      Added Spanish and Catalan Translations.
                Images with Transparency are now correct printed.

06.08.2001      Added PDF-Annnotations to PDF-Export.

05.08.2001      Extended Drag'n'Drop.
                Now you can:
                Drag Pictures into a Picture-Frame.
                Drag Textfiles into a Textbox.
                Drag Text from another Applications into a Textbox.
                Drag Items from Konquerer to Scribus.
                With the right Mousebutton you can:
                Drag Items to another place in the Document (copying it).
                Drag Items to the KDE-Desktop.
                Drag Items to Konquerer.
                Drag Items to another Application, where they appear as Text.

04.08.2001      Enabled Drag'n'Drop of Pictures to Scribus
                New Version 0.3.9

03.08.2001      Now you can choose Units for the Documents. Currently there
                are Typographic Points (pt) and Millimeters (mm) supported.

01.08.2001      Added new About-Box with a Logo contributed by Thomas Zastrow.
                Added ability to display the Margins and the Guides in front
                of the Page.

31.07.2001      New Try on supporting other codecs than ISO-8859-1

29.07.2001      Fixed various Bugs, implemented Clipping on Page-Boundarys
                in the Postscript-Output.

28.07.2001      Added extended German Documentation contributed
                by Thomas Zastrow.
                New Version 0.3.8

26.07.2001      Added Preferences for the Tools.

25.07.2001      Added Cursor-Up and Cursor-Down for Textframes.

23.07.2001      Linked Textframes finished, Automatic Textframes
                are now connected to a Textchain.

21.07.2001      Linked Textframes can be created with the mouse,
                new Version 0.3.7

19.07.2001      Linked Textframes can now be saved to Disk.
                Disabled linked Frames for Release 0.3.6 because
                this Feature isn't ready for public Release.

18.07.2001      Linked Textframes added (experimental)

16.07.2001      Scribus now uses XML for his Preferences.

15.07.2001      File-Format for Documents changed to XML.

14.07.2001      Export to XML added
                New version 0.3.6

13.07.2001      Added French translation contributed from Michel Briand

12.07.2001      Fixed Bug in PageItem.cpp that prevents large Textfiles to
                be loaded and display correct.
                Measurement Palette finished.

11.07.2001      Old Measurement-Palette removed
                Minimized Redraws

10.07.2001      In the Measurement-Palette you can step by 10th of a unit
                in all SpinBoxes by holding down the Shift-Key.

09.07.2001      New Measurement-Palette partially functional

08.07.2001      Begin redesigning Measurement-Palette.
                Textflow-Flag added to PageItems.

07.07.2001      Completed redesigning Modify-Object Dialog.
                Serializer: Fixed Bug loading Documents.
                New Version 0.3.5

06.07.2001      Modify-Objects also handles Pictureframes now.

05.07.2001      Documentation is now installed in $prefix/share/scribus/doc/(locale)
                Added Modify-Dialog to Context-Menue

04.07.2001      Begin redesigning Modify-Object Dialog

03.07.2001      Added Online-Helpbrowser
                Fixed a bug with magnetic Guides

01.07.2001      Added Typestyles Bold and Small Caps.

30.06.2001      Added transparency to EPS-Images.
                Added ability to load Colors from other Documents
                New Version 0.3.4

29.06.2001      Improved printing of underlined and strike Characters.
                Documentation extended.

28.06.2001      Bugs in Bugreport submitted by Uwe Steinmann fixed
                Made Resizing and Moving of Objects covered by other
                Objects more useable.
                Linespacing is now a float Value.

27.06.2001      Added Typestyles Underline and Strikethru

26.06.2001      Fixed various Redraw-Bugs introduced by QT-2.3
                In scaled Painters Lines must have a width >= 1
                to avoid drawing outside of Clipping-Area

24.06.2001      Hopefully fixed a serious Bug, Scribus could
                crash badly killing the X-Server when editing
                the Clipping-Path of a Picture. Bug was reported
                by Attila Keller.
                Added Typstyle Italic
                New Version 0.3.3

22.06.2001      Bugfixes for Cursorhandling, changed behavior
                of the Buttons for the Typestyles.
                Added Preferences for Typestyles

21.06.2001      Implemented Typestyle Subscribt
                Partially added Tool-Tips to Measurement-Palette

20.06.2001      Implemented first Typestyle Superscript

18.06.2001      Removed Bug from Manual Kerning
                Now it is possible to flip Textboxes like Images

17.06.2001      Modify Objects Dialog for Textframes working
                Manual Kerning added

16.06.2001      Move Pages Dialog added
                Start working on Modify Objects Dialog
                Now Version 0.3.2

15.06.2001      No more use of xset -q to get the Font-Path.
                Thank to Christian Tpp, who pointed out a
                way to get the Font-Path without xset.

14.06.2001      Insert Page now works
                Delete Page Dialog works
                Added Tooltips for Tools-Palette

12.06.2001	Unicode-Support enhanced???
		Insert Page-Dialog added

10.06.2001      new Options added to PDF-Options-Dialog
                configure recognizes now --prefix