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
|
28.03
=======================================
* retagged app.cpp and Yamaha-Motif-Rack.idf (rj)
=======================================
* fixed build bug in app.cpp (rj)
* fixed bug with Yamaha-Motif-Rack.idf (rj)
27.03
=======================================
* 0.8.1 tagged (rj)
=======================================
* some lash fixes (rj)
26.03
* Added next/prev marker, keyboard shortcut (rj)
25.03
* Reverted fix for silent softsynths, synths were not silenced
upon [stop], gah! (rj)
* Added LASH support (patch from evermind @ gentoo) (rj)
21.03
* Added Motif-Rack idf from europeen (rj)
19.03
=======================================
* retagged dummyaudio.cpp (rj)
=======================================
* Fixed build bug in dummyaudio.cpp (rj)
18.03
=======================================
* 0.8 tagged (was 0.7.2) (rj)
=======================================
* Added idf files from linux chaos
Waldorf-Q, Yamaha-01v,Yamaha-Motif, Yamaha-P100 (rj)
05.03
* Arranger no longer performs "seek" while editing
when in ext-sync mode (rj)
* Play/Stop disabled for all when in ext-sync mode (rj)
02.03
* more work on extern sync, loop works better (rj)
* no-audio + extern sync does not hang anymore (rj)
* muse now starts even if jack is not found (rj)
* fixed a number of divide by zero errors mainly affecting zoom (rj)
11.02
* Added menu alternative for storing plugin preset (rj)
06.02
* Updated/improved swedish translation. (rj)
04.02
* Fix for softsynths going silent under load. Sometimes events arrive
with time=0, this is now handled. Why it happens is yet unknown.(rj)
02.02
* check audioDevice and _client for validity (rj)
13.01
* amd64 fix in driver/rtctimer.cpp (ws)
09.01
* Added patch for vam from mane_grotesk (rj)
07.01 * On drumtracks, there was no check for non-existing ports. If a drum
instrument was configured to output to a port other than standard for
the track, there was a segfault. Now output to non-existing ports are
simply ignored (ml)
05.01
* Added updated french translation from Intent (rj)
* Fixed crash bug in pianoroll when moving several
events outside part. (rj)
* Fixed esc key in drumeditor name edit (rj)
03.01
========================================
* 0.7.2pre5 (final!) tagged (rj)
=======================================
02.01
* Added popup when enabling rec for a track unable to create it's
wave file (rj)
2006.01.01
* Enlarged listeditor dialog (FR:1392090) (rj)
* Changed preset file extension of vam presets to .vam (rj)
* No longer translates dir name for drummaps (rj)
* Fixed crash bug when arrowing left in an empty editor (rj)
* Added F2 name edit in drum editor (rj)
* Added up/down arrowing in drum editor (rj)
30.12
* Fixed bug in detection of RTC (rj)
* Removed ugly printouts from probeing for browser (rj)
29.12
* Reawoken Organ: (rj)
- read/write current settings
- automation of all parameters
* Reawoken VAM: (rj)
- read/write current settings
- automation of all parameters
- preset dialog
28.12
* Changed audio prefetch buffer to be dynamically sized after the
jack buffers (rj)
27.12
* Fixed allocation of wave memory when reading and writing sound files
fixes problems with audio-operations (rj)
* Fixed problem when external wave editor was not correctly defined (rj)
26.12
* Race condition between threads caused lockup upon quit and load project.
Fixed by checking if sequencer is actually running before making
internal IPC call, made major difference (rj)
21.12
========================================
* 0.7.2pre4 tagged (rj)
=======================================
* Now dynamically extends parts if events continue after end and
ignores pastes before part, fixes bug:1363066 Paste outside segment (rj)
18.12
* ExtSync improvements, handles relocation of playhead during stop
(on my gear atleast), does not work during play (rj)
* fixed bug building synths (introduced during last checkin) (rj)
14.12
* fast_log10 exchanged for HEAD version (old version doesn't work with
gcc4), fixes problem with meters and sliders not working (rj)
* Added patch from Martin Habets fixes core dump problem while
building with LADCCA (rj)
* Added patch from LarryL autoconf changes to synth building (rj)
* Fixed drag in effect rack that it does not start directly (rj)
* Adapted optimization parameters for gcc4 (rj)
13.12
* Possibly fixed issue with crashes during load of projects
by putting delays between start/stop of sequencer and actual load
operation. This should make sure that the process loop is idle. (rj)
* now tries both RTC and Alsa (in that sequence) for main timer (rj)
* added checks if alsaDevice is valid (fixes several crash bugs when
muse goes zombie). Should be done in more places. (rj)
* added check if audio is really running when jack calls process.
Sometimes it's called when it should not. (rj)
12.12
* updated muse_ru.ts from Alexandre Prokoudine (ws)
11.12
* removed assert, fixes bug:1376783, deleting track with pianoroll open
crashes muse
09.12
* Added patch from Daniel Cobras regarding compatibility with 64-bit
systems (rj)
* fixed crash bug when muse tried to show plugin-guis when the
plugin did not exist (rj)
29.11
* fixed seg fault when deleting last note in pianoroll editor (ws)
13.11
========================================
* 0.7.2pre3 tagged (rj)
========================================
* Changed back to AlsaTimer (rj)
8.11
* fixed typo in share/locale/Makefile.am
7.11
* removed some dubious locks in thread start (ws)
19.10
* Fixed bug 1329537 (User defined fonts not updated) (rj)
13.10
* added emuproteus200.idf from Piotr Sawicki (ws)
* updated polish translation
12.10
* added polish translation from Piotr Sawicki (ws)
26.9
* Handle restart of Jack and restart of audio (rj)
21.8
* Added new timer classes from Jonathan Woithe. (rj)
14.8
* Solo for audio tracks improved by removing the possibility to mute Output tracks (rj)
* Implemented REPLACE for midi recording (seems to sometimes miss notes though...) (rj)
* Fixes for Appearance dialog, background pic, event display (rj)
* Marker window now toggling (rj)
* Added "raise" to more dialog windows (rj)
* compress event display in parts somewhat (rj)
* reverted pipeline again...bah...think before you change (rj)
* bounce now stops correctly (rj)
13.7
* Fixed position of import of wave files, inserted at cursor, now inserts at mouse (rj)
* Added drag&drop support to plugin racks in mixer, internal and to/from disk (rj)
* Changed the plugin pipeline depth to 5.. four is too little.. though it should be runtime extendable, wip (rj)
* Added patches from Daniel Kobras that correct errors in EditMetaDialog
and old html docs. (rj)
* Added uppercase filters to midi import (rj)
12.7
* Added quick search to LADSPA plugin dialog (rj)
11.7
========================================
* 0.7.2pre2 tagged (rj)
========================================
10.7
* Added possibility to edit selection of wave in external editor (ml)
9.7
* Added gain modification functions + misc to waveedit (ml)
8.7
* Updates to wavefile modification, implemented normalize, fade in, fade out and reverse of wavefile selection.
Removal of wavefile undo data on shutdown (ml)
7.7
* Added undo/redo handling for modifications of wavefiles + mute of selection in waveedit. expect updates. (ml)
6.7
* Added selection to waveeditor + ignore unhandled keyevents in waveeditor (ml)
4.7
* Implemented resize of waveparts (ml)
* Added Idf files by Steve D for Roland FantomXR, SRX-02 and SRX-09 (rj)
2.7
* Fixes for waveedit: offset problem fixed (no more empty waveedit windows), initial zoom value to
roughly match size of part (ml)
01.7
* Fixed bug with loading of background pixmaps (rj)
28.6
* Only send MMC continue message when in playback state when seeking (rj)
22.6
* Fixed bug 1199171 (Time change: a part does not completely fit into 4 bars), part
resize problem (ml)
21.6
* Added scrollwheel support for vertical scrolling in arranger, pianoroll and drumeditor (ml)
* Fixed bug 1056996: Multiple selection, but single paste. Possible to copy several parts in arranger (ml)
20.6
* Fixed bug 1092424: bug in reposition of instruments in drumeditor (ml)
19.6
* Added recall of last entered directory in filedialog for global and user mode + recall of
opening mode (global, user or project) (ml)
18.6
* Fix for drumtracks and part export/import
* Fix for opening Midi port/softsynth dialog when already open (now raised and set to active window) (ml)
13.6
* Added export/import of midi parts (.mpt-files), drag & drop also possible (ml)
05.6
* Fix for generating midi clock, needs field testing. (rj)
04.6
* Added fixes to AlsaTimer and DummyAudio from Jonathan Woithe (rj)
* Added fix so AudioPrefetch is initialized upon starting the sequencer,
which for instance happens when loading a song (rj)
24.5
* Added Roland E-28 idf file from Jonathan Woithe (js)
16.5
* Updated ladspa-gui for newer version of tap-reverb (rj)
15.5
* Allows for several midi devices with the same name, they are now renamed
internally so they have a unique name. This is a partial fix for synths
that do not correctly give each instance a new name. (rj)
12.5
* s1 softsynth added square wave with parameter (rj)
11.5
* Fix for bug 1198747, tests for fluidsynth and rtcap in configure.ac (rj)
* Fix for bug 1198744, added patch for reading browser setting from config
without crashing, from Philip Nelson (rj)
* Fix for bug 1188767, downmix won't stop playback until reaching the
right marker (rj)
08.5
* the instrument list in the drumeditor now has fixed width when resizing the window (finally, it made me nuts) (ml)
* added nudge event position left/right w keyboard (ctrl+left/rightarrow as default) to pianoroll and drumeditor (ml)
* added fixed length command to pianoroll, uses snap-to value (ml)
07.5
* added snap/quantize patch from Petr Mazanec (snap of notes in pianoroll+drumeditor is now controlled by
snap, not quantize) (ml)
* simpledrums: added save/load of setup to file, bugfixes.
simpledrums version is now 1.0 (go figure! ;) (ml)
06.5
* No longer crashed when enabling audio metronome when there's an aux (rj)
========================================
* 0.7.2pre1 tagged ! (rj)
========================================
04.5
* extern sync algorithm "reworked" (rj)
1.5
* simpledrums: backported fixes for channel number + memory deallocation,
fixed issue with clearing of sampledata, I hope (ml)
30.4
* fluidsynth: bankno is saved to project, switched to hbank from lbank (ml)
* Now really runs libtoolize in autogen.sh (rj)
29.4
* make sleep() in watchdog thread non interruptible to avoid
watchdog timeouts at startup (ws)
* added vst preallocation of memory "fix" (rj)
* More fixes to filenames containing dots (for instance wca files) (rj)
* Added Yamaha-PSR275 instrument file by Petr Mazanec (rj)
27.4
* fixed patch-info issue in Fluidsynth (bug 1191214) (ml)
25.4
* fixed bug w paste in drumeditor, 1189267, patch from P Mazanec
18.4
* removed file ltmain.sh; this file is now created by "libtoolize"
command in autogen.sh (ws)
16.4
* Fixed bug 1152441, filename can now have several dots (ml)
* Fixed bug 1183980: fluidsynth pitch controller wasn't given to MusE from the synth (ml)
15.4
* Added a redundant test that makes midi input work on PPC for some
reason. (will research a better fix for 0.8) (rj)
10.4
* Added an error popup when importing wave files fails. (rj)
30.3
* [DONE] midi -> edit instrument is not implemented -> remove it (js)
* [DONE] same for random rythm gen -> is not implemented -> remove it (js)
* [DONE] BUG: pianoroll editor -> tools resize wrong, they should stay on max they need instead of width fit (js)
* have to go to the dentist on 7.3.2005, god help me, i fear this will kill me (js)
29.3
* README changed some links (js)
* README added some icons to arranger (js)
* added support for german localisation (30% translated, still quite bad) (js)
* help: changed muse homepage location (js)
* more to come (js)
28.3
* Fix for overflow when importing midi (rj + ml)
6.3
* Added some fixed on dialog handling, mainly "esc" will close the widget now. (js)
* As usual added the icons which i forgot to add in the last release
* Corrected the drums icon which was a wave icon (in the dropdown, arranger)
26.2
* Added Roland-SCD70.idf from Emiliano Grilli (rj)
09.2
* fixed bug with sending start play w/ midi-clock (rj)
01.20
* Added RT support and better working timing to DummyAudio backend (rj)
* New version of MC505.idf from Wim VW (rj)
01.18
* Added script to convert MusE 0.6 songs to 0.7 format (rj)
01.17
* Midi clock sync first test, unstable (ml)
01.14
* patch from Erwin Scheuch-Heilig to allow for libtool >= 1.4 (ws)
01.10
========================================
* 0.7.1 tagged ! (rj)
========================================
* ZynAdd instrument def file added (ml)
* Now the length is updated when importing a midi file to a project,
fixes bug: 1056994 (rj)
* Disabled freewheeling for bounce functions (song.cpp:_bounce) (rj)
01.09
* Fixed bug: 1094622, MidiTransform now uses new controller types (ml)
* Fixed bug with custom plugin guis that caused them to be
uninitialized (rj)
* fixed just introduced jack graphChanged problem (rj)
* Fixed a crash issue with Thread class (only did happen when you mess around) (rj)
* Synti tracks don't crash when being renamed (rj)
01.04
* Fixed a crash problem when using several fluidsynths (rj)
* Now fluidsynth restores most memory upon deletion
(but not all it seems) (rj)
* fluid disabled when fluidsynth disabled (we should probably
disable it all together) (rj)
* Fixed mixdown clash with auto-rec enable (rj)
* Fixed crash / hang when closing connected jack apps (rj)
2005.01.02
========================================
* 0.7.1pre3 tagged ! (rj)
========================================
31.12
* Mastertrack list editor updates (add sigevent + misc) (ml)
30.12
* Insertion of tempo events in list mastereditor added (ml)
29.12
* Added support for changing time signature in list master editor (ml)
27.12
* Added support for changing tempo + position of tempoevents in list mastereditor (ml)
* Backported auto rec-enable from HEAD branch (rj)
* Added visual feedback of marker addition in ruler as well as
possibility to remove markers with shift+rmb (rj)
* Made it easier to resize the last track (bug: 1041798) (rj)
* Fixed bug: 966005, new projects are now called "untitled" (rj)
* fixed bug: 1085791, no more crashes with delete + drag (rj)
26.12
* Listedit bugfixes. Consideration of part offset used for events (ml)
20.12
* Fix for bug #1085796 (when renaming channel by doubleclicking it
in tracklist and a part is selected, pressing return opens editor for part) (ml)
17.12
* -a (No Audio) flag added, improved Dummy audio backend (rj)
* alsa timer bugfix (rj)
* added deicsonze patch from Alex Marandon to fix QT<->STL
problems on affected platforms (rj)
14.12
* Disable of fluidsynth works (rj)
* Added test for libsamplerate (rj)
* Reenabled --enable-suid-install (rj)
* Added <iostream> to simpledrums.h (rj)
* Added -no-rtti to simpledrums (ml)
13.12
========================================
* 0.7.1pre2 tagged ! (rj)
========================================
* SimpleDrums 0.2 softsynth added (ml)
12.12
* Removed -no-rtti from configuration (rj)
* Extern sync (codename: it_works_for_me__sometimes) is back! (rj)
* Changes to midi-input, events to softsynths vanished (rj)
* bounce to file now limits output to +/- 0.99 (rj)
* crash bug on missing event in sig.cpp fixed (rj)
* Changed default timer resolution to 1024 (rj)
* Applied fix from Levi D. Burton to allow midi thread to run
realtime allthough Jack is not (rj)
* New version (0.22) of DeicsOnze from Alin Weiller (rj)
9.12
* Now autogen.sh requires libtool = 1.4, 1.5 does not generate
softsynths correctly (rj)
4.12
* Added another IDF from Christoph Eckert for Alesis QSR,QS7 and QS8 (rj)
01.12
* fixed import of type 0 midi files (ws)
* Added updated DeicsOnze (0.21) from Alin Weiller (rj)
* added a branch of new icons, changed default colors of
wav/audio output track in arranger (js)
* changed changelog (js)
30.11
* Added IDF files from Christof Eckert for Access Virus,
Hammond XB and Waldorf Microwave (rj)
* backported fix from 0.8 so listing patches for synths
works again (rj)
29.11
* fix midi import: tick values of tempo/signature
and marker events are now properly converted to internal
resolution (backport from 0.8) (ws)
* some make system changes to better handle precompiled headers (ws)
========================================
* 0.7.1pre1 tagged ! (rj)
========================================
* LADCCA was incorrectly disabled in config, now fixed (rj)
* Changed URL of homepage to www.muse-sequencer.org (rj)
28.11
* Partial support for "input only" midi devices. (rj)
27.11
* Added Alsa Timer as a new timing device, RTC is still
available, though not easily selectable yet. (rj)
* Made some changes to how threads are created, for systems
where thread creation has been erratic, linux2.6 in various
configurations. Not yet verified if it makes any differance. (rj)
08.11
* Backported audio metronome (rj)
* Backported open/save dialog improvements (rj)
* Added -r parameter to allow MusE to start without RTC
not the right thing to do, but it seems necessary on PPC,
it's a start. (rj)
* Added patch from CK to allow getopt to work on PPC (rj)
02.11
* Added icon stuff to tlist.cpp (js)
01.11
* Added Alin Weiller's DeicsOnze synthesizer (ws)
* add dummy call to process() in Audio::start() to warm up caches
to avoid "JACK - zombified" during startup (ws)
23.08
* fix crash in list editor - create new controller (ws)
* increase required JACK version to 0.98.0 (ws)
20.07
* updated muse/muse.pro and share/locale files (ws)
18.07
========================================
* 0.7.0 tagged ! (rj)
========================================
* output fifo warning only if cmd line "-D" switch is set (ws)
17.07
* fixed separate handling of recorded events vs played events (ml)
15.07.
* do not start the disk helper thread in realtime mode (ws)
* check for JACK thread really running in SCHED_FIFO mode, if not
(as on my system with kernel 2.6.7 and nptl) try to set it. (ws)
* removed some exit() and abort() calls to react somewhat more gracefully to
to internal errors (ws)
14.07.
* fixed -V (no vst instruments) option (ws)
* do not save midi controller information in ~/.MusE file (ws)
* another try to fix midi loop handling: Loop len now should be
sample accurat. The loop is shifted left at most one audio
cycle to meet the requirement of loop end matching audio cycle
end. When JACK transport is in "JackTransportStarting" mode,
MusE internally continues rolling, so there are no repeated
cycles anymore (ws)
* Added message boxes when alsa and jack fails to initialize (rj)
* Disabled solobuttons in mixer (rj)
13.07.
* added new icons for the mixer solo/mute (js)
* added refresh for the solo/mute icons (rj)
* added icons for drum-/listeditor in the arranger on rightclick (js)
12.07.
* fixed typo in loop handling (ws)
* added patch from Daniel Schmidt to be able to configure
MusE without X being available (rj)
* Removed geometry data etc from templates (rj)
11.07.
* disabled midi mtc sync as its not implemented; disabled
midi sync slave modes as they are currently not working (ws)
* enabled sending midi clock (ws)
28.06.
* splitted removeTrack()/insertTrack() into three phases: pre realtime
actions - realtime actions - post realtime actions; this allows
to move memory allocations out of realtime task (ws)
* changed undo/redo of tracks: synti instances are now really deleted on
delete track (ws)
* jack connection changes with qjackctrl are now recognized by MusE (ws)
27.06.
* applied patch from John Check to add a panic button to pianoroll
editor (ws)
28.06.
========================================
* 0.7.0pre4 tagged - one more (rj)
========================================
26.06.
* Some packaging additions, icon, spec files.
(only mdk at the moment) (rj)
25.06.
* fixed midi timing bug (ws)
19.06.
* don't catch SIGCHLD, this interferes with vstInit() (ws)
* "givertcap" was not found when not in current directory (ws)
* impl. "all notes off" for organ synti (ws)
18.06.
* disabled buttons for not implemented functions (ws)
* added muse/wave/solo button in the trackinfo ;-) (js)
15.06.
* enabled some midi sync code (ws)
14.09.
* dialogs for change of drummap when converting miditrack to drumtrack
or changing port. redirection of keyevents from tlist to canvas (ml)
13.09.
* save/restore parameter for VST synthesizer (ws)
* automatic trackchange in tracklist when selecting parts in arranger (ml)
* added modify velocity to drumeditor + bugfix for modify velocity (ml)
* save/restore parameter for VST synthesizer (ws)
12.09.
* fixed backup command when filename contains spaces (ws)
* fixed midi step recording (ws)
* fixed bug in arranger: pressing enter after renaming part started
editor (ws)
09.06.
* added support for VST/windows software synthesizer (ws)
* delayed loading for software synthesizer: syntis are loaded, when
they are instantiated the first time (ws)
08.06.
* fixed --enable-rtcap configuration option (ws)
07.06.
* increased "dimension" in memory.h to make MusE work on 64 bit
architectures as requested from Simone Piunno (ws)
* added aux send for syntis (ws)
* added info box which explains why when MusE gets kicked by Jack (rj)
06.06
* added instrument definition for roland MC-505 from Wim VW (ws)
05.06
* Added backup creating save patch from Levi D.Burton (rj)
01.06
* transpose + grid patch added (alin weiller)
* fixed moving events in drum editor (ws)
* added new config option: disable splash screen (ws)
31.05
* fixed crash in pianoroll when using shortcuts for selecting
quant values when quant was set to 1 (no quant) (ws)
* fixed a crash when moving an event to tick positions < 0 (ws)
* fixed: selecting a note in pianoroll editor and changing a value
with note-info toolbar crashed MusE (ws)
* bugfix arranger: fix for selecting part -> ignore global accelerators (ml)
* bugfix for arranger selection of part above/below when using keyboard (ml)
* added pianoroll velocity variation patch (alin weiller)
30.05
* hopefully a fix for drum in & outmap-issues in midi.cpp (ml)
25.05.
* shortcuts for "arrowing around" in arranger added (ml)
* 0.7.0pre3 tagged - the last!!! I hope (rj)
24.05.
* fixed a crash on new -> load template (ws)
* FluidSynth: added support for drumpatches (equiv to midichan 10 patches) (ml)
23.05.
* exit if rtc open() fails (ws)
* changed default start behaviour to open default.med template (rj)
18.05.
* added many new/redone icons (js)
* changed aboutbox.ui for qt 3.2 compatibility
* changed app.cpp (added the icons)
17.07.
* added stereo/mono icons to mixer (ws)
* added a first version of an icon for muse and adapted aboutbox to the same.
(graphics by Joachim Schiele) (rj)
* Improved handling of browser for help system (rj)
16.07.
* Added FluidSynth fix for ignoring preset selection of soundfonts that don't exist (ml)
* fix midi import of pitch bend events (ws)
* fix pitch bend handling (ws)
* enlarge PitchLabel width so that 14 bit controller values can be
displayed without clipping (ws)
15.07.
* removed some debug messages (ws)
12.07.
* show one more measure in pianoroll and drum editor (ws)
* renamed controller name "Hold1" to "Sustain" in *idf files (ws)
11.07.
* New try at fixing help browser on all systems (rj)
10.07.
* updated muse.pro and translation sources (share/locacle/*.ts) (ws)
* list editor: implemented input mode for program change messages (ws)
09.07.
* fixed "edit - delete track" hangs MusE - bug (ws)
07.07.
* fixed routing for stereo LADSPA plugins used in mono strips (ws)
* midi import: first resolve note on/of then transform ticks to internal
resolution (ws)
06.06.
* set global automation default to "true", set midi track automation to
"read" (ws)
* enable auxSend chorusSend and reverbSend in midi mixer strip if
corresponding controllers are added (ws)
* init automationType for midi tracks (ws)
* fixed gm.idf instrument definition file (ws)
* implemented "Add New Controller" in list editor / edit controller (ws)
* save current midi controller values in *.med file (ws)
05.05.
* updated roland-XP30.idf instrument definition (Sverre H. Huseby)
04.05.
* 0.7.0pre2 tagged (rj)
03.05.
* fixed a cut/glue bug probably introduced at 24.04 (ws)
* fixed compilation of musewidgetsplugin.so (ws)
* changed splash screen handling, used QTimer instead of background thread (ws)
02.05.
* Added first version of splash screen (rj)
01.05.
* Updated LADCCA support to (almost) usable condition (rj)
30.04.
* Added zoom scaling in drum editor, same as piano roll (rj)
29.04.
* Disabled Random Rhythm Generator (rj)
* Took a stab at fixing up shortcuts (rj)
* Fixed crash bug when clicking Channel Info and there was no info (rj)
28.04.
* Added single key shortcuts for edit tools (rj)
* added shortcut for Marker editor (rj)
* and fixed some shortcut inconsistencies (rj)
27.04.
* update marker list on tempo change (ws)
* allow adding markers from the ruler with shift-click (rj)
26.04.
* added missing header file(s) (ws)
25.04.
* fixed aux processing: stereo -> mono aux (ws)
* metronom now sends proper note off events (ws)
24.04.
* deactivated clip list editor. (ws)
* after loading of template, treat current project as "untitled" (ws)
* removed data structure "Clip". All information are now in WaveEvent;
this simplifies the structure a lot and makes reference counting more
reliable. Unfortunatly this also means a new incompatible *.med file
version. (ws)
* changed reference counting of Event class; simplified and more reliable (ws)
21.04.
* fixed some synchronisation issues between mixer and trackinfo window (ws)
* fix update of mixer after removal of aux strip (ws)
20.04.
* Added shortcuts to bug reporting tool, homepage,
and updated AboutBox (rj)
19.04.
* fixed QT version check in m4/qt.m4 (ws)
18.04.
* add samplerate initialization to fluidsynth (ws)
* compilation fix: added missing include in fluid.cpp (ws)
17.04.
* File->New crashed when current project had selected audio track (ws)
15.04.
* 0.7.0pre1 * tagged for prerelease (rj)
* arranger: fast repeated pastes now works more reliable (no more stacked
parts) (ws)
* Thread(): crashed, when poll() returned more than one ready file descriptor
and the corresponding callback routine manipulates the list
of file descriptors. This happened timing dependend and only in real time
mode. (ws)
* fixed Fifo() get() (ws)
* small extension in soft synth interface (Mess()): added return values
for processEvent()
14.4.
* fixed pan range for midi mixer strips
* renaming soft synth instances + save/restore should now work
* fixed fluid "gui"
* changed CTRL_VAL_UNKNONW as it conflicts with valid
values for CTRL_PROGRAM (ws)
13.4.
* dont crash on missing LADSPA plugin (ws)
* set metronome precount default to "false". Precount is not
implemented. (ws)
* fixed crash when toggling stereo or pre buttons in mixer (ws)
* synchronize channel number in mixer/arranger-tracklist (ws)
* changed all float printf("%f") to equivalent qt-string
routines; dont localize decimal point so that the
strings can be properly parsed; this should fix some
save/restore problems in localized MusE versions (ws)
12.4
- arranger/portinfo: fix update of instrument names (ws)
- fluid synth: enable drumsets (ws)
- fixed crash on inserting meta/ctrl/aftertouch in list
editor (ws)
- fixed crash in arranger when moving mouse+Alt after
removing a track (ws)
11.4 - fixed initialization of Pan after load of new song (ws)
- fixed graphical master track editor (ws)
- fixed Qt-Version check (ws)
- small qt3.2 compatibility changes (string->toInt() conversion) (ws)
10.4 - made plugin selector remember the previous selection type (rj)
4.4 - drag & drop import of wave files (rj)
- drag & drop import of mid files (rj)
3.4 - reactivated vam synthesizer
- fixed initialization bug in s1 synthesizer demo code (ws)
- added another vertical line in drum editor
2.4 - integrated new icons (ws)
- increased required QT-Version to 3.2 in configure.ac (ws)
1.4 - added vertikal line in track list as suggested by Joachim Schiele
- fixed synchronisation issue between mixer and tracklist (changing midi channel can
add/remove mixer strip) (ws)
- Changed pan range to -1 +1 (rj)
- added new icons from Joachim Schiele (not integrated) (ws)
- Support for showing only selected plugins in plugin dialog (rj)
31.3 - Added various compile fixes needed by debian (rj)
29.3 - Updated mc303 instrument file from Conrad Berh�ster (rj)
25.3 - bugfix for pos increase/decrease shortcut (ml)
24.3 - bugfix for mtscale redraw area when window is scrolled left
- bugfix for arranger shortcuts (ml)
23.3 - added position seek to drumeditor + arranger.
- increase/decrease pitch of selected notes in drumeditor with ctrl+up/down
- added quantize shortcut keys (1-8) in drumeditor (ml)
21.3 - added shortcut for pitch increase and decrease of sel notes, in pianoroll (Ctrl+Up/Down)
- moved shortcut handling for pianoroll + drumeditor to EventCanvas
- leftmost note selected when opening proll/drumeditor (ml)
16.3 - added shortcut for iterative quantize in p-roll. added shortcuts for
selection of notes in p-roll and drumeditor: left/right arrows moves
selection, holding down shift adds to current selection (ml)
- bugfix, moved blocking of signals on startup to exclude loading of project since
a bunch of widgets didn't get updated (ml)
12.3 - bugfix for menu initialization of "add track"-menu shortcuts (ml)
- added some regular 7-bit controllers to Fluidsynth (ml)
6.3 - Fluidsynti chorus operational again, controlled by NRPNs and
automatic gui-update here too. (ml)
- Fluidsynti reverb restored. Reverb is now controlled by NRPNs.
Automatic updates of gui when controller-changes occur. Unloading
of soundfonts restored. (ml)
4.3 - Fluidsynti playback restored. Gain restored. (ml)
3.3 - Fluidsynti major rewrite, not fully functioning though (ml)
- fixed crash on reload song with open mixer
- fixed crash on saving *.med: dont save aux values for channels
which have no aux send (like aux strips)
- remove empty record wav files on MusE exit
- fixed crash on undo controller editing (ws)
28.2 - more icons from Joachim Schiele (ws)
- fixed crash with mouse wheel events in arranger track list
- fixed some routing related crashes
25.2 - show mixer strip in trackinfo window for audio tracks (ws)
24.2 - compatibility patch to read midi tracks from old 1.0 *.med
files (ws)
- implemented quick input routing from jack (ws)
- added some new icons form Joachim Schiele (ws)
23.2 - implemented quick output routing to jack; some routing
fixes (ws)
22.2 - added instrument map for yamaha PSR 530 keyboard from
Lalit Chhabra (ml)
- misc compilation fixes from Joost Yervante (ws)
21.2 - added drum map for Yamaha DX200 from Joost Yervante Damad (ws)
- "quick routing" buttons in mixer (ws)
17.2 - install musewidgetsplugin.so in PREFIX/lib/muse/qtplugins/designer
and add this path to qt library path in application (ws)
16.2 - trackinfo geometry management changes (ws)
14.2 - added volume controller to organ, so that the organ
synthesizer volume can be controlled in the mixer midi strip (ws)
13.2
- optimized "organ" software synthesizer: precomputed frequency
tables, integer envelope generator based on bresenham algorithm;
added "velocity" switch; (ws)
- changed VAM synthesizer for new interface (ws)
12.2 - controller movements in software synthesizer gui's are now
send as midi events to MusE and can be recorded/replayed/edited
(currently only working for "organ" synti) (ws)
- changed software synth interface (again) (ws)
11.2 - expanded trackInfo by default (rj)
- added some graphics to trackInfo :) (rj)
- changed "White" to "Default" (still white though) (rj)
- fixed trackInfo updating for tracks without their own trackInfo (rj)
- added lousy fix to update trackInfo when a track is deleted.
it's lousy because it's updating the trackInfo even though the
removed track wasn't highlighted, can place you in a tight spot
at times. I added it anyway because it removes a crash problem.
a better fix would be preferable. (rj)
- fixed mouse wheel functionality on knobs and sliders in mixer. (rj)
8.2 - propagate track name changes to mixer (ws)
- enforce unique track name when user renames tracks (ws)
- implement one to many audio routing (ws)
- fixed bug in route dialog refresh after inserting new strip (ws)
- fixed aux send volume (ws)
4.2 - added missing activate() to LADSPA plugin initialisation.
This fixes crashes with some plugins (plugins who use activate()
to allocate memory) (ws)
-fixed user definable LADSPA guis using QT-designer; added another
example *.ui file for "Toms'Audio Plugins" TAP-Reverberator (ws)
1.2
- logarithmic values were initially wrong for spin boxes in
LADSPA guis (ws)
- On-the-fly-change of shortcuts in Listeditor, Drumeditor. Added selection
shortcuts to Drumeditor (ML)
- Added on-the-fly-change for shortcuts in pianoroll (connected to
configChanged-signal) (ML)
30.1 save geometry of LADSPA plugin guis;
fixed missing mixer refresh after adding an auxSend strip (ws)
29.1 mixer strip automation types OFF, READ, WRITE and TOUCH
implemented; automated controller so far: volume, pan (ws)
27.1 more code for automation;
better reference counting for audio Clip; Clips with zero
reference are not saved in *.med file anymore (ws)
26.1 - removed obsolete driver/midirawin* (ws)
25.1 - removed obsolete raw midi devices & serial midi; all devices
are now handled by ALSA (ws)
24.1 - changed "Configure" to "Settings"; changed "Display" to "View"
for better standard compliance (ws)
23.1 - enabled controller editing in midi list editor (ws)
19.1 - added new dir/lib libsynti to collect common code
for all software synthesizer (ws)
18.1 - ported VAM software synthesizer to new MESS interface
(not complete) (ws)
- events send from synth gui are not echoed back anymore
17.1 - drumedit: changed "keyFilter" to "drumInstrument"; use
it to handle drum instrument specific NRPN controllers (as defined
in XG standard (ws)
- move drum instrument select status from drumMap to drum editor.
This allows for independent selections in different drum
editors. (ws)
- extend midi controller definitions in *.idf files for
drum instrument specific NRPN controllers (controller number
contains pitch value) (ws)
16.1 - Added small fix to editctrlbase.ui to make it compile (RJ)
- Updated various revision info in README (RJ)
15.1 - Corrected appearance of buttons in Metronome window (FN)
9.1
- "record" button in midi ChannelInfo; pressing this button
inserts changes in hbank/lbank/program/pan/volume as
controller events into song
- pianoroll editor: new "multi select mode": If more than one
event is selected, the event info spinboxes are set to zero.
Entered Values are interpreted as offsets and added to all
selected events.
- some fixes and performance enhancements to "MidiTransformator" (ws)
- fixed saving of drum tracks (ws)
8.1
- changed arranger shortcuts + shortcut-configurator to use configChanged; all arranger menu shortcuts
redefinable on-the-fly. most menu options configurable (ML)
- now possible to toggle mixer window (ML)
- changed Ctrl+A in arranger to be used for select all instead of "Save As" for the sake of uniformity (ML)
5.1
- new config (Config->GlobalSettings) option:
- start with empty song
- start with last song
- start with configured init song
2.1
- smf type 0 export (ws)
31.12
- midi export; fixes to midi controller handling (ws)
30.12
- added dynamic shortcuts for all menu options in the arranger (will hopefully
work fine when config is loaded before menus are built) (ML)
- added check and prevention of conflicting shortcut sequences inside
respective categories, global shortcuts and misc "reserved"
shortcuts (ML)
- capture dialog grabs/releases keyboard (ML)
26.12
- faster update of mixer (ws)
22.12
- added dummy audio driver; this permits running MusE
without suid root and without RT priority when started
with "-d" option; this is for debugging & to get
normal core dumps (ws)
20.12
- Reverb + chorus grayout-problem in fluidsynthgui removed. Some QT-designer files changed to 3.2 (ML)
- More shortcut updates: Added a dialog for capturing shortcuts (ML)
18.12 (ws)
- "declicked" s1 demo synthesizer
- make organ controller values persistent
- fixed integer overflow in organ synti controller values
17.12 (ws)
- new: mouse wheel events for track list values
- track colors in tracklist configurable in "appearance settings"
- more configuration options in "appearance settings"
part colors are now configurable
- ~/.MusE now contains only configuration data; this
settings are not replicated in *.med files any more
10.12
- more shortcut stuff in the dummy shortcut config window (ML)
- new "load song" option: load all/load song data only (omit config data) (ws)
- new "File" function: load template; this function initializes current
song with another song (template)
- new option while importing a midi file: replace/add to project
9.12
- More shurtcut stuff + dummy config dialog (ML)
2.12
- Bugfixes in pianoroll for insert at current location and seek before
beginning of song (ML)
- fixed crash on "New" or loading new project
(ws) - "bounce to track" now works "faster than realtime" with JACK
freewheel mode (JACK 0.91.0 cvs required)
- mixer automation for gain & pan; some basic functions
- preparation for adding imported midifile to current project
1.12
- More shortcut preparations (ML)
27.11
- Added mouse wheel handling for knobs and sliders
shift modifier available for extreme slow motion. (RJ)
25.11
- drummapping for recorded events (not heard on record playback echo yet) (ML)
- misc updates& fixes for track handling (ws)
- removed activity column in tracklist; will be replaced by
mixer meter display (ws)
- midi record flag can be set again, enabling midi recording
24.11
- Added first steps for uniform handling of shortcuts (ML)
23.11
- some mixer updates(ws)
22.11
- fixed software synth handling; looping is only possible
on segment boundaries (ws)
20.11
- Bugfix for drummaps and keyfilter in drumeditor (ML)
- apply drum map when importing midi (ws)
- retain track ordering across save/load (ws)
- wave files in the project directory are stored with
relative path, all others now with absolute path (ws)
16.11
- Map outputted drumnotes according to drumMap index (Mathias Lundgren)
14.11. (ws)
- JACK transport interface implemented
- finally removed ALSA driver; JACK now required;
- default to RT-mode on start (-R option is removed); -d (debug)
starts without RT
12.11. (ws):
- removed midi mixer; first code to integrate midi mixer
into audio mixer; mixer moved to pulldown menu "Display"
- mixer strips are handled like tracks in arranger (prepare
for automation)
- track type cannot changed anymore in arranger track list;
also removed double click creation of tracks which makes
no sense anymore
- integrated "atomic" patches from Daniel Kobras
09.11. - audio routing fixes; mono/stereo switching for input/output
strips should now work; audio recording to tracks (ws)
08.11. - aux send audio mixer strips (ws)
- Arrowing up and down update in arranger (Mathias Lundgren)
07.11. - Fluidsynth compile problem w. Debian/qt/stl/gcc fixed (Mathias Lundgren)
- "Double undo"-bug fixed in Pianoroll (Mathias Lundgren)
04.11. - many changes to audio mixer and audio routing; implement
framework for new audio features (ws)
31.10.
- museProject set correctly when loading song on startup (RJ)
- save dialog added when adding first wave track (RJ)
- load/save of wave files handled with relative paths (to project) (RJ)
- Updated swedish translation (Robert Jonsson)
- Merged softsynth and midiconfig dialogs as in old tree(Robert Jonsson)
- Some museProject issues(Robert Jonsson)
- updated new midi controller implementation (ws)
29.10. (ws)
- update soft synthesizer organ/fluid/fluidsynth; extent MESS
interface
- update from 0.6.2 (Mathias Lundgren):
- Various drumeditor-related updates including: Horizontal splitter
offset stored. Fixed length command added (Alt+L). Bugfix for selection
of events inside/outside locators. Initialization of drummap doesn't overwrite
entries loaded from project file.
- Alt+P sets locators to selected notes in PianoRoll and DrumEditor
- CTRL+Leftclick on an item in the Arranger, PianoRoll or DrumEditor selects all
parts/notes on the same track/same pitch
- Pressing Enter in the Arranger now opens the appropriate editor for the
part (Mathias Lundgren)
- The midithread now maps keys on a drumtrack according to the drummap.
- Cursor up/down (Mathias Lundgren)
- currently selected drum (Mathias Lundgren)
- fixed compilation error in givertcap.c (andrew)
- removed iiwu soft synth temporarily from compilation until
ported to new "mess" interface
- added missing file ltmain.sh
- create new cvs at sourceforge.net
-------------
- removed obsolete score editor
- changed midi controller handling
- new process structure
- redesign of "mess" software synthesizer; removed alsa
- new midifile import/export
- fork from cvs; new file structure
0.6.2(omuse):
- added first version of (incomplete) french translation from
- removed stk based soft synthesizer + share/rawwaves
- removed sound font
- fixed bug in midi recording when recording starts with a note off;
also the recorded part len was miscomputed when the recording ends with
a pressed key (missing note off event)
- added new allocator for SEventList and MPEventList (memory.cpp, memory.h)
to make sure the midi RT-thread does not call malloc/new/free/delete
- added misc build patches from Daniel Kobras
- make selection of alsa audio device an command line argument
(-A xxx default: hw:0)
- fixed "edit->select->allInLoop"
- fixed track height after renaming track
0.6.1:
- fixed "Cakewalk Style" display in arranger
- added russian translation from Alexandre Prokoudinek
- arranger: tracks are now independent vertical resizable
- arranger: implement part rename from popup menu
- arranger: show part name in parts in addition to events
- audio mixer: interpret min slider position as "off"
- audio mixer: added value entry for pan (Robert Jonsson)
- audio: some routing fixes
- audio mixer: enable data entry for slider label
- ladspa plugin gui: replaced value label with data entry
to allow numerical entry of parameter values
- pianoroll: added undo/redo to edit menu + accel. keys
- ctrl editor: implemented changing (painting) of pitch
events
- added macros for big endian machines in midi.h
- added spain translation (Albert Gonzales)
0.6.0:
- added swedish translations (Robert Jonsson)
- fixed editing of pitch events in list editor
- fixed crash in score editor
- check tempo entry values; dont allow invalid values which could
crash MusE
- fixed not functioning "Abort" button in MidiTransform dialog
- fixed Ctrl-editing in drum editor
- fixed "Group" audio routing
- fixed editing of pitch values in parts not beginning at tick zero
- fixed "unexpected EOF" after dragging of events in midieditor
- fixed cut&paste in midieditor
- implemented deleting multiple selected parts in arranger with Del key
- fixed audio pan pots in mono->stereo conversion
- changed iiwu to fluidsynth (thanks to Helio Chissini de Castro)
- new popupmenu: click with right button in empty tracklist
- LADSPA plugin guis are generated at runtime from qt-designer *.ui
(xml-)files; testfile is "freeverb.ui" for freeverb plugin;
- added "Slider"+"DoubleLabel" to musewidgetsplugin to make widgets
available in QT-Designer
- renamed poseditplugin.so to musewidgetsplugin.so
- fixed midi ctrl editor
- sparate sync device into txSyncDevice and rxSyncDevice. RxSyncDevice
can be configured to "all".
- use <asm/atomic.h> macros for atomically inc/dec count in lockfree
Fifo implementation
0.6.0pre8:
- prepared for internationalization:
- created muse.pro
- removed all implicit type conversions char* -> QString
- added several missing translations tr()
- Part text is now colored depending on background (FN)
- fixed "bounce to file" fifo handling
- disable transport buttons in slave mode
- calculate correct size for new part after midi recording
- fixed crash when reloading song while audio mixer is open
- implemented "bypass" function for LADSPA plugin gui's
- changed obsolete qt header file names
- implemented external midi instrument definition files (*.idf)
(examples are in */share/muse/instruments)
- implemented moving plugins up/down in effect rack
- fixed: renaming wave track switched track to mono
- implemented LADSPA "LOGARYTHMIC" and "INT" hints
- disable record button for tracks with no input routed to
- implemented LADSPA "TOGGLED" port as QCheckBox in plugin gui
- changed algorithm for zeroing denormalized floats in freeverb
plugin; now it works again for gcc3.x and optimization flags
turned on
0.6.0pre7:
- prevent creation of empty wave files when switching the
record button in audio mixer on/off; wave files are only
preserved when you actually record something into it
- made plugin guis persistent
- fixed scissor operation on wave parts
- added missing code for "bounce to file"
- fixed "bounce to track"
- removed/changed obsolete qt code
- update for current iiwu cvs
- fixed initialisation bug in wave editor
- dont link iiwu libs static
- (bh) added ladcca support
- fixed midifile export
- arranger, pianoroll editor, drum editor: tool popup menu
with right mouse button click
- update iiwu to current cvs version
- implement trackinfo patch names for iiwu
- fixed "appearance settings"
- added keyboard shortcut "Del" to delete events in pianoroll
and drum editor
- "Asterisk" key in keypad now toggles record mode
0.6.0pre6:
- fixed len of new created event in pianoroll editor
- extend font selection in "apearance settings"
- Added shortcuts for "Select All", "Unselect All" and "Invert
Selection" in PianoRoll editor (FN)
- Fixed Event coloring and shortcut ("e") key (FN)
0.6.0pre5:
- fixed midi seek & tempo map
- implemented global tempo change
0.6.0pre4:
- fixed tempo handling
- pianoroll editor/drum editor: fixed changing of note position
- transport: some geometry/font changes; time signature can now
be changed by mouse wheel
- fixed glue/scissor tool
- catch sigchld signal again so we know when a softsynth gui exits
0.6.0pre3
- fixed drawing of drum parts in drum editor
- on reading *.med files reject events which dont't fit into part (more robust
handling of defective med files)
- remove also synth gui when removing synth
- implemented some of Frank Neumann's usability suggestions:
- a "Copy Part" sets the current location marker after the marked part
- "Del" removes part if a part is selected instead of whole track
- new Keyboard Accelerator "C" toggles metronome click
- removed channel info for selected notes in pianoroll editor and
drum editor
- navigate between parts with left/right buttons in arranger window
- implemented changing note position for selected note in "note info" toolbar
- fixed: changing "loop" flag in transport window does not change "loop" flag in
other windows
- call pcm_wait() in alsa driver with sane values
- fixed: after load song seq did not run with rtc
- filenames for audio recording to tracks are now generated
automatically; every recording goes into separate file
- (bh) updated build system to use automake 1.7
- fixe Midi->DefineController "Cancel"
- new function: Midi->DefineController load+replace and load+merge
- fixed MFile write: close() was missing; this fixes a.o. saving of
midi controller sets
- make organ synth aware of project directory for saving presets
- fixed load/restore presets for LADSPA plugins
- changed organ default values for envelope generator
- more fixes for alsa driver (less xrun errors)
- lokal allokator for soft syth midi events implemented
- enable sample rates != 44100 for iiwu (JACK has 48000 default)
- cleanup soft synth instantiation: call alsaScanMidiPorts only one time
- small audio buffer handling optimizations
- some thread cleanups
- fixed audio mixer geometry handling
- another fix for RT thread handling in iiwu
- fixed recording of pitch events (not tested)
- load iiwu sound fonts in a background helper thread to
avoid being thrown out by JACK
- fixed RT thread handling; now muse+iiwu+jack works
- honour LADSPA default hints for controller ports
- removed some restrictions for LADSPA plugins
- fixed tempo entry in transport window
- added high priority watchdog process to avoid system freezes
- updated "iiwu" synth to use peter hanappes libiiwusynth
iiwu now remembers last used sound font
- fixed cut&paste for midi parts
- fixed cut function for midi parts
0.6.0pre2:
- audio mixer: reset meter on mute
- changed input routing to allow monitoring while recording
- removed superfluous second init() call for soft syntis
- fixes for mono/stereo conversion
- ensure all wave files are properly closed on exit
- fixed segfault on second cliplist open
- fixed wave part split function
- fixed ALSA/JACK configuration bug
- event time positions are again stored as absolute time positions
to enhance compatibility with older "*.med" files
- changed panic button: instead of sending lots of note off
events only "all sound off" controller events are send for all
ports/channels
- fixed error on importing midi files when there are more
than one track assigned to a midi channel
- found another memory corruption bug in sysex handling
- fixed precount in metronome
- space key again stops play/record
- fixed stop/play in transport window
- prohibit change of mono/stereo for input strip
- convert mono/stereo on the fly for wave parts
- fixed crash when pressing play in empty song
- audio loop fixed
- _midiThruFlag not always initialized
0.6.0pre1:
- attached midi mixer again
- fixed metronome: loop mode, measure/beat configurable
- moved part colorisation into part popup menu
- added global midi pitch shifter in addition to track pitch shift; this
allows for simple pitch transforming the whole song. Drum tracks are not
pitch shifted.
- fixed fatal error in soft synth handling resulting in sporadic
core dumps
- removed sf directory (sound file stuff) and replaced
it with the real thing: libsndfile 1.0.0
- removed bogus kde stuff: kde.h onlyqt.h desk.h
- JACK Audio support
- AUDIO & ALSA now required
- fixed memory corruption with sysex events
- simplified organ soft synth parameter handling
- removed illegal controller message optimizations
- implementation of "panic" button
- first instantiated synti did'nt show up in port list
- size of resized drum and pianoroll editor windows are now remembered
- fixed crash when configuring null audio device
- removing soft synth instance did not stop midi thread; alsa client
was not removed
- (bh) lots of buid system changes and general cleanups
- (bh) removed the use of the UICBASES make variable; .ui files can
now be added straight into _SOURCES make variables with the new
SUFFIXES support in automake 1.6
- (bh) upped minimum automake version to 1.6
- (bh) removed the use of the MOCBASES make variable; header files that
need to be run through moc are now detected automatically
- (bh) new iiwusynth softsynth
- (bh) removed support for oss and alsa 0.5
- clone parts implemented (also called "alias parts" or "ghost parts")
(dragging part with Alt-Key pressed in opposit to Shift Key which
produces a normal copy);
needed many internal changes; hope not to much is broken
- mastertrack: new spin widget for changing midi signature
- fixed midi thread initialization after loading new file
- stopped sequencer before loading new file; this should fix occational
core dumps on New/Load/ImportMidi
- some cleanups with file load/save operations
- Config->MidiPorts->otherRaw (device name pulldown): enabled OpenFile
Button for DevicePath field: At least current Qt can now handle devices.
- implemented:
- structure pulldown menu:
- global split
- global cut (mastertrack cut not implem.)
- global insert (without m.t.)
- implemented part mute
- added pitch transposition to pianoroll widget keyboard (Tim Westbrock)
- Save(As) behavior patch from Tim Westbrock
0.5.3:
- updated stk library to version 4.0; adapted stk synthesizer
- added SECURITY advice from J�n Nettingsmeier
- several compilation & portability fixes from Takashi Iwai
- fixed keyboard entry in pianoroll editor
- midi now runs synchronous with audio
- midi record time stamps now again synchronous to play position
- fixed trackinfo geometry (hopefully)
- pianoroll: fixed endless loop if record was pressed
without any mididevices configured (reported by Ola Andersson)
- default to english help if help for $LANG not available
(Ola Andersson)
- detect misconfigured ALSA system (Ola Andersson)
- updated demo app "rasen.med" to current xml format
0.5.2:
- fixed: rtc clock resolution settings in Config->GlobalSettings
- fixed: crash on second start of Edit->Marker
- more consequent implementation of -a (no audio) command
line parameter: no softsynth and LADSPA plugin loading;
disable audio menu
- fixed sending spurious midi controller settings on startup
when track info is active
- first code for "random rhythm generator" port from JAZZ++
- fixed start offset of midi recording
- pianoroll editor: fixed selection update
- appearance setting "font size" now persistent
- does not crash anymore if no ALSA system found. (ALSA is still
needed to compile MusE)
- fixed: multiple recordings: clear events form first recording
in record buffer
- fixed: crash when removing last track with open
trackinfo
- (bh) added beginnings of alsa midi patchbay
- changed suid handling: now MusE runs with normal user uid
and switches only to root uid for some special operations
- fixed mixdown file output
- fixed lock on startup when wave file was missing
- arranger: open tracktype pulldown with left mouse click
(was opened on right click)
- arranger: don't scale pixmap symbols
- added share/rawwaves to cvs repository (needed by stk synthi)
- changed software synthesizer interface "mess": moved more
common synth functionality to "mess.c"; changed synti's to new
interface
- removed obsolete "short name" in controller type dialog
- CtrlCanvas: always draw location marker on top of grid
- fixed: TrackInfo: velocity
- fixed: alsa midi: "pitch change" interpreted as "channel aftertouch"
- fixed some midi controller bugs
- implemented new parameter save/restore interface for soft
synthesizer (applied to "organ")
- (ws) fixed lost controller events on midi import
- (ws) fixed crash when removing soft synth in use
- (ws) appearanceSettings: changing font size now works better
- (Bob) files now include "config.h" instead of relying on -DALSA,
-DALSACVS, -DINSTDIR and -DAUDIO
- (Bob) Added 'delete preset' button to vam's gui and made it
remember what preset file it loaded
- Mess: added new class MessMono() which implements some
monophone synthesizer features. This is used in the
simple demo synthi s1
- if you try to exit MusE and abort this process, MusE was
left in an unusable state
- loop end was not calculated correct; event at loop end
was played
- muse now again stops at end of song in play mode
0.5.1:
- fixed crash: SaveConfig after Config->SoftSynth->AddSoftSynth
- changed default audioSegmentSize from 256 to 512
- eliminated message: "input type 66 not handled"
- SoftSynth gui was startet with uid root
- save project: warn if file open fails
- removed trace message "unrecognized event 42" (Sensing Midi Event
from external keyboard). Anyway MusE does not handle midi sensing
events.
- changed geometry for trackInfo panel
- more code for 14 bit controller events
- install "rawwaves" for stk synti into right place preventing
crash on start
- fixed another crash when load soft synth configuration
- fixed Midi Position Label (was -1 beat/measure off)
- fixed problem with lost note off events
- generate "note on" events with velocity zero instead of
"note off" events
0.5.0:
- pianoroll editor: caption is changed when current part
changes
- new software synthesizer adapted from:
STK: A ToolKit of Audio Synthesis Classes and Instruments in C++
Version 3.2
By Perry R. Cook, 1995-2000
and Gary P. Scavone, 1997-2000.
http://www-ccrma.stanford.edu/software/stk/
- added presets to "Organ" software synthesizer
- changed midi routing for software synthesizer:
- controller changes from gui can be recorded
- new midi thread implementation
- speaker button in pianoroll editor implemented:
if on events are played if clicked
- new Menu: Midi->InputPlugins
- demo plugin "Transpose"
- moved Config->MidiRemote to Midi->InputPlugins
- moved Config->MidiInputFilter to Midi->InputPlugins
- moved Config->MidiInputTransform to Midi->InputPlugins
- as usual some bug fixes of old and new bugs
- master editor: fixed: locator bars sometimes invisible
- master editor: new tempo spin box to change tempo at current
position
0.4.16:
- new software synthesizer adapted:
"Organ - Additive Organ Synthesizer Voice" from David A. Bartold
- new simple demo Synthesizer S1
- remove the hardcoded qt path "/usr/qt3" (0.4.15)
- fixed many bugs
- new: implemented line draw tool in controller editor
0.4.15:
- qt3.0 now required
- many gui/widget changes
- fixed segfault when pasting wave parts
- changed (again) default magnification in wave-view
- implemented prefetch thread for playing audio files
- fixed: iiwu did not play with ALSA 0.6
- fixed: handle audio underruns for ALSA 0.6
0.4.14:
- some makefile and compilation changes
- audio play: noise between audioparts during playback
- dont stop at end of song when "loop" is active
- default magnification in wave-view set to 1
- fixed a audio route initialization bug
- new metronome configuration: precount configuration added
0.4.13:
- avoid "disconnect error" on startup
- wave view: y magnification now persistent
- small gui enhancements to reduce flicker
- make install: now creates gui dir
- implemented 8 bit wave input format
- fixed another source of audio crashes
0.4.12:
- audio play: mixing buffer was only partly cleared resulting
in random noise
- fixed: core after removing soft synth instance
- set default master volume to 1
- fixed some audio routing bugs
- drumedit: added missing display update after drum map loading
- drumedit: fixed: when loading external drum map, velocity values
got zero
- drumedit: fixed: core some time after loading external drum map
0.4.11:
- iiwu: in GM-mode dontt allow drum channel program changes;
also ignore bank select messages
- set GM-Mode resets synth
- some changes in drum channel handling
- substantial changes in audio implementation
- reimplemented audio configuration
- miditransform: val2 transforms fixed
0.4.10:
- iiwu: implemented sustain, ctrl:expression
- iiwu: changed sync audio/midi; this fixes some timing issues
- iiwu: fixed: core when loading new sound font while playing
- split RT thread into separate midi & audio thread
- fixed some bugs: crash on midi recording
- some new functions in pianoroll editor
- added/integrated Tommi Ilmonens "givertcap"
- iiwu: some fixes for ALSA 0.9beta
- arranger: voice name popup in channel info works again
0.4.9:
- fixed some memory leaks
- before loading a new song all synthesizer instances are
now removed
- reorganized installation:
- there is a toplevel installation directory
(default /usr/muse); the environment variable MUSE
points to this directory
- architecture dependent files go into
$(MUSE)/lib, architecture independent files
into $(MUSE)/share
- MidiSync: MC ticks are now also send in stop mode
(if configured)
- after "Start" is send, sequencer starts on next
midi clock tick
- iiwu: fixed core dump on save if no soundfont loaded
- iiwu: high resolution buffer size independent midi event
processing
0.4.8:
- faster display updates
- some changes for better compatibility with different
environments (compiler, lib)
- fixes for ALSA 0.5.11
- fixed core dump while removing soft synth instance
- fixed some bugs with iiwu+gui
- fixed: TransportWindow: tempochanges while masterflag is off
- fixed: all tempochanges are now saved in songfile
0.4.7:
- ALSA 0.5.11 compiles again
- MESSS gui interface, first try:
-every midi instrument can have an associated
GUI (currently only impl. for MESSS soft synths).
The GUI is startet as a separate process connected
to the midi instrument. The gui sends midi commands
(sysex) to stdout. This midi data stream is connected
to the midi instrument port.
- test implem. can load sound fonts into iiwu synthi
- fixed a bug in loading big sound fonts
- waveedit: waveform display works again
- some iiwu changes
0.4.6:
- completed midi input architecture: every midi track has now
assigned input port+channel. Channel can be 1-16 or "all".
This allows for routing of different midi channels to
different tracks while recording.
- changed max number of midi ports from 8 to 16
- fixed serveral bugs iiwu software synthesizer
- fixed compilation problems with some ALSA versions
- fixed: changing track name changed record flag
- fixed: remove midi editor if associated track is removed
- fixed: initial state of solo button in arranger
- fixed: hard to reproduce core while deleting track
- new command line option to set real time priority
- max number of midi ports is now 16
- audio recording from master to file now works:
- configure Audio->MixdownFile (only wave/16bit)
- switch on record button in audio mixer master strip
- play
- fixed: graphic master editor: missing display refresh
after signature change
- changed midiThruFlag: removed from Config->MidiPorts;
"midi thru" now is associated with a track, if set all input
to that track is echoet to track port/channel
0.4.5:
MESSS: (MusE Experimental Software Synthesizer interface Spec):
A software synthesizer is implemented as a dynamic
loadable library (*.so file) with two interfaces to the
outside world:
- a LADSPA interface for audio output
- a midi sequencer interface registered to ALSA
MusE searches all available synths and presents a list
in Config->SoftSynthesizer. To use a synthesizer you have
to create an instance. Several instances of an synt can be
created and used. Every instance creates
a) an alsa midi sequencer port (look at Config->MidiPorts)
b) a new strip in the audio mixer
As a demo i ported a stripped down version of the iiwu
software synthesizer (http://www.iiwu.org) to MusE.
Setup info is in README.softsynth
0.4.4:
- fixed cakewalk style event display in arranger
- track comments are handled as 0xf text meta events in
midi files
- fixed: follow song in pianoroll/drumedit (daniel mack)
- fixed: refresh in list editor
- implemented 14 Bit controller in list editor
- new patch form Takashi Iwai enables MusE to compile
with ALSA 0.9.0beta5 and current cvs version
0.4.3:
- new: Config->MidiInputTransform
- new: comments for tracks: click with right button on track
name in arrange window
- fixed: score editor sometimes eats up all memory on start;
machine was unusable for some minutes until muse crashes
- fixed some other smaller bugs
- patch from Takashi Iwai for latest (cvs-) ALSA
- fixed: score postscript generation (printer & preview output)
0.4.2:
- added few missing display updates (bugs introduced
with 0.4.1 drawing optimizations)
- pianoroll editor:
- fixed: edit->DeleteEvents
- drum editor:
- implemented: edit->DeleteEvents
- use different cursor shapes while using
Glue- Cut- and Rubber tools
0.4.1:
- some small Changes for compiling MusE with gcc 3.0
- track info values (transposition, velocity etc)
are now applied when exporting to midi file
- better geometry management for ctrl panel
- pianoroll editor / drum editor now allow for more than
one ctrl panel
- new: load/save midi controller sets
- automatic creation of midi controller sets on
midi import
- new: active(used) midi controllers for current
parts in editor window are now marked in controller list
- fixed: parts in open editors are not restored correctly
- many drawing optimizations; scrolling is now much
faster/smoother
0.4.0:
- input configurable for every track
(you can record from more than one midi input device
to different tracks)
- you have to switch on the "record enable" flag for
every track you want to record to
- Note "h" is now called "b" unless you set
the environment variable "LANGUAGE" to "de"
- Changes from Daniel Mack:
- bigtime window now shows hour:minute:sec:frame
- configurable snap grid for arranger
- configurable font size
- again "tick underflow"
0.3.20:
- "bigtime" widget from Daniel Mack
- fixed global accelerator keys f11/f12 (toggle transport &
bigtime window)
- fixed: score editor: try placing notes in the right margin of the
last row gave core dump
- score editor: different cursor shapes
- new try on missing midi sync ticks (producing "tick underflow"
trace messages)
- score editor: some small enhancements
0.3.19:
- several small bugfixes from Daniel Mack
- fixed "make install"
- if you have trouble compiling ALSA audio:
change "AUDIO = yes" to "AUDIO = no" in make.inc
- some fixes/enhancements from Brian K:
- fixed: score editor: no more "EVENT not found" during subsequent
edits of a selected note
- scrubbing with rubber tool in score editor
- new part appearance option
0.3.18:
- fixed: Export Midifile
0.3.17:
- simple audio recording
- midi sync slave: received "start" did not reset pos to tick 0
- fixed several bugs in screen update and synchronisation between
different midi editors
- new: Configure->Appearance dialog from Daniel Mack
0.3.16:
- "follow song" now works in both directions
- MidiTransformator: implemented missing "Copy" and "Extract" functions
- fixed: reset sustain at stop only for channels which really had sustain
set
- fixed several bugs in midi sync code; needs more testing
- received "set song position" from alsa midi driver now
handled in sync slave mode
- transport buttons are now disabled in "external midi
sync" mode
- fixed: do not send midi "start" "stop" "continue" etc. as sync slave
- fixed: several small bugs i cannot remember
0.3.15:
- fixed: some typos in "MidiTransformator"
- fixed: core at end of midi recording from external
sequencer as sync slave
- replaced midi "continue" message with "start"
when running as midi sync master
known bug: midi clock output only if seq plays,
should be send always even if seq stops
not implemented: cannot change tempo as sync slave
0.3.14:
- fixed: core: typo in "undo add track"
- fixed: core: "undo remove event"
- selection of events is now a global attribute: if you select
an event in an editor, the same event is selected in all
open editors
- new: Midi Transformator (look at edit->MidiTransform)
(not all operators and operations are implemented yet)
0.3.13:
- fixed: TimeScale was wrong when using signature changes
- fixed: enforce left marker <= right marker
- new: mono wave tracks
- more usable LADSPA plugins to play with
- several small changes/bug fixes
0.3.12:
- fixed: synchronisation of tempo/signature changes with sequencer rt-thread
- fixed: track parameter were added again and again in loop mode
- new: tempo/signature changes undo/redo
- new: midi "transpose" function from Daniel Mack
(Arranger: edit->midi->transpose)
0.3.11:
- fixed: fixed serious bug in wave file handling
- simple audio play with ALSA 0.9.x
- fixed: editing events -> core (introduced in 0.3.10)
0.3.10:
- fixed: core while deleting controller events
- new: extended configuration of raw (serial) midi interfaces
- fixed: some memory leaks
- changed for ALSA 0.9.0 beta2
0.3.9:
- some smaller fixes
- fixed: core: missing MidiController() Initialization
- fixed: pressing another mouse button while "drawing" an event
in a canvas with left mouse button pressed gives core
0.3.8:
- fixed: correct update of midi port table on song change
- CtrlEditor: controllers can(must) now be configured
- List Editor: corrected handling of meta/sysex strings
- changed: combined pitch high/low to single value ranging
from -8192 +8191; editable with controller editor
- ALSA 0.9.0beta1 works for midi; as far as i tested it, this
alsa version has no more problems with OSS raw midi emulation
- new: colored activity display in arranger (Daniel Mack)
- new: context sensitive extensions to "right mouse click
pulldown menues" for arranger parts (Daniel Mack)
- new: gui prototypes for extendend configuration of raw midi
devices and audio mixdown file selection
- fixed: quirks with OSS midi devices configuration
0.3.7:
- start porting to ALSA 0.6.0 cvs version
- fixed: option -M produces midi output trace for alsa midi
- fixed: pianoroll and drum editor now accept input focus
and then honour some keyboard shortcuts
- fixed: score editor: core when inserting small rests
- new: "ruler" for pianoroll, drum editor and part editor
- fixed: midi recording: event len always 1 tick (bug introduced
in 0.3.6)
- midi port config: show only available raw midi devices
- fixed: tempomap/tempo save/restore
- fixed: initialize master button to saved value
- some smaller changes:
- midi recording: new parts begin at record start instead
of first event
- missing note offs are insertet virtually at record end
- recording takes place on selected track - selected part
and not on selected part if on different track
0.3.6:
- fixed: markerList: click in list -> core
- fixed: stop at end of song only if not recording
- fixed: events of zero length crash the sequencer
- fixed: missing note off events for metronome
- fixed: gui: changing port/channel in trackinfo updates tracklist
- new: midi recording & loop
0.3.5:
- fixed: midi recording with alsa was broken
- fixed: mastertrack: -> core
- fixed: rename track -> rename part -> core
- fixed: help browser: back function
- fixed: score: entered lyrics are saved again
- fixed: score->staffSettings: tracklist
- fixed: score->enterNotes wrong snap position
0.3.4:
- fixed: some bugs & quirks
- new: implemented pianoroll->edit->deleteEvents
0.3.3:
- new: MusE now stops at end of song if in PLAY mode
- fixed: core if muse was started without song name and
there was no ".musePrj" file in current directory
- new: on popular request: "RewindToStart" button
- fixed: changing devices while playing
- fixed: arranger: could not scroll to the end of song
- fixed: song lenght on midi import
- fixed: fatal error in handling "note off" events
- new: "sustain" is reset on stop
0.3.2:
- fixed: part editing: endo delete, glue etc.
- fixed: option -m (trace midi input) works again
- fixed: midi input filter: could not toggle channel 1 button
- fixed: midi mixer
- fixed: midi recording into part: part length adjusted if events
recorded past end of part
- fixed: MusE initialisation failed if there is no ".musePrj"
file in current directory!
0.3.1:
- step 2 of internal reorganization
- fixed: score: lyrics are now saved again
- fixed: some quirks with lost track markers
- new: Option -L locks sequencer memory
- fixed: recording from serial midi (raw oss & korg tohost)
- fixed: several smaller bugs & quirks
0.3.0:
- fixed: pianoroll editor: entering new events -> core
- new: drum editor click on instrument name "plays"
instrument
- fixed: changing the channel of a track now changes also
the channel of all events in that track
- massive changes for audio/wave integration:
- start of audio mixer
- audio routing
0.2.12:
- fixed: wave files/tracks/parts: calculation of tick<->time;
it should be possible again to import/play simple waves
- fixed: funny things happend when muting all audio tracks
- fixed: core if no active record track
- new: Rob Naccarato started with documentation; press
<F1> in MusE and have a look
0.2.11:
- fixed: metronome
- fixed: initial state of "click" transport button
- fixed: midi thru:
if midi thru is switched on, all received events are
echoed to the port/channel associated to the currently
selected track, regardless of the input port/channel.
Track parameters as pitch shift, velocity compression etc.
are applied before echoing the event.
- _not_ fixed: alsa midi driver: strange sysex behaviour
0.2.10:
- fixed: parameter change in midi trackinfo
- fixed: some errors in *.med file handling
- fixed: midi export
- fixed: midi events are now played according to priority:
- channel priority: 10,1,2,3,4,5,6,7,8,9,11,12,13,14,15,16
- note off before note on
0.2.9:
- fixed: typo in seq.c destroyed timing of 0.2.8
- fixed: importing audio files
- fixed: writing *med files
- fixed: wave form display in arranger
- fixed: core on click in arranger "no track area " with pencil tool
0.2.8:
- fixed: oss midi devices now work agin
- reorganized midi event dispatcher
- fixed: pitchbend for midialsa (Xavier)
0.2.7:
- midi driver reorganization in preparation
for better ALSA sequencer integration; soundcard synth
work again
- some fixes
0.2.6:
DrumEditor overhaul:
- fixed: reading drum maps
- changed: exporting drum maps now writes the whole map
- fixed: device popup: ...invalid menu item
- new: instruments can now be moved
- fixed: changing A-Note/E-Note did not show effect
- changed: small x-offset in event canvas allows better placement of
events at pos 1.1.0
- new: instrument names can be edited (double click instrument name)
- new: some drum maps
- fixed: update() missing after selection change in canvas
- fixed: len of new inserted drum events was quant-value, should be
default len from drum map
Alsa Midi Driver:
- changed (soundcard synth does not work :-( )
0.2.5:
- fixed: session management for list editor
- new: list editor: hex entry in meta event dialog
- fixed: Midi: "GS Reset" button aktually did a "GM Reset"
- fixed: Midi: "GS Reset" on Song Start was always combined with "GM Reset"
- fixed: Arranger: copy/paste produced core
- fixed: Arranger: removed some (not working) key accelerators
- new: Drag file from KDE fm and Drop on arranger partlist
- removed bogus midi archiv
- some major code reorganizations in preparation for audio integration
resulting in new errors and *.med file incompatibilities;
- fixed: "cannot delete busy part" even if part is not busy
- fixed: arranger/progname.c: bad instrument name table caused segfault
(Tim Mann)
- fixed: score/layout.c: could not enter A# (Gilles Fillipini)
0.2.4:
- fixed: removed silly warning: Cannot find translation...
(translations are not (yet) enabled)
- fixed: trackMarker->destroy TrackMarker->create track -> core
- new: integration of track markers in arranger
- export/import SMF-Marker as Meta Type 6
- changed: src/makefiles new arranged
- fixed: score editor: too many rests
- fixed: core if you try to insert note outside of staves
0.2.3:
- MidiSyncConfig: extSync synchronized with button in transport
window
- audio: try oss audio device /dev/dsp in addition to /dev/sound/dsp
- changed: column expand logic in arranger tracklist
- new: KDE2.2: define HAVE_KDE in make.inc to compile a
KDE version of MusE (experimental)
- new: realtime recording of Midi SysEx Events
- changed: better LADSPA plugin handling
- fixed: Pianoroll: Color Events: RGB parameter out of range
- changed: canvas: moving objects
- fixed: AudioMasterMixer produced core after second invocation
- new: track markers
0.2.2:
- switched to QT2.2
- fixed: Transport: "Master" button initialization
- fixed: session management for partlist in midi editors;
(new *.med xml files are probably incompatible
- fixed: cut&paste now works for parts on drum tracks
- fixed: cannot delete busy Parts any more
- fixed: honour LADSPA_PATH environment variable
- fixed: TransportWindow stays on top and is manageable
(testet with KDE2 beta4)
- fixed: arranger: column order is now recorded in
.med file
- fixed: sometimes under obscure circumstances MusE crashed
while opening an midi editor
- fixed: several typos/errors in *.med file reading/writing
- new: list editor: insert midi events (incl. sysex & meta)
double click on list entry to open editor to modify
values
- new: MTC/MMC Slave:
Configured as slave you can synchronize MusE
from external devices using Midi Time Code.
Midi Clock Master:
Configured as master MusE can control external
sequencers
Hooks for MTC/MMC Master and MidiClock slave.
- fixed: score: ScoreConfig::setTracklist() missing "clear"
- new: score: odd rest values implemented
0.2.1:
- new: Arranger: move (midi) parts between applications:
- cut/copy part(s) to global clipboard
- paste part(s) from global clipboard to arranger
- drag parts with middle mouse button (experimental)
- new: Pianoroll: move events between applications:
- cut/copy events to global clipboard
- paste events from global clipboard to arranger
- drag events with middle mouse button
- fixed: only write audio if there are audio tracks
- fixed: PianorollEditor: moving multiple selected events
(thanks to Chris Wakelin)
- fixed: commented out unused/missing "color.xpm"
- fixed: partlist changed to multimap<>
0.2.0:
- fixed: another error in OSS midi driver which results in
"bad file descriptor" aborts
- fixed: MidiFilter - RecordFilter/ThruFilter
- new: Master Part of Audio Mixer:
- Audio Level Meter
- LADSPA Host with
- automatic generated user interface
- presets store/load
- new: LADSPA "Freeverb" plugin for audio master
- new: Drum Editor
- load/save drum maps
- drawing reorganized
- new: Pianoroll Editor Functions:
- configurable event colors (none/pitch/velocity)
- configurable function ranges (apply functions to
all/loop/marked events)
- selection functions (all/none/loop/invert)
- switch between different parts in editor ("ghost events")
- PencilTool: Control+LeftMouseButton prevents
accidental creation of events
- PointerTool: Control+LeftMouseButton restricts
to horizontal or vertical move
0.1.10:
- new: MidiExport: some configurable Parameter for exported
Standard Midi File (SMF)
- new: configurable Midi Record/Thru Filter for midi
realtime recording
- fixed: time signature changes in score editor
- fixed: "midi bar scale" is updated on time signature
changes
- fixed: event sorting in "list mastertrack editor"
0.1.9:
- fixed: tempo changes during play
- fixed: "follow event" in graphical mastertrack editor
- fixed: mastertrack list: dynamic content update if song changed
- fixed: OSS midi serial output was broken
0.1.8:
- bug: scaling in graphical mastertrack editor
- bug: reduce value of MAX_TICK to prevent overflow in scaling
- bug: pianoroll editor: length quantization
- bug: midi import: timing broken; bug introduced in 0.1.6
- feature: editing of time signature in graphical mastertrack
0.1.7:
- bug: typo for 't'-kb accelerator in pianoroll-editor
- bug: quant values < 1/64 are not supported-> assertion bug
for keyboard accelerator >=8 in pianoroll editor
- pianoroll: new feature: step recording - midi input:
- press "shift"+ midiKey to enter chords
(if you enter same note again, it's deleted)
- press "ctrl" + midiKey to continue last note
- pianoroll: new menu function: quantize pos+len
- quantize configuration dialog: added flag for default len quantization
"whats this" help text
0.1.6:
- bug: exported midifiles had random "division" timing parameter
- bug: core dump on midi record start
- feature: keyboard accelerators in pianoroll editor:
'1'-'9' '.' and 't' set quant & snap values
0.1.5:
- MusE now works again without RTC (Real Time Clock) Device
(but much reduced timing accuracy)
- new Debug Options -m -M: MidiDump for input and output
- global keyboard accelerators:
spacebar: while play/record: STOP
while stop: Goto left mark
while on left mark: Goto Pos 0
Enter: start play
Insert: Stop
"/": Cycle on/off
"*": Record on
- Midi Step Recording: implemented external midi keyboard as
recording source (new "midi input" toggle button in pianoroll editor)
0.1.4:
Audio
==============
- simple audio play (ALSA & OSS)
- stubs for cliplist Editor, audio recording
- AudioMixer master volume
- bug fixes for wave viewer
Synthesizer
==============
- first part of framework for realtime software synthesizer
driver/synthis, s1/*;
0.1.3:
Score Editor:
==============
- print preview button (gv)
- postscript default resolution is 72dpi and not 75dpi
- configurable overall scale for printer output
- simple beams
Misc:
==============
- bug: path handling for project file: project files are now
saved in the correct directory
- bug: canvas initial scaling
- bug: core if configured device didnt exists
- bug: ctrl editor produced values > 127
- feature: Arranger: Parts are now displayed with a horizontal offset
- feature: Arranger: added save/restore for some configuration values
- feature: Midi Recording: track parameter like Transposition are now
applied before loop through
- feature: "Thru" flag in Configure->MidiDevices now implemented
- feature: Midi Remote Control: control sequencer stop/play/record/rewind
with configurable note events
- bug: typo in score/layout.c:split() caused core
0.1.2:
- Score:
- add lyrics entry
- changed note head for 4/4
- changed positioning of 2/4 and 4/4 notes
- ties can now span systems
- tie connected notes are selected as one note
- page settings, margins handling corrected
- configurable fonts for score editor page layout
0.1.1:
- master: scale changed
- no more core when selecting the score editor without a selected
part to edit
- time signature scale in master track
- master track: function tempo edit
- new popup menu in arranger / part canvas
- makefile: "make depend" target
- new: alsa raw midi interface
- improved score editor:
- split system (piano left&right hand)
- multi stave systems
- symbols
- lasso selection
- dynamics symbol palette
- window position of all toplevel windows is now remembered
correctly
- bug fixes & code cleanups
0.0.10:
- removed obsolete file.c file.h
- separated midi archive
- removed unused widgets/wtscale.*
- removed unused widgets/dial.*
- midis with Meta Event Type 6 produced core
- removed '\n' chars from windows caption
- new setBg(QColor) method for class View
- broken Ctrl-Editor fixed
- Pencil Cursor now shown for Pencil Tool in Ctrl-Editor
- Mute Indicator changed to red dot
- added CtrlEditor to DrumEditor
- process session info in xml songfile
- more work on mastertrack
- start ScoreEditor and moving the mouse on canvas (producing
mouseMoveEvents) before exposure of QLineEdit (time & pitch
in toolbar) produced core on QLineEdit->setText(xx)
- in continuous scroll mode position marker updated correctly
0.0.9:
- xml like configuration and song file
- new midi mixer, shows only active midi channels
- bug: metronom configuration: channel&port numbers
- bug fixes
0.0.8:
- new: quantize function
- new: wave tracks: new classes: WaveFile Clip;
load wave file; expand song file structure
first try on wave editor;
- logarithmic magnify
- rework of View & Canvas Classes, resulting in much
faster scrolling
0.0.7:
- fatal error: use of uninitialized device
0.0.6:
- more diagnostics in file functions
- new: can load and save *.gz and *.bz2 files
- new function: send local off to instruments
- bug fixes in pianoroll step recording
- bug fix: "follow song" save and restore
- bug fix: in importing midi files: calculating parts
- bug fix: metronome -> core
- new configuration options for parts
0.0.5:
- new: midi activity display in tracklist
- new: patch selector in channel info; shows midi instrument
categories
- new: insert & delete Controller Values in Ctrl-Editor
- some minor bugs corrected
- nasty bug in Song::nextEvents(), which prevents simple
midi songs played correctly
0.0.4:
- implemented: forward & rewind buttons
- implemented: drum edit: change values in info bar
- error: arranger->tracklist: resize failed if columns are swapped
- enhanced file selector for background image selection
- more WhatsThis and ToolTip Help
- Backport to QT202: Filedialog: Filterlists dont work
- Midi Config: changed signal click() to rightButtonClick()
- missing initialisation in song constructor
- new subdirectory for controller editor
- controller editor for some values
0.0.3:
- new transport design
- redesign of TrackInfo and ChannelInfo
- some changes reg. fonts and geometry management
- misc toolbars changed to read qt toolbars
0.0.2:
- changed color for cpos to red
- dont play metronome clicks with time < current
- doubleclick on arranger trackname: entrywidget now gets
input focus
- midi device configuration: reworked
- removed endless loop in Song::nextEvents()
- ported to qt-2.1.0-snapshot-20000113
- changed QPushButton to QToolButton
- some cosmetic changes in transport window
0.0.1
- first release
|