File: changelog

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

  * debian/control
    - Set Build-Depends s/libgtk2.0-dev/libgtk-3-dev/ (Closes: #967764)

 -- Hideki Yamane <henrich@debian.org>  Tue, 04 Aug 2020 22:47:30 +0900

sylpheed (3.7.0-7) unstable; urgency=medium

  * debian/patches
    - Add 0011-update-.desktop-entry-for-newest-desktop-entry-spec.patch
      Update .desktop file
  * debian/changelog
    - Trim trailing whitespace.
  * debian/rules
    - Drop transition for old debug package migration.
  * debian/control
    - Drop unnecessary Build-Depends: debhelper

 -- Hideki Yamane <henrich@debian.org>  Wed, 06 May 2020 05:05:07 +0900

sylpheed (3.7.0-6) unstable; urgency=medium

  * Switch to enchant-2, bump libgtkspell-dev build-dependency to avoid
    linking against both versions of libenchant (Closes: #949720)
    Thanks to Laurent Bigonville for the patch.
  * Update Standars-Version to 4.5.0, no other changes
  * Update manual patch to fix warning and headers

 -- Ricardo Mones <mones@debian.org>  Sun, 26 Jan 2020 23:10:08 +0100

sylpheed (3.7.0-5) unstable; urgency=medium

  [ Hideki Yamane ]
  * debian/control
    - set Standards-Version: 4.4.0
    - use dh12
    - add Rules-Requires-Root: no
  * debian/copyright
    - use https
  * drop debian/.gitlab-ci.yml and use debian/salsa-ci.yml for CI

  [ Ricardo Mones ]
  * Remove flex-old from Build-Depends


 -- Hideki Yamane <henrich@debian.org>  Sat, 31 Aug 2019 23:51:17 +0900

sylpheed (3.7.0-4) unstable; urgency=medium

  [ Hideki Yamane ]
  * Set Standards-Version: 4.1.4 with no change

  [ Ricardo Mones ]
  * Patch to set SNI until available in new upstream release.
    Thanks to Antonio Ospite for the patch (Closes: #908063)
  * Depends: add sensible-utils to binary

 -- Ricardo Mones <mones@debian.org>  Tue, 18 Sep 2018 23:45:55 +0200

sylpheed (3.7.0-3) unstable; urgency=medium

  * debian/control
    - adjust Dependencies (Closes: #889974)

 -- Hideki Yamane <henrich@debian.org>  Sun, 04 Mar 2018 20:27:20 +0900

sylpheed (3.7.0-2) unstable; urgency=medium

  * debian/control
    - drop Build-Depends: libdbus-glib-1-dev
      It was introduced since enchant with zemberek crashes without it in 3.0,
      however, enchant package was built with "--disable-zemberek" option,
      so it isn't necessary.
    - add Build-Depends: dh-exec to modify icon files' name
  * debian/patches
    - add 0008-detect-oniguruma-without-onig-config.patch to use libonig-dev
      properly (Closes: #889971)
  * debian/sylpheed.install
    - install icon files to appropriate locations (Closes: #823018)
  * debian/sylpheed.dirs
    - adjust as above
  * debian/dirs
    - unused, drop it
  * debian/sylpheed-debian.xpm
    - menu system was already deprecated, drop it

 -- Hideki Yamane <henrich@debian.org>  Mon, 12 Feb 2018 07:29:30 +0900

sylpheed (3.7.0-1) unstable; urgency=medium

  [ Hideki Yamane ]
  * New upstream release (3.7.0beta1)
  * debian/control
    - use https for upstream site
    - set Build-Depends: debhelper (>= 11)
    - set Standards-Version: 4.1.3
    - Vcs-* moves to salsa.debian.org
  * debian/watch
    - use https for upstream site
    - use version4
  * debian/compat
    - set 11
  * debian/rules
    - drop unnecessary --parallel option, it is default
  * debian/patches
    - add 0007-Specify-MACRO_DIRS-as-general.patch
  * debian/symbols
    - update it

  [ Ricardo Mones ]
  * New upstream release
  * debian/symbols
    - update again
  * debian/patches/*.diff
    - restore DEP3 info inadvertently lost in 4b480fee
  * debian/copyright
    - update year ranges and authors

 -- Hideki Yamane <henrich@debian.org>  Sun, 04 Feb 2018 20:26:28 +0900

sylpheed (3.6.0-1) unstable; urgency=medium

  [ Kentaro Hayashi ]
  * New upstream release

  [ Ricardo Mones ]
  * Team upload (Closes: #866621)
  * debian/control
  - Update Kentaro's address to avoid NMU warnings from lintian
  * debian/control, debian/rules
  - Disable JPilot: its library source package has not been updated
    since 2015 and upstream sites have vanished (Closes: #754353)

 -- Ricardo Mones <mones@debian.org>  Fri, 07 Jul 2017 19:31:17 +0200

sylpheed (3.6.0~beta1-1) unstable; urgency=medium

  [ Kentaro Hayashi ]
  * New upstream development release
  * debian/control
    - Update Standards-Version to 4.0.0 (no other changes required)

  [ Ricardo Mones ]
  * Team upload (Closes: #865750)
  * debian/rules
    - Do not disable PIE (Closes: #865697) Patch by Adrian Bunk, thanks!

 -- Kentaro Hayashi <hayashi@clear-code.com>  Sat, 24 Jun 2017 21:09:52 +0900

sylpheed (3.5.1-2) unstable; urgency=medium

  * debian/control
    - update Build-Depends to cope with changes in gpgme (Closes: #846691)

 -- Ricardo Mones <mones@debian.org>  Sun, 04 Dec 2016 22:45:25 +0100

sylpheed (3.5.1-1) unstable; urgency=medium

  * New upstream release
  * debian/uscan.log
    - remove file inadvertently added before
  * debian/control
    - Update Standards-Version to 3.9.8 (no other changes required)
  * debian/sylpheed.symbols
    - Add new functions appearing in this release

 -- Ricardo Mones <mones@debian.org>  Fri, 29 Jul 2016 13:34:37 +0200

sylpheed (3.5.0-2) unstable; urgency=medium

  * debian/control
    - add HAYASHI Kentaro <hayashi@clear-code.com> for Uploaders as upstream.
      Welcome!
    - set Standards-Version: 3.9.7 with no changes
    - drop sylpheed-dbg to migrate -dbgsym package
  * debian/rules
    - use "dh_strip --dbgsym-migration='sylpheed-dbg (<< 3.5.0-2~)'"

 -- Hideki Yamane <henrich@debian.org>  Sat, 02 Apr 2016 23:21:16 +0900

sylpheed (3.5.0-1) unstable; urgency=medium

  * New upstream release
  * fix debian/watch

 -- Hideki Yamane <henrich@debian.org>  Tue, 26 Jan 2016 21:02:15 +0900

sylpheed (3.5.0~rc2-1) unstable; urgency=medium

  * New upstream release

 -- Hideki Yamane <henrich@debian.org>  Mon, 28 Dec 2015 19:33:34 +0900

sylpheed (3.5.0~rc-1) unstable; urgency=medium

  * New upstream release
  * fix debian/watch file
  * remove debian/menu to fix "command-in-menu-file-and-desktop-file"
  * debian/control
    - fix lintian warning "pre-depends-directly-on-multiarch-support"

 -- Hideki Yamane <henrich@debian.org>  Sat, 28 Nov 2015 07:05:20 +0900

sylpheed (3.5.0~beta3-1) unstable; urgency=medium

  * New development relase
  * debian/control
  - Update VCS-* URLs.
  - Add Hideki Yamane to uploaders.
  * debian/sylpheed.symbols
  - Add symbol 'procmime_get_tmp_file_name_for_user'.

 -- Ricardo Mones <mones@debian.org>  Thu, 20 Aug 2015 11:39:01 +0200

sylpheed (3.5.0~beta1~r3426-1) unstable; urgency=medium

  * New subversion snapshot
  * debian/control
  - Add Depends on pinentry-gtk2 (Closes: #738485)
  - Update Standards-Verson to 3.9.6 (no other changes required)
  * debian/copyright
  - Fix wilcard usage in Files paragraphs and update years
  * debian/watch, debian/upstream/signing-key.asc
  - Add upstream signing key for future releases

 -- Ricardo Mones <mones@debian.org>  Tue, 30 Sep 2014 17:09:57 +0200

sylpheed (3.5.0~beta1~r3420-1) unstable; urgency=high

  * New subversion snapshot
  - Includes commit fixing mailbox locking to be NFS-safe as required
    by Debian Policy §11.6 (Closes: #746389)
  * debian/patches/09_desktop_file_fixes.diff
  - Remove, already added upstream
  * debian/patches/90fix_ftbfs_hurd_i386.diff
  - Remove, orig tarball generated with updated autotools

 -- Ricardo Mones <mones@debian.org>  Fri, 13 Jun 2014 10:56:46 +0200

sylpheed (3.4.1-1) unstable; urgency=high

  * New upstream release
  - Fixes bug causing mail to be lost with POP3 (Closes: #743749)
  * debian/sylpheed.symbols
  - Add symbols file for shared libraries within sylpheed package

 -- Ricardo Mones <mones@debian.org>  Mon, 07 Apr 2014 10:06:56 +0200

sylpheed (3.4.0-1) unstable; urgency=medium

  * New upstream release
  * debian/control
  - Remove inactive uploaders
  * debian/watch
  - Add bz2 extension to be watched and comment on how upstream works
  * debian/patches/09_desktop_file_fixes.diff
  - Rework and rename previous 09 patch to add Keywords entry
  * debian/copyright
  - Add licenses for new libsylph/ssl_hostname_validation.[ch]

 -- Ricardo Mones <mones@debian.org>  Tue, 01 Apr 2014 01:13:50 +0200

sylpheed (3.4.0~beta7-1) unstable; urgency=medium

  * New upstream development release

 -- Ricardo Mones <mones@debian.org>  Mon, 16 Dec 2013 01:21:19 +0100

sylpheed (3.4.0~beta6-1) unstable; urgency=low

  * New upstream development release
  - Includes updated config.{sub,guess} (Closes: #727981)
  * debian/rules
  - Remove unrecognized option
  * debian/control
  - Update Vcs-* fields to use canonical URLs
  - Update Standards-Verson to 3.9.5 (no other changes required)
  - Update sylpheed-i18n long description to add Finnish and Basque

 -- Ricardo Mones <mones@debian.org>  Wed, 30 Oct 2013 01:29:01 +0100

sylpheed (3.4.0~beta4-1) unstable; urgency=low

  * New upstream development release
  * debian/patches/90fix_ftbfs_hurd_i386.diff
  - Update patch to cope with configure changes

 -- Ricardo Mones <mones@debian.org>  Wed, 29 May 2013 12:53:35 +0200

sylpheed (3.4.0~beta3-1) experimental; urgency=low

  * New upstream development release

 -- Ricardo Mones <mones@debian.org>  Tue, 02 Apr 2013 00:11:45 +0200

sylpheed (3.4.0~beta2-1) experimental; urgency=low

  * New upstream development release

 -- Ricardo Mones <mones@debian.org>  Sun, 17 Feb 2013 16:24:52 +0100

sylpheed (3.4.0~beta1-1) experimental; urgency=low

  * New upstream development release
  * debian/sylpheed.pod, debian/rules, debian/clean
  - Update manpage and rewritten into pod format.
  * debian/sylpheed.1
  - Removed, generated from pod file now.

 -- Ricardo Mones <mones@debian.org>  Sun, 03 Feb 2013 16:56:50 +0100

sylpheed (3.3.0-1) unstable; urgency=low

  * New upstream release
  * debian/rules
  - Enable hardening flags (Closes: #678114) thanks to Hideki Yamane.

 -- Ricardo Mones <mones@debian.org>  Wed, 14 Nov 2012 10:19:02 +0100

sylpheed (3.3.0~rc0-1) experimental; urgency=low

  * New upstream development release

 -- Ricardo Mones <mones@debian.org>  Mon, 05 Nov 2012 12:43:36 +0100

sylpheed (3.3.0~beta2-1) experimental; urgency=low

  * New upstream development release
  * debian/patches/08x_scheme_handler_and_es_comment.diff
  - Removed, scheme handler already upstream
  * debian/patches/09_exec_param_and_es_comment.diff
  - Added with remaining changes

 -- Ricardo Mones <mones@debian.org>  Mon, 01 Oct 2012 02:26:26 +0200

sylpheed (3.3.0~beta1-1) experimental; urgency=low

  * New upstream development release

 -- Ricardo Mones <mones@debian.org>  Wed, 01 Aug 2012 00:29:35 +0200

sylpheed (3.2.0-1) unstable; urgency=low

  * New upstream release
  * debian/rules
  - Enable parallel building
  - Fix missing new line escape in override_dh_auto_configure

 -- Ricardo Mones <mones@debian.org>  Fri, 29 Jun 2012 10:15:36 +0200

sylpheed (3.2.0~rc0-1) unstable; urgency=low

  * New upstream candidate release

 -- Ricardo Mones <mones@debian.org>  Mon, 25 Jun 2012 11:59:25 +0200

sylpheed (3.2.0~beta9-1) unstable; urgency=medium

  * New upstream beta release
  * debian/patches/90fix_ftbfs_hurd_i386.diff
  - Added to fix FTBFS in hurd-i386 due to rpath, original patch
    by Samuel Thibault (Closes: #677351)
  - Urgency set to medium because of important severity bug
  * debian/sylpheed.docs.in, debian/create-docs-sh
  - Removed leftovers from pre-dh packaging
  * debian/sylpheed.docs
  - Added historical NEWS files

 -- Ricardo Mones <mones@debian.org>  Mon, 18 Jun 2012 22:39:57 +0200

sylpheed (3.2.0~beta8-1) unstable; urgency=low

  * New upstream beta release
  * debian/patches/09fix_pointer_cast_size_mismatch.diff
  - Removed, applied upstream
  * debian/control
  - Add curl to suggested packages (used by update checking)

 -- Ricardo Mones <mones@debian.org>  Thu, 07 Jun 2012 14:49:51 +0200

sylpheed (3.2.0~beta7-1) unstable; urgency=low

  * New upstream beta release
  - Includes corrected Glib includes (Closes: #665614)
  * debian/README.Debian
  - Add details about supported mbox format (Closes: #295435)
  * debian/compat, debian/control
  - Upgrade compatibility level to 9
  - Add Pre-Depends on ${misc:Pre-Depends} and multiarch-support
    to packages containing shared libs
  - Remove Breaks/Replaces: conflicting versions are behind oldstable
  * debian/sylpheed.install, debian/sylpheed-plugins.install
  - Support multiarch triplets for files under usr/lib/
  * debian/rules
  - Use $(DEB_HOST_MULTIARCH) to set plugin directory
  * debian/patches/09fix_pointer_cast_size_mismatch.diff
  - Updated to use Glib macros as suggested by upstream

 -- Ricardo Mones <mones@debian.org>  Sun, 15 Apr 2012 01:14:52 +0200

sylpheed (3.2.0~beta6-1) unstable; urgency=low

  * New upstream beta release
  * debian/control
  - Build-Depends: change libpng12-dev to libpng-dev (Closes: #662517)
  - Standards-Version: set to 3.9.3 (no other changes)
  * debian/copyright
  - Update format URL to comply with new policy; bump year
  - Remove useless Copyright from header; add author to Upstream-Contact

 -- Ricardo Mones <mones@debian.org>  Mon, 05 Mar 2012 12:11:40 +0100

sylpheed (3.2.0~beta5-1) unstable; urgency=low

  * New upstream beta release
  * debian/patches/09fix_pointer_cast_size_mismatch.diff
  - Fix a couple of warnings (thanks buildlogcheck)

 -- Ricardo Mones <mones@debian.org>  Thu, 29 Dec 2011 00:25:28 +0100

sylpheed (3.2.0~beta4-1) unstable; urgency=low

  * New upstream beta release
  * debian/copyright
  - Remove commas from file lists and move all licenses to their
    own standalone paragraph (thanks lintian)
  * debian/control
  - Replace conflicts with breaks

 -- Ricardo Mones <mones@debian.org>  Sat, 03 Dec 2011 22:28:08 +0100

sylpheed (3.2.0~beta3-1) unstable; urgency=low

  * New upstream beta release
  * debian/control
  - Development moved to git.debian.org: added Vcs-* headers

 -- Ricardo Mones <mones@debian.org>  Thu, 08 Sep 2011 14:51:53 +0200

sylpheed (3.2.0~beta2-1) unstable; urgency=low

  * New upstream beta release
  - Uses GTK+ theme for attachment buttons (Closes: #633642)
  - Labels 'Up'/'Down' removed in filter preferences (Closes: #551105)
  * debian/rules
  - Remove unneeded *.la files (Closes: #633193)

 -- Ricardo Mones <mones@debian.org>  Sat, 13 Aug 2011 12:04:19 +0200

sylpheed (3.2.0~beta1-1) unstable; urgency=low

  * New upstream beta release
  - Fixes "'queue' deletion corrupts header of 'trash' copy" (Closes: #493546)
  * debian/control
  - Updated Standards-Version to 3.9.2 (no other changes required)

 -- Ricardo Mones <mones@debian.org>  Sun, 03 Jul 2011 02:17:57 +0200

sylpheed (3.1.1-1) unstable; urgency=low

  * New upstream release
  - Fixes crash updating summary view while receiving (Closes: #611855)
  - Fixes undefined symbol reference with newer gcc by including required
    libraries when building (Closes: #622580, #556480)
  * debian/copyright
  - Update format and review file stanzas to follow DEP5
  * debian/patches/01default_browser_and_spool.diff
  - Regenerated to cope with upstream modifications in libsylph/defs.h

 -- Ricardo Mones <mones@debian.org>  Mon, 09 May 2011 01:50:45 +0200

sylpheed (3.1.0-1) unstable; urgency=low

  * New upstream release (Closes: #567425)
  * debian/patches/08x_scheme_handler_and_es_comment.diff
  - Regenerated for this version because of upstream changes

 -- Ricardo Mones <mones@debian.org>  Mon, 07 Feb 2011 00:35:26 +0100

sylpheed (3.1.0~rc0-1) experimental; urgency=low

  * New upstream release candidate
  * debian/patches/08x_scheme_handler_and_es_comment.diff
  - Add x-scheme-handler (Closes: #610343) and Spanish comment

 -- Ricardo Mones <mones@debian.org>  Sun, 30 Jan 2011 22:12:32 +0100

sylpheed (3.1.0~beta7-1) experimental; urgency=low

  * New upstream beta release

 -- Ricardo Mones <mones@debian.org>  Sat, 22 Jan 2011 12:35:12 +0100

sylpheed (3.1.0~beta6-1) experimental; urgency=low

  * New upstream beta release
  * debian/patches/08fix_plugin_h.diff
  - Patch removed, already incorporated upstream
  * debian/patches/04address_book.diff
  - Regenerated patch to cope with upstream changes

 -- Ricardo Mones <mones@debian.org>  Sat, 25 Dec 2010 12:51:09 +0100

sylpheed (3.1.0~beta4-1) experimental; urgency=low

  * New upstream beta release
  * debian/patches/08fix_plugin_h.diff
  - Small patch to fix typo in plugin.h declaration

 -- Ricardo Mones <mones@debian.org>  Thu, 09 Dec 2010 01:27:43 +0100

sylpheed (3.1.0~beta3-1) experimental; urgency=low

  * New upstream beta release
  * debian/control
  - Bumped Standards-Version to 3.9.1 (no other changes)
  - Updated -i18n description to add existing Belarusian locale
  * debian/sylpheed.install
  - Install only libraries in main package, not plugins
  * debian/control, debian/rules, debian/sylpheed-plugins.*
  - Added new sylpheed-plugins package with attachment_tool plugin
  * debian/sylpheed.1
  - Updated list of options and obsolete email address

 -- Ricardo Mones <mones@debian.org>  Tue, 31 Aug 2010 23:18:14 +0200

sylpheed (3.1.0~beta2-1) experimental; urgency=low

  * New upstream beta release
  * debian/control
  - Bumped Standards-Version (no other changes required)

 -- Ricardo Mones <mones@debian.org>  Sat, 17 Jul 2010 12:02:11 +0200

sylpheed (3.1.0~beta1-1) experimental; urgency=low

  * New upstream beta release
  * debian/patches/01default_browser_and_spool.diff
  - Split from 03, updated to reflect new upstream defaults
  * debian/patches/03free_browsers_and_x_terminal_emulator.diff
  - Added more browsers: iceweasel, epiphany-browser, midori and arora
  * debian/patches/06ldap_deprecated.diff
  - Removed, included upstream
  * debian/patches/series, debian/patches/*.diff
  - Updated series, regenerated all remaining patches
  * debian/copyright
  - Updated date ranges
  * debian/README.source
  - Removed, not needed anymore

 -- Ricardo Mones <mones@debian.org>  Sun, 20 Jun 2010 19:23:18 +0200

sylpheed (3.0.2-1) unstable; urgency=low

  * New upstream release
  * Switch to dpkg-source 3.0 (quilt) format
  * debian/patches/*.diff
  - Regenerated patches and documented following DEP3

 -- Ricardo Mones <mones@debian.org>  Sat, 10 Apr 2010 18:50:33 +0200

sylpheed (3.0.1-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Sun, 21 Mar 2010 11:10:31 +0100

sylpheed (3.0.0-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Fri, 26 Feb 2010 00:54:02 +0100

sylpheed (3.0.0~rc0-1) unstable; urgency=low

  * New upstream release (development)

 -- Ricardo Mones <mones@debian.org>  Fri, 19 Feb 2010 10:23:15 +0100

sylpheed (3.0.0~beta8-2) unstable; urgency=low

  * New upstream release (development)
  * debian/control
  - Added libdbus-glib-1-dev to build-depends (Closes: #565535)

 -- Ricardo Mones <mones@debian.org>  Sun, 14 Feb 2010 17:13:55 +0100

sylpheed (3.0.0~beta7-1) unstable; urgency=low

  * New upstream release (development)
  * debian/control
  - Bumped Standards-Version to 3.8.4 (no other changes required)
  * patches/07escape_from_at_the_beginning.diff
  - New patch to escape lines beginning with From (Closes: #485855)
    Thanks to Darren Salt and Francesco Poli for the contribution.

 -- Ricardo Mones <mones@debian.org>  Mon, 01 Feb 2010 18:54:20 +0100

sylpheed (3.0.0~beta6-1) unstable; urgency=low

  * New upstream release (development)
  * debian/control
  - Removed metamail recommend (Closes: #562219)

 -- Ricardo Mones <mones@debian.org>  Thu, 14 Jan 2010 19:21:40 +0100

sylpheed (3.0.0~beta4-1) unstable; urgency=low

  * New upstream release (development)
  * debian/control
  - Point Homepage to the English version of the site

 -- Ricardo Mones <mones@debian.org>  Thu, 17 Dec 2009 17:21:38 +0100

sylpheed (3.0.0~beta3+svn2374-1) experimental; urgency=low

  * Latest subversion upload (Closes: #355192)

 -- Ricardo Mones <mones@debian.org>  Tue, 08 Dec 2009 13:03:21 +0100

sylpheed (3.0.0~beta3-1) unstable; urgency=low

  * New upstream release (development)
  * debian/patches/*.diff
  - Add brief comments to existing patches

 -- Ricardo Mones <mones@debian.org>  Fri, 04 Dec 2009 00:54:23 +0100

sylpheed (2.7.1-2) unstable; urgency=low

  * debian/control
  - Fixed -i18n section to localization
  - Updated Standards-Version to 3.8.3, no other changes
  - Fixed required version of debhelper as suggested by lintian
  - Use libreadline6-dev now we have it in unstable (thanks doko)
  * README.source
  - Added file pointing out quilt usage

 -- Ricardo Mones <mones@debian.org>  Sat, 10 Oct 2009 11:43:28 +0200

sylpheed (2.7.1-1) unstable; urgency=low

  * New upstream release
  * debian/rules, debian/sylpheed*
  - Repackaged using debhelper sequencer
  * debian/control
  - Build-Depends: added quilt for patching, removed cdbs
  - Bumped Standards-Version to 3.8.2, compat level 7
  * debian/copyright
  - Simplified accordingly current DEP5 (allows removal of old
    lintian override for OpenSSL exception)
  * debian/sylpheed.lintian-overrides
  - Silence warnings for the new private shared libraries which
    are not designed to be in a development package but for
    being used by the host binary and (future) plugins
  * debian/README.Debian
  - Add a note about managing the new "auto update check" option

 -- Ricardo Mones <mones@debian.org>  Thu, 13 Aug 2009 22:23:19 +0200

sylpheed (2.6.0-3) unstable; urgency=low

  * debian/control
  - Added ca-certificates to recomends. This prevents asking for
    acepting server certificates indefinitely, reported in ML:
    http://www.tmtm.org/cgi-bin/w3ml/sylpheed/msg/32944
  - Make package lintian clean: updated Standards-Version (no
    other changes required), added misc:Depends to all packages,
    set -dbg package section to debug
  * debian/copyright
  - Update year to current

 -- Ricardo Mones <mones@debian.org>  Fri, 01 May 2009 17:34:21 +0200

sylpheed (2.6.0-2) unstable; urgency=low

  * Upload to unstable (Closes: #326073, #499306, #507977)
  * debian/control
  - Improve debugging package description

 -- Ricardo Mones <mones@debian.org>  Sun, 01 Mar 2009 19:09:52 +0100

sylpheed (2.6.0-1) experimental; urgency=low

  * New upstream release
  * debian/control
  - Suggest a couple of bayesian filters (Closes: #507977)

 -- Ricardo Mones <mones@debian.org>  Thu, 25 Dec 2008 02:12:19 +0100

sylpheed (2.6.0~rc0-1) experimental; urgency=low

  * New upstream release (development)
  * debian/get-version.sh, debian/watch
  - Reflect upstream usage for first rc tarball's names

 -- Ricardo Mones <mones@debian.org>  Sun, 07 Dec 2008 12:31:24 +0100

sylpheed (2.6.0~beta2-1) experimental; urgency=low

  * New upstream release (development)
  * debian/README.Debian
  - Reorganised a bit and added explanation and references for
    encoding issues when using a external editor (Closes: #326073)
  * debian/control
  - Suggest claws-mail-tools instead recommending (Closes: #499306)

 -- Ricardo Mones <mones@debian.org>  Mon, 17 Nov 2008 14:00:51 +0100

sylpheed (2.6.0~beta1-1) experimental; urgency=low

  * New upstream release (development)
  * debian/control
  - Add Build-Depends for new Enchant support, removed for aspell
  * debian/patches/01configure_aspell_lib.diff,
    debian/patches/01configure_in_aspell_check.diff
  - Removed as they're no longer needed

 -- Ricardo Mones <mones@debian.org>  Tue, 30 Sep 2008 12:59:10 +0200

sylpheed (2.5.0-2) unstable; urgency=low

  * debian/control
  - Added new sylpheed-dbg package for helping debugging

 -- Ricardo Mones <mones@debian.org>  Thu, 24 Jul 2008 08:50:28 +0200

sylpheed (2.5.0-1) unstable; urgency=low

  * New upstream release
  * debian/get-version.sh
  - Remove version tweaking
  * debian/control
  - Update Standards-Versions (no further changes required)
  * debian/copyright
  - Fix typo
  - debian/rules
  - Add lintian override for 'possible-gpl-code-linked-with-openssl'
    because copyright notice is not detected by lintian

 -- Ricardo Mones <mones@debian.org>  Wed, 18 Jun 2008 09:45:00 +0200

sylpheed (2.5.0~rc2-1) unstable; urgency=high

  * New upstream release
  * debian/control, patches/01configure_aspell_lib.diff
  - Force aspell lib (gtkspell removed support) (Closes: #483334)
  * patches/01condfigure_in_aspell_check.diff
  - A real fix for checking for aspell (to be sent upstream)

 -- Ricardo Mones <mones@debian.org>  Sun, 08 Jun 2008 22:52:10 +0200

sylpheed (2.5.0~rc0-1) unstable; urgency=low

  * New upstream release
  * debian/control
  - Added Homepage field with current homepage
  * debian/get-version.sh
  - Temporary tweak to get the real upstream version

 -- Ricardo Mones <mones@debian.org>  Thu, 22 May 2008 18:41:02 +0300

sylpheed (2.5.0~beta3-1) unstable; urgency=low

  * New upstream release
  * debian/copyright
  - Fixed a couple of typos

 -- Ricardo Mones <mones@debian.org>  Fri, 25 Apr 2008 10:58:56 +0200

sylpheed (2.5.0~beta2-1) unstable; urgency=low

  * New upstream release
  * debian/copyright
  - Switched to machine parseable copyright format
  * debian/README.Debian
  - Updated non-alternative names and libonig usage status
  * debian/rules
  - Fixed desktop file location (thanks lintian!)

 -- Ricardo Mones <mones@debian.org>  Tue, 15 Apr 2008 15:31:39 +0200

sylpheed (2.5.0~beta1-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Fri, 29 Feb 2008 10:12:09 +0100

sylpheed (2.4.8-2) unstable; urgency=low

  * debian/patches/06ldap_deprecated.diff
  - Allow deprecated LDAP API calls (Closes: #463366)
    patch by Dann Frazier <dannf@debian.org>

 -- Ricardo Mones <mones@debian.org>  Mon, 18 Feb 2008 01:37:57 +0100

sylpheed (2.4.8-1) unstable; urgency=low

  * New upstream release
  * debian/control
  - Update Standards-Version to 3.7.3
  * debian/rules
  - Remove empty directory (thanks lintian!)

 -- Ricardo Mones <mones@debian.org>  Tue, 25 Dec 2007 21:04:11 +0100

sylpheed (2.4.7-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Thu, 04 Oct 2007 13:24:37 +0200

sylpheed (2.4.6-2) unstable; urgency=low

  * debian/menu
  - Fixed new menu system subsection name (Closes: #444892)

 -- Ricardo Mones <mones@debian.org>  Wed, 03 Oct 2007 01:22:11 +0200

sylpheed (2.4.6-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Wed, 19 Sep 2007 12:36:55 +0200

sylpheed (2.4.5-1) unstable; urgency=low

  * New upstream release
  * debian/watch
  - Fixed URL (based on patch by Hideki Yamane) (Closes: #440321)
  * debian/menu
  - Fixed section name according new menu structure; added longtitle

 -- Ricardo Mones <mones@debian.org>  Sat, 01 Sep 2007 01:54:06 +0200

sylpheed (2.4.4-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Sat, 21 Jul 2007 11:05:18 +0200

sylpheed (2.4.3-1) unstable; urgency=low

  * New upstream release
  * debian/control
  - changed s-c-scripts recommend to c-m-tools (s-c will be removed)
  - changed deprecated Source-Version usage

 -- Ricardo Mones <mones@debian.org>  Sat, 30 Jun 2007 23:47:55 +0200

sylpheed (2.4.2-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Fri, 18 May 2007 16:37:59 +0200

sylpheed (2.4.1-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Wed, 02 May 2007 15:36:06 +0200

sylpheed (2.4.0-2) unstable; urgency=low

  * debian/control, debian/rules
  - Built with oniguruma support (Closes: #420145)

 -- Ricardo Mones <mones@debian.org>  Wed, 02 May 2007 11:11:14 +0200

sylpheed (2.4.0-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Fri, 27 Apr 2007 19:40:06 +0200

sylpheed (2.4.0~beta8-1) unstable; urgency=low

  * New upstream release.

 -- Ricardo Mones <mones@debian.org>  Sun, 15 Apr 2007 11:47:09 +0200

sylpheed (2.4.0~beta5-1) experimental; urgency=low

  * New upstream development release (Closes: #403714)
  - 2.3.0 fixed the link with the Jpilot database (Closes: #394384)
  * debian/rules
  - define FAQ directory name correctly (Closes: #404963)

 -- Ricardo Mones <mones@debian.org>  Thu, 22 Mar 2007 20:55:54 +0100

sylpheed (2.3.0~beta5-1) unstable; urgency=low

  * New upstream development release

 -- Ricardo Mones <mones@debian.org>  Fri, 10 Nov 2006 11:49:00 +0100

sylpheed (2.3.0~beta4-1) unstable; urgency=low

  * New upstream development release

 -- Ricardo Mones <mones@debian.org>  Tue, 31 Oct 2006 07:03:10 +0100

sylpheed (2.3.0~beta3-1) unstable; urgency=low

  * New upstream development release
  * debian/get-version.sh
  - fix pipe to deal with tildes in version numbers

 -- Ricardo Mones <mones@debian.org>  Tue, 17 Oct 2006 23:21:00 +0200

sylpheed (2.3.0~beta2-1) unstable; urgency=low

  * New upstream development release
  * debian/get-version.sh
  - increased tarball version

 -- Ricardo Mones <mones@debian.org>  Tue, 10 Oct 2006 21:32:48 +0200

sylpheed (2.3.0~beta1-1) unstable; urgency=low

  * New upstream development release
  * debian/control
  - removed versioned depends on -i18n and fix the binNMU-ability of the
    whole package (Closes: #390459)
  * patches/02*.diff, patches/03*.diff, patches/05*.diff
  - regenerated patches for being applied cleanly
  * get-version.sh
  - temporarily tweak the script because changelog version is not current
    tarball version

 -- Ricardo Mones <mones@debian.org>  Mon,  2 Oct 2006 00:54:52 +0200

sylpheed (2.2.9-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@debian.org>  Fri, 22 Sep 2006 10:54:23 +0200

sylpheed (2.2.7-1) unstable; urgency=low

  * New upstream release
  - Fixes crash when switching folders (Closes: #375531)

 -- Ricardo Mones <mones@debian.org>  Tue,  1 Aug 2006 06:51:43 +0200

sylpheed (2.2.6-1) unstable; urgency=low

  * New upstream release
  * debian/sylpheed.docs.in
  - Updated document list with some missing ones
  * debian/sylpheed.1
  - Updated command line options in manpage

 -- Ricardo Mones <mones@debian.org>  Sat, 10 Jun 2006 21:06:08 +0200

sylpheed (2.2.5-1) unstable; urgency=low

  * New upstream release
  * debian/control
  - Updated Standards-Version

 -- Ricardo Mones <mones@debian.org>  Thu,  1 Jun 2006 07:36:12 +0200

sylpheed (2.2.4-1) unstable; urgency=low

  * New upstream release
  * debian/control
  - Changed maintainer email address

 -- Ricardo Mones <mones@debian.org>  Thu, 30 Mar 2006 10:52:00 +0200

sylpheed (2.2.3-1) unstable; urgency=low

  * New upstream release (Closes: #356824)
  * 04adress_book.diff, 05sensible_editor.diff
  - Regenerated

 -- Ricardo Mones <mones@aic.uniovi.es>  Wed, 15 Mar 2006 07:29:13 +0100

sylpheed (2.2.2-1) unstable; urgency=low

  * New upstream release.

 -- Ricardo Mones <mones@aic.uniovi.es>  Sat, 11 Mar 2006 13:20:19 +0100

sylpheed (2.2.1-1) unstable; urgency=low

  * New upstream release.
  * debian/README.Debian
  - Removed obsolete note (thanks Hiroyuki Yamamoto for noticing)
  * debian/control
  - Removed libgdk-pixbuf-dev from build depends (Closes: #354036)
  * debian/rules
  - invoke create-docs with the right shell (Closes: #331209)

 -- Ricardo Mones <mones@aic.uniovi.es>  Wed,  1 Mar 2006 15:31:41 +0100

sylpheed (2.2.0-1) unstable; urgency=low

  * New upstream release (Closes: #327855).
  * debian/control
  - Added Vietnamese translation to the -i18n description.
  - Removed unnecesary ${shlibs:Depends} in -i18n.
  * debian/patches/05sensible_editor.diff
  - Patch for sensible-editor added.
  * debian/watch
  - Updated version and URL, simpler regex.
  * debian/compat, debian/control
  - Updated level and version. Wrap long dependence lines.
  * debian/sylpheed.1
  - Fixed unescaped hyphens.
  * Big thanks to Guillem Jover <guillem@debian.org> for reviewing.

 -- Ricardo Mones <mones@aic.uniovi.es>  Wed, 15 Feb 2006 15:39:07 +0100

sylpheed (2.1.9-1) experimental; urgency=low

  * New upstream release (development series).

 -- Ricardo Mones <mones@aic.uniovi.es>  Fri, 16 Dec 2005 14:40:20 +0100

sylpheed (2.0.4-2) unstable; urgency=low

  * debian/control
  - Use libreadline5-dev for building this one too.
  - Fixed circular dependency with i18n package (Closes: #341861)

 -- Ricardo Mones <mones@aic.uniovi.es>  Fri, 16 Dec 2005 13:56:12 +0100

sylpheed (2.1.7-1) experimental; urgency=low

  * New upstream release (development series).
  * debian/control
  - Use libreadline5-dev for building.
  * debian/control, debian/rules
  - Enabled building with GTKSpell (new upstream feature).

 -- Ricardo Mones <mones@aic.uniovi.es>  Sat, 19 Nov 2005 14:11:44 +0100

sylpheed (2.1.6-1) experimental; urgency=low

  * New upstream release (development series).
  * patches/02manual.diff, patches/03free_browsers_and_x_terminal_emulator.diff
  - Regenerated.

 -- Ricardo Mones <mones@aic.uniovi.es>  Sun, 13 Nov 2005 21:15:06 +0100

sylpheed (2.0.4-1) unstable; urgency=low

  * New upstream release.

 -- Ricardo Mones <mones@aic.uniovi.es>  Sun, 13 Nov 2005 14:39:42 +0100

sylpheed (2.0.2-1) unstable; urgency=low

  * New upstream release.

 -- Ricardo Mones <mones@aic.uniovi.es>  Thu, 29 Sep 2005 15:44:50 +0200

sylpheed (2.1.2-1) experimental; urgency=low

  * New upstream release (development series).
  * debian/patches/03free_browsers_and_x_terminal_emulator.diff
  * Regenerated because of new libsylph separation.

 -- Ricardo Mones <mones@aic.uniovi.es>  Mon, 19 Sep 2005 17:56:21 +0200

sylpheed (2.0.1-1) unstable; urgency=low

  * New upstream release.
  * debian/watch
  - Updated for 2.0 series location.

 -- Ricardo Mones <mones@aic.uniovi.es>  Thu,  8 Sep 2005 16:47:12 +0200

sylpheed (2.1.1-1) experimental; urgency=low

  * New upstream release (development series).
  * debian/patches/00configure.diff
  - Regenerated.
  * sylpheed.1
  - Fixed invalid character (thanks lintian ;-)
  * debian/control
  - Updated stardards version.

 -- Ricardo Mones <mones@aic.uniovi.es>  Tue, 23 Aug 2005 13:22:14 +0200

sylpheed (2.0.0-1) unstable; urgency=low

  * New upstream release. First for unstable.
  * debian/patches/01verticalbar_automatic.diff
  - Removed per upstream request (hides config option).
  * debian/control
  - Added new lt translation to long description of -i18n package.

 -- Ricardo Mones <mones@aic.uniovi.es>  Fri, 29 Jul 2005 12:18:36 +0200

sylpheed (1.9.12-1) experimental; urgency=low

  * New upstream release.
  * debian/patches/00configure.diff
  - Regenerated patch.

 -- Ricardo Mones <mones@aic.uniovi.es>  Fri,  3 Jun 2005 08:20:36 +0200

sylpheed (1.9.9-1) experimental; urgency=low

  * New upstream release.
  * debian/patches/01verticalbar_automatic.diff
  - Regenerated patch.

 -- Ricardo Mones <mones@aic.uniovi.es>  Sun, 24 Apr 2005 18:18:34 +0000

sylpheed (1.9.6-1) experimental; urgency=low

  * New upstream release.

 -- Ricardo Mones <mones@aic.uniovi.es>  Tue, 15 Mar 2005 15:51:04 +0100

sylpheed (1.9.5-1) experimental; urgency=low

  * New upstream release.
  * debian/control
  - Switched from libgpgme-dev to libgpgme11-dev.

 -- Ricardo Mones <mones@aic.uniovi.es>  Thu, 10 Mar 2005 10:50:46 +0000

sylpheed (1.9.2-1) experimental; urgency=low

  * New upstream release.
  * debian/control
  - Removed imlib from Build-Depends as is no longer used.

 -- Ricardo Mones <mones@aic.uniovi.es>  Thu, 10 Feb 2005 17:50:30 +0100

sylpheed (1.9.1-1) experimental; urgency=low

  * First packaging for experimental of the GTK2 version.
  * debian/rules
  - Remove previous fix.
  * debian/control
  - Set Build-Depends for GTK+2
  * debian/patches/*.diff
  - Regenerated all for this version.
  * debian/watch
  - Upstream now in v1.9 directory on server.

 -- Ricardo Mones <mones@aic.uniovi.es>  Wed,  9 Feb 2005 11:34:32 +0000

sylpheed (1.0.0release-1) unstable; urgency=low

  * New upstream release
  * debian/patches/00configure.diff
  - Cleaned up.
  * debian/rules
  - Temporary fix for VERSION variable.

 -- Ricardo Mones <mones@aic.uniovi.es>  Mon,  3 Jan 2005 10:22:39 +0000

sylpheed (1.0.0rc-1) unstable; urgency=low

  * New upstream release
  - (Closes: #284180)

 -- Ricardo Mones <mones@aic.uniovi.es>  Wed, 22 Dec 2004 17:50:11 +0100

sylpheed (1.0.0beta4-1) unstable; urgency=low

  * New upstream release
  * patches/03free_browsers_and_x_terminal_emulator.diff
  - Regenerated again.

 -- Ricardo Mones <mones@aic.uniovi.es>  Wed,  8 Dec 2004 23:01:41 +0100

sylpheed (1.0.0beta3-1) unstable; urgency=low

  * New upstream release
  * patches/03free_browsers_and_x_terminal_emulator.diff
  - Regenerated properly.

 -- Ricardo Mones <mones@aic.uniovi.es>  Wed, 17 Nov 2004 15:53:46 +0100

sylpheed (1.0.0beta2-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@aic.uniovi.es>  Mon,  8 Nov 2004 16:35:18 +0100

sylpheed (1.0.0beta1-1) unstable; urgency=low

  * New upstream release

 -- Ricardo Mones <mones@aic.uniovi.es>  Fri, 29 Oct 2004 13:39:10 +0200

sylpheed (0.9.99-1) unstable; urgency=low

  * New upstream release
  - (Closes: #248160, #260432, #192140)
  * debian/watch
  - Added

 -- Ricardo Mones <mones@aic.uniovi.es>  Wed, 13 Oct 2004 22:53:19 +0200

sylpheed (0.9.12-3) unstable; urgency=low

  * debian/control
  - Fixed sylpheed-i18n description (Closes: #266759)
  * debian/create-docs.sh
  - Require proper shell (fixes FTBFS if /bin/sh is a POSIX shell)

 -- Ricardo Mones <mones@aic.uniovi.es>  Thu, 19 Aug 2004 18:08:20 +0200

sylpheed (0.9.12-2) unstable; urgency=low

  * debian/control
  * debian/rules
  - Locale split (new sylpheed-i18n package).

 -- Ricardo Mones <mones@aic.uniovi.es>  Mon,  9 Aug 2004 15:58:21 +0200

sylpheed (0.9.12-1) unstable; urgency=low

  * New upstream release
  - Print menu option restored (Closes: #254719)
  * debian/control
  - Recomends metamail

 -- Ricardo Mones <mones@aic.uniovi.es>  Thu, 17 Jun 2004 18:54:10 +0200

sylpheed (0.9.11-1) unstable; urgency=low

  * New upstream release
    - CRAM-MD5 for SMTP already supported (Closes: #162254)
  * debian/menu
    - removed forgotten "vanilla" reference (Closes: #246759)

 -- Ricardo Mones <mones@aic.uniovi.es>  Sat, 29 May 2004 20:44:39 +0200

sylpheed (0.9.10-1) unstable; urgency=low

  * New upstream release
  * debian/control:
  - standards version: 3.6.1
  - recommends: sylpheed-claws-scripts
  - new maintainer, added uploaders: Paul and Gustavo
  * debian/menu:
  - fixed quoting
  * debian/rules
  - removed add-ons dependencies
  - removed "vanilla" references
  * debian/patches/00*
  - removed "vanilla" references
  * debian/add-ons/:
  - removed (scripts are a separate package now)
  * debian/sylpheed.post*:
  - disabled update-alternatives stuff
  * debian/README.Debian:
  - rewritten tools info
  - added rationale for disabling alternatives stuff

 -- Ricardo Mones <mones@aic.uniovi.es>  Wed, 21 Apr 2004 13:56:07 +0200

sylpheed (0.9.7-2) unstable; urgency=low

  * debian/rules:
  - calls the script using /bin/sh directly, to solve the FTBFS
    problems

 -- Gustavo Noronha Silva <kov@debian.org>  Tue, 11 Nov 2003 23:44:01 -0200

sylpheed (0.9.7-1) unstable; urgency=low

  * New upstream release

 -- Gustavo Noronha Silva <kov@debian.org>  Tue, 11 Nov 2003 22:22:12 -0200

sylpheed (0.9.6-1) unstable; urgency=low

  * New upstream release
  - will probably work alright with fonts on startup (Closes: #211368)

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 22 Sep 2003 01:37:09 -0300

sylpheed (0.9.5-1) unstable; urgency=low

  * New upstream release

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 10 Sep 2003 04:11:51 -0300

sylpheed (0.9.4-2) unstable; urgency=low

  * debian/rules:
  - fix the way 'uudecode' is called to avoid breaking
    the build

 -- Gustavo Noronha Silva <kov@debian.org>  Sat,  9 Aug 2003 14:44:32 -0300

sylpheed (0.9.4-1) unstable; urgency=low

  * New upstream release
  * debian/sylpheed.prerm -> debian/sylpheed.postrm:
  - renamed to make update-alternatives stuff work
  - only remove alternative when removing or purging
    on postrm (Closes: #201983)
  * debian/add-ons/tools.tar.uu:
  - updated from sylpheed-claws 0.9.4claws

 -- Gustavo Noronha Silva <kov@debian.org>  Wed,  6 Aug 2003 05:21:56 -0300

sylpheed (0.9.3-1) unstable; urgency=low

  * New upstream release
  * debian/sylpheed-debian.xpm:
  - switched to sylpheed's new icon, without the 24 color
    limitation in place

 -- Gustavo Noronha Silva <kov@debian.org>  Sun, 13 Jul 2003 01:48:27 -0300

sylpheed (0.9.2-2) unstable; urgency=low

  * The "Hey, pay more attention, please!" release
  * debian/rules:
  - added missing --enable stuff on DEB_CONFIGURE_EXTRA_FLAGS
    (Closes: #198679, #198591)

 -- Gustavo Noronha Silva <kov@debian.org>  Tue, 24 Jun 2003 23:02:26 -0300

sylpheed (0.9.2-1) unstable; urgency=low

  * New upstream release
  * debian/control:
  - added | flex-old build-dep
  - Build-Depends on sharutils, to use uudecode on rules

 -- Gustavo Noronha Silva <kov@debian.org>  Sat, 21 Jun 2003 02:21:45 -0300

sylpheed (0.9.0-3) unstable; urgency=low

  * debian/rules:
  - adopting Common Debian Build System
  * debian/control:
  - Build-Depends on cdbs, not on devhelp

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 26 May 2003 12:07:54 -0300

sylpheed (0.9.0-2) unstable; urgency=low

  * debian/control:
  - some |'s on the Build-Deps to make backporting easier

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 19 May 2003 00:21:49 -0300

sylpheed (0.9.0-1) unstable; urgency=low

  * New upstream release
  - it seems like the loooong CC is not a problem anymore
    (Closes: #182003)
  - IMAP has gone through a lot of work, so I believe this should
    be fixed. Also, this version is supposed to fix the 'io blocking'
    thingy. (Closes: #164101)
  - I cannot reproduce mark-losing on this version, please reopen
    if you still have problems. (Closes: #167793)
  - IMAP folders with & work with no problems (Closes: #167081)
    the ones ending on / depend on server implementation, so
    not a bug on Sylpheed (Closes: #173995)
  - does not segfault with fr_FR@euro (Closes: #174224)
  * debian/control:
  - changed Depends to libpng12-dev and removed libsasl-dev, it
    should be grabed by libldap2-dev
  * debian/rules:
  - removed the ancient --enable-jconv

 -- Gustavo Noronha Silva <kov@debian.org>  Sat, 17 May 2003 15:31:17 -0300

sylpheed (0.8.11-2) unstable; urgency=low

  * patches/03free_browsers_and_x_terminal_emulator:
  - modified to have sensible-browser as default command (Closes: #187329)
  * debian/control:
  - Standards-Version 3.5.9

 -- Gustavo Noronha Silva <kov@debian.org>  Tue,  8 Apr 2003 04:50:38 -0300

sylpheed (0.8.11-1) unstable; urgency=low

  * New upstream release
  * patches/05manuals_po_fr:
  - removed, we should not even patch potfiles (duh)

 -- Gustavo Noronha Silva <kov@debian.org>  Tue, 25 Mar 2003 22:20:04 -0300

sylpheed (0.8.10-1) unstable; urgency=low

  * New upstream version

 -- Gustavo Noronha Silva <kov@debian.org>  Sat,  8 Feb 2003 20:47:57 -0200

sylpheed (0.8.9-2) unstable; urgency=low

  * debian/control:
  - removed libjconv-dev from B-Deps, thanks to
    Nicolas Boos <nicolas.boos@wanadoo.fr> for reminding me.
  * patches/05manuals_po_fr:
  - added to fix problems with translations reported by Nicolas,
    too.

 -- Gustavo Noronha Silva <kov@debian.org>  Thu, 23 Jan 2003 14:37:27 -0200

sylpheed (0.8.9-1) unstable; urgency=low

  * New upstream release
  * tools/*:
  - updated from sylpheed-claws 0.8.8claws111
  * Help is being handled correctly for some time now
    (Closes: #177197)
  * Reply to list is already there for some time, too
    (Closes: #144735)
  * debian/control:
  - Build-Depends on libreadline4-dev

 -- Gustavo Noronha Silva <kov@debian.org>  Sat, 18 Jan 2003 01:20:39 -0200

sylpheed (0.8.8-2) unstable; urgency=low

  * debian/control:
  - Build-Depends on libgpgme-dev (>= 0.3.10)

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 30 Dec 2002 22:03:07 -0200

sylpheed (0.8.8-1) unstable; urgency=low

  * New upstream release

 -- Gustavo Noronha Silva <kov@debian.org>  Sun, 29 Dec 2002 23:26:38 -0200

sylpheed (0.8.7-1) unstable; urgency=low

  * New upstream release
  * patches/03free_browsers_and_x_terminal_emulator:
  - modified a bit, the authors added lots of changes like
    mine

 -- Gustavo Noronha Silva <kov@debian.org>  Sat, 21 Dec 2002 23:40:06 -0200

sylpheed (0.8.6-2) unstable; urgency=low

  * debian/control:
  - accepted patch from Nicolas Boos <nicolas.boos@wanadoo.fr> to
    help him backporting... this removes xlib6g-dev's Build-Deps
    (Closes: #170149)
  - reworded the long description a bit
  - upgraded to Standards-Version 3.5.8
  * debian/rules:
  - supports nostrip DEB_BUILD_OPTIONS
  * tools/*:
  - updated directory, from sylpheed-claws 0.8.2claws82
  * debian/sylpheed-debian.xpm:
  - resized and reduced the number of colors

 -- Gustavo Noronha Silva <kov@debian.org>  Tue, 10 Dec 2002 01:45:35 -0200

sylpheed (0.8.6-1) unstable; urgency=low

  * New upstream release

 -- Gustavo Noronha Silva <kov@debian.org>  Fri, 22 Nov 2002 00:32:28 -0200

sylpheed (0.8.5-2) unstable; urgency=low

  * debian/control:
  - added Depends on metamail (Closes: #168156)

 -- Gustavo Noronha Silva <kov@debian.org>  Tue, 12 Nov 2002 01:45:37 -0200

sylpheed (0.8.5-1) unstable; urgency=low

  * New upstream release

 -- Gustavo Noronha Silva <kov@debian.org>  Fri, 11 Oct 2002 23:12:49 -0300

sylpheed (0.8.3-1) unstable; urgency=low

  * New upstream release
  * debian/control:
  - Conflicts on incompatible version of sylpheed-doc package.
    This, plus the changes to sylpheed-doc's control and
    sylpheed-claws' control files to have sane conflicts do
    (Closes: #160684)

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 18 Sep 2002 01:14:22 -0300

sylpheed (0.8.2-2) unstable; urgency=low

  * debian/sylpheed.prerm:
  - remove alternative symlink when prerm is called with
    'remove', too (Closes: #159707)

 -- Gustavo Noronha Silva <kov@debian.org>  Thu,  5 Sep 2002 11:12:44 -0300

sylpheed (0.8.2-1) unstable; urgency=low

  * New upstream release
  * debian/control:
  - Build-Depends on libpng2-dev (Closes: #158403)
  * tools:
  - updated from sylpheed-claws 0.8.1claws120
  * debian/rules:
  - installs all pngs (Closes: #156504)
  * patches/00configure:
  - changed patch to sylpheed.desktop, to use the png icon
  * debian/sylpheed.xpm:
  - removed

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 28 Aug 2002 11:12:19 -0300

sylpheed (0.8.1-2) unstable; urgency=low

  * Rebuild for libpisock8

 -- Gustavo Noronha Silva <kov@debian.org>  Fri, 16 Aug 2002 12:09:51 -0300

sylpheed (0.8.1-1) unstable; urgency=low

  * New upstream release

 -- Gustavo Noronha Silva <kov@debian.org>  Fri, 26 Jul 2002 03:16:44 -0300

sylpheed (0.8.0-3) unstable; urgency=low

  * debian/postinst,prerm:
  - remove them, I forgot the /usr/doc transition would be finished
    in sarge

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 24 Jul 2002 04:48:52 -0300

sylpheed (0.8.0-2) unstable; urgency=low

  * debian/copyright:
  - changed to match current status, as requested by upstream.
  * debian/sylpheed.{postinst,prerm}
  - link/remove manually (what happened to debhelper?)

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 24 Jul 2002 03:05:30 -0300

sylpheed (0.8.0-1) unstable; urgency=low

  * New upstream release

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 15 Jul 2002 12:16:42 -0300

sylpheed (0.7.8-3) unstable; urgency=low

  * rebuild with new libpisock (5) (Closes: #151752)

 -- Gustavo Noronha Silva <kov@debian.org>  Mon,  8 Jul 2002 22:00:55 -0300

sylpheed (0.7.8-2) unstable; urgency=low

  * patches/04address_book:
  - fixes a little bug in address book... now it lets you
    write a name, press tab to complete it and click the
    'to:' and 'cc:' buttons without selecting the name in
    the list with the mouse (sent upstream)

 -- Gustavo Noronha Silva <kov@debian.org>  Thu, 20 Jun 2002 14:19:26 -0300

sylpheed (0.7.8-1) unstable; urgency=low

  * New upstream version

 -- Gustavo Noronha Silva <kov@debian.org>  Sat, 15 Jun 2002 19:07:46 -0300

sylpheed (0.7.7-1) unstable; urgency=low

  * New upstream release
  * debian/sylpheed.1:
  - accepted patch from Guido Guenther <agx@debian.org>, thanks!
    (Closes: #149109)
  * tools/:
  - updated from sylpheed-claws-0.7.6claws34 (cvs)
  * patches/02manual
  - removed the defs changes because I fixed sylpheed-doc
  * debian/control:
  - added versioned suggests to sylpheed-doc because of the
    above entry

 -- Gustavo Noronha Silva <kov@debian.org>  Sun,  9 Jun 2002 21:26:32 -0300

sylpheed (0.7.6-3) unstable; urgency=low

  * patches/03free_browsers_and_x_terminal_emulator:
  - fixes galeon -new-{window,tab} to --new-{window,tab}

 -- Gustavo Noronha Silva <kov@debian.org>  Sat, 25 May 2002 04:25:53 -0300

sylpheed (0.7.6-2) unstable; urgency=low

  * pos/pt_BR.po:
  - updated pt_BR translation
  * patches/03free_browsers_and_x_terminal_emulator:
  - changes all ocurrences of 'netscape' to 'mozilla'
    and all 'kterm's to 'x-terminal-emulator', also
    removes opera and adds galeon to the default list
    of browsers

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 13 May 2002 22:03:16 -0300

sylpheed (0.7.6-1) unstable; urgency=low

  * New upstream version
  * debian/control:
  - no more sylpheed-doc, it is moving to its own source package
  - removed Build-Depends on shareutils
  * scripts/install-docs.sh:
  - removed
  * debian/*doc-base*:
  - removed
  * COPYING.new:
  - no longer needed
  * debian/rules:
  - removed building of sylpheed-doc
  * patches/02manual:
  - fixed to include new manuals and to fix manual and faq paths

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 13 May 2002 02:37:06 -0300

sylpheed (0.7.5-1) unstable; urgency=low

  * New upstream version

 -- Gustavo Noronha Silva <kov@debian.org>  Tue,  7 May 2002 21:39:02 +0000

sylpheed (0.7.4-4) unstable; urgency=high

  * moved into main
  * debian/control:
  - changed Section to 'mail'
  - added Recommends on aspell-dictionary
  * debian/copyright:
  - documents the license changes made by the author to let sylpheed
    link with libssl (let's sylpheed go in main)
  * debian/COPYING.new:
  - new copyright file for sylpheed, sent by the author to the lists
    in the announcement mail
  * urgency set to high as this is only licensing changes, fundamentaly,
    and it is good that this package be in main when woody is released
    (there're no RC  bugs found after almost a month of testing)

 -- Gustavo Noronha Silva <kov@debian.org>  Thu, 11 Apr 2002 22:49:07 -0300

sylpheed (0.7.4-3) unstable; urgency=low

  * debian/control:
  - adds Build-Depends on sharutils, we're using uudecode

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 18 Mar 2002 14:11:13 -0300

sylpheed (0.7.4-2) unstable; urgency=low

  * The "Documentation for All" release
  * patches/02manual:
  - modified sylpheed a lot to have new entries for the new
    languages added to the sylpheed-doc package both the manual
    and the FAQ, also to display a note 'apt-get install sylpheed-doc'
    in case one of the docs is not found
  * scripts/install-docs.sh:
  - does the hard work of extracting and modifying the names of
    the directories of the manuals and FAQs
  * debian/copyright:
  - tells where did we get docs from
  * upstream/manual*tar.gz, upstream/faq*tar.gz:
  - added updated and translated manuals and faqs from the
    SylpheedDoc Project, the 'ja' manual and it faq tarballs were
    produced from the htmls found on sylpheed-claws. The ja
    htmls were regenerated to have the right names (user_guide.html)
  * debian/sylpheed-doc.doc-base-sylpheed-*:
  - updated en, ja, created fr and es
  * debian/sylpheed-doc.doc-base-sylpheed-faq-*:
  - created en, fr, es, it

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 18 Mar 2002 01:13:10 -0300

sylpheed (0.7.4-1) unstable; urgency=low

  * New upstream version
  * This version brings the latest updated potfile for pt_BR
    (Closes: #135436)

 -- Gustavo Noronha Silva <kov@debian.org>  Sun, 10 Mar 2002 23:21:44 -0300

sylpheed (0.7.3-1) unstable; urgency=low

  * New upstream version

 -- Gustavo Noronha Silva <kov@debian.org>  Thu,  7 Mar 2002 17:48:18 -0300

sylpheed (0.7.2-3) unstable; urgency=low

  * patches/03draft_attachment:
  - got from cvs: fixes problems with attachments on draft folder
    (reediting) (Closes: #107553)
  * cvs: 2002-02-20

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 20 Feb 2002 18:13:40 -0300

sylpheed (0.7.2-2) unstable; urgency=low

  * Recompile with libgpgme6
  * debian/rules:
  - added code to update pos from cvs testing -d pos/
  * pos/*:
  - potfiles updated from cvs

 -- Gustavo Noronha Silva <kov@debian.org>  Sun, 17 Feb 2002 18:13:30 -0300

sylpheed (0.7.2-1) unstable; urgency=low

  * New upstream release
  * patches/{04imap_path_separator,05null_when_selection_is_0,06utils_return_if_0}
  - droped, these fixes are on the newest release

 -- Gustavo Noronha Silva <kov@debian.org>  Sun, 17 Feb 2002 01:32:40 -0300

sylpheed (0.7.1-3) unstable; urgency=low

  * fixes from cvs:
  - patches/04imap_path_separator
  - patches/05null_when_selection_is_0
  - patches/06utils_return_if_0
  * cvs: 2002-02-13

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 13 Feb 2002 18:14:17 -0200

sylpheed (0.7.1-2) unstable; urgency=low

  * patches/03decryption_fix:
  - fixes a problem when decrypting a message, from
    cvs
  * cvs: 2002-02-12

 -- Gustavo Noronha Silva <kov@debian.org>  Tue, 12 Feb 2002 16:31:33 -0200

sylpheed (0.7.1-1) unstable; urgency=low

  * New upstream release
  * new build system which enables me to apply several
    different small patches to the upstream source code
  * patches/00potfiles:
  - updated es and pt_BR potfiles

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 11 Feb 2002 20:50:44 -0200

sylpheed (0.7.0-8) unstable; urgency=low

  * The "Path of Now and Forever" release
    First version in which you are able to install sylpheed
    and claws (0.7.0claws52-2 at least) together
  * configure.in:
  - changed PACKAGE to sylpheed-vanilla, first move on making
    sylpheed and sylpheed-claws instalable together
  - changed manualdir to /usr/share/doc/sylpheed-doc (this was
    done on configure before)
  * sylpheed.desktop:
  - modified xpm to sylpheed-vanilla.xpm
  - modified exec to sylpheed-vanilla
  * debian/rules:
  - installs sylpheed, sylpheed.1, sylpheed.desktop and sylpheed.xpm
    as sylpheed-vanilla, etc
  * debian/menu:
  - installed to point to the new sylpheed-vanilla executable
  * debian/postinst,postrm:
  - creates the 'sylpheed' alternative

 -- Gustavo Noronha Silva <kov@debian.org>  Wed,  6 Feb 2002 23:04:50 -0200

sylpheed (0.7.0-7) unstable; urgency=low

  * src/compose.c:
  - removed default X-Face, it doesn't seem to make everyone
    happy... I'll readd it if I find a better solution, but
    it is gone by now.
  * debian/README.Debian:
  - modified to reflect above entry
  * po/*:
  - updated from cvs
  * cvs: 2002-02-06

 -- Gustavo Noronha Silva <kov@debian.org>  Wed,  6 Feb 2002 21:04:07 -0200

sylpheed (0.7.0-6) unstable; urgency=low

  * debian/rules:
  - call dpkg-architecture to set DEB_BUILD_ARCH and DEB_BUILD_GNU_SYSTEM
    so that fakeroot debian/rules binary works
  * debian/control:
  - Build-Depends on debhelper >> 2.0.0, helps backports

 -- Gustavo Noronha Silva <kov@debian.org>  Fri,  1 Feb 2002 15:11:13 -0200

sylpheed (0.7.0-5) unstable; urgency=low

  * src/compose.c:
  - added default X-Face (Debian swirl)
    thanks to Chris Hessmann <news@hessmann.de> for the X-Face
    and to David B Harris <eelf@sympatico.ca> for the idea
  * src/folderview.c:
  - modified policy of vertical scrollbar to AUTOMATIC
  * tools/*:
  - added tools/ directory from sylpheed-claws, some of those
    tools may be useful for sylpheed users
  * debian/README.Debian:
  - speaks about those changes above
  * src/about.c:
  - updated from cvs (spelling fixes only)
  * src/foldersel.c:
  - updated from cvs (translatable strings, special folders to top)
  * src/procmsg.c:
  - updated from cvs (fixes a bug with sizeof which could cause
    crashes on Alpha)
  * src/compose.c:
  - modified some parts from cvs (fixes crash on wrapping long URL)
  - Ctrl-enter works for sending message
  * src/textview.c:
  - modified some parts from cvs (fixes segfault on font loading)
  * src/importldif.c:
  - updated from cvs (fixes segfault when closing dialog with window
    manager)
  * debian/control:
  - removed Build-Depends on libpspell-dev (not needed on sylpheed,
    only on claws)

 -- Gustavo Noronha Silva <kov@debian.org>  Thu, 31 Jan 2002 23:43:28 -0200

sylpheed (0.7.0-4) unstable; urgency=low

  * the "That's what you get for working on your packages
    when you're not in home" release
  * recompilation with libgpgme5 (Closes: #129614)

 -- Gustavo Noronha Silva <kov@debian.org>  Thu, 17 Jan 2002 11:03:57 -0200

sylpheed (0.7.0-3) unstable; urgency=low

  * debian/control:
  - added "or" Recommends on xfonts-* to avoid segfaults on startup
  (Closes: #129342) - I won't depend as lintian told me that policy
  forbids this
  * po/es.po:
  - updated translation, thanks to Ricardo Mones Lastra
  <mones@aic.uniovi.es>

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 16 Jan 2002 09:18:11 -0200

sylpheed (0.7.0-2) unstable; urgency=low

  * po/fr.po updated, thanks to Melvin Hadasht <melvin.hadasht@free.fr>
  * po/pt_BR.po: updated and sent upstream

 -- Gustavo Noronha Silva <kov@debian.org>  Mon,  7 Jan 2002 14:59:56 -0200

sylpheed (0.7.0-1) unstable; urgency=low

  * New upstream release
  * src/ldif.c:
  - withdrew my modifications for upstream had a better fix

 -- Gustavo Noronha Silva <kov@debian.org>  Mon,  7 Jan 2002 13:03:18 -0200

sylpheed (0.6.6-5) unstable; urgency=low

  * rebuilt with the new libgpgme5

 -- Gustavo Noronha Silva <kov@debian.org>  Tue,  1 Jan 2002 05:25:46 -0200

sylpheed (0.6.6-4) unstable; urgency=low

  * src/ldif.c@128: changed gchar to signed char to workaround
  assumption on some archs that a char is unsigned (Closes: #127010)

 -- Gustavo Noronha Silva <kov@debian.org>  Sun, 30 Dec 2001 19:58:17 -0200

sylpheed (0.6.6-3) unstable; urgency=low

  * debian/control: remove build-dependency on libltdl3-dev
  (Closes: #125677)

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 19 Dec 2001 00:17:58 -0200

sylpheed (0.6.6-2) unstable; urgency=low

  * debian/control: fixed small spelling mistakes (Closes: #125408)

 -- Gustavo Noronha Silva <kov@debian.org>  Tue, 18 Dec 2001 02:06:07 -0200

sylpheed (0.6.6-1) unstable; urgency=low

  * New upstream release

 -- Gustavo Noronha Silva <kov@debian.org>  Sat, 15 Dec 2001 14:48:23 -0200

sylpheed (0.6.5-2) unstable; urgency=low

  * configure: changed instalation of the manual from /usr/share/sylpheed
    to /usr/share/doc/sylpheed-doc, a new package. This change and
    some modifications done to the doc-base files make the entries appear
    on dhelp/dwww, etc. (Closes: #119680).
  * debian/control: added the sylpheed-doc package
  * debian/rules: filled the binary-indep rule and some cleanup
  * debian/control: fixed a little typo (thanks to Yoshito Komatsu
    <ykomatsu@debian.org>)
  * sylpheed.desktop: applied patch from Yoshito Komatsu that
    (Closes: #112214)
  * debian/control: make sylpheed-doc conflict with previous versions
    of sylpheed and version 0.6.5claws1-2 and smaller of sylpheed-claws
    as they had documentation.

 -- Gustavo Noronha Silva <kov@debian.org>  Sat, 17 Nov 2001 19:35:23 -0200

sylpheed (0.6.5-1) unstable; urgency=low

  * New upstream release
  * Updated pt_BR.po, sent upstream.

 -- Gustavo Noronha Silva <kov@debian.org>  Wed,  7 Nov 2001 18:36:51 -0200

sylpheed (0.6.4-2) unstable; urgency=low

  * debian/rules: changed DH_COMPAT to 3, changed build dir from
    debian/tmp to debian/sylpheed
  * debian/rules: fixed some problems on the configure target, it
    was not touching configure-stamp, making ./configure run twice
    causing config.h to be regenerated and the whole program to be
    recompiled with a wrong LOCALEDIR definition (Closes: #116918)
    (Closes: #117035)
  * Added Suggests: on jpilot

 -- Gustavo Noronha Silva <kov@debian.org>  Thu,  1 Nov 2001 23:48:30 -0200

sylpheed (0.6.4-1) unstable; urgency=low

  * New upstream release
  * debian/rules: Added configure target
  * debian/rules: enables ssl, ldap, jpilot
  * debian/control: added build-deps to acheive the needs of
    the above
  * debian/control: added versioned build-deps on gpgme
    (Closes: #115532)

 -- Gustavo Noronha Silva <kov@debian.org>  Sun, 21 Oct 2001 20:55:20 -0200

sylpheed (0.6.3-1) unstable; urgency=low

  * Adopting package, set Maintainer field to me (Closes: #114639)
  * Added debian/sylpheed-debian.xpm, conforming to Debian standards
    for inclusion on the Debian menu system.
  * Edited debian/menu to add hints, change the name of the entry
    sylpheed->Sylpheed and add the icon mentioned above.
  * Added the manuals in english and japanese to doc-base. Maybe I
    should do a sylpheed-doc package? I'll think about that.
  * Removed INSTALL and INSTALL.jp from debian/docs.
  * Changed the way debian revision is handled in package version.

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 10 Oct 2001 19:27:54 -0300

sylpheed (0.6.3-0.1) unstable; urgency=low

  * New upstream release
  * last Takuo KITAME package.
  * change Maintainer to Debian QA Team <packages@qa.debian.org>

 -- Takuo KITAME <kitame@northeye.org>  Tue,  9 Oct 2001 12:10:51 +0900

sylpheed (0.6.2-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Mon, 17 Sep 2001 06:49:42 +0900

sylpheed (0.6.1-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Mon,  3 Sep 2001 02:24:16 +0900

sylpheed (0.6.0-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Thu, 30 Aug 2001 19:46:27 +0900

sylpheed (0.5.3-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Mon, 20 Aug 2001 02:54:04 +0900

sylpheed (0.5.0-1) unstable; urgency=low

  * New upstream release
  * applied patch of Bug#102470 (closes: Bug#102470)

 -- Takuo KITAME <kitame@northeye.org>  Fri,  6 Jul 2001 17:15:32 +0900

sylpheed (0.4.99-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Sun, 17 Jun 2001 13:18:52 +0900

sylpheed (0.4.66-2) unstable; urgency=low

  * --enable-jconv (closes: Bug#94183)
  * --enable-gpgme and move to non-US (closes: Bug#96686)

 -- Takuo KITAME <kitame@northeye.org>  Wed,  9 May 2001 23:06:09 +0900

sylpheed (0.4.66-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed,  9 May 2001 02:09:55 +0900

sylpheed (0.4.65-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed,  2 May 2001 17:01:21 +0900

sylpheed (0.4.64-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed, 18 Apr 2001 12:34:43 +0900

sylpheed (0.4.63-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed, 11 Apr 2001 20:00:12 +0900

sylpheed (0.4.62-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Tue, 13 Mar 2001 00:56:58 +0900

sylpheed (0.4.61-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Sat,  3 Feb 2001 04:02:48 +0900

sylpheed (0.4.60-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Tue, 30 Jan 2001 12:46:46 +0900

sylpheed (0.4.52-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Tue, 16 Jan 2001 18:08:24 +0900

sylpheed (0.4.51-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed,  3 Jan 2001 17:29:26 +0900

sylpheed (0.4.9-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Mon, 18 Dec 2000 10:54:04 +0900

sylpheed (0.4.8-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Fri,  8 Dec 2000 00:36:30 +0900

sylpheed (0.4.7-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Mon,  4 Dec 2000 01:43:18 +0900

sylpheed (0.4.6-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Tue, 28 Nov 2000 01:00:55 +0900

sylpheed (0.4.5-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Thu, 23 Nov 2000 07:34:37 +0900

sylpheed (0.4.4-2) unstable; urgency=low

  * Added desktop entry

 -- Takuo KITAME <kitame@northeye.org>  Thu, 16 Nov 2000 13:59:18 +0900

sylpheed (0.4.4-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Tue,  7 Nov 2000 19:13:14 +0900

sylpheed (0.4.3-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Thu,  2 Nov 2000 01:34:37 +0900

sylpheed (0.4.2-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Mon, 16 Oct 2000 06:46:38 +0900

sylpheed (0.4.1-1) unstable; urgency=low

  * Initial Release.

 -- Takuo KITAME <kitame@northeye.org>  Sat, 30 Sep 2000 16:31:27 +0900