File: changelog

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

  * debian/control: Fix a typo on build depends that somehow passed through
    my pbuilder test.

 -- Oleksandr Moskalenko <malex@debian.org>  Fri, 23 Jan 2009 16:19:28 -0700

scribus (1.3.3.13.dfsg~svn20081228-1) unstable; urgency=low

  * Upstream svn update - fix the .desktop file again as scribus still ends up
    in the Other category.
  * debian/scribus.menu: Shortened description.

 -- Oleksandr Moskalenko <malex@debian.org>  Wed, 21 Jan 2009 12:54:36 -0700

scribus (1.3.3.13.dfsg~svn20081006-1) unstable; urgency=low

  * Upstream svn update - fix the .desktop file and icon file name to simplify
    debian packaging.
  * debian/scribus.install: 
    - Install the icon file properly.
    - Don't install the debian/scribus.desktop anymore as upstream's been
      fixed.

 -- Oleksandr Moskalenko <malex@debian.org>  Tue, 07 Oct 2008 13:46:40 -0600

scribus (1.3.3.13.dfsg~svn20080709-1) unstable; urgency=low

  * Upstream svn update.

 -- Oleksandr Moskalenko <malex@debian.org>  Sat, 20 Sep 2008 08:37:20 -0600

scribus (1.3.3.12.dfsg-1) unstable; urgency=low

  * New upstream release (Closes: #487288).
  * Some of the changes below are done to bring the Debian package closer to
    its Ubuntu version at the urging of Scott Kitterman <scott@kitterman.com>
    from the Ubuntu team.
  * debian/control:
    - changed the dependency on python2.4-dev to python-all-dev.
    - changed the architecture list to any (Closes: #481441).
    - removed the erroneous statement about this being a developmental branch
      of Scribus from the long description.
    - removed the revision from build-depends cmake version per lintian W:.
    - updated Standards-Version to current 3.8.0.
    - removed xutils from build-depends per lintian E:.
  * debian/rules:
    - use a copy of desktop file with fixed it icon path (Closes: #478926).
    - removed the obsolete linda overrides installation directive.
    - added -DWANT_LIB32:BOOL=1 \ to use a correct location for builds.
    - removed leading '-' from clean-patched target directives per lintian W:.
    - removed the make clean directive since this is an out-of-tree build and
      I can simply rm -rf build and install dirs.
  * debian/scribus.dirs: added usr/share/man/de/man1 for the german manpage.
  * debian/scribus.linda: removed the obsolete linda overrides file.
  * debian/scribus.lintian: added overrides for two bogus warnings and an
    error (3 new lines at the bottom).

 -- Oleksandr Moskalenko <malex@debian.org>  Wed, 02 Jul 2008 13:42:07 -0600

scribus (1.3.3.11.dfsg-2) unstable; urgency=low

  * Remove a build dependency on libqt3-compat-headers that is being
    deprecated (Closes: #464956).

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 11 Feb 2008 23:11:04 -0700

scribus (1.3.3.11.dfsg-1) unstable; urgency=low

  * New stable upstream release (Closes: #448948).
  * debian/watch: fixed the dversionmangle option (Closes: #449661).
  * debian/README.Debian: Corrected a note about the color profile
    installation to enable color management.
  * debian/control:
    - Updated Standards-Version to 3.7.3.
    - Moved Homepage to the list of control fields.
  * debian/scribus.menu: Changed section from Apps to Applications.
  * debian/rules:
    - Move German manpage to a correct directory.
    - Remove an empty upstream changelog file.

 -- Oleksandr Moskalenko <malex@debian.org>  Sat, 12 Jan 2008 01:17:28 -0700

scribus (1.3.3.10.dfsg~svn20071109-1) unstable; urgency=low

  * Upstream svn update.
  * Changed location of the translation files (Closes: #448948).
  * Updated the watch file for sourceforge (Closes: #449661).

 -- Oleksandr Moskalenko <malex@debian.org>  Fri, 09 Nov 2007 13:01:56 -0700

scribus (1.3.3.9.dfsg+20070808svn-2) unstable; urgency=low

  * debian/control: Update list of build architectures to include armel,
    kfreebsd-i386 and kfreebsd-amd64 (Closes: #437062).

 -- Oleksandr Moskalenko <malex@debian.org>  Fri, 10 Aug 2007 12:56:26 -0600

scribus (1.3.3.9.dfsg+20070808svn-1) unstable; urgency=low

  * New upstream svn update - various fixes.
  * debian/control:
    - Changed "Architecture:" to include all arches except mips and mipsel due
      to the failure of Debian mips people to fix their toolchain issues after
      months of waiting and asking.
    - Added scribus-doc to Suggests.
  * debian/README.Debian: Added an explanation about interface language
    selection (Closes: #429760).

 -- Oleksandr Moskalenko <malex@debian.org>  Wed, 08 Aug 2007 13:43:28 -0600

scribus (1.3.3.9.dfsg+20070716svn-1) unstable; urgency=low

  * New upstream snapshot. Upload to see if the mips, etc. toolchaing problems
    have been worked out.

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 16 Jul 2007 15:03:52 -0600

scribus (1.3.3.9.dfsg+20070617svn-1) unstable; urgency=low

  * Upstream update. Upload to force new builds on mips and mipsel.

 -- Oleksandr Moskalenko <malex@debian.org>  Tue, 19 Jun 2007 12:18:19 -0600

scribus (1.3.3.9.dfsg-1) unstable; urgency=low

  * New upstream release.
  * debian/control: Removed an explicit dependency on liblcms1 as I fixed the
    shlibs problem in liblcms1 itself and this workaround is no longer
    necessary.

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 07 May 2007 00:03:21 -0600

scribus (1.3.3.8.dfsg+cvs20070420-1) unstable; urgency=low

  *  New cvs update with a fix for a broken EPS import really in this time.

 -- Oleksandr Moskalenko <malex@debian.org>  Fri, 20 Apr 2007 08:53:05 -0600

scribus (1.3.3.8.dfsg+cvs20070417-1) unstable; urgency=low

  *  New cvs update with a fix for a broken EPS import.

 -- Oleksandr Moskalenko <malex@debian.org>  Wed, 18 Apr 2007 16:08:53 -0600

scribus (1.3.3.8.dfsg+cvs20070409-2) unstable; urgency=low

  * 1.3.3.x seris has reworked dialog windows (Closes: #202482).
  * debian/control: Add a recommends on cupsys-bsd (Closes: #416923).

 -- Oleksandr Moskalenko <malex@debian.org>  Thu, 12 Apr 2007 11:36:47 -0600

scribus (1.3.3.8.dfsg+cvs20070409-1) unstable; urgency=low

  * Etch is released! It's time to migrate the current stable Scribus series
    to the "scribus" package status.

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 09 Apr 2007 11:21:50 -0600

scribus-ng (1.3.3.8.dfsg-2) unstable; urgency=low

  * debian/patches/05-08...dpatch: Fix for the transparent fix upscaling
    issue.

 -- Oleksandr Moskalenko <malex@debian.org>  Thu,  1 Mar 2007 13:09:45 -0700

scribus-ng (1.3.3.8.dfsg-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/02_profiles.dpatch: Made a new patch to correspond to the
    upstream update.

 -- Oleksandr Moskalenko <malex@debian.org>  Sat, 24 Feb 2007 17:57:27 -0700

scribus-ng (1.3.3.7.dfsg-1) unstable; urgency=low

  * New upstream release.
  * This is the first package version to use cmake insteade of autotools.
  * debian/patches:
    - Removed autotools-related patches.
    - Added 01_cmake_scribus.dpatch - remove 'doc' directory from the  build.
    - Added 02_cmake_profiles.dpatch - remove non-free sRGB profile and its
      readme.
    - Added 03_cmake_rpath.dpatch - patch top level CMakeLists.txt to force
      cmake to honor "-DCMAKE_SKIP_RPATH:BOOL=1" to work around a bug in older
      cmake versions.
  * debian/control:
    - Changed dependencies from autoconf (>=2.57) and automake1.9 (>=1.9) to
      cmake (>= 2.4.4-1).
    - Added a dependency on python because lintian errors.
  * debian/rules:
    - Adjusted rules to build with cmake instead of autotools (multiple changes).
    - Parse $DEB_BUILD_OPTIONS for the parallelbuild string and run make -j5
      if it is set - fails, so comment it out for now as the build system is
      not safe with this option because of the absence of dependency checking.
  * debian/scribus-ng.lintian: Updated overrides for the new build system.

 -- Oleksandr Moskalenko <malex@debian.org>  Tue,  9 Jan 2007 13:25:11 -0700

scribus-ng (1.3.3.6.dfsg-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Oleksandr Moskalenko <malex@debian.org>  Tue,  5 Dec 2006 15:28:45 -0700

scribus-ng (1.3.3.5.dfsg-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/01_profiles_makefile_am.dpatch: Reflecte the removal of the
    non-free ICC profile.
  * debian/patches/02_top_makefile_am.dpatch: Install the scribus.xml mime
    types file as scribus-ng.xml.
  * debian/rules: Remove the erroneous `/usr/share/scribus/' directory before
    building the package.

 -- Oleksandr Moskalenko <malex@debian.org>  Fri, 10 Nov 2006 12:57:17 -0700

scribus-ng (1.3.3.4.dfsg-1) unstable; urgency=low

  * New upstream release.
  * debian/scribus-ng.xml: Removed this file as the upstream included it in
    this release.
  * debian/rules: Added a rule to remove /usr/share/doc/scribus as I couldn't
    find the makefile rule that created it.

 -- Oleksandr Moskalenko <malex@debian.org>  Tue,  3 Oct 2006 10:29:33 -0600

scribus-ng (1.3.3.3.dfsg-2) unstable; urgency=low

  * Revert relibtoolization for now to fix the problem with building shared
    objects for plugins.

 -- Oleksandr Moskalenko <malex@debian.org>  Thu, 10 Aug 2006 13:48:39 -0600

scribus-ng (1.3.3.3.dfsg-1) unstable; urgency=low

  * New upstream release on 2006-08-07. Performed removal of the non-free doc
    and profile directories, install location relocation, and source
    libtoolization (libtoolize -c -f; aclocal; autoconf).
  * debian/patches: Removed the patch for admin/cvs.sh that was folded into
    the upstream source.
  * debian/control: Added an explicit dependency on liblcms1 (>= 1.13) in
    order to override the ${shlibs:Depends} that creates a dependency on 1.08
    (Closes: #379077) finally.
  * Updated for the new python policy compatibility (Closes: #380947).
    + debian/pycompat: Added this file with a value of "2" per new python
      policy.
    + debian/control: 
      - Changed debhelper dependency from "4" to "5.0.37.2".
      - Added ${python:Depends} to the Depends field.
      - Added a XB-Python-Version: ${python:Versions} field.
      - Added a "Provides: ${python:Provides}" field.
      - Changed "python2.3-dev" to python-all-dev (>= 2.3.5-11) in
        Build-Depends.
  * debian/scribus-ng.lintian: Updated lintian overrides.
  * debian/scribus-ng.lintian: Added a linda override for the "is not an ELF
    file or script" warning for .la files.
  * debian/watch: Updated the watch regex to accomodate a four digit version
    number.

 -- Oleksandr Moskalenko <malex@debian.org>  Tue,  8 Aug 2006 17:21:39 -0600

scribus-ng (1.3.3.2.dfsg-2) unstable; urgency=medium

  * debian/patches/02-cvs_sh.dpatch: Added a patch that fixes autoconf-2.60
    detection failure (Closes: #379893). Setting urgency=medium for this.
  * debian/control: Checked the liblcms1 dependency and it is >= 1.13 
    (Closes: #379077).
  * debian/scribus-ng.lintian: Updated lintian overrides.

 -- Oleksandr Moskalenko <malex@debian.org>  Fri, 28 Jul 2006 13:19:41 -0600

scribus-ng (1.3.3.2.dfsg-1) unstable; urgency=low

  * New upstream release on May 27th, 2006. This release is compatible with
    libfreetype6-2.2 and should fix the FTBFS on s390 (Closes: #370574).
  * debian/control: Updated Standards-Version to 3.7.2.

 -- Oleksandr Moskalenko <malex@debian.org>  Tue, 06 Jun 2006 10:48:32 -0600

scribus-ng (1.3.3.1.dfsg-1) unstable; urgency=low

  * First upload into Debian (Closes: #362266).
  * New upstream point release of the developmental branch of Scribus on April
    10, 2006.
  * debian/rules:
    - Fixed a rule to delete upstream COPYING file as it was looking in
      $(package)/share/ instead of $(package)/usr/share/.
    - Changed the 'dh_clean -k' rule in 'install-stamp:' to 'dh_clean' to
      completely clean the build directories as I don't build multiple
      binaries from this source anymore.
    - Moved dh_install above the manual rules.
    - Added a rule to move the dictionary README files to
      /usr/share/scribus-ng/doc/dicts..
    - Added a rule to remove INSTALL and README.MacOSX files from
      /usr/share/doc/scribus-ng as per lintian warnings.
  * debian/scribus-ng.dirs: Added a rule to create a
    /usr/share/doc/scribus-ng/dicts directory for dictionary readme files.
  * debian/patches/01_Makefile.am.dpatch: Prepared a monolithic patch to
    convert scribus into scribus-ng at build time.
  * Removed unneeded scribus-ng.links file.
  * debian/scribus-ng.lintian: Added a minimal set of necessary overrides for
    the script-not-executable, executable-not-elf-or-script, and
    shlib-with-executable-bit warnings.
  * debian/control: Removed the scribus-cvs dummy package and updated
    description to point out that scribus-ng will be tracking developmental
    branch of scribus.

 -- Oleksandr Moskalenko <malex@debian.org>  Tue, 11 Apr 2006 11:45:49 -0600

scribus-ng (1.3.2+cvs20060405-1) unstable; urgency=low

  * Upstream cvs update on 2006-04-05 branched into a 1.3.3.1 branch for
    stabilization before a release.
  * Changed the name to scribus-ng package in preparation of the introduction
    of this package into Debian/main archive and switch from cvs to
    subversion upstream, so -cvs is not going to be an appropriate suffix.
  * Edited in place every Makefile.am file to change the DOCDIR to scribus1.2
    for now. I'll do it upstream of Debian packaging later.
  * Edited in place every Makefile.am file to change the LIBDIR to scribus1.2
    for now. I'll do it upstream of Debian packaging later.
  * debian/control:
    - Changed package name from scribus-cvs to scribus-ng.
    - Added scribus-cvs to Conflicts and Replaces fields to ensure a smooth
      upgrade.
  * debian/NEWS: Updated the news file to reflect this switch in packaging.
  * debian/copyright: Verified and updated the copyright information.
  * debian/rules:
    - Changed rules to reflect the package name change.
    - Added a rule to remove the superfluos "COPYING" file.
    - Changed rules to reflect the move from /usr/local to /usr hierarchy.
  * Moved the docs and ICC profiles out of the package to make it suitable for
    Debian/main.
  * debian/scribus-ng.menu: Changed -cvs to -ng to reflect name change.
  * debian/scribus-ng.install: Changed -cvs to -ng to reflect name change.

 -- Oleksandr Moskalenko <malex@debian.org>  Wed,  5 Apr 2006 13:44:32 -0600

scribus-cvs (1.3.2+cvs20060323-1) unstable; urgency=low

  * Upstream cvs update on 2006-03-23.

 -- Oleksandr Moskalenko <malex@debian.org>  Thu, 23 Mar 2006 17:48:32 -0700

scribus-cvs (1.3.2+cvs20060314-1) unstable; urgency=low

  * Upstream cvs update on 2006-03-14.

 -- Oleksandr Moskalenko <malex@debian.org>  Tue, 14 Mar 2006 19:02:28 -0700

scribus-cvs (1.3.2+cvs20060313-1) unstable; urgency=low

  * Upstream cvs update on 2006-03-13.
  * debian/compat: Changed the compatibility level back to 4 to facilitate
    semi-automated backporting to Debian/stable and Ubuntu Hoary and Breezy.
  * debian/control: Changed debconf version in Build-Depends to 4 for the same
    reason as debian/compat version.

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 13 Mar 2006 17:37:53 -0700

scribus-cvs (1.3.2+cvs20060312-1) unstable; urgency=low

  * Upstream cvs update on 2006-03-12. This is the first package in the "Let's
    build a package a day until the 1.3.3 release" series.

 -- Oleksandr Moskalenko <malex@debian.org>  Sun, 12 Mar 2006 14:18:45 -0700

scribus-cvs (1.3.2+cvs20060309-1) unstable; urgency=low

  * Upstream cvs update on 2006-03-09.
  * debian/scribus-cvs.xpm: Updated the xpm menu icon.
  * debian/scribus-cvs-3d.xpm: Removed the obsolete menu icon.
  * debian/scribus-cvs.install: Updated rules for installation of menu icons.

 -- Oleksandr Moskalenko <malex@debian.org>  Thu,  9 Mar 2006 10:52:51 -0700

scribus-cvs (1.3.2+cvs20060217-1) unstable; urgency=low

  * Upstream cvs update on 2006-02-17.

 -- Oleksandr Moskalenko <malex@debian.org>  Fri, 17 Feb 2006 16:56:41 -0700

scribus-cvs (1.3.2+cvs20060215-1) unstable; urgency=low

  * Upstream cvs update on 2006-02-15.

 -- Oleksandr Moskalenko <malex@debian.org>  Wed, 15 Feb 2006 15:48:43 -0700

scribus-cvs (1.3.2+cvs20060213-1) unstable; urgency=low

  * Upstream cvs update on 2006-02-13.

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 13 Feb 2006 17:08:40 -0700

scribus-cvs (1.3.2+cvs20060203-1) unstable; urgency=low

  * Upstream cvs update on 2006-02-03.

 -- Oleksandr Moskalenko <malex@debian.org>  Fri,  3 Feb 2006 17:14:32 -0700

scribus-cvs (1.3.2+cvs20060130-1) unstable; urgency=low

  * Upstream cvs update on 2006-01-30.
  * debian/NEWS: Added a news file temporarily to tell users about the
    /usr/local/bin/scribus to /usr/bin/scribus-cvs transition.
  * debian/scribus-cvs.lintian: Added fresh overrides for /usr/local warnings
    and errors.

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 30 Jan 2006 11:33:51 -0700

scribus-cvs (1.3.2-2) unstable; urgency=low

  * debian/watch: Added a watch file.
  * debian/scribus-cvs.lintian: Move it to /usr/share/lintian/overrides from
    /usr/local/share...
  * debian/rules:
    - Removed DH_COMPAT as debian/compat file is now used.
    - Added a rule to install
      /usr/share/{linda,lintian}/scribus-cvs.overrides instead of
      /usr/local/share....
    - Added a rule to move /usr/local/bin/scribus to /usr/bin/scribus-cvs.
    - Added rules to install the icons and manpage to the correct filenames
      and locations.
  * debian/control:
    - Changed the short Description slightly.
    - Updated the debhelper dependency to reflect compat level 5.
  * debian/compat: Changed compatibility level to 5.
  * debian/scribus-cvs.install: Install icons into /usr/share/pixmaps, .xml
    into /usr/share/mime/packages, and .desktop into /usr/share/applications.
  * debian/scribus-cvs.lintian: Added more overrides to cover all
    /usr/local-related warnings and errors.
  * debian/dirs: make the necessary /usr/bin, /usr/share/man/pl/man1, etc.
    dirs.

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 23 Jan 2006 12:35:24 -0700

scribus-cvs (1.3.2-1) unstable; urgency=low

  * New upstream release on Jan 22, 2006.

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 23 Jan 2006 10:48:48 -0700

scribus-cvs (1.3.1+cvs20060120-1) unstable; urgency=low

  * Upstream cvs update on 2006-01-20.

 -- Oleksandr Moskalenko <malex@debian.org>  Fri, 20 Jan 2006 15:06:22 -0700

scribus-cvs (1.3.1+cvs20060116-1) unstable; urgency=low

  * Upstream cvs update on 2006-01-16.
  * debian/control: Changed the maintainer address.
  * debian/copyright: Changed the maintainer address.

 -- Oleksandr Moskalenko <malex@debian.org>  Mon, 16 Jan 2006 11:59:20 -0700

scribus-cvs (1.3.1+cvs20060111-1) unstable; urgency=low

  * Upstream cvs update on 2006-01-11.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 11 Jan 2006 16:28:48 -0700

scribus-cvs (1.3.1+cvs20051213-1) unstable; urgency=low

  * Upstream cvs update on 2005-12-13.
  * debian/control: Removed xlibs-dev, libjpeg62-dev, libpng3-dev, and
    libfreetype6-dev from Build-Depends: as libqt3-mt-dev already depends on
    them on their replacements. This should also carry scribus through the
    upcoming libfreetype6 and libpng-12-0 transitions.
  * debian/scribus.desktop: Updated from upstream.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 13 Dec 2005 10:34:15 -0700

scribus-cvs (1.3.1+cvs20051129-1) unstable; urgency=low

  * Upstream cvs update on 2005-11-29.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 29 Nov 2005 09:51:45 -0700

scribus-cvs (1.3.1+cvs20051128-1) unstable; urgency=low

  * Upstream cvs update on 2005-11-28.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 28 Nov 2005 14:11:02 -0700

scribus-cvs (1.3.1+cvs20051117-1) unstable; urgency=low

  * Upstream cvs update on 2005-11-17.
  * Debian.README: Updated the file to 1.2.3 README level.
  * debian/compat: Use a "compat" file instead of a variable in debian/rules.
  * Removed stale NEWS.Debian file.
  * Converted patches to dpatch format.
  * debian/control: Added a dependency on dpatch to accomodate the change in
    my patching practice for this package.
  * debian/rules: Changed rules from an ad-hoc patch system to dpatch.
  * debian/scribus.dirs: Added this file instead of using "mkdir" rules in the
    rules file.
  * debian/rules: Stop using "mkdir" rules in favor of using a scribus.dirs
    file.
  * debian/scribus.install: Added this file instead of manually installing
    necessary files from within debian/rules.
  * debian/rules: Removed file installation rules made obsolete by the
    debian/scribus.install file.
  * debian/rules: Fix the linda overrides file name in rules to be scribus-cvs.
  * scribus.lintian: remove this stale experimental file.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 17 Nov 2005 14:48:57 -0700

scribus-cvs (1.3.1+cvs20051108-1) unstable; urgency=low

  * Upstream cvs update on 2005-11-08.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue,  8 Nov 2005 09:53:14 -0700

scribus-cvs (1.3.1+cvs20051028-1) unstable; urgency=low

  * New upstream release. It fixes the jpeg export problem.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri, 28 Oct 2005 14:01:38 -0600

scribus-cvs (1.3.1+cvs20051025-1) unstable; urgency=low

  * Upstream cvs update on 2005-10-25.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 25 Oct 2005 15:24:45 -0600

scribus-cvs (1.3.1+cvs20051011-1) unstable; urgency=low

  * Upstream cvs update on 2005-10-11.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri, 21 Oct 2005 15:40:00 -0600

scribus-cvs (1.3.1+cvs20051003-1) unstable; urgency=low

  * Upstream cvs update on 2005-10-03.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue,  4 Oct 2005 10:07:04 -0600

scribus-cvs (1.3.0+cvs20050929-1) unstable; urgency=low

  * Upstream cvs update on 2005-09-29.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri, 30 Sep 2005 11:38:05 -0600

scribus-cvs (1.3.0+cvs20050919-1) unstable; urgency=low

  * Upstream cvs update on 2005-09-18.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 20 Sep 2005 15:20:15 -0600

scribus-cvs (1.3.0+cvs20050918-1) unstable; urgency=low

  * Upstream cvs update on 2005-09-18.
  * debian/rules: Add the "make -f Makefile.cvs" rule again or today's build
    will break.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 19 Sep 2005 15:33:19 -0600

scribus-cvs (1.3.0+cvs20050905-3) unstable; urgency=low

  * Test #2525 with a preview of fixed qt3 packages:
      + Remove the mspinbox.cpp patch.
      + debian/rules: Comment out the --enable-debug part.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed,  7 Sep 2005 08:52:13 -0600

scribus-cvs (1.3.0+cvs20050905-2) unstable; urgency=low

  * Add a patch to scribus/mspinbox.cpp to provide debugging statements (see
    bug #2525 on bugs.scribus.net).

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue,  6 Sep 2005 16:41:22 -0600

scribus-cvs (1.3.0+cvs20050905-1) unstable; urgency=low

  * Upstream cvs update on 2005-09-05. Enable debug for troubleshooting
    purposes.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue,  6 Sep 2005 13:35:35 -0600

scribus-cvs (1.3.0+cvs20050831-1) unstable; urgency=low

  * Upstream cvs update on 2005-08-31.
  * debian/rules: Do not chmod 755 /usr/local/lib/scribus/libs/*.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu,  1 Sep 2005 08:15:19 -0600

scribus-cvs (1.3.0+cvs20050828-1) unstable; urgency=low

  * Upstream cvs update on 2005-08-28.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 29 Aug 2005 10:09:01 -0600

scribus-cvs (1.3.0+cvs20050727-1) unstable; urgency=low

  * Upstream cvs update on 2005-07-27.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 27 Jul 2005 23:13:53 -0600

scribus-cvs (1.3.0+cvs20050724-1) unstable; urgency=low

  * Upstream cvs update on 2005-07-24.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Sun, 24 Jul 2005 12:58:43 -0600

scribus-cvs (1.3.0+cvs20050720-1) unstable; urgency=low

  * Upstream cvs update on 2005-07-20.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 21 Jul 2005 13:59:02 -0600

scribus-cvs (1.3+cvs20050711-1) unstable; urgency=low

  * Upstream cvs update on 2005-07-11.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 12 Jul 2005 14:05:44 -0600

scribus-cvs (1.3+cvs20050702-1) unstable; urgency=low

  * New upstream cvs release on 2005-07-02.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Sun,  3 Jul 2005 20:24:01 -0600

scribus-cvs (1.3+cvs20050629-1) unstable; urgency=low

  * New upstream cvs release on 2005-06-29.
  * debian/control: Updated Depends and description to the changes in 1.2
    control file.
  * debian/control: Explicitly depend on gcc 3.3.5 as the libgcc1 4.0.0
    problem persists.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 30 Jun 2005 10:58:58 -0600

scribus-cvs (1.3+cvs20050625-1) unstable; urgency=low

  * New upstream cvs release on 2005-06-25.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Sun, 26 Jun 2005 14:31:54 -0600

scribus-cvs (1.3+cvs20050620-3) unstable; urgency=low

  * CVS update. Sig #11 crash bug related to libfreetype6-2.1.10 fixed.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 20 Jun 2005 17:09:29 -0600

scribus-cvs (1.3+cvs20050620-2) unstable; urgency=low

  * Added debugging statements to the Type1 font loading code.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 20 Jun 2005 15:20:17 -0600

scribus-cvs (1.3+cvs20050620-1) unstable; urgency=low

  * New upstream cvs release on 2005-06-20.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 20 Jun 2005 14:25:21 -0600

scribus-cvs (1.3+cvs20050618-1) unstable; urgency=low

  * New upstream cvs release on 2005-06-18. Built against libfreetype6-2.1.10,
    which is in unstable now.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 20 Jun 2005 13:16:53 -0600

scribus-cvs (1.3+cvs20050608-1) unstable; urgency=low

  * New upstream cvs release on 2005-06-08. First build against
    libfreetype6-2.1.9.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri, 10 Jun 2005 10:52:47 -0600

scribus-cvs (1.3+cvs20050605-1) unstable; urgency=low

  * New upstream cvs release on 2005-06-05. Hard space can be entered in the
    Story Editor (Closes: #297160).

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon,  6 Jun 2005 13:37:54 -0600

scribus-cvs (1.3+cvs20050529-1) unstable; urgency=low

  * New upstream cvs release on 2005-05-29.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 31 May 2005 16:44:12 -0600

scribus-cvs (1.3+cvs20050522-1) unstable; urgency=low

  * New upstream cvs release on 2005-05-22.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Sun, 22 May 2005 16:34:28 -0600

scribus-cvs (1.3+cvs20050510-1) unstable; urgency=low

  * New upstream cvs release on 2005-05-10.
  * debian/rules: remove the erroneous /usr/share/doc/scribus directory that
    conflicted with the stable scribus package.
  * debian/rules: Install lintian overrides properly

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 12 May 2005 11:22:32 -0600

scribus-cvs (1.3+cvs20050419-1) unstable; urgency=low

  * Package the new upstream cvs release on 2005-04-19 in honor of Craig
    Ringer tackling bug #1362.
  * Changed the names of files in debian directory to scribus-cvs to get
    overrides and icons working.
  * debian/rules: Remove the "make -f Makefile.cvs" run - not needed anymore.
  * debian/rules: Change scribus to scribus-cvs in file names.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 20 Apr 2005 09:57:01 -0600

scribus-cvs (1.3+cvs20050412-1) unstable; urgency=low

  * New upstream cvs release on 2005-04-05 - Tsoots Edition (TM).

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 12 Apr 2005 18:54:01 -0600

scribus-cvs (1.3+cvs20050405-1) unstable; urgency=low

  * New upstream cvs release on 2005-04-05.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu,  7 Apr 2005 09:55:25 -0600

scribus-cvs (1.3+cvs20050401-1) unstable; urgency=low

  * New upstream cvs release on 2005-03-31.
  * 3 Important fixes made their way into cvs in the last few minutes, so I'm
    rebuilding the package.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri,  1 Apr 2005 14:15:23 -0700

scribus-cvs (1.3+cvs20050331-1) unstable; urgency=low

  * New upstream cvs release on 2005-03-31.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri,  1 Apr 2005 13:03:55 -0700

scribus-cvs (1.3+cvs20050322-1) unstable; urgency=low

  * New upstream cvs release on 2005-03-22.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 23 Mar 2005 10:13:41 -0700

scribus-cvs (1.3+cvs20050303-1) unstable; urgency=low

  * New upstream cvs release on 2005-02-07.
  * This tree is branched to build experimental 1.3cvs packages. There will be
    no connection to the main scribus package tree.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu,  3 Mar 2005 17:13:39 -0700

scribus (1.2.1+cvs20050207-1) unstable; urgency=low

  * New upstream cvs release on 2005-02-07.
  * debian/scribus.lintian: Added overrides for short-words libs.
  * debian/rules: Added a rule to make scribus-short-words.rc non-executable.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon,  7 Feb 2005 15:55:26 -0700

scribus (1.2.1-1) unstable; urgency=low

  * New upstream release on 2005-01-08 (Closes: #289761).
  * debian/control:
    - Removed scribus-template package section as it is built
      from its own upstream source package now.
    - Added "scribus-template (<1.2.1)" to "Replaces" to resolve a
      conflict in template packaging.
  * debian/rules:
    - Removed scribus-template related commands from the binary-indep
      section.
    - Added a rule to run "make -f Makefile.cvs" to regenerate makefiles after
      patching "scribus/Makefile.am" and "scribus/Makefile.in" in
      order to prevent build failure due to the missing doc directory
      contents.
    - Added a rule to remove an upstream COPYING file from
      /usr/share/scribus/scripts/ that contained the text of GPL version 2
      license.
  * debian/copyright: updated cvs, author, and contributor information.
  * Applied a patch that removes erroneous #ifdef directives that prevented
    scribus from honoring locale environmental variables (Closes: #287929).
  * debian/scribus.lintian: updated lintian overrides.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 13 Jan 2005 14:33:15 -0700

scribus (1.2.0.final+cvs20041227-1) unstable; urgency=low

  * New upstream cvs release on 2004-12-27.
  * debian/scribus.lintian: Added overrides for non-executable sample python
    scripts.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 28 Dec 2004 11:46:08 -0700

scribus (1.2.0.final+cvs20041226-1) unstable; urgency=low

  * New upstream cvs release on 2004-12-26.
  * debian/control: Added a "Replaces" in the scribus-template section.
  * debian: Removed experimental debian directory versions accidentally left
    in there.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 27 Dec 2004 17:43:17 -0700

scribus (1.2.0.final+cvs20041209-2) unstable; urgency=low

  * Initial release of the scribus-template package. The scribus-templates
    package has been split out of the main scribus package to conserve
    bandwidth and space as it is not expected to change as often as the main
    program. The split is done at this time to coincide with the split of the
    scribus-doc package.
  * debian/scribus.1: Removed the manpage as upstream has produced its own
    manpage.
  * debian/scribus-template.changelog: A separate changelog is not necessary
    as both scribus and scribus-template are build from the same source.
  * debian/rules: Comment DH_VERBOSE out by default.
  * debian/rules: Remove the manpage installation rule.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 15 Dec 2004 23:16:32 -0700

scribus (1.2.0.final+cvs20041209-1) unstable; urgency=low

  * New upstream cvs release on 2004-12-08.
  * debian/scribus.1: Updated the manpage.
  * debian/control: Removed the superfluous entry for the scribus-doc.
  * debian/NEWS.Debian: Fix date info to reflect the changelog correctly.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri, 10 Dec 2004 13:21:23 -0700

scribus (1.2.0.final+cvs20041208-1) unstable; urgency=low

  * New upstream cvs release on 2004-12-08.
  * debian/scribus.xml: Corrected the spec URI (Closes: #283726).
  * Docs formatted for the help browser are finally available. They have been
    split out into a non-free scribus-doc package (Closes: #283826).
  * debian/rules: Added rules for the scribus-template package.
  * debian/control: Added scribus-template package.
  * debian/scribus.lintian: Added an override for the new OODraw plugin.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 09 Dec 2004 21:44:51 -0700

scribus (1.2.0.final+cvs20041026-1) unstable; urgency=low

  * New upstream cvs release on 2004-10-26.
  * debian/scribus.desktop: Fixed the mime entries and updated other values
    (Closes: #278121).
  * debian/scribus.menu: Updated the hint.
  * debian/rules: Use dh_desktop to run update-desktop-database after installing
    the scribus.desktop file.
  * debian/scribus.xml: New file. Register scribus file extensions in the mime
    database.
  * debian/control: Updated debhelper version to make sure that dh_desktop is
    available.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 28 Oct 2004 12:12:35 -0600

scribus (1.2.0.final+cvs20041004-1) unstable; urgency=low

  * New upstream cvs release on 2004-10-04.
  * README.Debian: Added a note on making fonts available if the XFree or a
    font server does not provide proper font information (Closes: #274143).

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 05 Oct 2004 21:32:16 -0500

scribus (1.2.0.final+cvs20040929-1) unstable; urgency=low

  * New upstream cvs release on 2004-09-29.
  * debian/scribus.lintian: Updated lintian overrides for the text importer.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 29 Sep 2004 14:20:55 -0500

scribus (1.2.0.final+cvs20040921-1) unstable; urgency=low

  * New upstream cvs release on 2004-09-21.
  * debian/scribus.lintian: Updated lintian overrides for the html import
    plugin.
  * debian/control: Added a build dependency on libxml2-dev (>= 2.6.11) as
    required for the new OpenOffice importer plug-in.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 21 Sep 2004 15:00:07 -0500

scribus (1.2.0.final+cvs20040911-1) unstable; urgency=low

  * New upstream cvs release on 2004-09-11.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Sun, 12 Sep 2004 23:41:36 -0500

scribus (1.2.0.final+cvs20040829-1) unstable; urgency=high

  * debian/control: fix a packaging error. Permissions on the text import
    plugin libraries must be 755 for the plugin to work and to avoid a sig 11
    scribus crash.
  * Applied a number of post-release patches from upstream that fix the
    following bugs:
    * bug     # 869: oriantation setting wrong displayed
    * bug     #1009: SuSE Patches for scribus
    * bug     #1011: Serious problems with pasting copied content from
      some applications.
    * feature #1010: Update of russian translation. many fixes
    * feature #1013: middle mouse button refreshes screen when you use it
      to paste text
    * feature #1017: Norwegian Bokmaal Translation for 1.2

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 31 Aug 2004 22:39:23 -0500

scribus (1.2.0.final-1) unstable; urgency=high

  * Final 1.2 release on 2004-08-25, urgency=high to get it into Sarge.
  * debian/scribus.linda: Fixed the linda override to stop pointing out that
    scribus Build-Depends on autoconf and automake1.7.
  * debian/control: Removed version from build-depends for libcupsys2-dev
  * Splash screen does not block the Scrapbook startup font replacement dialog
    anymore (Closes: #265750).
  * debian/copyright: Updated contributor information.
  * debian/rules: Remove obsolete configure --with-qt-dir option

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 25 Aug 2004 19:19:55 -0500

scribus (1.2.0.cvs20040714-2) unstable; urgency=medium

  * Recompile with libtiff4
  * Urgency medium since no other changes
  * Add me to Uploaders for this one upload. Normally I'm only
    sponsoring the package.

 -- Frank Lichtenheld <djpig@debian.org>  Wed, 28 Jul 2004 02:06:33 +0200

scribus (1.2.0.cvs20040714-1) unstable; urgency=low

  * New upstream cvs release on 2004-07-13. Fixes bugs related to paste
    problem and unability to copy from Properties/Geometry if object is
    locked.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 14 Jul 2004 19:41:15 -0500

scribus (1.2.0.cvs20040713-1) unstable; urgency=low

  * New upstream cvs release on 2004-07-13. (Closes: #258969).
  * debian/README.Debian: Removed the info on the sawfish and friends palette
    window ghosting workaround as the bug was fixed.
  * debian/scribus.lintian: Updated lintian overrides.
  * debian/scribus.lintian: updated the overrides to remove inapplicable
    warnings.
  * debian/control: Changed Standards-Version to 3.6.1
  * debian/control: changed "Depends" on gs to gs-gpl to reflect the package
    name change.
  * Removed the patch for big-endian system image colors for art_kmisc.c as it
    was applied upstream. (Closes: #251080).
  * debian/control: Changed the program description to clarify import/export
    capabilities and made the entire description more concise.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 13 Jul 2004 20:55:14 -0500

scribus (1.2.0.cvs20040526-1) unstable; urgency=low

  * New upstream cvs release on 2004-05-26
  * debian/control: Changed Build-Depends of libcupsys2-dev to version
    (>=1.1.20final+cvs20040330-4) for migration to libcupsys2-gnutls10
    (Closes: #251109, #251361).
  * debian/README.Debian: Added a note about workarounds for PostScript2
    printers that don't understand Scribus's PS3 output (Closes: #251498).
  * debian/README.Debian: Removed an old note on CUPS and SSL support as the
    libcupsys2-gnutls10 / libcupsys2-dev provide SSL support now.
  * Applied a patch that might resolve #251080. Testing on appropriate arches
    is requested before the bug can be resolved or more work on this issue 
    considered.
  * debian/control: Changed Build-Depends from libjpeg-dev libjpeg62-dev to
    and libz-dev to zlib1g-dev to reflect the package changes.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri, 28 May 2004 17:46:58 -0500

scribus (1.2.0.cvs20040514-1) unstable; urgency=low

  * New upstream cvs release on 2004-05-14

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri, 14 May 2004 20:55:29 -0500

scribus (1.2.0.cvs20040512-1) unstable; urgency=low

  * New upstream cvs release on 2004-05-12
  * debian/scribus.1: Updated the man page: Fixed a typo; updated and sorted
    alphabetically the list of available languages; update the list of
    environmental variables used for language selection.
  * Scribus now makes use of LC_ALL>LC_MESSAGES>LANG variables if the
    -lang xx command line option is not used (Closes: #201797).

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 13 May 2004 00:19:00 -0500

scribus (1.2.0.cvs20040510-1) unstable; urgency=low

  * New upstream cvs release on 2004-05-10
  * debian/control: Added "python-tk" to the "Depends" to make the FontSampler
    script work out of the box (Closes: #248032).

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 11 May 2004 16:59:08 -0500

scribus (1.2.0.cvs20040506-1) unstable; urgency=low

  * New upstream cvs release on 2004-05-06
  * debian/control: reverted the build-dep patch from Apr 27 as the new
    lintian version requires Build-Depends to be on one line.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri,  7 May 2004 14:49:44 -0500

scribus (1.2.0.cvs20040503-1) unstable; urgency=low

  * New upstream cvs release on 2004-05-03
  * debian/control: Added "Replaces:" the old scribus-doc-xx packages from
    woody to facilitate upgrading (Closes: #247149).

 -- Oleksandr Moskalenko <malex@tagancha.org>  Sun, 02 May 2004 18:43:05 -0500

scribus (1.2.0.cvs20040429-1) unstable; urgency=low

  * New upstream cvs release on 2004-04-29
  * debian/scribus.linda: Fixed the first regexp and added the proper tag for
    automake* override. Linda is beautiful _and_ silent now, as should be.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 29 Apr 2004 20:55:51 -0500

scribus (1.2.0.cvs20040428-1) unstable; urgency=low

  * New upstream cvs release on 2004-04-28
  * debian/README.Debian: Reformatted it and added headlines for readability.
  * debian/scribus.linda: New release of linda started issuing warnings
    similar to those of lintian, so an overrides file was made to account for
    the necessary deviations from the debian requirements.
  * debian/scribus.lintian: Renamed the file from lintian-overrides in order
    to use a consistent mechanism for installation of overrides for linda and
    lintian
  * debian/rules: Changed the way lintian and linda overrides are installed

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 28 Apr 2004 12:49:52 -0500

scribus (1.2.0.cvs20040427-1) unstable; urgency=low

  * New upstream cvs release on 2004-04-27.
  * debian/control: Apply a patch by Nicolas Boos to wrap the build-depends
    lines for easier reading.
  * debian/README.debian: Added a note on cups and ssl and expanded the
    explanation of the palette window ghosting qt/sawfish problem.
  * debian/scribus-debian.xpm: Renamed to scribus.xpm
  * debian/scribus-debian-3d.xpm: Renamed to scribus-3d.xpm
  * debian/scribus.desktop: Fixed/changed the location of the icon file.
  * debian/scribus.menu: Changed the location of the icon file.
  * debian/rules: Changed the name of the icon file.
  * debian/rules: Changed how the
    $(DEBIAN_DIR)/$(package)/usr/share/applications is created to install -d
    from makedir.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 26 Apr 2004 22:20:28 -0500

scribus (1.2.0.cvs20040406-2) unstable; urgency=low

  * New upstream cvs release on 2004-04-07.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 07 Apr 2004 18:02:42 -0500

scribus (1.2.0.cvs20040406-2) unstable; urgency=low

  * debian/control: Change the dependency on gs-aladdin to gs-afpl that
    supersedes it (Closes: #242534).

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 07 Apr 2004 10:04:03 -0500

scribus (1.2.0.cvs20040406-1) unstable; urgency=low

  * New upstream cvs release on 2004-04-06.
  * debian/rules: Removed commands to move icons to the FHS location as the
    issue has been fixed upstream.
  * patches/00-util.cpp.patch: removed patch as the issue has been fixed
    upstream. See the changelog entry above.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 06 Apr 2004 17:12:55 -0500

scribus (1.2.0.cvs20040329-1) unstable; urgency=low

  * New upstream cvs release on 2004-03-29.
  * debian/scribus.1: Amended the man page to include en_GB lang.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 30 Mar 2004 11:49:55 -0500

scribus (1.2.0.cvs20040317-2) unstable; urgency=low

  * debian/control: Removed "Conflicts:" and "Replaces:" scribuscvs as there
    should be no old unofficial scribuscvs packages left in the wild by now.
  * debian/README.Debian: Added a note about the Tools windows ghosting
    workaround for the sawfish bug.
  * debian/README.Debian: Added a note about installing "Recommends" to
    prevent Scribus from not starting due to the absence of GhostScript fonts
    (Closes: #238658).

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 18 Mar 2004 10:47:05 -0500

scribus (1.2.0.cvs20040317-1) unstable; urgency=low

  * New upstream cvs release on 2004-03-17.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 18 Mar 2004 10:47:05 -0500

scribus (1.2.0.cvs20040316-1) unstable; urgency=low

  * New upstream cvs release on 2004-03-14.
  * Added the Option to delete all Objects on a Layer, when deleting this
    Layer (Closes: #208473).
  * Updated the man page with changes made by Frank Lichtenheld

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 16 Mar 2004 16:03:30 -0500

scribus (1.2.0.cvs20040301-1) unstable; urgency=low

  * debian/rules: Removed the "else condition" in checking for
    DEB_BUILD_OPTIONS to use the CFLAGS setting inherited from
    DEB_HOST_GNU_TYPE.
  * debian/rules: Removed a check for DEB_BUILD_OPTIONS="nostrip" as
    "dh_strip" will correctly handle the situation if this environmental
    variable is present.
  * debian/scribus.links: Added a link for sample python scripts from
    /usr/share/scribus/samples to /usr/share/doc/scribus/examples.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon,  1 Mar 2004 22:26:34 -0500

scribus (1.2.0.cvs20040228-2) unstable; urgency=low

  * debian/rules: revert back to installing scribus-debian.xpm for menu icon
    as some of the more lightweight window managers have a problem with .png
  * debian/scribus.menu: Use scribus-debian.xpm as a menu icon
  * debian/scribus.desktop: Use scribus-debian.xpm as a menu icon
  * debian/lintian-overrides: remove the .png icon warning override

 -- Oleksandr Moskalenko <malex@tagancha.org>  Sun, 29 Feb 2004 17:30:08 -0500

scribus (1.2.0.cvs20040228-1) unstable; urgency=low

  * New upstream cvs release on 2004-02-27.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Sat, 28 Feb 2004 22:39:26 -0500

scribus (1.2.0.cvs20040225-2) unstable; urgency=low

  * debian/rules: install distribution changelog and cvs changelog separately.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri, 27 Feb 2004 10:15:56 -0500

scribus (1.2.0.cvs20040225-1) unstable; urgency=low

  * New upstream cvs release on 2004-02-25.
  * debian/scribus.desktop: Fixed mime-type problem.
  * debian/rules: Use scribus.png as the menu icon instead of scribus-debian.xpm.
  * debian/scribus.menu: Use scribus.png as the menu icon.
  * debian/rules: Use DEB_HOST_GNU_TYPE compile flag selection again.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Thu, 26 Feb 2004 13:06:26 -0500

scribus (1.2.0.cvs20040224-2) unstable; urgency=low

  * Added "-g -Wall" CFLAGS flags per Debian Policy 10.1

 -- Oleksandr Moskalenko <malex@tagancha.org>  Wed, 25 Feb 2004 09:37:03 -0500

scribus (1.2.0.cvs20040224-1) unstable; urgency=low

  * New upstream cvs release on 2004-02-24.
  * debian/scribus.links. Changed the /usr/share/doc/scribus/en symlink to
    point to the new location of Scripter docs in /usr/share/scribus/doc/en/

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 24 Feb 2004 18:25:40 -0500

scribus (1.2.0.cvs20040223-2) unstable; urgency=low

  * Added lintian-overrides as the library permissions must be 755 per
    upstream policy.
  * debian/rules:
    + install:
      - Added rules to install the lintian overrides file.
    + make variables:
      - Added support for DEB_BUILD_OPTIONS (noopt and nostrip). Done with
        help from jello (Joe Nahmias) and beta3 from #debian-mentors.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Tue, 24 Feb 2004 12:40:04 -0500

scribus (1.2.0.cvs20040223-1) unstable; urgency=low

  * New upstream cvs release on 2004-02-23.
  * README.Debian: Made a note about the freetype being the source of the bug
    in font outline handling.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Mon, 23 Feb 2004 20:20:52 -0500

scribus (1.2.0.cvs20040221-1) unstable; urgency=low

  * New upstream cvs release on 2004-02-21.
  * scribus.uk.ts and scribus.uk.qm: Updated Ukrainian translation.
  * /usr/share/doc/scribus/changelog.gz. Combined release and cvs changelogs.
  * Added debian/README.Debian to note font outline issues.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Sat, 21 Feb 2004 14:11:04 -0500

scribus (1.2.0.cvs20040219-1) unstable; urgency=low

  * New upstream cvs release on 2004-02-19 (Closes: #217683).
  * Fixed a typo in scribus/Makefile that prevented "make dist" from upstream
    cvs sources.
  * File->New if dir set in path->icc profiles crash was fixed upstream
    (Closes: #226113).
  * User defined styles can now be applied from the Properties Palette, or
    from within the Story Editor (Closes: #201801).
  * Corner radius setting now honors the default units (Closes: #202952).
  * Page menu is now accessible while editing a template (Closes: #202476).
  * Inserting text into a frame in a reopened .scd file crash has been fixed
    upstrem (Closes: #219214).
  * Default button in the Edit->Paragraph Styles... is "OK" (Closes: #202481).
  * Scribus uses fonts provided by Defoma now (Closes: #216829).
  * Added debian/debian.desktop for Gnome menu (Closes: #226348).
  * Added debian/scribus.doc-base for inclusion into doc-base per
    recommendation of Frank Lichtenheld
  * Added debian/scribus.links for proper creation of a link from
    /usr/lib/scribus/doc/en/ to /usr/share/doc/scribus/en during the build.
  * debian/rules: use ./configure --with-qt-dir as a more general way to
    include qt3 headers per recommendation of Chris Cheney on #debian-kde.
  * debian/scribus.menu: changed needs=X11 -> needs="X11" per recommendation
    of Frank Lichtenheld <djpig@debian.org>.
  * debian/rules: deleted commented lines to make file more readable per
    recommendation of Frank Lichtenheld.
  * debian/control:
    + Build-depends:
      -  gcc (>=3.2.0) instead of c++-compiler per upstream recommendation.
      -  added libfreetype6-dev (>= 3.1.3) per upstream recommendation.
      -  added autoconf (>=2.57) per upstream recommendation.
      -  added automake1.7 (>=1.7) per upstream recommendation.
    + Depends:
      -  gs (>= 7.07) instead of 5.50 per upstream recommendation.
      -  gs-aladdin (>= 7.04) instead of 5.50 per upstream recommendation.
      -  gs-esp (>= 7.07) instead of 7.05 per upstream recommendation.
  * debian/scribus.1: Rewrote the manpage. More works needs to be done, yet.
  * debian/copyright: Added instructions on CVS checkout. Updated copyright
    date from -2003 to -2004. Added translators.

 -- Oleksandr Moskalenko <malex@tagancha.org>  Fri, 20 Feb 2004 13:49:27 -0500

scribus (1.1.4-2) unstable; urgency=low

  * Orphanage upload.

 -- Wolfgang Sourdeau <was@debian.org>  Thu, 15 Jan 2004 23:15:05 -0500

scribus (1.1.4-1) unstable; urgency=low

  * New upstream release.
  * debian/control: Build-depends on python2.3-dev instead of
    python2.2-dev.

 -- Wolfgang Sourdeau <was@debian.org>  Sat,  3 Jan 2004 02:55:10 -0500

scribus (1.1.2-2) unstable; urgency=low

  * debian/control: Build-depends on libcups2-dev.
  * scribus/scribus.cpp: fixed a bug preventing colour management.

 -- Wolfgang Sourdeau <was@debian.org>  Tue, 18 Nov 2003 21:10:40 -0500

scribus (1.1.2-1) unstable; urgency=low

  * New upstream release. (Closes: #212334)
  * debian/control: don't suggest any doc package since they are now
    separated from the upstream source. (Closes: #217327)
  * Autosave seems to now work properly. (Closes: #217475)  
  * Plugins are correctly detected now (patch #02). (Closes: #205441)
  * Importing images works fine now. (Closes: #217462)
  * Copy/Pasting images works fine now. (Closes: #202640)
  * This error should not occur anymore. (Closes: #203140)
  * Templates are now appliable onto ranges of pages. (Closes: #202478)

 -- Wolfgang Sourdeau <was@debian.org>  Mon, 17 Nov 2003 00:57:43 -0500

scribus (1.0.1-1) unstable; urgency=low

  * New upstream release

 -- Wolfgang Sourdeau <was@debian.org>  Tue, 30 Sep 2003 21:04:04 -0400

scribus (1.0-1) unstable; urgency=low

  * debian/patches subdirectory created. It contains all the patches that
    are applied on the main source tree.
  * Override NMU. (Closes: #201770).
  * scribus-doc-en is back again. Documentation removed from the main
    package.
  * Manpage written.
  * debian/control: Standards-version set to 3.6.0.
  * debian/copyright: updated copyright information.

 -- Wolfgang Sourdeau <was@debian.org>  Wed, 30 Jul 2003 14:48:31 -0400

scribus (1.0-0.1) unstable; urgency=low

  * NMU
  * New upstream release (Closes: #201770).

 -- Yann Dirson <dirson@debian.org>  Tue, 22 Jul 2003 23:16:49 +0200

scribus (0.9.10-1) unstable; urgency=low

  * New upstream release.

 -- Wolfgang Sourdeau <was@debian.org>  Sun,  1 Jun 2003 13:38:56 -0400

scribus (0.9.9-1) unstable; urgency=low

  * New upstream release.

 -- Wolfgang Sourdeau <was@debian.org>  Fri, 25 Apr 2003 13:37:30 -0400

scribus (0.9.6-2) unstable; urgency=low

  * Use the new QT 3 header layout. (Closes: #181662)

 -- Wolfgang Sourdeau <was@debian.org>  Wed, 26 Feb 2003 22:17:59 -0500

scribus (0.9.6-1) unstable; urgency=low

  * New upstream release.
  * Depends on gs-esp as well as every other declinations of gs that I could
    think of. (Closes: #171566)
  * Rebuild againt new package of libqt3. (Closes: #180064)
  * Depends explicitly on version 3 of debhelper.
  * Only "Recommends" (instead of "Depends") on xfonts-scalable.
  * Menu icon resize to 32px32p and adapted to the more limited cmap.xpm
    palette.

 -- Wolfgang Sourdeau <was@debian.org>  Sun, 16 Feb 2003 10:56:46 -0500

scribus (0.9.2-1) unstable; urgency=low

  * New upstream release.
  * Scribus should not crash when loading files with unknown fonts. See
    upstream ChangeLog. (Closes: #152577)
  * I can't but give a try from time to time since this bug really applies
    to libqt. (Closes: #158051)
  * char signedness problem on alpha 64 should be fixed with this release.
    (Closes: #162755)
  * No answer, problem fixed? (Closes: #162947)

 -- Wolfgang Sourdeau <was@debian.org>  Sat, 16 Nov 2002 17:38:45 -0500

scribus (0.9.1-1) unstable; urgency=low

  * New upstream release.

 -- Wolfgang Sourdeau <was@debian.org>  Sun, 10 Nov 2002 11:42:47 -0500

scribus (0.8-1) unstable; urgency=low

  * New upstream release.

 -- Wolfgang Sourdeau <was@debian.org>  Sat, 28 Sep 2002 15:40:55 -0400

scribus (0.7.8-1) unstable; urgency=low

  * New upstream release. (Closes: #152170, #156629)
  * Should be fixed with this release. (Closes: #158051)
  * Build-depend on liblcms1-dev (>= 1.09).

 -- Wolfgang Sourdeau <was@debian.org>  Sun, 15 Sep 2002 13:43:47 -0400

scribus (0.7.5-2.2) unstable; urgency=low

  * NMU
  * Fix libpng-dev --> libpng3-dev.  Sigh.

 -- LaMont Jones <lamont@debian.org>  Mon, 19 Aug 2002 22:01:01 -0600

scribus (0.7.5-2.1) unstable; urgency=low

  * NMU
  * Fix build-depends.  Closes: #152170

 -- LaMont Jones <lamont@debian.org>  Fri, 16 Aug 2002 16:34:55 -0600

scribus (0.7.5-2) unstable; urgency=low

  * Build-depends on liblcms1-dev instead of liblcms-dev. (Closes: #151216)
  * Use the updated menu icon for scribus.

 -- Wolfgang Sourdeau <was@debian.org>  Sat, 29 Jun 2002 04:23:24 -0400

scribus (0.7.5-1) unstable; urgency=low

  * New Upstream Release. (Closes: #147328, #148148, #149910, #141299)
  * Bug fixed in the meantime. (Closes: #124474)

 -- Wolfgang Sourdeau <was@debian.org>  Wed, 26 Jun 2002 19:02:43 -0400

scribus (0.6-1) unstable; urgency=low

  * New Upstream Release.
  * Make it compile on Alpha for real.

 -- Wolfgang Sourdeau <was@debian.org>  Sun, 14 Apr 2002 20:05:56 -0400

scribus (0.5.8-1) unstable; urgency=low

  * New Upstream Release.

 -- Wolfgang Sourdeau <was@debian.org>  Mon,  1 Apr 2002 19:32:46 -0500

scribus (0.5.6-2) unstable; urgency=low

  * Build-depends on libpng2-dev instead og libpng-dev. (Closes: #138706)

 -- Wolfgang Sourdeau <was@debian.org>  Mon, 18 Mar 2002 13:49:06 -0500

scribus (0.5.6-1) unstable; urgency=low

  * New Upstream Release.

 -- Wolfgang Sourdeau <was@debian.org>  Tue, 12 Mar 2002 18:12:10 -0500

scribus (0.5.5-1) unstable; urgency=low

  * New Upstream Release.

 -- Wolfgang Sourdeau <was@debian.org>  Mon, 18 Feb 2002 01:29:27 -0500

scribus (0.5.4-3) unstable; urgency=low

  * Enable lcms in debian/rules for alpha too after fixing #132420.

 -- Wolfgang Sourdeau <was@debian.org>  Tue,  5 Feb 2002 15:52:05 -0500

scribus (0.5.4-2) unstable; urgency=low

  * Updated admin/config.sub and admin/config.guess from
    ftp://ftp.gnu.org/pub/gnu/config/. #120103 got unfixed during the
    last update. (Closes: #132412)
  * Added libtiff3g-dev as build dependency. (Closes: #132413)
  * Help scribus build on Alpha (in debian/rules). (Closes: #132420)

 -- Wolfgang Sourdeau <was@debian.org>  Tue,  5 Feb 2002 02:13:17 -0500

scribus (0.5.4-1) unstable; urgency=low

  * New Upstream Release.
  * Removed scribus/usr/include in debian/rules.
  * Added LIBS="-lm" before the configure command in debian/rules so that
    libcms get detected correctly. Added -I/usr/include/lcms to CFLAGS.

 -- Wolfgang Sourdeau <was@debian.org>  Mon,  4 Feb 2002 00:03:26 -0500

scribus (0.5.3-1) unstable; urgency=low

  * New Upstream Release.
  * added liblcms-dev as build dependency in debian/control.

 -- Wolfgang Sourdeau <was@debian.org>  Tue, 22 Jan 2002 15:25:50 -0500

scribus (0.5-2) unstable; urgency=low

  * Fix spelling error in package description. (Closes: #125343)
  * Modified description to point out the french documentation package.

 -- Wolfgang Sourdeau <was@debian.org>  Tue, 18 Dec 2001 11:21:04 -0500

scribus (0.5-1) unstable; urgency=low

  * New Upstream Release.

 -- Wolfgang Sourdeau <was@debian.org>  Sun, 16 Dec 2001 15:55:30 -0500

scribus (0.4.10-2) unstable; urgency=low

  * Fix a problem when exporting document to a PDF filename containing
    spaces... 

 -- Wolfgang Sourdeau <was@debian.org>  Sat,  1 Dec 2001 23:26:00 -0500

scribus (0.4.10-1) unstable; urgency=low

  * New Upstream Release.
  * Updated admin/config.sub and admin/config.guess from
    ftp://ftp.gnu.org/pub/gnu/config/ (Closes: #120103)
  * scribus: suggests scribus-doc-fr too.

 -- Wolfgang Sourdeau <was@debian.org>  Wed, 28 Nov 2001 01:23:45 -0500

scribus (0.4.9-1) unstable; urgency=low

  * New Upstream Release.
  * New documentation package: scribus-doc-fr.
  * Moved from section 'editors' to section 'graphics' (dito in
    debian/scribus.menu).

 -- Wolfgang Sourdeau <was@debian.org>  Sun, 18 Nov 2001 15:59:24 -0500

scribus (0.4.8-3) unstable; urgency=low

  * Depends on either gs or gs-aladdin in debian/control (Closes: #119828)

 -- Wolfgang Sourdeau <was@debian.org>  Fri, 16 Nov 2001 16:50:41 -0500

scribus (0.4.8-2) unstable; urgency=low

  * Applied patch to fix a segfault occuring when scrolling the
    mouse-wheel on an empty view.

 -- Wolfgang Sourdeau <was@debian.org>  Wed, 14 Nov 2001 23:09:55 -0500

scribus (0.4.8-1) unstable; urgency=low

  * New upstream release.
  * Depends on gs (>= 5.50), gsfonts-x11 | xfonts-scalable.

 -- Wolfgang Sourdeau <was@debian.org>  Wed, 14 Nov 2001 22:08:17 -0500

scribus (0.4.7-2) unstable; urgency=low

  * Uncapitalize nouns in the package descriptions. (Closes: #118409)

 -- Wolfgang Sourdeau <was@debian.org>  Thu,  8 Nov 2001 02:29:16 -0500

scribus (0.4.7-1) unstable; urgency=low

  * New Upstream Release.
  * The initial released closed a wrong bug number. (Closes: #117839)
  * Documentation packages put in the doc section.
  * Merged some interesting things from Nicolas Boos's original debian subdirectory.

 -- Wolfgang Sourdeau <was@debian.org>  Wed,  7 Nov 2001 00:05:24 -0500

scribus (0.4.6-1) unstable; urgency=low

  * Initial release. (closes: #117793)

 -- Wolfgang Sourdeau <was@debian.org>  Wed, 31 Oct 2001 18:25:15 -0500