File: changelog

package info (click to toggle)
k3b 2.0.3a-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 50,416 kB
  • ctags: 12,996
  • sloc: cpp: 100,125; sh: 67; xml: 10; makefile: 8
file content (1566 lines) | stat: -rw-r--r-- 53,898 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
k3b (2.0.3a-2) unstable; urgency=medium

  * Team upload.
  * Drop menu file and its pixmap, since k3b already provides a .desktop file.
  * Backport upstream commit 840121f0c0ecb5c1fc6324653b795fb7cba60deb to fix
    build with FFmpeg 2.9 and greater; patch
    upstream_Fixed-compilation-on-newer-ffmpeg-libav.patch (Closes: #807853)
  * Fix typos in README.Debian.
  * Update Vcs-Browser field.
  * Backport upstream commit d5b1016e6a4c1dfcf681ce33ea9ffdd0dd5daf24 to fix
    build with GCC 6; patch
    upstream_Fix-build-failure-when-compiling-with-GCC-5.patch
    (Closes: #811735)
  * With this upload, k3b should hopefully be back in testing.
    (Closes: #825440)
  * Remove k3b-dbg in favour of the -dbgsym packages.
  * Bump Standards-Version to 3.9.8, no changes required.

 -- Pino Toscano <pino@debian.org>  Sun, 17 Jul 2016 10:34:46 +0200

k3b (2.0.3a-1) unstable; urgency=medium

  * Team upload.
  * New upstream release. (Closes: #778736)
  * Update the patches:
    - Fixed_compilation_with_new_FFMPEG.patch: drop, backported from upstream
    - 103_kdepotpath.diff: drop, unapplied and no more needed since the KDE 4
      porting
    - 113_initial_preference.diff: refresh
    - 114_bug587996_bdr_capacity_fix.diff: drop, fixed upstream
    - k3bscsicommand_bsd-Do-not-access-the-scsi_sense_data.patch: drop,
      backported from upstream
    - k3bsetup-put-the-shebang-in-the-first-line.patch: drop, backported from
      upstream
    - fix-sox-detection-with-sox-14.4.0.patch: drop, backported from upstream
    - Fix-K3B-to-build-with-recent-FFMPEG-versions.patch: drop, backported from
      upstream
    - ffmpeg-more.diff: drop, fixed upstream
    - Prefer-growisofs-to-wodim-for-DVD-BluRay-burning.patch: drop, backported
      from upstream
  * Fix build, avoid adding the same subdirectory twice; patch
    cmake-duplicate-doc.diff.
  * Bump Standards-Version to 3.9.6, no changes required.
  * Re-enable the FFmpeg plugin, as it builds fine again:
    - install k3bffmpegdecoder.desktop in k3b-data
    - install k3bffmpegdecoder.so in libk3b6-extracodecs
    - stop passing -DK3B_BUILD_FFMPEG_DECODER_PLUGIN=OFF as cmake argument in
      rules
  * Install all the translated documentations in k3b-i18n.
  * Update watch file.
  * Remove the custom dh_builddeb handling in rules, as now the default
    compression is xz.

 -- Pino Toscano <pino@debian.org>  Sat, 12 Dec 2015 13:54:46 +0100

k3b (2.0.2-8) unstable; urgency=medium

  * Team upload.
  * Add udisks2 to depends (Closes: #730130)

 -- Scott Kitterman <scott@kitterman.com>  Sun, 26 Oct 2014 10:26:36 -0400

k3b (2.0.2-7.1) unstable; urgency=low

  * Non-maintainer upload.
  * Disable the FFmpeg plugin (Closes: #739312)

 -- Reinhard Tartler <siretart@tauware.de>  Tue, 13 May 2014 07:18:52 -0400

k3b (2.0.2-7) unstable; urgency=low

  * Team upload.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Enable the lame-based MP3 encoding plugin (based on Pino's work):
    - Build-Depend on libmp3lame-dev.
    - Install the new plugin (and its configuration) in libk3b6-extracodecs.

  [ Pino Toscano ]
  * Update Vcs-* headers.
  * Bump Standards-Version to 3.9.4, no changes required.
  * Add Fix-K3B-to-build-with-recent-FFMPEG-versions.patch (backported from
    upstream branch 2.0) and ffmpeg-more.diff to fix compatibility with newer
    ffmpeg/libav versions. (Closes: #720799)
  * Add Prefer-growisofs-to-wodim-for-DVD-BluRay-burning.patch (backported from
    upstream branch 2.0) to prefer growisofs to wodim for DVD/BluRay; add the
    growisofs recommend. (Closes: #714944)
  * Suggest kde-config-cddb for the CDDB configuration page. (Closes: #696828)

 -- Pino Toscano <pino@debian.org>  Sun, 25 Aug 2013 18:42:53 +0200

k3b (2.0.2-6) unstable; urgency=low

  * Team upload.

  [ Pino Toscano ]
  * Compress k3b-data and k3b-i18n as xz.
  * Add fix-sox-detection-with-sox-14.4.0.patch (backported from upstream
    branch 2.0) to fix the detection of sox >= 14.4. (Closes: #675737)

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Thu, 23 Aug 2012 17:54:37 -0300

k3b (2.0.2-5) unstable; urgency=low

  * Team upload.
  * Bump Standards-Version to 3.9.3, no changes required.
  * Drop the libmusicbrainz4-dev build dependency, since musicbrainz v2 is
    long deprecated and will be removed soon. (Closes: #666531)
  * Bump to debhelper compatibility v9:
    - bump the debhelper build dependency to 9
    - bump compat to 9
  * Link with --as-needed.

 -- Pino Toscano <pino@debian.org>  Fri, 01 Jun 2012 12:30:03 +0200

k3b (2.0.2-4) unstable; urgency=low

  * Team upload.
  * Add k3bscsicommand_bsd-Do-not-access-the-scsi_sense_data.patch (backported
    from upstream branch 2.0) to fix compatibility with FreeBSD >= 9.0
    libraries. (Closes: #660398)
  * Update patch 101_rename_normalize.diff to properly consider "normalize"
    the identifier to use for the normalize-audio version (thus fixing the
    normalize-audio detection). (Closes: #597155)
  * Add k3bsetup-put-the-shebang-in-the-first-line.patch (backported from
    upstream) to fix the detection of k3bsetup as shell script.
  * control: remove ${shlibs:Depends} from k3b-data and k3b-extrathemes.

 -- Pino Toscano <pino@debian.org>  Sat, 25 Feb 2012 16:15:14 +0100

k3b (2.0.2-3) unstable; urgency=low

  * Add Fixed_compilation_with_new_FFMPEG.patch. (Closes: #638546)
  * Update debian/control: fix hardcoded list of kFreeBSD architectures.
    (Closes: 634736)
  * Update debian/rules: turn off HAL support using K3B_ENABLE_HAL_SUPPORT=OFF.

 -- Fathi Boudra <fabo@debian.org>  Mon, 12 Sep 2011 20:11:56 +0300

k3b (2.0.2-2) unstable; urgency=low

  * Add libqtwebkit-dev build dependency. (Closes: #618170)
  * Fix lintian warning: description-synopsis-starts-with-article.
  * Update debian/k3b-data.install: add HTML doc.

 -- Fathi Boudra <fabo@debian.org>  Mon, 02 May 2011 10:36:26 +0300

k3b (2.0.2-1) unstable; urgency=low

  * New upstream release.
  * Turn off HAL support by default - patch cherry-picked upstream.
  * Drop hal dependency.
  * Update debian/k3b-data.install file.

 -- Fathi Boudra <fabo@debian.org>  Sun, 30 Jan 2011 20:54:21 +0200

k3b (2.0.1-2) unstable; urgency=medium

  * Fix a typo in the k3b.bug-script.
  * Report a proper capacity for BD-R disks (patch
    114_bug587996_bdr_capacity_fix.diff). (Closes: #587996)
  * Urgency=medium to get it to Squeeze faster.

 -- Modestas Vainius <modax@debian.org>  Wed, 29 Dec 2010 23:00:04 +0200

k3b (2.0.1-1) unstable; urgency=low

  * New upstream release:
    - Freeze on ripping Audio CD using external encoder to MP3 or FLAC
      (Closes: #581598).
    - Symbolic links are not added to a project when a folder is added
      recursively (Closes: #581070).

  [ Mark Purcell ]
  * Add debian/k3b.bug-presubj advising users of upstream support options.
  * Include wodim -checkdrive in reportbug output (debian/k3b.bug-script).
  * Update debian/watch - svn-upgrade.

  [ Fathi Boudra ]
  * Remove patches to improve dvd+rw-tools output parsing functions - merged
    upstream.
  * Update installed files.
  * Merge Ubuntu changes: set k3b as the default handler for iso files rather
    than ark.

 -- Fathi Boudra <fabo@debian.org>  Tue, 17 Aug 2010 09:05:35 +0300

k3b (2.0.0-1) unstable; urgency=low

  * New upstream release.
  * Add hal dependency to k3b package.
  * Bump Standards-Version to 3.9.0 (no changes needed).

 -- Fathi Boudra <fabo@debian.org>  Mon, 28 Jun 2010 21:31:16 +0300

k3b (1.93.0~rc4-1) unstable; urgency=low

  * New upstream release.
  * Update debian/k3b-i18n.install: handbook moved to userbase.kde.org.
  * Remove 102_rename_dvd+rw-tools.diff patch.
  * Add patches to improve dvd+rw-tools output parsing functions:
    - 01_dvd+rw-tools_format_parse_version.diff
    - 02_dvd+rw-tools_format_parse_copyright.diff
    - 03_dvd+rw-tools_booktype_parse_version.diff

 -- Fathi Boudra <fabo@debian.org>  Fri, 18 Jun 2010 21:25:46 +0300

k3b (1.92.0~rc3-2) unstable; urgency=low

  * Update location of KDE 4 HTML documentation.

 -- Fathi Boudra <fabo@debian.org>  Wed, 02 Jun 2010 01:04:52 +0300

k3b (1.92.0~rc3-1) unstable; urgency=low

  * New upstream release.

 -- Fathi Boudra <fabo@debian.org>  Sun, 30 May 2010 08:38:16 +0300

k3b (1.91.0~rc2-1) unstable; urgency=low

  * New upstream version.
  * Re-enabled k3bsetup.
  * Install all translations into k3b-i18n.

 -- Michael Meskes <meskes@debian.org>  Fri, 07 May 2010 13:18:50 +0200

k3b (1.90.0~rc1-1) unstable; urgency=low

  * New upstream release:
    - Empty Blu-ray medium not detected properly. (Closes: #568035)
    - Cannot edit time values in "Split Audio Track" and "Edit Audio Track"
      dialogs. (Closes: #569839)
  * Merge k3b-i18n package. It doesn't have his own source package anymore.
  * Remove patches:
    - 113_add_kfreebsd_support.diff - merged upstream.
    - 114_fix_ftbfs_kfreebsd.diff - stolen upstream.
  * Update debian/control:
    - bump build dependencies (debhelper and pkg-kde-tools).
    - remove libpolkit-qt-dev build dependency.
  * Update debian/rules:
    - disable k3bsetup to build with kdelibs 4.3.x.

 -- Fathi Boudra <fabo@debian.org>  Fri, 05 Mar 2010 20:18:39 +0100

k3b (1.70.0~beta1-2) unstable; urgency=low

  * Fix ftbfs on kFreeBSD:
    - update 113_add_kfreebsd_support.diff patch for libcam link failure.
    - add 114_fix_ftbfs_kfreebsd.diff - stolen upstream.
      the last argument is always required.

 -- Fathi Boudra <fabo@debian.org>  Mon, 08 Feb 2010 12:46:16 +0100

k3b (1.70.0~beta1-1) unstable; urgency=low

  * New upstream release.
  * Switch to dpkg-source 3.0 (quilt) format.
  * Remove patch: 109_disable_firstrun.diff - merged upstream.
  * Update debian/control:
    - remove quilt build dependency.
    - bump debhelper build dependency to 7.4.10.
    - bump Standards-Version to 3.8.4 (no changes needed).
    - split K3b extra themes into a new package (k3b-extrathemes).
  * Update debian/copyright: update years.
  * Update debian/rules: enable parallel build (pass --parallel to dh).
  * Update installed files.

 -- Fathi Boudra <fabo@debian.org>  Mon, 01 Feb 2010 14:53:04 +0100

k3b (1.69.0~alpha4-1) experimental; urgency=low

  [ Fathi Boudra ]
  * New upstream release.
    - Remove 107_iso_cue_mimetypes.diff - Merged upstream.
    - Remove 114_new_libmpcdec_api.diff - Merged upstream.

  [ Michael Meskes ]
  * Updated normalize-audio patch to make sure the program is correctly
    recognized. Thanks to Roderick B. Greening. (Closes: #549221)

 -- Michael Meskes <meskes@debian.org>  Fri, 27 Nov 2009 15:16:28 +0100

k3b (1.68.0~alpha3-1) experimental; urgency=low

  * New upstream release.
  * Add 113_add_kfreebsd_support.diff patch. Thanks to Petr Salinger.
    (Closes: #545958)
  * Add 114_new_libmpcdec_api.diff patch:
    - k3b port attempt to the new libmpcdec API.
      Thanks to Yavor Doganov. (Closes: #476379)
  * Refresh 107_iso_cue_mimetypes.diff patch.
  * Update debian/control:
    - Bump build dependencies version: debhelper, pkg-kde-tools and
      kdelibs5-dev.
    - Restrict cdrdao dependency to linux architectures only.
    - Add libcam-dev build dependency for kfreebsd only.
  * Bump Standards-Version to 3.8.3 (no changes needed).
  * Update debian/copyright: add Michał Małek.
  * Update debian/k3b-data.install: add k3bplugin.desktop file.
  * Update debian/rules: use 'kde' dh sequence addon.

 -- Fathi Boudra <fabo@debian.org>  Wed, 11 Nov 2009 16:36:12 +0100

k3b (1.66.0~alpha2-1) experimental; urgency=low

  * New upstream release (KDE 4 version).

  [ Fathi Boudra ]
  * Bump debian/compat to 7.
  * Update debian/control:
    - Move k3b to section utils.
    - Cleanup build dependencies.
    - Cleanup k3b dependencies.
    - Improve descriptions. (Closes: #487193)
    - Add debug package. (Closes: #492002)
  * Update debian/copyright.
  * Convert debian/rules to dh usage.
  * Remove debian/k3b.postinst file.
  * Install kio_videodvd in libk3b6-extracodecs package.
  * Move k3b.desktop file from k3b-data package to k3b package.

  [ Francois Marier ]
  * Removing myself from Uploaders field.

  [ Didier Raboud ]
  * Update debian/watch: handle alphas.
  * Update debian/control:
    - Bump Standards-Version to 3.8.2 (no changes needed).
    - Update libraries package name from libk3b3 to libk3b6,
      to reflect bump soname.
    - Update build dependencies: add libvorbis-dev, libsndfile1-dev,
      libsamplerate0-dev, libpolkit-qt-dev, libkcddb-dev and quilt;
      remove chrpath.
    - Drop Conflicts/Replaces for versions lower than Lenny's.

 -- Fathi Boudra <fabo@debian.org>  Mon, 10 Aug 2009 20:34:01 +0200

k3b (1.0.5-3) unstable; urgency=high

  * Acknowledge NMU (closes: #486112)
  * k3b: Add a versioned dependency on libk3b3 (closes: #486093)

 -- Francois Marier <francois@debian.org>  Fri, 20 Jun 2008 10:40:19 +1200

k3b (1.0.5-2.1) unstable; urgency=high

  * Non-maintainer upload, acked by uploader Fathi Boudra.
  * Add various missing replaces. (Closes: #486112)

 -- Adeodato Simó <dato@net.com.org.es>  Wed, 18 Jun 2008 18:37:36 +0200

k3b (1.0.5-2) unstable; urgency=low

  [ Michael Meskes ]
  * Moved changes in file src/k3b.desktop to a patch under debian/patches.

  [ Francois Marier ]
  * Sync with Ubuntu
    - Add kfile_k3b.so to k3b.install
    - libk3b3-extracodecs replaces libk3b2-extracodecs
  * Bump Standards-Version up to 3.8.0 (no changes)
  * Remove the KUBUNTU difference file

 -- Francois Marier <francois@debian.org>  Thu, 12 Jun 2008 14:20:20 +1200

k3b (1.0.5-1) unstable; urgency=low

  * New upstream release (closes: #465430, #483218)
  * Remove the kubuntu prefix on debian/patches/kubuntu*

 -- Francois Marier <francois@debian.org>  Tue, 03 Jun 2008 14:07:47 +1200

k3b (1.0.4-9) unstable; urgency=low

  * Merging the Ubuntu and Debian packages
    - adding a new libk3b3-extracodecs package for the FFMPEG and MP3 codecs
    - moving to the "kde" section
    - now uses cdbs to keep track of our patches

 -- Francois Marier <francois@debian.org>  Sun, 25 May 2008 20:43:52 +1200

k3b (1.0.4-8ubuntu2) intrepid; urgency=low

  * Remove build-dep on libdvdread

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 08 May 2008 11:50:03 +0100

k3b (1.0.4-8ubuntu1) intrepid; urgency=low

  * Merge from debian unstable, remaining changes:
    - Retained Build Depends on cdbs in debian/control
    (LP #226635)
    - Use cdbs for debian rules (allows for patches and .pot generation)
    - all the debian/patches files
    - libk3b2-extracodecs with usr/lib/kde3/libk3bmaddecoder.* AND usr/lib/kde3/libk3bffmpegdecoder.*
    - libk3b2.files has to list each file in usr/lib/kde3
  * Updated KUBUNTU-DEBIAN-DIFFERENCES to remove obsolete information

 -- Richard Birnie <Arbyuk@googlemail.com>  Wed, 05 Mar 2008 10:52:44 +0000

k3b (1.0.4-8) unstable; urgency=low

  * Update Maintainers and Uploaders fields.
    K3b is co-maintained with Debian KDE Extras team.
  * Update Vcs-Browser and Vcs-Svn fields to reflect the new home.

 -- Francois Marier <francois@debian.org>  Wed, 05 Mar 2008 13:45:46 +1300

k3b (1.0.4-7) unstable; urgency=low

  * Remove libqt3-compat-headers from build-depends (closes: #464431)
  * Remove -1 in the flac build dependency
  * Fix copyright notice to stop lintian warning

 -- Francois Marier <francois@debian.org>  Thu, 14 Feb 2008 23:04:06 +1300

k3b (1.0.4-6) unstable; urgency=low

  * Add .desktop icon in k3b-data (closes: #463731)
  * Bump debhelper compatibility to 6

 -- Francois Marier <francois@debian.org>  Sun, 03 Feb 2008 10:50:24 +1300

k3b (1.0.4-5) unstable; urgency=medium

  * Make k3b-data conflict on older versions of k3b (closes: #462496)
  * Urgency medium since this made the package non-upgradable

 -- Francois Marier <francois@debian.org>  Sat, 26 Jan 2008 11:31:38 +1300

k3b (1.0.4-4) unstable; urgency=low

  * Create a new k3b-data package to hold the arch-independent data files
  * Remove dependency on kdebase-bin (closes: #460481).  It's not needed
    since we don't build k3bsetup anymore.
  * Remove Entry key from k3b.desktop (fixes lintian info)

 -- Francois Marier <francois@debian.org>  Wed, 23 Jan 2008 00:02:28 +1300

k3b (1.0.4-3) unstable; urgency=low

  * Fix watch file (closes: #453529)
  * Add call to dh_desktop in debian/rules
  * Bump Standards-Version up to 3.7.3 (no other changes)

 -- Francois Marier <francois@debian.org>  Wed, 12 Dec 2007 13:24:42 +1300

k3b (1.0.4-2ubuntu4) hardy; urgency=low

  * Rebuild for missing stat64 symbol

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 30 Jan 2008 11:02:09 +0000

k3b (1.0.4-2ubuntu3) hardy; urgency=low

  * Fixed libk3b2.install:
    - kio_videodvd.so and kio_videodvd.la are installed

 -- Anthony Mercatante <tonio@kubuntu.org>  Tue, 22 Jan 2008 13:27:55 +0100

k3b (1.0.4-2ubuntu2) hardy; urgency=low

  [ Stefan Skotte ]
  * kio_videodvd wasn't installed correctly

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 20 Dec 2007 11:08:20 +0000

k3b (1.0.4-2ubuntu1) hardy; urgency=low

  * Merge Debian changelog, remaining Ubuntu changes in KUBUNTU-DEBIAN-DIFF.
  * Added conflicts and replacements of libk3b2-mp3 to -extracodecs. (LP: #164724)

 -- Jonathan Patrick Davies <jpatrick@kubuntu.org>  Fri, 23 Nov 2007 19:00:17 +0100

k3b (1.0.4-2) unstable; urgency=low

  * Remove k3bsetup.1 since we don't build k3bsetup anymore
  * Rename XS-Vcs-* fields to Vcs-*
  * Add libavformat-dev and libavcodec-dev to the build dependencies (from Ubuntu)

 -- Francois Marier <francois@debian.org>  Fri, 23 Nov 2007 09:45:28 +1300

k3b (1.0.4-1) unstable; urgency=low

  * New upstream release:
    - allow burning of files larger than 4 GB (closes: #444856)
    - work-around for the "disabled DMA bug" (closes: #439264)
    - only reload medium before verification if necessary
      (closes: #446196, #420674, #438865)
    - don't use -dvd-compat on DVD+RW (closes: #378051)
    - unmount drive before formatting (closes: #446471)

 -- Francois Marier <francois@debian.org>  Sat, 03 Nov 2007 18:24:53 +1300

k3b (1.0.4-0ubuntu2) hardy; urgency=low

  * Add libavformat-dev and libavcodec-dev to the build dependencies.
  * Renamed libk3b2-mp3 to libk3b2-extracodecs (supporting MAD and FFMPEG).

 -- Harald Sitter <apachelogger@ubuntu.com>  Thu, 22 Nov 2007 15:56:50 +0100

k3b (1.0.4-0ubuntu1) hardy; urgency=low

  * New upstream release.
  * Merged Debian changelog, remaining Ubuntu changes in KUBUNTU-DEBIAN-DIFF.

 -- Jonathan Patrick Davies <jpatrick@kubuntu.org>  Fri, 02 Nov 2007 22:12:17 +0100

k3b (1.0.3-5) unstable; urgency=low

  * Update SoX version string (closes: #448703)

 -- Francois Marier <francois@debian.org>  Wed, 31 Oct 2007 22:53:44 +1300

k3b (1.0.3-4) unstable; urgency=low

  * Disable 4BG check for files (closes: #444856).  Thanks to Victor Ashirov for the patch!
  * Replace "Open=false" by "NoDisplay=true" in videodvd.desktop (lintian warning)
  * Sync with latest Ubuntu patch:
    - Bump debhelper depends version to 5
    - Make libk3b-dev conflict with k3blibs
    - Add application/x-cue to the KDE mime-types
    - Disable FirstRun dialog

 -- Francois Marier <francois@debian.org>  Tue, 30 Oct 2007 14:59:19 +1300

k3b (1.0.3-3) unstable; urgency=low

  * Rebuild with new flac libraries (closes: #446775)
  * Make libk3b-dev depend on kdelibs4-dev (closes: #443374)
  * Add homepage field to debian/control

 -- Francois Marier <francois@debian.org>  Fri, 19 Oct 2007 15:23:32 +1300

k3b (1.0.3-2) unstable; urgency=low

  * Refer explicitely to /usr/share/common-licenses/GPL-2
  * debian/control: mention the svn repository
  * Fix lintian warning about main desktop icon

 -- Francois Marier <francois@debian.org>  Mon, 20 Aug 2007 21:14:14 +1200

k3b (1.0.3-1) unstable; urgency=low

  * New upstream release (closes: #432760, #431491, #433686)
  * Fix menu for menu transition

 -- Francois Marier <francois@debian.org>  Thu, 26 Jul 2007 00:18:10 +1200

k3b (1.0.3-0ubuntu4) gutsy; urgency=low

  * Droped kubuntu_10_no_k3bsetup_kmenu_entry.patch
  * Build without k3bsetup instead, fixes LP: #131791

 -- Anthony Mercatante <tonio@kubuntu.org>  Mon, 24 Sep 2007 20:44:43 +0200

k3b (1.0.3-0ubuntu3) gutsy; urgency=low

  * Make libk3b2 replace old libk3b-dev, closes LP No 123760

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 06 Aug 2007 17:08:13 +0100

k3b (1.0.3-0ubuntu2) gutsy; urgency=low

  * Add kubuntu_112_dont_require_mp3.diff, don't warn about no MP3

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 06 Aug 2007 15:38:25 +0100

k3b (1.0.3-0ubuntu1) gutsy; urgency=low

  * New upstream release.
    - Upstream tar.bz2 bunzip2ed and gzip -9'ed.
  * Remove conflicting .la and .so files from libk3b-dev, they are also in
    libk3b2.

 -- Frode M. Døving <frode@ubuntu.com>  Wed, 25 Jul 2007 13:24:06 +0200

k3b (1.0.2-1) unstable; urgency=low

  * New upstream release (closes: #413994)
  * Remove popup window when no problems were found (closes: #430130)
  * Fix "Source-Version" lintian warning

 -- Francois Marier <francois@debian.org>  Sun, 01 Jul 2007 04:47:05 +1200

k3b (1.0.2-0ubuntu4) gutsy; urgency=low

  *  Add kubuntu_111_advice_kubuntu_restricted_extras.diff
     Advice for getting mp3 support in K3b
     Fixes LP: 121877

 -- Mario Danic <mario.danic@gmail.com>  Thu, 12 Jul 2007 11:48:26 +0200

k3b (1.0.2-0ubuntu3) gutsy; urgency=low

  * Fixed kubuntu_101_rename_normalize.diff.
    Now looking for normalize-audio as app's name and
    wait normalize <version> as answer to --version
    Fixes LP : 44524

 -- Anthony Mercatante <tonio@ubuntu.com>  Tue, 10 Jul 2007 11:54:37 +0200

k3b (1.0.2-0ubuntu2) gutsy; urgency=low

  * Add kubuntu_10_no_k3bsetup_kmenu_entry to hide k3bsetup entry in
    Kmenu

 -- Anthony Mercatante <tonio@ubuntu.com>  Sun, 01 Jul 2007 01:21:29 +0200

k3b (1.0.2-0ubuntu1) gutsy; urgency=low

  * New upstream release

 -- Anthony Mercatante <tonio@ubuntu.com>  Sat, 30 Jun 2007 12:52:40 +0200

k3b (1.0.1-2) unstable; urgency=low

  * Rebuild for flac 1.1.4 transition (closes: #426678)
  * Remove DH_COMPAT from debian/rules to fix lintian warning

 -- Francois Marier <francois@debian.org>  Wed, 30 May 2007 22:12:02 +1200

k3b (1.0.1-1ubuntu3) gutsy; urgency=low

  * Switch packaging to cdbs
  * Fixed kubuntu_104_dont_require_suid_cdrecord_or_cdrdao.diff
    and kubuntu_107_iso_cue_mimetypes.diff to apply

 -- Anthony Mercatante <tonio@ubuntu.com>  Fri, 29 Jun 2007 00:52:35 +0200

k3b (1.0.1-1ubuntu2) gutsy; urgency=low

  * Rebuild for libflac++5 -> libflac++6 transition.

 -- Steve Kowalik <stevenk@ubuntu.com>  Sun, 24 Jun 2007 22:53:41 +1000

k3b (1.0.1-1ubuntu1) gutsy; urgency=low

  * New upstream release
  * Merged with debian
  * Fixed kubuntu_101_rename_normalize.diff. Closes Malone #44524

 -- Anthony Mercatante <tonio@ubuntu.com>  Thu, 31 May 2007 09:27:26 +0200

k3b (1.0.1-1) unstable; urgency=low

  * New upstream release (closes: #419499, #419628)
  * Build with libdvdread to enable DVD ripping.

 -- Francois Marier <francois@debian.org>  Fri, 20 Apr 2007 12:08:55 +1200

k3b (1.0-2) unstable; urgency=low

  * Fix conflict/replace of libk3b2 (closes: #418483)

 -- Francois Marier <francois@debian.org>  Wed, 11 Apr 2007 15:19:46 +1200

k3b (1.0-1) unstable; urgency=low

  * Major new upstream release which, according to the upstream developer, fixes most open bugs (closes: #354118, #336375, #345766, #348929, #349445, #352923, #365263, #374820, #374975, #377067, #385526, #386802, #398203, #398743, #347625, #387303)
  * libk3b becomes libk3b3
  * Add more rpath removals
  * Include flac and mpc in package description (closes: #410526)

 -- Francois Marier <francois@debian.org>  Fri, 30 Mar 2007 19:05:13 -0700

k3b (1.0-0ubuntu3) gutsy; urgency=low

  * Rebuild to depend on libflac++5 instead of libflac++5c2

 -- Emmet Hikory <emmet.hikory@gmail.com>  Thu, 03 May 2007 00:14:09 +0900

k3b (1.0-0ubuntu2) feisty; urgency=low

  * Removed kubuntu_10_device_arg.diff, k3b_extract_audiocd.desktop
    and kubuntu-media-k3b, this feature is now native

 -- Anthony Mercatante <tonio@ubuntu.com>  Sat, 31 Mar 2007 01:39:23 +0100

k3b (1.0-0ubuntu1) feisty; urgency=low

  * New upstream release
  * debian/control: Change Maintainer/XSBC-Original-Maintainer field.
  * debian/patches/kubuntu_106_no_splash.diff: drop patch, will be done
    in kubuntu-default-settings
  * Include some bug-fixes from upstream SVN:
    * KDE #143193: DVD copy when reading from a DVD+RW (off-by-one sector)
      debian/patches/k3b-svn-r644087-bug143193.diff
    * KDE #143165: Crash when using the Device menu without a selected device
      debian/patches/k3b-svn-r644089-bug143165.diff
    * KDE #143181: Cannot set burning speed manually
      debian/patches/k3b-svn-r644118-bug143181.diff
    * KDE #143107: Crash during DVD ripping
      debian/patches/k3b-svn-r644133-bug143107.diff
    * KDE #143236: Cannot add files to VIDEO_TS folder
      debian/patches/k3b-svn-r644512-bug143236.diff
    * KDE #143238: Problem dialog does not respect "do not show this again"
      debian/patches/k3b-svn-r644528-bug143238.diff
    * KDE #137975: Empty bibliography/abstract/copyright result in bad burn
      debian/patches/k3b-svn-r645043-bug137975.diff

 -- Luka Renko <lure@ubuntu.com>  Wed, 28 Mar 2007 18:00:56 +0200

k3b (1.0~rc5-0ubuntu1) feisty; urgency=low

  * New upstream release
  * removed k3b.postinst due to being redundant
  * updated and removed redundant patches, current patches are:
     kubuntu_101_rename_normalize.diff
       - normalize is called normalize-audio in debian
     kubuntu_102_rename_dvd+rw-tools.diff
       - change regex for dvd+rw-format utility
     kubuntu_103_kdepotpath.diff
       - hardcode kdepotpath to avoid buildd problems
     kubuntu_104_dont_require_suid_cdrecord_or_cdrdao.diff
       - remove warnings about cdrecord and cdrdao not being suid
     kubuntu_105_add_iso_burning_to_welcome_screen.diff
       - add icons for cd and dvd iso burning to welcome screen
     kubuntu_106_no_splash.diff
       - disable splash screen on startup
     kubuntu_107_iso_cue_mimetypes.diff
       - add application/x-iso and application/x-cue to MimeType and
         X-KDE-NativeMimeType
     kubuntu_108_add_specify_device_arg_on_cmd_line.diff
       - add an optional command line argument to specify the writer device
     kubuntu_109_disable_firstrun.diff
       - disable the first run dialog and tests
     kubuntu_110_disable_no_problems_found_popup.diff
       - disable passive popup saying no configuration problems found
  * Sync with debian (SVN 217) wodim changes not necessary from 1.0rc5

 -- Kenny Duffus <kenny@duffus.org>  Tue,  6 Feb 2007 10:36:17 +0000

k3b (0.12.17-9) unstable; urgency=low

  * Fix a typo in the manpage (--datacd instead of --datadvd).
  * Add Data DVD to the Konqueror actions menu. Thanks to Adriano Bonat!
  * Depend on cdrdao instead of recommending it (closes: #369930)

 -- Francois Marier <francois@debian.org>  Sun, 28 Jan 2007 21:15:39 -0500

k3b (0.12.17-8) unstable; urgency=medium

  * Remove a wrong version check for readom (follow-up to bug #401739)

 -- Francois Marier <francois@debian.org>  Thu, 14 Dec 2006 09:23:25 -0500

k3b (0.12.17-7) unstable; urgency=medium

  * Support for "readom" which is the new renamed "readcd" (closes: #401739)

 -- Francois Marier <francois@debian.org>  Tue, 12 Dec 2006 21:27:29 -0500

k3b (0.12.17-6) unstable; urgency=low

  * Use genisoimage instead of mkisofs.
  * Add a note regarding being part of the "cdrom" group to README.Debian

 -- Francois Marier <francois@debian.org>  Sun,  3 Dec 2006 16:41:49 -0500

k3b (0.12.17-5) unstable; urgency=low

  * Hack version checks to support wodim version numbers (closes: #397836, #399090)
  * Stop building k3bsetup since K3b should be working out of the box on Debian,
    otherwise it's a bug that needs to be fixed, not worked around with a utility.
    (closes: #393216, #397267, #385878)

 -- Francois Marier <francois@debian.org>  Sat, 18 Nov 2006 00:06:09 -0500

k3b (0.12.17-4) unstable; urgency=low

  * Remove unnecessary version check for cdrtools (closes: #397836)
  * Remove the deprecated /usr/share/applnk (closes: #398443)
  * Allow the use of cdrskin as an alternative to wodim (closes: #398398)
  * Set myself as maintainer with Jean-Michel's permission.

 -- Francois Marier <francois@debian.org>  Wed, 15 Nov 2006 21:13:20 -0500

k3b (0.12.17-3) unstable; urgency=low

  * Remove the cdrecord and cdrdao warnings (closes: #390083)
  * Support DEB_BUILD_OPTIONS="noopt" properly (via CXXFLAGS,
    not just CFLAGS) thanks to Modestas Vainius! (closes: #394276)
  * Fix a crash when changing the default for the last external
    application, thanks to Pier Luigi Pau! (closes: #386688)
  * Fix the watch file to use qa.debian.org

 -- Francois Marier <francois@debian.org>  Sat, 21 Oct 2006 15:24:15 -0400

k3b (0.12.17-2) unstable; urgency=low

  * Update transcode apt source (closes: #386080), thanks Eric!
  * Switch from cdrecord to wodim (closes: #386327), thanks Sune!
  * Fix the calls to dpkg-statoverride (closes: #381170), thanks Dirk!

 -- Francois Marier <francois@debian.org>  Wed,  6 Sep 2006 16:50:03 -0400

k3b (0.12.17-1ubuntu4) feisty; urgency=low

  * Add kubuntu_09_iso_cue_mimetypes.diff for iso files association
  * Add kubuntu_10_device_arg.diff, k3b_extract_audiocd.desktop
    and kubuntu-media-k3b for good KDE integration

 -- Anthony Mercatante <tonio@ubuntu.com>  Fri, 20 Oct 2006 18:56:32 +0200

k3b (0.12.17-1ubuntu3) edgy; urgency=low

  * Rebuild against dbus 0.90

 -- Sebastian Dröge <slomo@ubuntu.com>  Wed, 30 Aug 2006 13:12:25 +0200

k3b (0.12.17-1ubuntu2) edgy; urgency=low

  * removed versioning of kdelibs4-dev depend (malone 57602)
  * added kubuntu_08_dont_complain_about_non_suid_cdrecord.diff (malone 57105)

 -- Kenny Duffus <kenny@duffus.org>  Fri, 25 Aug 2006 17:25:34 +0100

k3b (0.12.17-1ubuntu1) edgy; urgency=low

  * removed debian_153_plugins_are_plugins.diff as fixed upstream
  * sync with Debian (SVN 185)

 -- Kenny Duffus <kenny@duffus.org>  Thu, 24 Aug 2006 15:13:53 +0100

k3b (0.12.17-1) unstable; urgency=low

  * New upstream release
  * Remove RPATHs using chrpath to get rid of lintian warnings

 -- Francois Marier <francois@debian.org>  Wed, 23 Aug 2006 19:04:42 -0400

k3b (0.12.16-1ubuntu3) edgy; urgency=low

  * tidied kubuntu_07_k3bsetup_override.diff
  * changed Section to kde

 -- Kenny Duffus <kenny@duffus.org>  Tue, 22 Aug 2006 11:54:28 +0100

k3b (0.12.16-1ubuntu2) edgy; urgency=low

  * Replaced_162_k3bsetup_overide.diff by kubuntu_07_k3bsetup_override.diff
    to let k3bsetup apply permissions correctly (closing #21359)
    Patch from Tom Albers

 -- Anthony Mercatante <tonio@ubuntu.com>  Sat, 19 Aug 2006 17:26:46 +0200

k3b (0.12.16-1ubuntu1) edgy; urgency=low

  * update kubuntu_03_open_iso_files.diff to take account of new language
  * Sync with Debian (SVN 172)

 -- Kenny Duffus <kenny@duffus.org>  Tue,  4 Jul 2006 12:10:46 +0100

k3b (0.12.16-1) unstable; urgency=low

  * New upstream release (closes: #375323)
    - fixed mixed-mode CD copy (closes: #367494)
    - fixed some SCSI device detection problems
  * Apply Romain Lenglet's patch to preserve k3setup's changes
    during package upgrades (closes: #367473)
  * Bump Standards-Version up to 3.7.2 (no changes)

 -- Francois Marier <francois@debian.org>  Sun, 25 Jun 2006 14:59:26 -0400

k3b (0.12.16-0ubuntu2) edgy; urgency=low

  * Reupload with build-dep on latest kdelibs, fix Qt binary compatibility break

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 28 Jun 2006 16:07:54 +0000

k3b (0.12.16-0ubuntu1) edgy; urgency=low

  * New upstream release
  * Sync with Debian (SVN 164)
    - except standards version kept as 3.6.2
  * Split debian patches out into seperate files (number coresponds to
    SVN revision on http://svn.debian.org/wsvn/pkg-k3b)
    - debian_023_k3bsetup_shbang_at_top.diff
    - debian_029_031_053_rename_normalize.diff
    - debian_029_rename_dvd+rw-tools.diff
    - debian_153_plugins_are_plugins.diff
    - debian_162_k3bsetup_overide.diff

 -- Kenny Duffus <kenny@duffus.org>  Fri, 23 Jun 2006 11:34:46 +0100

k3b (0.12.15-3) UNRELEASED; urgency=low

  * Apply Romain Lenglet's patch to preserve k3setup's changes
    during package upgrades (closes: #367473)
  * Bump Standards-Version up to 3.7.2 (no changes)

 -- Francois Marier <francois@debian.org>  Thu, 22 Jun 2006 12:50:55 -0400

k3b (0.12.15-2) unstable; urgency=low

  * Restore libk3b (closes: #355477)
  * Fix lintian warnings (thanks to James Thorniley!)

 -- Francois Marier <francois@debian.org>  Sun, 23 Apr 2006 23:35:09 -0400

k3b (0.12.15-1) unstable; urgency=low

  * New upstream release
    - improved error message (closes: #229051)
    - warn about shortened filenames (closes: #277155)
    - SCSI IO fix (closes: #339871)
  * Build without resmgr (closes: #362818)
  * Restore k3bsetup (closes: #360378, #296257)

 -- Francois Marier <francois@debian.org>  Sun, 23 Apr 2006 00:44:50 -0400

k3b (0.12.14-1) unstable; urgency=low

  * New upstream release
  * Move kcontrol to recommends to reduce the KDE dependency (closes: #353335)
  * Fix Ubuntu patch to k3bsetup2.desktop (closes: #353826)

 -- Francois Marier <francois@debian.org>  Fri, 24 Mar 2006 17:24:54 -0500

k3b (0.12.12-1) unstable; urgency=low

  * New upstream release
  * Remove the unused libk3b-dev package
  * Fix the file lists to include all libraries

 -- Francois Marier <francois@debian.org>  Thu, 16 Feb 2006 00:13:15 -0500

k3b (0.12.11-1) unstable; urgency=low

  * New upstream release (closes: #348929)
  * Fix the watch file (.gz -> .bz2)
  * Merge Ubuntu patch (kubuntu_01_hide_k3bsetup)

 -- Francois Marier <francois@debian.org>  Sun, 12 Feb 2006 13:31:47 -0500

k3b (0.12.10-2) unstable; urgency=low

  * Rename the menu file so that it shows up in the Debian menu system
    and install the freedesktop menu item into /usr/share/applications
    directly instead of /usr/share/applications/kde so that it shows up in the
    GNOME menu (closes: #345989)
  * Update the build dependencies for KDE 3.5, dbus 0.6 and the new hal
    (closes: #337882)
  * Remove unnecessary lines from debian/rules
  * Merge Ubuntu patches:
    - kubuntu_03_open_iso_files
    - kubuntu_04_add_iso_burning_to_welcome_screen
  * Remove the versioned dependency on k3b-i18n

 -- Francois Marier <francois@debian.org>  Sun,  8 Jan 2006 14:15:24 -0500

k3b (0.12.10-1) unstable; urgency=low

  * New upstream release
    - fixed Auto multisession mode in DVD projects
    - fixed crash in dcop call directBurn in case no valid burner device was set
    - fixed verification of datacd projects when using the MaxIso9660 option
    without the OmitVersionNumber option
  * Add libmad0-dev to the build dependencies

 -- Francois Marier <francois@debian.org>  Fri, 16 Dec 2005 12:47:27 -0500

k3b (0.12.14-0ubuntu7) dapper; urgency=low

  * Run gettext in build target not install target, needed
    earlier by pkgstriptranslations

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 22 May 2006 18:38:37 +0100

k3b (0.12.14-0ubuntu6) dapper; urgency=low

  * debian/rules:
    - added dh_iconcache.

 -- Daniel Holbach <daniel.holbach@ubuntu.com>  Thu, 18 May 2006 15:11:52 +0200

k3b (0.12.14-0ubuntu5) dapper; urgency=low

  * Alter debian/rules to mark .po files as UTF-8

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 27 Apr 2006 19:13:50 +0100

k3b (0.12.14-0ubuntu4) dapper; urgency=low

  * Reverting to first kubuntu_06_hide_k3bsetup.diff patch:
     - Changing the Category field prevents from using k3bsetup again.
     - k3bsetup will be deactivated in SystemSettings from the
       kde-systemsettings package.

 -- Raphaël Pinson <raphink@ubuntu.com>  Fri, 17 Mar 2006 14:55:09 +0100

k3b (0.12.14-0ubuntu3) dapper; urgency=low

  * Remove X-KDE-settings-system; from Categories in
    kubuntu_06_hide_k3bsetup.diff so the module doesn't show in SystemSettings.

 -- Raphaël Pinson <raphink@ubuntu.com>  Thu, 16 Mar 2006 22:57:23 +0100

k3b (0.12.14-0ubuntu2) dapper; urgency=low

  * Remove kubuntu_01_hide_k3bsetup.diff patch and replace it with
    kubuntu_06_hide_k3bsetup.diff:
     - Remove NoDisplay=true to prevent hiding k3bsetup in kcmshell
       (Closes: Malone #23007, KDE Bug #117455, Debian #353826)
     - Change the Category field so k3bsetup doesn't appear in the KDE menu
       (Was the goal of the original patch)
     - Rename to kubuntu_06 to prevent having two kubuntu_01 patches

 -- Raphaël Pinson <raphink@ubuntu.com>  Thu, 16 Mar 2006 15:46:39 +0100

k3b (0.12.14-0ubuntu1) dapper; urgency=low

  * New upstream release
  * closes malone #31578

 -- Kenny Duffus <kenny@duffus.org>  Wed, 15 Mar 2006 10:44:46 +0000

k3b (0.12.10-0ubuntu5) dapper; urgency=low

  * Update kubuntu_02_no_require_cdrdao.diff now that cdrdao
    is installed by default, but not setuid root

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 23 Feb 2006 14:20:21 +0000

k3b (0.12.10-0ubuntu4) dapper; urgency=low

  * Rebuild because of libXft.la is gone

 -- Stephan Hermann <sh@sourcecode.de>  Sat, 14 Jan 2006 05:19:13 +0100

k3b (0.12.10-0ubuntu3) dapper; urgency=low

  * rebuild for latest dbus, updated dependencies accordingly

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 20 Dec 2005 21:35:10 +0100

k3b (0.12.10-0ubuntu2) dapper; urgency=low

  * Don't build-dep on libresmgr-dev

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat, 17 Dec 2005 22:15:56 +0000

k3b (0.12.10-0ubuntu1) dapper; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat, 17 Dec 2005 21:45:34 +0000

k3b (0.12.9-1ubuntu2) dapper; urgency=low

  * Add build-dep on libmad0-dev

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 15 Dec 2005 19:30:51 +0000

k3b (0.12.9-1ubuntu1) dapper; urgency=low

  * Sync with Debian
  * Change debian/rules to apply patches
  * k3b-mp3 changed to libk3b2-mp3, follows libk3b2
  * Add kubuntu_05_no_splash.diff get rid of splash screen

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 15 Dec 2005 17:45:27 +0000

k3b (0.12.9-1) unstable; urgency=low

  * New upstream release:
    - warn about incorrectly encoded filenanes (closes: #303572)
    - support the media:// protocol (closes: #342648)
    - stop with an error instead of overwriting read medium (closes: #338274)
    - new Alsa plugin
    - new set of icons
  * Add a watch file
  * Rename k3blibs and k3blibs-dev packages to libk3b2 and libk3b-dev
    (closes: #341765)

 -- Francois Marier <francois@debian.org>  Mon, 12 Dec 2005 23:03:32 -0500

k3b (0.12.8-1ubuntu1) dapper; urgency=low

  * Sync with Debian
  * Rebuild for libstdc++ transition
  * Add kubuntu_01_kdepot.diff and modify debian/rules for .pot generation

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue,  6 Dec 2005 22:42:57 +0000

k3b (0.12.8-1) unstable; urgency=low

  * New upstream release (minor bug fixes):
    - Load index0 value in audio project.
    - Ignore case in cue files.
    - Fixed "eject media" setting.
    - Fixed a bug in the mp3 decoder which caused it to miss
      some perfectly valid mp3 files.
  * Updated README.Debian with a section about running k3b as root (thanks to
    Ross Boylan for the suggestion)

 -- Francois Marier <francois@debian.org>  Fri, 25 Nov 2005 12:02:49 -0500

k3b (0.12.7-1ubuntu1) dapper; urgency=low

  [ Martin Meredith ]
  * Resync with Debian
  * Added patch to add ISO file burning to welcome screen (kubuntu_04_add_iso_burning_to_welcome_screen.diff)
  * Changed B-D to libdbus-qt-1-dev

  [ Jonathan Riddell ]
  * Add build-dep on libmpcdec-dev for musepack support

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat,  5 Nov 2005 02:22:43 +0000

k3b (0.12.7-1) unstable; urgency=low

  * New upstream release (closes: #336756, #336676)

 -- Francois Marier <francois@debian.org>  Wed,  2 Nov 2005 09:03:15 -0500

k3b (0.12.6-1) unstable; urgency=low

  * New upstream release
  * Remove duplicate item in GNOME menu (closes: #335226)

 -- Francois Marier <francois@debian.org>  Sat, 29 Oct 2005 17:23:22 -0400

k3b (0.12.5-1) unstable; urgency=low

  * New upstream release
  * Add kdebase-kio-plugins to the recommended packages to enable features
    like file deletion in the built-in browser (thanks to Nikita Youshchenko
    for the suggestion)
  * Update the version dependency on k3b-i18n

 -- Francois Marier <francois@debian.org>  Wed, 19 Oct 2005 14:43:27 -0400

k3b (0.12.4a-3) unstable; urgency=low

  * Fix the name of normalize-audio (closes: #298686)
  * Fix the long name of dvd+rw-tools (closes: #328589)
  * Add menu item in GNOME (closes: #331212)

 -- Francois Marier <francois@debian.org>  Wed,  5 Oct 2005 12:15:36 -0400

k3b (0.12.4a-2) unstable; urgency=low

  * Remove unnecessary libid3 from the Build-Depends (closes: #329199)
  * Restore the lost changelog entry (from 0.12.1-3)

 -- Francois Marier <francois@debian.org>  Tue, 20 Sep 2005 12:24:17 -0400

k3b (0.12.4a-1) unstable; urgency=low

  [ Jean-Michel Kelbert ]
  * Apply and adapt a patch provided by Javier Fernández-Sanguino Peña for the
    README.Debian.
  (closes: #303433)
  * Don't change date of all files anymore during build.
  (closes: #288677)
  * Depend on libflac++-dev (>= 1.1.2-1) to ensure that the package is build
    with the new version.
  (closes: #325941, #320514)

  [ Francois Marier ]
  * New upstream release (closes: #328979)
  * Bump Standards-Version up to 3.6.2 (no changes)
  * Update FSF address in debian/copyright
  * Add myself to the Uploaders fields in debian/control to reflect
    co-maintainership
  * Fix lintian warnings related to the Debian menu item
  * Shorten and reformat package description (closes: #249910)

 -- Francois Marier <francois@debian.org>  Sun, 18 Sep 2005 23:45:44 -0400

k3b (0.12.2-0ubuntu2) breezy; urgency=low

  * Add suggests on k3b for k3b-mp3, closes http://bugzilla.ubuntu.com/15660

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat, 17 Sep 2005 21:51:42 +0100

k3b (0.12.2-0ubuntu1) breezy; urgency=low

  * New upstream release
  * Added support for .iso files to be automatically opened by k3b
  * Sponsored upload for Martin Meredith <martin@sourceguru.net>

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue,  5 Jul 2005 00:31:42 +0100

k3b (0.12.1-3) unstable; urgency=low

  * Upgrade build dependancy on dbus-qt-1-dev to build with a C++
    transitioned version. (closes: #322084)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Tue, 30 Aug 2005 22:54:44 +0200

k3b (0.12.1-2) unstable; urgency=low

  * Add to Build-Depends:
    - dbus-qt-1-dev, libhal-dev, libhal-storage-dev, libpopt-dev for DBus/Hal support
    - libmpcdec-dev for Musepack support
    - libresmgr-dev for Resmgr support
    - libtag1-dev for audio meta data reading with Taglib
    - libmusicbrainz4-dev for tag guessing using MusicBrainz
    - flac to avoid configure errors
  (closes: #315613)
  * Add *.la and *.so files to the k3blibs-dev package

 -- Jean-Michel Kelbert <kelbert@debian.org>  Tue, 28 Jun 2005 11:49:11 +0200

k3b (0.12.1-1ubuntu2) breezy; urgency=low

  * Removed flac patch and added flac as Build-Depend
    (oversight in previous package)
  * Add kubuntu_01_hide_k3bsetup.diff to hide k3bsetup
    from menu
  * Add kubuntu_02_no_require_cdrdao.diff to stop it warning
    if cdrdao is not installed
  * Sponsored upload for Martin Meredith <martin@sourceguru.net>

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 29 Jun 2005 00:34:01 +0100

k3b (0.12.1-1ubuntu1) breezy; urgency=low

  * Sync with Debian
  * Build for Breezy
  * Added libxi-dev as Build-Depends
  * Add Build-Depends on libtag1-dev, libmusicbrainz4-dev, libhal-dev, libmad0-dev, libdbus-qt-1-dev
  * Create package k3b-mp3 with MP3 decoder plugins
  * Fixed Bug/error in FLAC decoder plugin
  * Sponsored upload for Martin Meredith <martin@sourceguru.net>

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 27 Jun 2005 02:27:54 +0100

k3b (0.12.1-1) unstable; urgency=low

  * New upstream release

 -- Jean-Michel Kelbert <kelbert@debian.org>  Mon, 20 Jun 2005 17:16:46 +0200

k3b (0.11.24-0ubuntu1) breezy; urgency=low

  * New upstream release
  * Built for breezy
  * Fix typo in k3b.files (mimlnk -> mimelnk)
  * Sponsored upload for Martin Meredith <martin@sourceguru.net>

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 13 Jun 2005 11:33:54 +0100

k3b (0.11.23-0ubuntu4) breezy; urgency=low

  * Rebuilt for Breezy and Patched to fix build error

 -- Martin Meredith <martin@sourceguru.net>  Mon, 13 Jun 2005 03:16:47 +0100

k3b (0.11.23-0ubuntu3) hoary; urgency=low

  * Replaced libmad, libmad-dev
  * Changed cdrdao as a suggests
  * configure runs now with k3bsetup=no

 -- Andreas Mueller <amu@ubuntu.com>  Mon,  4 Apr 2005 23:50:28 +0200

k3b (0.11.23-0ubuntu2) hoary; urgency=low

  * Added libmad0 build depends (Hoary: 8052)
  * Added cdrdao as a new install depends (Hoary: 7877)
  * Added a README.Ubuntu about restricted formats
  * Removed k3bsetup, man page and his desktop file (Hosry: 8011)

 -- Andreas Mueller <amu@ubuntu.com>  Sat,  1 Apr 2005 19:46:18 +0200

k3b (0.11.23-0ubuntu1) hoary; urgency=low

  * Added sox, movixmaker-2 as a suggestion
  * Fixed session import.
  * Fixed seldom crash in the welcome widget.
  * Flac 1.1.2 compile fix.
  * Little fix in capabilities detection (only affects buggy firmwares)
  * Properly detect the Philips 2600
  * Made multisession selection in DVD project visible.
  * Fixed crash when importing session failed.
  * Fixed compilation with flac 1.1.2
  * New upstream release

 -- Andreas Mueller <amu@ubuntu.com>  Sun, 27 Mar 2005 18:08:33 +0200

k3b (0.11.20-2) unstable; urgency=low

  * Rename normalize to normalize-audio.
  (closes: #267052)
  * Apply a patch to update man page. Thanks to Stuart Prescott.
  (closes: #266005)
  * Move menu entry in Applications/Tools.
  (closes: #270444)
  * Apply a patch to prevent the ripping progress icon from flickering
    heavily. Thanks to Eike Sauer.
  (closes: #294230)
  * Add sox and movixmaker-2 to Suggests.
  (closes: #249278)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Fri,  4 Mar 2005 21:44:10 +0100

k3b (0.11.20-1) unstable; urgency=low

  * New upstream release

 -- Jean-Michel Kelbert  <kelbert@debian.org>  Fri, 11 Feb 2005 23:25:28 +0000

k3b (0.11.20-0ubuntu2) hoary; urgency=low

  * Add hidden=true to k3bsetup2.desktop

 -- Jonathan Riddell <jr@jriddell.org>  Thu, 17 Mar 2005 01:25:59 +0000

k3b (0.11.20-0ubuntu1) hoary; urgency=low

  * New upstream release
  * removed debian-patch, upstream fixed it now.

 -- Andreas Mueller <amu@ubuntu.com>  Sat, 12 Feb 2005 20:45:59 +0100

k3b (0.11.19-1) unstable; urgency=low

  * New upstream release

 -- Jean-Michel Kelbert <kelbert@debian.org>  Thu, 27 Jan 2005 09:56:51 +0100

k3b (0.11.18-2ubuntu1) hoary; urgency=low

  * Rebuild with new libflac (no changes)
  * Move patch for burn crash into debian/patches

 -- Jonathan Riddell <jr@jriddell.org>  Sat, 15 Jan 2005 22:37:07 +0000

k3b (0.11.18-2) unstable; urgency=high

  * Apply a patch to prevent k3b from crashing when pressing "Burn". That's
    why a set urgency to high.
  (closes: #289440)
  * Rebuild with newer FLAC.
  (closes: #289372)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Tue, 11 Jan 2005 20:50:31 +0100

k3b (0.11.18-1) unstable; urgency=low

  * New upstream release

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sun, 26 Dec 2004 22:38:48 +0100

k3b (0.11.18-1ubuntu1) hoary; urgency=low

  * New upstream release
  * added missing build-depend

 -- Andreas Mueller <amu@canonical.com>  Wed,  5 Jan 2005 17:03:27 +0100

k3b (0.11.17-1) unstable; urgency=low

  * New upstream release

 -- Jean-Michel Kelbert <kelbert@debian.org>  Thu, 23 Sep 2004 21:33:09 +0200

k3b (0.11.16-1) unstable; urgency=low

  * New upstream release
  (closes: #267338, #271780, #272122, #269736)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sun, 19 Sep 2004 10:27:06 +0200

k3b (0.11.14-2) unstable; urgency=low

  * Recompile k3b to prevent it from crashing when the configure diaglog is
    closed.
    (closes: #269741, #266086)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sat, 11 Sep 2004 15:00:23 +0200

k3b (0.11.14-1) unstable; urgency=low

  * New upstream release.
  (closes: #264943)
  * Move kcontrol do Depends.
  (closes: #252984)
  * Change the burning group to "cdrom".
  (closes: #263948)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Wed, 11 Aug 2004 20:00:12 +0200

k3b (0.11.13-1) unstable; urgency=low

  * New upstream release
  (closes: #261025, #257570, #253266, #252984, #249411, #248185, #240460, #260271, #253177, #249338)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Wed,  4 Aug 2004 15:18:37 +0200

k3b (0.11.12-1) unstable; urgency=low

  * New upstream release

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sat, 26 Jun 2004 17:18:49 +0200

k3b (0.11.11-1) unstable; urgency=low

  * New upstream release

 -- Jean-Michel Kelbert <kelbert@debian.org>  Tue, 15 Jun 2004 13:30:01 +0200

k3b (0.11.10-1) unstable; urgency=low

  * New upstream release
  (closes: #252291)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Wed, 26 May 2004 22:38:48 +0200

k3b (0.11.9-2) unstable; urgency=low

  * Depends now on kdebase-bin.
  (closes: #245566)
  * Suggests normalize and toolame.
  (closes: #240770)
  * Correct typos in description.
  (closes: #232004)
  * Remove references to wrong documentation in the manpage.
  (closes: #225758)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sat,  1 May 2004 11:22:30 +0000

k3b (0.11.9-1) unstable; urgency=low

  * New upstream release. Wouh, two releases today, I don't have time to
    package the first one.

 -- Jean-Michel Kelbert <kelbert@debian.org>  Mon, 29 Mar 2004 23:05:45 +0200

k3b (0.11.7-1) unstable; urgency=low

  * New upstream release
  * Remove dpatch commands from debian/rules
  (closes: #239832)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sun, 28 Mar 2004 12:56:43 +0200

k3b (0.11.6-1) unstable; urgency=low

  * New upstream release.
  (closes: #229898, #226858)
  * Add libflac++-dec to Build-Depends.
  * Merge libraries packages.

 -- Jean-Michel Kelbert <kelbert@debian.org>  Tue,  9 Mar 2004 15:36:23 +0100

k3b (0.10.3-5) unstable; urgency=low

  * Add kdebase-bin to Suggests in debian/control
  (closes: #227254)
  * Apply a patch to let cdrdao working with ATAPI drives on kernel 2.6
  (closes: #227336)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Wed, 14 Jan 2004 22:22:22 +0100

k3b (0.10.3-4) unstable; urgency=low

  * Add plugins to libk3plugins
  (closes: #225553, #225600)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Tue,  6 Jan 2004 08:54:15 +0100

k3b (0.10.3-3) unstable; urgency=low

  * Add libkcm_k3bsetup2.la to libk3bcore.
  (closes: #225566, #225589, #225985)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sun,  4 Jan 2004 01:27:35 +0100

k3b (0.10.3-2) unstable; urgency=low

  * Fix missing depends on k3b libs.
  (closes: #225457, #225459)
  * Change icons location under kde.
  (closes: #224820)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Thu,  1 Jan 2004 19:10:45 +0100

k3b (0.10.3-1) unstable; urgency=low

  * New upstream release
  (closes: #218063)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Tue,  9 Dec 2003 19:57:45 +0100

k3b (0.9-4) unstable; urgency=low

  * Add a patch to inform user to use 'dpkg-reconfigure cdrecord' instead of
    k3bsetup when k3b detect that cdrecord isn't setuid.
  * Add kcontrol to Recommands.
  (closes: #206753)
  * Add kdelibs-data to Depends since
    usr/share/mimelnk/application/x-iso.desktop and
    usr/share/mimelnk/application/x-cue.desktop which where conflicting with
    arson package are now included in it.
  (closes: #204532)
  * Add a patch for solving a syntax problem in some German entries.
  (closes: #212238)
  * Add the patch provided by Chris Cheney to clean debian/rules. Adapt the
    resulting debian/rules to k3b.(Thanks to Chris)
  (closes: #214509)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Fri, 10 Oct 2003 22:47:29 +0200

k3b (0.9-3.1) unstable; urgency=low

  * NMU
  * Removed x-cue.desktop and x-iso.desktop since they are now a part of
    kdelibs-data.

 -- Christopher L Cheney <ccheney@debian.org>  Mon,  6 Oct 2003 22:00:00 -0500

k3b (0.9-3) unstable; urgency=low

  * Change the previous changelog entry. Thanks to Rene Engelhard.
  * Add a patch for adding group read permission on cdrecord in k3bsetup. The
    patch concerns src/k3bsetup/k3bsetup.cpp. Thanks to Matthew A. Nicholson.
  (closes: #201393, #203819)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sun,  3 Aug 2003 21:20:13 +0200

k3b (0.9-2) unstable; urgency=low

  * Add a patch for changing dlopen() libcdda_interface.so.0 instead of
    libcdda_interface.so. The patch concerns src/tools/k3bcdparanoialib.cpp.
  (closes: #199819)

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sun,  3 Aug 2003 11:06:25 +0200

k3b (0.9-1) unstable; urgency=low

  * New upstream release.
  (closes: #195684, #202359)
  * Use -fpermissive to allow compilation with gcc 3.3.1.
  * Split the package in three because there is now a library: libk3bcore.
  * Added k3b-i18n in Suggest.

 -- Jean-Michel Kelbert <kelbert@debian.org>  Thu, 24 Jul 2003 00:17:05 +0200

k3b (0.8.1-3) unstable; urgency=low

  * Made some changes in the dependancies.
  * Compile against kdelibs4-dev (>= 3.1.1) in order to depend on the new
    libvorbis.

 -- Jean-Michel Kelbert <kelbert@debian.org>  Sat, 15 Mar 2003 00:57:14 -0500

k3b (0.8.1-2) unstable; urgency=low

  * Added a line debian/rules to change the date of admin/config.guess, so
    that the package will compile from sources.

 -- Jean-Michel Kelbert <kelbert@debian.org>  Thu, 13 Mar 2003 22:43:17 -0500

k3b (0.8.1-1) unstable; urgency=low

  * Initial Release.
    (closes: #165264)
  * Thanks to Karolina Lindqvist for manpages

 -- Jean-Michel Kelbert <kelbert@debian.org>  Wed, 19 Feb 2003 23:53:45 -0500