1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154
|
2005-09-23 16:06 drobilla
* src/clients/: demolition/Makefile.am, demolition/README,
patch_loader/Makefile.am, patch_loader/README: Added README files
for demolition and patch_loader clients
2005-09-23 14:35 drobilla
* src/: clients/gtk/src/PatchController.cpp,
clients/gtk/src/om_gtk.glade, clients/patches/Makefile.am,
clients/patches/broken_bass_synth.om,
clients/patches/broken_oscillator.om, clients/patches/drums.om,
clients/patches/saw_detuned.om, common/Queue.h,
engine/AddNodeEvent.cpp, engine/util.h: Removed useless example
patch, tweak here and there
2005-09-23 12:50 drobilla
* src/clients/gtk/src/: OmModule.cpp, PatchController.cpp,
SubpatchModule.cpp: Made zooming more sane (can load modules at
zoom levels != 1)
2005-09-23 03:59 drobilla
* src/clients/gtk/src/: NodeControlWindow.cpp, OmModule.cpp,
PatchWindow.cpp: Made all dialogs centre on parent (as
appropriate)
2005-09-23 03:30 drobilla
* src/: clients/gtk/src/om_gtk.glade,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/patches/evildistbass.om, clients/patches/fm_operator.om,
clients/patches/house_ensemble.om, clients/patches/hugebass.om,
clients/patches/karplus_strong_digeridoo.om,
clients/patches/organ.om, clients/patches/pad.om,
clients/patches/rhodes.om, clients/patches/saw_lp.om,
clients/patches/sine.om, clients/patches/trance.om,
engine/Port.cpp: 16-byte aligned port buffer allocation (for
SSE(?)), example patch cleanups
2005-09-22 19:10 drobilla
* src/clients/gtk/src/: OmPatchBayArea.cpp, OmPort.h,
RenameWindow.cpp, canvas/Module.cpp: Added missing <cassert>
includes
2005-09-22 19:05 drobilla
* src/clients/: OSCController.cpp, OSCController.h, PatchModel.h,
demolition/DemolitionClientHooks.cpp,
demolition/DemolitionClientHooks.h,
demolition/DemolitionModel.cpp, demolition/DemolitionModel.h,
demolition/demolition.cpp, gtk/src/StateManager.cpp: Added
missing include in PatchModel.h
2005-09-22 18:59 drobilla
* src/engine/: OSCSender.cpp, OmObject.h: Added missing include in
OmObject.h
2005-09-22 17:09 drobilla
* src/clients/patch_loader/patch_loader.cpp: Fixed patch loader to
activate engine
2005-09-22 14:41 drobilla
* src/clients/gtk/src/: ConfigWindow.cpp, ConfigWindow.h,
MessagesWindow.cpp, MessagesWindow.h, om_gtk.glade: GUI polish &
tooltips
2005-09-22 02:23 drobilla
* src/clients/gtk/src/OmGtkApp.cpp: Fixed segfault when
rightclicking empty patches treeview
2005-09-22 01:25 drobilla
* NEWS, src/clients/gtk/src/OmModule.cpp,
src/clients/gtk/src/OmPatchBayArea.cpp,
src/clients/gtk/src/OmPort.h,
src/clients/gtk/src/StateManager.cpp,
src/clients/gtk/src/canvas/Module.cpp,
src/clients/gtk/src/canvas/PatchBayArea.cpp, src/engine/Maid.cpp,
src/engine/OmApp.cpp: Fixed segfault on engine shutdown
2005-09-22 00:19 drobilla
* src/engine/: MidiInNode.h, MidiNoteNode.cpp: Fixes all notes off
event (hopefully)
2005-09-22 00:08 drobilla
* src/engine/: AllNotesOffEvent.cpp, AllNotesOffEvent.h: Added
missing AllNotesOffEvent files
2005-09-22 00:04 drobilla
* src/engine/: AlsaDriver.cpp, AlsaDriver.h, Makefile.am,
MidiInNode.h, MidiNoteNode.cpp, MidiNoteNode.h, NoteOffEvent.cpp,
NoteOffEvent.h, OSCReceiver.cpp, OSCReceiver.h: Added all notes
off event
2005-09-21 23:40 drobilla
* src/clients/gtk/src/NewPatchWindow.cpp: Fixed bad glade widget
name problem in new patch window
2005-09-21 23:30 drobilla
* src/clients/gtk/src/: NewSubpatchWindow.cpp, NewSubpatchWindow.h,
om_gtk.glade: Added missing NewSubpatchWindow files
2005-09-21 23:21 drobilla
* src/clients/: NodeModel.h, PatchModel.cpp, PatchModel.h,
gtk/src/AddSubpatchWindow.cpp, gtk/src/AddSubpatchWindow.h,
gtk/src/GtkClientHooksEvents.h, gtk/src/Makefile.am,
gtk/src/NewPatchWindow.cpp, gtk/src/NewPatchWindow.h,
gtk/src/OmGtkApp.cpp, gtk/src/OmGtkApp.h, gtk/src/OmModule.cpp,
gtk/src/OmModule.h, gtk/src/OmPatchBayArea.cpp,
gtk/src/PatchController.cpp, gtk/src/PatchController.h,
gtk/src/PatchWindow.cpp, gtk/src/PatchWindow.h,
gtk/src/SubpatchModule.cpp, gtk/src/om_gtk.glade,
gtk/src/canvas/Module.cpp, gtk/src/canvas/Module.h: Patch
renaming in the client, GUI dynamifications, cleanups, etc
2005-09-21 13:33 drobilla
* src/: clients/PatchModel.cpp, clients/gtk/src/Makefile.am,
clients/gtk/src/OmModule.cpp, clients/gtk/src/OmModule.h,
clients/gtk/src/OmPatchBayArea.cpp,
clients/gtk/src/OmPatchBayArea.h,
clients/gtk/src/RenameWindow.cpp, clients/gtk/src/RenameWindow.h,
clients/gtk/src/om_gtk.glade, engine/NodeFactory.cpp,
engine/OmObject.h, engine/RenameEvent.cpp, engine/RenameEvent.h:
Added new Super Dynamic Rename Dialog(TM) Version 2.0, more
sanity checking for OmObject paths in engine
2005-09-21 00:51 drobilla
* src/engine/MidiNoteNode.cpp: Disabled MIDI debug statements
2005-09-20 22:49 drobilla
* src/clients/: PatchLibrarian.cpp, gtk/src/LashController.cpp,
gtk/src/LashController.h, gtk/src/Loader.cpp, gtk/src/Loader.h,
patches/saw_lp.om: Self-contained LASH session saving/restoring
2005-09-20 01:32 drobilla
* src/clients/Makefile.am: Removed unneeded file
(ClientPathParrser.h) from src/clients/Makefile.am
2005-09-20 00:13 drobilla
* src/: clients/ConnectionModel.h, clients/OSCController.cpp,
clients/gtk/configure.ac, engine/ConnectionEvent.cpp,
engine/MidiNoteNode.cpp, engine/OSCSender.cpp,
engine/configure.ac: Updated LASH version dependency in
configure.ac
2005-09-19 17:22 drobilla
* src/clients/gtk/src/: DSSIModule.cpp, GtkClientHooksEvents.h,
OmModule.cpp, SubpatchModule.cpp: Saner item order in module
context menus
2005-09-19 01:43 drobilla
* src/engine/PingSlowEvent.h: Added PingSlowEvent.h
2005-09-19 01:39 drobilla
* Doxyfile, src/engine/Makefile.am, src/engine/OSCReceiver.cpp,
src/engine/OSCReceiver.h: Added OSC command /om/ping_slow
2005-09-19 01:21 larsl
* src/clients/python/scripts/flatten.py: Added flatten.py
2005-09-19 01:10 drobilla
* src/: clients/PatchLibrarian.cpp, engine/SlowEventQueue.cpp:
Slightly longer delays in patch loader code, patches with many
nodes now load (big generated hammond patch from thorwil)
2005-09-19 00:51 drobilla
* src/: clients/gtk/src/DSSIModule.cpp,
clients/gtk/src/OmModule.cpp, clients/gtk/src/SubpatchModule.cpp,
engine/NodeFactory.cpp: Added ~/.ladspa and ~/.dssi to default
paths
2005-09-19 00:43 drobilla
* src/clients/python/omsynth.py: Added delay to send function to
avoid flooding the engine
2005-09-18 17:56 drobilla
* src/engine/: ObjectStore.cpp, ObjectStore.h: Added ObjectStore
2005-09-18 16:58 drobilla
* src/: clients/gtk/src/ControlGroups.cpp,
clients/gtk/src/ControlGroups.h,
clients/gtk/src/ControlPanel.cpp, clients/gtk/src/ControlPanel.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/OmPort.cpp, clients/gtk/src/OmPort.h,
clients/gtk/src/canvas/Port.cpp, clients/gtk/src/canvas/Port.h,
clients/patches/house_ensemble.om, engine/AudioInputNode.cpp,
engine/AudioInputNode.h, engine/AudioOutputNode.cpp,
engine/AudioOutputNode.h, engine/InputNode.h, engine/OmObject.h,
engine/OutputNode.h, engine/RenameEvent.cpp: Renaming of patch
input/output nodes/ports
2005-09-18 16:03 drobilla
* src/: clients/patches/303.om, engine/Patch.cpp: Removed
unecessary error message triggered by renaming, renamed 303 patch
nodes nicely
2005-09-18 15:52 drobilla
* src/: clients/ClientPathParser.h, clients/ConnectionModel.h,
clients/Makefile.am, clients/NodeModel.h,
clients/PatchLibrarian.cpp, clients/PatchModel.cpp,
clients/PortModel.h, clients/demolition/DemolitionModel.cpp,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/Makefile.am, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmModule.cpp,
clients/gtk/src/PatchController.cpp, clients/patches/303.om,
common/OmPath.h, engine/AddNodeEvent.cpp,
engine/ConnectionEvent.cpp, engine/CreatePatchEvent.cpp,
engine/DSSIConfigureEvent.cpp, engine/DSSIControlEvent.cpp,
engine/DSSIProgramEvent.cpp, engine/DSSIUpdateEvent.cpp,
engine/DestroyPatchEvent.cpp, engine/DisablePatchEvent.cpp,
engine/DisconnectNodeEvent.cpp, engine/DisconnectPortEvent.cpp,
engine/DisconnectionEvent.cpp, engine/EnablePatchEvent.cpp,
engine/Makefile.am, engine/MidiLearnEvent.cpp,
engine/NoteOffEvent.cpp, engine/NoteOnEvent.cpp,
engine/OmApp.cpp, engine/OmApp.h, engine/OmObject.h,
engine/PathParser.cpp, engine/PathParser.h,
engine/RemoveNodeEvent.cpp, engine/RenameEvent.cpp,
engine/RequestMetadataEvent.cpp,
engine/RequestPortValueEvent.cpp, engine/SetMetadataEvent.cpp,
engine/SetPortValueEvent.cpp, engine/SetPortValueSlowEvent.cpp:
Combined path parsing code in client and engine, separated path
parsing from object searching in engine
2005-09-18 15:17 drobilla
* src/clients/: ConnectionModel.h, PatchModel.cpp: More renaming
fixes
2005-09-18 04:46 drobilla
* src/: clients/patches/303.om, engine/RenameEvent.cpp,
engine/RenameEvent.h: More renaming fixes
2005-09-18 04:22 drobilla
* src/clients/: NodeModel.h, PatchModel.cpp, PatchModel.h,
gtk/src/GtkClientHooksEvents.h, gtk/src/OmModule.cpp,
gtk/src/OmModule.h, patches/303.om: Fixed for renaming then
saving a patch
2005-09-18 02:29 drobilla
* src/engine/: RenameEvent.cpp, RenameEvent.h: Added RenameEvent
2005-09-18 02:11 drobilla
* src/engine/: AudioInputNode.cpp, AudioInputNode.h,
AudioOutputNode.cpp, AudioOutputNode.h, OmObject.h: Renaming of
Jack ports
2005-09-18 00:46 drobilla
* src/: clients/ClientHooks.h, clients/DummyClientHooks.h,
clients/OSCController.cpp, clients/OSCController.h,
clients/OSCListener.cpp, clients/OSCListener.h,
clients/demolition/DemolitionClientHooks.h,
clients/gtk/src/ControlGroups.cpp,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/OmModule.cpp, clients/gtk/src/OmModule.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/gtk/src/canvas/PatchBayArea.h,
clients/gtk/src/canvas/Port.cpp, clients/patches/saw_detuned.om,
clients/patches/slapbass.om, engine/AddNodeEvent.cpp,
engine/AudioInputNode.cpp, engine/AudioOutputNode.cpp,
engine/Connection.cpp, engine/ConnectionEvent.cpp,
engine/ControlInputNode.cpp, engine/ControlOutputNode.cpp,
engine/CreatePatchEvent.cpp, engine/DSSIPlugin.cpp,
engine/DisconnectNodeEvent.cpp, engine/DisconnectPortEvent.cpp,
engine/DisconnectionEvent.cpp, engine/InputPort.cpp,
engine/LADSPAPlugin.cpp, engine/Makefile.am,
engine/MidiControlNode.cpp, engine/MidiInNode.cpp,
engine/MidiLearnEvent.cpp, engine/MidiNoteNode.cpp,
engine/MidiTriggerNode.cpp, engine/Node.h, engine/NodeBase.cpp,
engine/NodeBase.h, engine/NodeFactory.cpp, engine/NodeFactory.h,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/OmObject.h,
engine/Patch.cpp, engine/Patch.h, engine/Port.cpp, engine/Port.h,
engine/RemoveNodeEvent.cpp, engine/SetPortValueEvent.cpp,
engine/SetPortValueSlowEvent.cpp, engine/TransportNode.cpp: Made
OmObject paths dynamic, added Node and Patch renaming support
2005-09-17 13:55 drobilla
* src/engine/MidiNoteNode.cpp: Changed the default frequency output
of the NoteNode to 440 from 0, because some plugins chew CPU with
frequency 0 (blop oscillators)
2005-09-16 11:10 drobilla
* src/: clients/gtk/src/main.cpp,
engine/RequestAllObjectsEvent.cpp: Made request_all_objects OK
response come after all the objects
2005-09-15 17:43 drobilla
* src/engine/OSCReceiver.cpp: Turned off OSC debugging (oops)
2005-09-15 17:40 drobilla
* src/: clients/gtk/src/DSSIModule.cpp, engine/OSCReceiver.cpp:
Fixed DSSI path problem
2005-09-15 15:44 drobilla
* configure.ac, src/clients/Makefile.am,
src/clients/python/Makefile.am, src/clients/python/OSC.py,
src/clients/python/omecho.py, src/clients/python/omsynth.py,
src/clients/python/scripts/Makefile.am,
src/clients/python/scripts/sillysinepatch.py: Added python
bindings
2005-09-15 04:45 drobilla
* src/: clients/OSCController.cpp, engine/AddNodeEvent.cpp,
engine/NodeFactory.cpp, engine/OSCSender.cpp: Fixed error message
reporting (ie on missing plugins)
2005-09-14 22:10 drobilla
* src/engine/OSCSender.cpp: Updated documentation
2005-09-14 20:38 drobilla
* src/clients/gtk/src/: Loader.cpp, OmGtkApp.cpp: Attempt to fix
repository insanity
2005-09-14 20:30 drobilla
* src/engine/OSCReceiver.cpp: Fixed out of sync OSC documentation
2005-09-14 02:36 drobilla
* src/clients/gtk/src/canvas/PatchBayArea.h: Attempt at fixing
strange build problem
2005-09-13 21:04 drobilla
* src/clients/gtk/src/canvas/PatchBayArea.h: Fixed split module
problem, removed useless Alsa system modules, made app shut down
cleanly
2005-09-10 02:07 drobilla
* src/clients/patches/phat.om: Removed some cruft from the
repository
2005-09-10 02:06 drobilla
* src/clients/console/: Makefile.am, README,
patches/filter_patch.omp.bak: Added README about how old and
useless this "client" is, and removed cruft from repository
2005-09-10 01:25 drobilla
* src/engine/: AlsaDriver.cpp, JackDriver.cpp, LashDriver.cpp,
LashDriver.h, Maid.cpp, NodeFactory.cpp, OSCReceiver.cpp,
OSCReceiver.h, OmApp.cpp, PostProcessor.cpp, SlowEventQueue.cpp:
Made engine exit cleanly and properly kill all threads
2005-09-09 23:46 drobilla
* src/clients/gtk/src/: LashController.cpp, LoadSubpatchWindow.cpp,
Loader.cpp, Loader.h, OmModule.cpp, PatchController.cpp,
SubpatchModule.cpp: More missing header fixes
2005-09-09 23:21 drobilla
* src/clients/PatchLibrarian.h: Fixed missing <cassert> header
2005-09-09 21:57 drobilla
* configure.ac, src/clients/OSCController.cpp,
src/clients/OSCController.h, src/clients/PatchLibrarian.h,
src/clients/demolition/cmdline.c,
src/clients/demolition/cmdline.h,
src/clients/demolition/demolition.cpp,
src/clients/gtk/configure.ac,
src/clients/gtk/src/AddSubpatchWindow.cpp,
src/clients/gtk/src/AddSubpatchWindow.h,
src/clients/gtk/src/ConfigWindow.cpp,
src/clients/gtk/src/ConfigWindow.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/LashController.cpp,
src/clients/gtk/src/LoadPatchWindow.cpp,
src/clients/gtk/src/Loader.cpp, src/clients/gtk/src/Loader.h,
src/clients/gtk/src/Makefile.am,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/OmModule.cpp, src/clients/gtk/src/OmModule.h,
src/clients/gtk/src/OmPatchBayArea.cpp,
src/clients/gtk/src/OmPatchBayArea.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/StateManager.cpp,
src/clients/gtk/src/StateManager.h,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/SubpatchModule.h,
src/clients/gtk/src/cmdline.c, src/clients/gtk/src/cmdline.ggo,
src/clients/gtk/src/cmdline.h, src/clients/gtk/src/main.cpp,
src/clients/gtk/src/om_gtk.glade,
src/clients/patch_loader/cmdline.c,
src/clients/patch_loader/cmdline.ggo,
src/clients/patch_loader/cmdline.h,
src/clients/patch_loader/patch_loader.cpp,
src/engine/configure.ac: Finished somewhat working LASH support
2005-09-07 21:47 drobilla
* src/: clients/gtk/src/Controller.cpp, engine/AlsaDriver.cpp,
engine/AlsaDriver.h, engine/LashDriver.cpp, engine/Maid.cpp,
engine/Maid.h, engine/NodeFactory.cpp, engine/OmApp.cpp,
engine/PostProcessor.cpp, engine/PostProcessor.h,
engine/SlowEventQueue.cpp, engine/SlowEventQueue.h: LASH fixes,
startup fixed, failed attempt to make shutdown clean
2005-09-07 19:50 drobilla
* src/clients/gtk/src/: LashController.cpp, LashController.h: Added
LashController files
2005-09-07 19:31 drobilla
* src/: clients/OSCController.cpp, clients/OSCController.h,
clients/gtk/src/ConfigWindow.cpp, clients/gtk/src/ConfigWindow.h,
clients/gtk/src/Controller.cpp, clients/gtk/src/Makefile.am,
clients/gtk/src/OmGtk.cpp, clients/gtk/src/OmGtk.h,
clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmGtkStateManager.cpp,
clients/gtk/src/OmGtkStateManager.h, clients/gtk/src/OmPort.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/StateManager.cpp, clients/gtk/src/StateManager.h,
clients/gtk/src/main.cpp, engine/AlsaDriver.cpp,
engine/JackDriver.cpp, engine/LashDriver.cpp,
engine/LashDriver.h, engine/Makefile.am, engine/OSCReceiver.cpp,
engine/Om.cpp, engine/Om.h, engine/OmApp.cpp, engine/OmApp.h,
engine/configure.ac, engine/main.cpp: Work towards LASH support
2005-09-07 04:03 drobilla
* ChangeLog, src/clients/gtk/configure.ac,
src/clients/gtk/src/Makefile.am, src/clients/gtk/src/OmGtk.cpp,
src/clients/gtk/src/OmGtk.h, src/clients/gtk/src/OmGtkApp.cpp,
src/clients/gtk/src/OmGtkApp.h, src/clients/gtk/src/main.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h, src/engine/util.h:
Work towards LASH support in GTK client
2005-09-05 14:48 drobilla
* src/engine/: DestroyPatchEvent.cpp, Node.h, NodeBase.h,
Patch.cpp: Fixed destroying of patches w/ subpatches
2005-09-05 01:56 drobilla
* configure.ac, src/clients/gtk/configure.ac, src/engine/OmApp.h,
src/engine/configure.ac: Updated liblo dependency to version 0.22
2005-09-03 18:18 drobilla
* src/engine/: AlsaDriver.cpp, NodeFactory.cpp, PluginLibrary.h:
Don't keep every plugin library on the system loaded at all time
(to save memory)
2005-09-03 14:46 drobilla
* src/: clients/OSCController.cpp, engine/OSCReceiver.cpp: Turned
off OSC debug print messages
2005-09-03 14:45 drobilla
* src/: clients/OSCController.cpp, clients/gtk/src/OmGtkApp.h,
engine/PathParser.h: Random insignificant changes, comments, etc
2005-09-02 19:29 drobilla
* src/clients/patches/: drums.om, meanbass.om, slapbass.om: Added
missing files
2005-09-02 14:48 drobilla
* configure.ac, src/clients/OSCController.cpp,
src/clients/gtk/configure.ac, src/clients/gtk/src/OmGtkApp.cpp,
src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/patches/Makefile.am, src/common/Queue.h,
src/engine/NodeTree.cpp, src/engine/OSCReceiver.cpp,
src/engine/OmApp.h, src/engine/configure.ac: Fixed OSC feedback
problem
2005-09-01 14:36 drobilla
* src/engine/: JackDriver.cpp, JackDriver.h, Maid.cpp, Maid.h,
Makefile.am, OmApp.cpp, PostProcessor.cpp, PostProcessor.h,
SlowEventQueue.cpp, SlowEventQueue.h, main.cpp, tuning.h:
Centralized tuning parameters (in tuning.h)
2005-08-31 21:49 drobilla
* configure.ac, src/clients/NodeModel.h,
src/clients/OSCController.cpp, src/clients/OSCController.h,
src/clients/OSCListener.cpp, src/clients/OSCListener.h,
src/clients/PatchLibrarian.cpp, src/clients/PatchModel.h,
src/clients/PluginModel.h, src/clients/PortModel.h,
src/clients/demolition/DemolitionModel.cpp,
src/clients/gtk/configure.ac, src/common/Queue.h,
src/engine/AlsaDriver.cpp, src/engine/AlsaDriver.h,
src/engine/Array.h, src/engine/AudioInputNode.cpp,
src/engine/AudioInputNode.h, src/engine/AudioOutputNode.cpp,
src/engine/AudioOutputNode.h, src/engine/Connection.h,
src/engine/ControlInputNode.cpp, src/engine/ControlInputNode.h,
src/engine/ControlOutputNode.cpp, src/engine/ControlOutputNode.h,
src/engine/CrossThreadMutex.h, src/engine/DSSIPlugin.cpp,
src/engine/DSSIPlugin.h, src/engine/DestroyPatchEvent.cpp,
src/engine/Event.h, src/engine/InputNode.h,
src/engine/InputPort.cpp, src/engine/InputPort.h,
src/engine/InternalNode.h, src/engine/JackDriver.cpp,
src/engine/JackDriver.h, src/engine/LADSPAPlugin.h,
src/engine/List.h, src/engine/Maid.cpp, src/engine/Maid.h,
src/engine/MaidObject.h, src/engine/MetaDataBase.h,
src/engine/MidiControlNode.h, src/engine/MidiInNode.cpp,
src/engine/MidiInNode.h, src/engine/MidiLearnEvent.h,
src/engine/NodeBase.cpp, src/engine/NodeBase.h,
src/engine/NodeFactory.cpp, src/engine/NodeTree.cpp,
src/engine/NodeTree.h, src/engine/OSCReceiver.cpp,
src/engine/OSCReceiver.h, src/engine/OmApp.cpp,
src/engine/OmApp.h, src/engine/OmObject.h,
src/engine/OutputNode.h, src/engine/OutputPort.h,
src/engine/Patch.cpp, src/engine/Patch.h, src/engine/Plugin.h,
src/engine/PluginLibrary.h, src/engine/Port.cpp,
src/engine/Port.h, src/engine/PortInfo.h,
src/engine/PostProcessor.cpp, src/engine/PostProcessor.h,
src/engine/RemoveNodeEvent.cpp, src/engine/Request.h,
src/engine/SlowEvent.h, src/engine/SlowEventQueue.cpp,
src/engine/SlowEventQueue.h, src/engine/configure.ac: - Thorough
super-pedantic code cleanup - Engine now cleanly exits - Removed
all exception use in the engine - Added -fno-rtti and
-fno-exceptions to CXXFLAGS - Added optional ridiculously strict
compiler flags - Fixed numerous warnings resulting from said
flags - Cleaned up/Fixed Jack port registration/deregistration -
Probably broke a bunch of things
2005-08-30 20:54 drobilla
* src/engine/DSSIPlugin.cpp: Temporary fix for DSSI GUI /show
command
2005-08-30 20:38 drobilla
* src/engine/: DSSIPlugin.cpp, DSSIPlugin.h, DSSIUpdateEvent.cpp,
OSCReceiver.cpp, OSCSender.h: - DSSI GUI restoring
2005-08-27 21:19 drobilla
* src/clients/PatchLibrarian.cpp: Fixed subpatch saving
2005-08-27 15:51 drobilla
* src/: clients/PatchLibrarian.cpp, engine/OSCSender.cpp,
engine/OSCSender.h, engine/RegisterClientEvent.cpp: Removed
client registration OSC notification for the time being (not
used)
2005-08-26 01:04 drobilla
* src/clients/: PatchLibrarian.cpp, PatchLibrarian.h,
gtk/src/Controller.cpp, gtk/src/Controller.h: Fixed bug with
subpatch saving
2005-08-25 02:43 drobilla
* src/engine/PluginLibrary.h: Added PluginLibrary.h (handler class
for opened shared libs)
2005-08-24 22:46 drobilla
* src/engine/: Makefile.am, NodeFactory.cpp, NodeFactory.h,
OSCSender.cpp, Plugin.h: Cleaned up shared library
loading/unloading
2005-08-24 21:00 drobilla
* src/engine/: CreatePatchEvent.h, Event.h, Maid.cpp,
RequestAllObjectsEvent.h, RequestMetadataEvent.h,
RequestPluginsEvent.h, RequestPortValueEvent.h: Fixed glaring
memory leak
2005-08-24 16:58 drobilla
* src/: clients/OSCController.cpp, engine/DisablePatchEvent.cpp,
engine/NodeFactory.cpp, engine/OSCSender.cpp,
engine/OutputNode.h: Silence patches when disabled
2005-08-24 03:39 drobilla
* configure.ac, src/clients/Makefile.am,
src/clients/OSCController.cpp, src/clients/gtk/configure.ac,
src/clients/gtk/src/LoadSubpatchWindow.cpp,
src/clients/gtk/src/OmGtkObject.h,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/SubpatchModule.h,
src/clients/patches/evildistbass.om,
src/clients/patches/hugebass.om, src/engine/AlsaDriver.cpp,
src/engine/LADSPAPlugin.cpp, src/engine/LoadPluginsEvent.cpp,
src/engine/Makefile.am, src/engine/OSCReceiver.cpp,
src/engine/PathParser.h, src/engine/Plugin.h,
src/engine/configure.ac: - GCC 4.0 fixes - Fixed shared library
problems (still nasty though) - GUI Segfault fixes
2005-08-23 05:06 drobilla
* src/clients/gtk/src/canvas/PatchBayArea.cpp: Fixed blatant
guaranteed segfault (shame)
2005-08-20 17:39 drobilla
* src/: clients/ClientHooks.h, clients/DummyClientHooks.h,
clients/NodeModel.h, clients/OSCController.cpp,
clients/OSCController.h, clients/OSCListener.cpp,
clients/PatchLibrarian.cpp, clients/PluginModel.h,
clients/demolition/DemolitionClientHooks.h,
clients/demolition/DemolitionModel.cpp,
clients/demolition/demolition.cpp,
clients/gtk/src/ConfigWindow.h, clients/gtk/src/DSSIModule.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmGtkApp.h,
clients/gtk/src/OmGtkStateManager.cpp,
clients/gtk/src/OmModule.cpp,
clients/gtk/src/PatchController.cpp, engine/AddNodeEvent.cpp,
engine/CreatePatchEvent.cpp, engine/MidiNoteNode.cpp,
engine/Node.h, engine/NodeBase.h: - Client performance tweaks -
Bugfix for internal nodes not working (MIDI broken) - More
cleanup/refactoring - Client-side OSC stuff doesn't lock a mutex
on every response anymore unless actually waiting for a
response (faster)
2005-08-20 15:09 drobilla
* src/engine/: DSSIPlugin.cpp, DSSIPlugin.h, DestroyPatchEvent.cpp,
NodeFactory.cpp, RequestAllObjectsEvent.cpp,
RequestAllObjectsEvent.h, RequestMetadataEvent.cpp,
RequestMetadataEvent.h, RequestPortValueEvent.cpp,
RequestPortValueEvent.h: Plugged up a few more memory leaks
2005-08-20 14:45 drobilla
* src/: clients/ClientHooks.h, clients/DummyClientHooks.h,
clients/NodeModel.h, clients/OSCController.cpp,
clients/OSCListener.cpp, clients/PatchLibrarian.cpp,
clients/PluginModel.h,
clients/demolition/DemolitionClientHooks.cpp,
clients/demolition/DemolitionClientHooks.h,
clients/demolition/DemolitionModel.cpp,
clients/demolition/DemolitionModel.h,
clients/demolition/demolition.cpp,
clients/gtk/src/AddSubpatchWindow.h,
clients/gtk/src/ConfigWindow.h, clients/gtk/src/Controller.h,
clients/gtk/src/DSSIModule.cpp,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/LoadPatchWindow.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h,
clients/gtk/src/LoadSubpatchWindow.h,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/OmGtkStateManager.cpp,
clients/gtk/src/OmModule.cpp,
clients/gtk/src/PatchController.cpp, common/PluginInfo.h,
engine/AddNodeEvent.cpp, engine/AddNodeEvent.h,
engine/AddSubpatchEvent.cpp, engine/AddSubpatchEvent.h,
engine/AlsaDriver.cpp, engine/AlsaDriver.h,
engine/AudioInputNode.cpp, engine/AudioOutputNode.cpp,
engine/ControlInputNode.cpp, engine/ControlOutputNode.cpp,
engine/CreatePatchEvent.cpp, engine/CreatePatchEvent.h,
engine/DSSIConfigureEvent.cpp, engine/DSSIControlEvent.cpp,
engine/DSSIControlEvent.h, engine/DSSIPlugin.h,
engine/DSSIProgramEvent.cpp, engine/DSSIUpdateEvent.cpp,
engine/DestroyPatchEvent.cpp, engine/DestroyPatchEvent.h,
engine/DisconnectionEvent.cpp, engine/Event.h,
engine/InternalNode.h, engine/JackDriver.cpp,
engine/LADSPAPlugin.cpp, engine/LADSPAPlugin.h,
engine/LoadPluginsEvent.cpp, engine/LoadPluginsEvent.h,
engine/Maid.cpp, engine/Maid.h, engine/Makefile.am,
engine/MidiControlNode.cpp, engine/MidiLearnEvent.cpp,
engine/MidiNoteNode.cpp, engine/MidiTriggerNode.cpp,
engine/Node.h, engine/NodeBase.cpp, engine/NodeBase.h,
engine/NodeFactory.cpp, engine/NodeFactory.h,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/OmApp.cpp,
engine/OmApp.h, engine/Patch.cpp, engine/Patch.h,
engine/Plugin.h, engine/PluginFactory.cpp,
engine/PluginFactory.h, engine/PostProcessor.cpp,
engine/PostProcessor.h, engine/RemoveNodeEvent.cpp,
engine/RemoveNodeEvent.h, engine/SetControlEvent.cpp,
engine/SetControlEvent.h, engine/SetControlSlowEvent.cpp,
engine/SetControlSlowEvent.h, engine/SetPortValueEvent.cpp,
engine/SetPortValueEvent.h, engine/SetPortValueSlowEvent.cpp,
engine/SetPortValueSlowEvent.h, engine/TransportNode.cpp,
engine/util.cpp: - Refactored plugin handling in the engine -
Fixed some memory leaks - Reduces memory usage
2005-08-20 02:58 drobilla
* src/: common/Queue.h, engine/Maid.cpp: - Fixed bug with Maid
attempting to pop() on empty Queue (misreported
QueueUnderflowException)
2005-08-20 02:29 drobilla
* src/: clients/PatchLibrarian.cpp, common/PluginInfo.h,
engine/AudioInputNode.cpp, engine/AudioInputNode.h,
engine/AudioOutputNode.cpp, engine/AudioOutputNode.h,
engine/ControlInputNode.cpp, engine/ControlInputNode.h,
engine/ControlOutputNode.cpp, engine/ControlOutputNode.h,
engine/InternalNode.h, engine/MidiInNode.cpp,
engine/MidiInNode.h, engine/Patch.cpp, engine/PluginFactory.cpp,
engine/RemoveNodeEvent.cpp: - Not loading shared library for
every new plugin instance (!!) - Fix for Node removing (removing
Node from node tree in execute() method uneccessarily - moved to
prepare()) - More cleanups
2005-08-20 00:41 drobilla
* src/engine/: Patch.cpp, PluginFactory.cpp: Better error message
reporting for bad plugins
2005-08-20 00:22 drobilla
* src/: clients/demolition/demolition.cpp,
engine/DSSIConfigureEvent.cpp, engine/DSSIProgramEvent.cpp,
engine/LADSPAPlugin.cpp, engine/LADSPAPlugin.h,
engine/PluginFactory.cpp: - Graceful handling of broken plugins
that fail to instantiate - Fixed numerous obscure segfault bugs
in engine
2005-08-19 21:51 drobilla
* src/clients/gtk/src/canvas/Module.cpp: Added middle click to show
Node Control Window, until scrolling actually works
2005-08-19 21:30 drobilla
* src/: clients/ClientHooks.h, clients/ClientPathParser.h,
clients/ConnectionModel.h, clients/ControlMapModel.h,
clients/ControlModel.h, clients/DummyClientHooks.h,
clients/MetadataModel.h, clients/NodeModel.h,
clients/OSCController.cpp, clients/OSCController.h,
clients/OSCListener.cpp, clients/OSCListener.h,
clients/PatchLibrarian.cpp, clients/PatchLibrarian.h,
clients/PatchModel.cpp, clients/PatchModel.h,
clients/PortModel.h, clients/PresetModel.h,
clients/console/ConsoleClientHooks.cpp,
clients/console/ConsoleClientHooks.h,
clients/console/console_client.cpp,
clients/demolition/DemolitionClientHooks.cpp,
clients/demolition/DemolitionClientHooks.h,
clients/demolition/DemolitionModel.cpp,
clients/demolition/DemolitionModel.h,
clients/gtk/src/AddSubpatchWindow.cpp,
clients/gtk/src/AddSubpatchWindow.h,
clients/gtk/src/ConfigWindow.cpp, clients/gtk/src/ConfigWindow.h,
clients/gtk/src/ControlPanel.cpp, clients/gtk/src/ControlPanel.h,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/LoadPatchWindow.cpp,
clients/gtk/src/LoadPatchWindow.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h,
clients/gtk/src/LoadSubpatchWindow.cpp,
clients/gtk/src/LoadSubpatchWindow.h,
clients/gtk/src/MessagesWindow.cpp,
clients/gtk/src/MessagesWindow.h,
clients/gtk/src/NewPatchWindow.cpp,
clients/gtk/src/NewPatchWindow.h,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/NodeControlWindow.h, clients/gtk/src/OmGtk.cpp,
clients/gtk/src/OmGtk.h, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmGtkApp.h, clients/gtk/src/OmGtkObject.h,
clients/gtk/src/OmGtkStateManager.cpp,
clients/gtk/src/OmGtkStateManager.h,
clients/gtk/src/OmModule.cpp, clients/gtk/src/OmModule.h,
clients/gtk/src/OmPatchBayArea.cpp,
clients/gtk/src/OmPatchBayArea.h, clients/gtk/src/OmPort.cpp,
clients/gtk/src/OmPort.h, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/PatchDescriptionWindow.cpp,
clients/gtk/src/PatchWindow.cpp, clients/gtk/src/PatchWindow.h,
clients/gtk/src/SubpatchModule.h, clients/gtk/src/main.cpp,
clients/gtk/src/canvas/Connection.cpp,
clients/gtk/src/canvas/Connection.h,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/gtk/src/canvas/PatchBayArea.h,
clients/gtk/src/canvas/Port.cpp, clients/gtk/src/canvas/Port.h,
clients/patch_loader/patch_loader.cpp, common/PluginInfo.h,
common/Queue.h, common/types.h, engine/ActivateEvent.cpp,
engine/ActivateEvent.h, engine/AddNodeEvent.cpp,
engine/AddNodeEvent.h, engine/AddSubpatchEvent.cpp,
engine/AddSubpatchEvent.h, engine/AlsaDriver.cpp,
engine/AlsaDriver.h, engine/Array.h, engine/AudioInputNode.cpp,
engine/AudioInputNode.h, engine/AudioOutputNode.cpp,
engine/AudioOutputNode.h, engine/Connection.cpp,
engine/Connection.h, engine/ConnectionEvent.cpp,
engine/ConnectionEvent.h, engine/ControlInputNode.cpp,
engine/ControlInputNode.h, engine/ControlOutputNode.cpp,
engine/ControlOutputNode.h, engine/CreatePatchEvent.cpp,
engine/CreatePatchEvent.h, engine/CrossThreadMutex.h,
engine/DSSIConfigureEvent.cpp, engine/DSSIConfigureEvent.h,
engine/DSSIControlEvent.cpp, engine/DSSIControlEvent.h,
engine/DSSIPlugin.cpp, engine/DSSIPlugin.h,
engine/DSSIProgramEvent.cpp, engine/DSSIProgramEvent.h,
engine/DSSIUpdateEvent.cpp, engine/DSSIUpdateEvent.h,
engine/DeactivateEvent.cpp, engine/DeactivateEvent.h,
engine/DestroyPatchEvent.cpp, engine/DestroyPatchEvent.h,
engine/DisableEvent.cpp, engine/DisableEvent.h,
engine/DisablePatchEvent.cpp, engine/DisablePatchEvent.h,
engine/DisconnectionEvent.cpp, engine/DisconnectionEvent.h,
engine/EnableEvent.cpp, engine/EnableEvent.h,
engine/EnablePatchEvent.cpp, engine/EnablePatchEvent.h,
engine/Event.cpp, engine/Event.h, engine/InputNode.h,
engine/InputPort.cpp, engine/InputPort.h, engine/InternalNode.h,
engine/JackDriver.cpp, engine/JackDriver.h,
engine/LADSPAPlugin.cpp, engine/LADSPAPlugin.h, engine/List.h,
engine/LoadPluginsEvent.cpp, engine/LoadPluginsEvent.h,
engine/Maid.cpp, engine/Maid.h, engine/MaidObject.h,
engine/MetaDataBase.h, engine/MidiControlEvent.cpp,
engine/MidiControlEvent.h, engine/MidiControlNode.cpp,
engine/MidiControlNode.h, engine/MidiInNode.cpp,
engine/MidiInNode.h, engine/MidiLearnEvent.cpp,
engine/MidiLearnEvent.h, engine/MidiNoteNode.cpp,
engine/MidiNoteNode.h, engine/MidiTriggerNode.cpp,
engine/MidiTriggerNode.h, engine/Node.h, engine/NodeBase.cpp,
engine/NodeBase.h, engine/NodeTree.cpp, engine/NodeTree.h,
engine/NoteOffEvent.cpp, engine/NoteOffEvent.h,
engine/NoteOnEvent.cpp, engine/NoteOnEvent.h,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/Om.cpp,
engine/Om.h, engine/OmApp.cpp, engine/OmApp.h, engine/OmObject.h,
engine/OutputNode.h, engine/OutputPort.cpp, engine/OutputPort.h,
engine/Patch.cpp, engine/Patch.h, engine/PathParser.cpp,
engine/PathParser.h, engine/PluginFactory.cpp,
engine/PluginFactory.h, engine/Port.cpp, engine/Port.h,
engine/PortInfo.h, engine/PostProcessor.cpp,
engine/PostProcessor.h, engine/RegisterClientEvent.cpp,
engine/RegisterClientEvent.h, engine/RemoveNodeEvent.cpp,
engine/RemoveNodeEvent.h, engine/Request.cpp, engine/Request.h,
engine/RequestAllObjectsEvent.cpp,
engine/RequestAllObjectsEvent.h, engine/RequestMetadataEvent.cpp,
engine/RequestMetadataEvent.h, engine/RequestPluginsEvent.cpp,
engine/RequestPluginsEvent.h, engine/RequestPortValueEvent.cpp,
engine/RequestPortValueEvent.h, engine/SetControlEvent.cpp,
engine/SetControlEvent.h, engine/SetControlSlowEvent.cpp,
engine/SetControlSlowEvent.h, engine/SetMetadataEvent.cpp,
engine/SetMetadataEvent.h, engine/SlowEvent.h,
engine/SlowEventQueue.cpp, engine/SlowEventQueue.h,
engine/TransportNode.cpp, engine/TransportNode.h,
engine/UnregisterClientEvent.cpp, engine/UnregisterClientEvent.h,
engine/main.cpp, engine/util.cpp, engine/util.h: Updated
Copyright year in comment header
2005-08-19 21:09 drobilla
* src/: clients/Comm.cpp, clients/Comm.h, clients/Makefile.am,
clients/OSCController.cpp, clients/OSCController.h,
clients/OSCListener.cpp, clients/OSCListener.h,
clients/PatchLibrarian.cpp, clients/PatchLibrarian.h,
clients/demolition/demolition.cpp,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/OmGtkApp.cpp,
clients/patch_loader/patch_loader.cpp,
engine/AddSubpatchEvent.cpp, engine/GetAllObjectsEvent.cpp,
engine/GetAllObjectsEvent.h, engine/GetControlEvent.cpp,
engine/GetControlEvent.h, engine/GetMetadataEvent.cpp,
engine/GetMetadataEvent.h, engine/Makefile.am,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/RequestAllObjectsEvent.cpp,
engine/RequestAllObjectsEvent.h, engine/RequestMetadataEvent.cpp,
engine/RequestMetadataEvent.h, engine/RequestPluginsEvent.cpp,
engine/RequestPluginsEvent.h, engine/RequestPortValueEvent.cpp,
engine/RequestPortValueEvent.h, engine/SendPluginsEvent.cpp,
engine/SendPluginsEvent.h: Code restructuring and cleanup
2005-08-19 18:48 drobilla
* src/: clients/Comm.cpp, clients/gtk/src/ControlGroups.cpp,
clients/gtk/src/ControlGroups.h,
clients/gtk/src/ControlPanel.cpp, clients/gtk/src/ControlPanel.h,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h, clients/patches/hugebass.om,
engine/DestroyPatchEvent.cpp, engine/DisconnectNodeEvent.cpp,
engine/DisconnectPortEvent.cpp, engine/DisconnectionEvent.cpp,
engine/JackDriver.cpp, engine/RemoveNodeEvent.cpp: - Response
time tuning in the Gtk client - Segfault fixed in engine (destroy
patch and other recursive events)
2005-08-19 03:40 drobilla
* NEWS, TODO, src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/gtk/src/ControlGroups.cpp,
src/clients/gtk/src/ControlGroups.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/cmdline.c, src/clients/gtk/src/cmdline.ggo,
src/clients/gtk/src/cmdline.h, src/clients/gtk/src/main.cpp,
src/clients/patch_loader/patch_loader.cpp,
src/engine/ActivateEvent.cpp, src/engine/ActivateEvent.h,
src/engine/AddNodeEvent.cpp, src/engine/AddNodeEvent.h,
src/engine/AddSubpatchEvent.cpp, src/engine/AddSubpatchEvent.h,
src/engine/AlsaDriver.cpp, src/engine/ConnectionEvent.cpp,
src/engine/ConnectionEvent.h, src/engine/CreatePatchEvent.cpp,
src/engine/CreatePatchEvent.h, src/engine/DSSIConfigureEvent.cpp,
src/engine/DSSIConfigureEvent.h, src/engine/DSSIControlEvent.cpp,
src/engine/DSSIControlEvent.h, src/engine/DSSIProgramEvent.cpp,
src/engine/DSSIProgramEvent.h, src/engine/DSSIUpdateEvent.cpp,
src/engine/DSSIUpdateEvent.h, src/engine/DeactivateEvent.cpp,
src/engine/DeactivateEvent.h, src/engine/DestroyPatchEvent.cpp,
src/engine/DestroyPatchEvent.h, src/engine/DisableEvent.cpp,
src/engine/DisableEvent.h, src/engine/DisablePatchEvent.cpp,
src/engine/DisablePatchEvent.h,
src/engine/DisconnectNodeEvent.cpp,
src/engine/DisconnectNodeEvent.h,
src/engine/DisconnectPortEvent.cpp,
src/engine/DisconnectPortEvent.h,
src/engine/DisconnectionEvent.cpp,
src/engine/DisconnectionEvent.h, src/engine/EnableEvent.cpp,
src/engine/EnableEvent.h, src/engine/EnablePatchEvent.cpp,
src/engine/EnablePatchEvent.h, src/engine/Event.cpp,
src/engine/Event.h, src/engine/GetAllObjectsEvent.cpp,
src/engine/GetAllObjectsEvent.h, src/engine/GetControlEvent.cpp,
src/engine/GetControlEvent.h, src/engine/GetMetadataEvent.cpp,
src/engine/GetMetadataEvent.h, src/engine/JackDriver.cpp,
src/engine/LoadPluginsEvent.cpp, src/engine/LoadPluginsEvent.h,
src/engine/MidiControlEvent.cpp, src/engine/MidiControlEvent.h,
src/engine/MidiLearnEvent.cpp, src/engine/MidiLearnEvent.h,
src/engine/NoteOffEvent.cpp, src/engine/NoteOffEvent.h,
src/engine/NoteOnEvent.cpp, src/engine/NoteOnEvent.h,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/OSCSender.cpp, src/engine/OSCSender.h,
src/engine/OmApp.cpp, src/engine/PostProcessor.cpp,
src/engine/RegisterClientEvent.cpp,
src/engine/RegisterClientEvent.h, src/engine/RemoveNodeEvent.cpp,
src/engine/RemoveNodeEvent.h, src/engine/Request.cpp,
src/engine/Request.h, src/engine/SendPluginsEvent.cpp,
src/engine/SendPluginsEvent.h, src/engine/SetControlEvent.cpp,
src/engine/SetControlEvent.h, src/engine/SetControlSlowEvent.cpp,
src/engine/SetControlSlowEvent.h,
src/engine/SetMetadataEvent.cpp, src/engine/SetMetadataEvent.h,
src/engine/SlowEvent.h, src/engine/SlowEventQueue.cpp,
src/engine/UnregisterClientEvent.cpp,
src/engine/UnregisterClientEvent.h, src/engine/main.cpp:
Completely overhauled OSC communication
2005-08-18 14:09 drobilla
* src/engine/AlsaDriver.cpp: Fix building w/o DSSI
2005-08-18 14:07 drobilla
* src/engine/: AlsaDriver.cpp, PostProcessor.h: Fixed building w/o
DSSI
2005-08-18 13:33 drobilla
* src/clients/patches/: Makefile.am, evildistbass.om, hugebass.om:
Added two dirty bass patches
2005-08-18 13:24 drobilla
* src/clients/gtk/src/: LoadPluginWindow.cpp, LoadPluginWindow.h,
PatchWindow.cpp, PatchWindow.h, om_gtk.glade: Fixed new node
placement problem.
2005-08-17 18:03 drobilla
* src/: clients/Comm.cpp, clients/PatchLibrarian.cpp,
clients/gtk/src/OmModule.cpp, engine/DSSIConfigureEvent.cpp,
engine/DSSIProgramEvent.cpp: Fixed DSSI configure key saving.
BROKE PATCH FILE COMPATIBILITY, but only for patches with DSSI
plugins
2005-08-17 15:43 drobilla
* src/clients/gtk/src/: DSSIModule.cpp, DSSIModule.h, OmModule.cpp,
OmModule.h, canvas/Module.cpp, canvas/Module.h: Added ability to
show control windows for DSSI plugins (in addition to the
plugin's GUI)
2005-08-15 20:20 drobilla
* ChangeLog, NEWS, src/clients/Comm.cpp,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/LoadSubpatchWindow.cpp,
src/clients/gtk/src/LoadSubpatchWindow.h,
src/clients/gtk/src/OmPatchBayArea.cpp,
src/clients/gtk/src/OmPatchBayArea.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchWindow.cpp, src/clients/patches/303.om,
src/engine/AddNodeEvent.cpp, src/engine/JackDriver.cpp,
src/engine/Patch.cpp: - Fix for the blocked-event-queue problem
when patch loading (sped up patch loading significantly) -
Minor fix for "Save As" when reconnecting and only having a
relative path name (was saving to current directory)
2005-08-15 15:50 drobilla
* src/clients/gtk/src/: LoadPluginWindow.cpp,
canvas/PatchBayArea.cpp: Fixed add pluginw window closing
2005-08-14 16:24 drobilla
* src/clients/gtk/src/: LoadPluginWindow.cpp, LoadPluginWindow.h,
PatchController.cpp, canvas/PatchBayArea.cpp, canvas/Port.cpp,
canvas/Port.h: Added port hiliting on mouse hover
2005-08-14 13:10 drobilla
* NEWS, TODO, configure.ac, src/clients/gtk/configure.ac,
src/clients/gtk/src/OmGtkStateManager.cpp,
src/clients/gtk/src/OmPatchBayArea.cpp,
src/clients/gtk/src/OmPatchBayArea.h,
src/clients/gtk/src/PatchWindow.h, src/engine/OSCReceiver.cpp,
src/engine/configure.ac: Added "Add Subpatch" item to canvas menu
2005-08-13 17:45 drobilla
* src/clients/patches/saw_detuned.om: Added missed example patch
file
2005-08-13 16:06 drobilla
* src/clients/patches/: 303.om, broken_bass_synth.om,
broken_oscillator.om, house_ensemble.om, kick.om, organ.om,
pad.om, rhodes.om, saw_lp.om, sine.om, trance.om, wah_bass.om:
Updated example patches
2005-08-13 13:30 drobilla
* src/: clients/patches/303.om, clients/patches/Makefile.am,
clients/patches/broken_bass_synth.om, clients/patches/kick.om,
clients/patches/organ.om, clients/patches/pad.om,
clients/patches/quick_bass.om, clients/patches/saw_lp.om,
clients/patches/sine.om, clients/patches/trance.om,
clients/patches/wah_bass.om, engine/SetControlEvent.cpp: -
Removed some debugging print statements - Updated some example
patches (added controls)
2005-08-13 12:45 drobilla
* src/: clients/PatchLibrarian.cpp, clients/PresetModel.h,
clients/gtk/src/ControlGroups.cpp,
clients/gtk/src/GtkClientHooksEvents.h, clients/patches/303.om,
engine/AddNodeEvent.cpp, engine/OSCSender.cpp,
engine/SetControlEvent.cpp: Fixed problem with patch controls not
restoring correctly on initial load
2005-08-10 19:01 drobilla
* src/clients/gtk/src/: ControlGroups.cpp, ControlGroups.h,
ControlPanel.cpp, ControlPanel.h, GtkClientHooksEvents.h,
NodeControlWindow.cpp: Fixed node control window resizing and
various related issues.
2005-08-08 23:38 drobilla
* Doxyfile, src/clients/PatchLibrarian.cpp,
src/clients/PatchModel.h,
src/clients/gtk/src/AddSubpatchWindow.cpp,
src/clients/gtk/src/ControlPanel.cpp,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadSubpatchWindow.cpp,
src/clients/gtk/src/Makefile.am,
src/clients/gtk/src/MessagesWindow.cpp,
src/clients/gtk/src/OmGtkApp.cpp,
src/clients/gtk/src/OmModule.cpp,
src/clients/gtk/src/OmPatchBayArea.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchDescriptionWindow.cpp,
src/clients/gtk/src/PatchDescriptionWindow.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h, src/clients/gtk/src/main.cpp,
src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h: - Added patch
description and author (client-side only) - Reduced heavy
dependancy on PatchModel.h in GTK client
2005-08-07 18:14 drobilla
* src/: clients/PatchLibrarian.cpp, clients/PatchLibrarian.h,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/PatchWindow.cpp, clients/patches/rhodes.om,
engine/OSCReceiver.cpp, engine/OSCSender.cpp: - Fixed saving
problem with subpatches - Messed around with save dialogs etc. a
bit
2005-08-07 15:56 drobilla
* src/clients/: PatchLibrarian.cpp, PatchModel.h: Removed some
unnecessary debug messages
2005-08-07 15:40 drobilla
* TODO, src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/patches/303.om, src/engine/JackDriver.cpp: Fixed
'saving to current directory' problem
2005-08-06 01:54 drobilla
* src/: clients/gtk/src/ControlGroups.cpp,
clients/gtk/src/ControlGroups.h, engine/OSCSender.cpp: - Minor
OSC documentation updates - Fixed problem with feedback when
manipulating control sliders
2005-08-05 20:08 drobilla
* src/clients/gtk/src/: OmPatchBayArea.cpp, OmPatchBayArea.h,
PatchController.cpp, PatchController.h: Added menu to patch
canvas with "add" option that places the node where the menu was
opened.
2005-08-05 19:06 drobilla
* TODO, configure.ac, src/clients/PatchLibrarian.cpp,
src/clients/PatchLibrarian.h, src/clients/gtk/configure.ac,
src/clients/gtk/src/ConfigWindow.cpp,
src/clients/gtk/src/ConfigWindow.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/Makefile.am,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/OmGtkStateManager.cpp,
src/clients/gtk/src/OmGtkStateManager.h,
src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h,
src/engine/configure.ac: Fixed subpatch path problem by adding a
patch path config option to the client. More testing and better
default values required..
2005-08-04 15:16 drobilla
* src/clients/: PatchLibrarian.cpp, gtk/src/GladeFactory.cpp,
patches/fm_operator.om, patches/rhodes.om: Fixed subpatch loading
(path problem)
2005-08-03 18:23 drobilla
* src/engine/MidiTriggerNode.cpp: Fixed new velocity port on
trigger node.
2005-08-03 18:09 drobilla
* src/engine/Patch.cpp: Fixed building without DSSI.
2005-08-03 17:35 drobilla
* src/engine/MidiTriggerNode.cpp: Velocity output on MIDI trigger
node.
2005-08-03 17:27 drobilla
* src/engine/OSCReceiver.cpp: Updated documentation for /quit
command (ordering gotcha)
2005-08-03 15:08 drobilla
* TODO, src/clients/Comm.cpp, src/clients/Comm.h,
src/engine/AlsaDriver.cpp, src/engine/AlsaDriver.h,
src/engine/Array.h, src/engine/DSSIPlugin.cpp,
src/engine/DestroyPatchEvent.cpp, src/engine/MidiInNode.cpp,
src/engine/Patch.cpp, src/engine/Patch.h,
src/engine/configure.ac: Cleanup here and there. My system is
hosed at the moment, so I'm not even sure if the gtk client will
build..
2005-06-22 17:55 drobilla
* TODO, src/clients/PatchLibrarian.cpp, src/clients/PatchModel.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/SubpatchModule.h: Fixed subpatch
loading/saving problems.
2005-06-18 20:24 drobilla
* TODO, src/engine/MidiLearnEvent.cpp, src/engine/MidiLearnEvent.h,
src/engine/NoteOnEvent.cpp, src/engine/NoteOnEvent.h: Added some
missing OSC responses
2005-06-13 15:07 drobilla
* src/: clients/NodeModel.h, clients/PatchModel.cpp,
clients/PatchModel.h, clients/demolition/DemolitionModel.cpp,
clients/demolition/DemolitionModel.h,
clients/demolition/demolition.cpp, engine/DestroyPatchEvent.cpp,
engine/Patch.h: More bugfixes
2005-06-13 02:35 drobilla
* src/: clients/Comm.cpp, clients/Comm.h,
clients/demolition/DemolitionModel.cpp,
clients/demolition/DemolitionModel.h,
clients/demolition/demolition.cpp, clients/gtk/src/OmGtkApp.cpp,
engine/AddNodeEvent.cpp, engine/AddNodeEvent.h,
engine/ConnectionEvent.cpp, engine/ConnectionEvent.h,
engine/CreatePatchEvent.cpp, engine/CreatePatchEvent.h,
engine/CrossThreadMutex.h, engine/DisconnectNodeEvent.cpp,
engine/DisconnectNodeEvent.h, engine/DisconnectPortEvent.cpp,
engine/DisconnectPortEvent.h, engine/DisconnectionEvent.cpp,
engine/DisconnectionEvent.h, engine/EnablePatchEvent.cpp,
engine/EnablePatchEvent.h, engine/InputPort.cpp,
engine/NodeTree.cpp, engine/NodeTree.h, engine/Patch.cpp,
engine/RemoveNodeEvent.cpp, engine/RemoveNodeEvent.h,
engine/SlowEventQueue.cpp, engine/tests/Makefile.am: - Got the
demolition client mostly working - Fixed many, many engine bugs
exposed by demolition client
2005-06-11 21:42 drobilla
* src/: clients/Comm.cpp, engine/OSCSender.cpp: Got rid of unneeded
debug statements
2005-06-11 21:37 drobilla
* TODO, src/engine/OSCSender.cpp, src/engine/SlowEventQueue.cpp:
Fixed patch loading 'pause until module move' problem
2005-06-11 20:57 drobilla
* TODO, src/clients/Comm.cpp,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/om_gtk.glade, src/clients/patches/saw_lp.om,
src/clients/patches/sine.om, src/engine/AddNodeEvent.cpp,
src/engine/AlsaDriver.cpp, src/engine/AlsaDriver.h,
src/engine/AudioInputNode.cpp, src/engine/AudioOutputNode.cpp,
src/engine/ControlInputNode.cpp,
src/engine/ControlOutputNode.cpp,
src/engine/CreatePatchEvent.cpp, src/engine/InputPort.cpp,
src/engine/InternalNode.h, src/engine/JackDriver.cpp,
src/engine/MidiInNode.cpp, src/engine/MidiInNode.h,
src/engine/NodeTree.cpp, src/engine/NodeTree.h,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/OSCSender.cpp, src/engine/OmApp.cpp,
src/engine/OmApp.h, src/engine/Patch.cpp,
src/engine/PluginFactory.cpp, src/engine/Port.cpp,
src/engine/PortInfo.h, src/engine/RegisterClientEvent.cpp,
src/engine/RegisterClientEvent.h, src/engine/SlowEventQueue.cpp,
src/engine/UnregisterClientEvent.cpp, src/engine/main.cpp: -
Fixed numerous memory errors and leaks in engine - Engine
actually cleans up after itself now - Made client OSC message
receiving queue an RT non-blocking queue, better performance
(esp. patch loading) - Bugfix here, bugfix there, valgrind this,
valgrind that..
2005-05-29 22:20 drobilla
* src/clients/gtk/src/DSSIModule.cpp: Fixed DSSI instance tag..
maybe
2005-05-29 22:15 drobilla
* src/clients/patches/Makefile.am: Fixed makefile to be in sync
with patches in repository
2005-05-29 22:06 drobilla
* src/clients/gtk/src/DSSIModule.cpp: Set DSSI instance tag to node
name (instead of just "tag")
2005-05-29 20:07 drobilla
* src/clients/patches/: broken_oscillator.om, drums.om,
karplus_strong.om, karplus_strong_digeridoo.om, kick.om,
organ.om, pad.om, phat.om, rhodes.om, saw_lp.om,
simplepolysynth.om, snare.om, trance.om: Fixed up patches.
2005-05-29 15:45 drobilla
* configure.ac, src/clients/Comm.cpp, src/clients/gtk/configure.ac,
src/clients/gtk/src/GtkClientHooksEvents.h: Fixed uninitialized
values in Comm.cpp, possible cause of segfault bug.
2005-05-28 12:44 drobilla
* TODO, src/clients/gtk/src/OmModule.cpp,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/canvas/Module.cpp,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h,
src/engine/DSSIConfigureEvent.cpp,
src/engine/DSSIProgramEvent.cpp, src/engine/OSCReceiver.cpp:
Failed attempt at middle-dragging on canvas to scroll.
2005-05-25 22:23 drobilla
* src/clients/gtk/src/DSSIModule.cpp: Fixed disabled "show control
window" menu item for DSSI plugins
2005-05-25 16:25 drobilla
* TODO, src/clients/gtk/src/OmModule.cpp,
src/clients/gtk/src/OmPort.h, src/engine/MidiLearnEvent.cpp: -
Fixed general control dialog updating - Fixed MIDI learn control
dialog updating (path was b0rked)
2005-05-25 14:41 drobilla
* TODO, src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/PatchController.cpp,
src/engine/AddNodeEvent.cpp, src/engine/AddNodeEvent.h,
src/engine/CreatePatchEvent.cpp, src/engine/CreatePatchEvent.h,
src/engine/RemoveNodeEvent.cpp, src/engine/RemoveNodeEvent.h,
src/engine/util.cpp: All plugins are now run, regardless of
whether they're connected to the audio outputs or not (to allow
for oscilloscopes etc)
2005-05-25 11:47 drobilla
* src/clients/gtk/src/: NodeControlWindow.cpp, PatchController.cpp,
PatchWindow.cpp, PatchWindow.h, SubpatchModule.cpp, om_gtk.glade:
- More GUI tweaks: - Patch controls now correct at startup
(again..) - Patch window menu reorganization
2005-05-25 00:11 drobilla
* src/: clients/gtk/src/ControlGroups.cpp,
clients/gtk/src/ControlGroups.h,
clients/gtk/src/ControlPanel.cpp, clients/gtk/src/ControlPanel.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/OmModule.cpp, clients/gtk/src/OmModule.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/PatchWindow.cpp, clients/gtk/src/PatchWindow.h,
clients/gtk/src/SubpatchModule.cpp, clients/gtk/src/om_gtk.glade,
engine/DisconnectPortEvent.cpp: Finished(?) new GUI
2005-05-24 18:59 drobilla
* src/clients/gtk/src/GtkClientHooksEvents.h: Fixed segfault on
patch load.
2005-05-24 17:23 drobilla
* src/clients/gtk/src/: ControlGroups.cpp, ControlGroups.h,
ControlPanel.cpp, ControlPanel.h, GtkClientHooksEvents.h,
NodeControlWindow.cpp, NodeControlWindow.h, OmGtkApp.cpp,
OmGtkApp.h, OmModule.cpp, OmPort.cpp, OmPort.h,
PatchController.cpp, PatchController.h, PatchWindow.cpp,
SubpatchModule.cpp, SubpatchModule.h, om_gtk.glade: - More UI
work: - Control dialogs and main window controls now mirror each
other - Port updates (value, range) from server updated correctly
again - More cleanups
2005-05-23 00:44 drobilla
* src/: clients/gtk/src/ControlGroups.cpp,
clients/gtk/src/ControlGroups.h,
clients/gtk/src/ControlPanel.cpp, clients/gtk/src/ControlPanel.h,
clients/gtk/src/Controller.cpp,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/OmGtkApp.cpp, engine/AlsaDriver.cpp: More new UI
work.
2005-05-22 18:18 drobilla
* TODO, src/clients/gtk/src/ControlGroups.cpp,
src/clients/gtk/src/ControlGroups.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/Makefile.am,
src/clients/gtk/src/MessagesWindow.cpp,
src/clients/gtk/src/MessagesWindow.h,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/om_gtk.glade: Yet more work on new main
window UI
2005-05-21 18:11 drobilla
* src/clients/gtk/src/: ControlPanel.cpp, ControlPanel.h: Added
control panel (abstracted out of NodeControlWindow)
2005-05-21 18:02 drobilla
* src/clients/: NodeModel.h, gtk/src/GtkClientHooksEvents.h,
gtk/src/Makefile.am, gtk/src/NodeControlWindow.cpp,
gtk/src/NodeControlWindow.h, gtk/src/OmGtkApp.cpp,
gtk/src/OmGtkApp.h, gtk/src/OmModule.cpp, gtk/src/OmPort.cpp,
gtk/src/PatchController.cpp, gtk/src/PatchController.h,
gtk/src/om_gtk.glade: More work on new main window UI
2005-05-21 04:24 drobilla
* TODO, src/clients/PatchModel.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/GladeFactory.cpp,
src/clients/gtk/src/GladeFactory.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/LoadPatchWindow.cpp,
src/clients/gtk/src/Makefile.am, src/clients/gtk/src/OmGtk.cpp,
src/clients/gtk/src/OmGtk.h, src/clients/gtk/src/OmGtkApp.cpp,
src/clients/gtk/src/OmGtkApp.h, src/clients/gtk/src/OmModule.cpp,
src/clients/gtk/src/OmPatchBayArea.cpp,
src/clients/gtk/src/OmPatchBayArea.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/main.cpp, src/clients/gtk/src/om_gtk.glade,
src/engine/OSCSender.cpp: Work on new main window UI (unfinished)
2005-05-20 02:29 drobilla
* configure.ac, src/clients/Makefile.am: Fixed build problem where
gtk client wouldn't build
2005-05-19 21:24 drobilla
* src/engine/MidiNoteNode.cpp: Fixed note offs for thorwil's broken
keyboard from crazy land.
2005-05-19 19:55 drobilla
* NEWS, src/clients/PortModel.h,
src/clients/gtk/src/ControlGroups.cpp,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/PatchController.cpp,
src/engine/OSCSender.cpp: Completed control enable/disabling on
port disconnect/connect
2005-05-19 18:39 drobilla
* src/clients/gtk/src/OmGtkObject.h: Added missing file
(OmGtkObject.h)
2005-05-19 16:04 drobilla
* src/: clients/Comm.cpp, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchWindow.cpp, engine/AddNodeEvent.cpp,
engine/AudioInputNode.cpp, engine/AudioOutputNode.cpp,
engine/ControlOutputNode.cpp, engine/CreatePatchEvent.cpp,
engine/InputPort.cpp, engine/JackDriver.cpp,
engine/LADSPAPlugin.cpp, engine/MidiControlNode.cpp,
engine/MidiTriggerNode.cpp, engine/OutputPort.cpp,
engine/Port.cpp, engine/PortInfo.h, engine/PostProcessor.cpp,
engine/PostProcessor.h: - Fixed brokenness from refactoring -
Fixed issue with uninitialized port values
2005-05-19 05:49 drobilla
* src/clients/gtk/src/: OmModule.cpp, OmModule.h, OmPort.h,
PatchController.cpp, main.cpp: Minor code tidying.
2005-05-19 05:41 drobilla
* src/clients/gtk/src/: DSSIModule.cpp, DSSIModule.h,
GtkClientHooksEvents.h, Makefile.am, OmGtkApp.cpp, OmGtkApp.h,
OmModule.cpp, OmModule.h, OmPatchBayArea.h, OmPort.cpp, OmPort.h,
PatchController.cpp, PatchController.h, PatchWindow.cpp,
PatchWindow.h, PluginModule.cpp, PluginModule.h,
SubpatchModule.cpp, SubpatchModule.h: - Refactored Gtk client
(mostly in the area of where events get delivered to) - Cleanups,
etc.
2005-05-17 00:06 drobilla
* src/: clients/patches/kick.om, engine/JackDriver.h: Added a
workaround for jack_frame_time not being monotonically
increasing.
2005-05-16 21:30 drobilla
* TODO, src/clients/PortModel.h,
src/clients/gtk/src/ControlGroups.cpp,
src/clients/gtk/src/ControlGroups.h,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/NodeControlWindow.h,
src/clients/gtk/src/OmModule.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/PluginModule.h,
src/clients/patches/fm_operator.om, src/engine/JackDriver.cpp,
src/engine/MidiInNode.cpp, src/engine/Patch.h,
src/engine/PluginFactory.cpp, src/engine/PluginFactory.h: - Fixed
build script problems (always building without LADSPA support) -
Disabling controls for connected ports in Gtk client
2005-05-15 04:22 drobilla
* src/clients/Makefile.am: Fixed problem with new build scripts
2005-05-15 03:41 drobilla
* TODO, configure.ac, src/clients/Comm.cpp,
src/clients/Makefile.am, src/clients/gtk/configure.ac,
src/engine/AlsaDriver.cpp, src/engine/AlsaDriver.h,
src/engine/DSSIPlugin.cpp, src/engine/DSSIPlugin.h,
src/engine/DestroyPatchEvent.cpp, src/engine/JackDriver.cpp,
src/engine/Makefile.am, src/engine/MidiInNode.cpp,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/OmApp.cpp, src/engine/Patch.h,
src/engine/PluginFactory.cpp, src/engine/PluginFactory.h,
src/engine/configure.ac: Updated build scripts to make GTK UI,
patch loader, alsa, ladspa, and dssi support optional.
2005-05-12 18:19 drobilla
* src/: clients/patch_loader/patch_loader.cpp,
engine/UnregisterClientEvent.cpp: Actually fixed patch loading
client and register problem. For real this time!
2005-05-12 18:04 drobilla
* src/: clients/Comm.cpp, clients/patch_loader/patch_loader.cpp,
engine/Makefile.am, engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/RegisterClientEvent.cpp, engine/RegisterClientEvent.h,
engine/UnregisterClientEvent.cpp, engine/UnregisterClientEvent.h:
- Fixed patch_loader client - Fixed problem with
register/unregister if a client unregisters with events still
pending
2005-05-12 00:50 drobilla
* AUTHORS, ChangeLog, NEWS, README, THANKS, TODO, configure.ac,
src/clients/gtk/ChangeLog, src/clients/gtk/README,
src/clients/gtk/configure.ac, src/clients/patches/saw_lp.om,
src/engine/OSCReceiver.cpp, src/engine/OSCSender.cpp: Minor
updates (documentation, etc) for initial release.
2005-05-10 19:54 drobilla
* TODO, src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/demolition/cmdline.c,
src/clients/demolition/cmdline.h,
src/clients/demolition/demolition.cpp,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h, src/clients/gtk/src/cmdline.c,
src/clients/gtk/src/cmdline.ggo, src/clients/gtk/src/cmdline.h,
src/clients/gtk/src/main.cpp, src/clients/patch_loader/cmdline.c,
src/clients/patch_loader/cmdline.ggo,
src/clients/patch_loader/cmdline.h,
src/clients/patch_loader/patch_loader.cpp,
src/engine/OSCReceiver.cpp, src/engine/OSCSender.cpp,
src/engine/OSCSender.h: Option for user to specify host/port to
register with gtk client (to work around damn networking issues)
2005-05-08 05:44 drobilla
* src/engine/: DeactivateEvent.cpp, DisableEvent.cpp: Added some
forgotten files. Again. As usual.
2005-05-08 05:19 drobilla
* TODO, src/clients/gtk/src/PluginModule.cpp: - Fixed problem with
nodes moving same named nodes in parent patches
2005-05-07 22:39 drobilla
* src/engine/: DeactivateEvent.h, DisableEvent.h: Added some
forgotten files.
2005-05-07 22:37 drobilla
* src/engine/: AudioInputNode.cpp, AudioOutputNode.cpp: - Fixed
segfault issue with last commit's patch load performance stuff
2005-05-07 22:25 drobilla
* TODO, configure.ac, src/clients/ClientHooks.h,
src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/DummyClientHooks.h, src/clients/PatchLibrarian.cpp,
src/clients/demolition/DemolitionClientHooks.cpp,
src/clients/demolition/DemolitionClientHooks.h,
src/clients/demolition/demolition.cpp,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/OmPatchBayArea.cpp,
src/clients/gtk/src/OmPatchBayArea.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/canvas/Module.cpp,
src/clients/gtk/src/canvas/Module.h,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h,
src/clients/gtk/src/canvas/Port.cpp,
src/clients/gtk/src/canvas/Port.h,
src/clients/patch_loader/patch_loader.cpp,
src/engine/ActivateEvent.cpp, src/engine/ActivateEvent.h,
src/engine/AddNodeEvent.cpp, src/engine/AlsaDriver.cpp,
src/engine/AlsaDriver.h, src/engine/AudioInputNode.cpp,
src/engine/AudioInputNode.h, src/engine/AudioOutputNode.cpp,
src/engine/AudioOutputNode.h, src/engine/ControlInputNode.cpp,
src/engine/ControlInputNode.h, src/engine/ControlOutputNode.cpp,
src/engine/ControlOutputNode.h, src/engine/CreatePatchEvent.cpp,
src/engine/DSSIConfigureEvent.cpp, src/engine/DSSIPlugin.h,
src/engine/DestroyPatchEvent.cpp,
src/engine/DisablePatchEvent.cpp,
src/engine/DisconnectionEvent.cpp, src/engine/EnableEvent.cpp,
src/engine/EnableEvent.h, src/engine/EnablePatchEvent.cpp,
src/engine/GetAllObjectsEvent.cpp, src/engine/InternalNode.h,
src/engine/JackDriver.cpp, src/engine/JackDriver.h,
src/engine/Makefile.am, src/engine/Node.h,
src/engine/NodeBase.cpp, src/engine/NodeBase.h,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/OSCSender.cpp, src/engine/OSCSender.h,
src/engine/OmApp.cpp, src/engine/OmApp.h, src/engine/Patch.cpp,
src/engine/Patch.h, src/engine/RemoveNodeEvent.cpp,
src/engine/SetControlSlowEvent.cpp, src/engine/SlowEvent.h,
src/engine/SlowEventQueue.cpp, src/engine/SlowEventQueue.h,
src/engine/StartEvent.cpp, src/engine/StartEvent.h,
src/engine/StopEvent.cpp, src/engine/StopEvent.h: - Fixed problem
with slow events depending on each other (ie create patch
immediately followed by add node, add node used to fail if patch
event wasn't finished yet) - Patch specific enable/disable -
Vastly improved patch loading (faster, better) - Updated canvas
widget to new Patchage version - Numerous bugfixes - Fixed
HORRIBLE problem with OSC communication (sending notifications to
clients many, many times, etc) - About 900 other things I've
probably forgotten. This commit is too big - Fixed race issue
with jack ports introduced by above. May be more...
2005-05-03 22:41 drobilla
* TODO, src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/om_gtk.glade, src/engine/ConnectionEvent.cpp,
src/engine/DisablePatchEvent.cpp, src/engine/DisablePatchEvent.h,
src/engine/DisconnectNodeEvent.cpp,
src/engine/DisconnectNodeEvent.h,
src/engine/DisconnectionEvent.cpp,
src/engine/EnablePatchEvent.cpp, src/engine/EnablePatchEvent.h,
src/engine/JackDriver.cpp, src/engine/Makefile.am,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/Patch.cpp, src/engine/Patch.h: - Ability to disable
individual patches - Don't compute process order when not
necessary
2005-05-01 17:09 drobilla
* TODO, src/clients/gtk/src/PatchWindow.cpp,
src/engine/OSCReceiver.cpp: Fixed register_client callback
(host/port version)
2005-04-30 01:30 drobilla
* TODO, src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h, src/engine/InputPort.cpp,
src/engine/OSCReceiver.cpp, src/engine/SetControlEvent.h,
src/engine/SetControlSlowEvent.h: - Fixed build errors - Fixed
port ranges on control windows for top level patches
2005-04-29 23:22 drobilla
* src/clients/gtk/src/DSSIModule.cpp: Turned off verbosity in DSSI
UI search
2005-04-29 23:20 drobilla
* Makefile.am, TODO, src/clients/MetadataModel.h,
src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/DSSIModule.cpp,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/Makefile.am, src/clients/gtk/src/OmPort.cpp,
src/engine/DSSIControlEvent.h, src/engine/JackDriver.cpp,
src/engine/NodeBase.cpp, src/engine/OSCReceiver.cpp,
src/engine/OSCReceiver.h, src/engine/Om.h,
src/engine/SetControlEvent.h, src/engine/SetControlSlowEvent.h,
src/engine/main.cpp: Fixed gtk client to use DSSI_PATH to find
DSSI UIs
2005-04-26 12:43 lfactor
* om.spec: added spec file
2005-04-23 20:13 drobilla
* TODO, src/clients/Comm.cpp, src/clients/PatchLibrarian.cpp,
src/clients/patches/trance.om, src/engine/JackDriver.cpp,
src/engine/main.cpp, src/engine/util.h: Actually fixed denormals,
for real this time. Woot.
2005-04-23 00:34 drobilla
* src/clients/gtk/src/NodeControlWindow.cpp: Fixed controls not
working issue, maybe?
2005-04-22 23:27 drobilla
* src/: clients/demolition/DemolitionClientHooks.cpp,
clients/demolition/DemolitionClientHooks.h,
clients/demolition/DemolitionModel.cpp,
clients/demolition/DemolitionModel.h,
clients/demolition/Makefile.am, clients/demolition/cmdline.c,
clients/demolition/cmdline.h, clients/demolition/demolition.cpp,
engine/OSCReceiver.cpp, engine/OSCReceiver.h: - Added demolition
client files so things build (does nothing yet) - Added second
register_client OSC command with specified host/port
2005-04-21 16:36 drobilla
* src/clients/patches/: house_ensemble.om, quick_bass.om: Added a
few patches.
2005-04-21 15:44 drobilla
* TODO, configure.ac, src/clients/Makefile.am,
src/clients/PatchModel.cpp, src/clients/PatchModel.h,
src/clients/gtk/src/ControlGroups.cpp,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/SubpatchModule.h,
src/clients/gtk/src/om_gtk.glade, src/clients/patches/303.om,
src/clients/patches/kick.om, src/engine/AlsaDriver.cpp,
src/engine/MidiLearnEvent.cpp, src/engine/MidiLearnEvent.h,
src/engine/OSCReceiver.cpp, src/engine/OSCSender.cpp,
src/engine/PathParser.cpp, src/engine/SetControlEvent.cpp,
src/engine/SetControlSlowEvent.cpp,
src/engine/SlowEventQueue.cpp: - Lots of stuff - LCA hacking
without a net connection - Node control windows for top level
patches - Fix of engine segfault, hopefully
2005-04-18 18:04 drobilla
* configure.ac, src/clients/Makefile.am,
src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/ControlGroups.cpp,
src/clients/patch_loader/Makefile.am,
src/clients/patches/Makefile.am, src/engine/GetControlEvent.cpp,
src/engine/configure.ac: - Fixed build issues so 'make dists'
gives a usable tarball - Removed all references to NAN so
building with -ffast-math works
2005-04-18 16:22 drobilla
* TODO, src/clients/gtk/src/OmGtkApp.cpp,
src/engine/OSCReceiver.cpp, src/engine/OSCSender.cpp,
src/engine/PluginFactory.cpp: Fixed duplicate plugins problem
2005-04-18 03:12 drobilla
* TODO, src/clients/gtk/src/ControlGroups.cpp,
src/clients/gtk/src/om_gtk.glade: Fixed spinbuttons in node
control window
2005-04-18 02:29 drobilla
* src/: clients/gtk/src/Makefile.am,
clients/gtk/src/PatchWindow.cpp, clients/gtk/src/PatchWindow.h,
clients/gtk/src/canvas/Makefile.am, engine/Makefile.am: Fixed
File->Close on patch windows to actually work
2005-04-18 02:24 drobilla
* src/clients/patches/Makefile.am: Added Makefile.am for patches
(for installing)
2005-04-18 01:46 drobilla
* TODO, configure.ac, src/clients/Makefile.am,
src/clients/NodeModel.h, src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/OmPort.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/SubpatchModule.h, src/clients/patches/303.om,
src/clients/patches/fm_operator.om,
src/clients/patches/rhodes.om, src/engine/AlsaDriver.cpp,
src/engine/DSSIPlugin.cpp, src/engine/DSSIPlugin.h,
src/engine/MidiInNode.cpp, src/engine/MidiInNode.h,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/Patch.cpp, src/engine/Patch.h,
src/engine/RemoveNodeEvent.cpp, src/engine/main.cpp: Changed gtk
client to show windows for subpatches explicitly created by user
2005-04-17 16:24 drobilla
* TODO, src/clients/Comm.cpp,
src/clients/gtk/src/LoadSubpatchWindow.cpp,
src/clients/gtk/src/LoadSubpatchWindow.h,
src/clients/gtk/src/om_gtk.glade, src/clients/patches/rhodes.om,
src/engine/AlsaDriver.cpp, src/engine/DestroyPatchEvent.cpp,
src/engine/DisconnectionEvent.cpp, src/engine/JackDriver.cpp,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/OSCSender.cpp: Fixed communication, hopefully should
work across network and on machines that don't self-resolve
through the lo interface
2005-04-17 03:21 drobilla
* TODO, src/clients/patches/fm_operator.om,
src/clients/patches/rhodes.om: Added simple FM rhodes patch.
2005-04-17 02:38 drobilla
* src/: clients/ControlModel.h, clients/NodeModel.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/OmModule.h, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PluginModule.cpp, clients/gtk/src/PluginModule.h,
engine/AudioInputNode.cpp, engine/AudioOutputNode.cpp,
engine/ControlInputNode.cpp, engine/ControlOutputNode.cpp,
engine/OSCSender.cpp, engine/OSCSender.h: Port range and control
value saving for subpatches
2005-04-16 23:15 drobilla
* TODO, src/engine/AlsaDriver.cpp, src/engine/Connection.h,
src/engine/CreatePatchEvent.cpp, src/engine/InputPort.cpp,
src/engine/InputPort.h, src/engine/List.h,
src/engine/NodeBase.cpp, src/engine/Patch.cpp,
src/engine/PluginFactory.cpp, src/engine/main.cpp,
src/engine/util.cpp: Zero copying for one-to-one connections -
engine overhead significantly improved
2005-04-16 20:42 drobilla
* TODO, src/clients/gtk/src/NodeControlWindow.cpp,
src/engine/AudioInputNode.cpp, src/engine/AudioOutputNode.cpp,
src/engine/ControlInputNode.cpp,
src/engine/ControlOutputNode.cpp,
src/engine/CreatePatchEvent.cpp, src/engine/InputNode.h,
src/engine/InternalNode.h, src/engine/NodeBase.cpp,
src/engine/OutputNode.h, src/engine/Patch.cpp,
src/engine/PluginFactory.cpp: Made polyphonic subpatches actually
work with polyphonic connections coming in/out
2005-04-16 19:21 drobilla
* TODO, src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/PatchLibrarian.cpp: Fixed loading of patches at
already existing paths.
2005-04-16 17:51 drobilla
* TODO, src/clients/Comm.cpp, src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/NodeControlWindow.h,
src/clients/gtk/src/OmModule.h,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/PluginModule.h,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/SubpatchModule.h, src/engine/OSCReceiver.cpp,
src/engine/OSCSender.cpp: - Fixed problem with subpatch nodes not
showing up on client reconnect - Allowed viewing of node control
window for subpatches
2005-04-16 14:47 drobilla
* TODO, src/clients/Comm.cpp, src/engine/DisconnectNodeEvent.h,
src/engine/DisconnectPortEvent.h, src/engine/JackDriver.cpp,
src/engine/LoadPluginsEvent.cpp, src/engine/LoadPluginsEvent.h,
src/engine/Makefile.am, src/engine/OSCReceiver.cpp,
src/engine/OSCSender.cpp, src/engine/OmApp.cpp,
src/engine/StartEvent.cpp, src/engine/StartEvent.h,
src/engine/StopEvent.cpp, src/engine/StopEvent.h: Fixed 'client
not always starting' issue
2005-04-15 18:34 drobilla
* TODO, src/clients/PatchLibrarian.cpp,
src/clients/patch_loader/patch_loader.cpp,
src/engine/OSCReceiver.cpp, src/engine/OSCSender.cpp,
src/engine/PluginFactory.cpp, src/engine/PluginFactory.h: Fixed
subpatch path saving bug
2005-04-15 17:39 drobilla
* TODO, src/clients/gtk/src/canvas/Module.cpp,
src/engine/DisconnectAllEvent.cpp,
src/engine/DisconnectAllEvent.h,
src/engine/DisconnectNodeEvent.cpp,
src/engine/DisconnectNodeEvent.h,
src/engine/DisconnectPortEvent.cpp,
src/engine/DisconnectPortEvent.h,
src/engine/DisconnectionEvent.h, src/engine/InputNode.h,
src/engine/InternalNode.h, src/engine/Makefile.am,
src/engine/OSCReceiver.cpp, src/engine/OutputNode.h,
src/engine/RemoveNodeEvent.cpp, src/engine/RemoveNodeEvent.h:
Fixed bug when removing connected input/output nodes
2005-04-15 13:41 drobilla
* TODO, src/clients/Comm.cpp, src/clients/gtk/src/OmGtkApp.cpp,
src/clients/gtk/src/om_gtk.glade, src/clients/patches/kick.om,
src/engine/DestroyPatchEvent.cpp,
src/engine/GetAllObjectsEvent.cpp, src/engine/JackDriver.cpp,
src/engine/JackDriver.h, src/engine/Makefile.am,
src/engine/OSCReceiver.cpp, src/engine/OSCSender.cpp,
src/engine/OSCSender.h, src/engine/PluginFactory.cpp,
src/engine/SendPluginsEvent.cpp, src/engine/SendPluginsEvent.h: -
Fixed bug with all plugins not showing up - Fixed bug where
client wouldn't always connect on first try
2005-04-13 01:50 drobilla
* src/: clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/NodeControlWindow.h, clients/gtk/src/OmModule.h,
clients/patches/303.om, clients/patches/phat.om,
engine/JackDriver.cpp: Updated a few patches.
2005-04-13 00:21 drobilla
* src/clients/gtk/src/: LoadPluginWindow.cpp,
LoadSubpatchWindow.cpp, OmModule.h, OmPort.h,
PatchController.cpp, PluginModule.cpp, PluginModule.h,
SubpatchModule.cpp, SubpatchModule.h, canvas/Module.cpp: Fixed
some bugs introduced in the last few committs (mostly subpatch
related)
2005-04-12 22:54 drobilla
* src/clients/ClientPathParser.h: Added forgotten file.
2005-04-12 22:37 drobilla
* TODO, configure.ac, src/clients/Comm.cpp,
src/clients/ControlModel.h, src/clients/Makefile.am,
src/clients/MetadataModel.h, src/clients/NodeModel.h,
src/clients/PatchLibrarian.cpp, src/clients/PortModel.h,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/LoadPatchWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/NodeControlWindow.h,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/OmModule.h, src/clients/gtk/src/OmPort.cpp,
src/clients/gtk/src/OmPort.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/canvas/Module.cpp,
src/clients/gtk/src/canvas/Module.h,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h,
src/clients/gtk/src/canvas/Port.cpp,
src/clients/gtk/src/canvas/Port.h, src/clients/patches/pad.om,
src/common/Queue.h, src/engine/OmApp.cpp,
src/engine/SlowEventQueue.cpp: Made patch loading about 5 times
as fast, as the expense of anti aliasing :(
2005-04-09 21:13 drobilla
* src/: clients/patches/pad.om, clients/patches/phat.om,
clients/patches/sine.om, engine/AlsaDriver.cpp,
engine/DisconnectAllEvent.cpp, engine/Patch.cpp, engine/Patch.h,
engine/main.cpp: - Denormal fix actually compiles now. Still
doesn't work. Death to Intel. - Added a few patches
2005-04-09 02:19 drobilla
* src/engine/main.cpp: Added denormal fix from SWH. I think it
works... need feedback
2005-04-09 01:47 drobilla
* src/clients/: PatchLibrarian.cpp, gtk/src/om_gtk.glade: Fixed
path problem in subpatch saving/loading
2005-04-09 00:28 drobilla
* src/clients/: NodeModel.h, PatchModel.h,
gtk/src/GtkClientHooksEvents.h, gtk/src/OmModule.h,
gtk/src/PatchController.cpp: Fixed subpatches showing up as poly
when they shouldn't, and vice versa.
2005-04-08 22:39 drobilla
* src/clients/gtk/src/: LoadSubpatchWindow.cpp,
PatchController.cpp: fixed inactive widgets in LoadSubpatchWindow
2005-04-08 22:13 drobilla
* src/clients/PatchLibrarian.cpp: Fixed patch saving if the user
didn't name a patch (!?)
2005-04-08 20:41 drobilla
* autogen.sh, src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/patches/trance.om, src/engine/PluginFactory.cpp:
Worked a bit on sample patch trance.om Removed -Wall from
autogen.sh, which makes old version angry
2005-04-06 23:03 drobilla
* TODO, src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/om_gtk.glade: Search-as-you-type in the load
plugin dialog.
2005-04-05 23:43 drobilla
* src/: clients/Comm.cpp, clients/Comm.h, clients/NodeModel.h,
clients/PatchLibrarian.cpp, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PluginModule.cpp, engine/Makefile.am,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/SetControlSlowEvent.cpp, engine/SetControlSlowEvent.h:
Fixed problem with control values not being saved properly unless
you had viewed control window for nodes.
2005-04-05 22:27 drobilla
* src/clients/patches/: 303.om, broken_bass_synth.om, kick.om,
organ.om, wah_bass.om: Fixed up some example patches.
2005-04-05 11:51 drobilla
* TODO, src/engine/AUTHORS, src/engine/AlsaDriver.cpp,
src/engine/PluginFactory.cpp: - Fixed problem with not starting
ALSA midi thread w/o permissions - Added missing
src/engine/AUTHORS file
2005-04-01 16:19 drobilla
* TODO, src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/AddSubpatchWindow.cpp,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/LoadPatchWindow.cpp,
src/clients/patches/organ.om: Loading of patches remembers
filename, so Save works without prompting.
2005-04-01 13:54 drobilla
* TODO, autogen.sh, configure.ac, src/clients/PatchLibrarian.cpp,
src/clients/gtk/configure.ac,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/PluginModule.h, src/clients/patches/303.om,
src/clients/patches/COPYING,
src/clients/patches/broken_bass_synth.om,
src/clients/patches/broken_oscillator.om,
src/clients/patches/drums.om,
src/clients/patches/karplus_strong.om,
src/clients/patches/karplus_strong_digeridoo.om,
src/clients/patches/kick.om, src/clients/patches/organ.om,
src/clients/patches/simplepolysynth.om,
src/clients/patches/snare.om, src/clients/patches/trance.om,
src/clients/patches/wah_bass.om, src/engine/COPYING,
src/engine/ChangeLog, src/engine/INSTALL, src/engine/NEWS,
src/engine/README, src/engine/autogen.sh,
src/engine/configure.ac: - Added example patches - Engine now has
own autoconf stuff and can be built independantly
2005-03-30 19:08 drobilla
* src/: clients/NodeModel.h, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmGtkApp.h, clients/gtk/src/PatchController.cpp,
engine/AlsaDriver.cpp, engine/Connection.cpp,
engine/JackDriver.h, engine/OmApp.cpp, engine/main.cpp: Fixed
another subpatch removing bug (introduced by the last "fix")
2005-03-30 03:43 drobilla
* src/engine/: Connection.h, DestroyPatchEvent.cpp,
DestroyPatchEvent.h, DisconnectAllEvent.cpp, RemoveNodeEvent.cpp,
RemoveNodeEvent.h: Fixed removing of deepy nested, heavily
interconnected subpatches
2005-03-30 01:05 drobilla
* src/: clients/PatchLibrarian.cpp, clients/PatchLibrarian.h,
clients/PatchModel.h, clients/gtk/src/AddSubpatchWindow.cpp,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/LoadPatchWindow.cpp,
clients/gtk/src/LoadSubpatchWindow.cpp,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmModule.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchWindow.cpp,
clients/gtk/src/PluginModule.cpp, clients/gtk/src/PluginModule.h,
clients/gtk/src/SubpatchModule.cpp,
clients/gtk/src/SubpatchModule.h,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h,
clients/patch_loader/patch_loader.cpp, engine/OSCReceiver.cpp:
Fixed placement of loaded subpatches' modules, cleaned up some
other things in the process.
2005-03-29 22:13 drobilla
* src/: clients/Comm.cpp, clients/NodeModel.h,
clients/PatchLibrarian.cpp, clients/PatchModel.cpp,
clients/PatchModel.h, clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchWindow.cpp,
clients/gtk/src/SubpatchModule.cpp,
clients/gtk/src/SubpatchModule.h, common/PluginInfo.h,
engine/Patch.cpp: - Fixed loading of subpatch module locations -
Unified NodeModel and PatchModel (client-side)
2005-03-29 20:40 drobilla
* src/: clients/Comm.cpp, clients/Comm.h, clients/NodeModel.h,
clients/PatchLibrarian.cpp, clients/gtk/src/ControlGroups.cpp,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/OmModule.h, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/PatchWindow.cpp,
clients/gtk/src/PluginModule.cpp, clients/gtk/src/PluginModule.h,
clients/gtk/src/SubpatchModule.cpp,
clients/gtk/src/SubpatchModule.h,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h, engine/Connection.h,
engine/DestroyPatchEvent.cpp, engine/DestroyPatchEvent.h,
engine/DisconnectAllEvent.cpp, engine/DisconnectAllEvent.h,
engine/LADSPAPlugin.cpp, engine/OSCReceiver.cpp,
engine/OSCSender.cpp, engine/Patch.h, engine/Port.h: - Numerous
bugfixes - Fixed removal of connected subpatches - Vastly
improved DisconnectAllEvent as a consequence of above - Improved
gtk client communication stuff - still too slow though
2005-03-28 22:37 drobilla
* src/: clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h, engine/MidiNoteNode.cpp,
engine/OSCReceiver.cpp, engine/OSCReceiver.h, engine/Port.cpp,
engine/Port.h, engine/util.h: - MIDI is actually sample-accurate
now (oops!) - Trigger port on MIDI note node now works (so envs
will retrigger) (oops2!)
2005-03-28 20:10 drobilla
* src/: clients/PortModel.h, engine/DisconnectAllEvent.cpp,
engine/DisconnectAllEvent.h, engine/DisconnectionEvent.cpp,
engine/DisconnectionEvent.h, engine/InputPort.cpp,
engine/NodeTree.cpp, engine/OmObject.h, engine/Patch.cpp,
engine/TransportNode.cpp, engine/tests/Makefile.am: Fixed a few
removing-related bugs
2005-03-28 14:31 drobilla
* TODO, src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/MetadataModel.h, src/clients/NodeModel.h,
src/clients/PatchLibrarian.cpp, src/clients/PortModel.h,
src/clients/gtk/src/ControlGroups.cpp,
src/clients/gtk/src/ControlGroups.h,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/NodeControlWindow.h,
src/clients/gtk/src/OmModule.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/PluginModule.h, src/engine/OSCSender.cpp:
Saving of port ranges.
2005-03-28 00:31 drobilla
* src/engine/: OSCReceiver.cpp, OSCSender.cpp: Disabled debug OSC
output.
2005-03-28 00:10 drobilla
* src/clients/gtk/src/: ControlGroups.cpp, Controller.cpp,
Controller.h, GtkClientHooksEvents.h: Added missing include
2005-03-27 23:27 drobilla
* src/: clients/gtk/src/ControlGroups.cpp,
clients/gtk/src/ControlGroups.h, clients/gtk/src/Makefile.am,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/NodeControlWindow.h, engine/AudioInputNode.cpp,
engine/AudioOutputNode.cpp: Different widgets for toggle and
integer controls.
2005-03-27 19:59 drobilla
* src/engine/: DisconnectAllEvent.cpp, DisconnectAllEvent.h: Forgot
to add files. Again. As usual.
2005-03-27 19:53 drobilla
* src/engine/MidiNoteNode.cpp: - Made velocity of note in node
normalized [0, 1] instead of [0, 127]
2005-03-27 19:37 drobilla
* TODO: Brought TODO up to date
2005-03-27 19:36 drobilla
* TODO, configure.ac, src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h, src/clients/gtk/src/OmModule.h,
src/clients/gtk/src/main.cpp,
src/clients/gtk/src/canvas/Module.cpp,
src/engine/DisconnectionEvent.cpp,
src/engine/DisconnectionEvent.h, src/engine/InputPort.cpp,
src/engine/InputPort.h, src/engine/Makefile.am,
src/engine/Node.h, src/engine/NodeBase.h,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/OutputPort.h, src/engine/RemoveNodeEvent.cpp,
src/engine/RemoveNodeEvent.h: - disconnect_all command - Removing
of connected nodes - Minor documentation updates
2005-03-26 20:36 drobilla
* TODO, src/clients/Comm.cpp, src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/OmGtkApp.cpp,
src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/canvas/Module.cpp, src/common/PortInfo.h,
src/common/Queue.h, src/engine/AlsaDriver.cpp,
src/engine/JackDriver.cpp, src/engine/Maid.cpp,
src/engine/Makefile.am, src/engine/OSCReceiver.cpp,
src/engine/OSCSender.cpp, src/engine/OSCSender.h,
src/engine/PluginFactory.cpp, src/engine/PortInfo.h,
src/engine/PostProcessor.cpp, src/engine/Queue.h,
src/engine/SetControlEvent.cpp, src/engine/tests/queue_test.cpp:
- Fixed loading patches saved as mono as polyphonic pathches -
Sped up client side event stuff using lock free queue instead of
std::queue - Fixed a segfault on patch load (and other events) -
Changed Queue API to match that of std::queue
2005-03-26 16:21 drobilla
* TODO, src/clients/Comm.cpp, src/clients/gtk/src/Controller.h,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/om_gtk.glade, src/engine/OSCReceiver.cpp,
src/engine/OSCSender.cpp: Fixed naming problem with adding
multiple nodes quickly.
2005-03-22 14:24 drobilla
* src/engine/: TransportNode.cpp, TransportNode.h: Forgot to add
files, as usual.
2005-03-22 02:05 drobilla
* src/engine/: JackDriver.cpp, JackDriver.h, Makefile.am,
MidiTriggerNode.h, PluginFactory.cpp: Preliminary jack transport
node
2005-03-21 23:32 drobilla
* src/: clients/Comm.cpp, clients/PatchLibrarian.cpp,
clients/gtk/src/Makefile.am, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmGtkApp.h, clients/gtk/src/PatchWindow.cpp,
clients/gtk/src/PatchWindow.h, engine/OSCReceiver.cpp:
Changed....... something.. I guess.
2005-03-21 21:39 drobilla
* TODO, src/clients/Comm.cpp, src/engine/OSCReceiver.cpp,
src/engine/OSCSender.cpp: Fixed the 'subpatch placement on client
reattach' problem
2005-03-21 20:46 drobilla
* TODO, src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/om-icon.png,
src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/engine/AlsaDriver.cpp, src/engine/AlsaDriver.h,
src/engine/DSSIPlugin.cpp, src/engine/DestroyPatchEvent.cpp,
src/engine/JackDriver.cpp, src/engine/MidiControlEvent.cpp,
src/engine/MidiControlEvent.h, src/engine/MidiLearnEvent.cpp,
src/engine/MidiLearnEvent.h, src/engine/NoteOffEvent.cpp,
src/engine/NoteOffEvent.h, src/engine/NoteOnEvent.cpp,
src/engine/NoteOnEvent.h, src/engine/OSCReceiver.cpp,
src/engine/Patch.cpp, src/engine/Patch.h,
src/engine/SlowEventQueue.cpp, src/engine/util.cpp: Added
individual ALSA Midi port for each patch.
2005-03-20 21:27 drobilla
* src/clients/gtk/src/LoadPluginWindow.cpp: Made the columns in
LoadPluginWindow resizable
2005-03-20 20:22 drobilla
* src/clients/: Comm.cpp, gtk/src/LoadPluginWindow.cpp,
gtk/src/LoadPluginWindow.h: Oops - committed at a stupid time,
fixed build errors
2005-03-20 00:06 drobilla
* TODO, src/clients/Comm.cpp, src/clients/NodeModel.h,
src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/AddSubpatchWindow.cpp,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/DSSIModule.cpp,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/NewPatchWindow.cpp,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/om_gtk.glade, src/common/PluginInfo.h,
src/engine/AudioInputNode.cpp, src/engine/AudioOutputNode.cpp,
src/engine/ControlInputNode.cpp,
src/engine/ControlOutputNode.cpp,
src/engine/DSSIConfigureEvent.cpp,
src/engine/DSSIControlEvent.cpp, src/engine/DSSIProgramEvent.cpp,
src/engine/DSSIUpdateEvent.cpp, src/engine/MidiControlNode.cpp,
src/engine/MidiLearnEvent.cpp, src/engine/MidiNoteNode.cpp,
src/engine/MidiTriggerNode.cpp, src/engine/OSCReceiver.cpp,
src/engine/OSCSender.cpp, src/engine/Patch.cpp,
src/engine/PluginFactory.cpp: - Fixed the new node placement
issue - Wasted the majority of a day being frustrated by a bug
caused by being retarded fixing the new node placement issue
2005-03-17 02:09 drobilla
* TODO, src/clients/PatchModel.cpp,
src/clients/gtk/src/NodeControlWindow.h, src/common/NodeInfo.h,
src/engine/AlsaDriver.cpp, src/engine/AlsaDriver.h,
src/engine/DSSIPlugin.cpp, src/engine/JackDriver.cpp: Minor code
tidying
2005-03-17 01:16 drobilla
* TODO, src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/PluginModule.h, src/engine/AlsaDriver.cpp,
src/engine/AlsaDriver.h, src/engine/Makefile.am,
src/engine/MidiControlNode.cpp, src/engine/MidiControlNode.h,
src/engine/MidiLearnEvent.cpp, src/engine/MidiLearnEvent.h,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h: - MIDI
learn
2005-03-16 20:49 drobilla
* src/: clients/ClientHooks.h, clients/Comm.cpp, clients/Comm.h,
clients/DummyClientHooks.h, clients/PatchModel.cpp,
clients/PatchModel.h, clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/PluginModule.cpp,
clients/gtk/src/SubpatchModule.cpp, clients/gtk/src/om_gtk.glade,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h, engine/AudioInputNode.cpp,
engine/AudioInputNode.h, engine/AudioOutputNode.cpp,
engine/AudioOutputNode.h, engine/ControlInputNode.cpp,
engine/ControlInputNode.h, engine/ControlOutputNode.cpp,
engine/ControlOutputNode.h, engine/DestroyPatchEvent.cpp,
engine/MetaDataBase.h, engine/MidiControlNode.cpp, engine/Node.h,
engine/NodeBase.cpp, engine/NodeBase.h, engine/OSCReceiver.cpp,
engine/OSCSender.cpp, engine/OSCSender.h, engine/Patch.cpp,
engine/Patch.h, engine/PluginFactory.cpp,
engine/RemoveNodeEvent.cpp, engine/RemoveNodeEvent.h,
engine/SlowEvent.h, engine/SlowEventQueue.cpp: - Proper subpatch
module port removal - Proper subpatch deletion - Minor
optimizations and de-braindead-izing of client
2005-03-16 15:09 drobilla
* src/engine/: JackDriver.h, MidiControlNode.cpp, main.cpp: Removed
data size checks that apparently fail on x86-64, but don't
actually cause problems. (see comment in main.cpp)
2005-03-16 14:22 drobilla
* src/engine/: AudioInputNode.cpp, AudioInputNode.h,
AudioOutputNode.cpp, AudioOutputNode.h, ControlInputNode.cpp,
ControlInputNode.h, ControlOutputNode.cpp, ControlOutputNode.h:
Added some missing files
2005-03-16 12:59 drobilla
* src/engine/: InputNode.cpp, OutputNode.cpp: Removed now-unneeded
files
2005-03-16 12:58 drobilla
* TODO, src/common/types.h, src/engine/DSSIPlugin.cpp,
src/engine/DSSIPlugin.h, src/engine/InputNode.h,
src/engine/InternalNode.h, src/engine/JackDriver.h,
src/engine/LADSPAPlugin.cpp, src/engine/LADSPAPlugin.h,
src/engine/MidiControlNode.cpp, src/engine/MidiControlNode.h,
src/engine/MidiInNode.cpp, src/engine/MidiInNode.h,
src/engine/MidiNoteNode.cpp, src/engine/MidiNoteNode.h,
src/engine/MidiTriggerNode.cpp, src/engine/MidiTriggerNode.h,
src/engine/NodeBase.cpp, src/engine/NodeBase.h,
src/engine/OutputNode.h, src/engine/Patch.cpp,
src/engine/Patch.h: Fixed some types and typedefs, maybe 64-bit
safe now?
2005-03-16 00:22 drobilla
* src/: clients/gtk/src/PluginModule.cpp,
clients/gtk/src/om_gtk.glade,
clients/gtk/src/canvas/PatchBayArea.cpp, engine/InputNode.h,
engine/Makefile.am, engine/OSCSender.cpp, engine/OutputNode.h,
engine/PluginFactory.cpp: - Patch control-rate inputs and outputs
- One or two minor GUI tweaks
2005-03-15 21:59 drobilla
* TODO, src/engine/JackDriver.cpp, src/engine/MidiControlNode.cpp,
src/engine/MidiControlNode.h: Logarithmic MIDI bindings
2005-03-14 23:49 drobilla
* src/: clients/Comm.cpp, clients/PortModel.h,
clients/gtk/src/Makefile.am,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/OmGtkStateManager.cpp,
clients/patch_loader/patch_loader.cpp, common/PortInfo.h,
engine/InputNode.cpp, engine/JackDriver.cpp, engine/JackDriver.h,
engine/LADSPAPlugin.cpp, engine/Makefile.am,
engine/MidiControlNode.cpp, engine/MidiNoteNode.cpp,
engine/MidiTriggerNode.cpp, engine/NodeTree.cpp,
engine/NodeTree.h, engine/OSCSender.cpp, engine/OutputNode.cpp,
engine/Patch.cpp, engine/util.cpp, engine/tests/Makefile.am,
engine/tests/node_tree_test.cpp,
engine/tests/path_parser_test.cpp: - Stress tested NodeTree,
fixed a few bugs. Should be rock solid now. - Added support for
integer/logarithmic/toggle ports in the engine - Partial support
for port "hints" in client.
2005-03-14 02:33 drobilla
* TODO, src/clients/PatchLibrarian.cpp,
src/clients/PatchLibrarian.h, src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/LoadPatchWindow.cpp,
src/clients/gtk/src/LoadPatchWindow.h,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadSubpatchWindow.cpp,
src/clients/gtk/src/LoadSubpatchWindow.h,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/om_gtk.glade, src/engine/AlsaDriver.h,
src/engine/MidiControlNode.cpp, src/engine/NodeTree.cpp,
src/engine/OSCSender.cpp: - Fixed patch loading dialogs to allow
user to optionally specify name etc. - Um.. bunch of other stuff
I forget now
2005-03-13 18:21 drobilla
* src/clients/: Comm.cpp, gtk/src/Controller.cpp,
gtk/src/LoadPluginWindow.cpp, gtk/src/LoadPluginWindow.h,
gtk/src/om_gtk.glade: Searching in the load plugin window.
2005-03-13 04:55 drobilla
* TODO, src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/NodeControlWindow.h,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/om_gtk.glade, src/engine/PluginFactory.cpp: -
(Possibly) fixed a bug with plugins not showing up in plugin list
2005-03-13 04:24 drobilla
* src/engine/: LoadPluginsEvent.cpp, LoadPluginsEvent.h: Event-ized
/load_plugins
2005-03-13 04:17 drobilla
* src/engine/: AlsaDriver.cpp, AlsaDriver.h,
DSSIConfigureEvent.cpp, DSSIControlEvent.cpp, DSSIPlugin.h,
DSSIProgramEvent.cpp, DSSIUpdateEvent.cpp, EventQueue.h,
GetAllObjectsEvent.cpp, GetAllObjectsEvent.h, InputNode.cpp,
InternalNode.h, JackDriver.cpp, JackDriver.h, LADSPAPlugin.h,
Makefile.am, MidiControlNode.cpp, MidiInNode.cpp,
MidiNoteNode.cpp, MidiTriggerNode.cpp, Node.h, NodeBase.cpp,
NodeBase.h, OSCReceiver.cpp, OSCReceiver.h, OSCSender.cpp,
OutputNode.cpp, Patch.cpp, Patch.h, PluginFactory.cpp,
PluginFactory.h, Port.cpp, PostProcessor.cpp, Queue.h,
SetControlEvent.cpp, SlowEventQueue.h, tests/Makefile.am,
tests/event_queue_test.cpp, tests/queue_test.cpp: Too many
changed to list, thanks to savannah being down all day. - Proper
DSSI support - Voice-specific control setting on node control
windows - Revised API of Queue to be able to store non-pointer
datatypes - Make PluginInfo be passed around by value (fixed a
bug)
2005-03-12 01:27 drobilla
* src/clients/: Comm.cpp, gtk/src/canvas/PatchBayArea.cpp: Fixed up
the new shinier connection stuff, it was messed up
2005-03-11 18:44 drobilla
* src/clients/gtk/src/: PluginModule.cpp, SubpatchModule.cpp,
canvas/Connection.cpp, canvas/Connection.h, canvas/Module.cpp,
canvas/Module.h, canvas/PatchBayArea.cpp, canvas/PatchBayArea.h,
canvas/Port.cpp, canvas/Port.h: Some GUI shinification, arrow on
drag connections, snap to port, etc.
2005-03-10 19:18 drobilla
* src/clients/gtk/src/: DSSIModule.cpp, DSSIModule.h, OmModule.h,
OmPort.cpp, OmPort.h, PatchController.cpp, PluginModule.cpp,
PluginModule.h, SubpatchModule.cpp, SubpatchModule.h,
canvas/Module.cpp, canvas/Module.h, canvas/PatchBayArea.cpp,
canvas/Port.cpp, canvas/Port.h: Cleaned up API of patch bay
widget.
2005-03-10 18:12 drobilla
* src/: clients/Comm.h, clients/PatchLibrarian.cpp,
clients/gtk/src/AddSubpatchWindow.cpp,
clients/gtk/src/AddSubpatchWindow.h,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/DSSIModule.cpp, clients/gtk/src/DSSIModule.h,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/LoadPatchWindow.cpp,
clients/gtk/src/LoadPatchWindow.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h,
clients/gtk/src/LoadSubpatchWindow.cpp,
clients/gtk/src/LoadSubpatchWindow.h,
clients/gtk/src/NewPatchWindow.cpp,
clients/gtk/src/NewPatchWindow.h,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/NodeControlWindow.h, clients/gtk/src/OmGtk.h,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/OmGtkStateManager.cpp,
clients/gtk/src/OmGtkStateManager.h, clients/gtk/src/OmModule.h,
clients/gtk/src/OmPatchBayArea.cpp,
clients/gtk/src/OmPatchBayArea.h, clients/gtk/src/OmPort.cpp,
clients/gtk/src/OmPort.h, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/PatchWindow.cpp, clients/gtk/src/PatchWindow.h,
clients/gtk/src/PluginModule.cpp, clients/gtk/src/PluginModule.h,
clients/gtk/src/SubpatchModule.cpp,
clients/gtk/src/SubpatchModule.h, clients/gtk/src/main.cpp,
clients/gtk/src/canvas/Connection.cpp,
clients/gtk/src/canvas/Connection.h,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/gtk/src/canvas/PatchBayArea.h,
clients/gtk/src/canvas/Port.cpp, clients/gtk/src/canvas/Port.h,
engine/DSSIConfigureEvent.h, engine/DSSIControlEvent.h,
engine/DSSIPlugin.h, engine/DSSIProgramEvent.h,
engine/GetAllObjectsEvent.h, engine/GetControlEvent.h,
engine/GetMetadataEvent.h, engine/InputPort.h,
engine/JackDriver.h, engine/Maid.h, engine/MidiControlEvent.h,
engine/OSCReceiver.cpp, engine/PathParser.h, engine/Request.h,
engine/SetControlEvent.h, engine/SetMetadataEvent.h,
engine/SlowEvent.h, engine/util.cpp, engine/util.h: Finished
namespace-izing everything and some documentation updates.
2005-03-10 00:06 drobilla
* src/: clients/ClientHooks.h, clients/Comm.cpp, clients/Comm.h,
clients/ConnectionModel.h, clients/ControlMapModel.h,
clients/ControlModel.h, clients/DummyClientHooks.h,
clients/EngineModel.cpp, clients/EngineModel.h,
clients/Makefile.am, clients/MetadataModel.h,
clients/NodeModel.h, clients/PatchLibrarian.cpp,
clients/PatchLibrarian.h, clients/PatchModel.cpp,
clients/PatchModel.h, clients/PortModel.h, clients/PresetModel.h,
clients/Response.h, clients/gtk/src/Controller.h,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h,
clients/gtk/src/NodeControlWindow.h, clients/gtk/src/OmGtk.h,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/OmGtkStateManager.cpp,
clients/gtk/src/OmGtkStateManager.h, clients/gtk/src/OmModule.h,
clients/gtk/src/OmPort.h, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h, clients/gtk/src/PatchWindow.h,
clients/gtk/src/PluginModule.h, clients/gtk/src/SubpatchModule.h,
clients/patch_loader/patch_loader.cpp, common/PluginInfo.h,
common/PortInfo.h, engine/AddNodeEvent.cpp,
engine/AddNodeEvent.h, engine/AlsaDriver.cpp,
engine/AlsaDriver.h, engine/Array.h, engine/Connection.cpp,
engine/Connection.h, engine/ConnectionEvent.cpp,
engine/ConnectionEvent.h, engine/CreatePatchEvent.cpp,
engine/CreatePatchEvent.h, engine/DSSIConfigureEvent.cpp,
engine/DSSIConfigureEvent.h, engine/DSSIControlEvent.cpp,
engine/DSSIControlEvent.h, engine/DSSIPlugin.cpp,
engine/DSSIPlugin.h, engine/DSSIProgramEvent.cpp,
engine/DSSIProgramEvent.h, engine/DSSIUpdateEvent.cpp,
engine/DSSIUpdateEvent.h, engine/DestroyPatchEvent.cpp,
engine/DestroyPatchEvent.h, engine/DisconnectionEvent.cpp,
engine/DisconnectionEvent.h, engine/Event.cpp, engine/Event.h,
engine/EventQueue.h, engine/GetAllObjectsEvent.cpp,
engine/GetAllObjectsEvent.h, engine/GetControlEvent.cpp,
engine/GetControlEvent.h, engine/GetMetadataEvent.cpp,
engine/GetMetadataEvent.h, engine/InputNode.cpp,
engine/InputNode.h, engine/InputPort.cpp, engine/InputPort.h,
engine/InternalNode.h, engine/JackDriver.cpp,
engine/JackDriver.h, engine/LADSPAPlugin.cpp,
engine/LADSPAPlugin.h, engine/List.h, engine/Maid.cpp,
engine/Maid.h, engine/MaidObject.h, engine/MidiControlEvent.cpp,
engine/MidiControlEvent.h, engine/MidiControlNode.cpp,
engine/MidiControlNode.h, engine/MidiInNode.cpp,
engine/MidiInNode.h, engine/MidiNoteNode.cpp,
engine/MidiNoteNode.h, engine/MidiTriggerNode.cpp,
engine/MidiTriggerNode.h, engine/Node.h, engine/NodeBase.cpp,
engine/NodeBase.h, engine/NodeTree.cpp, engine/NodeTree.h,
engine/NoteOffEvent.cpp, engine/NoteOffEvent.h,
engine/NoteOnEvent.cpp, engine/NoteOnEvent.h,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/Om.cpp,
engine/OmApp.cpp, engine/OmApp.h, engine/OmObject.h,
engine/OutputNode.cpp, engine/OutputNode.h,
engine/OutputPort.cpp, engine/OutputPort.h, engine/Patch.cpp,
engine/Patch.h, engine/PathParser.cpp, engine/PathParser.h,
engine/PluginFactory.cpp, engine/PluginFactory.h,
engine/Port.cpp, engine/Port.h, engine/PostProcessor.cpp,
engine/PostProcessor.h, engine/RemoveNodeEvent.cpp,
engine/RemoveNodeEvent.h, engine/Request.cpp, engine/Request.h,
engine/SetControlEvent.cpp, engine/SetControlEvent.h,
engine/SetMetadataEvent.cpp, engine/SetMetadataEvent.h,
engine/SlowEvent.h, engine/SlowEventQueue.cpp,
engine/SlowEventQueue.h, engine/main.cpp, engine/util.h:
Namespace-ized everything, so Doxygen goes less insane (plus it's
just a good idea in general). Still need to do the patch bay
widget...
2005-03-08 02:32 drobilla
* src/engine/: ConnectionEvent.cpp, ConnectionEvent.h,
DisconnectionEvent.cpp, DisconnectionEvent.h, Makefile.am,
MidiNoteNode.cpp, MidiTriggerNode.cpp, Patch.h, util.cpp, util.h:
- De-braindead-ified connection and disconnection events -
process order graph code is now in a single place (util.cpp),
not duplicated twice - Fixed a bug w/ multiple connections
between two nodes - Fixed some other disconnecting bug - Fixed
triggers on trigger & note nodes
2005-03-08 00:55 drobilla
* src/engine/: AddNodeEvent.cpp, AlsaDriver.cpp,
ConnectionEvent.cpp, DSSIConfigureEvent.cpp,
DSSIConfigureEvent.h, DSSIControlEvent.cpp, DSSIControlEvent.h,
DSSIProgramEvent.cpp, DSSIProgramEvent.h, DSSIUpdateEvent.cpp,
DSSIUpdateEvent.h, DisconnectionEvent.cpp, GetControlEvent.cpp,
GetControlEvent.h, List.h, NoteOffEvent.cpp, NoteOffEvent.h,
NoteOnEvent.h, OSCReceiver.cpp, Patch.h, Port.cpp, Port.h,
SetControlEvent.cpp, SetControlEvent.h: - Fixed the slow
connections thing. Patches now load a /lot/ faster, and it's
not broken this time. Swear. - Reduced some include
dependencies in the engine
2005-03-07 22:34 drobilla
* configure.ac, src/clients/Comm.cpp,
src/clients/PatchLibrarian.cpp, src/clients/PatchLibrarian.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/LoadPatchWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/LoadSubpatchWindow.cpp,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/om_gtk.glade,
src/clients/patch_loader/patch_loader.cpp,
src/engine/Connection.cpp, src/engine/ConnectionEvent.cpp,
src/engine/MidiNoteNode.cpp, src/engine/MidiTriggerNode.cpp,
src/engine/OSCSender.cpp, src/engine/Patch.h,
src/engine/PathParser.cpp, src/engine/PluginFactory.cpp: - Fixed
polyphony, which somehow got broken at some point - Fixed a patch
loading issue (the speed was too good to be true!) - Made the
polyphony spinbuttons in load patch dialogs actually work -
Random unrelated changes, as usual
2005-03-06 22:39 drobilla
* configure.ac, src/clients/ClientHooks.h, src/clients/Comm.cpp,
src/clients/Comm.h, src/clients/ControlMapModel.h,
src/clients/ControlModel.h, src/clients/DummyClientHooks.h,
src/clients/MidiBindingModel.h, src/clients/PatchLibrarian.cpp,
src/clients/PatchLibrarian.h, src/clients/PatchModel.cpp,
src/clients/PatchModel.h, src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/patch_loader/patch_loader.cpp,
src/engine/ConnectionEvent.cpp,
src/engine/DisconnectionEvent.cpp: - Huge cleanup of the
client-side Comm code - Patch loading much faster now - Feedback
loops no longer cause infinite recursion - Removed lots of
client-side cruft
2005-03-06 16:17 drobilla
* src/: clients/Comm.cpp, clients/Comm.h, clients/MetadataModel.h,
clients/PatchLibrarian.cpp, clients/gtk/src/Controller.cpp,
clients/gtk/src/Controller.h, clients/gtk/src/DSSIModule.cpp,
clients/gtk/src/OmModule.h, clients/gtk/src/PatchController.cpp,
engine/AlsaDriver.h, engine/DSSIConfigureEvent.cpp,
engine/DSSIPlugin.cpp, engine/GetMetadataEvent.cpp,
engine/GetMetadataEvent.h, engine/MetaDataBase.h,
engine/OSCReceiver.cpp, engine/OSCSender.cpp, engine/OSCSender.h,
engine/OmObject.h, engine/SetMetadataEvent.cpp,
engine/SetMetadataEvent.h: - Still more DSSI support
2005-03-05 11:33 drobilla
* src/: clients/Comm.cpp, clients/Comm.h,
clients/PatchLibrarian.cpp, clients/gtk/src/Controller.cpp,
clients/gtk/src/Controller.h, clients/gtk/src/DSSIModule.cpp,
clients/gtk/src/DSSIModule.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/Makefile.am, clients/gtk/src/OmModule.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PluginModule.cpp, clients/gtk/src/PluginModule.h,
clients/gtk/src/SubpatchModule.cpp,
clients/gtk/src/SubpatchModule.h, common/PluginInfo.h,
engine/AlsaDriver.cpp, engine/AlsaDriver.h,
engine/DSSIConfigureEvent.cpp, engine/DSSIConfigureEvent.h,
engine/DSSIControlEvent.cpp, engine/DSSIControlEvent.h,
engine/DSSIPlugin.cpp, engine/DSSIPlugin.h,
engine/DSSIProgramEvent.cpp, engine/DSSIProgramEvent.h,
engine/DSSIUpdateEvent.cpp, engine/DSSIUpdateEvent.h,
engine/JackDriver.cpp, engine/LADSPAPlugin.cpp,
engine/LADSPAPlugin.h, engine/Makefile.am,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/PluginFactory.cpp,
engine/PluginFactory.h, engine/Queue.h,
engine/SetControlEvent.cpp, engine/SetControlEvent.h: -
Preliminary DSSI support
2005-03-03 01:03 drobilla
* src/clients/: PatchLibrarian.cpp, PatchLibrarian.h, PatchModel.h,
gtk/src/Controller.cpp, gtk/src/Controller.h,
gtk/src/LoadPatchWindow.cpp, gtk/src/LoadSubpatchWindow.cpp,
gtk/src/PatchController.cpp, patch_loader/patch_loader.cpp: -
Subpatch saving/loading
2005-03-01 01:28 drobilla
* src/: clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h,
clients/gtk/src/PatchWindow.cpp, clients/gtk/src/om_gtk.glade,
engine/DisconnectionEvent.cpp, engine/InputNode.cpp,
engine/InputPort.h, engine/JackDriver.cpp, engine/JackDriver.h,
engine/Maid.cpp, engine/MidiControlNode.cpp,
engine/MidiControlNode.h, engine/MidiInNode.h,
engine/MidiNoteNode.h, engine/MidiTriggerNode.cpp,
engine/MidiTriggerNode.h, engine/OSCReceiver.cpp,
engine/OSCReceiver.h, engine/OmApp.cpp, engine/OutputNode.cpp,
engine/Patch.cpp, engine/PluginFactory.cpp: - Polyphonic subpatch
connecting (completely untested) - New load plugin dialog, not
really implemented yet - Took care of a few FIXME's in the engine
2005-02-27 21:23 drobilla
* src/engine/LADSPAPlugin.cpp: Header fix for C math library
2005-02-27 20:37 drobilla
* src/: clients/Comm.cpp, clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/LoadPatchWindow.cpp,
clients/gtk/src/LoadPatchWindow.h,
clients/gtk/src/LoadSubpatchWindow.cpp,
clients/gtk/src/Makefile.am, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmGtkApp.h, clients/gtk/src/PatchController.cpp,
clients/gtk/src/om_gtk.glade,
clients/gtk/src/canvas/PatchBayArea.cpp,
engine/CreatePatchEvent.cpp, engine/GetAllObjectsEvent.cpp,
engine/GetAllObjectsEvent.h, engine/InputNode.cpp,
engine/InputNode.h, engine/InternalNode.h, engine/Makefile.am,
engine/Node.h, engine/NodeBase.cpp, engine/NodeBase.h,
engine/OSCReceiver.cpp, engine/OSCSender.cpp, engine/OSCSender.h,
engine/OutputNode.cpp, engine/OutputNode.h, engine/Patch.cpp,
engine/Patch.h: - More work on subpatching (almost done!) - Made
/om/send_all_objects not block the OSC thread and eat CPU - GUI
enhancements (better load patch dialogs, etc) - Patch ports now
take name of OutputNode (so user can define port names)
2005-02-27 15:15 drobilla
* src/: SETUP_ALIASES, clients/Comm.cpp, clients/Comm.h,
clients/PatchModel.cpp, clients/PatchModel.h,
clients/gtk/configure.ac,
clients/gtk/src/AddMidiBindingWindow.cpp,
clients/gtk/src/AddMidiBindingWindow.h,
clients/gtk/src/Controller.cpp,
clients/gtk/src/GtkClientHooksEvents.h,
clients/gtk/src/LoadSubpatchWindow.cpp,
clients/gtk/src/LoadSubpatchWindow.h,
clients/gtk/src/MidiBindingFrame.cpp,
clients/gtk/src/MidiBindingFrame.h,
clients/gtk/src/MidiBindingWindow.cpp,
clients/gtk/src/MidiBindingWindow.h,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/OmModule.h, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchWindow.cpp, clients/gtk/src/PatchWindow.h,
clients/gtk/src/om_gtk.glade, clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/PatchBayArea.cpp, engine/OSCReceiver.cpp,
engine/OSCSender.cpp, engine/PathParser.cpp, engine/PathParser.h:
- Cleaned out remainder of old MIDI binding cruft - Numerous GUI
enhancements (double clicking, etc) - More path-related bugfixes
2005-02-26 21:27 drobilla
* TODO, src/clients/Comm.cpp, src/clients/PatchLibrarian.cpp,
src/clients/PatchLibrarian.h, src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/Makefile.am,
src/clients/gtk/src/NewPatchWindow.cpp,
src/clients/gtk/src/OmGtkApp.cpp,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/om_gtk.glade,
src/clients/patch_loader/patch_loader.cpp,
src/engine/AddNodeEvent.cpp, src/engine/AddNodeEvent.h,
src/engine/Connection.cpp, src/engine/Connection.h,
src/engine/ConnectionEvent.cpp, src/engine/CreatePatchEvent.cpp,
src/engine/CreatePatchEvent.h, src/engine/DisconnectionEvent.cpp,
src/engine/InputPort.cpp, src/engine/InputPort.h,
src/engine/MidiControlNode.cpp, src/engine/MidiControlNode.h,
src/engine/OSCReceiver.cpp, src/engine/OSCSender.cpp,
src/engine/Patch.cpp, src/engine/Patch.h, src/engine/Port.cpp: -
Fixed a disconnecting bug (introduced with path stuff) - Support
for loading a subpatch from a file in the GUI (still no saving)
2005-02-26 14:47 drobilla
* src/: clients/Comm.cpp, engine/OSCReceiver.cpp: Added "/om" to
the beginning of every OSC command - namespace still isn't stable
though.
2005-02-26 13:58 drobilla
* configure.ac, src/clients/ClientHooks.h, src/clients/Comm.cpp,
src/clients/Comm.h, src/clients/ConnectionModel.h,
src/clients/ControlModel.h, src/clients/DummyClientHooks.h,
src/clients/MetadataModel.h, src/clients/NodeModel.h,
src/clients/PatchLibrarian.cpp, src/clients/PatchLibrarian.h,
src/clients/PatchModel.h, src/clients/PortModel.h,
src/clients/PresetModel.h, src/clients/gtk/configure.ac,
src/clients/gtk/src/AddSubpatchWindow.cpp,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/GtkClientHooksEvents.h,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/Makefile.am,
src/clients/gtk/src/NewPatchWindow.cpp,
src/clients/gtk/src/NewPatchWindow.h,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/OmModule.h,
src/clients/gtk/src/OmPatchBayArea.cpp,
src/clients/gtk/src/OmPatchBayArea.h,
src/clients/gtk/src/OmPort.cpp, src/clients/gtk/src/OmPort.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/cmdline.c, src/clients/gtk/src/cmdline.ggo,
src/clients/gtk/src/cmdline.h, src/clients/gtk/src/main.cpp,
src/engine/AddNodeEvent.cpp, src/engine/AddNodeEvent.h,
src/engine/ConnectionEvent.cpp, src/engine/ConnectionEvent.h,
src/engine/CreatePatchEvent.cpp, src/engine/CreatePatchEvent.h,
src/engine/DestroyPatchEvent.cpp, src/engine/DestroyPatchEvent.h,
src/engine/DisconnectionEvent.cpp,
src/engine/DisconnectionEvent.h, src/engine/GetControlEvent.cpp,
src/engine/GetControlEvent.h, src/engine/GetMetadataEvent.cpp,
src/engine/GetMetadataEvent.h, src/engine/InputNode.cpp,
src/engine/InputNode.h, src/engine/InputPort.cpp,
src/engine/InternalNode.h, src/engine/JackDriver.cpp,
src/engine/LADSPAPlugin.cpp, src/engine/Makefile.am,
src/engine/MidiControlNode.cpp, src/engine/MidiControlNode.h,
src/engine/MidiInNode.cpp, src/engine/MidiInNode.h,
src/engine/MidiNoteNode.cpp, src/engine/MidiNoteNode.h,
src/engine/MidiTriggerNode.cpp, src/engine/MidiTriggerNode.h,
src/engine/Node.h, src/engine/NodeBase.cpp,
src/engine/NodeBase.h, src/engine/OSCReceiver.cpp,
src/engine/OSCReceiver.h, src/engine/OSCSender.cpp,
src/engine/OSCSender.h, src/engine/OmApp.cpp, src/engine/OmApp.h,
src/engine/OmObject.h, src/engine/OutputNode.cpp,
src/engine/OutputNode.h, src/engine/Patch.cpp,
src/engine/Patch.h, src/engine/PluginFactory.cpp,
src/engine/PluginFactory.h, src/engine/Port.cpp,
src/engine/Port.h, src/engine/RemoveNodeEvent.cpp,
src/engine/RemoveNodeEvent.h, src/engine/SetControlEvent.cpp,
src/engine/SetControlEvent.h, src/engine/SetMetadataEvent.cpp,
src/engine/SetMetadataEvent.h, src/engine/util.h,
src/engine/tests/Makefile.am: Switched everything over to being
path-based, OSC namespace has changed dramatically.
Infinite-depth subpatching should now be possible (though
combined with polyphony is still ill-defined).
This may have broken many things, please file bug reports.
2005-02-22 21:48 drobilla
* src/engine/: LADSPAPlugin.cpp, LADSPAPlugin.h, PluginFactory.cpp,
PluginFactory.h: - Fixed problem with LADSPA plugins w/ multiple
ports having the same name by name mangling
Still need to resolve the newly discovered problem that port
names can change through plugin revisions (stupid ladspa, grr).
The plugin ID is going to have to be stored in the patch files.
2005-02-21 19:46 drobilla
* src/engine/OSCReceiver.cpp: Fixed incorrect args for OSC note
on/off messages
2005-02-21 03:52 drobilla
* src/engine/: ConnectionEvent.cpp, DisconnectionEvent.cpp,
InputNode.cpp, InputNode.h, InternalNode.h, JackDriver.cpp,
JackDriver.h, NoteOffEvent.cpp, NoteOnEvent.cpp, OSCReceiver.cpp,
OutputNode.cpp, OutputNode.h, Patch.cpp, Patch.h: - Fixed problem
with removing output nodes - Removed limitation on number of
inputs/outputs for a patch - Fixed problem with fast sequences of
disconnecting - Fixed some other bugs here and there - Properly
implemented removing of jack ports (now fully dynamic)
2005-02-21 01:08 drobilla
* src/engine/: AddNodeEvent.cpp, AlsaDriver.cpp, InputNode.cpp,
MidiNoteNode.cpp, MidiTriggerNode.cpp, OSCReceiver.cpp,
OSCReceiver.h, OutputNode.cpp, PluginFactory.cpp: Added support
for triggering note-ons from OSC
2005-02-21 00:09 drobilla
* src/engine/: InputPort.cpp, MidiNoteNode.cpp, MidiNoteNode.h,
MidiTriggerNode.cpp, MidiTriggerNode.h, OSCReceiver.h, Port.cpp,
Port.h: Updated MIDI nodes to use new port set_value stuff
(replaced old "set rest of buffer value the next process cycle"
hacks everywhere)
2005-02-20 22:25 drobilla
* src/: clients/Comm.cpp, engine/GetControlEvent.cpp,
engine/MidiControlEvent.cpp, engine/MidiControlNode.cpp,
engine/MidiControlNode.h, engine/NodeBase.cpp,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/PluginFactory.cpp, engine/Port.cpp,
engine/Port.h, engine/SetControlEvent.cpp: - Generic-ized the
"buffer writing across blocks" problem, though MIDI nodes still
use their own implementation (will go away) - Allowed OSC setting
of audio rate ports as well as control ports
2005-02-20 19:20 drobilla
* src/: clients/PatchLibrarian.cpp, engine/JackDriver.cpp,
engine/OSCReceiver.cpp: - Added automatically generated OSC
namespace documentation
2005-02-20 17:34 drobilla
* src/: clients/gtk/src/NodeControlWindow.cpp, engine/Connection.h,
engine/InputPort.cpp: - Fixed a bug with mono->poly connections -
Made the title of control windows show the module name
2005-02-20 01:53 drobilla
* THANKS, src/engine/MidiControlEvent.cpp,
src/engine/MidiControlEvent.h, src/engine/MidiControlNode.cpp,
src/engine/MidiControlNode.h: New MIDI binding stuff, forgot to
add some files
2005-02-18 21:22 drobilla
* src/: clients/gtk/src/GtkClientHooksEvents.h,
engine/AddMidiBindingEvent.cpp, engine/AddMidiBindingEvent.h,
engine/AlsaDriver.cpp, engine/AlsaDriver.h,
engine/ChangeMidiBindingRangeEvent.cpp,
engine/ChangeMidiBindingRangeEvent.h, engine/Makefile.am,
engine/MidiControlBinding.h, engine/MidiInNode.cpp,
engine/MidiInNode.h, engine/MidiNoteNode.cpp,
engine/NoteOffEvent.cpp, engine/NoteOffEvent.h,
engine/NoteOnEvent.cpp, engine/NoteOnEvent.h,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/Patch.cpp,
engine/Patch.h, engine/PluginFactory.cpp,
engine/tests/list_test.cpp: New MIDI binding stuff, MIDI bindings
are now just another internal Node type
2005-02-09 12:18 drobilla
* src/clients/gtk/src/: GtkClientHooks.cpp, GtkClientHooks.h,
LoadPluginWindow.cpp, LoadPluginWindow.h, Makefile.am,
OmGtkApp.cpp, OmGtkApp.h, PatchWindow.h, canvas/Makefile.am: -
Fixed problem with plugins sometimes not showing up in Load
Plugin window - Revamped OSC->Gtk event stuff, much cleaner and
should be significantly faster now too
2005-02-01 17:59 drobilla
* src/clients/gtk/src/: LoadPluginWindow.cpp, Makefile.am,
OmModule.h, OmPatchBayArea.cpp, OmPatchBayArea.h, OmPort.cpp,
OmPort.h, PatchController.cpp, PatchController.h,
PatchStateManager.cpp, PatchStateManager.h, PatchWindow.cpp,
PatchWindow.h, PluginModule.cpp, PluginModule.h,
SubpatchModule.cpp, SubpatchModule.h, canvas/Canvas.cpp,
canvas/Canvas.h, canvas/CanvasController.h,
canvas/CanvasStateManager.h, canvas/Connection.cpp,
canvas/Makefile.am, canvas/Module.cpp, canvas/Module.h,
canvas/PatchBayArea.cpp, canvas/PatchBayArea.h, canvas/Port.cpp,
canvas/Port.h, canvas/constants.h: - Cleaned up much code in the
GUI - Removed redudant files/classes - Cleaned up the canvas
widget for use by other apps (ie Patchage)
2005-01-31 16:56 drobilla
* src/: clients/Comm.cpp, clients/NodeModel.h,
clients/PatchLibrarian.cpp, clients/PortModel.h,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmModule.h,
clients/gtk/src/PatchController.cpp, clients/gtk/src/main.cpp,
engine/EventQueue.h, engine/InputPort.cpp,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/OmApp.cpp,
engine/RemoveNodeEvent.cpp, engine/SetMetadataEvent.cpp: - Multi
client support more or less finished - Fixed the control order
problem in the GUI (reverted from map to lists to store
PortModels) - Make the client clean up after itself a little more
- Fixed the output port disconnecting no-silence problem - Fixed
a minor bug or two in the engine
2005-01-31 05:52 drobilla
* src/clients/gtk/src/NodeControlWindow.cpp: - Updated range
controls in GUI to be more precise - Engine cleanup here and
there
2005-01-30 10:34 drobilla
* configure.ac, src/clients/Comm.cpp, src/clients/PortModel.h,
src/engine/RemoveNodeEvent.cpp: - Fixed the initial control
settings bug - Some minor GUI visual tweaks
(modules/ports/connections) - Probably some other stuff I forget.
2005-01-26 20:37 drobilla
* src/: clients/Comm.cpp, clients/gtk/src/OmGtkStateManager.cpp,
clients/gtk/src/OmModule.h,
clients/gtk/src/canvas/Connection.cpp,
clients/gtk/src/canvas/Connection.h,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/gtk/src/canvas/Port.cpp, clients/gtk/src/canvas/Port.h,
engine/AddNodeEvent.cpp, engine/ConnectionEvent.cpp,
engine/CrossThreadMutex.h, engine/DisconnectionEvent.cpp,
engine/EventQueue.h, engine/NodeBase.cpp, engine/NodeTree.cpp,
engine/NodeTree.h, engine/OSCReceiver.cpp, engine/Patch.cpp,
engine/Patch.h, engine/RemoveNodeEvent.cpp,
engine/tests/Makefile.am, engine/tests/node_tree_test.cpp: -
Pretty crucial node removing bug fix - Better solution to the
connection/node-remove lock problem - GUI visual tweaks (modules,
etc)
2005-01-26 10:32 drobilla
* src/: clients/Comm.cpp, clients/NodeModel.h,
clients/PatchLibrarian.cpp, clients/PatchModel.cpp,
clients/PatchModel.h, clients/PortModel.h,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/PatchController.cpp, common/types.h,
engine/InputNode.h, engine/JackDriver.cpp, engine/JackDriver.h,
engine/List.h, engine/Maid.cpp, engine/Makefile.am,
engine/PostProcessor.cpp, engine/Queue.h,
engine/SlowEventQueue.cpp, engine/SlowEventQueue.h,
engine/tests/Makefile.am: - Bugfixes - Atomicity fixes -
Parameter saving/loading in the client
2005-01-25 17:57 drobilla
* src/: clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h, clients/gtk/src/OmModule.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PluginModule.cpp, clients/gtk/src/PluginModule.h,
clients/gtk/src/SubpatchModule.cpp,
clients/gtk/src/SubpatchModule.h, engine/Connection.cpp,
engine/Connection.h, engine/InputNode.h, engine/Node.h,
engine/NodeBase.cpp, engine/NodeBase.h, engine/Patch.cpp,
engine/Patch.h: - Subpatching partially working (only monophonic
and loading/saving yet) - Bug fix or two
2005-01-25 13:53 drobilla
* src/engine/: GetControlEvent.cpp, GetControlEvent.h: - Forgot to
add some files
2005-01-25 13:07 drobilla
* configure.ac, src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/common/PortInfo.h, src/engine/AddNodeEvent.cpp,
src/engine/AlsaDriver.cpp, src/engine/AlsaDriver.h,
src/engine/Connection.cpp, src/engine/Connection.h,
src/engine/ConnectionEvent.cpp, src/engine/ConnectionEvent.h,
src/engine/DisconnectionEvent.cpp,
src/engine/DisconnectionEvent.h, src/engine/InputNode.cpp,
src/engine/InputNode.h, src/engine/InputPort.cpp,
src/engine/InputPort.h, src/engine/JackDriver.cpp,
src/engine/JackDriver.h, src/engine/LADSPAPlugin.cpp,
src/engine/LADSPAPlugin.h, src/engine/List.h,
src/engine/Maid.cpp, src/engine/Maid.h, src/engine/Makefile.am,
src/engine/MidiControlBinding.h, src/engine/MidiNoteNode.cpp,
src/engine/MidiTriggerNode.cpp, src/engine/MidiTriggerNode.h,
src/engine/Node.h, src/engine/NodeBase.cpp,
src/engine/NodeBase.h, src/engine/NodeTree.cpp,
src/engine/NodeTree.h, src/engine/OSCReceiver.cpp,
src/engine/OSCReceiver.h, src/engine/OSCSender.cpp,
src/engine/OSCSender.h, src/engine/OmApp.cpp, src/engine/OmApp.h,
src/engine/OutputNode.cpp, src/engine/OutputNode.h,
src/engine/OutputPort.cpp, src/engine/OutputPort.h,
src/engine/Patch.cpp, src/engine/Patch.h,
src/engine/PluginFactory.cpp, src/engine/Port.cpp,
src/engine/Port.h, src/engine/PostProcessor.cpp,
src/engine/PostProcessor.h, src/engine/RemoveNodeEvent.cpp,
src/engine/RemoveNodeEvent.h, src/engine/SetControlEvent.cpp,
src/engine/SetControlEvent.h, src/engine/SlowEventQueue.cpp,
src/engine/SlowEventQueue.h, src/engine/util.cpp,
src/engine/util.h: - Fixed many bugs - Re-enabled MIDI trigger
node
2005-01-23 18:23 drobilla
* src/: clients/Comm.cpp, clients/Comm.h,
clients/PatchLibrarian.cpp, clients/gtk/src/Controller.cpp,
clients/gtk/src/Controller.h, clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/OmModule.h, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PluginModule.cpp,
clients/gtk/src/SubpatchModule.cpp, clients/gtk/src/cmdline.c,
clients/gtk/src/cmdline.ggo, clients/gtk/src/cmdline.h,
clients/gtk/src/main.cpp, clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/gtk/src/canvas/PatchBayArea.h,
clients/gtk/src/canvas/Port.h, clients/patch_loader/cmdline.c,
clients/patch_loader/cmdline.ggo, clients/patch_loader/cmdline.h,
clients/patch_loader/patch_loader.cpp, engine/AddNodeEvent.cpp,
engine/Connection.cpp, engine/Connection.h,
engine/ConnectionEvent.cpp, engine/ConnectionEvent.h,
engine/CrossThreadMutex.h, engine/DisconnectionEvent.cpp,
engine/InputNode.cpp, engine/InputPort.cpp,
engine/LADSPAPlugin.h, engine/Makefile.am, engine/MetaDataBase.h,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/Om.cpp,
engine/OmApp.cpp, engine/OmApp.h, engine/OmObject.h,
engine/Patch.cpp, engine/Patch.h, engine/Port.h,
engine/RemoveNodeEvent.cpp, engine/RemoveNodeEvent.h,
engine/SlowEventQueue.cpp, engine/cmdline.c, engine/cmdline.ggo,
engine/cmdline.h, engine/main.cpp: - Bugfixes - Made the engine
capable of handingg lots (and lots) of incoming connections etc
(ie in the case of Patch Loading, which was always pretty random
until now) - Switched the canvas stuff from using vectors to
using map like they obviously should (searching by name and
all) - Kinda sorta support for the client launching the engine,
but not really. :)
2005-01-22 21:45 drobilla
* src/: clients/ClientHooks.h, clients/Comm.cpp, clients/Comm.h,
clients/ControlModel.h, clients/DummyClientHooks.h,
clients/Makefile.am, clients/NodeModel.h,
clients/PatchLibrarian.cpp, clients/PatchLibrarian.h,
clients/PortModel.h, clients/PresetModel.h, clients/Response.h,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/NodeControlWindow.h,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/OmGtkStateManager.cpp,
clients/gtk/src/OmGtkStateManager.h, clients/gtk/src/OmModule.h,
clients/gtk/src/OmPort.cpp, clients/gtk/src/OmPort.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/PatchWindow.cpp,
clients/gtk/src/PluginModule.cpp, clients/gtk/src/PluginModule.h,
clients/gtk/src/SubpatchModule.cpp,
clients/gtk/src/SubpatchModule.h,
clients/gtk/src/canvas/Module.h,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/gtk/src/canvas/Port.cpp, common/PortInfo.h,
engine/ConnectionEvent.cpp, engine/GetMetadataEvent.cpp,
engine/LADSPAPlugin.cpp, engine/MidiControlBinding.h,
engine/MidiTriggerNode.cpp, engine/OSCReceiver.cpp,
engine/OSCReceiver.h, engine/OSCSender.cpp, engine/OSCSender.h,
engine/SetControlEvent.cpp, engine/SetControlEvent.h: - OSC
communication stuff converging on the final solution, I think...
- Started work on client being able to reattach to running server
- MIDI bindings now update control sliders in control dialog -
Um.. bunch of other stuff. It's 6am, I can't remember. ;)
2005-01-22 11:24 drobilla
* src/engine/: InputPort.cpp, NodeTree.h, OmApp.cpp: Nailed a
disconnection bug in the engine.
2005-01-22 08:03 drobilla
* src/: clients/Comm.cpp, clients/Comm.h,
clients/ControlMapModel.h, clients/Makefile.am,
clients/NodeModel.h, clients/PatchLibrarian.cpp,
clients/PatchLibrarian.h, clients/gtk/src/Controller.cpp,
clients/gtk/src/Controller.h,
clients/gtk/src/MidiBindingFrame.cpp,
clients/gtk/src/MidiBindingWindow.cpp,
clients/gtk/src/PatchController.cpp, clients/gtk/src/main.cpp,
clients/gtk/src/om_gtk.glade, engine/AddNodeEvent.cpp,
engine/Array.h, engine/Connection.cpp, engine/Connection.h,
engine/Connector.cpp, engine/Connector.h, engine/Connector.o,
engine/DestroyPatchEvent.cpp, engine/DisconnectionEvent.cpp,
engine/InputNode.cpp, engine/InputNode.h, engine/InputPort.cpp,
engine/InternalNode.h, engine/LADSPAPlugin.cpp, engine/List.h,
engine/MidiNoteNode.cpp, engine/MidiNoteNode.h,
engine/MidiTriggerNode.cpp, engine/Node.h, engine/NodeArray.h,
engine/NodeBase.cpp, engine/NodeBase.h, engine/NodeTree.cpp,
engine/OSCReceiver.cpp, engine/OSCSender.cpp, engine/OmApp.cpp,
engine/OmApp.h, engine/OutputNode.cpp, engine/OutputNode.h,
engine/Patch.cpp, engine/Patch.h, engine/Port.cpp, engine/Port.h,
engine/RemoveNodeEvent.cpp, engine/TreeNode.h, engine/util.cpp,
engine/util.h, engine/tests/Makefile.am: - Optimizations in the
engine, no longer using std::vector in RT thread (!!) - Lots of
bugfixes in the engine (still some remain though) - Minor work on
the client(s)
2005-01-20 18:27 drobilla
* TODO, configure.ac, src/clients/ClientHooks.h,
src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/DummyClientHooks.h, src/clients/Makefile.am,
src/clients/MetadataModel.h, src/clients/PatchLibrarian.cpp,
src/clients/PatchLibrarian.h, src/clients/PatchModel.cpp,
src/clients/PatchModel.h, src/clients/PresetModel.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/Makefile.am,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/OmModule.h, src/clients/gtk/src/OmPort.cpp,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/cmdline.ggo, src/clients/gtk/src/cmdline.h,
src/clients/gtk/src/main.cpp, src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/canvas/Module.cpp,
src/clients/gtk/src/canvas/Module.h,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h,
src/clients/gtk/src/canvas/README,
src/clients/patch_loader/Makefile.am,
src/clients/patch_loader/cmdline.c,
src/clients/patch_loader/cmdline.ggo,
src/clients/patch_loader/cmdline.h,
src/clients/patch_loader/patch_loader.cpp,
src/engine/AddMidiBindingEvent.cpp,
src/engine/AddMidiBindingEvent.h, src/engine/AddNodeEvent.cpp,
src/engine/AddNodeEvent.h, src/engine/AddSubpatchEvent.cpp,
src/engine/AddSubpatchEvent.h, src/engine/AlsaDriver.cpp,
src/engine/ChangeMidiBindingRangeEvent.cpp,
src/engine/ChangeMidiBindingRangeEvent.h,
src/engine/ConnectionEvent.cpp, src/engine/ConnectionEvent.h,
src/engine/CreatePatchEvent.cpp, src/engine/CreatePatchEvent.h,
src/engine/DestroyPatchEvent.cpp, src/engine/DestroyPatchEvent.h,
src/engine/DisconnectionEvent.cpp,
src/engine/DisconnectionEvent.h, src/engine/Event.cpp,
src/engine/Event.h, src/engine/GetMetadataEvent.cpp,
src/engine/GetMetadataEvent.h, src/engine/JackDriver.cpp,
src/engine/Makefile.am, src/engine/MetaDataBase.h,
src/engine/MidiControlBinding.h, src/engine/Node.h,
src/engine/NodeBase.cpp, src/engine/NoteOffEvent.cpp,
src/engine/NoteOffEvent.h, src/engine/NoteOnEvent.cpp,
src/engine/NoteOnEvent.h, src/engine/OSCReceiver.cpp,
src/engine/OSCReceiver.h, src/engine/OSCSender.cpp,
src/engine/OSCSender.h, src/engine/OmObject.h,
src/engine/Patch.cpp, src/engine/PostProcessor.cpp,
src/engine/Queue.h, src/engine/RemoveNodeEvent.cpp,
src/engine/RemoveNodeEvent.h, src/engine/Request.cpp,
src/engine/Request.h, src/engine/SetControlEvent.cpp,
src/engine/SetControlEvent.h, src/engine/SetMetadataEvent.cpp,
src/engine/SetMetadataEvent.h, src/engine/SlowEvent.h,
src/engine/SlowEventQueue.cpp: Partially through the reworking of
the OSC communication stuff (finally!) Multiple client support
almost a reality Added simple om_patch_loader command line client
MIDI Binding saving Made controls in patch file part of a
"preset" Added preliminary concept of metadata
2005-01-18 20:26 drobilla
* TODO, src/clients/ClientHooks.h, src/clients/Comm.cpp,
src/clients/Comm.h, src/clients/MidiBindingModel.h,
src/clients/gtk/src/AddSubpatchWindow.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/Makefile.am,
src/clients/gtk/src/MidiBindingFrame.cpp,
src/clients/gtk/src/MidiBindingFrame.h,
src/clients/gtk/src/MidiBindingWindow.cpp,
src/clients/gtk/src/MidiBindingWindow.h,
src/clients/gtk/src/NewPatchWindow.h,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/NodeControlWindow.h,
src/clients/gtk/src/OmGtkStateManager.h,
src/clients/gtk/src/OmModule.h, src/clients/gtk/src/OmPort.cpp,
src/clients/gtk/src/OmPort.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchStateManager.h,
src/clients/gtk/src/PluginModule.h,
src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/om_gtk.gladep,
src/clients/gtk/src/canvas/Module.h,
src/engine/AddMidiBindingEvent.cpp, src/engine/AlsaDriver.cpp,
src/engine/AlsaDriver.h,
src/engine/ChangeMidiBindingRangeEvent.cpp,
src/engine/ChangeMidiBindingRangeEvent.h,
src/engine/JackDriver.cpp, src/engine/Makefile.am,
src/engine/MidiControlBinding.h, src/engine/OSCReceiver.cpp,
src/engine/OSCReceiver.h, src/engine/Patch.cpp,
src/engine/SlowEventQueue.cpp, src/engine/SlowEventQueue.h: -
MIDI binding range changing support
2005-01-18 17:25 drobilla
* src/engine/: AddMidiBindingEvent.cpp, AddMidiBindingEvent.h,
AlsaDriver.cpp, AlsaDriver.h, MidiControlBinding.h,
OSCReceiver.cpp, OSCReceiver.h, OSCSender.cpp: - MIDI binding
graphical support in the client, almost finished
2005-01-18 09:11 drobilla
* src/: clients/Comm.cpp, clients/Comm.h, clients/NodeModel.h,
clients/PatchLibrarian.cpp,
clients/gtk/src/AddMidiBindingWindow.cpp,
clients/gtk/src/AddMidiBindingWindow.h,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/Makefile.am, clients/gtk/src/OmModule.h,
clients/gtk/src/OmPort.cpp, clients/gtk/src/OmPort.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/PluginModule.cpp, clients/gtk/src/PluginModule.h,
clients/gtk/src/SubpatchModule.cpp,
clients/gtk/src/SubpatchModule.h, engine/AddMidiBindingEvent.cpp,
engine/AddMidiBindingEvent.h, engine/AlsaDriver.cpp,
engine/AlsaDriver.h, engine/CreatePatchEvent.cpp,
engine/CreatePatchEvent.h, engine/JackDriver.cpp,
engine/JackDriver.h, engine/Makefile.am,
engine/MidiControlBinding.h, engine/OSCReceiver.cpp,
engine/OSCSender.cpp, engine/OSCSender.h, engine/Om.h,
engine/PostProcessor.cpp, engine/PostProcessor.h, engine/Queue.h:
- MIDI binding wokring somewhat - Added some missing files -
Other stuff.
2005-01-17 19:35 drobilla
* TODO, src/clients/Comm.cpp, src/clients/Comm.h,
src/clients/gtk/src/AddSubpatchWindow.cpp,
src/clients/gtk/src/AddSubpatchWindow.h,
src/clients/gtk/src/CanvasController.cpp,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/Makefile.am,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/NodeControlWindow.h,
src/clients/gtk/src/OmGtk.h, src/clients/gtk/src/OmGtkApp.cpp,
src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/PluginModule.cpp,
src/clients/gtk/src/PluginModule.h,
src/clients/gtk/src/SubpatchModule.cpp,
src/clients/gtk/src/SubpatchModule.h,
src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/canvas/Module.cpp,
src/clients/gtk/src/canvas/Module.h,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h,
src/clients/gtk/src/canvas/Port.cpp,
src/clients/gtk/src/canvas/Port.h, src/engine/AddNodeEvent.cpp,
src/engine/AddSubpatchEvent.cpp, src/engine/AddSubpatchEvent.h,
src/engine/AlsaDriver.cpp, src/engine/AlsaDriver.h,
src/engine/Connection.cpp, src/engine/Connection.h,
src/engine/ConnectionEvent.cpp, src/engine/DestroyPatchEvent.cpp,
src/engine/DisconnectionEvent.cpp, src/engine/Event.cpp,
src/engine/Event.h, src/engine/InputPort.cpp,
src/engine/InputPort.h, src/engine/JackDriver.cpp,
src/engine/JackDriver.h, src/engine/List.h, src/engine/Maid.cpp,
src/engine/Makefile.am, src/engine/MidiNoteNode.cpp,
src/engine/NodeTree.cpp, src/engine/NodeTree.h,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/OSCSender.cpp, src/engine/OSCSender.h,
src/engine/Om.cpp, src/engine/Om.h, src/engine/OmApp.cpp,
src/engine/OmApp.h, src/engine/Patch.h,
src/engine/PluginFactory.cpp, src/engine/RemoveNodeEvent.cpp,
src/engine/SetControlEvent.cpp, src/engine/SetControlEvent.h,
src/engine/SlowEventQueue.cpp, src/engine/SlowEventQueue.h,
src/engine/main.cpp, src/engine/util.cpp,
src/engine/tests/Makefile.am,
src/engine/tests/node_tree_test.cpp: - Preliminary MIDI binding
(no learn yet) - Minor refactoring everywhere - Some work on
subpatching, still not working though
2005-01-15 09:58 drobilla
* src/: clients/ClientHooks.h, clients/Comm.cpp, clients/Comm.h,
clients/ConnectionModel.h, clients/NodeModel.h,
clients/PatchModel.cpp, clients/PatchModel.h,
clients/gtk/src/Controller.h, clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h, clients/gtk/src/main.cpp,
common/PortInfo.h, common/types.h, engine/InputPort.cpp,
engine/MidiNoteNode.cpp, engine/NodeBase.cpp,
engine/OSCSender.cpp, engine/Port.cpp: Partially fixed polyphony,
but it's still broken somewhere..
2005-01-14 23:21 drobilla
* src/engine/: AddNodeEvent.cpp, AddNodeEvent.h,
AddSubpatchEvent.cpp, AddSubpatchEvent.h, AlsaDriver.cpp,
AlsaDriver.h, Array.h, Connection.cpp, Connection.h,
ConnectionEvent.cpp, ConnectionEvent.h, DestroyPatchEvent.cpp,
DestroyPatchEvent.h, DisconnectionEvent.cpp,
DisconnectionEvent.h, Event.cpp, Event.h, InputNode.cpp,
InputNode.h, InputPort.cpp, InputPort.h, InternalNode.h,
JackDriver.cpp, JackDriver.h, LADSPAPlugin.cpp, LADSPAPlugin.h,
List.h, Maid.cpp, Maid.h, MaidObject.h, Makefile.am,
MidiInNode.h, MidiNoteNode.cpp, MidiNoteNode.h,
MidiTriggerNode.cpp, MidiTriggerNode.h, Node.h, NodeBase.cpp,
NodeBase.h, NodeTree.cpp, NodeTree.h, NoteOffEvent.h,
NoteOnEvent.cpp, NoteOnEvent.h, OSCReceiver.cpp, OSCReceiver.h,
OSCSender.cpp, OSCSender.h, OmApp.cpp, OmApp.h, OutputNode.cpp,
OutputNode.h, OutputPort.cpp, OutputPort.h, Patch.cpp, Patch.h,
PluginFactory.cpp, PluginFactory.h, Port.cpp, Port.h, Queue.h,
RemoveNodeEvent.cpp, RemoveNodeEvent.h, SetControlEvent.cpp,
SetControlEvent.h, SlowEvent.h, SlowEventQueue.cpp,
SlowEventQueue.h, util.cpp, util.h, tests/Makefile.am: - Too many
changes to list... - Rewrote connection system, multiple inbound
connections now allowed but polyphony is temporarily hosed -
MIDI input also temporarily hosed - Large scale code cleanup -
OSC protocol reworkings, started using bundles for some things
2005-01-12 19:22 drobilla
* src/: clients/ClientHooks.h, clients/Comm.cpp,
clients/PatchLibrarian.cpp, clients/gtk/configure.ac,
clients/gtk/src/AddSubpatchWindow.cpp,
clients/gtk/src/AddSubpatchWindow.h,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h, clients/gtk/src/Makefile.am,
clients/gtk/src/OmGtk.h, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmGtkApp.h, clients/gtk/src/PatchWindow.cpp,
clients/gtk/src/PatchWindow.h, clients/gtk/src/main.cpp,
clients/gtk/src/om_gtk.glade, common/PluginInfo.h,
engine/AddNodeEvent.cpp, engine/AlsaDriver.cpp,
engine/AlsaDriver.h, engine/Array.h, engine/ConnectionEvent.cpp,
engine/Connector.cpp, engine/Connector.o,
engine/DestroyPatchEvent.cpp, engine/DestroyPatchEvent.h,
engine/DisconnectionEvent.cpp, engine/InputNode.cpp,
engine/InputNode.h, engine/InputPort.cpp, engine/InternalNode.h,
engine/JackDriver.cpp, engine/JackDriver.h,
engine/LADSPAPlugin.cpp, engine/List.h, engine/Maid.cpp,
engine/Makefile.am, engine/MidiInNode.h, engine/MidiNoteNode.cpp,
engine/MidiTriggerNode.cpp, engine/Node.h, engine/NodeBase.cpp,
engine/NodeBase.h, engine/NodeTree.cpp, engine/OSCReceiver.cpp,
engine/OSCSender.cpp, engine/OmApp.cpp, engine/OmApp.h,
engine/OutputNode.h, engine/OutputPort.cpp, engine/OutputPort.h,
engine/Patch.cpp, engine/PluginFactory.cpp,
engine/PluginFactory.h, engine/Port.cpp, engine/Port.h,
engine/RemoveNodeEvent.cpp, engine/SlowEvent.h,
engine/SlowEventQueue.cpp, engine/TreeNode.h: - Disconnection bug
fixes - Top-level patch destruction support - Many valgrind
errors fixed - GUI code revamped to load derived widgets -
Improved GUI - Lots of misc changes
2005-01-11 18:50 drobilla
* src/: clients/Comm.cpp, clients/Comm.h,
clients/ConnectionModel.h, clients/PatchLibrarian.cpp,
clients/PatchModel.h, clients/gtk/src/CanvasController.cpp,
clients/gtk/src/Controller.cpp, clients/gtk/src/Controller.h,
clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/NewPatchWindow.cpp,
clients/gtk/src/NodeControlWindow.cpp,
clients/gtk/src/NodeControlWindow.h,
clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/canvas/CanvasController.h,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/gtk/src/canvas/PatchBayArea.h,
clients/gtk/src/canvas/Port.cpp, clients/gtk/src/canvas/Port.h,
engine/AddNodeEvent.cpp, engine/AddSubpatchEvent.cpp,
engine/AlsaDriver.cpp, engine/AlsaDriver.h,
engine/ConnectionEvent.cpp, engine/ConnectionEvent.h,
engine/Connector.o, engine/DisconnectionEvent.cpp,
engine/DisconnectionEvent.h, engine/JackDriver.cpp,
engine/JackDriver.h, engine/List.h, engine/Makefile.am,
engine/MidiNoteNode.cpp, engine/MidiNoteNode.h, engine/Node.h,
engine/NodeBase.cpp, engine/NodeBase.h, engine/NoteOffEvent.cpp,
engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/Om.h,
engine/OmApp.h, engine/Patch.cpp, engine/Patch.h, engine/Port.h,
engine/SetControlEvent.cpp, engine/SetControlEvent.h: - Proper
voice stealing for polyphony - Multiple top-level patch support -
Fixed patch loading/saving - Added polyphonic information to
patch loading/saving
2005-01-09 09:12 drobilla
* src/: clients/Comm.cpp, clients/Comm.h,
clients/ConnectionModel.h, clients/Makefile.am,
clients/NodeModel.h, clients/PatchLibrarian.cpp,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/Makefile.am, clients/gtk/src/NewPatchWindow.cpp,
clients/gtk/src/NewPatchWindow.h,
clients/gtk/src/NodeControlWindow.h,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/om_gtk.glade, engine/AddNodeEvent.cpp,
engine/AddNodeEvent.h, engine/AddSubpatchEvent.cpp,
engine/AddSubpatchEvent.h, engine/AlsaDriver.cpp,
engine/AlsaDriver.h, engine/Array.h, engine/ConnectionEvent.cpp,
engine/ConnectionEvent.h, engine/Connector.cpp,
engine/Connector.o, engine/DisconnectionEvent.cpp,
engine/DisconnectionEvent.h, engine/Event.cpp, engine/Event.h,
engine/InputNode.cpp, engine/InputNode.h, engine/InputPort.cpp,
engine/InputPort.h, engine/InternalNode.h, engine/JackDriver.cpp,
engine/JackDriver.h, engine/LADSPAPlugin.cpp,
engine/MidiInNode.h, engine/MidiNoteNode.cpp,
engine/MidiNoteNode.h, engine/MidiTriggerNode.cpp, engine/Node.h,
engine/NodeBase.cpp, engine/NodeBase.h, engine/NoteOffEvent.cpp,
engine/NoteOffEvent.h, engine/NoteOnEvent.cpp,
engine/NoteOnEvent.h, engine/OSCReceiver.cpp,
engine/OSCReceiver.h, engine/OSCSender.cpp,
engine/OutputNode.cpp, engine/OutputNode.h, engine/Patch.cpp,
engine/Patch.h, engine/PluginFactory.cpp, engine/Port.cpp,
engine/RemoveNodeEvent.cpp, engine/RemoveNodeEvent.h,
engine/SetControlEvent.cpp, engine/SetControlEvent.h,
engine/SlowEvent.h, engine/util.cpp, engine/util.h: - Proper
time-stamping, events now as sample-accurate as possible - MIDI,
polyphony - Other stuff
2005-01-07 18:33 drobilla
* src/: clients/ClientHooks.h, clients/Comm.cpp, clients/Comm.h,
clients/ConnectionModel.h, clients/NodeModel.h,
clients/PatchLibrarian.cpp, clients/PatchModel.cpp,
clients/PatchModel.h, clients/gtk/src/AddSubpatchWindow.cpp,
clients/gtk/src/AddSubpatchWindow.h,
clients/gtk/src/Controller.h, clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h, clients/gtk/src/Makefile.am,
clients/gtk/src/NodeControlWindow.h, clients/gtk/src/OmGtk.cpp,
clients/gtk/src/OmGtkApp.cpp, clients/gtk/src/OmGtkApp.h,
clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/PatchStateManager.cpp,
clients/gtk/src/PatchWindow.cpp, clients/gtk/src/PatchWindow.h,
clients/gtk/src/PluginModule.cpp, clients/gtk/src/PluginModule.h,
clients/gtk/src/SubpatchModule.cpp,
clients/gtk/src/SubpatchModule.h, clients/gtk/src/om_gtk.glade,
clients/gtk/src/canvas/CanvasController.h,
clients/gtk/src/canvas/Module.cpp,
clients/gtk/src/canvas/Module.h,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/gtk/src/canvas/PatchBayArea.h, common/PluginInfo.h,
common/PortInfo.h, common/types.h, engine/AddNodeEvent.cpp,
engine/AddSubpatchEvent.cpp, engine/AddSubpatchEvent.h,
engine/Array.h, engine/ConnectionEvent.cpp,
engine/ConnectionEvent.h, engine/Connector.cpp,
engine/Connector.h, engine/DisconnectionEvent.cpp,
engine/DisconnectionEvent.h, engine/InputNode.cpp,
engine/InputNode.h, engine/InputPort.cpp, engine/InputPort.h,
engine/InternalNode.h, engine/JackDriver.cpp,
engine/LADSPAPlugin.cpp, engine/LADSPAPlugin.h,
engine/Makefile.am, engine/MidiInNode.cpp, engine/MidiInNode.h,
engine/MidiNoteNode.cpp, engine/MidiNoteNode.h,
engine/MidiTriggerNode.h, engine/Node.h, engine/NodeBase.cpp,
engine/NodeBase.h, engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/OmApp.cpp,
engine/OmApp.h, engine/OutputNode.cpp, engine/OutputNode.h,
engine/OutputPort.cpp, engine/OutputPort.h, engine/Patch.cpp,
engine/Patch.h, engine/PluginFactory.cpp, engine/Port.cpp,
engine/Port.h, engine/RemoveNodeEvent.cpp,
engine/RemoveNodeEvent.h: - LOTS of changes, mostly toward
subpatching - Patch loading currently broken - Refactored canvas
widget API - Separated connection logic in engine - More
2004-12-06 06:19 drobilla
* config.h.in~, src/clients/gtk/config.h.in~: Removed more
generated files (missed some).
2004-12-06 06:06 drobilla
* depcomp, install-sh, missing, mkinstalldirs,
src/clients/gtk/THANKS, src/clients/gtk/config.guess,
src/clients/gtk/config.sub, src/clients/gtk/configure,
src/clients/gtk/depcomp, src/clients/gtk/install-sh,
src/clients/gtk/missing, src/clients/gtk/mkinstalldirs,
src/clients/gtk/stamp-h.in, src/clients/gtk/src/Makefile.in,
src/clients/gtk/src/canvas/Makefile.in, src/engine/Makefile.in:
Removed a bunch of generated files from CVS to make incoming
patches manageable.
2004-11-30 01:32 drobilla
* src/engine/: RemoveNodeEvent.cpp, RemoveNodeEvent.h,
tests/old_node_tree_test.cpp: Forgot to add some files.
2004-11-29 05:38 drobilla
* src/engine/: AddNodeEvent.cpp, DisconnectionEvent.cpp,
Makefile.am, Makefile.in, Node.h, NodeArray.h, NodeTree.cpp,
NodeTree.h, OSCReceiver.cpp, TreeNode.h, tests/Makefile.am,
tests/event_queue_test.cpp, tests/node_tree_test.cpp: Finished
node removing. Still a bug or two exposed, but it works.
2004-11-28 09:42 drobilla
* src/engine/: Event.cpp, Event.h, InputNode.cpp, InputNode.h,
JackDriver.cpp, JackDriver.h, NodeBase.h, OutputNode.h,
OutputPort.cpp, Patch.cpp, Patch.h, Port.h, Queue.h,
SlowEventQueue.cpp: Fixed audio input stuff, and cleaned up
JackDriver quite a bit. Om can now be used as an effects rack.
2004-11-28 05:22 drobilla
* src/engine/: JackDriver.cpp, MidiNoteNode.cpp, PluginFactory.cpp,
Queue.cpp, Queue.h: Couple of minor fixes
2004-11-25 06:05 drobilla
* src/engine/: AddNodeEvent.cpp, NodeBase.cpp, NodeBase.h: Fix to
node adding (nodes weren't being activated)
2004-11-24 16:03 drobilla
* configure.ac, src/clients/Comm.cpp,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/canvas/Connection.h,
src/clients/gtk/src/canvas/Module.cpp,
src/clients/gtk/src/canvas/Module.h,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h,
src/clients/gtk/src/canvas/Port.cpp,
src/clients/gtk/src/canvas/Port.h, src/engine/AddNodeEvent.cpp,
src/engine/AddNodeEvent.h, src/engine/ConnectionEvent.cpp,
src/engine/DisconnectionEvent.cpp, src/engine/Makefile.am,
src/engine/Makefile.in, src/engine/MidiNoteNode.cpp,
src/engine/NodeBase.h, src/engine/NodeTree.cpp,
src/engine/NodeTree.h, src/engine/OSCReceiver.cpp,
src/engine/Patch.cpp, src/engine/Patch.h, src/engine/SlowEvent.h,
src/engine/SlowEventQueue.cpp, src/engine/TreeNode.h,
src/engine/tests/Makefile.am,
src/engine/tests/event_queue_test.cpp,
src/engine/tests/node_tree_test.cpp: - More work on the event
system - Created node tree, nodes in patch now stored in one -
Node adding now event-ized. Still has some problems but you can
add a node while the patch is running - Lots of cleanup work in
the PatchBayArea canvas widget
2004-11-23 18:36 drobilla
* src/engine/: ConnectionEvent.cpp, ConnectionEvent.h,
DisconnectionEvent.cpp, DisconnectionEvent.h, Event.cpp, Event.h,
EventQueue.cpp, EventQueue.h, InputNode.cpp, InputNode.h,
JackDriver.cpp, JackDriver.h, LADSPAPlugin.cpp, LADSPAPlugin.h,
Maid.cpp, Maid.h, MaidObject.h, Makefile.am, Makefile.in,
MidiNoteNode.cpp, MidiNoteNode.h, MidiTriggerNode.cpp,
MidiTriggerNode.h, Node.h, NodeArray.h, NodeBase.cpp, NodeBase.h,
NoteOffEvent.cpp, NoteOnEvent.cpp, OSCReceiver.cpp,
OSCReceiver.h, OSCSender.cpp, OmApp.h, OutputNode.cpp,
OutputNode.h, Patch.cpp, Patch.h, PluginFactory.cpp,
PluginFactory.h, Port.cpp, Port.h, Queue.cpp, Queue.h,
SetControlEvent.cpp, SlowEvent.h, SlowEventQueue.cpp,
SlowEventQueue.h, main.cpp, util.cpp, util.h: Finished
connection/disconnection stuff. Connecting and disconnecting are
now 100% realtime clean operations.
2004-11-22 19:04 drobilla
* src/engine/: ConnectionEvent.cpp, ConnectionEvent.h,
DisconnectionEvent.cpp, DisconnectionEvent.h, Event.h,
Makefile.am, Makefile.in, MidiInNode.h, NoteOffEvent.h,
NoteOnEvent.h, OSCReceiver.cpp, Patch.cpp, Patch.h, SlowEvent.h,
SlowEventQueue.cpp, SlowEventQueue.h: More work on the event
system.
2004-11-22 10:24 drobilla
* src/engine/: ConnectionEvent.cpp, ConnectionEvent.h,
DisconnectionEvent.cpp, DisconnectionEvent.h, Event.cpp, Event.h,
EventQueue.h, JackDriver.cpp, JackDriver.h, Maid.cpp, Maid.h,
Makefile.am, Makefile.in, MidiNoteNode.cpp, MidiTriggerNode.cpp,
NodeBase.cpp, OSCReceiver.cpp, Patch.cpp, Port.cpp, util.cpp,
util.h: - Made connecting and disconnecting proper events. You
can connect/disconnect without crashing now, but not everything
works right just yet...
2004-11-21 20:22 drobilla
* src/engine/: MidiTriggerNode.cpp, MidiTriggerNode.h: More
audio-rate MIDI stuff, updated the trigger node to be audio rate.
2004-11-21 19:37 drobilla
* src/engine/Event.cpp: - Forgot to add Event.cpp
2004-11-21 19:12 drobilla
* src/engine/: AlsaDriver.cpp, Event.h, EventQueue.cpp,
EventQueue.h, JackDriver.cpp, JackDriver.h, Makefile.am,
Makefile.in, MidiInNode.h, MidiNoteNode.cpp, MidiNoteNode.h,
MidiTriggerNode.cpp, MidiTriggerNode.h, NoteOffEvent.cpp,
NoteOffEvent.h, NoteOnEvent.cpp, NoteOnEvent.h, OSCReceiver.cpp,
OmApp.h, SetControlEvent.cpp, SetControlEvent.h, util.cpp,
util.h, tests/event_queue_test.cpp: - Added audio-rate
sample-accurate MIDI stuff. Very, very untested, but seems to
work
2004-11-21 11:09 drobilla
* src/engine/: MidiInNode.h, MidiNoteNode.cpp, MidiNoteNode.h,
MidiTriggerNode.cpp, MidiTriggerNode.h, NodeBase.cpp, NodeBase.h:
- Better MIDI trigger node (note this will break old patches that
use it)
2004-11-21 10:11 drobilla
* TODO, src/clients/ClientHooks.h, src/clients/Comm.cpp,
src/clients/Comm.h, src/clients/EngineModel.cpp,
src/clients/EngineModel.h, src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h,
src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/engine/OSCReceiver.cpp, src/engine/OSCSender.cpp,
src/engine/OSCSender.h, src/engine/OmApp.cpp, src/engine/OmApp.h,
src/engine/Patch.h: - Added support for patch destroying in both
engine and gtk client
2004-11-20 09:47 drobilla
* src/clients/: Comm.cpp, gtk/src/GtkClientHooks.cpp,
gtk/src/GtkClientHooks.h, gtk/src/OmGtkApp.cpp: - Gracefully
handle loading a patch that contains a plugin that doesn't exist
on this system. - Fixes to the multi-thread stuff in
GtkClientHooks
2004-11-20 07:41 drobilla
* TODO, src/clients/ClientHooks.h, src/clients/PatchLibrarian.cpp,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/OmGtkApp.cpp, src/engine/NodeBase.cpp,
src/engine/Patch.cpp: - Fixed node removing and disconnecting
some more - Properly separated OSC/Gtk threads in the gtk client
- Bugfixes
2004-11-19 18:25 drobilla
* autogen.sh, src/clients/ClientHooks.h, src/clients/Comm.cpp,
src/clients/Comm.h, src/clients/NodeModel.h,
src/clients/PatchModel.h, src/clients/gtk/autogen.sh,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h,
src/engine/InputPort.cpp, src/engine/InputPort.h,
src/engine/Node.h, src/engine/NodeBase.cpp,
src/engine/NodeBase.h, src/engine/OSCReceiver.cpp,
src/engine/OSCSender.cpp, src/engine/OSCSender.h,
src/engine/Patch.cpp, src/engine/Patch.h, src/engine/Port.cpp,
src/engine/Port.h: Node removing support.
2004-11-19 15:19 drobilla
* Makefile.in, aclocal.m4, config.h.in, configure, src/Makefile.in,
src/clients/Makefile.in, src/clients/console/Makefile.in,
src/clients/gtk/Makefile.in, src/clients/gtk/aclocal.m4,
src/clients/gtk/config.h.in,
src/clients/gtk/src/om_gtk.glade.bak,
src/clients/gtk/src/om_gtk.gladep.bak: Removed some files that
don't belong in repository.
2004-11-19 15:14 drobilla
* src/: clients/ClientHooks.h, clients/Comm.cpp, clients/Comm.h,
clients/ConnectionModel.h, clients/PatchModel.h,
clients/gtk/src/Controller.h, clients/gtk/src/GtkClientHooks.cpp,
clients/gtk/src/GtkClientHooks.h, clients/gtk/src/OmGtk.cpp,
clients/gtk/src/OmGtk.h, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmGtkApp.h, clients/gtk/src/PatchController.cpp,
clients/gtk/src/PatchController.h,
clients/gtk/src/canvas/CanvasController.h,
clients/gtk/src/canvas/PatchBayArea.cpp,
clients/gtk/src/canvas/PatchBayArea.h, engine/AlsaDriver.h,
engine/InputNode.h, engine/InputPort.cpp, engine/InputPort.h,
engine/JackDriver.h, engine/LADSPAPlugin.h, engine/MidiInNode.h,
engine/MidiNoteNode.h, engine/MidiTriggerNode.h, engine/Node.h,
engine/NodeBase.cpp, engine/NodeBase.h, engine/OSCReceiver.cpp,
engine/OSCReceiver.h, engine/OSCSender.cpp, engine/OSCSender.h,
engine/Om.h, engine/OmApp.h, engine/Patch.cpp, engine/Patch.h,
engine/Port.h: Added support for disconnecting, numerous other
fixes.
2004-11-16 03:29 drobilla
* src/: clients/NodeModel.h, clients/PatchLibrarian.cpp,
clients/gtk/src/Controller.cpp,
clients/gtk/src/GtkClientHooks.cpp, common/PortInfo.h,
engine/OSCReceiver.cpp, engine/Patch.cpp, engine/Port.cpp: Added
control saving for patches. Now envelope settings etc. will be
restored on patch load.
2004-11-15 19:19 drobilla
* Makefile.in, configure, configure.ac, src/Makefile.in,
src/clients/ClientHooks.h, src/clients/Comm.cpp,
src/clients/Comm.h, src/clients/ConnectionModel.h,
src/clients/Makefile.am, src/clients/Makefile.in,
src/clients/NodeModel.h, src/clients/PatchLibrarian.cpp,
src/clients/PatchLibrarian.h, src/clients/PatchModel.cpp,
src/clients/PatchModel.h, src/clients/console/Makefile.in,
src/clients/gtk/src/ConnectionInfo.h,
src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/Controller.h,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/GtkClientHooks.h,
src/clients/gtk/src/Makefile.am, src/clients/gtk/src/Makefile.in,
src/clients/gtk/src/OmGtk.cpp, src/clients/gtk/src/OmGtk.h,
src/clients/gtk/src/OmGtkApp.cpp,
src/clients/gtk/src/PatchController.cpp,
src/clients/gtk/src/PatchController.h,
src/clients/gtk/src/PatchLibrarian.cpp,
src/clients/gtk/src/PatchLibrarian.h,
src/clients/gtk/src/PatchStateManager.cpp,
src/clients/gtk/src/PatchWindow.cpp,
src/clients/gtk/src/PatchWindow.h, src/clients/gtk/src/main.cpp,
src/clients/gtk/src/om_gtk.glade,
src/clients/gtk/src/om_gtk.glade.bak,
src/clients/gtk/src/canvas/Module.cpp,
src/clients/gtk/src/canvas/Module.h,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/common/PortInfo.h, src/engine/Makefile.in, src/engine/Node.h,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/OSCSender.cpp, src/engine/OSCSender.h,
src/engine/Patch.cpp, src/engine/Patch.h: Moved patch loading
stuff (PatchLibrarian) from gtk client to libomclient, so all
clients can use it.
Did some more generic-izing of the client stuff, and separated
the control of the client from the status updates from the engine
(ie so multiple clients can control one engine and reflect each
other's changes)
This that and the other thing..
2004-11-08 05:33 drobilla
* src/clients/gtk/src/OmGtkApp.cpp: Added filter to patch open
dialog. (Only displays .om.xml files now)
2004-11-08 05:15 drobilla
* src/clients/gtk/src/: PatchController.cpp, PatchController.h,
PatchStateManager.cpp, PatchStateManager.h, PatchWindow.cpp,
PatchWindow.h: Forgot to add some files..
2004-11-08 05:04 drobilla
* src/: clients/EngineModel.cpp, clients/EngineModel.h,
clients/NodeModel.h, clients/PatchModel.cpp,
clients/PatchModel.h, clients/gtk/src/Controller.cpp,
clients/gtk/src/Controller.h,
clients/gtk/src/LoadPluginWindow.cpp,
clients/gtk/src/LoadPluginWindow.h, clients/gtk/src/OmGtkApp.cpp,
clients/gtk/src/OmGtkApp.h,
clients/gtk/src/OmGtkStateManager.cpp,
clients/gtk/src/OmGtkStateManager.h,
clients/gtk/src/PatchLibrarian.cpp,
clients/gtk/src/PatchLibrarian.h, engine/OSCReceiver.cpp,
engine/OSCReceiver.h: Fixed patch loading, connections
2004-11-06 09:15 drobilla
* Doxyfile, TODO, configure, configure.ac,
src/clients/ClientHooks.h, src/clients/Comm.cpp,
src/clients/Comm.h, src/clients/Makefile.am,
src/clients/Makefile.in, src/clients/gtk/configure,
src/clients/gtk/configure.ac, src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/GtkClientHooks.cpp,
src/clients/gtk/src/NodeControlWindow.cpp,
src/clients/gtk/src/NodeControlWindow.h,
src/clients/gtk/src/OmGtk.cpp, src/clients/gtk/src/OmGtk.h,
src/clients/gtk/src/OmGtkApp.cpp, src/clients/gtk/src/OmGtkApp.h,
src/clients/gtk/src/PatchLibrarian.cpp,
src/clients/gtk/src/main.cpp,
src/clients/gtk/src/canvas/Module.cpp,
src/clients/gtk/src/canvas/Module.h,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h,
src/clients/gtk/src/canvas/Port.h, src/common/PluginInfo.h,
src/engine/Makefile.am, src/engine/Makefile.in,
src/engine/OSCReceiver.cpp, src/engine/OSCReceiver.h,
src/engine/OSCSender.cpp, src/engine/OSCSender.h,
src/engine/OmApp.h, src/engine/PluginFactory.cpp: - More client
fixes, connections now work again - Replaced lots of #includes
with forward class declarations - reduces compile time
drastically - More cleanups
2004-11-05 20:15 drobilla
* src/clients/gtk/src/: ConnectionInfo.h, Controller.cpp,
Controller.h, GtkClientHooks.cpp, GtkClientHooks.h,
LoadPluginWindow.cpp, LoadPluginWindow.h, Makefile.am,
Makefile.in, NodeControlWindow.cpp, NodeControlWindow.h,
OmGtk.cpp, OmGtk.h, OmGtkApp.cpp, OmGtkApp.h,
OmGtkStateManager.cpp, OmGtkStateManager.h, PatchLibrarian.cpp,
PatchLibrarian.h, SignalAddPort.h, main.cpp, om_gtk.glade,
om_gtk.glade.bak, canvas/CanvasController.h,
canvas/CanvasStateManager.h, canvas/Connection.h,
canvas/Makefile.am, canvas/Makefile.in, canvas/Module.cpp,
canvas/Module.h, canvas/ModuleBox.cpp, canvas/ModuleBox.h,
canvas/PatchBayArea.cpp, canvas/PatchBayArea.h, canvas/Port.cpp,
canvas/Port.h: Refactored om_gtk to facilitate multiple open
patch windows (eventually). Many other changes, cleanups, API
changes, etc.
2004-11-01 17:16 drobilla
* configure, configure.ac: Fixed LADSPA check in configure.ac,
fixed type in alsa check in configure.ac
2004-11-01 07:05 drobilla
* TODO, configure.ac, src/clients/gtk/src/Controller.cpp,
src/clients/gtk/src/LoadPluginWindow.cpp,
src/clients/gtk/src/LoadPluginWindow.h,
src/clients/gtk/src/OmGtkStateManager.cpp,
src/clients/gtk/src/PatchLibrarian.cpp,
src/clients/gtk/src/canvas/PatchBayArea.cpp,
src/clients/gtk/src/canvas/PatchBayArea.h, src/common/NodeInfo.h,
src/common/PluginInfo.h, src/engine/AlsaDriver.cpp,
src/engine/AlsaDriver.h, src/engine/InputNode.cpp,
src/engine/InputNode.h, src/engine/JackDriver.cpp,
src/engine/LADSPAPlugin.cpp, src/engine/Makefile.am,
src/engine/Makefile.in, src/engine/MidiInNode.h,
src/engine/MidiNoteNode.cpp, src/engine/MidiNoteNode.h,
src/engine/MidiTriggerNode.cpp, src/engine/MidiTriggerNode.h,
src/engine/Node.h, src/engine/NodeBase.cpp,
src/engine/NodeBase.h, src/engine/OSCReceiver.cpp,
src/engine/OSCSender.cpp, src/engine/OutputNode.cpp,
src/engine/OutputNode.h, src/engine/Patch.cpp,
src/engine/Patch.h, src/engine/PluginFactory.cpp,
src/engine/PluginFactory.h, src/engine/Port.h: Added preliminary
MIDI trigger node, added audio in node, minor cleanup.
2004-10-29 16:10 drobilla
* src/clients/gtk/src/canvas/: Canvas.cpp, Canvas.h,
CanvasController.h, CanvasStateManager.h, Connection.cpp,
Connection.h, Makefile.am, Makefile.in, Module.cpp, Module.h,
ModuleBox.cpp, ModuleBox.h, PatchBayArea.cpp, PatchBayArea.h,
Port.cpp, Port.h, README, constants.h: Initial checkin.
2004-10-29 16:03 drobilla
* src/clients/gtk/src/: CanvasController.cpp, ConnectionInfo.h,
Controller.cpp, Controller.h, GtkClientHooks.cpp,
GtkClientHooks.h, LoadPluginWindow.cpp, LoadPluginWindow.h,
Makefile.am, Makefile.in, NodeControlWindow.cpp,
NodeControlWindow.h, OmGtk.cpp, OmGtk.h, OmGtkApp.cpp,
OmGtkApp.h, OmGtkStateManager.cpp, OmGtkStateManager.h,
PatchLibrarian.cpp, PatchLibrarian.h, SignalAddPort.h, main.cpp,
om_gtk.glade, om_gtk.glade.bak, om_gtk.gladep, om_gtk.gladep.bak:
Initial checkin.
2004-10-29 15:51 drobilla
* src/clients/gtk/: AUTHORS, COPYING, ChangeLog, INSTALL,
Makefile.am, Makefile.in, NEWS, README, THANKS, aclocal.m4,
autogen.sh, config.guess, config.h.in, config.h.in~, config.sub,
configure, configure.ac, depcomp, install-sh, missing,
mkinstalldirs, stamp-h.in: Initial checkin.
2004-10-29 13:13 drobilla
* src/clients/console/patches/: COPYING, dssi_test.omp,
filter_patch.omp, filter_patch.omp.bak,
old_super_simple_patch.omp, send_test.omp, simple_patch.omp,
super_simple_patch.omp, test_patch.omp: Initial checkin.
2004-10-29 09:49 drobilla
* src/clients/console/: ConsoleClientHooks.cpp,
ConsoleClientHooks.h, Makefile.am, Makefile.in,
console_client.cpp: Initial checkin.
2004-10-29 09:45 drobilla
* src/clients/: ClientHooks.h, Comm.cpp, Comm.h, Makefile.am,
Makefile.in: Initial checkin.
2004-10-29 09:41 drobilla
* src/: engine/AlsaDriver.cpp, engine/AlsaDriver.h,
engine/InputNode.cpp, engine/InputNode.h, engine/InputPort.cpp,
engine/InputPort.h, engine/JackDriver.cpp, engine/JackDriver.h,
engine/LADSPAPlugin.cpp, engine/LADSPAPlugin.h,
engine/Makefile.am, engine/Makefile.in, engine/MidiNoteNode.cpp,
engine/MidiNoteNode.h, engine/MidiTriggerNode.cpp,
engine/MidiTriggerNode.h, engine/Node.h, engine/NodeBase.cpp,
engine/NodeBase.h, engine/OSCReceiver.cpp, engine/OSCReceiver.h,
engine/OSCSender.cpp, engine/OSCSender.h, engine/Om.cpp,
engine/Om.h, engine/OmApp.cpp, engine/OmApp.h,
engine/OutputNode.cpp, engine/OutputNode.h,
engine/OutputPort.cpp, engine/OutputPort.h, engine/Patch.cpp,
engine/Patch.h, engine/PluginFactory.cpp, engine/PluginFactory.h,
engine/Port.cpp, engine/Port.h, engine/main.cpp,
common/NodeInfo.h, common/PluginInfo.h, common/PortInfo.h,
common/README, common/types.h: Initial checkin.
2004-10-29 07:14 drobilla
* AUTHORS, COPYING, ChangeLog, Doxyfile, INSTALL, Makefile.am,
Makefile.in, NEWS, README, TODO, aclocal.m4, autogen.sh,
config.h.in, config.h.in~, configure, configure.ac, depcomp,
install-sh, missing, mkinstalldirs, src/Makefile.am,
src/Makefile.in, src/SETUP_ALIASES: Initial checkin.
|