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
|
abcde (2.9.3-1) unstable; urgency=medium
* New upstream version with fixes since the 2.9.2 release:
+ Replace non-portable sed code for generating offset list with some
simple awk instead. Should now work on FreeBSD again.
+ Deal with bizarre cdda2wav behaviour when doing cdtext lookup - it
writes the track information to *stdin*. Closes Issue #89:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=89
+ Add a warning in abcde.conf about mayb needing to install recode before
using it in mungefilename()
* Update Standards-Version
-- Steve McIntyre <93sam@debian.org> Tue, 05 Feb 2019 09:57:06 +0000
abcde (2.9.2-1) unstable; urgency=medium
* New upstream version with fixes since the 2.9.1 release:
+ Fix up lookup code to deal with spaces etc. in directory names
+ Cope with "stub" releases in Musicbrainz
+ Always call glyrc with LC_ALL=C. Thanks to Andreas Vögele for the
report and the suggested fix. Closes Issue 83:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=50
+ Add a link to the CDDB data format in the abcde man page. Closes
Issue 81: https://abcde.einval.com/bugzilla/show_bug.cgi?id=81
+ More fixups of track number padding. Thanks to John Straw for the
patch.
* Updates also fix various Debian bugs. Closes: #905124, #893892, #898046
* Add a Depends on sensible-utils
-- Steve McIntyre <93sam@debian.org> Thu, 02 Aug 2018 23:34:06 +0800
abcde (2.9.1-1) unstable; urgency=medium
* New upstream version with fixes since the 2.9 release:
+ Fixups in the new Musicbrainz code:
- Cope with not finding an entry for a CD! (Closes: #892480)
- Fix (again!) dealing with CDs with no release events
-- Steve McIntyre <93sam@debian.org> Fri, 09 Mar 2018 23:25:03 +0000
abcde (2.9-1) unstable; urgency=medium
* New upstream version with various improvements and bugfixes:
+ Add some documentation for the aged CD ripper dagrab. Thanks to
Teika Kazura for the notification and suggested documentation. This
closes Issue 50: https://abcde.einval.com/bugzilla/show_bug.cgi?id=50
+ Work by Matthias Andree <matthias.andree@gmx.de> to address the issue
where abcde fails with accented characters from CD-TEXT. The issue and
partial fix applied here documented in Issue 53:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=53
and also in the abcde mailing list:
https://lists.einval.com/pipermail/abcde-users/2017-January/000232.html
+ Allow for embedding of album art downloaded by the getalbumart function.
Currently this is available for flac (using metaflac), mp3 (using eyed3),
m4a (using AtomicParsley) and WavPack aka wv (using wvtag).
This can be invoked in 3 ways:
1. Use the commandline '-B' option (this will also call getalbumart)
2. Use the commandline '-a embedalbumart' option to add to list of actions
3. Use 'embedalbumart' in the 'ACTIONS' list in ~/.abcde.conf
Still needs more development but it is perfectly usable at the moment!
+ Use md5 rather than md5sum under macOS. Thanks to JCount for the bug
report and also the fix. This solves Issue 59:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=59
+ Support added for encoding with Audio Interchange File Format (AIFF).
Thanks to Massimo Villa for the feature request. FFmpeg is required
for the encoding, the container and suffix are 'aiff'.
+ Allow selection of either cddb or musicbrainz from the command line:
-Q Select CDDBMETHOD from the command line. Choice is cddb or musicbrainz.
+ Command line letters are fast running out but the 'Q' option quite neatly
stands for 'Query'!
+ Allow for embedding with do_embedalbumart() for single track encodes when
OUTPUTFORMAT and ONETRACKOUTPUTFORMAT are different. Thanks to
Ashley Gittins for the bug report. This closes Issue 63:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=63
+ Experimental support for embedding albumart with ogg files. The slightly
tortuous technique drawn from 2 sources:
1. https://github.com/biapy/howto.biapy.com/blob/master/various/mussync-tools
2. https://github.com/acabal/scripts/blob/master/ogg-cover-art
Testing is strongly encouraged, perhaps the simplest way to test is with:
abcde -o ogg -B
Or the appropriate settings in an ~/.abcde.conf file.
+ Massive rework of CD lookup code so support multiple sources
better. Thanks to Gabriel Rosenkoetter for his initial idea in this
area, and to Tomasz Goliński on irc for initial inspiration on how
this should work better.
There are now 3 different options for CD lookup: cddb, musicbrainz and
cdtext. They can all be listed in a comma-separated list for
CDDBMETHOD and the code will now call all of them in the sequence
listed. All the results will be combined into one list at the end for
the user to select, just like would have previously worked for one
source only. Closes Issue 42:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=42
Closes: #842180
+ Fix Musicbrainz ID calculation in makeids()
Apply fix suggested by petecollins24@gmail.com; add PREGAP to
LEADOUT to correct Musicbrainz ID calculation. Hopefully closes
Issue 54: https://abcde.einval.com/bugzilla/show_bug.cgi?id=54
Closes: #892071
+ Fix abcde.mkcue() when handling the --wholedisk option. Thanks to
Nino Burini for the patch. Closes Issue 47 and maybe also 45:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=47
https://abcde.einval.com/bugzilla/show_bug.cgi?id=45
+ Add more comprehensive examples for filename munging in the example
config file. Closes Issue 49:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=49
+ Add a more better fix for the year lookup problem in
abcde-musicbrainz-tool
Thanks to Tom Samstag for the patch. Closes Issue 57:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=57
+ Redirect stderr on "which" calls to clear up error noise on some
systems. Closes Issue 56:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=56
+ Add Irix support, based on a patch by abcde@canavan.de. Closes Issue 29:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=29
+ Rework abcde-musicbrainz-tool to work with WebService::MusicBrainz 1.x
Thanks to Nicolas Guillaumin for the patch. Closes Issue 60:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=60
Also added a specific dependency on version 1.0.4 or newer, so
abcde-musicbrainz-tool will abort if the version found is too old.
Since tweaked to deal with multi-artist albums and tracks more
completely.
+ Add resume support in do_getalbumart()
+ Fix getopts setup for "P". Thanks to Alan W. Kerr for reporting this.
+ Major set of code cleanups to fix up lots of warnings found with
shellcheck, and a few other style issues:
- Lots of quoting fixes
- Use $( instead of `
- Stop using -o and -a syntax with if [ - use || or && instead
- Wrap and shorten some very long lines
+ Wrap some output messages so they fit on a standard width console
+ Factor out repeated code and make page() more useful
+ Add version check before resuming from an old ripping run
* Fix up wrong years in old changelog entries. Closes: #852745
* New MusicBrainz code fixes lots of things. Closes: #864006
* Move the Recommends on musicbrainz perl modules to Depends now that
MusicBrainz is the default CD lookup method.
* Add a version to the Depends on libwebservice-musicbrainz-perl - we
now need 1.0.4 or newer.
* Various minor packaging updates:
+ Update Standards-Version to 4.1.3
+ Update debhelper version
+ Switch to source format 3.0 (quilt)
+ Update the long description to update the list of output formats
-- Steve McIntyre <93sam@debian.org> Thu, 08 Mar 2018 14:06:40 +0000
abcde (2.8.1-1) unstable; urgency=medium
* New upstream version with one last-minute bugfix:
+Fix silly error introduced in abcde-musicbrainz-tool when fixing bug
30. Thanks to Thomas Klausner for the bug/patch. Closes Issue 52:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=52
-- Steve McIntyre <93sam@debian.org> Wed, 18 Jan 2017 14:06:40 +0000
abcde (2.8-1) unstable; urgency=medium
* New upstream version with various improvements and bugfixes:
+ Make fdkaac the default for m4a encoding. Faac can still be selected
for m4a encding via ~/.abcde.conf file but best not to :).
+ Split user-definable mungefilename function into mungetrackname,
mungeartistname, and mungealbumname, each of which default to
mungefilename Thanks to Gerald Turner for the patch and enhancement
request. This closes Issue 39:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=39
+ FAQs: Clarify the exit from multi-result CDDB search.
+ Fix to allow multiple output formats when aac fallback is triggered.
Thanks to Birk Bremer for the bug report. This closes Issue 35:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=35
+ Fix for some erroneous error and status logging. Thanks to Christian
Wasem for the bug report and fix. This closes Issue 32:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=32
+ Add support for trying multiple CD lookup services in order. Thanks to
Gabriel Rosenkoetter for the patch. Closes Issue 42:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=42
+ Add Recommends on glyrc and imagemagick in Debian packaging.
Closes: #827626
+ Fix up handling of the first few sectors when reading
from a whole-CD flac file or using cdparanoia in one-track
mode. Thanks to Matthias König for the patch. Closes Issue 44:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=44
+ Tweak the fix in musicbrainz for handling sketchy returned data
some more. Hopefully closes Issue 30:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=30
+ Re-enable some commented out cdparanoia/debug code in do_discid.
Closes Issue 14:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=14
+ Add "-a" to lots of grep calls in case of "binary" looking data,
e.g. non-ascii text in track titles!
Closes Issue 24:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=24
+ Add "-L" to default curl options, to follow redirects if needed
Closes Issue 40:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=40
Thanks to Gabriel Rosenkoetter for the patch.
+ Switch default from "cddb" to "musicbrainz" for track lookup
Closes: #842178
* Update debhelper compat level to 10, and tweak debian/rules to fix
debhelper warnings.
-- Steve McIntyre <93sam@debian.org> Sat, 14 Jan 2017 17:16:20 +0000
abcde (2.7.2-1) unstable; urgency=medium
* New upstream version with various improvements and bugfixes:
+ When using musicbrainz, don't assume that there will be release
events attached to a particular CD release. Bug fix for the addition
of year information support in 2.7.1. Thanks to Ed Oehler and Alan W.
Kerr for debugging help.
+ Support for output to the Matroska container (mka). Encoder
is FFmpeg (or avconv). Thanks to Shantiq and Fakeoutdoorsman of
the Ubuntu Forums for the idea.
+ Add id3tag mp3 tagger as this is the tagger available to
OpenBSD users. Thanks to Christopher Zimmermann for the
notification and patch.
+ Allow for cddb response 500. Thanks again to Von Welch for the
bug report and patch. This closes Issue 26:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=26
+ Fix for 'expansion of $REDIR' bug on MacOSX. Thanks to Von Welch
for the bug report. This closes Issue 22:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=22
+ Makefile adjusted to allow the sample abcde.conf file to be
installed by default to /etc rather than $(prefix)/etc.
Thanks to Volker Schmidt from archlinux for the bug report:
https://bugs.archlinux.org/task/46671
+ Allow getalbumart to correctly place cover image when single
track is selected. Thanks to Nino Burini for the bug report
and also the fix. This closes Issue 25:
https://abcde.einval.com/bugzilla/show_bug.cgi?id=25
* Update the Homepage URL. Closes: #767810
* Replace various http URLs with https
-- Steve McIntyre <93sam@debian.org> Wed, 13 Apr 2016 23:23:19 +0100
abcde (2.7.1-1) unstable; urgency=medium
* New upstream version, with lots of improvements and bugfixes:
+ Rebuild of the abcde Makefile. Thanks to Reuben Thomas and Steve
McIntyre as well as ReaperX7, bobzilla, 55020, GazL and dugan from
the Slackware Forums. This closes Issue 4:
http://abcde.einval.com/bugzilla/show_bug.cgi?id=4
+ Fix incorrect use of 'break'. Thanks to Reuben Thomas for the
bug report and fix which closes Issue 6:
http://abcde.einval.com/bugzilla/show_bug.cgi?id=6
+ Make older versions of id3 happy when 'Genre' field is empty.
Thanks to Martin Husemann for the fix which closes Issue 8:
http://abcde.einval.com/bugzilla/show_bug.cgi?id=8
+ Add YEAR and GENRE variables to do_getalbumart(). Thanks to
Johannes Gernemann for this patch which closes issue 9:
http://abcde.einval.com/bugzilla/show_bug.cgi?id=9
+ Support added for encoding to True Audio using tta while still
supporting the older ttaenc. Tagging is with mid3v2.
+ Support added for encoding to MPEG-1 Audio Layer II (mp2)
with either twolame or FFmpeg / avconv. Tagging with mid3v2.
+ Encoding to WavPack with FFmpeg. Some slight changes to WavPack
syntax with backward compatibility built in for abcde 2.7.
+ Encoding to m4a container with FFmpeg or avconv. This allows
for alac encoding with FFmpeg's reverse engineered alac encoder.
+ AAC encoding with fhgaacenc via Wine. Tagging is provided
by AtomicParsley which has been added back to abcde :). This
allows encoding with HE-AAC v2, unavailable with qaac.
+ Support added for AAC encoding with qaac via Wine. This
also allows for Apple Lossless Audio Coding (alac) using
either qaac or refalac. This closes Issue 142, thanks to
Bernd Fischer-Krellenberg for the enhancement request.
+ Grab year information too when using musicbrainz. Thanks to
Marco Hoppstaedter for the patch. Closes issue 10:
http://abcde.einval.com/bugzilla/show_bug.cgi?id=10
* Update debian/watch to match the new upstream home.
-- Steve McIntyre <93sam@debian.org> Mon, 02 Nov 2015 18:29:19 +0000
abcde (2.7-1) unstable; urgency=medium
* Remove Jesus and Colin from Maintainer and Uploaders fields, as
they've moved on. Thanks to both for their efforts!
* Update the Vcs- fields to point to current upstream.
* Clarify the old "public domain" mention in the license, now removed
upstream.
* Remove TODO file, removed upstream
* New upstream version, with lots of improvements and bugfixes:
+ Rewrite of abcde's mungefilename function. Thanks to
Andreas Kusalananda Kahari for this and also thanks
to Andrew Willis for the report which triggered the
rewrite. Thanks also to shughes for an earlier report.
This closes Issues 72 and 135.
+ TRACKTOTAL now written to flac and ogg files. Thanks to
monkth for the notification. This resolves Issue 76.
+ Support added for the downloading of album art. A huge
thank you to Johannes Gernemann who came forward with
the technique used and also the original patch. An equally
huge thanks to Richard who extended and greatly enhanced
the original patch. Detailed documentation added to the
abcde FAQ document although the sane defaults in place
will guarantee a good experience even for those who do
not read documentation! This closes Issue 33.
+ Support added for ripping with the GNU Compact Disc
Input and Control library (libcdio) as requested by
both gentoo and NixOS. The utility used is cd-paranoia
and can best be called from a conf file as follows:
CDROMREADERSYNTAX=libcdio
CD_PARANOIA=cd-paranoia
CDPARANOIAOPTS="--never-skip=40 --verbose"
with the CD_PARANOIA variable giving the correct path
to cd-paranoia. I believe that cd-paranoia uses the same
options as cdparanoia but if I am proven incorrect this
will need to be rectified...
+ Fix for encoding with bladeenc and usepipes.
+ Fix for broken ripping with dagrab. Closes Issue 140.
+ Fix for diskutil selecting wrong disk on OS X. Thanks
to Richard for this fix which closes Issue 139.
+ Added some error checking and documentation for
the abcde-musicbrainz-tool. Thanks yet again to
Matthias Andree for this work! Closes issue 138.
+ New variables for m4a/aac encoding options to be
manipulated in a users ~/.abcde.conf file:
1. FAACENCOPTS for faac encoding options
2. NEROAACENCOPTS for neroAacEnc options
3. FDKAACENCOPTS for fdkaacenc options
Note that these options replace the now obsolete AACENCOPTS.
+ Check added for neroAacTag when encoding with neroAacEnc.
+ Several additions to usepipes with the following encoders
being added:
1. mp3enc: mp3
2. speexenc: Speex
3. mpcenc: Musepack SV8
4. wavpack: WavPack
5. faac: aac
6. neroAacEnc: aac
7. fdkaac: aac
The cd ripper cdda2wav (icedax) has also been added.
+ Ripping and encoding with 'usepipes' fixed. This fix
closes Issue 46.
+ Suggested encoding options for mp3enc added to the sample
abcde.conf. Last release of mp3enc in 1998 but it still
works flawlessly with a modern abcde!
+ Suggested encoding options for l3enc added to the sample
abcde.conf. Congratulations to abcde which in 2015 still
works with l3enc which saw its final release in 1997!
+ Fix for -o option use with options and multiple outputs.
This allows for commandline options such as the following:
abcde -o 'flac:-8,mp3:-b 320'
Thanks to Matthias Andree for yet another quality patch!
This closes Issue 136.
+ Support added for ReplayGain with WavPack encoding.
+ Fix for MusePack to allow the use of the SV8 ReplayGain
application 'mpcgain'.
+ Monkey's Audio (ape) encoding added. Tagging is with
Robert Muth's apetag. Thanks to Shantiq for testing.
+ Simplify Opus tagging.This closes Issue 133.
+ Allow 'clean' when OUTPUTTYPE=wav, broken for some time.
Thanks to Roger rogerx.oss<at>gmail.com for showing the
problem and demonstrating the fix. This closes Issue 94.
+ Clarification that CDDBLOCALRECURSIVE=y is required for
local CDDB search. Thanks to Reuben Thomas for the
notification. This partially resolves Issue 121.
+ AtomicParsley removed from debian/control, WavPack added.
+ Details of abcde's handling of faac compiled with and
without mp4v2 added as a new entry to FAQs.
+ Fix to allow display of the 'date' meta tag generated
by eyeD3 in vlc, Audacious and friends.
Thanks to Reuben Thomas. This closes Issue 126.
+ Fix for flac floating point error. Thanks to rwvtveer
for the patch which closes Issue 113.
+ Formalised 3 methods of mp3 tagging using ID3TAGV:
1.id3v2.4 using eyeD3 (set in abcde as the default)
2.id3v2.3 using id3v2
3.id3v1 using id3
Thanks to Adriaan for this patch which fixes issue 101.
+ Support for WavPack added. Closes issue 123.
+ Fix for mp3 encoding with different versions of eyeD3.
Thanks to Matthias Andree for this patch.
+ Major AAC encoding cleanup, including addition of the fdkaac encoder.
Thanks to Doug Mcmahon for assistance with this.
-- Steve McIntyre <93sam@debian.org> Fri, 19 Jun 2015 13:18:14 +0200
abcde (2.6-2) unstable; urgency=medium
* Thanks to Andreas/Samuel for the previous upload attempting to fix
eyeD3 support, but it still seems buggy. :-(
* Instead, merge the upstream change that auto-detects the
version/syntax of eyeD3 on the system and uses the right set of
options. Closes: #776908
-- Steve McIntyre <93sam@debian.org> Tue, 17 Feb 2015 23:36:34 +0930
abcde (2.6-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Invoke eyeD3 with --set-encoding/--set-text-frame instead of
--encoding/--text-frame since Debian's version of eyeD3 is pre 0.7. Also
version the Suggests on eyed3 (<< 0.7~). (Patches by Samuel Thibault)
Closes: #772778
-- Andreas Metzler <ametzler@debian.org> Sun, 11 Jan 2015 17:52:39 +0100
abcde (2.6-1) unstable; urgency=medium
* New upstream release with lots of bug fixes:
+ Fix finding $CDROM on OS X. Thanks to niederstrasser for the patch.
Closes issue 71.
+ USEID3 and USEID3V2 variables are unused now, so remove them. Thanks
to vskytta for the patch. Closes issue 73.
+ Clean up movement to eyeD3, remove id3v2 remnants. Thanks to vskytta
for the patch. Closes issue 74.
+ Fix infinite loop if cddb fails. Thanks to Dominic Hargreaves for the
patch. Closes: #687038 in Debian
+ Switch from Musepack SV7 to SV8. Thanks to Andrew Strong for the
patch.
+ Allow aac encoding with neroAacEnc. Thanks to atheren for the patch.
Closes issue 8.
+ Allow opus encoding with opusenc. Thanks to Tomasz Golinski for the
patch. Closes issue 70.
+ Fix typo: s/CUEWAVEFILE/CUEWAVFILE/ so that abcde.mkcue should now
produce working cue files. Closes issue 78.
+ Remove no-op -q option. Closes issue 106. Thanks to vskytta for the
patch.
+ Fix issue 112: perl encoding pragma deprecation. Thanks to Alex Corrie
for the patch.
+ Fix option parsing for multiple output formats. Thanks to
matthias.andree@gmx.de for the patch. Closes issue 115.
+ Fix eyeD3 tagging for cddb entries without year. Thanks to vskytta for
the patch. Closes issue 107
+ Add mention of CD-TEXT support in the man page. Closes issue 102.
+ Make Y/N prompting more consistent. Closes issue 95
+ Remove the no-op -B option. Closes: #426531 in Debian
+ Document the need to escape parentheses in tag comments.
Closes: #256941 in Debian.
+ Concatenate option steps on -t/-T option. Thanks to Charles
Steinkuehler for the patch. Closes: #391294 in Debian
+ Try to use bsd-mailx where possible to force UTF-8 for cddb-tool mail
submissions. If not possible, attempt to force UTF-8 via the
environment and fall back to mail instead. Closes: #756289 in Debian,
issue 111.
* Update Standards-Version
-- Steve McIntyre <93sam@debian.org> Sun, 26 Oct 2014 13:33:50 -0700
abcde (2.5.4-1) unstable; urgency=low
* New upstream release with bug fixes.
+ Update GPL/FSF headers to match current versions. Thanks to vskytta
for the patch. (Closes issue 69).
+ Fix the command line for ID3SYNTAX=eyed3. Thanks to neil.gm.richards
for the patch. Closes issue 50.
+ Switch to eyed3 by default for MP3 tagging, as it looks to do UTF-8
tagging better. Closes issue 22 (hopefully)
* Remove the "A " from the beginning of the description to fix a
lintian warning
-- Steve McIntyre <93sam@debian.org> Tue, 18 Sep 2012 13:22:28 +0100
abcde (2.5.3-1) unstable; urgency=low
* New upstream release with lots of bug fixes.
+ Sort options alphabetically (Closes issue 58).
Thanks to vskytta for the patch.
+ Add Recommends: mailx in the Debian packaging for Debian/Ubuntu
users. Closes: #607147
+ Fix encoding call for m4a. (Closes issue 31). Closes: #449045
+ Fix do_musicbrainz() for the case where there are no matches.
+ When using Musicbrainz, checksum and only output unique matches for an
album. Closes: #669143
+ Add Recommends: atomicparsley in the Debian packaging for Debian/Ubuntu
users. LP: #535527
+ Remove documentation of the old "-R" option for recursive searching of
local CDDB data, it's now enabled always. (Closes issue 57).
+ Fix use of awk (sub instead of substr) when generating CRLF line endings.
(Closes issue 59).
+ Make sure that ABCDETEMPDIR is quoted so we can deal with spaces in
file and directory names. Closes issue 64. Thanks to
richard.security.consultant for the patch, adapted slightly.
+ Tweak do_cdtext() so it works on OS X too. Closes issue 65.
Thanks to richard.security.consultant for the patch.
+ Change cddb-tool to use bash to make sure that echo -n works.
Closes issue 67.
+ Fixes for lots of spelling mistakes from vskytta. Closes issue 68.
+ For safety across different systems, avoid using "sed -i".
Closes issue 66.
-- Steve McIntyre <93sam@debian.org> Sat, 16 Jun 2012 15:12:11 +0100
abcde (2.5.2-1) unstable; urgency=low
* New upstream release, fixing a silly bug in the 2.5.1 release:
+ Re-fix speex tagging. (Closes issue 19).
Thanks to vskytta for pointing out the problem - patch not applied
properly in 2.5.1
-- Steve McIntyre <93sam@debian.org> Sun, 29 Apr 2012 17:28:22 +0100
abcde (2.5.1-1) unstable; urgency=low
* New upstream release, fixing lots of bugs:
+ Several patches for improved Musicbrainz support from Martin Michlmayr:
- add musicbrainz support for FLAC files with embedded cue files.
Closes: #669139
- Don't submit to CDDB server when using musicbrainz
Closes: #669140
- Don't tag CDDB string with musicbrainz id
Closes: #669141
+ Fix speex tagging. (Closes issue 19).
Thanks to vskytta for the patch.
+ Fix aac tagging. (Closes issue 7).
Thanks to Andrew Strong for forwarding the patch.
+ Add ATOMICPARSLEY=AtomicParsley (Closes issue 37).
+ On OS X, switch from disktool to diskutil. (Closes issue 43).
+ Updates for CD device detection:
- Look for /dev/sr0, in case /dev/cdrom doesn't exist.
(Closes issue 52).
- Add suggested diskutil code to auto-detect the CD on OS X.
(Closes issue 45).
+ Check that we have $CDDBTOOL before we start. (Closes issue 27).
+ Change the meaning of EXTRAVERBOSE; previously, it was a y/n option
to make things more verbose. Add extra levels of verbosity (0, 1, 2 so
far) and a new vvecho() function for callers to use.
+ With EXTRAVERBOSE==2 or more, make run_command() print out each
command as it's run. (Closes issue 39).
+ If we don't find any CDDB or Musicbrainz information for the CD, try
to extract CD-Text information to populate the cddbinfo template.
(Closes issue 41). Closes: #449206.
+ Try to give more helpful error messages when we can't parse the
command line, and exit rather than carry on. (Closes issue 51).
+ replace deprecated egrep with grep -E (Closes issue 24).
Thanks to vskytta for the patch.
+ remove -o 0 options from make install (Closes issue 17).
Thanks to vskytta for the patch.
+ clean up indentation on older changelog entries
+ remove tarball target from Makefile since dir structure
has changed now that we use subversion.
+ improve presentation of options/defaults when asking a question
(closes issue 9)
-- Steve McIntyre <93sam@debian.org> Thu, 25 Apr 2012 13:04:57 +0100
abcde (2.5.0-1) unstable; urgency=low
* New upstream release, fixing several bugs:
+ Add support for Musicbrainz using a perl helper script.
Closes: #665970
+ Tweak man page. Thanks to Mats Erik Andersson for the patch.
Closes: #627237
+ Make the -q option work again. Thanks to A Mennucc for the patch.
Closes: #562522
* Remove the Suggests: python-musicbrainz; it's never been used and this
patch makes it totally obsolete. Closes: #657003
* Add Steve McIntyre to Uploaders
* Update debhelper build-dep.
* Add build-arch and build-indep rules
* Update Standards-Version to 3.9.3
-- Steve McIntyre <93sam@debian.org> Fri, 13 Apr 2012 22:29:45 +0100
abcde (2.4.2-1) unstable; urgency=low
* Bumped to 2.4.2
* Update standards version to 3.8.4 (no changes required).
* Fix Cue file always references "dummy.wav" bug
patch from Chris Chiappa (Closes: #459928).
* Fix leadin/leadout computation for cue files broken bug
Patch from Martin Michlmayr (Closes: #582175).
-- Colin Tuckley <colint@debian.org> Sat, 29 May 2010 09:43:54 +0100
abcde (2.4.1-1) unstable; urgency=low
* Bumped to 2.4.1
* In manpage note a 2nd use for LOWDISK (or '-l' switch)
it's faster and better on scratchy disks (Closes: #426343).
* Add configurable options for replaygain tools (Closes: #426544).
* Fix syntax error in tagged speex command (Closes: #554406)
Ubuntu patch by Michael Helmling.
* Fix mp3 tagging fails (for single author albums) (Closes: #554030)
patch from Christof Douma.
-- Colin Tuckley <colint@debian.org> Sun, 14 Feb 2010 13:07:34 +0000
abcde (2.4.0-1) unstable; urgency=low
[ Jesus Climent ]
* Bumped to 2.4.0
* Corrected REDIR redirection, this time with ifs instead of variable
substitution, which did not work (Closes: #527191).
* Added TPE2 for Various artists definition (Closes: #521669).
[ Colin Tuckley ]
* Incorporate syntax error fix patch from Andrew Ruder.
* Fix formatting for track number tagging (Closes: #520367, #435665).
* Replace dependency on cdda2wav with icedax since the former has
been superseded (Closes: #447397).
* Update standards version to 3.8.3 (no changes required).
-- Colin Tuckley <colint@debian.org> Fri, 16 Oct 2009 21:05:41 +0100
abcde (2.3.99.8-1) unstable; urgency=low
* Remove svn Revision tag from version.
* Correct homepage URL in README (Closes: #526165).
* Fix typos (Closes: #435605, #435606).
* Fix misspelling of comma in script and manpage (Closes: #435603).
* Fix Writable temp directories not owned/writeable (Closes: #143552).
* Fix broken range code, patch from Charles Steinkuehler (Closes: #389981).
* Remove unneeded escapes in cddb-tool URLs.
Add support for freedb2 (Closes: #391110).
another patch from Charles Steinkuehler.
* Fix Endless loop possible when mp3gain asks clipping question bug
(Closes: #411579).
* Update Vcs-Svn: tag in debian/control.
* Add a recommends for vorbis-tools (Closes: #392843).
* Update standards version to 3.8.2 (no changes required).
* Fix debian/preinst not to ignore errors.
-- Colin Tuckley <colint@debian.org> Sun, 02 Aug 2009 13:32:30 +0100
abcde (2.3.99.7-1) unstable; urgency=low
[ Jesus Climent ]
* The "It took me a long time to get this release out" release.
* abcde.1: remove -M in favour of "-a cue" (Closes: #382614, #396505).
* Added a check for a DOCUE already set in the command line
(Closes: #385663).
* Added -q <Q> as a quality option.
* PREGAP was not set in some situations (Closes: #390170).
* Corrected debian/changelog.
* Added -nv to wget for "no verbose" output, to avoid wget complaining it
cannot be quiet and verbose at the same time if "verbose = on" is set in
~/.wgetrc (Closes: #388715).
* Added XS-Vcs-Svn: field to control file.
* Added some hints if we are using Debian for what packages need to be
installed if their binaries are not found.
* Spelling mistakes corrected (thanks to Ville Skytta).
* Unset GREP_OPTIONS to avoid things like printing number in the beginning of
the line (Closes: #383771).
* Default answer to erase a playlist was not working (thanks to Charles
Steinkuehler) (Closes: #395108).
* Corrected man page wrapping. Thanks to Edward J. Shornock
(Closes: #399289).
* Adds DISCNUMBER to Ogg/Vorbis and FLAC when using -W.
* Minor typos (Closes: #458995).
* Added AtomicParley for AAC encoding. Thanks to Bill Adams.
* Added by Marc Staveley:
- post_encode hook.
- track comments if null and present in CDDB.
* Corrected copyright information (Closes: #516535).
[ Colin Tuckley ]
* Added new uploader (Closes: #529695).
* Fix Lintian warning for make-clean-error.
* Fix FSF address in debian/copyright.
* Fix binary-arch-rules-but-pkg-is-arch-indep lintian warning.
* Add homepage: field to debian/control
* Update standards version to 3.8.0
* Remove debian/conffiles (it is not needed).
* Fix syntax error in abcde (missing fi).
-- Colin Tuckley <colint@debian.org> Sat, 25 Jul 2009 09:50:42 +0100
abcde (2.3.99.6-1) unstable; urgency=low
* Default to UNICODE (UTF8) tags and comments (Closes: #282332).
- Added CDDBPROTO option in config file (Closes: #349951)
* Added a missing "INDEX 01" entry for CUE sheet creation.
* Avoid completing the encoding of files if we aborted previously.
* Embed the CUE sheet if we have a cuesheet file and we have a single FLAC
file, even if we are not tagging. This way we can use the file as a source
even if it is not tagged/named properly.
* Fails to quote filenames properly (Closes: #355296)
* Introduced VA/ONETRACKOUTPUTFORMAT.
* Added a missing check for AACENCODER.
* Updated config file with some new AAC bits.
* Updated FSF address.
* Corrected NetBSD options for ftp (Thanks to Marius).
* The final 2.4 will have "cuefile" as an action instead of as a flag.
* Create the cuefile when extracting from a FLAC file.
* Small bugs (Charles Steinkuehler):
- Added missing quotes (Closes: #375710)
- toolame is included in Debian as default MP3 encoder
- Use IFS to preserve spaces when adding metadata to a cuefile
* Small documentation changes:
- abcde.1 (Closes: #364978)
* The following entries have in common that both add an internal cue2discid
function. I will evaluate which one is more accurate and decide which one
to use. Right now they are not conflicting:
- Added internal mkcue and cue2discid functions (Charles Steinkuehler) and
add a check for internal abcde.<function> to make sure we are using the
correct version (not sure if needed ;)
- Added an internal implementation of cue2discid, so there is no need for
an external program to do the conversion. Thanks to Michael (sorry, his
mail does not have a surname).
* cue2discid is now an internal function, so no need for including the
python script in the path (Closes: #378407)
* cddb-tool.1 typo (Thanks to A. Costa) (Closes: #351775)
* abcde.1 typo (Thanks to David L. Anselmi) (Closes: #364978)
* Set proper nice values to not separate encoding and reading in the pipes
situation, while having a high priority process running in the system.
Also, set proper nice values to tagging tasks. Reading should remain as
the default higher priority task in the abcde flow (Closes: #359156)
* Standards bumped to 3.7.2.1, no changes needed.
-- Jesus Climent <jesus.climent@hispalinux.es> Sat, 5 Aug 2006 05:26:56 +0300
abcde (2.3.99.5-1) unstable; urgency=low
* Repaired multiple CDDB entries when recursive search is active.
* Patch from A. Costa to clean some typos (Closes: #351774).
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 07 Feb 2006 23:48:00 +0200
abcde (2.3.99.4-1) unstable; urgency=low
* Repaired multiple output encoding (Closes: #351362).
* Added missing space on a [] test statement.
* Added "default" action, so that one can add things on top of what we do
regularly, without having to list everything: "-a default,playlist" works.
* Restored all the > /dev/null instead of using grep -q, since it is not
portable.
* Added Solaris OS entry, in case we need to define things for it.
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 05 Feb 2006 15:24:00 +0200
abcde (2.3.99.3-1) unstable; urgency=low
* The "Mao es nuestro indiscutible lider" release.
* Check the CDROMREADER options we have in Debian which we depend on. Thanks
to Jose Carlos Garcia Sogo for finding the error.
* New recursive option for local CDDB repositories, to cope with other
players saving the entries.
* Brand new CD backup procedure: rip a CD into a single FLAC trac with an
embedded cuesheet using "-1 -M -o flac" and proceed to rip your tracks
from the obtained file using "-d file.flac -o <format>". It needs
cue2discid script from the examples directory to work. OH! If you manage
to get it working with bash, we can get rid of the python dependency...
* Initial steps to make abcde working with musicbrainz, although it is not
ready yet.
* Added a missing $ in a variable (Closes: #345629).
* Added -p to the mkdir's for $ABCDETEMPDIR (Closes: #345630).
* Added iconv + converted to utf-8 the charset of a ready-to-send CDDB
entry (Closes: #345708).
* Added AAC (Mpeg4) support.
* Small cd-discid update.
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 19 Jan 2006 23:27:40 +0200
abcde (2.3.99.2-1) unstable; urgency=low
* Missing bits in the 2.3.99.1 changelog:
- Man page: added information about -z (Debug option).
- Corrected config file with the BATCHNORM/NOGAP split
(Closes: #337622).
- Uses /bin/bash for the time being... We need to get some substitution
functions/operations for the bashisms we have: Closes: #337139.
* Config bits with corrected typos
* Adding musicbrainz support. First bits.
* Reworked comparison for numerical answer when selecting a CDDB output.
* TODO updated
-- Jesus Climent <jesus.climent@hispalinux.es> Mon, 12 Dec 2005 23:46:58 +0200
abcde (2.3.99.1-1) unstable; urgency=low
* Both -z and -C unset EJECTCD to avoid ejecting the CD when a) we are
debuging and b) we are not using the CD.
* If we are not reading the CD, set "loud" to see all the output messages
(that is, in most of the cases, the first encoding).
* Added -f to force some events that otherwise would erase files from our
current run. In the standard configuration ("OUTPUT=vorbis") the following
actions will need a "-f" to force the last one:
abcde -a read,encode -o ogg,flac
abcde -a tag,move,clean
During the second run abcde should complain that it is trying to erase the
working directory while the it has not performed any action on the FLAC
files, which we encoded previously.
* Convert the old cdparanoia-audio-tracks file into a status entry to avoid
eating files from previous rounds using an early version (Closes: #341050)
-- Jesus Climent <jesus.climent@hispalinux.es> Tue, 29 Nov 2005 23:27:20 +0200
abcde (2.3.99-1) unstable; urgency=low
* Added diff choice to CDDB entries ("1,4").
* Added SHOWCDDBFIELDS to allow the user to show YEAR and GENRE in the
parsed CDDB output.
* Suggests mkcue, and erase old cdgrab info since sarge is out.
* Changed cdparanoia-audio-tracks to use the status file to save the data.
* Added the possibility of using a singletrack flac file with an embeded
cuesheet as a source of tracks.
* Added -z for easy and quick debug.
* BATCH has been split into two options: BATCHNORM which allows, by using
-b, to use the -a normalize in all the files at once, and NOGAP, that by
using -g, introduces the lame's --nogap extension.
* Added replygain using the appropriate tags with Ogg/Vorbis and Ogg/FLAC.
* Replaygain is an action, not a flag, since it can be performed individually
in the chain of events.
* debian/{rules,control}:
- Changed the target directory from tmp to abcde, to accommodate to compat
mode 4.
- Bump standards to 3.6.2.1. No changes needed.
* Added "decho" as a DEBUG output for some specific debug variables.
* Added USEPIPES file, with information about how to add Unix pipes support.
* Added one more checking for PIPES*_* unset variables (which means support
is not added to abcde).
* Added toolame as an optional MP3 encoder.
* Added a "-u" flag to set the FreeDB/whatever-cddb-server-you-use to use
th 6th step of the protocol and request the entries in UTF-8, which
hopefully will add the expected UTF-8 tags and comments.
-- Jesus Climent <jesus.climent@hispalinux.es> Sat, 22 Oct 2005 22:53:37 +0300
abcde (2.3.4-1) unstable; urgency=low
* Some patches from Tom Spindler <dogcow () babymeat ! com>
- Added some quoting to the md5sum checkings, since the variables could be
null.
- NetBSD bits to use ftp instead on anything else to fetch stuff.
* do_playlist needs to convert the OUTPUT to the CONTAINERS to avoid ending
with playlists pointing to .vorbis files (Closes: #326487).
-- Jesus Climent <jesus.climent@hispalinux.es> Sat, 3 Sep 2005 16:50:07 +0300
abcde (2.3.3-1) unstable; urgency=low
* Rips done in a single track were getting tagged as Various. Corrected.
* Possibly eliminated some bashisms from using a variable as a variable
(Closes: #324399). Thanks to A Costa.
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 26 Aug 2005 01:36:35 +0300
abcde (2.3.2-1) unstable; urgency=low
* Too fast... I forgot to make the tarball and change the version strings in
several places. Fixed.
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 19 Aug 2005 00:44:37 +0300
abcde (2.3.1-1) unstable; urgency=low
* The new "I knew there were going to be bugs" upstream release!
* MKCUE needs to be passed some $CDROM as an option, or otherwise it will
not read the CDROM, in case is not /dev/cdrom.
* Also, make the CUEREADER a bit more general, since we might be using other
CUE extractors.
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 18 Aug 2005 23:44:20 +0300
abcde (2.3.0-1) unstable; urgency=low
* New upstream release!
* Defining the tracknumber now resets the first track if given a number
different than 1 (that is: abcde -T 1 2-10 creates songs 1 to 9).
* Modified the FAQ to reflect the changes on Marillat's repo
(Closes: #315724).
* Should be "space" safe: works properly when the working directory contains
a space (Closes: #147493).
* Repared the CD query for the discid code. When failing to read a disc,
actually report that there might be no disc in the drive.
* Right now, walk over the different encoders we Depends: on in Debian and
use the one available: if a user has a FLAC encoder, abcde will no install
vorbis-tools, so it will fail to run out of the box (Closes: #321216)
* Added CUE support. Still experimental...
* Added FLAC on Ogg. Still not activated, since we cannot get comments added
as a post-process action.
* Applied patches from Fedora Core (Credit goes to Nils Philippsen
<nphilipp@redhat.com>)
* Added a post_read() function to be executed before ejecting the CD.
* Typos reported by A Costa corrected (Closes: #311463)
* Problem with abcde being run in a directory with files containing only
numbers solved (Closes: #313628).
* vorbiscomment uses now "-R" (Closes: #303566).
* "-t" and "-T" use the first track as a starter for the track list.
(Closes: #305749).
* Added CDPARANOIACDROMBUS option to define -d in case of using IDE and SCSI
in case of using ide-scsi emulation layer (Closes: #290768).
* Define metaflac in abcde.conf (Closes: #303555)
* Added the default "-f" option to the configuration file, to represent the
actual default option.
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 11 Aug 2005 00:47:27 +0300
abcde (2.2.6-1) unstable; urgency=low
* Double quotation added to solve parsing * as a wildcard (Closes: #302904).
Thanks to Christian Grigis for the patch. Also (Closes: #268088).
-- Jesus Climent <jesus.climent@hispalinux.es> Sun, 3 Apr 2005 18:18:03 +0000
abcde (2.2.5-1) unstable; urgency=low
* CDPARANOIAOUTPUT missed some quotes.
* Removed some useless lines.
* If BATCH is used with ONETRACK, disable BATCH.
* Small typos with CDROM comparisons.
* Logic for CDROM variable improved.
* Version bumped to 2.2.5 and targeted to Sarge.
-- Jesus Climent <jesus.climent@hispalinux.es> Sat, 2 Apr 2005 21:05:18 +0300
abcde (2.2.4-1) unstable; urgency=low
* Changed the way we call flac, to adapt to the new times:
--import-vc-from= to --import-tags-from.
* DOSPLAYLIST was not included in the list of options.
* Options passed to the encoder by using <-o ogg:"-b 192"> are now
supported. One can modify the way abcde encodes just for the current CD.
* Unfortunatelly I forgot to add the starting number for tags in Ogg. For
MP3 is a bit more difficult, since it needs changing the X/YY code.
* Also, the order of the tags in metaflac is important for the utf8 names.
Thanks to Frederik Juul Christiani (Closes: #297482)
* Added CDROMID in the .conf file, for reader programs that need it
(Closes: #297005)
* Added a check for cdparanoia when encountering data-only CDs.
-- Jesus Climent <jesus.climent@hispalinux.es> Tue, 1 Mar 2005 15:14:24 +0200
abcde (2.2.3-1) unstable; urgency=low
* debian/control
- suggest normalize-audio, since it changed its name (Closes: #287674).
* Use the default while erasing an existing playlist (Closes: #288835).
* Does not destroy track information when a track contains "=" in the name
(Closes: #290709).
-- Jesus Climent <jesus.climent@hispalinux.es> Sat, 22 Jan 2005 15:35:46 +0200
abcde (2.2.2-1) unstable; urgency=low
* Quotes missing when evaluating a value (Closes: #284018).
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 3 Dec 2004 09:20:18 +0200
abcde (2.2.1-1) unstable; urgency=low
* Spotted and solved a problem with the way the data tracks were detected
(Closes: #282647).
-- Jesus Climent <jesus.climent@hispalinux.es> Wed, 24 Nov 2004 22:47:54 +0200
abcde (2.2.0-1) unstable; urgency=low
* New release! Let's see if abcde 2.2 gets into Sarge.
* debian/control
- Bumped to 3.6.1.1. No changes needed.
* Added support for MPP/MP+(Musepack) encoding. Although I am trying to
get 2.2 for Debian Sarge release, mpc seems safe enough to introduce. See
corecodec.org for code.
* Some POSIX shell corrections (making the code more portable). Thanks to
Guillem Jover for pointing the problem out.
* CDYEAR is also passed to do_move(), so one can use it for sorting the
directories.
* Small MacOS X fix, allowing directories with "()" to work. Thanks to Evan
Jones.
- On the MacOS X, I still do not know if abcde works correctly. If does
not, please, drop a note. Or else.
* DOSPLAYLIST also changes "/" with "\".
* DATA tracks are now excluded from the ripping process using internally
the cdparanoia "-Q" query option. If using another ripper, it does not
work (at least there is no support for them in abcde)
(Closes: #112692, #117412).
* New "0" choice for "None of the above" has been introduced. If selected, a
template is created and the user encouraged to edit it (Closes: #147683).
* New options for when the PLAYLIST already exists: erase, append or keep.
* Bug fixes along the code:
- abcde.1 corrections and additions
- abcde corrections and code reorganization. abcde now exits earlier if
some of the options are incompatible. Also the actions are set as
variables earlier, so we use less calls to external tools.
- abcde.conf additions
* The GENRE is munged now in its own mungegenre function, so that no more
upper-to-lowercase is done (forced) except if the default is used.
* Examples added to the tarball and /usr/share/doc/abcde/examples with two
scripts to make abcde kind-of-a ripper daemon.
* Add CDDB information to Ogg/Vorbis and FLAC files (Closes: #265358).
* Added INTERACTIVE option. Set it to "n" and there you go, without user
interaction.
* Changes normalize to normalize-audio (Closes: #267053)
* Copes with wav files being erased by the ripping tool.
* Small patch to support ()'s in the path under MacOSX. Thanks to Evan Jones
for noticing and sending the patch.
* Added "-w <COMMENT>". Used to give a comment to a given CD.
* Added "-W <number>". Used to combine "-T #01 -w CD #".
* Added "-t <number>" to modify the numbering from a starting point
(Closes: #95828). Geez! That is low bug number...
* Added "-T <number>" to modify also the tag entries on the songs. Currently
available for FLAC and Ogg/Vorbis.
* Removes trailing spaces (Closes: #280382).
* TRACKNAME now combines multi-lines from long CDDB entries.
* debian/rules:
- s/dh_installmanpages/dh_installman/
-- Jesus Climent <jesus.climent@hispalinux.es> Wed, 10 Nov 2004 00:57:00 +0200
abcde (2.1.21-1) unstable; urgency=low
* Changed normalize with normalize-audio (Closes: #267053).
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 20 Aug 2004 13:16:46 +0000
abcde (2.1.20-1) unstable; urgency=low
* The "Let's have a good abcde in Sarge" release.
* The mungefile() function changes * with + by default to avoid creating
directories with the start expanded to the files found in the current
directory. abcde2.2 will most likelly contain a better workaround.
* Correct default OUTPUTFORMAT in man page (Closes: #250649)
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 30 Jul 2004 10:16:46 +0300
abcde (2.1.19-1) unstable; urgency=low
* Encoding the whole CD in one file is now possible. Use "-1" as a flag
(Closes: #126267).
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 9 Apr 2004 17:04:58 +0000
abcde (2.1.18-1) unstable; urgency=low
* Do not release in a hurry. The eject program is not needed if CDSPEEDVALUE
is not set and no EJECT action is performed (Closes: #242506)
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 8 Apr 2004 05:18:49 +0000
abcde (2.1.17-2) unstable; urgency=low
* HUH! the version number in the abcde executable was wrong.
-- Jesus Climent <jesus.climent@hispalinux.es> Wed, 7 Apr 2004 21:01:50 +0000
abcde (2.1.17-1) unstable; urgency=low
* Dud! Those missing quotes are going to kill me. Quotes restored and
(Closes: #242508).
-- Jesus Climent <jesus.climent@hispalinux.es> Wed, 7 Apr 2004 06:30:31 +0000
abcde (2.1.16-1) unstable; urgency=low
* New setting for the CD speed. Some drives have a higher failure ratio when
spinning at high speed.
* Added a pre-read function for preparations. Uses include closing the CD
tray (Closes: #137548).
* Added COMMENT part in OggFlac metadata.
* Documentation update: README, abcde.1
* Do not tag GENRE and DATE in Ogg/Vorbis if CDDB does not provide them
(Closes: #235531).
* Solved bug with batch encoding, thanks to Travis McKay.
* When *DATAPREFIX was set, the playlist creation was made without newline.
* Added >&2 redirection to visualize the "Erase playlist" question
(Closes: #241221).
* Added the option "-m" to modify the resulting playlist, to contain CRLF at
the end of every line, letting some hardware players which insist with
DOS-style files to use them. Also, added DOSPLAYLIST as a config option.
* When using a selected, localy cached CDDB entry, we forgot to show the
selection when asking the user for editing the choice. Now we show it.
* Improved the logic in the order of events when using a local CDDB repo.
-- Jesus Climent <jesus.climent@hispalinux.es> Tue, 6 Apr 2004 05:29:38 +0000
abcde (2.1.15-1) unstable; urgency=low
* EDITOR is called now evaluating the variable, so it works with full path
and arguments.
* Patch for making md5sum a variable (since some systems use a different
name).
* Correction by "huf" <mihi at mail.eol.hu>. The test code in line 376
needed some quotes.
* The PADDING code and some CDDB funcions were *really* messy. Now it looks
cleaner, works faster and some not needed network operations are no
longer performed when we are working with local CDDB repositories.
* Added "-V" for extra verbosity (on slow networks the user might be waiting
and wondering is somethins is happening).
* Solved a bug with the non-interactive code.
-- Jesus Climent <jesus.climent@hispalinux.es> Mon, 16 Feb 2004 00:13:12 +0000
abcde (2.1.14-1) unstable; urgency=low
* Missing quotes restored (Closes: #228648).
-- Jesus Climent <jesus.climent@hispalinux.es> Tue, 20 Jan 2004 06:43:04 +0000
abcde (2.1.13-1) unstable; urgency=low
* Solved the problem with re-runs of multiple choices not showing all the
choices (Closes: #228405) (this was a quick one)
* We now show the selected CDDB entry on a second run, instead of all of
them (not that one should stop abcde, but just in case). This way
consecutive interrupted runs obtain the same results.
-- Jesus Climent <jesus.climent@hispalinux.es> Sun, 18 Jan 2004 22:42:15 +0000
abcde (2.1.12-1) unstable; urgency=low
* Check if normalizer is found in the PATH (Closes: #228014)
* Added (commented) bits to check if the CD being processed is the CD on the
tray, so that if differs we do not eject it.
* Store locally the CDDB information, under $HOME/.cddb since it is being
used by Grip (at least). PATH is user defined (Closes: #88048)
* If you are using cdda2wav and SCSI drives, you can set CDROMID for the
SCSI drive, since it differs from the cd-discid CDROM parameter
(Closes: #121987).
* MacOSX keeps on failing because the OS mounts the CD before we finish
ripping it... or something else. Please, test test test the code, and
report your findings. Pretty please. I have not been able to make it work
with the reports I have received.
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 16 Jan 2004 12:06:07 +0000
abcde (2.1.11-1) unstable; urgency=low
* Urgent fixes for the FreeBSD and MacOSX bits. When using cdda2wav, the
CDROM variable must be modified depending on the device interface. By now
we will not try to be very smart.
* Added a test for HTTPGETOPTS since it cannot be empty for the default
HTTPGET options.
* Quick release to fix a problem with the CDROM detection code.
(Closes: #226647)
* Cleaned a bashism. Thanks to Klaus Ethgen (Closes: #226782).
* Rewrote some parts of the cdda2wav code. Since I do not have a machine
where cdda2wav works, I cannot test the code. The modifications have been
done following user reports. If you use cdda2wav and abcde does not work
for you, please, contact me and we will try to sort things out. Thanks.
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 8 Jan 2004 21:36:23 +0000
abcde (2.1.10-1) unstable; urgency=low
* INLINETAG and STARTTRACKNUMBER flags added.
* CDROM checking is now done with a bit more wiselly (Closes: #219768)
* HTTPGET is only requested is "cddb" action is performed.
* Workout the possibility of cdparanoia erasing our wav files
(Closes: #172694)
* The default answer for editing CDDB data is now "y" if the disk is
unknown. If not, the default is "n". Requested by Ricky Buchanan.
* Now we do not erase silently any previous $PLAYLISTFILE left behind by a
previous CD ripping (Closes: #220753)
* Write info file with cdda2wav (Closes: #187702).
I do not use cdda2wav myself (me is cd-paranoid) so if anyone using
cdda2wav has a problem with this, please, report.
* CDROM comes in 1,0,0 kind of format for cdda2wav ripper. Corrected with a
quick patch. Kudos go to Mikhail Manuilov <viper5k at pisem dot net> for
noticing.
* Merged bits to make abcde work under MacOSX. Thanks to Evan Jones.
* Merged bits to avoid FreeDB people anger and to cut down the "abcde." part
of the discid. Now you can set the "-C" command with the directory name.
Kudos go to Bart Samwel.
* Added some info bits to the config file about normalize, requested by
Ricky Buchanan.
* Added some testing for the wav file before normalizing, to check that the
file is actually there.
-- Jesus Climent <jesus.climent@hispalinux.es> Mon, 5 Jan 2004 14:43:59 +0000
abcde (2.1.9-1) unstable; urgency=low
* The "First snow in Finland" release.
* One head was missing a "-n". N-less heads should be cut already.
* Not use relative links when PLAYLISTDATAPREFIX is set (Closes: #165368)
* Stupid use of $OUTPUTTYPE in flac tagging (Closes: #218625)
* Small typo in KEEPWAVS check (Closes: #216551)
* "Dirty" hack provided by Ben Finney to get rid of the tags in Ogg/Speex
encoding, when the user does not specify it as an action (lol! someone is
using Ogg/Speex :) (Closes: #219070)
* metaflac path was hardcoded. Now it must be in the path.
* TAGGER, VORBISCOMMENT and METAFLAC information tools are now dependent upon
"tag" action. There is no need to have them if we are not going to
comment.
* A bunch of small fixes, all along.
-- Jesus Climent <jesus.climent@hispalinux.es> Wed, 5 Nov 2003 15:29:13 +0000
abcde (2.1.8-3) unstable; urgency=low
* Small typo corrected (Closes: #217149)
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 23 Oct 2003 09:49:01 +0000
abcde (2.1.8-2) unstable; urgency=low
* KEEPWAVS now sets the "clean" action to "no", so the wavs are kept.
(Closes: #216551)
-- Jesus Climent <jesus.climent@hispalinux.es> Sun, 19 Oct 2003 16:25:53 +0000
abcde (2.1.8-1) unstable; urgency=low
* Quick release fixing a couple of bugs introduced by the padding patch
(Closes: #215962)
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 16 Oct 2003 17:08:12 +0000
abcde (2.1.7-2) unstable; urgency=low
* Control: Build-Depends-Indep: moved to Build-Depends:, as per
http://www.debian.org/doc/debian-policy/ch-relationships.html#s-sourcebinarydeps
(Closes: #214200)
-- Jesus Climent <jesus.climent@hispalinux.es> Tue, 14 Oct 2003 12:21:13 +0000
abcde (2.1.7-1) unstable; urgency=low
* The "Engineer" release. Yeah! I graduated!
* Patch applied to solve the track submission interface issues. Kudos to
Marc HE Brockschmidt, again (Closes: #126289)
* Small bug related with DISTMP3NICE solved. Kudos to Wilbert Alberts.
(Closes: #213756)
* Padding now creates the list with padded numbers. Test patch. This should
solve the problem with delayed tagging a single file.
-- Jesus Climent <jesus.climent@hispalinux.es> Mon, 13 Oct 2003 20:32:16 +0000
abcde (2.1.6-1) unstable; urgency=low
* Removed a nasty bug where even if the encode failed, the track was marked
as successfully encoded (Closes: #208391)
* Various Artists has now its own PLAYLIST format (Closes: #137432)
* metaflac path corrected (Closes: #206110)
* Hopefully this version repairs the comment part for Ogg/Vorbis files.
* If nothing breaks, 2.2 will be released as soon as the KNOWNBUG is solved.
* Removed all the inline tagging since it breaks the action chain, except
in Ogg/Speex. Need to check if "vorbiscomment" can be used for it.
(Closes: #206311)
* Added DISTMP3NICE variable, to nice the distmp3 program (Closes: #208398)
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 4 Sep 2003 10:53:09 +0000
abcde (2.1.5-1) unstable; urgency=low
* Small fixes and patches.
+ GENRE can be used for OUTPUTFORMAT and PLAYLISTFORMAT
+ id3v2 should work now with -c for comments (Closes: #199949)
+ small bug with batch encoding
+ Variables are exported before the CDDB functions are called, so they
should use the right variables for the HTTPGET command.
+ Tagging also use TRACKS and CDGENRE for MP3 files (kudos to Dirk
Ruediger)
+ FLAC encoding now uses dismp3 to encode remotelly (kudos to Taylor and
Kevin Cramer). HANDLE WITH CARE ;)
Also FLAC now uses CDGENRE and CDYEAR for tagging.
* Debian specific:
+ Standards to 3.6.0. No changes needed.
+ Changed Build-Depends to -Indep, since this is a POSIX shell script.
* tail/head change: -1 has been deprecated. Noted by Stephan Kulow.
* Ogg/Speex support added, for speech encoding (Closes #204635)
* Documentation update (Closes: #198825)
* Patch for "=" in the name applied (Closes: #197199)
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 14 Aug 2003 16:45:29 +0000
abcde (2.1.4-1) unstable; urgency=low
* Small bug fixes:
+ COMMENT should work now.
+ Aesthetic padding on the total amount of tracks.
+ CDROM typo
+ CDROM is now checked after reading the user defined entries.
* Remove trailing args from $EDITOR when checking -x: Closes #179222.
-- Jesus Climent <jesus.climent@hispalinux.es> Sun, 18 May 2003 18:47:36 +0000
abcde (2.1.3-1) unstable; urgency=low
* Makefile was missing cddb-tool.1.
* Introduced dagrab as CD ripping utility.
* cddb-tool seq calls converted to functions. No more distro dependencies.
* WGET* variables converted to HTTPGET* variables. FreeBSD can safelly use
fetch.
* More FreeBSD specific bits: CDROM and EJECT changes.
* Typo in abcde.conf
* Added CDDBPROTO for specifying the protocol level of the cddb query.
* CDDB protocol upgraded to 5. CDYEAR and CDGENRE are now used for CD
tagging. Patches from FreeBSD guys.
* COMMENT is now used for inline tagging with oggenc (my mistake it was
missing): Closes: #191475.
-- Jesus Climent <jesus.climent@hispalinux.es> Sat, 10 May 2003 07:49:22 +0000
abcde (2.1.2-1) unstable; urgency=low
* Documentation updates: Closes: #186230.
* Usual set of bug fixes and corrections.
* Default behaviour of VAOUTPUTFORMAT output changed to avoid multiple
directories for a same album. I think the format is more logical, and you
can always split the files once they are created.
* Padding track wavs with 0 so if you want to burn those wavs just cdrecord
*.wav will do it. Use "-p" to force it when encoding a small (<9) number
of files (Closes: #111627).
* Added "KEEPWAVS" as a variable to keep those wavs. Default is "no". Can
use also "-k" in the command line. (Closes: #160372).
This probably should be changed with an option to move the wav files to
another directory instead of just keep de abcde.<cdid> directory.
* Added documentation comments about OUTPUTTYPE (Closes: #184963).
* abcde.conf cleanup: (Closes: #186230, #187400).
-- Jesus Climent <jesus.climent@hispalinux.es> Tue, 25 Mar 2003 16:39:25 +0200
abcde (2.1.1-1) unstable; urgency=low
* New upstream release.
-- Jesus Climent <jesus.climent@hispalinux.es> Mon, 17 Mar 2003 08:52:01 +0200
abcde (2.1.0-3) unstable; urgency=low
* Since abcde does not depend on eject, an execution test ([-x]) was added,
but that means abcde needs a test for eject in the patch if -x is passed:
Closes: #184151.
* Merged some more bits from Marc 'HE' Brockschmidt: Closes: #126289.
* A bit of more info in abcde.conf: Closes: #184963.
* cddb-tool version updated to 0.4.2
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 14 Mar 2003 18:00:03 +0000
abcde (2.1.0-2) unstable; urgency=low
* Old version string left behind. Updated.
* Few more doc update bits.
* Patches from Marc 'HE' Brockschmidt: Closes: #149499.
* Small patch from Norbert Preining to support multiple output in the output
directory.
* cddb-tool parses CDYEAR with the help of awk: Closes: #114848.
* cddb-tool does not globe "*" characters anymore: Closes: #157448.
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 7 Mar 2003 06:41:32 +0000
abcde (2.1.0-1) unstable; urgency=low
* The "Time To Release" version.
* We close:
+ We preppend track number now: Closes: #128966.
+ Itegrate flac: Closes: #126311.
+ Multi-format encode: Closes: #148934.
+ Gapless lame encoding: Closes: #172696.
+ CDROM documented: Closes: #182403.
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 6 Mar 2003 14:45:51 +0000
abcde (2.0.4-0.3) unstable; urgency=low
* Applied OpenBSD patches to make the script more portable. Thanks to Han
Boetes.
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 28 Feb 2003 11:27:15 +0200
abcde (2.0.4-0.2) unstable; urgency=low
* There was a "echo" line producing a strange output on the cd_read
procedure.
-- Jesus Climent <jesus.climent@hispalinux.es> Fri, 28 Feb 2003 00:41:33 +0100
abcde (2.0.4-0.1) unstable; urgency=low
* abcde takeover.
* The infamous "Works for me(TM)" release.
* Documentation fixes: closes: #100844, #136741.
* NetBSD patches applied:
- EXPERIMENTAL Normalize and Batch support.
- EXPERIMENTAL FLAC support.
* EXPERIMENTAL multiple output support:
+ multiple output and error checking
+ multiple lists support
* Default output file changed to have the $track_number in the beginning.
-- Jesus Climent <jesus.climent@hispalinux.es> Thu, 27 Feb 2003 19:19:18 +0200
abcde (2.0.3-1) unstable; urgency=low
* The Fixed-Yet?-How-About-Now?-What-About-Now?-Now? Release
* SMP fixed, mad props to Steve Madsen, closes: #69828, #111806
* Minor code cleanups thanks to Adam Heath
* Multiple inexact match results are generated in a safe manner
thanks to Nick Martin, closes: #126025
* Removed cddb-tool template generation bashism, thanks to Greg
Norris, closes: #126327
* Windows can't handle double quotes in filenames either.
The default mungefilename now removes them, closes: #127643
* Using -C with WAVOUTPUTDIR fixed, closes: #127728
* Resuming various artists discs fixed, closes: #127731
-- Robert Woodcock <rcw@debian.org> Sun, 27 Jan 2002 21:36:48 -0800
abcde (2.0.2-1) unstable; urgency=low
* The One-More-Time-With-Feeling Release
* Bladeenc really works this time. Honest. closes: #121988
-- Robert Woodcock <rcw@debian.org> Mon, 3 Dec 2001 19:32:12 -0800
abcde (2.0.1-1) unstable; urgency=low
* The I-Don't-Listen-To-Sssca Release
* Example abcde.conf fixes, closes: #111580
* So much for bladeenc's l3enc compatibility, closes: #110863
* CDDB submit fixes (to enable CDDB submitting, put
UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your abcde.conf),
closes: #111478, #111500
* Minor mungefilename() cleanup
* Small manpage fix
* Works with oggenc when POSIXLY_CORRECT is defined, thanks to Juhapekka
Tolvanen
* Quote remote locations when calling distmp3
* Allow remote encoding of oggs
* Only remove wav files if the encoding succeeded
* No-local-encoding via -j 0 fixed, thanks to Hans-Joachim Baader
* CD read errors are trapped/resumed cleanly now thanks to Pete,
closes: #111618
* devfs device check fix, thanks to Clint Adams
* Check for seq command - some BSD's have jot instead and abcde can't
use that yet
* Various Artists playlist generation fixed, thanks to William Lash
-- Robert Woodcock <rcw@debian.org> Tue, 6 Nov 2001 18:34:25 -0800
abcde (2.0-1) unstable; urgency=low
* The Psychiatrist-Says-I'm-Stable-Again Release
* Renamed to 2.0
* Minor documentation updates
-- Robert Woodcock <rcw@debian.org> Wed, 15 Aug 2001 15:26:54 -0700
abcde (1.9.10-1) unstable; urgency=low
* The Waiter-There's-A-Proof-In-My-Pudding Release
* Fixed some quoting issues preventing abcde from using a temp directory
containing spaces, closes: #89682
* Now purges encodetracklocation notes from the status file when resuming.
* -a playlist now implies -a cddb
* Manpage and default config file updates, closes: #78726, #100841, #100845
* Applied checkstatus patch by Itai Zukerman, fixes certain track number
status checking situations, closes: #93395
* Check to see if things run through run_command return a nonzero error
code and present the command and error code to the user later,
closes: #93485
* Devfs fixup - If /dev/cdrom doesn't exist, try /dev/cdroms/cdrom0,
closes: #101933
* If a background process returned an error, log it. If it was an encode
process, abandon that encode location and don't wait for the encode
process to finish. Display the commandlines that resulted in error exits
with their exit codes before aborting.
* do_tag handles vorbis commenting failures idempotently
* -n works again
* Resumes encoding if all files have ripped, closes: #101843
* do_cddbedit code checks to see if it's already been run
-- Robert Woodcock <rcw@debian.org> Wed, 1 Aug 2001 20:20:41 -0700
abcde (1.9.9-1) unstable; urgency=low
* The Not-Quite-Last-In-The-Development-Series Release
* I broke ID3v1 comments in 1.9.8, it's fixed now, thanks to Christian
Beyerlein for noticing this, closes: #89519
-- Robert Woodcock <rcw@debian.org> Tue, 13 Mar 2001 07:53:10 -0800
abcde (1.9.8-1) unstable; urgency=low
* The Groundshaking Release
* Now defaults to using FreeDB instead of Gracenote. Pricks.
* New VAOUTPUTFORMAT variable for those who like their various artists
discs named in a different format
* Accommodates the fact that OpenBSD xargs does not eat whitespace, thanks
to Marcus Daniel for discovering this
* New scheduler for distmp3, thanks to David Bergeron
* xingmp3enc support, thanks to Brian Gannon
* Stripped down cddb-tool a little bit so that abcde no longer requires
mktemp
* New -C option to let people continue where they left off if they no
longer have the CD handy
* ID3COMMENT is now COMMENT
* Ogg commenting is now done separately so resuming doesn't break it
* More documentation updates
-- Robert Woodcock <rcw@debian.org> Sat, 10 Mar 2001 22:51:39 -0800
abcde (1.9.7-1) unstable; urgency=low
* The Overcast Partial Eclipse Release
* Supports ID3v2
* Various Artists heuristics patch by Kevin Everets
* New -c option to specify an extra configuration file, closes: #76252
* Does not try to check if a tagger exists unless OUTPUTTYPE=mp3,
closes: #78540
* cddb-tool template output fixes
* Yet more documentation updates, closes #78632, #78726
* Avoids id3v2's -c option for now
* Adds support for another Various Artists format, "Artist: Title", thanks
to Wolfgang Borgert, closes: #78292
* Fixed typo that was breaking remote encoding support, closes: #81183
* Hitting control-c while there's nothing in the foreground no longer
causes abcde to delete all its work upon exit
-- Robert Woodcock <rcw@debian.org> Sun, 7 Jan 2001 21:17:32 -0800
abcde (1.9.6-1) unstable; urgency=low
* The Squishy Release
* Updated getopts call to remove obsoleted options
* More documentation fixes, closes: #77957
* Single inexact match spurious question fix
* Fixed encoder trigger timing when using -l, closes: #77854
-- Robert Woodcock <rcw@debian.org> Sun, 26 Nov 2000 18:37:18 -0800
abcde (1.9.5-1) unstable; urgency=low
* The "Run Towards Trick Or Treaters With Scissors" Release
* Some documentation updates, closes: #75707, #75927
* mungefilename quoting fix, closes: #75556
* Implemented -a, which replaces -p, -P, and a number of other things,
closes: #75507
-- Robert Woodcock <rcw@debian.org> Wed, 25 Oct 2000 21:16:38 -0700
abcde (1.9.4-1) unstable; urgency=low
* The "Run With Scissors" Release
* Various Artists support by Kevin Everets
* Specifying track numbers on the command line should work again, bash was
getting a wee bit confuzzled with the way I had things before.
* A couple more error output changes and miscellaneous fixes
* OUTPUTDIR works again
-- Robert Woodcock <rcw@debian.org> Thu, 28 Sep 2000 23:11:35 -0700
abcde (1.9.3-1) unstable; urgency=low
* The ugh Release
* Brown Paper Bag fix for mp3enc users
* Recreated the rest of the variable environment in do_playlist, fixes
TRACKNUM availability for real this time, closes: #72535
-- Robert Woodcock <rcw@debian.org> Tue, 26 Sep 2000 22:08:27 -0700
abcde (1.9.2-1) unstable; urgency=low
* The "Very Long Changelog Entries Can Become Addicting" Release.
* Switched default output type to ogg, default encoder to oggenc
* Since 1.9.x prompts for CDDB edits by default there is now a -N switch
for non-interactivity.
* Handles cddb entries with random sprinklings of CR's and LF's
* You can now specify niceness for the reader and encoders, thanks to
Kevin Everets <kevin.everets@alcatel.com>
* -j 0 will now disable local encoding, thanks to Antonio Fiol
<Antonio.FIOL@enst-bretagne.fr>
* Vorbize should actually work now, thanks to Kevin Everets and James
LewisMoss
* Oggenc/Vorbize commenting support
* Made TRACKNUM available for playlist generation
* Fleshed out the TODO list a bit more
* mungefilename() now translates ':' to ' -' by default. Rationale: You
can't put ':' on a FAT filesystem. It also wreaks havoc with Samba.
-- Robert Woodcock <rcw@debian.org> Mon, 25 Sep 2000 19:31:35 -0700
abcde (1.9.1-1) unstable; urgency=low
* The "Don't Fraun" Release.
* Fixed a half-dozen minor buglets
* A little less debug output, a lot more normal output
* Resuming operation works better now
* Patched up offline usage again
* Broke OUTPUTFORMAT - if you plan on ever using Ogg support, and you've
overridden the OUTPUTFORMAT default, change the ".mp3" to
".${OUTPUTTYPE}"
* Beginnings of Ogg Vorbis support (vorbize and oggenc) - warning:
completely untested
-- Robert Woodcock <rcw@debian.org> Thu, 17 Aug 2000 21:03:00 -0700
abcde (1.9-1) unstable; urgency=low
* The "" Release.
* Completely redone tmpfile handling, abcde can now continue where you left
off. closes: #42970, #50883, #66668
* Restructured program execution scheduling around central status file
* Moved cddb-tool interactivity to abcde, 'cddb-tool get' no longer exists,
it is now 'cddb-tool query' and 'cddb-tool read'.
* Removed -e, -v, and -V, since abcde will now prompt you if you want to
edit or otherwise muck with the data after you have a chance to see it.
-- Robert Woodcock <rcw@debian.org> Thu, 22 Jun 2000 18:13:01 -0700
abcde (1.1.1-1) unstable; urgency=low
* The "That wasn't chicken" Release.
* Remote distributed encoding had a bad bug in 1.1 - work to be done
remotely was duplicated locally (everything still turned out ok -
there was just no speedup). Fixed that.
* Restructured encode_and_tag function.
-- Robert Woodcock <rcw@debian.org> Sun, 7 May 2000 20:10:10 -0700
abcde (1.1-1) unstable; urgency=low
* The "We heard Mr. Garrison say them a couple of times" Release.
* New -r and REMOTEHOSTS option to use distmp3 to encode to multiple
hosts at once.
* Command-line track range specification (f.e. "abcde 1-12"
(Thanks: Vincent Ho)
* Now displays minutes/seconds for each track while displaying track titles
at the start
-- Robert Woodcock <rcw@debian.org> Tue, 18 Apr 2000 23:59:09 -0700
abcde (1.0.6-1) unstable; urgency=low
* The "Inspected by #17" Release.
* New EJECTCD option to eject the CD after all tracks are read (thanks:
Hrafnkell F Hlodversson)
-- Robert Woodcock <rcw@debian.org> Sun, 2 Apr 2000 23:23:44 -0700
abcde (1.0.5-1) unstable; urgency=low
* The "...So we can both watch X-Files..." Release.
* Quoting fix for setups without space->underscore filename munging
* README file URL fixes/updates
-- Robert Woodcock <rcw@debian.org> Thu, 16 Mar 2000 18:34:38 -0800
abcde (1.0.4-1) unstable; urgency=low
* The "Plop, Plop, Fizz Fizz" Release
* CDPARANOIAOPTS and CDDA2WAVOPTS should work now.
-- Robert Woodcock <rcw@debian.org> Sun, 20 Feb 2000 18:44:08 -0800
abcde (1.0.3-1) unstable; urgency=low
* The "This Space Intentionally Left Blank" Release
* Support for reverse and dashed Various Artists discs
* More elegant way of passing backtick data
* Replaced all `foo` commands with $(foo)
* Custom filename munging, closes: #38448
-- Robert Woodcock <rcw@debian.org> Wed, 9 Feb 2000 20:26:22 -0800
abcde (1.0.2-1) unstable; urgency=low
* Now eats backticks in CDDB input (thanks to Steve Beattie)
* mp3enc support (thanks to Richard Jelinek and Chris Ruvolo),
closes: #56189
* cddb-tool more gracefully handles no net connection for those with
local caching name servers
* Fixed HELLOINFO documentation bug, closes: #56268
-- Robert Woodcock <rcw@debian.org> Wed, 26 Jan 2000 19:45:06 -0800
abcde (1.0.1-1) unstable; urgency=low
* The "s/ever/ Three Days/" Release
* Now properly handles double-quotes in Artist and Album data
(thanks to Clint Adams), closes: #54888
-- Robert Woodcock <rcw@debian.org> Thu, 13 Jan 2000 23:34:24 -0800
abcde (1.0-1) unstable; urgency=low
* The "But a 1.0 is Forever" Release
* Backed out cddb-tool quoting change, closes: #54005
* Now strips carriage returns from CDDB data, closes: #53815
* Added ID3COMMENT config option
-- Robert Woodcock <rcw@debian.org> Mon, 10 Jan 2000 20:48:24 -0800
abcde (0.8.9-1) unstable; urgency=low
* The "Get it Before the World Implodes" Release
* Added -D (debugging option, outputs debugging information to stderr).
Very useful for submitting bug reports, hint hint hint :)
Just do 'abcde -D 2>logfile' and include logfile in your bug report.
* Now uses id3's new -T option to embed track numbers in ID3 tags.
* Fixed cddb-tool output for FreeDB submissions, closes: #51986.
Thanks to Clint Adams for spotting the problem
* New -v switch for Various Artist CD's (thanks to Magenta Hari Nezumi)
closes: #43581
* Fixed minor cddb-tool manpage buglet
* Fixed cddb-tool output for shell quoting, thanks to Philipp Meier.
closes: #52469
-- Robert Woodcock <rcw@debian.org> Fri, 31 Dec 1999 14:12:35 -0800
abcde (0.8.8-1) unstable; urgency=low
* Added gogo explainations to manpages and example config file
* Added code by Stuart Ballard <sballard@netreach.net> to intelligently
use relative paths for playlist files, closes #51351
* Added PLAYLISTDATAPREFIX config option for those who wish to prefix
their playlist data with things like URL's
* Fixed bug added in 0.8 where the multiple inexact match choice
selection would be hidden to the user (cddb-tool wasn't sending all
user output to stderr as it should), closes #51434, #50786
-- Robert Woodcock <rcw@debian.org> Sun, 28 Nov 1999 16:02:24 -0800
abcde (0.8.7-1) unstable; urgency=low
* Removed some parallelization from encode_and_tag, closes: #50246
-- Robert Woodcock <rcw@debian.org> Tue, 16 Nov 1999 18:49:29 -0800
abcde (0.8.6-1) unstable; urgency=low
* Removed remaining bashisms
-- Robert Woodcock <rcw@debian.org> Sun, 14 Nov 1999 08:46:14 -0800
abcde (0.8.5-1) unstable; urgency=low
* Fixed some background encoding issues that cropped up in 0.8.3.
-- Robert Woodcock <rcw@debian.org> Sun, 7 Nov 1999 01:08:27 -0800
abcde (0.8.4-1) unstable; urgency=low
* New name. cdgrab was already taken - the original cdgrab name
belongs to a CDDA reading program for DOS dating back to 1993.
It's still in use and active development, so I'm changing the
name of cdgrab instead. See this URL for a description of the
original cdgrab: http://www.scn.rain.com/pub/cdrom/cdgrab.txt
Your old /etc/cdgrab.conf and/or ~/.cdgrab.conf can simply be
renamed to /etc/abcde.conf and ~/.abcde.conf.
The program name is now 'abcde'.
-- Robert Woodcock <rcw@debian.org> Tue, 2 Nov 1999 22:28:19 -0800
cdgrab (0.8.3-1) unstable; urgency=low
* 0.8.2 would leave around cdgrab.xxxxxx tempfiles with -j.
Fixed that.
* Fixed quoting issues regarding spaces in output files
closes: #38449
-- Robert Woodcock <rcw@debian.org> Thu, 28 Oct 1999 20:08:22 -0700
cdgrab (0.8.2-1) unstable; urgency=low
* Fixes a cddb-tool quoting issue - closes: #46979
* Adds support for gogo
-- Robert Woodcock <rcw@debian.org> Sun, 10 Oct 1999 11:24:50 -0700
cdgrab (0.8.1-1) unstable; urgency=low
* Clears up a few bashisms from the merged-in cddb-tool patches
closes: #45512, #45514
* FHS compliance
-- Robert Woodcock <rcw@debian.org> Sun, 19 Sep 1999 12:21:40 -0700
cdgrab (0.8-1) unstable; urgency=low
* New Release - closes: #43579, #42997, #38325, #42971
* Removes dependency for now non-existent cdparanoia-bin package
-- Robert Woodcock <rcw@debian.org> Thu, 26 Aug 1999 22:34:29 -0700
cdgrab (0.7.7-1) unstable; urgency=low
* one-liner patch re-release :)
-- Robert Woodcock <rcw@debian.org> Thu, 12 Aug 1999 07:29:50 -0700
cdgrab (0.7.6-1) unstable; urgency=low
* New Release - closes: #42734
-- Robert Woodcock <rcw@debian.org> Mon, 9 Aug 1999 21:11:30 -0700
cdgrab (0.7.5-1) unstable; urgency=low
* New Release - closes: #40179, #41086
-- Robert Woodcock <rcw@debian.org> Tue, 13 Jul 1999 19:20:53 -0700
cdgrab (0.7.4-1) unstable; urgency=low
* New Release
-- Robert Woodcock <rcw@debian.org> Mon, 7 Jun 1999 22:12:20 -0700
cdgrab (0.7.3-1) unstable; urgency=low
* New Release
-- Robert Woodcock <rcw@debian.org> Sun, 23 May 1999 22:24:43 -0700
cdgrab (0.7.2-1) unstable; urgency=low
* New Release
-- Robert Woodcock <rcw@debian.org> Sun, 16 May 1999 17:41:55 -0700
cdgrab (0.7.1-1) unstable; urgency=low
* New release
-- Robert Woodcock <rcw@debian.org> Fri, 14 May 1999 23:37:00 -0700
cdgrab (0.7-1) unstable; urgency=low
* New release
* cd-discid spun off into its own package, cdgrab is now
Architecture: all
-- Robert Woodcock <rcw@debian.org> Fri, 7 May 1999 20:44:06 -0700
cdgrab (0.6.2-1) unstable; urgency=low
* New release, closes: bug #35379, bug #36272
-- Robert Woodcock <rcw@debian.org> Sun, 18 Apr 1999 15:09:43 -0700
cdgrab (0.6.1-1) unstable; urgency=low
* New release, quick bashism bugfix - closes: bug #35245
-- Robert Woodcock <rcw@debian.org> Mon, 29 Mar 1999 19:19:04 -0800
cdgrab (0.6-1) unstable; urgency=low
* New release - closes: bug #34454, #34736, #34823, #34824
-- Robert Woodcock <rcw@debian.org> Sun, 28 Mar 1999 18:26:54 -0800
cdgrab (0.5-1) unstable; urgency=low
* New release
-- Robert Woodcock <rcw@debian.org> Thu, 18 Mar 1999 23:39:02 -0800
cdgrab (0.4-1) unstable; urgency=low
* New release - closes: bug #34566, #34577
-- Robert Woodcock <rcw@debian.org> Tue, 16 Mar 1999 00:10:20 -0800
cdgrab (0.3-1) unstable; urgency=low
* New release - closes: bug #34101
-- Robert Woodcock <rcw@debian.org> Fri, 5 Mar 1999 18:13:30 -0800
cdgrab (0.2-1) unstable; urgency=low
* Initial Release.
-- Robert Woodcock <rcw@debian.org> Sun, 21 Feb 1999 18:50:34 -0800
|