1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072
|
2010-04-06 12:03 malvineous
* src/dro.cpp, test/doofus.dro, test/doofus.ref,
test/playertest.cpp, test/samurai.ref: Update DROv1 player to
handle early files with a slightly different header, including
tests for both varieties. Fixes random bytes sent at the end of
early DROv1 files which causes the tests to fail on 32-bit x86
machines.
2010-04-06 12:00 malvineous
* test/michaeld.ref: Update CMF test after previous change
2010-02-07 04:51 dynamite
* adplug.pc.in: Fixed wrong include path for apps using AdPlug.
2010-01-16 13:52 malvineous
* src/cmf.cpp: CMF: Clear OPL3 mode on playback to avoid a previous
song affecting the instruments
2010-01-13 08:48 malvineous
* src/cmf.cpp: CMF: Handle v1.0 files properly, plus fixed a memory
leak
2010-01-01 19:20 malvineous
* ChangeLog, NEWS, README, TODO, adplug.qpg, adplug.spec,
doc/libadplug.texi: Bump version numbers to 2.2, update logs etc.
ready for release
2010-01-01 19:14 malvineous
* test/: Makefile.am, dro_v2.dro, dro_v2.ref, michaeld.ref,
playertest.cpp, samurai.ref: Added/updated CMF, DROv1 and DROv2
tests
2010-01-01 18:41 malvineous
* src/cmf.cpp: New CMF player: replace all printfs with AdPlug's
debug logging mechanism
2010-01-01 18:34 malvineous
* src/rol.cpp: Fixed buffer overflow in ROL player
2010-01-01 18:26 malvineous
* src/: Makefile.am, surroundopl.cpp, surroundopl.h: Moved surround
OPL effect into .cpp file to make debug logging work properly
after installation
2010-01-01 15:15 malvineous
* src/dro.h: Added version number to original DOSBox .dro player
2010-01-01 15:13 malvineous
* src/cmf.cpp: Tiny CMF coding fix
2010-01-01 15:13 malvineous
* src/: Makefile.am, adplug.cpp, dro2.cpp, dro2.h: Added support
for DOSBox .dro version 2.0
2009-12-31 11:08 malvineous
* src/: cmf.cpp, cmf.h: CMF player: Fixed default instruments,
moved OPL tracking code to song init instead of class init (fixes
instruments in XMMS2 plugin), misc code tidy up
2009-12-27 17:17 malvineous
* AUTHORS: Added my recent changes to AUTHORS
2009-12-27 17:03 malvineous
* src/: Makefile.am, surroundopl.h: Added surround (stereo
harmonic) OPL synth wrapper
2009-12-27 15:16 malvineous
* src/: Makefile.am, adplug.cpp, cmf.cpp, cmf.h: Added new CMF
player (more accurate than existing MIDI-based player)
2008-09-14 22:33 dynamite
* doc/Makefile.am: Moved version.texi from CLEANFILES to
MAINTAINERCLEANFILES, where it belongs. It should only be cleaned
when going back to the CVS-distributed version, as it is created
by autoreconf.
2008-09-14 19:46 dynamite
* AUTHORS, NEWS, src/mid.cpp: Applied CMF rhythm mode patch. Thanks
to Adam Nielsen!
2008-06-15 21:50 dynamite
* test/playertest.cpp: Fixed undefined reference to strncmp() error
and deprecated string conversion warning.
2008-06-15 21:47 dynamite
* src/: adplug.cpp, cff.cpp, d00.cpp, fmc.cpp, imf.cpp, mid.cpp,
mid.h, protrack.cpp, rol.h, s3m.cpp, sa2.cpp: Fix many if-else
and other perenthesizing ambiguities. Also applied patch by Per
Karlsen (fixes Bug #1985050) that cures warnings about deprecated
string conversions in mid.cpp.
2008-02-12 06:18 dynamite
* configure.in, src/a2m.cpp, src/adl.cpp, src/adplug.cpp,
src/bmf.cpp, src/cff.cpp, src/dro.cpp, src/dtm.cpp, src/fmc.cpp,
src/mad.cpp, src/mkj.cpp, src/msc.cpp, src/mtk.cpp,
src/protrack.cpp, src/rad.cpp, src/rat.cpp, src/raw.cpp,
src/rix.cpp, src/rol.cpp, src/s3m.cpp, src/sa2.cpp, src/sng.cpp:
Applied patch to fix building with upcoming GCC 4.3.0 (thanks to
Linus Walleij). Adds a couple of cstring #includes.
2007-06-18 06:05 dynamite
* NEWS, src/dro.cpp, test/samurai.ref: DRO player fix (header 3
bytes short) by Adam Nielsen.
2007-04-18 08:19 dynamite
* AUTHORS, NEWS, src/Makefile.am, src/adplug.cpp, test/DEMO4.JBM,
test/DEMO4.ref, test/playertest.cpp: Added test case for JBM
format.
2007-04-18 08:12 dynamite
* src/: adplug.cpp, jbm.cpp, jbm.h: Adapted JBM player for AdPlug.
2007-04-18 08:03 dynamite
* AUTHORS, NEWS, TODO, src/jbm.cpp, src/jbm.h: Added JBM player.
2007-04-18 03:36 dynamite
* src/: d00.cpp, d00.h: Fixed D00 player to accept rewind(-1) and
rewind the current subsong.
2007-04-16 20:47 dynamite
* TODO, test/DUNE19.ref: Added ADL test case reference file.
2007-04-15 04:37 dynamite
* NEWS, TODO, configure.in, doc/libadplug.texi, src/adl.cpp,
src/adl.h, src/hsc.h, src/player.h, test/DUNE19.ADL,
test/playertest.cpp: Added test case for ADL files. Added index
entries to documentation. Changed default subsong of ADL player
to be subsong #2. Added getsubsong() method to CPlayer base
class.
2007-04-10 02:21 dynamite
* ChangeLog: release.
2007-04-10 02:01 dynamite
* AUTHORS, ChangeLog, adplugdb/Makefile.am, test/Makefile.am: Fixed
makefiles.
2007-04-10 01:47 dynamite
* README: Update.
2007-04-10 01:22 dynamite
* README, adplug.spec, src/realopl.cpp, test/playertest.cpp:
Cosmetic changes in CRealopl. Fixed DOS compatibility in
playertest.
2007-04-09 04:53 dynamite
* NEWS, TODO, test/VIB_VOL3.ref: Release candidate.
2007-04-09 04:52 dynamite
* src/: a2m.cpp, a2m.h, amd.cpp, fmc.cpp, opl.h, player.cpp,
player.h, protrack.cpp, protrack.h, rad.cpp, sa2.cpp: Vastly
enhanced generic Protracker player and modified loaders
accordingly. Copl now supports a getchip() method. A2M loader
enhanced for OPL3 features.
2007-04-09 04:51 dynamite
* doc/libadplug.texi: Added docs of new commands and features of
the Protracker player.
2007-04-02 01:41 dynamite
* src/rix.cpp: Removed superfluous exit() call. This was detected
as part of a GCC 4.3 compilation regression test. Thanks to
Martin Michlmayr! Fixes Debian bug #417078.
2007-04-02 01:39 dynamite
* src/: d00.cpp, d00.h: D00 Vibrato and Slides fix. Thanks to
Dennis Lindroos!
2006-09-22 19:46 dynamite
* NEWS: Updated NEWS file.
2006-09-22 04:52 dynamite
* NEWS, TODO, src/rix.cpp, src/rol.cpp: Fixed newline in RIX
player. Fixed buffer overflow in ROL player (many thanks to dai).
2006-08-16 10:20 dynamite
* src/adl.cpp: ADL player is under dual (L)GPL license now.
2006-08-09 08:38 dynamite
* src/: adl.cpp, adl.h: Removed LGPL notice as adl.* is under GPL
license.
2006-08-06 05:49 dynamite
* src/rix.cpp, src/rix.h, test/03B.RIX, test/03B.ref,
test/RI051.RIX, test/RI051.ref, test/playertest.cpp: Applied
palxex' pitch fix patch to RIX player and updated test-suite
accordingly.
2006-07-16 12:12 dynamite
* ChangeLog: Updated changelog.
2006-07-16 11:47 dynamite
* .cvsignore, NEWS, adplugdb/Makefile.am, test/TU_BLESS.ref:
Updated NEWS. Fixed AMD test case. Fixed adplugdb Makefile.
2006-07-16 11:46 dynamite
* .cvsignore: updated cvsignore.
2006-07-16 11:46 dynamite
* INSTALL, NEWS, TODO, test/TU_BLESS.ref: Removed INSTALL file,
it's autogenerated now. Fixed AMD test case.
2006-07-16 08:12 dynamite
* INSTALL: Removed install.
2006-07-16 08:09 dynamite
* BUGS, INSTALL, README, configure.in, adplugdb/Makefile.am,
adplugdb/adplugdb.cpp, adplugdb/getopt.h, adplugdb/mygetopt.h,
contrib/MSVC6/vc6inst.bat, src/amd.cpp, src/bmf.cpp, src/cff.cpp,
src/cff.h, src/d00.cpp, src/d00.h, src/dmo.cpp, src/dmo.h,
src/dtm.cpp, src/dtm.h, src/ksm.cpp, src/msc.cpp, src/mtk.cpp,
src/mtk.h, src/rix.cpp, src/rix.h, src/s3m.cpp, src/u6m.cpp,
src/u6m.h, test/03B.ref: Security fixes. Version 2.0.1.
2006-07-16 07:42 dynamite
* src/amd.cpp: Fixed volume handling, by adding conversion table.
2006-07-06 08:23 dynamite
* BUGS, NEWS, README, TODO, src/cff.cpp, src/cff.h, src/dmo.cpp,
src/dmo.h, src/dtm.cpp, src/dtm.h, src/mtk.cpp, src/mtk.h,
src/s3m.cpp, src/u6m.cpp: Fixed a lot of security issues. Thanks
to Luigi Auriemma.
2006-07-06 08:22 dynamite
* src/rix.cpp, src/rix.h, test/03B.ref: Applied Palxex' patch.
2006-06-15 12:14 dynamite
* TODO: Update.
2006-06-15 12:14 dynamite
* test/03B.ref: Updated reference file according to latest version
of RIX player.
2006-06-15 12:14 dynamite
* src/: adl.cpp, adl.h, d00.cpp, rix.cpp, rix.h: Updated ADL player
to latest upstream version. Incorporated patch from PALXEX into
RIX player to fix bugs introduced while taking out pre-rendering
of audio. Tried to make D00 player platform independent, but is
not working yet.
2006-05-18 13:50 dynamite
* src/rix.cpp, src/rix.h, test/03B.ref: Eliminated DRO prerendering
in RIX player. Memory footprint is much smaller now.
2006-05-18 12:34 dynamite
* src/: adl.h, rix.cpp, rix.h: RIX player dynamically allocates
memory now. Fixed portability issues.
2006-05-17 19:13 dynamite
* TODO, src/adl.cpp, src/bmf.cpp, src/ksm.cpp, src/msc.cpp,
src/u6m.cpp, src/u6m.h: Portability fixes.
2006-05-17 13:49 dynamite
* adplugdb/: adplugdb.cpp, getopt.h, mygetopt.h: Replaced getopt.h
by mygetopt.h to avoid clashes.
2006-05-17 13:49 dynamite
* adplugdb/mygetopt.h: file mygetopt.h was added on branch
adplug-2-0-patches on 2006-07-15 22:09:25 +0000
2006-05-17 12:50 dynamite
* configure.in, adplugdb/Makefile.am, adplugdb/adplugdb.cpp: Fixed
portability issues. getopt.h is autodetected now and used, if
present in the system and libc.
2006-05-17 12:42 dynamite
* src/: d00.cpp, d00.h: Portability fixes.
2006-05-17 10:19 dynamite
* src/adl.cpp: License fixes.
2006-05-17 10:15 dynamite
* src/: adl.cpp, adl.h: Portability fixes.
2006-05-17 10:08 dynamite
* src/: adl.cpp, adl.h: Fixed debug logging of ADL player.
2006-05-17 10:08 dynamite
* AUTHORS: Fixed ADL authors.
2006-05-17 04:17 dynamite
* src/: adl.cpp, adl.h: Fixes. It's playing now.
2006-05-17 04:17 dynamite
* NEWS, TODO: Updates.
2006-05-16 10:56 dynamite
* AUTHORS, NEWS, TODO, configure.in, src/Makefile.am, src/adl.cpp,
src/adl.h, src/adplug.cpp: Bumped version number. Added ADL
player.
2006-05-15 07:42 dynamite
* INSTALL: reconf'd.
2006-05-13 06:36 dynamite
* contrib/MSVC6/vc6inst.bat: Whitespace changes.
2006-05-04 09:19 dynamite
* ChangeLog, doc/Makefile.am, test/Makefile.am: Distribution fixes.
2006-05-04 06:26 dynamite
* doc/libadplug.texi: Updated docs.
2006-05-04 06:25 dynamite
* AUTHORS, test/03B.ref: Fixed AUTHORS info. Fixed RIX test case.
2006-04-24 15:46 dynamite
* src/amd.cpp: Fixed command conversion. Old algorithm did not
always convert the whole song.
2006-04-24 10:25 dynamite
* src/protrack.cpp: New line indentation style. Fixed AMD set
volume command to actually set volume.
2006-04-24 10:18 dynamite
* src/: analopl.cpp, realopl.cpp: Hardware output using first OPL
chip now, as it should be.
2006-04-16 10:11 dynamite
* src/rix.cpp: Fixed initialization of static data.
2006-03-16 18:19 dynamite
* .cvsignore, INSTALL, Makefile.am, NEWS, README, configure.in,
adplugdb/Makefile.am, contrib/README: Moved Watcom build system
to contrib/. Cleaned up build documentation.
2006-03-16 18:17 dynamite
* INSTALL.dos, INSTALL.unix, Makefile.bt, Makefile.wat, README.dos,
adplugdb/Makefile.bt, test/Makefile.bt,
contrib/Watcom/Makefile.bt, contrib/Watcom/Makefile.wat,
contrib/Watcom/adplugdb.bt, contrib/Watcom/install.txt,
contrib/Watcom/readme.txt, contrib/Watcom/src.bt,
contrib/Watcom/test.bt: Moved Watcom build system to contrib/.
2006-03-16 18:14 dynamite
* src/adplug.cpp: Removed version #define, as it's handled by the
build system now.
2006-03-16 18:14 dynamite
* src/: Makefile.am, Makefile.bt, rix.cpp, rix.h: Moved Watcom
build system to contrib/. Applied patch from Lu Chi to RIX
player.
2006-03-05 14:14 dynamite
* src/: s3m.cpp, s3m.h: Some commands always reset the infobyte.
Fixed S3M player to do this, too.
2006-03-05 13:19 dynamite
* INSTALL.win32: is in contrib now.
2006-03-05 13:13 dynamite
* test/Makefile.am: WONDERIN.IMG is WONDERIN.WLF now.
2006-03-05 13:12 dynamite
* adplugdb/Makefile.am: Fixed makefile, since MSVC build is in
contrib now.
2006-03-05 13:12 dynamite
* doc/Makefile.am: adplugdb.1 created by Autoconf now.
2006-03-05 13:07 dynamite
* doc/: Makefile.am, adplugdb.1, adplugdb.1.in: adplugdb.1 now
created by Autoconf.
2006-02-28 16:17 dynamite
* src/: msc.cpp, msc.h, realopl.cpp, rix.cpp: Platform independence
fixes. Added support for the DJGPP compiler on MS-DOS to real OPL
output.
2006-02-28 16:17 dynamite
* src/mid.cpp: Fixed new GCC 4.x warnings.
2006-02-28 16:16 dynamite
* src/: fprovide.h, opl.h: Fixed some new GCC 4.x warnings.
2006-02-28 16:15 dynamite
* adplugdb/: Makefile.am, getopt.h: Changed AdPlug's datadir to
$(sharedstatedir), plus some platform independence fixes.
2006-02-05 12:34 dynamite
* NEWS, TODO: Updated NEWS and TODO list.
2006-02-05 12:34 dynamite
* adplugdb/Makefile.am: Fixed linker flags. libtool now correctly
finds the right libadplug to link to.
2006-02-05 12:33 dynamite
* test/playertest.cpp: Fixed typo.
2006-02-05 12:33 dynamite
* src/rix.cpp, src/rix.h, test/03B.ref: Fixed RIX player to
correctly initialize variables in constructor.
2006-02-05 12:32 dynamite
* src/database.cpp: Fixed saving of database in
platform-independent format.
2006-02-05 05:48 dynamite
* test/: WONDERIN.IMF, WONDERIN.WLF, playertest.cpp: Renamed
WONDERIN.IMF to WONDERIN.WLF, which is now the new default file
extension.
2006-02-05 05:44 dynamite
* src/: imf.cpp, imf.h: Applied Adam's patch. *.IMF files are now
at 560Hz by default. All other files are at 700Hz.
2005-12-04 13:47 dynamite
* src/msc.cpp: Made MSC player platform-independent.
2005-11-14 12:25 dynamite
* TODO: Updated TODO.
2005-11-14 12:07 dynamite
* contrib/MSVC6/: adplugdb.dsp, playertest.dsp: Added AdPlugDB and
player test-suite MSVC6 project files.
2005-11-14 12:07 dynamite
* adplugdb/: adplugdb.dsp, vc6inst.bat: Removed MSVC6 project
files.
2005-11-14 12:06 dynamite
* test/: 03B.RIX, 03B.ref, Makefile.am, blaster2.msc, blaster2.ref,
emutest.cpp, playertest.cpp, playertest.dsp: Added emulator
test-suite. Added MSC and RIX formats to player test-suite.
Removed MSVC6 project file.
2005-11-08 13:21 dynamite
* src/: rix.cpp, rix.h: Flipped from DOS to Unix encoding.
2005-11-08 13:19 dynamite
* src/rix.h: Changed 64k buffer to 640k.
2005-11-08 05:39 dynamite
* AUTHORS, NEWS, TODO, doc/libadplug.texi, src/adplug.cpp,
src/rix.cpp, src/rix.h: Made RIX changes mentioned by Abalone.
2005-10-27 01:40 dynamite
* src/: rix.cpp, rix.h: Fixed "player skipping all subsequent songs
after the first played" bug.
2005-10-26 20:55 dynamite
* AUTHORS, NEWS, README, TODO, src/Makefile.am, src/adplug.cpp,
src/rix.cpp, src/rix.h: Added RIX player.
2005-10-23 23:25 dynamite
* src/: psi.cpp, psi.h: Cleaned endianness of PSI player.
2005-10-23 21:05 dynamite
* src/: hybrid.cpp, rat.cpp, rat.h: Cleaned up endianness in hybrid
and rat players
2005-10-23 04:50 dynamite
* src/mid.cpp, test/ice_thnk.ref, test/mi2.ref, test/michaeld.ref:
Fixed MIDI player to correctly reset OPL chip. Fixed test-suite
accordingly.
2005-10-23 02:06 dynamite
* src/opl.h, test/playertest.cpp, test/samurai.ref: Added
constructor to Copl to set defaults. Modified test-suite to adapt
to new OPL3/Dual-OPL2 support.
2005-10-22 22:08 dynamite
* test/Makefile.am: Fixed linking of test-suite against correct
(un-installed) adplug library.
2005-10-22 20:37 dynamite
* src/diskopl.cpp, src/diskopl.h, src/dro.cpp, src/msc.cpp,
src/realopl.cpp, test/michaeld.ref, test/samurai.dro,
test/samurai.ref: Added OPL3 support to CDiskopl. Version check
in DRO player. Updated test-suite. Other fixes.
2005-10-21 20:43 dynamite
* NEWS, TODO, test/Makefile.am: Fixed forgotten libbinio dependency
in test-suite.
2005-10-17 07:05 dynamite
* src/: emuopl.cpp, mid.cpp: Nevermind again.
2005-10-16 03:46 dynamite
* src/: mid.cpp, mid.h: Nevermind.
2005-10-16 03:33 dynamite
* src/: dro.cpp, dro.h, emuopl.cpp, emuopl.h, kemuopl.h, mid.cpp,
mid.h, opl.h, realopl.cpp, realopl.h: Added CMF rhythm mode to
MID player. Changed Copl interface: Chip type now getable by
anyone and only setable by frontends. DRO player honours chip
type now. Dual OPL2 and OPL3 support in all implementations that
could possibly support it (i.e. all, except Ken's OPL2 emulator).
2005-10-13 21:53 dynamite
* NEWS, README, src/analopl.cpp, src/analopl.h, src/emuopl.cpp,
src/emuopl.h, src/kemuopl.h, src/opl.h, src/raw.cpp, src/raw.h,
src/realopl.cpp, src/realopl.h, src/silentopl.h: Built OPL3 and
dual OPL2 support into emuopl, analopl and realopl classes.
Added OPL3 support to RAW player.
2005-09-26 19:41 dynamite
* NEWS, src/imf.cpp, src/imf.h: Added support for Adam Nielsen's
tag format.
2005-09-19 18:17 dynamite
* doc/libadplug.texi: Fixed line ending.
2005-09-19 06:40 dynamite
* .cvsignore: compile script needs to be ignored, too.
2005-09-19 06:39 dynamite
* AUTHORS, COPYING, INSTALL, Makefile.am, NEWS, adplug.pc.in,
configure.in, adplugdb/Makefile.am, src/Makefile.am,
src/adlibemu.c, src/adlibemu.h, src/msc.cpp: Ken's OPL emulator
is now free. Added pkg-config script. Made compatible with new
libbinio (1.4).
2005-05-13 21:48 dynamite
* ChangeLog: Updated the changelog.
2005-05-13 03:46 dynamite
* AUTHORS, COPYING, NEWS, TODO, configure.in, adplugdb/getopt.h,
src/adlibemu.c, src/adlibemu.h, src/adplug.cpp: Switched license
to fully LGPL'd. This is for release 1.5.1.
2005-01-17 07:12 dynamite
* contrib/MSVC6/.cvsignore: Updated by TortoiseCVS
2005-01-17 06:59 dynamite
* contrib/MSVC6/.cvsignore: Updated by TortoiseCVS
2005-01-17 06:01 dynamite
* contrib/: README, MSVC6/adplug.dsp, MSVC6/readme.txt,
MSVC6/vc6inst.bat: Added contrib repository.
2005-01-17 05:51 dynamite
* src/: adplug.dsp, vc6inst.bat: MSVC projects are now obsolete and
moved to contrib folder
2005-01-03 07:03 dynamite
* AUTHORS, src/Makefile.am, src/Makefile.bt, src/adplug.cpp,
src/adplug.dsp, src/emuopl.cpp, src/emuopl.h, src/msc.cpp,
src/msc.h, src/temuopl.h, src/ymf262.cpp, src/ymf262.h: Added
generic support for dual OPL2 and OPL3 chips. Added support for
MSC files.
2004-10-15 20:17 dynamite
* NEWS, TODO, src/Makefile.am, src/dro.cpp, src/emuopl.cpp,
src/emuopl.h, src/opl.h, src/player.cpp, src/player.h,
src/temuopl.cpp, src/temuopl.h, src/ymf262.cpp: Added OPL3
support.
2004-10-07 20:55 dynamite
* AUTHORS, NEWS, configure.in, adplugdb/getopt.h, src/Makefile.am,
src/adplug.cpp, src/analopl.cpp, src/analopl.h, src/emuopl.cpp,
src/realopl.cpp, src/realopl.h: Added hardware OPL drivers to
UNIX build. Support for MinGW (cross-)compilers.
2004-10-04 17:37 zeromus
* src/opl.h: oops, fixed a goofup
2004-10-04 08:30 zeromus
* src/: opl.h, player.cpp, player.h, dro.cpp, emuopl.cpp, emuopl.h,
ymf262.cpp, ymf262.h: . enhanced DRO support . added opl3 core in
ymf262.cpp . modified driver and player to support more than one
opl core . modified emuopl driver to take advantage of new driver
interfaces. it is now the first driver capable of handling the
new modes (opl3 and dualopl2)
2004-10-01 02:18 dynamite
* src/: adplug.dsp, kemuopl.h: Release 1.5
2004-10-01 00:28 dynamite
* ChangeLog, src/hsp.cpp, test/Makefile.am: Release 1.5
2004-09-30 02:50 dynamite
* test/: SATNIGHT.HSP, SATNIGHT.ref: Added HSP test case.
2004-09-30 02:45 dynamite
* ChangeLog, src/hsp.cpp, src/hsp.h, test/playertest.cpp: Fixed HSP
loader and added test case.
2004-09-30 01:38 dynamite
* doc/: .cvsignore, libadplug.texi: Updated documentation.
2004-09-29 04:37 dynamite
* src/adplug.dsp, src/kemuopl.h, src/lds.cpp, test/loudness.ref:
Updated loudness test reference file.
2004-09-28 06:38 dynamite
* src/lds.h: Forgot to save, woops.
2004-09-28 06:37 dynamite
* INSTALL, README, src/lds.cpp, src/lds.h: Finalized loudness
player! yeah!
2004-09-04 04:43 dynamite
* AUTHORS, BUGS, TODO: Updated some docs.
2004-09-03 23:05 dynamite
* INSTALL.win32, Makefile.bt, Makefile.wat, README, TODO,
src/Makefile.bt, src/adplug.dsp, src/d00.cpp, src/lds.cpp,
src/lds.h, src/s3m.cpp: DOS/Windows fixes.
2004-09-03 21:45 dynamite
* test/: ice_thnk.sci, loudness.lds, mi2.laa: Fixed test-suite.
2004-09-03 21:18 dynamite
* test/Makefile.bt: Added Watcom Makefile
2004-09-03 21:16 dynamite
* test/loudness.lds: [no log message]
2004-09-03 21:07 dynamite
* test/: 2001.ref, ADAGIO.ref, ALLOYRUN.ref, ARAB.ref, BEGIN.ref,
BOOTUP.ref, CHILD1.ref, DTM-TRK1.ref, HIP_D.ref, MARIO.ref,
PLAYMUS1.ref, REVELAT.ref, SAILOR.ref, SCALES.ref, SMKEREM.ref,
SONG1.ref, TOCCATA.ref, TUBES.ref, loudness.lds, playertest.cpp,
TU_BLESS.ref, VIB_VOL3.ref, 2001.MKJ.ref, ADAGIO.DFM.ref,
WONDERIN.ref, adlibsp.ref, bmf1_2.ref, fdance03.ref, flash.ref,
hybrid.ref, hyp.ref, ice_thnk.ref, inc.ref, loudness.ref,
mi2.ref, michaeld.ref, playertest.dsp, psi1.ref, rat.ref,
samurai.ref, ALLOYRUN.RAD.ref, ARAB.BAM.ref, BEGIN.KSM.ref,
BOOTUP.M.ref, CHILD1.XSM.ref, DTM-TRK1.DTM.ref, HIP_D.ROL.ref,
MARIO.A2M.ref, PLAYMUS1.SNG.ref, REVELAT.SNG.ref, SAILOR.CFF.ref,
SCALES.SA2.ref, SMKEREM.HSC.ref, SONG1.sng.ref, TOCCATA.MAD.ref,
TUBES.SAT.ref, TU_BLESS.AMD.ref, VIB_VOL3.D00.ref,
WONDERIN.IMF.ref, adlibsp.s3m.ref, bmf1_2.xad.ref,
fdance03.dmo.ref, flash.xad.ref, hybrid.xad.ref, hyp.xad.ref,
ice_think.sci, ice_think.sci.ref, inc.raw.ref, loudness.lds.ref,
mi2_big_tree1.laa, mi2_big_tree1.laa.ref, michaeld.cmf.ref,
psi1.xad.ref, rat.xad.ref, samurai.dro.ref: Made test-suite
compatible with 8+3 char filename systems (i.e. DOS).
2004-09-03 06:27 dynamite
* test/: .cvsignore: Updated by TortoiseCVS
2004-09-03 05:48 dynamite
* src/dmo.cpp: Fixed endianness of TwinTeam player.
2004-09-03 03:07 dynamite
* BUGS, src/rol.cpp, src/sa2.cpp: More architecture changes.
2004-09-02 07:05 dynamite
* src/rol.cpp, src/rol.h, test/HIP_D.ROL.ref, test/playertest.cpp:
Updated rol player.
2004-09-02 05:07 dynamite
* test/: 2001.MKJ.ref, ADAGIO.DFM.ref, ALLOYRUN.RAD.ref,
ARAB.BAM.ref, BEGIN.KSM.ref, BOOTUP.M.ref, CHILD1.XSM.ref,
DTM-TRK1.DTM.ref, HIP_D.ROL.ref, MARIO.A2M.ref, PLAYMUS1.SNG.ref,
REVELAT.SNG.ref, SAILOR.CFF.ref, SCALES.SA2.ref, SMKEREM.HSC.ref,
SONG1.sng.ref, TOCCATA.MAD.ref, TUBES.SAT.ref, TU_BLESS.AMD.ref,
VIB_VOL3.D00.ref, WONDERIN.IMF.ref, adlibsp.s3m.ref,
bmf1_2.xad.ref, fdance03.dmo.ref, flash.xad.ref, hybrid.xad.ref,
hyp.xad.ref, ice_think.sci.ref, inc.raw.ref, loudness.lds.ref,
mi2_big_tree1.laa.ref, michaeld.cmf.ref, playertest.cpp,
psi1.xad.ref, rat.xad.ref, samurai.dro.ref: Slightly modified
test suite reference format. Now using hex-values.
2004-09-02 03:32 dynamite
* src/: dmo.cpp, dmo.h: Made player endian and wordsize clean.
2004-09-01 22:33 dynamite
* src/dmo.cpp, src/dmo.h, src/hsc.cpp, src/hsc.h, src/lds.cpp,
src/lds.h, src/player.h, test/SMKEREM.HSC.ref,
test/playertest.cpp: Endian fixes. OPL write fixes. LOUDNESS
player now reports song position.
2004-08-31 23:20 dynamite
* test/: HIP_D.ROL.ref, loudness.lds.ref: Updated test-suite.
2004-08-31 08:20 dynamite
* NEWS, src/adplug.cpp, src/lds.cpp: Finalized LOUDNESS player.
just some small quirks left.
2004-08-26 22:23 dynamite
* src/Makefile.am, src/lds.cpp, src/lds.h, src/sa2.cpp,
test/HIP_D.ROL.ref, test/MARIO.A2M.ref, test/loudness.lds,
test/playertest.cpp: Implemented LOUDNESS player. SA2 amd64
fixes. Fixed test-suite.
2004-08-26 00:53 dynamite
* src/: rol.cpp, rol.h: Added pitch event handling and quirks to
make it work on amd64.
2004-08-19 02:33 dynamite
* test/: 2001.MKJ.orig, 2001.MKJ.ref, ADAGIO.DFM.orig,
ADAGIO.DFM.ref, ALLOYRUN.RAD.orig, ALLOYRUN.RAD.ref,
ARAB.BAM.orig, ARAB.BAM.ref, BEGIN.KSM.orig, BEGIN.KSM.ref,
BOOTUP.M.orig, BOOTUP.M.ref, CHILD1.XSM.orig, CHILD1.XSM.ref,
DTM-TRK1.DTM.orig, DTM-TRK1.DTM.ref, HIP_D.ROL.orig,
HIP_D.ROL.ref, MARIO.A2M.orig, MARIO.A2M.ref, PLAYMUS1.SNG.orig,
PLAYMUS1.SNG.ref, REVELAT.SNG.orig, REVELAT.SNG.ref,
SAILOR.CFF.orig, SAILOR.CFF.ref, SCALES.SA2.orig, SCALES.SA2.ref,
SMKEREM.HSC.orig, SMKEREM.HSC.ref, SONG1.sng.orig, SONG1.sng.ref,
TOCCATA.MAD.orig, TOCCATA.MAD.ref, TUBES.SAT.orig, TUBES.SAT.ref,
TU_BLESS.AMD.orig, TU_BLESS.AMD.ref, VIB_VOL3.D00.orig,
VIB_VOL3.D00.ref, WONDERIN.IMF.orig, WONDERIN.IMF.ref,
adlibsp.s3m.orig, adlibsp.s3m.ref, bmf1_2.xad.orig,
bmf1_2.xad.ref, fdance03.dmo.orig, fdance03.dmo.ref,
flash.xad.orig, flash.xad.ref, hybrid.xad.orig, hybrid.xad.ref,
hyp.xad.orig, hyp.xad.ref, ice_think.sci.orig, ice_think.sci.ref,
inc.raw.orig, inc.raw.ref, mi2_big_tree1.laa.orig,
mi2_big_tree1.laa.ref, michaeld.cmf.orig, michaeld.cmf.ref,
playertest.cpp, psi1.xad.orig, psi1.xad.ref, rat.xad.orig,
rat.xad.ref, samurai.dro.orig, samurai.dro.ref: .orig was a bad
file extension decision for the reference files, as it is the
standard extension used by patch to mark an original and is also
ignored by CVS by default. I thus renamed all reference files to
have an extension of .ref instead.
2004-08-19 02:24 dynamite
* test/: HIP_D.ROL.orig, bmf1_2.xad.orig, flash.xad.orig,
hybrid.xad.orig, hyp.xad.orig, psi1.xad.orig: Added more
reference file formats.
2004-08-19 02:23 dynamite
* src/dro.cpp, src/raw.cpp, test/HIP_D.ROL, test/bmf1_2.xad,
test/flash.xad, test/hybrid.xad, test/hyp.xad, test/inc.raw.orig,
test/playertest.cpp, test/psi1.xad, test/standard.bnk: Added more
reference formats to test-suite.
2004-08-19 00:48 dynamite
* test/: 2001.MKJ.orig, 2001.MKJ.orig.raw, ADAGIO.DFM.orig,
ADAGIO.DFM.orig.raw, ALLOYRUN.RAD.orig, ALLOYRUN.RAD.orig.raw,
ARAB.BAM.orig, ARAB.BAM.orig.raw, BEGIN.KSM.orig,
BEGIN.KSM.orig.raw, BOOTUP.M.orig, BOOTUP.M.orig.raw,
CHILD1.XSM.orig, CHILD1.XSM.orig.raw, DTM-TRK1.DTM.orig,
DTM-TRK1.DTM.orig.raw, MARIO.A2M.orig, MARIO.A2M.orig.raw,
PLAYMUS1.SNG.orig, PLAYMUS1.SNG.orig.raw, REVELAT.SNG.orig,
REVELAT.SNG.orig.raw, SAILOR.CFF.orig, SAILOR.CFF.orig.raw,
SCALES.SA2.orig, SCALES.SA2.orig.raw, SMKEREM.HSC.orig,
SMKEREM.HSC.orig.raw, SONG1.sng.orig, SONG1.sng.orig.raw,
TOCCATA.MAD.orig, TOCCATA.MAD.orig.raw, TUBES.SAT.orig,
TUBES.SAT.orig.raw, TU_BLESS.AMD.orig, TU_BLESS.AMD.orig.raw,
VIB_VOL3.D00.orig, VIB_VOL3.D00.orig.raw, WONDERIN.IMF.orig,
WONDERIN.IMF.orig.raw, adlibsp.s3m.orig, adlibsp.s3m.orig.raw,
fdance03.dmo.orig, fdance03.dmo.orig.raw, ice_think.sci.orig,
ice_think.sci.orig.raw, inc.raw.orig, inc.raw.orig.raw,
mi2_big_tree1.laa.orig, mi2_big_tree1.laa.orig.raw,
michaeld.cmf.orig, michaeld.cmf.orig.raw, playertest.cpp,
rat.xad.orig, rat.xad.orig.raw, samurai.dro.orig,
samurai.dro.orig.raw: Switched to new player test reference file
format.
2004-08-18 06:30 dynamite
* src/cff.cpp, src/dmo.cpp, src/dtm.cpp, src/mid.cpp,
src/protrack.cpp, src/raw.cpp, src/sng.cpp,
test/TOCCATA.MAD.orig.raw, test/TUBES.SAT.orig.raw,
test/TU_BLESS.AMD.orig.raw, test/inc.raw.orig.raw,
test/playertest.cpp: Fixed multiple memory leaks.
2004-08-17 07:15 dynamite
* INSTALL, INSTALL.unix, NEWS: Updated autotools.
2004-08-17 07:10 dynamite
* INSTALL, src/mkj.cpp, test/2001.MKJ.orig.raw,
test/playertest.cpp: Fixed MKJamz player on multi-CPU platforms.
2004-08-16 23:44 dynamite
* test/playertest.cpp: Added status info.
2004-08-16 08:20 dynamite
* test/playertest.cpp: Added playernames.
2004-08-16 08:15 dynamite
* test/.cvsignore: Added .cvsignore.
2004-08-16 08:14 dynamite
* test/2001.MKJ, test/2001.MKJ.orig.raw, test/ADAGIO.DFM,
test/ADAGIO.DFM.orig.raw, test/ALLOYRUN.RAD,
test/ALLOYRUN.RAD.orig.raw, test/ARAB.BAM,
test/ARAB.BAM.orig.raw, test/BEGIN.KSM, test/BEGIN.KSM.orig.raw,
test/BOOTUP.M, test/BOOTUP.M.orig.raw, test/CHILD1.XSM,
test/CHILD1.XSM.orig.raw, test/DTM-TRK1.DTM,
test/DTM-TRK1.DTM.orig.raw, test/MARIO.A2M,
test/MARIO.A2M.orig.raw, test/Makefile.am, test/PLAYMUS1.SNG,
test/PLAYMUS1.SNG.orig.raw, test/REVELAT.SNG,
test/REVELAT.SNG.orig.raw, test/SAILOR.CFF,
test/SAILOR.CFF.orig.raw, test/SCALES.SA2,
test/SCALES.SA2.orig.raw, test/SMKEREM.HSC,
test/SMKEREM.HSC.orig.raw, test/SONG1.ins, test/SONG1.sng,
test/SONG1.sng.orig.raw, test/TOCCATA.MAD,
test/TOCCATA.MAD.orig.raw, test/TUBES.SAT,
test/TUBES.SAT.orig.raw, test/TU_BLESS.AMD,
test/TU_BLESS.AMD.orig.raw, test/VIB_VOL3.D00,
test/VIB_VOL3.D00.orig.raw, test/WONDERIN.IMF,
test/WONDERIN.IMF.orig.raw, test/adlibsp.s3m,
test/adlibsp.s3m.orig.raw, test/fdance03.dmo,
test/fdance03.dmo.orig.raw, test/ice_think.sci,
test/ice_think.sci.orig.raw, test/icepatch.003, test/inc.raw,
test/inc.raw.orig.raw, test/insts.dat, test/mi2_big_tree1.laa,
test/mi2_big_tree1.laa.orig.raw, test/michaeld.cmf,
test/michaeld.cmf.orig.raw, test/playertest.cpp, test/rat.xad,
test/rat.xad.orig.raw, test/samurai.dro,
test/samurai.dro.orig.raw, Makefile.am, configure.in: Added
Test-Suite.
2004-08-09 22:08 dynamite
* adplugdb/getopt.c, adplugdb/getopt.h, doc/Makefile.am: Reverted
getopt.
2004-08-09 05:20 dynamite
* adplugdb/: adplugdb.cpp, getopt.c, getopt.h: Updated getopt.
2004-08-07 07:45 dynamite
* NEWS, README, doc/Makefile.am, src/dro.cpp: Updated distclean
target.
2004-07-09 23:11 dynamite
* src/: adplug.dsp, amd.cpp: Windows fixes.
2004-07-05 23:03 dynamite
* AUTHORS, COPYING, src/Makefile.am, src/adplug.cpp, src/amd.cpp,
src/dro.cpp, src/dro.h: Added "DOSBox Raw OPL" player (.dro).
Fixed AMD loader.
2004-05-15 01:21 dynamite
* src/ksm.cpp: Fixed drums in ksm player.
2004-05-13 19:33 dynamite
* COPYING, NEWS, README, adplugdb/.cvsignore, src/Makefile.am,
src/adlibemu.c, src/adlibemu.h, src/emuopl.h, src/kemuopl.h,
src/lds.cpp, src/opl.h: Added Ken Silverman's emulator again.
2004-05-10 02:56 dynamite
* adplugdb/.cvsignore, src/lds.cpp: Disabled Loudness player.
2004-04-14 20:08 dynamite
* src/adplug.dsp: Added xsm player
2003-11-04 01:41 dynamite
* AUTHORS, NEWS, src/emuopl.cpp, src/emuopl.h, src/fmopl.c,
src/fmopl.h: Reverted fmopl OPL2 emulator to former open-source
version.
2003-08-16 03:31 dynamite
* src/: adplug.cpp, imf.cpp, imf.h, player.h: Added playback
capability for .adlib files to IMF player.
2003-05-05 05:25 dynamite
* INSTALL: Added more info about UNIX CVS compiles.
2003-05-05 05:23 dynamite
* NEWS: Updated NEWS.
2003-05-05 04:02 dynamite
* INSTALL, Makefile.bt, adplug.qpg, adplug.spec, configure.in,
src/adplug.cpp, src/adtrack.cpp, src/lds.cpp, src/rol.cpp,
src/sa2.cpp: Fixed unsupported files being left open bug. Added
more UNIX and CVS install instructions. Bumped version number.
2003-05-04 08:34 dynamite
* src/: xsm.cpp, xsm.h: Added XSM player.
2003-05-04 08:33 dynamite
* NEWS, adplug.qpg, doc/libadplug.texi, src/Makefile.am,
src/Makefile.bt, src/adplug.cpp, src/adtrack.cpp, src/lds.cpp,
src/lds.h, src/mkj.cpp, src/mkj.h, src/rol.cpp, src/sa2.cpp:
Fixed some replay glitches in MKJamz player, but still not
perfect. Fixed some files being left open on unsupported file
types. Bumped version numbers.
2003-03-19 21:45 dynamite
* Makefile.bt, NEWS, adplug.qpg, adplug.spec, configure.in,
src/adplug.cpp: Bumped version number.
2003-03-19 02:02 dynamite
* Makefile.bt: late-coming DOS build fixes.
2003-03-18 23:46 dynamite
* ChangeLog: Updated ChangeLog.
2003-03-18 21:41 dynamite
* Makefile.bt: DOS build fixes. Release Candidate #3.
2003-03-18 07:11 dynamite
* ChangeLog, Makefile.am, adplugdb/Makefile.am,
adplugdb/adplugdb.cpp, doc/Makefile.am, src/Makefile.am: UNIX
build fixes. Added missing files to distribution. Release
Candidate #2.
2003-03-18 00:00 dynamite
* AUTHORS, COPYING, TODO, adplug_mdk.spec, src/adplug.cpp: Fixed
faust music creator file extension. Removed mandrake spec file.
Release Candidate. Added excerpt of MAME license.
2003-03-17 05:35 dynamite
* src/: Makefile.bt, player.cpp: DOS build fixes.
2003-03-17 02:56 dynamite
* NEWS, doc/libadplug.texi, src/fmopl.c, src/player.cpp: Updated
fmopl to MAME 0.66 source. Updated CPlayer::songlength(), it now
doesn't touch the OPL while calculating the song length.
2003-03-14 01:19 dynamite
* src/: rol.cpp, rol.h: Fixed CR/LF's.
2003-03-13 23:54 dynamite
* src/adplug.dsp: Synced windows build.
2003-03-13 22:45 dynamite
* src/: Makefile.am, adplug.cpp, rol.cpp, rol.h: Added new version
of .rol player.
2003-03-07 23:41 dynamite
* BUGS, src/fmopl.c, src/protrack.cpp: Fixed symbol clash in fmopl
emulator. Thanks to Goetz Waschk!
2003-03-05 07:45 dynamite
* adplug.qpg: Added some missing header files to QNX packaging.
2003-03-04 22:47 dynamite
* README, adplug.spec: Updated systems compatibility list. Updated
groups in redhat spec file.
2003-03-04 06:37 dynamite
* doc/libadplug.texi: Changed info directory category from GNU
Libraries to Software Libraries.
2003-03-04 01:45 dynamite
* TODO, adplug_mdk.spec, src/Makefile.am: Added Mandrake .spec
file.
2003-03-02 04:51 dynamite
* src/: database.cpp, database.h: Database now uses heap instead of
stack. (phew)
2003-03-02 03:43 dynamite
* adplugdb/Makefile.bt: Fixed library dependency for DOS build.
2003-02-28 02:45 dynamite
* adplugdb/: adplugdb.dsp, vc6inst.bat: Windows build fixes.
2003-02-26 08:19 dynamite
* TODO, adplugdb/adplugdb.cpp, doc/Makefile.am, doc/adplugdb.1,
src/adplug.cpp: Added adplugdb manpage.
2003-02-24 02:16 dynamite
* AUTHORS: Documentation updates.
2003-02-23 21:17 dynamite
* adplug.qpg: Added QNX packaging file.
2003-02-23 03:06 dynamite
* adplugdb/.cvsignore: Updated by TortoiseCVS
2003-02-22 09:19 dynamite
* INSTALL.dos, Makefile.bt, Makefile.wat, adplugdb/Makefile.bt,
adplugdb/getopt.h, src/Makefile.bt: DOS build fixes.
2003-02-22 05:46 dynamite
* src/: players.cpp, players.h: Fixed harsh memory corruption by
implementing a forgotten copy-constructor in CPlayerDesc class.
2003-02-21 09:31 dynamite
* adplugdb/.cvsignore, adplugdb/adplugdb.cpp,
adplugdb/adplugdb.dsp, adplugdb/getopt.h, src/adplug.dsp,
src/fmopl.c: Windows build fixes.
2003-02-21 04:36 dynamite
* adplugdb/adplugdb.cpp, doc/libadplug.texi, src/database.cpp,
src/database.h: Fixed logic error in the database, when multiple
databases are in use.
2003-02-19 20:29 dynamite
* TODO, adplugdb/adplugdb.cpp, src/database.cpp, src/database.h,
src/imf.cpp: Fixed database search. Removed WITH_DATABASE
conditional.
2003-02-19 00:03 dynamite
* src/: fmopl.c, fmopl.h: Removed redundant LFs from new fmopl OPL2
emulator sources.
2003-02-18 02:46 dynamite
* TODO, src/imfcrc.h: Removed imfcrc file.
2003-02-18 02:42 dynamite
* TODO, adplugdb/adplugdb.cpp, doc/libadplug.texi,
src/fprovide.cpp, src/xad.cpp: Fixed loading of nonexistant
files. Updated documentation.
2003-02-17 23:48 dynamite
* AUTHORS, NEWS, TODO, configure.in, adplugdb/Makefile.am,
adplugdb/adplugdb.cpp, src/database.cpp, src/emuopl.cpp,
src/emuopl.h, src/fmopl.c, src/fmopl.h: Added newest fmopl OPL2
emulator. Made adplugdb access home directory first, before
trying system-wide database, on systems that support it.
2003-02-16 23:43 dynamite
* doc/.cvsignore, doc/libadplug.texi, INSTALL, README, TODO,
adplugdb/adplugdb.cpp, src/adplug.h, src/database.h: Updated
documentation.
2003-01-31 05:28 dynamite
* src/: adplug.dsp, sng.cpp: Windows fixes.
2003-01-31 03:18 dynamite
* TODO, src/adplug.cpp, src/adplug.h, src/fprovide.cpp,
src/players.cpp, src/players.h: Added lookup_filetype() method to
CPlayers class. Random fixes otherwise.
2003-01-28 23:40 dynamite
* TODO: Updated TODO list.
2003-01-28 23:34 dynamite
* src/: Makefile.am, adplug.cpp, adtrack.cpp, amd.cpp, bam.cpp,
bam.h, bmf.cpp, bmf.h, cff.cpp, cff.h, d00.cpp, d00.h, dfm.cpp,
dfm.h, dmo.cpp, dmo.h, dtm.cpp, dtm.h, flash.cpp, flash.h,
fmc.cpp, fmc.h, fprovide.cpp, fprovide.h, hsc.cpp, hsp.cpp,
hsp.h, hybrid.cpp, hybrid.h, hyp.cpp, hyp.h, imf.cpp, ksm.cpp,
ksm.h, lds.cpp, lds.h, mad.cpp, mad.h, mid.cpp, mid.h, mkj.cpp,
mkj.h, mtk.cpp, mtk.h, player.cpp, player.h, psi.cpp, psi.h,
rad.cpp, rad.h, rat.cpp, rat.h, raw.cpp, raw.h, s3m.cpp, s3m.h,
sa2.cpp, sa2.h, u6m.cpp, u6m.h, xad.cpp, xad.h: Updated rest of
players for new loading framework. ROL player still missing.
Waiting for Akintunde to fix it.
2003-01-24 02:27 dynamite
* doc/libadplug.texi, src/Makefile.am, src/a2m.h, src/adplug.cpp,
src/adtrack.cpp, src/adtrack.h, src/amd.cpp, src/amd.h,
src/database.cpp: Updated adtrack and amd replayers to new file
handling code.
2003-01-17 07:28 dynamite
* Makefile.wat, src/Makefile.bt: DOS build fixes.
2003-01-17 07:05 dynamite
* src/database.cpp: Removed invalid libbinio access.
2003-01-08 01:47 dynamite
* src/: a2m.cpp, a2m.h, adplug.dsp, database.cpp, database.h:
Windows fixes.
2003-01-05 02:50 dynamite
* BUGS, Makefile.am, NEWS, README, TODO, configure.in,
adplugdb/.cvsignore, adplugdb/Makefile.am, adplugdb/adplugdb.cpp,
adplugdb/getopt.c, adplugdb/getopt.h, doc/.cvsignore,
doc/Makefile.am, doc/fdl.texi, doc/libadplug.texi,
src/Makefile.am, src/a2m.cpp, src/a2m.h, src/adplug.cpp,
src/adplug.h, src/database.cpp, src/database.h, src/fprovide.cpp,
src/fprovide.h, src/hsc.cpp, src/hsc.h, src/imf.cpp, src/imf.h,
src/opl.h, src/player.cpp, src/player.h, src/players.cpp,
src/players.h, src/protrack.cpp, src/protrack.h, src/sng.cpp,
src/sng.h, src/u6m.cpp, src/u6m.h, src/xad.cpp, src/xad.h: Added
database framework, implemented new loading system, some fixes,
added 'adplugdb' database maintenance utility and rewrote the
IMF, SNG, HSC and A2M replayers to support the new loading
system. All other players are still broken at this point. The
documentation is also not in sync with these changes, yet!
2002-11-29 00:04 dynamite
* AUTHORS, ChangeLog, TODO, adplug.spec, doc/.cvsignore,
doc/Hacking.ms, doc/Makefile.am, doc/Player-Development.ms,
doc/Protracker.ms, doc/libadplug.texi, src/fmopl.h: Converted
docs into Texinfo format. Added Red Hat RPM spec file. Fixed
memory leak in fmopl.
2002-11-19 06:04 dynamite
* INSTALL, INSTALL.dos, README, README.dos, src/Makefile.bt,
src/rol.h, src/u6m.h: Revised DOS build installation
instructions. Added -oi+ compiler flag to DOS build to work
around a compiler bug.
2002-11-17 03:57 dynamite
* src/: Makefile.bt, adplug.cpp: Enabled STL using code under
Watcom.
2002-11-15 22:42 dynamite
* src/raw.cpp: Made RAW player loop itself.
2002-11-15 22:05 dynamite
* src/imf.cpp: Fixed IMF player to correctly load files with a
null-length footer.
2002-11-15 20:52 dynamite
* Makefile.bt, NEWS, configure.in, src/adplug.cpp: Bumped version
number. Added dependency to libstdc++ under UNIX.
2002-11-08 04:32 dynamite
* .cvsignore: Release Candidate #1.
2002-11-08 04:31 dynamite
* Makefile.bt: AdPlug Release Candidate #1.
2002-11-08 03:03 dynamite
* TODO, src/dmo.cpp: TODO list updates.
2002-11-02 23:10 dynamite
* src/: .cvsignore, adplug.dsp, dmo.h: Fixed struct element
alignment in dmo player.
2002-11-01 00:08 dynamite
* src/: Makefile.am, d00.h, dmo.cpp: Added file extension check to
dmo player.
2002-10-28 01:49 dynamite
* src/: adplug.dsp, cff.h: Some fixes.
2002-10-28 01:19 dynamite
* src/adplug.dsp: Some fixes.
2002-10-25 07:10 dynamite
* README, TODO, configure.in, doc/Protracker.ms, src/Makefile.am,
src/adplug.cpp, src/adplug.h, src/amd.cpp, src/cff.cpp,
src/d00.cpp, src/debug.c, src/dmo.cpp, src/emuopl.cpp,
src/emuopl.h, src/mad.cpp: AdPlug 1.3 Release Candidate #1.
2002-10-22 00:04 riven-mage
* src/dmo.cpp, src/s3m.cpp, AUTHORS, README: nothing chaged :)
2002-10-21 02:05 riven-mage
* src/dmo.cpp: dmo release
2002-10-21 02:04 riven-mage
* README: no message
2002-10-20 21:46 riven-mage
* src/Makefile.am, src/Makefile.bt, src/adplug.cpp, src/dmo.cpp,
src/dmo.h, AUTHORS, NEWS, README: dmo release
2002-10-20 17:05 riven-mage
* src/: dmo.cpp, dmo.h: latest alpha
2002-10-20 17:04 riven-mage
* src/s3m.h: instrument structure named 's3minst'
2002-10-20 17:03 riven-mage
* src/cff.cpp: signature check after unpack moved from unpack() to
load()
2002-10-19 17:59 riven-mage
* src/protrack.h: Channel placement fixed :)
2002-10-19 06:56 riven-mage
* src/protrack.cpp: fmc fix
2002-10-19 06:51 riven-mage
* doc/Protracker.ms: fmc & dtm additions
2002-10-19 05:58 riven-mage
* AUTHORS, NEWS, README, TODO: dtm released
2002-10-19 05:57 riven-mage
* src/: cff.cpp, cff.h: some changes
2002-10-19 05:53 riven-mage
* src/: d00.h, s3m.h: pragma #once
2002-10-19 05:50 riven-mage
* src/: adplug.cpp, Makefile.am, Makefile.bt, adplug.dsp, dtm.cpp,
dtm.h: dtm released
2002-10-16 17:32 riven-mage
* src/cff.cpp: input underflow fix
2002-10-16 06:37 riven-mage
* src/cff.cpp: no message
2002-10-16 00:36 riven-mage
* src/protrack.cpp: 'DTM frequency slide' effect added
2002-10-16 00:35 riven-mage
* src/protrack.h: moved Channels from private to protected
2002-10-16 00:32 riven-mage
* src/: amd.cpp, rad.cpp: 'MOD_FLAGS_DECIMAL' changed to 'Decimal'
2002-10-16 00:30 riven-mage
* src/: cff.cpp, cff.h: default instruments fix
2002-10-16 00:29 riven-mage
* src/: mad.cpp, mad.h, fmc.cpp, fmc.h: update to latest Protracker
2002-10-15 02:15 dynamite
* TODO, src/Makefile.am, src/xad.h: Added pseudo #once pragma.
2002-10-12 22:41 riven-mage
* src/cff.cpp: comment changes
2002-10-12 21:12 riven-mage
* src/: xad.cpp, xad.h, fmc.h, dmo.cpp, dmo.h: no message
2002-10-11 01:19 riven-mage
* src/: hybrid.cpp: nothing important :)
2002-10-10 06:31 dynamite
* TODO, configure.in, src/emuopl.h: UNIX build fixes.
2002-10-07 06:42 dynamite
* src/realopl.h: nothing changed. ;)
2002-10-06 04:23 dynamite
* src/adplug.dsp: Added cff.[cpp,h] to adplug.dsp.
2002-10-04 23:19 dynamite
* Makefile.am, TODO, configure.in: UNIX build system fixes.
2002-10-04 08:07 dynamite
* TODO, src/Makefile.am, src/fmopl.c: Fixed copyright notice in
fmopl.c.
2002-10-04 06:34 dynamite
* INSTALL.dos, Makefile.wat: Updated DOS build system. Can now
create debug info.
2002-10-04 06:32 dynamite
* src/: Makefile.bt, adplug.cpp, adtrack.cpp, bmf.cpp, cff.cpp,
cff.h, debug.c, debug.h, dtm.cpp, flash.cpp, hsc.cpp, hybrid.cpp,
ksm.cpp, protrack.cpp, psi.cpp, rat.cpp, rol.cpp, sa2.cpp,
xad.cpp: Prefixed C debug functions with AdPlug_*. Updated DOS
makefile.
2002-10-03 06:33 dynamite
* doc/.cvsignore: Added cvsignore file.
2002-10-03 06:31 dynamite
* INSTALL, Makefile.am, autogen.sh, configure.in, doc/Makefile.am,
doc/groff-it, src/Makefile.am: automake based documentation
building on UNIX.
2002-10-01 21:17 riven-mage
* src/: dtm.cpp, dtm.h: alpha 2
2002-10-01 21:16 riven-mage
* src/: cff.cpp, cff.h: final version
2002-09-30 06:16 riven-mage
* AUTHORS: no message
2002-09-30 06:08 riven-mage
* src/cff.cpp: final version
2002-09-30 03:31 dynamite
* TODO, doc/Hacking.ms, doc/Hacking.txt, doc/Player-Development.ms,
doc/Player-Development.txt, doc/Protracker.ms,
doc/Protracker.txt, doc/groff-it: Added troff documentation.
2002-09-30 03:15 dynamite
* AUTHORS, Makefile.am, NEWS, README, TODO: Some more updates...
2002-09-29 22:02 riven-mage
* src/adplug.dsp: struct member alignment set to 1 byte (for
Release)
2002-09-29 21:45 riven-mage
* src/cff.cpp, TODO: no message
2002-09-29 18:20 riven-mage
* NEWS, TODO, AUTHORS: no message
2002-09-29 18:19 riven-mage
* src/: cff.cpp, cff.h: pre-final version
2002-09-29 18:18 riven-mage
* src/adplug.cpp: CFF loader support
2002-09-29 18:17 riven-mage
* src/protrack.cpp: fixed memset(channel,0,sizeof(channel))
2002-09-26 22:11 riven-mage
* TODO, doc/Protracker.txt, src/cff.cpp, src/cff.h,
src/protrack.cpp, src/xad.cpp: CFF updated to beta
2002-09-22 20:17 riven-mage
* TODO, src/cff.cpp, src/cff.h, src/dmo.cpp, src/dmo.h,
src/dtm.cpp, src/dtm.h: added cff,dmo,dtm alphas
2002-08-20 06:57 dynamite
* doc/: Player-Development.txt, Protracker.txt: Updated docs.
2002-08-18 19:12 riven-mage
* src/: debug.c, debug.h: no message
2002-08-16 04:49 dynamite
* TODO, src/adtrack.cpp, src/adtrack.h, src/debug.c: Finished
CadtrackLoader. Fixed debugging. Updated TODO list.
2002-08-16 03:54 dynamite
* src/: adtrack.cpp, adtrack.h, debug.c: Fixed CadtrackLoader.
Fixed debug logging.
2002-08-16 03:07 dynamite
* src/.cvsignore: Added *.err.
2002-08-16 03:06 dynamite
* src/: adtrack.cpp, protrack.cpp, protrack.h: Added NoKeyOn flag
to CmodPlayer. Fixed CadtrackLoader.
2002-08-16 02:37 dynamite
* src/adtrack.cpp: Changed all 0-notes to keyoffs instead. And
don't use own note table.
2002-08-16 01:39 dynamite
* INSTALL: Corrected DOS debug documentation.
2002-08-16 01:24 dynamite
* NEWS, README, TODO, doc/Protracker.txt, src/imf.cpp, src/imf.h,
src/protrack.cpp, src/protrack.h, src/sa2.cpp: Fixed SA2 loader.
Added descriptions to IMF player. Updated docs.
2002-08-14 05:57 dynamite
* INSTALL: Revised DOS build instructions.
2002-08-14 05:56 dynamite
* INSTALL, Makefile.wat, src/.cvsignore, src/Makefile.bt,
src/adplug.cpp: Added adtrack.cpp & lds.cpp to DOS build and
revised cvsignore files.
2002-08-14 05:20 dynamite
* src/adplug.dsp: Added adtrack.cpp build information.
2002-08-14 00:47 dynamite
* TODO, src/adtrack.cpp, src/protrack.cpp, src/protrack.h: Fixed
CadtrackLoader.
2002-08-13 21:55 dynamite
* NEWS, src/Makefile.am, src/adplug.cpp, src/adtrack.cpp,
src/adtrack.h, src/fmc.cpp, src/mad.cpp, src/protrack.cpp,
src/protrack.h: Flexible notetable in CmodPlayer, implemented
CadtrackLoader.
2002-08-12 04:36 dynamite
* src/: adtrack.cpp, imfcrc.h: Added "Duke Nukem 2" IMF CRC values.
2002-08-10 02:46 dynamite
* NEWS, TODO, doc/Hacking.txt, doc/Protracker.txt, src/adtrack.cpp,
src/adtrack.h, src/fmopl.c, src/fmopl.h, src/protrack.cpp,
src/protrack.h: checked in adtrack.* and updated protracker docs.
2002-08-10 00:11 dynamite
* src/: .cvsignore, adplug.dsp, sa2.cpp: Windows fixes.
2002-08-09 20:22 dynamite
* src/: .cvsignore, adplug.cpp, debug.c, lds.cpp, mid.cpp,
protrack.cpp: Fixes from the Windows build.
2002-08-09 08:34 dynamite
* TODO, src/dfm.cpp, src/lds.cpp, src/protrack.cpp, src/rad.cpp,
src/sa2.cpp: made CmodPlayer more flexible.
2002-08-09 06:06 dynamite
* TODO, doc/Protracker.txt, src/a2m.cpp, src/adplug.cpp,
src/protrack.cpp, src/protrack.h, src/sa2.cpp: Implemented
preliminary extendable CmodPlayer class.
2002-08-08 23:20 dynamite
* doc/Protracker.txt: Added preliminary Protracker player devel
HOWTO.
2002-08-08 22:22 dynamite
* doc/Player-Development.txt: Updated Player devel HOWTO
2002-08-08 22:11 dynamite
* TODO, src/protrack.cpp: no message
2002-08-08 18:27 riven-mage
* TODO: no message
2002-08-08 05:01 dynamite
* TODO: todo list update.
2002-08-08 04:59 dynamite
* .cvsignore, INSTALL, README, TODO, autogen.sh, configure.in,
doc/Hacking.txt, doc/Player-Development-mini-HOWTO.txt,
doc/Player-Development.txt, src/.cvsignore, src/a2m.cpp,
src/a2m.h, src/adplug.cpp, src/adplug.h, src/amd.cpp, src/amd.h,
src/bam.cpp, src/bam.h, src/bmf.cpp, src/bmf.h, src/d00.cpp,
src/d00.h, src/debug.c, src/debug.h, src/dfm.cpp, src/dfm.h,
src/flash.cpp, src/flash.h, src/fmc.cpp, src/fmc.h, src/hsc.cpp,
src/hsc.h, src/hsp.cpp, src/hsp.h, src/hybrid.cpp, src/hybrid.h,
src/hyp.cpp, src/hyp.h, src/imf.cpp, src/imf.h, src/ksm.cpp,
src/ksm.h, src/lds.cpp, src/lds.h, src/mad.cpp, src/mad.h,
src/mid.cpp, src/mid.h, src/mkj.cpp, src/mkj.h, src/mtk.cpp,
src/mtk.h, src/player.h, src/protrack.cpp, src/protrack.h,
src/psi.cpp, src/psi.h, src/rad.cpp, src/rad.h, src/rat.cpp,
src/rat.h, src/raw.cpp, src/raw.h, src/rol.cpp, src/rol.h,
src/s3m.cpp, src/s3m.h, src/sa2.cpp, src/sa2.h, src/sng.cpp,
src/sng.h, src/u6m.cpp, src/u6m.h, src/xad.cpp, src/xad.h: too
many changes to list here.
2002-08-06 20:18 riven-mage
* TODO: no message
2002-08-04 20:25 riven-mage
* TODO: no message
2002-08-04 20:15 riven-mage
* TODO: no message
2002-08-02 01:04 dynamite
* .cvsignore, src/.cvsignore: added .cvsignore file. cleaned up.
2002-07-25 03:18 dynamite
* INSTALL.win32, TODO, src/Makefile.am, src/imfcrc.h: no message
2002-07-19 22:24 dynamite
* INSTALL, INSTALL.dos, INSTALL.unix, INSTALL.win32, Makefile.bt,
Makefile.wat, TODO, src/Makefile.bt, src/Makefile.wat,
src/adplug.dsp, src/vc6inst.bat, src/xad.cpp: no message
2002-06-21 06:52 dynamite
* COPYING, AUTHORS, Makefile.am, NEWS, README, src/Makefile.am,
src/fmopl.c, src/protrack.h: no message
2002-05-11 06:11 dynamite
* NEWS, README, src/Makefile.wat, src/debug.h, src/diskopl.cpp,
src/diskopl.h, src/fmopl.c, src/fmopl.h: n
2002-04-26 22:53 dynamite
* AUTHORS: no message
2002-04-16 21:02 dynamite
* src/: Makefile.wat, adplug.cpp, xad.cpp: no message
2002-03-29 02:26 dynamite
* NEWS: no message
2002-03-28 22:53 dynamite
* NEWS, configure.in, src/adplug.cpp, src/adplug.dsp, src/adplug.h,
src/bmf.cpp, src/debug.c, src/flash.cpp, src/hybrid.cpp,
src/hyp.cpp, src/psi.cpp, src/rat.cpp, src/debug.h: no message
2002-03-26 02:10 dynamite
* Makefile.am, README, doc/PLAYER_SDK,
doc/Player-Development-mini-HOWTO.txt: m
2002-03-26 00:07 dynamite
* src/Makefile.am, src/Makefile.wat, src/a2m.cpp, src/a2m.h,
src/adplug.cpp, src/adplug.dsp, src/adplug.h, src/amd.cpp,
src/amd.h, src/analopl.cpp, src/analopl.h, src/bam.cpp,
src/bam.h, src/bmf.cpp, src/bmf.h, src/d00.cpp, src/d00.h,
src/debug.c, src/dfm.cpp, src/dfm.h, src/diskopl.cpp,
src/diskopl.h, src/emuopl.cpp, src/emuopl.h, src/flash.cpp,
src/flash.h, src/fmc.cpp, src/fmc.h, src/fmopl.c, src/fmopl.h,
src/hsc.cpp, src/hsc.h, src/hsp.cpp, src/hsp.h, src/hybrid.cpp,
src/hybrid.h, src/hyp.cpp, src/hyp.h, src/imf.cpp, src/imf.h,
src/imfcrc.h, src/ksm.cpp, src/ksm.h, src/lds.cpp, src/lds.h,
src/mad.cpp, src/mad.h, src/mid.cpp, src/mid.h, src/mididata.h,
src/mkj.cpp, src/mkj.h, src/mtk.cpp, src/mtk.h, src/opl.h,
src/player.h, src/protrack.cpp, src/protrack.h, src/psi.cpp,
src/psi.h, src/rad.cpp, src/rad.h, src/rat.cpp, src/rat.h,
src/raw.cpp, src/raw.h, src/realopl.cpp, src/realopl.h,
src/rol.cpp, src/rol.h, src/s3m.cpp, src/s3m.h, src/sa2.cpp,
src/sa2.h, src/silentopl.h, src/sng.cpp, src/sng.h, src/u6m.cpp,
src/u6m.h, src/xad.cpp, src/xad.h, doc/PLAYER_SDK: no message
2002-03-26 00:03 dynamite
* COPYING: no message
2002-03-25 23:59 dynamite
* players/Makefile.wat, players/a2m.cpp, players/a2m.h,
players/amd.cpp, players/amd.h, players/bam.cpp, players/bam.h,
players/d00.cpp, players/d00.h, players/debug.c, players/dfm.cpp,
players/dfm.h, players/fmc.cpp, players/fmc.h, players/hsc.cpp,
players/hsc.h, players/hsp.cpp, players/hsp.h, players/imf.cpp,
players/imf.h, players/imfcrc.h, players/ksm.cpp, players/ksm.h,
players/lds.cpp, players/lds.h, players/mad.cpp, players/mad.h,
players/mid.cpp, players/mid.h, players/mididata.h,
players/mkj.cpp, players/mkj.h, players/mtk.cpp, players/mtk.h,
players/player.h, players/protrack.cpp, players/protrack.h,
players/rad.cpp, players/rad.h, players/raw.cpp, players/raw.h,
players/rol.cpp, players/rol.h, players/s3m.cpp, players/s3m.h,
players/sa2.cpp, players/sa2.h, players/sng.cpp, players/sng.h,
players/u6m.cpp, players/u6m.h, players/xad.cpp, players/xad.h,
AUTHORS, Makefile.am, Makefile.wat, NEWS, PLAYER_SDK, README,
adplug.cpp, adplug.dsp, adplug.h, analopl.cpp, analopl.h,
configure.in, diskopl.cpp, diskopl.h, emuopl.cpp, emuopl.h,
fmopl.c, fmopl.h, opl.h, realopl.cpp, realopl.h, silentopl.h: no
message
2002-03-19 00:55 dynamite
* CHANGES, COPYING, CREDITS, INSTALL, adplug.cpp, adplug.h, fm.h,
makefile, makefile.wat, players/amd.cpp, players/player.h,
players/protrack.cpp, players/protrack.h, players/sa2.h, AUTHORS,
ChangeLog, Makefile.am, Makefile.wat, NEWS, autogen.sh,
configure.in, diskopl.cpp, diskopl.h, players/Makefile.wat,
players/debug.c, players/fmc.cpp, players/fmc.h, players/mad.cpp,
players/mad.h, players/makefile, players/makefile.wat,
players/rol.cpp, players/rol.h, players/xad.cpp, players/xad.h:
no message
2002-03-03 08:44 dynamite
* players/: imf.cpp, imfcrc.h: "
2002-03-03 03:35 dynamite
* adplug.cpp, makefile, players/lds.cpp, players/makefile: G
2002-03-03 00:01 dynamite
* CHANGES, CREDITS, INSTALL, PLAYER_SDK, README, adplug.cpp,
adplug.dsp, emuopl.h, fmopl.c, makefile, makefile.wat, opl.h,
players/a2m.cpp, players/amd.cpp, players/bam.cpp,
players/dfm.cpp, players/hsc.cpp, players/hsp.cpp,
players/ksm.cpp, players/makefile, players/mid.cpp,
players/mtk.cpp, players/rad.cpp, players/s3m.cpp,
players/sa2.cpp, players/u6m.cpp: G
2002-03-02 09:09 dynamite
* players/player.h: General update. Added GCC 3.x and FreeBSD
support.
2002-01-15 06:33 dynamite
* players/: bam.cpp, bam.h: fixed bug #476088.
2002-01-15 05:51 dynamite
* players/: bam.cpp, bam.h: fixed bug #476088.
2002-01-13 20:27 dynamite
* adplug.cpp, adplug.dsp, adplug.h, players/makefile.wat: made
CAdPlug a static class.
2001-12-26 23:27 dynamite
* CHANGES, CREDITS, README, adplug.cpp, adplug.dsp,
players/sa2.cpp: documentation updates.
2001-11-28 05:36 dynamite
* fm.h, fmopl.c, fmopl.h: updated emulator to upstream (MAME)
version.
2001-11-09 14:03 cdc_
* README: added .SAT (and preliminary .LDS note) to documentation
2001-11-09 14:02 cdc_
* CREDITS: .SAT support added to sa2.cpp - thanks mamiya
2001-11-09 13:42 cdc_
* players/sa2.cpp: .SAT support added to sa2.cpp - thanks mamiya
2001-10-27 01:06 dynamite
* CHANGES, INSTALL, PLAYER_SDK, README, adplug.cpp, adplug.dsp,
makefile, players/makefile, players/makefile.wat: release
candidate #1
2001-10-24 05:19 dynamite
* CREDITS, adplug.dsp, analopl.cpp, analopl.h, makefile,
makefile.wat, players/makefile.wat: added WATCOM and MSVC
support.
2001-10-19 02:44 dynamite
* CHANGES, CREDITS, INSTALL, README, adlibemu.c, adlibemu.h,
adplug.cpp, adplug.h, kemuopl.h, makefile, players/makefile: made
linux dynamic library, removed adlibemu.
2001-10-18 04:34 dynamite
* players/sng.h: fixed memory leak in sng player.
2001-10-15 21:18 dynamite
* COPYING, CREDITS, lgpl.txt: documentation cleanup.
2001-10-15 21:13 dynamite
* README, adplug.cpp, players/bam.cpp, players/bam.h,
players/lds.cpp: added BAM player. messed with LDS player.
2001-10-09 23:01 dynamite
* players/: a2m.cpp, d00.h: removed #ifdef's before #pragmas.
2001-10-08 23:23 dynamite
* PLAYER_SDK, README, adplug.cpp, players/a2m.cpp, players/lds.cpp,
players/lds.h: misc. changes.
2001-09-24 12:05 cdc_
* players/: a2m.cpp, a2m.h, amd.cpp, amd.h, d00.cpp, d00.h,
dfm.cpp, dfm.h, hsc.cpp, hsc.h, hsp.cpp, hsp.h, imf.cpp, imf.h,
imfcrc.h, ksm.cpp, ksm.h, mid.cpp, mid.h, mididata.h, mkj.cpp,
mkj.h, mtk.cpp, mtk.h, player.h, protrack.cpp, protrack.h,
rad.cpp, rad.h, raw.cpp, raw.h, s3m.cpp, s3m.h, sa2.cpp, sa2.h,
sng.cpp, sng.h, u6m.cpp, u6m.h: added license information
2001-09-24 12:01 cdc_
* lgpl.txt, adlibemu.c, adlibemu.h, adplug.cpp, adplug.h,
emuopl.cpp, emuopl.h, fm.h, fmopl.c, fmopl.h, kemuopl.h, opl.h,
realopl.cpp, realopl.h, silentopl.h: added license information
2001-09-16 01:05 dynamite
* fmopl.c, opl.h, players/imf.cpp, players/imf.h, players/imfcrc.h,
players/mkj.cpp: linux fixes.
2001-08-20 01:00 dynamite
* adlibemu.c, adlibemu.h, adplug.cpp, adplug.h, kemuopl.h,
players/d00.cpp, players/d00.h, players/imf.cpp, players/imf.h,
players/imfcrc.h, players/ksm.cpp, players/mid.cpp,
players/mid.h, players/player.h, players/protrack.cpp,
players/rad.cpp, players/s3m.cpp, players/u6m.cpp: miscellaneous
fixups & code cleanups.
2001-07-25 00:41 dynamite
* players/: dfm.cpp, dfm.h: finalized DFM player.
2001-07-17 01:00 dynamite
* adplug.cpp, players/dfm.cpp, players/dfm.h, players/protrack.cpp,
players/protrack.h: added DFM player.
2001-07-01 13:42 cdc_
* realopl.cpp: fixed delay values in realopl.cpp
2001-07-01 05:20 dynamite
* adplug.cpp: added MKJamz support to core module.
2001-07-01 05:10 dynamite
* adplug.cpp: made adplug 1.0 core release.
2001-06-25 03:51 dynamite
* adplug.cpp, realopl.cpp, players/mkj.cpp, players/mkj.h: added
preliminary MKJamz player. Some comments added to realopl.cpp.
2001-06-19 01:41 dynamite
* players/mid.cpp: misc. tweaks.
2001-06-18 02:03 dynamite
* players/: imf.h, ksm.cpp, protrack.cpp, protrack.h, sa2.cpp:
fixes to protracker and ksm players.
2001-06-15 04:12 dynamite
* adplug.cpp, players/imf.cpp: added .wlf support. IMF player
rewinds songs automatically now.
2001-06-10 21:04 dynamite
* players/: mid.cpp, mid.h: fixed load/reject bug in SCI player
2001-06-03 22:43 dynamite
* players/: ksm.cpp, ksm.h: added copyright notice to ksm replay.
2001-05-31 22:19 dynamite
* frontends/: dos/adplay.cpp, dos/colors.ini, dos/makefile,
dos/readme.txt, dos/timer/dpmi.cpp, dos/timer/dpmi.h,
dos/timer/imsrtns.h, dos/timer/irq.cpp, dos/timer/irq.h,
dos/timer/makefile, dos/timer/pindos.cpp, dos/timer/pindos.h,
dos/timer/readme.txt, dos/timer/timer.cpp, dos/timer/timer.h,
dos/window/makefile, dos/window/readme.txt, dos/window/txtgfx.c,
dos/window/txtgfx.h, dos/window/window.cpp, dos/window/window.h,
winamp/In2.h, winamp/adplug.bmp, winamp/debug.h,
winamp/frontend.h, winamp/in_adlib.cpp, winamp/in_adlib.dsp,
winamp/in_adlib.rc, winamp/in_adlib.txt, winamp/out.h,
winamp/resource.h: removed frontends from adplug main source
tree.
2001-05-31 20:20 dynamite
* adlibemu.c, frontends/winamp/in_adlib.cpp,
frontends/winamp/in_adlib.txt, players/ksm.cpp, players/raw.cpp,
players/raw.h: added proper credits to adlibemu.c & ksm.cpp.
Fixed raw.cpp (del variable was falsely interpreted).
2001-05-31 01:42 dynamite
* adlibemu.c, adlibemu.h, adplug.cpp, adplug.h, emuopl.cpp,
emuopl.h, realopl.cpp, fm.h, fmopl.c, fmopl.h, kemuopl.h, opl.h,
realopl.h, silentopl.h, frontends/winamp/resource.h,
frontends/winamp/in_adlib.cpp, frontends/winamp/In2.h,
frontends/winamp/in_adlib.txt, frontends/winamp/out.h,
frontends/winamp/frontend.h, frontends/winamp/in_adlib.rc,
frontends/winamp/in_adlib.dsp, frontends/dos/colors.ini,
frontends/dos/makefile, frontends/winamp/adplug.bmp,
frontends/winamp/debug.h, frontends/dos/readme.txt,
frontends/dos/adplay.cpp, frontends/dos/timer/dpmi.cpp,
frontends/dos/timer/irq.h, frontends/dos/timer/makefile,
frontends/dos/timer/pindos.cpp, frontends/dos/timer/pindos.h,
frontends/dos/timer/readme.txt, frontends/dos/timer/timer.cpp,
frontends/dos/timer/dpmi.h, frontends/dos/timer/imsrtns.h,
frontends/dos/timer/irq.cpp, frontends/dos/timer/timer.h,
frontends/dos/window/readme.txt, frontends/dos/window/txtgfx.c,
frontends/dos/window/txtgfx.h, frontends/dos/window/window.h,
frontends/dos/window/makefile, frontends/dos/window/window.cpp,
players/a2m.h, players/u6m.h, players/amd.cpp, players/amd.h,
players/d00.cpp, players/d00.h, players/hsc.cpp, players/hsc.h,
players/hsp.cpp, players/hsp.h, players/imf.cpp, players/imf.h,
players/imfcrc.h, players/ksm.cpp, players/ksm.h,
players/mid.cpp, players/mid.h, players/mididata.h,
players/mtk.cpp, players/mtk.h, players/player.h,
players/protrack.cpp, players/protrack.h, players/rad.cpp,
players/rad.h, players/raw.cpp, players/raw.h, players/s3m.cpp,
players/s3m.h, players/sa2.cpp, players/sa2.h, players/sng.cpp,
players/sng.h, players/u6m.cpp, players/a2m.cpp: Initial revision
2001-05-31 01:42 dynamite
* adlibemu.c, adlibemu.h, adplug.cpp, adplug.h, emuopl.cpp,
emuopl.h, realopl.cpp, fm.h, fmopl.c, fmopl.h, kemuopl.h, opl.h,
realopl.h, silentopl.h, frontends/winamp/resource.h,
frontends/winamp/in_adlib.cpp, frontends/winamp/In2.h,
frontends/winamp/in_adlib.txt, frontends/winamp/out.h,
frontends/winamp/frontend.h, frontends/winamp/in_adlib.rc,
frontends/winamp/in_adlib.dsp, frontends/dos/colors.ini,
frontends/dos/makefile, frontends/winamp/adplug.bmp,
frontends/winamp/debug.h, frontends/dos/readme.txt,
frontends/dos/adplay.cpp, frontends/dos/timer/dpmi.cpp,
frontends/dos/timer/irq.h, frontends/dos/timer/makefile,
frontends/dos/timer/pindos.cpp, frontends/dos/timer/pindos.h,
frontends/dos/timer/readme.txt, frontends/dos/timer/timer.cpp,
frontends/dos/timer/dpmi.h, frontends/dos/timer/imsrtns.h,
frontends/dos/timer/irq.cpp, frontends/dos/timer/timer.h,
frontends/dos/window/readme.txt, frontends/dos/window/txtgfx.c,
frontends/dos/window/txtgfx.h, frontends/dos/window/window.h,
frontends/dos/window/makefile, frontends/dos/window/window.cpp,
players/a2m.h, players/u6m.h, players/amd.cpp, players/amd.h,
players/d00.cpp, players/d00.h, players/hsc.cpp, players/hsc.h,
players/hsp.cpp, players/hsp.h, players/imf.cpp, players/imf.h,
players/imfcrc.h, players/ksm.cpp, players/ksm.h,
players/mid.cpp, players/mid.h, players/mididata.h,
players/mtk.cpp, players/mtk.h, players/player.h,
players/protrack.cpp, players/protrack.h, players/rad.cpp,
players/rad.h, players/raw.cpp, players/raw.h, players/s3m.cpp,
players/s3m.h, players/sa2.cpp, players/sa2.h, players/sng.cpp,
players/sng.h, players/u6m.cpp, players/a2m.cpp: initial import.
|