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 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268
|
2006-02-15 09:27 anderson
* configure: Change to 0.3.0 final release
2006-02-14 14:57 akleine
* util/decompile.c: replaced old 'funcret' workaround [ in
decompileCALLMETHOD() ]
2006-02-13 15:21 akleine
* util/decompile.c: 2 bugfixes: in decrement and newobject calls
2006-02-10 23:27 anderson
* NEWS: Update updates
2006-02-10 22:44 anderson
* ch/: pkgcreate.ch, readme.txt, c/Makefile.win,
c/handmade/SWFMovie_output_chdl.c,
chfhandmade/SWFMovie_output.chf, demos/action.c, demos/button.c,
demos/cxform.c, demos/drag.c, demos/gradient.c,
demos/gradientxform.c, demos/jpegfill.c, demos/png.c: Updated to
0.3 from Stephen Nestinger
2006-02-10 16:12 akleine
* util/decompile.c: added two more stack operations: dup and swap
2006-02-10 11:52 akleine
* util/png2dbl.c: bugfix in cast op: makes work *.dbl files from
GRAY images
2006-02-10 10:05 anderson
* php_ext/: README, README.PHP4, README.PHP5: Try to be more clear
about the PHP4/PHP5 support
2006-02-10 09:28 anderson
* TODO: Add more item that need to be done
2006-02-09 11:17 strk
* NEWS: updated
2006-02-08 17:59 anderson
* src/actiontypes.h: The new unified definition of action type
values
2006-02-08 17:48 anderson
* src/actioncompiler/action.h, src/actioncompiler/assembler.c,
src/actioncompiler/compile.c, src/actioncompiler/compileaction.c,
src/actioncompiler/listaction.c, src/actioncompiler/main.c,
src/actioncompiler/swf4compiler.flex,
src/actioncompiler/swf4compiler.y,
src/actioncompiler/swf5compiler.flex,
src/actioncompiler/swf5compiler.y, util/action.h: Unify remaining
definitions of action values
2006-02-08 14:28 anderson
* util/: action.c, decompile.c: Oops. There are 2 pools in use.
Make them static so they don't interfere with each other
2006-02-08 14:18 anderson
* Makefile.config.in: Set up LDFLAGS also
2006-02-08 14:09 anderson
* src/actioncompiler/compileaction.c,
src/actioncompiler/swf5compiler.flex, src/blocks/fromswf.c,
src/blocks/gifdbl.c, src/blocks/input.c, src/blocks/input.h,
src/blocks/output.c, src/blocks/output.h, src/blocks/pngdbl.c,
util/dbl2png.c, util/decompile.c, util/gif2dbl.c,
util/gif2mask.c, util/listfdb.c, util/parser.c, util/swftypes.h:
Clean up some more compiler warnings
2006-02-06 15:36 strk
* src/actioncompiler/listaction.c: Fixed default out of switch
2006-02-03 23:51 strk
* src/actioncompiler/: action.h, listaction.c: Added GREATERTHEN
(0x67) and STRING_GREATERTHEN (0x68) opcodes
2006-02-03 16:44 strk
* src/actioncompiler/: action.h, listaction.c: Added
SWFACTION_ACSTOBJECT (0x2b)
2006-02-03 16:41 strk
* src/actioncompiler/action.h: Fixed SWFACTION_IMPLEMENTS
(0x2b=>0x2c)
2006-02-03 16:39 strk
* src/actioncompiler/: action.h, listaction.c: Added
SWFACTION_IMPLEMENTS (0x2C) and SWFACTION_EXTENDS (0x69)
2006-02-01 17:13 peterdd
* perl_ext/SWF/: Bitmap.pm, Constants.pm, Sound.pm, TextField.pm,
VideoStream.pm: fixing pod errors
2006-02-01 16:49 peterdd
* perl_ext/SWF/Button.pm: added setMenu in documentation
2006-02-01 16:44 peterdd
* perl_ext/SUPPORT: links to mailing lists updated
2006-02-01 07:49 peterdd
* perl_ext/SWF.pm: update of documentation, version set to 0.3beta2
(still hardcoded here)
2006-02-01 07:47 peterdd
* perl_ext/SWF.xs: added getScale, setCubicThreshold(num),
setSWFCompression(level)
2006-02-01 07:45 peterdd
* perl_ext/Makefile.PL: removed a call to unexistent function
2006-02-01 07:42 peterdd
* perl_ext/README: update for release
2006-01-30 22:07 anderson
* php_ext/ming.c: Mostly just trivial reformatting to eliminate the
diff noise when compared against the upstream file. This leaves
just the interesting stuff that needs to be manually resolved.
NB: it looks like PHP 4.3 and 4.4 are missing the new APIs unless
they have been recently added upstream. I know PHP4 is frozen for
maintainace but it is still useful for OS providors to be able to
get a patch for PHP4 that goes with Ming 0.3.0.
2006-01-30 15:53 anderson
* Makefile-real: prune the old utilities from the release tarballs.
2006-01-30 15:52 anderson
* util/: Makefile, dbl2png.c: Add a new dbl2png utility from
Albrecht Kleine <kleine@ak.sax.de>
2006-01-30 13:25 anderson
* configure: Set the MICRO version to beta2
2006-01-30 13:16 anderson
* configure.in: Set the version to beta2
2006-01-30 13:13 anderson
* Makefile: The target is Changelog (lower 'l', not ChangeLog (cap
'L') so it always runs, and noesn't think the file already exists
2006-01-30 13:09 anderson
* NEWS, TODO: Update docs
2006-01-30 07:09 anderson
* NEWS, TODO: Update docs
2006-01-26 15:55 strk
* macros/ming.m4: Added 'makeswf' detection code and usage docs
2006-01-26 15:43 strk
* util/ming-config.in: Added --bindir
2006-01-25 14:19 peterdd
* perl_ext/.cvsignore: added SoundInstance.c SoundStream.c
VideoStream.c
2006-01-25 05:43 strk
* macros/ming.m4: Added m4 macro for client code use
2006-01-25 05:22 strk
* .cvsignore, py_ext/.cvsignore, util/.cvsignore: Updated cvsignore
files
2006-01-25 05:06 strk
* Makefile, Makefile-real, Makefile.config.in, configure,
configure.in, util/Makefile, util/ming-config.in: Added
ming-config script for client applications use. Changed MING_VER
to MING_VERSION. Moved maintainer-clean, ChangeLog and release
rules from Makefile to Makefile.real having it use MING_VERSION.
2006-01-25 03:26 peterdd
* perl_ext/examples/glyph.cgi: fix typo
2006-01-25 02:47 peterdd
* perl_ext/examples/shape.cgi: fixed
2006-01-25 02:41 peterdd
* perl_ext/examples/keypress.cgi: fixed
2006-01-25 02:14 peterdd
* perl_ext/SWF/VideoStream.pm: added stub for documentation of
VideoStream
2006-01-25 01:49 peterdd
* perl_ext/examples/video.cgi: a videostream example
2006-01-25 01:26 peterdd
* perl_ext/examples/sound.cgi: included Constants
2006-01-25 01:10 peterdd
* perl_ext/examples/textfield.cgi: add a textfield example
2006-01-25 00:52 peterdd
* perl_ext/common/_sans.fdb: arial like font for build tests and
examples
2006-01-25 00:47 peterdd
* perl_ext/common/README: add
2006-01-25 00:45 peterdd
* perl_ext/common/beep.wav: file for build tests and examples
2006-01-24 23:32 peterdd
* perl_ext/examples/glyph.cgi: fixed
2006-01-24 23:22 peterdd
* perl_ext/examples/morph.cgi: fixed and improved
2006-01-24 23:07 peterdd
* perl_ext/examples/sprite.cgi: fixed
2006-01-24 22:49 peterdd
* perl_ext/examples/: animation.cgi, text.cgi: comment out my
libpath
2006-01-24 22:48 peterdd
* perl_ext/examples/text.cgi: fixed and improved
2006-01-24 22:17 peterdd
* perl_ext/examples/animation.cgi: fixed and improved
2006-01-24 18:32 peterdd
* perl_ext/Makefile.PL: fixing paths
2006-01-24 18:29 peterdd
* perl_ext/Makefile.PL: fixing paths
2006-01-24 18:03 peterdd
* perl_ext/Makefile.PL: a first step: take mingversion from global
../configure.in, use of ../src/ming_config.h for detection of
optional libs
2006-01-24 09:52 anderson
* Makefile: Don't record changes to ChangeLog itself
2006-01-24 09:48 anderson
* Makefile: Split the rest of the language modules into seperate
tarballs. Add a convvenience target for updating the Changelog
2006-01-24 09:45 anderson
* php_ext/README, rb_ext/README: Addpointers to current version of
the module in other projects
2006-01-23 16:26 whamann
* src/blocks/placeobject.c:
placeobject was saving name and mask depth in wrong order, fixed
2006-01-06 10:38 anderson
* Makefile: Add a target for building rleease tarballs
2006-01-06 10:36 anderson
* Makefile-real: Finish unhooking the php dir from the build
2006-01-05 14:30 anderson
* src/actioncompiler/: swf4compiler.flex, swf5compiler.flex: Fix a
problem where 2 sequential escaped chars would not get proccessed
correctly. The 2nd one would not be unescaped since the 2nd
escape was being consumed in the wrong place.
2005-12-09 05:00 strk
* ch/: Makefile, pkgcreate.ch, readme.txt, c/Makefile.win,
include/ming.h: Applied patch from Stephen Nestinger to remove
ming.h duplication
2005-12-06 09:32 strk
* Makefile-real, Makefile.config.in, configure, configure.in,
src/.cvsignore, src/ming.h, src/ming.h.in: Moved version info
into configure.in. ming.h generated by ./configure (to add
version defines). version info in Makefile.config set by
./configure
2005-12-06 07:47 anderson
* configure: Regen to match configure.in - Adds EXTRA_BINS for gif
tools
2005-12-06 07:00 strk
* configure.in, util/Makefile: gif binaries build triggered by
avalability of gif lib
2005-11-28 18:09 anderson
* Makefile-real, Makefile.config.in, configure, configure.in,
src/Makefile: Create a way to pass in additional flags when
building share library objects. This is used on Linux to pass in
-fPIC. Similar can be done for other OSes. Recognize Linux, and
set the SONAME correctly
2005-11-28 10:46 anderson
* py_ext/Makefile: provide a way to pass in a different prefix when
building packages
2005-11-28 10:45 anderson
* src/Makefile: Add additional dependencies
2005-11-24 10:47 strk
* php_ext/: ming.c, php_ming.h: License change reverted (LGPL->PHP)
until someone more informed then me will take care of it.
2005-11-23 14:47 anderson
* php_ext/: ming-dev.c, ming-streams.c: Remove obsolete files
2005-11-23 14:47 anderson
* php_ext/Makefile: Install to DESTDIR
2005-11-23 02:55 strk
* php_ext/: ming-dev.c, ming-streams.c, ming.c, php_ming.h: Fixed
license header (PHP->LGPL)
2005-11-14 11:46 anderson
* util/: read.c, read.h: Remove unused indent code
2005-11-14 11:39 anderson
* util/: action.c, decompile.c, outputtxt.c, parser.c, swftypes.h:
small cleanups to allow building w/ gcc-2.95
2005-11-14 07:03 strk
* NEWS: updated to use exported name of Fromswf(): SWFPrebuildClip
2005-10-18 18:05 anderson
* src/actioncompiler/swf5compiler.flex: Add missing bounds check
that can cause SIGSEG
2005-10-15 15:05 anderson
* util/Makefile: Also build gif2dbl and gif2mask
2005-10-15 13:40 anderson
* util/Makefile: Remove duplicate makeswf from the list of binaries
2005-10-03 03:13 strk
* util/main.c: Removed example call from main.c, as it would refer
to swftoperl while being used by all outputs
2005-09-13 00:55 anderson
* util/: action.c, main.c, outputtxt.c: Try to make the output
easier to read. Leave out some details unless -v (verbose) is
passed on the command line. Also, indent actions according to
their nesting level.
2005-09-13 00:06 anderson
* util/Makefile: Assume we are beyond the point of no return now
8-) Rename the new binaries to that same names as the old
binaries. Make sure we are building all of the old binaries
also. This will make package upgrades easier.
2005-09-13 00:04 anderson
* util/listmp3.c: Initialize some variable which might get used
before they are otherwise set
2005-09-13 00:04 anderson
* util/: listfdb.c, makefdb.c: Fix to build again w/ new includ
patch & symbols
2005-09-07 10:20 anderson
* util/read.c: compiler complaint: put data decls before functions
calls & initialize offset for compilers that think it might be
used before being set
2005-09-07 10:19 anderson
* util/decompile.c: compiler complaint: decompileActions() really
should be a void return
2005-09-06 07:54 strk
* mingpp.h, src/ming.h, src/movie.c: Applied patch by Darren Cook
making exposure of fileOutputMethod function useless
2005-09-01 01:01 anderson
* util/: action.c, action.h, decompile.c, decompile.h: New
decompiler that goes with the new parser. This handles Flash 7.
This decompiler is passed an entire block of actions which were
collected by the parser code. This allows the decompiler to look
forward and backward a few actions to help make it's decisions.
This is not yet complete, but is working well enough for people
to look at and comment on. There are still a few things in the
old code to be reapplied to this new code.
2005-08-31 11:37 anderson
* util/outputtxt.c: When built for listaction, include actions in
some less obvious places
2005-08-22 04:36 strk
* NEWS: Added case-sensitive actionscript compiler change
2005-08-17 12:41 anderson
* util/: Makefile, outputtxt.c: Restore the listaction command
2005-08-16 13:22 anderson
* util/: action.c, action.h, outputtxt.c, parser.c, parserdecl.h,
swftypes.h: action.c: Add specifiy fuctions for more Actions
including IF and DEFINEFUNCTION* which have their own
blocks of actions wthat get skipped if they aren't explicitely
handled. outputtxt.c: fill in missing StraightEdge detail, pass
action number to outputSWF_ACTION() parser.c: Change
how parseSWF_ACTIONRECORD() is called. It now has access
to the entire block of action record,s not just a single record.
Implement IF parsing which puts the conditional block of
action in a seperate block hanging off of this record.
swftypes.h: Add the Offset to all records types.
2005-08-15 06:00 strk
* ChangeLog, NEWS: Initial import
2005-08-14 12:14 krechert
* configure, configure.in: add -fPIC to CFLAGS for x86_64 machines
2005-08-12 21:23 whamann
* ch/: chfhandmade/Ming_setErrorFunction.chf,
chfhandmade/Ming_setWarnFunction.chf,
chfhandmade/SWFMovie_output.chf, demos/png.dbl,
include/font_util.h, include/gc.h, include/blocklist.h,
include/fill.h, include/libming.h, include/ming_config.h,
include/movie.h, include/position.h, include/shape_util.h,
include/text_util.h, include/ming.h, include/displaylist.h,
include/movieclip.h, include/shape_cubic.h,
include/blocks/bitmap.h, include/blocks/browserfont.h,
include/blocks/dbl.h, include/blocks/fromswf.h,
include/blocks/method.h, include/blocks/action.h,
include/blocks/block.h, include/blocks/blocktypes.h,
include/blocks/button.h, include/blocks/character.h,
include/blocks/cxform.h, include/blocks/error.h,
include/blocks/exports.h, include/blocks/fillstyle.h,
include/blocks/font.h, include/blocks/fontinfo.h,
include/blocks/gradient.h, include/blocks/imports.h,
include/blocks/input.h, include/blocks/jpeg.h,
include/blocks/libswf.h, include/blocks/linestyle.h,
include/blocks/matrix.h, include/blocks/morph.h,
include/blocks/output.h, include/blocks/outputblock.h,
include/blocks/placeobject.h, include/blocks/rect.h,
include/blocks/shape.h, include/blocks/sound.h,
include/blocks/soundinstance.h, include/blocks/soundstream.h,
include/blocks/sprite.h, include/blocks/swf.h,
include/blocks/text.h, include/blocks/textfield.h,
include/blocks/ttffont.h, include/blocks/utf8.h,
include/blocks/videostream.h: Initial revision
2005-08-12 21:23 whamann
* ch/: chfhandmade/Ming_setErrorFunction.chf,
chfhandmade/Ming_setWarnFunction.chf,
chfhandmade/SWFMovie_output.chf, demos/png.dbl,
include/font_util.h, include/gc.h, include/blocklist.h,
include/fill.h, include/libming.h, include/ming_config.h,
include/movie.h, include/position.h, include/shape_util.h,
include/text_util.h, include/ming.h, include/displaylist.h,
include/movieclip.h, include/shape_cubic.h,
include/blocks/bitmap.h, include/blocks/browserfont.h,
include/blocks/dbl.h, include/blocks/fromswf.h,
include/blocks/method.h, include/blocks/action.h,
include/blocks/block.h, include/blocks/blocktypes.h,
include/blocks/button.h, include/blocks/character.h,
include/blocks/cxform.h, include/blocks/error.h,
include/blocks/exports.h, include/blocks/fillstyle.h,
include/blocks/font.h, include/blocks/fontinfo.h,
include/blocks/gradient.h, include/blocks/imports.h,
include/blocks/input.h, include/blocks/jpeg.h,
include/blocks/libswf.h, include/blocks/linestyle.h,
include/blocks/matrix.h, include/blocks/morph.h,
include/blocks/output.h, include/blocks/outputblock.h,
include/blocks/placeobject.h, include/blocks/rect.h,
include/blocks/shape.h, include/blocks/sound.h,
include/blocks/soundinstance.h, include/blocks/soundstream.h,
include/blocks/sprite.h, include/blocks/swf.h,
include/blocks/text.h, include/blocks/textfield.h,
include/blocks/ttffont.h, include/blocks/utf8.h,
include/blocks/videostream.h: initial import
2005-08-12 21:20 whamann
* ch/: Makefile, pkginstall.ch, readme.txt, pkgcreate.ch,
c/Make.inc, c/Makefile, c/Makefile.win,
c/handmade/Ming_setErrorFunction_chdl.c,
c/handmade/Ming_setWarnFunction_chdl.c,
c/handmade/SWFMovie_output_chdl.c, demos/action.c, demos/drag.c,
demos/gradient.c, demos/jpegfill.c, demos/png.c, demos/cxform.c,
demos/backyard.jpg, demos/backyard.png, demos/button.c,
demos/gradientxform.c: Initial revision
2005-08-12 21:20 whamann
* ch/: Makefile, pkginstall.ch, readme.txt, pkgcreate.ch,
c/Make.inc, c/Makefile, c/Makefile.win,
c/handmade/Ming_setErrorFunction_chdl.c,
c/handmade/Ming_setWarnFunction_chdl.c,
c/handmade/SWFMovie_output_chdl.c, demos/action.c, demos/drag.c,
demos/gradient.c, demos/jpegfill.c, demos/png.c, demos/cxform.c,
demos/backyard.jpg, demos/backyard.png, demos/button.c,
demos/gradientxform.c: initial import
2005-08-10 18:53 anderson
* util/: outputscript.c, outputtxt.c: Don't compare the type value
to the number of Blocks we can output. They aren't really the same
thing, and we end up skipping some of the later blocktypes that
happen to have type values greater than the number of entries in
the array.
2005-08-09 16:26 strk
* INSTALL: Revision by Darren Cook
2005-08-08 12:43 strk
* src/ming_config.h.in: Fixed documentation of TRACK_ALLOCS
2005-07-08 10:22 strk
* src/blocks/font.c: Applied patch from Uwe Traum initializing new
elems of codeTable
2005-06-13 16:05 anderson
* ChangeLog, util/action.c, util/action.h, util/outputtxt.c: Start
implementing more detailed output for actions >=0x80 add output for
action that are tucked away inside other blocks like
CLIPACTIONRECORDs.
2005-06-13 16:00 anderson
* util/Makefile: Use a var for the long list of objects
2005-06-10 00:36 anderson
* ChangeLog, util/outputtxt.c, util/parser.c, util/swftypes.h: Fix
many warnings Implemenent IMPORTASSET and output more info for
DEFINESPRITE
2005-06-09 15:07 anderson
* ChangeLog: Format the CodeTable output of DEFINEFONT2 to display
2 or 4 digits depending on FontFlagsWideCodes.
2005-06-08 19:16 anderson
* util/outputtxt.c: Format the CodeTable output of DEFINEFONT2 to
display 2 or 4 digits depending on FontFlagsWideCodes.
2005-06-04 13:19 strk
* CREDITS, ChangeLog: Added strk and Stuart
2005-05-30 23:40 anderson
* util/swftypes.h: Fix how we define SWF_ACTION record within
actions. This was why some records were getting steeped on becasue
the arrays elements were using the wrong size of type
2005-05-30 23:22 anderson
* util/: decompile.c, decompile.h, outputscript.c, outputtxt.c,
parser.c, swftypes.h: Break decompiles a bit less now:
1) Restore the indent parameter in calls to decompile5Action().
It's removal indavertantly left gIndent uninitialized which
caused the code to loop for a very very long time. 2) The
SWFACTION_WIHT blocks weren't being parsed right. The SWF Spec
seems to describes the block incorrectly.
2005-05-30 20:24 anderson
* util/: parser.c, swftypes.h: Parse more Block types
2005-05-30 14:48 anderson
* util/: decompile.c, decompile.h, outputdecl.h, outputscript.c,
outputtxt.c, parser.c, parserdecl.h, swftypes.h: 1) define
structures for all action through v7 2) Rename some actions to
better match SWF File Format Specification 3) Parse all actions and
build data structures instead of just calling decompile() 4) Change
the decompiler to work off of the new data structures instead of
the file stream. There is much more work needed here to restore the
full functionallity of decompile. 5) Fill in the implmentation
for several mroe block types
2005-05-30 14:42 anderson
* util/main.c: Make an error fatal for now to make it more obvious
during develpment
2005-05-30 14:38 anderson
* util/: action.c, action.h: 1) Add definitions for all action
through v7 2) Rename a few action to better match the SWF File
Format Specification
2005-05-30 14:36 anderson
* util/Makefile: listswf2 is now somewhat functional, so build it
again
2005-05-30 14:34 anderson
* util/blocktypes.c: Add SWF_INITACTION and remove some bounds
checking which is incorrect
2005-05-30 14:23 anderson
* util/: read.c, read.h: Add readBytes() which is a sized read like
readSizedString(), but doesn't try to inteprete the contents. Add
peekBytes() which is similar to dumpBytes, but it rewinds the file
offset.
2005-04-24 04:44 strk
* Makefile-real, Makefile.config.in, configure, configure.in,
java_ext/native/Makefile, php_ext/Makefile, src/Makefile,
tcl_ext/Makefile, util/Makefile, util/old/Makefile: Applied patch
by Motoi Washida <a66@h8.dion.ne.jp> for Darwin build cleanup
2005-04-18 14:21 strk
* util/Makefile: Added missing makeswf to BINARIES variable
2005-04-15 13:30 strk
* src/blocks/fromswf.c: Initialized some vars to make compiler
happy
2005-04-15 13:20 strk
* php_ext/: Makefile, Makefile.in: Build scripts cleanup
2005-04-15 13:11 strk
* util/: decompile.c, swftoscript.c, swftoscript.h: Removed
obsolete files
2005-04-15 12:43 strk
* util/Makefile: Fixed wrong dependency for swftophp2 and
swftopython
2005-04-14 19:43 strk
* README: Added note about makeswf(1) being released GPL
2005-04-14 17:44 strk
* util/: decompile.c, old/Makefile, old/blocktypes.c,
old/blocktypes.h, old/decompile.c, old/decompile.h, old/libswf.h,
old/listswf.c, old/output.h, old/swftoscript.c, old/swftoscript.h:
More cleanups in old/ dir, small fix in decompile.c
2005-04-14 16:45 strk
* util/outputtxt.c: Put some NODECOMPILE blocks back in (but it's
not working).
2005-04-14 16:45 strk
* util/Makefile: Removed listswf2 build (NODECOMPILE is not
implemented yet).
2005-04-14 16:44 strk
* util/decompile.c: Fixed bogus handling of 'with' code
2005-04-14 16:25 strk
* util/old/: Makefile, action.h: Removed duplicated action.h, code
will use the ../action.h
2005-04-14 16:18 strk
* .cvsignore, src/.cvsignore, util/.cvsignore, util/old/.cvsignore:
Updated
2005-04-14 16:11 strk
* Makefile.am, c++_ext/Makefile.am, src/Makefile.am,
src/actioncompiler/Makefile.am, src/blocks/Makefile.am,
util/Makefile.am: Removed to avoid users confusion
2005-04-11 19:32 strk
* util/: decompile.c, main.c, outputdecl.h, outputscript.c,
outputtxt.c: New fixed by Stuart R. Anderson
2005-04-11 10:57 strk
* util/: decompile.c, decompile.h, main.c, outputscript.c,
old/Makefile, old/listswf.c: Cleanups by Stuart Anderson
2005-04-09 17:34 strk
* util/main.c: Added missing prototypes, minor cleanups.
2005-04-09 17:33 strk
* util/outputtxt.c: Implemented outputHeader
2005-04-09 17:18 strk
* util/main.c: Fixed a bug in cws2fws missing to allow read on
decompressed file.
2005-04-09 10:27 strk
* util/parser.c: Applied patch for version 5 movies handling.
2005-04-07 18:21 strk
* util/old/listswf.c: Incremented memory allocated for dictionary
entries
2005-04-07 18:18 strk
* util/: Makefile, blocktypes.h, decompile.c, decompile.h,
decompile4.c, listswf.c, main.c, parser.c, read.h, swftoperl.c,
swftoperl.h, swftophp.c, swftophp.h, old/Makefile, old/action.h,
old/bindump.c, old/blocktypes.c, old/blocktypes.h, old/decompile.c,
old/decompile.h, old/decompile4.c, old/hexdump.c, old/libswf.h,
old/listswf.c, old/output.h, old/read.c, old/read.h,
old/swftoscript.c, old/swftoscript.h: Moved old decompiler under
old/
2005-04-07 17:54 strk
* util/outputtxt.c: Cleanups
2005-04-07 17:52 strk
* util/outputscript.c: Cleanups.
2005-04-07 16:37 strk
* util/: Makefile, action.c, blocktypes.c, decompile.c,
decompile.h, listswf.c, main.c, outputdecl.h, outputscript.c,
outputtxt.c, parser.c, parser.h, parserdecl.h, read.c, swfoutput.h,
swftoscript.c, swftoscript.h, swftypes.h: Imported Stuart Anderson
new code for decompiling utils.
2005-04-01 12:27 strk
* util/: decompile.c, listswf.c: Code cleanups, no more warnings on
freeBSD.
2005-04-01 11:13 strk
* Makefile.config.in, configure, configure.in, src/Makefile: Added
primitive (and limited) support for Darwin builds.
2005-03-31 19:22 strk
* Makefile, Makefile-real: Fixed install-static rule
2005-03-31 13:39 strk
* configure: Updated to match configure.in
2005-03-31 13:35 strk
* ChangeLog, Makefile.config.in, configure.in, py_ext/.cvsignore,
py_ext/Makefile: Initial build scripts support for python wrapper.
2005-03-30 23:41 strk
* Makefile.config.in, configure, configure.in: Fixed missing CC and
CXX variables (weren't set by configure)
2005-03-29 16:06 whamann
* src/blocks/soundstream.c:
now that ID3 tags or just binary 0's are correctly skipped,
remembering the initial position in the stream helps a lot
2005-03-29 12:47 strk
* util/: Makefile, decompile.c, decompile.h, decompile4.c,
decompile5.c, swftoscript.c: Renamed decompile.c to decompile4.c
and decompile.c to decompile.c. The new non-versioned file is the
only to be used, the other is left but obsoleted, removed all refs
to it in Makefile. Changed use of tmpnam with mkstemp, which is
more secure. Changed Stack type to never destroy it's strings. It
will leak, but it's most common use will be single-shot decompile
of an swfmovie. At least won't segfault now...
2005-03-28 10:08 strk
* util/makeswf.c: Added frame layout printing.
2005-03-28 00:06 strk
* Makefile, Makefile-real, Makefile.config.in, Rules.make.in,
config.make.in, configure, configure.in, c++_ext/Makefile,
man/Makefile, php_ext/Makefile, src/Makefile,
src/actioncompiler/Makefile, src/blocks/Makefile, util/Makefile:
Merged Rules.make and config.make into a single Makefile.config
file.
2005-03-27 23:52 strk
* man/makeswf.1: cleanups
2005-03-27 23:40 strk
* LICENSE_GPL2: Added GPL2 license, for code released with that
license (makeswf).
2005-03-27 23:32 strk
* Makefile-real, Rules.make.in, man/Makefile, man/makeswf.1: Added
makeswf manual page.
2005-03-26 11:59 whamann
* src/actioncompiler/swf5compiler.y:
removed two redundant declarations - now 79 shift/reduce and 87
reduce/reduce conflicts left
2005-03-26 11:47 whamann
* src/blocks/fromswf.c:
removed some code no longer needed
2005-03-25 18:59 strk
* php_ext/Makefile: Modified to include appropriate file for CC
definition.
2005-03-25 18:43 strk
* src/Makefile: Modified static and dynamic rules to avoid
recompilation when unneeded
2005-03-22 16:20 strk
* Makefile-real: Broader libs match for clean rule.
2005-03-22 16:15 strk
* Makefile-real: src/ming_config.h cleanup
2005-03-22 16:10 strk
* util/Makefile: Changed all rules to use dynamic linkage
2005-03-22 15:58 strk
* Rules.make.in, src/Makefile, util/Makefile: Library version split
into MAJOR,MINOR,MICRO
2005-03-22 15:52 strk
* Makefile-real: static library built reintroduced by default
2005-03-22 15:50 strk
* src/Makefile: Added libming.so symlink
2005-03-22 15:29 strk
* util/Makefile: Made install rule to only install buildable
binaries.
2005-03-22 15:22 strk
* util/Makefile: Enhanced to work with older compilers.
2005-03-22 15:13 strk
* Makefile, config.make.in, configure, configure.in, util/Makefile:
configure script included in CVS, handled optional binaries build
for systems w/out GIF and/or PNG.
2005-03-22 14:41 strk
* util/makeswf.c: Changed calling interface: - all arguments are
source files - each source file will be stored in a separate
frame, in the order they appear - output will be
"out.swf" unless -o <output> is used
2005-03-22 09:27 strk
* Makefile-real, Rules.make.in, util/Makefile: Used bindir,
includedir and libdir from autoconf. Made util build and install
happen by default, and use @bindir@
2005-03-22 09:13 strk
* util/Makefile: Cleanups, use of user-provided --prefix
2005-03-22 09:03 strk
* src/ming_config.h: this will be produced by autoconf
2005-03-22 09:01 strk
* src/Makefile: Fixed cleanup of shared lib
2005-03-22 08:59 strk
* configure.in, src/ming_config.h.in: ming_config.h generated from
autoconf
2005-03-22 08:50 strk
* Makefile: improved dependencies
2005-03-21 18:12 strk
* autogen.sh: simplified
2005-03-21 18:11 strk
* configure.in: Modified to work with older autoconf versions
2005-03-21 18:06 strk
* Rules.make.in, config.make.in: These are handled by autoconf
2005-03-21 18:02 strk
* Makefile-real, Makefile: Renamed Makefile to Makefile-real, added
a Makefile wrapper
2005-03-21 17:53 strk
* Makefile: More cleanups
2005-03-21 17:51 strk
* Rules.make, config.make: Will be created running ./configure
2005-03-21 17:50 strk
* configure.in: simplified
2005-03-21 17:50 strk
* Makefile: Added distclean rule and let PREFIX be get from
Rules.make
2005-03-03 20:07 whamann
* src/blocks/fromswf.c:
wrong call parameter in previous fix -- oops
2005-02-16 14:06 whamann
* src/blocks/: font.c, fromswf.c:
better morph parsing destroyfont erratically was called with no
font
2005-02-14 15:45 strk
* src/actioncompiler/swf5compiler.flex: Applied patch from Uwe
Traum handling exponential notation and fixing a bug in the
unescape function.
2005-02-13 18:50 whamann
* src/blocks/fromswf.c:
fix two bugs in prebuiltclip handling, one incorrect freeing if the
input is compressed the other one: do not consider the special
character id -1 (which occasionally occurs with bitmap fills) while
scanning the clip
2005-01-02 20:03 whamann
* src/blocks/fromswf.c, src/blocks/gifdbl.c, util/gif2dbl.c:
fixed crash on swfprebuiltclip - thanks F. Kromann gif import
problem - lib_gif.h declares a byte as a char which should rather
be unsigned, so I added masking This will occasionally turn
transparent gif into non-transparent BTW: neither the inline code
nor the util de-interlace progressive images
2004-12-29 13:35 krechert
* src/blocks/videostream.c: fixed compiler warning
2004-12-29 13:31 krechert
* perl_ext/Makefile.PL: add #include src/libming.h to SWF.h
2004-12-18 19:02 krechert
* src/blocks/soundstream.c: [no log message]
2004-12-09 23:39 whamann
* src/blocks/input.c:
even memory buffers want there offset updated by reading :)
2004-12-07 18:19 krechert
* src/blocks/soundstream.c: skip additional data before real mp3
header
2004-11-10 15:00 strk
* util/makeswf.c: Added support for specifying output compression
level
2004-11-10 13:12 strk
* src/actioncompiler/: Makefile, swf4compiler.flex,
swf5compiler.flex: Parser made case-sensitive, changed few lagacy
function token definitions to allow for some case-mIxIng
2004-11-10 13:11 strk
* src/actioncompiler/swf5compiler.y: More debugging calls.
2004-11-09 13:48 strk
* util/makeswf.c: Added -v flag in usage string (already supported
but not documented)
2004-11-05 14:57 whamann
* src/actioncompiler/swf5compiler.y:
added support for geturl(url) as needed for javascript calls etc.
note: this is exactly the same as geturl(url,'')
2004-11-03 08:52 strk
* util/: makeswf.c, makeswf.h: Introduced a default include path to
easy code sharing.
2004-11-02 18:53 strk
* util/makeswf.c: Fixed a bug in -I and -D handling.
2004-11-02 18:48 strk
* util/Makefile: Fixed makeswf build rule
2004-10-27 14:54 strk
* util/listswf.c: Changed Push record display to take less space.
2004-10-27 14:32 strk
* src/actioncompiler/swf5compiler.y: Commented in DEBUG define
(left from previous tests)
2004-10-27 14:30 strk
* src/actioncompiler/swf5compiler.y: Fixed bug in: new obj; new
nmsp.obj; new obj(..); new nsp.obj(..); Added support for: new
nsp['obj']; new nsp['obj](..);
2004-10-22 10:59 strk
* src/actioncompiler/listaction.c: Moved variable declarations
before block body, for older compilers support.
2004-10-22 10:56 strk
* util/: action.h, listswf.c: Added listing support for
ActionNewMethod (listed as NewMethod)
2004-10-22 10:55 strk
* src/actioncompiler/swf5compiler.y: Added support for 'new
this.that;' syntax (ActionNewMethod: 0x53). Fixed expr_or_obj rule
to use IDENTIFIER instead of identifier.
2004-10-19 07:46 whamann
* win32/libming.dsp:
new version contributed by Frank Kromann <frank at kromann dot
info> Comments: the user MUST specify the path to flex and bison in
visual studio under tools|options -> directoriesn and executable
files
2004-10-15 09:41 strk
* mingpp.h: Applyed minguts fix for SWFFont constructor
2004-10-07 14:50 strk
* util/: Makefile, swftoscript.c, swftoscript.h: Added unified
swf2script by Stuart Anderson <anderson@netsweng.com>.
2004-10-06 18:16 strk
* src/blocktypes.h: Removed. Use blocks/blocktypes.h instead
2004-10-06 17:41 strk
* util/: Makefile, README, TIPS, listfdb.c, listmp3.c, png2swf.c,
raw2adpcm.c, swftoperl.c, swftophp.c: Big cleanup. make
all_binaries work. Some of the tools got removed from the list.
Readme made more readable. Tips moved to TIPS.
2004-10-06 16:56 strk
* src/: libming.h, ming.h: fileOutputMethod moved from ming.h to
libming.h. Waiting for contestors to raise their hands ;)
2004-10-06 16:34 strk
* util/Makefile: Modified all: rule to use a pager
2004-10-06 16:31 strk
* src/actioncompiler/listaction.c: omitted unused variable, for
compiler happyness
2004-10-06 10:00 strk
* ChangeLog: updated
2004-10-05 16:56 strk
* src/actioncompiler/swf5compiler.flex,
src/actioncompiler/swf5compiler.y, util/Makefile, util/action.h,
util/listswf.c: Added TargetPath support (0x45)
2004-10-05 14:41 strk
* src/actioncompiler/swf5compiler.y: Added DELETE in function_call
(already in void_function_call)
2004-10-05 14:40 strk
* src/actioncompiler/action.h: Added comments about VAREQUALS
actually being DEFINELOCAL. Commented out ming.h include (for
future use by utils)
2004-10-03 18:04 strk
* mingpp.h: Applied patched by Darren Cook <darren@dcook.org>
2004-10-02 10:48 whamann
* src/: blocks/blocktypes.h, blocks/fromswf.c, blocktypes.h:
add INITCLIP to tags that may occur in prebuiltclip
2004-10-01 15:49 strk
* Rules.make: INCLUDES variable defined avoiding recursion (for bsd
make)
2004-10-01 15:44 strk
* php_ext/Makefile: Changed PHPSRC default assignment to work undef
BSDmake
2004-10-01 14:52 strk
* py_ext/Makefile: Added stub
2004-10-01 14:49 strk
* Rules.make: Fixed to be supported by OpenBSD.
2004-10-01 12:21 strk
* src/actioncompiler/: action.h, swf5compiler.y: Fixed a bug in
SWFACTION_DELETE and SWFACTION_DELETEVAR handling.
2004-10-01 12:08 strk
* util/: action.h, listswf.c: Added SWFACTION_DELETEVAR read
support.
2004-09-29 12:07 strk
* util/makeswf.c: ImportAssets executed even if import file is not
found on filesystem. A warning is issued in that case.
2004-09-28 17:21 strk
* util/: blocktypes.h, listswf.c: Cleanup. listswf_nd now compiles
with no warnings.
2004-09-28 16:39 strk
* util/makeswf.c: Forced imported assets inclusion by mean of
instantiation. Symbols are instantiated inside a __shared_assets
clip, which in turn is made invisible.
2004-09-28 16:35 strk
* util/: blocktypes.c, blocktypes.h, listswf.c: Added ImportAssets
block
2004-09-28 16:09 strk
* util/makeswf.c: Added assets import support.
2004-09-28 12:03 strk
* src/actioncompiler/: swf4compiler.flex, swf5compiler.flex: Allow
dollar sign in identifiers.
2004-09-28 11:45 strk
* util/: action.h, listswf.c: Added SWFACTION_STRICTEQ support
(strict equal)
2004-09-28 09:03 strk
* src/actioncompiler/swf5compiler.flex: Moved === and !== support
inside AS_V6 context. Added Wolf's patch for r:1 bug.
2004-09-28 08:59 strk
* util/makeswf.c: Added -v switch to set output version. Added
notice about output configuration.
2004-09-27 18:47 strk
* src/actioncompiler/swf5compiler.flex: Made strict equality
produce ACTION_EQUALS for swf < 6.
2004-09-27 13:05 strk
* src/actioncompiler/: swf5compiler.flex, swf5compiler.y: Added
support for strict equality (===) and inequality (!==) operators.
2004-09-25 10:23 strk
* util/makeswf.c: Added -C to cpp call
2004-09-25 10:17 strk
* util/makeswf.c: Post-processed files are kept and their name is
shown to the user to allow for error Line finding.
2004-09-13 22:49 strk
* src/actioncompiler/Makefile.am: Copied some rules from original
Makefile to bypass build errors.
2004-09-09 16:04 krechert
* src/actioncompiler/swf4compiler.flex: automake patch broke
compile
2004-09-09 15:53 krechert
* src/font_util.c: [no log message]
2004-09-09 15:49 krechert
* src/font_util.c: closes bug #1023574. thanks to Michal Czerwinski
xkret@removeit.poczta.onet.pl
2004-09-01 19:56 whamann
* src/actioncompiler/: action.h, listaction.c, main.c:
these files also affected by try / catch code addition
2004-09-01 19:52 whamann
* mingpp.h:
more mingpp.h patch
2004-08-31 22:56 whamann
* mingpp.h:
added decls for functions in the library - contributed by minguts
2004-08-31 21:37 whamann
* src/actioncompiler/: swf5compiler.flex, swf5compiler.y:
added try/catch/finally and throw keywords
2004-08-31 21:35 whamann
* autogen.sh, src/Makefile.am, src/actioncompiler/Makefile.am,
src/blocks/Makefile.am, util/Makefile.am:
more automake patches from David Schleef
2004-08-25 22:28 whamann
* c++_ext/Makefile.am, java_ext/MANIFEST, perl_ext/MANIFEST,
php_ext/MANIFEST, py_ext/MANIFEST, rb_ext/MANIFEST,
tcl_ext/MANIFEST, Makefile.am, win32/MANIFEST, autogen.sh,
configure.in, src/actioncompiler/swf4compiler.flex,
src/actioncompiler/swf5compiler.flex:
automake patches contributed by David Schleef <ds@schleef.org>
2004-08-21 18:52 whamann
* src/blocks/fromswf.c:
fix to allow import of swf with videostream
2004-08-10 00:50 whamann
* src/blocks/outputblock.c, src/blocks/outputblock.h,
php_ext/ming.c, php_ext/php_ming.h, src/ming.h, src/movie.c,
perl_ext/Movie.xs:
named anchors - works like frame labels
2004-07-31 11:36 krechert
* Rules.make, c++_ext/Makefile, src/ming_config.h: C++ build fixes
by Glunz Wolfgang <wolfgang.glunz\@\siemens.com>
2004-07-31 11:17 krechert
* java_ext/: SWFBitmap.java, SWFBitmapI.java, SWFColor.java,
SWFFillI.java, SWFGradient.java, SWFGradientI.java, SWFMovie.java,
SWFMovieI.java, SWFShape.java, SWFTextField.java,
SWFTextFieldI.java, native/SWFBitmap.h, native/SWFNative.cc,
native/SWFShape.h, native/SWFTextField.h: cleanup patch by Gerrit
Riessen gerrit.riessen\@\web.de
2004-07-31 08:00 whamann
* mingpp.h:
sound support for c++ contributed by minguts@yahoo.com
2004-07-28 19:26 krechert
* php_ext/ming.c: removed obsolete comment
2004-07-28 19:19 krechert
* php_ext/ming.c: hopefully php_stream stuff is fixed now !
2004-07-22 15:54 strk
* src/blocks/fromswf.c: got rid of warnings
2004-07-22 15:53 strk
* src/blocks/dbl.c: fixed ming_gc_add_node call to use new
dtorfunctype cast
2004-07-21 19:26 strk
* Makefile, src/blocks/fromswf.c: install calls made with the -c
(copy for BSD install) bug fix in fromswf.c (error -> SWF_error)
2004-07-20 05:12 sspickle
* py_ext/Zwiff/README.txt: note about crashing Zope on certain
errors..
2004-07-19 10:22 strk
* util/: Makefile, makeswf.c, makeswf.h: GNU_SOURCE define in
makeswf.c, makeswf.h dependency in Makefile
2004-07-19 10:12 strk
* util/Makefile: added makeswf in all_binaries rule
2004-07-19 10:07 strk
* util/README: Added makeswf note
2004-07-19 10:06 strk
* util/.cvsignore: added makeswf
2004-07-15 14:45 strk
* util/makeswf.c: Added -D and -I switched for preprocessor control
2004-07-15 13:20 sspickle
* py_ext/.cvsignore: ignore .gdb stuff
2004-07-14 16:43 sspickle
* py_ext/ming.py: change jpeg/dbl/etc bitmap creation
2004-07-14 16:40 sspickle
* py_ext/: Makefile, ming.py: change jpeg/dbl bitmap creation
2004-07-14 15:43 sspickle
* src/test.c: fixed jpeg example
2004-07-12 23:30 whamann
* src/actioncompiler/swf5compiler.y:
fix rules for for ( var varname in obj_ref ) with an expr as
obj_ref
2004-07-10 17:16 krechert
* src/blocks/videostream.c: removed debug output
2004-07-10 01:07 sspickle
* py_ext/: ming.i, ming.py, setup.py: more fixes..
2004-07-09 05:30 sspickle
* py_ext/setup.py: remove fink dependency...
2004-07-09 04:58 sspickle
* py_ext/INSTALL: merged with main branch
2004-07-09 04:54 sspickle
* py_ext/: ming.py, shape.py: merged with main branch
2004-07-09 04:43 sspickle
* py_ext/: .cvsignore, INSTALL, README, ming.i, ming.py,
ming_wrap.c, mingc.py, setup.py, shape.py, test.py,
Zwiff/.cvsignore, Zwiff/README.txt, Zwiff/__init__.py,
Zwiff/setFlags.py: merged with main branch
2004-07-09 04:30 sspickle
* py_ext/: README, ming.py: added more new API to ming.py
2004-07-09 02:49 sspickle
* py_ext/ming.py: add the 'addExport' method to SWFMovie
2004-07-08 06:22 sspickle
* py_ext/: ming.i, ming_wrap.c, mingc.py, setup.py: update ming.i
some more..
2004-07-08 05:41 sspickle
* py_ext/: ming.i, ming_wrap.c, mingc.py: attempt to update ming.i
a bit..
2004-07-08 05:31 sspickle
* py_ext/Zwiff/setFlags.py: file setFlags.py was initially added on
branch new-py_ext-makefile.
2004-07-08 05:31 sspickle
* py_ext/Zwiff/README.txt: file README.txt was initially added on
branch new-py_ext-makefile.
2004-07-08 05:31 sspickle
* py_ext/: README, ming.py, Zwiff/.cvsignore, Zwiff/README.txt,
Zwiff/__init__.py, Zwiff/setFlags.py: added Zwiff.... and text/font
patch
2004-07-08 05:31 sspickle
* py_ext/Zwiff/.cvsignore: file .cvsignore was initially added on
branch new-py_ext-makefile.
2004-07-08 05:31 sspickle
* py_ext/Zwiff/__init__.py: file __init__.py was initially added on
branch new-py_ext-makefile.
2004-07-07 17:01 sspickle
* py_ext/setup.py: don't forget to include mingc module in install
2004-07-07 00:23 krechert
* src/blocks/videostream.c: support Screen Video Bitstream video
codec
2004-07-06 06:12 sspickle
* py_ext/.cvsignore: ignore things that don't need to be
versioned..
2004-07-06 06:09 sspickle
* py_ext/: .cvsignore, README, ming.i, ming_wrap.c, mingc.py,
setup.py, test.py: distutils working for python extension and 0.3a
2004-07-06 06:09 sspickle
* py_ext/ming.i: file ming.i was initially added on branch
new-py_ext-makefile.
2004-07-06 06:09 sspickle
* py_ext/mingc.py: file mingc.py was initially added on branch
new-py_ext-makefile.
2004-07-05 17:29 whamann
* src/actioncompiler/swf5compiler.y:
added missing case for lvalue = (lvalue assignop expr) and similar
constructs
2004-06-29 20:15 whamann
* mingpp.h, c++_ext/test.cpp:
changes contributed by wolfgang.glunz@siemens.com to make it
compile on windows
2004-06-27 09:18 whamann
* src/: fill.c, gc.c, gc.h, movie.c, movieclip.c, test.c,
actioncompiler/compile.c, blocks/font.c, blocks/fromswf.c,
blocks/input.c, blocks/jpeg.c, blocks/mp3.c, blocks/shape.c,
blocks/soundstream.c, blocks/text.c, blocks/videostream.c:
cleanup in fromswf.c some changes contributed by
wolfgang.glunz@siemens.com to make compilers happy
2004-06-26 22:30 whamann
* src/blocks/fromswf.c:
fixed function names
2004-06-25 21:46 whamann
* php_ext/ming.c, php_ext/php_ming.h, src/ming.h:
added php binding for prebuiltclip - contributed by
alby@thirteen.net
2004-06-03 12:16 krechert
* php_ext/ming.c: SWFMing_setCompression -> Ming_setCompression
2004-06-03 12:13 krechert
* java_ext/: Makefile, SWFSoundStream.java, SWFVideoStream.java,
native/SWFSoundStream.h, native/SWFVideoStream.h: added missing
files. Thanks to Michael A. Thompson
2004-05-31 13:51 whamann
* src/blocks/Makefile:
first attempt at adding existing SWF files to ming generated
movies: this will open a movie, add its exports, if any to the main
movie, and convert the movie inta a placable clip Pitfalls: loading
a swf file into a mc generates a new namespace, while this method
does not - it is possible that two swf files contribute the same
exports. fonts are (not yet) merged, so if existing swf movies add
the same font, there will be duplicate storage. Further, if the
same font appears twice and is used within a html-enabled
textfield, chances are that the wrong set of characters will be
available.
2004-05-31 13:49 whamann
* src/: blocks/block.c, blocks/blocktypes.h, blocks/character.c,
blocks/fromswf.c, blocks/fromswf.h, ming.h, test.c:
first attempt at adding existing SWF files to ming generated
movies: this will open a movie, add its exports, if any to the main
movie, and convert the movie inta a placable clip Pitfalls: loading
a swf file into a mc generates a new namespace, while this method
does not - it is possible that two swf files contribute the same
exports. fonts are (not yet) merged, so if existing swf movies add
the same font, there will be duplicate storage. Further, if the
same font appears twice and is used within a html-enabled
textfield, chances are that the wrong set of characters will be
available.
2004-05-18 23:55 krechert
* win32/libming.dsp: Bug #893027 Missing files in VC project
workspace
2004-05-18 22:19 krechert
* perl_ext/Movie.xs: [no log message]
2004-05-18 22:01 krechert
* perl_ext/Movie.xs: compile-fix for SWFMovie_output() and
SWFMovie_save()
2004-05-18 12:20 strk
* src/blocks/text.c: added garbage collection support
2004-05-18 12:20 strk
* src/gc.c: cleanup
2004-05-10 13:14 strk
* src/blocks/shape.c: Fixed newSWFShapeFromBitmap() coding errors:
variable declarations appeared after control structures.
2004-04-29 13:06 strk
* src/blocks/: bitmap.c, dbl.c, dbl.h, pngdbl.c: Plugged leak in
readPNG. Added GC support for SWFDBLBitmapData.
2004-04-29 11:31 strk
* src/gc.c: changed garbage collector to consider nodelist changes
after destructors call
2004-04-29 11:08 strk
* src/position.c: Made SWFFill matrix transformations on solid
fills harmless
2004-04-29 10:06 strk
* util/makeswf.c: moved copyright notice on top
2004-04-29 09:51 strk
* src/ming.c: removed obsoleted code from Ming_cleanup()
2004-04-29 09:40 strk
* src/: mem.c, mem.h: dropped
2004-04-28 19:12 strk
* src/: fill.c, blocks/input.c, blocks/jpeg.c: Added garbage
collection support.
2004-04-28 18:28 strk
* src/: movieclip.c, blocks/shape.c: Garbage collection support
added.
2004-04-28 11:57 strk
* src/actioncompiler/: swf4compiler.flex, swf5compiler.flex:
rewritten the unescape function to avoid calling strcpy with
overlapping arguments
2004-04-28 11:27 strk
* src/: gc.h, ming.h: moved Ming_collectGarbage() prototype from
gc.h to ming.h
2004-04-28 11:22 strk
* src/gc.c: node removal releases node memory, garbage collector
gets to next node before calling destructor
2004-04-28 11:13 strk
* src/ming_config.h: TRACK_ALLOCS defaults to 1
2004-04-28 11:12 strk
* src/movie.c: GC support for movie
2004-04-28 11:05 strk
* src/libming.h: include gc.h instead of mem.h
2004-04-28 11:03 strk
* src/ming_config.h: removed WRAP_MEMORY_MANAGEMENT, added
TRACK_ALLOCS
2004-04-28 11:02 strk
* src/Makefile: substituted mem.o with gc.o
2004-04-28 11:01 strk
* src/: gc.c, gc.h: initial import
2004-04-26 11:12 strk
* util/: Makefile, makeswf.c, makeswf.h: Added simple commandline
actionscript compiler.
2004-04-26 10:31 strk
* util/png2dbl.c: Fixed variable declarations, added needed byte
typedef.
2004-04-22 17:18 strk
* src/ming.c: Allowed version to be set to 7
2004-04-19 12:24 strk
* src/: ming.h, movie.c, movieclip.c, blocks/shape.c,
blocks/shape.h: Added newSWFShapeFromBitmap(SWFBitmap bm, int
flags) to the API. In this way user can have more control over
bitmap shape creation.
2004-04-19 11:35 strk
* util/listswf.c: More specific about gradient (linear/radial) and
bitmap (tiled/clipped) fill styles
2004-04-16 00:35 krechert
* php_ext/ming.c: fixes bug 920062 931267 929055. Thanks to Anoakie
Turner.
2004-04-16 00:03 krechert
* src/blocks/text.c: fixes bug 924647 small mem-leak. Thankes to
Gene Thomas
2004-04-15 23:54 krechert
* php_ext/ming.c: php_ext: changed ZEND_API conditional form '>' to
'>='
2004-04-15 14:17 strk
* src/blocks/shape.c: removed useless variable declaration
2004-04-15 01:13 krechert
* src/blocks/videostream.c: videostream: ignore audio tags
2004-04-14 22:21 krechert
* php_ext/ming.c: php_ext: fixed warings
2004-04-14 22:18 krechert
* src/blocks/soundstream.c: * soundstream: bug fix #855471 thanks
to Stphane Corthsy * soundstream: bug fix #877479 thanks to Denis
Malinovsky
2004-04-13 23:44 krechert
* java_ext/: Makefile, SWFAction.java, SWFActionI.java,
SWFBitmap.java, SWFBitmapI.java, SWFButton.java, SWFButtonI.java,
SWFColor.java, SWFDisplayItem.java, SWFDisplayItemI.java,
SWFFill.java, SWFFillI.java, SWFFont.java, SWFFontI.java,
SWFGradient.java, SWFGradientI.java, SWFMatrix.java, SWFMorph.java,
SWFMorphI.java, SWFMovie.java, SWFMovieClip.java,
SWFMovieClipI.java, SWFMovieI.java, SWFObject.java,
SWFObjectI.java, SWFShape.java, SWFShapeI.java, SWFSound.java,
SWFText.java, SWFTextField.java, SWFTextFieldI.java, SWFTextI.java,
Tests/Simple.java, Tests/SlideShow.java, native/Makefile,
native/SWFMovie.h, native/SWFNative.cc, native/SWFSound.h,
native/SWFUtilities.h: java extension: fixes
2004-04-08 17:26 strk
* src/: ming.h, blocks/shape.c: Added SWFShape_hideLine()
interface.
2004-04-06 13:28 staybyte
* ChangeLog: [no log message]
2004-04-01 11:30 strk
* src/: actioncompiler/Makefile, blocks/Makefile: Updated to be
accepted by BSD-make
2004-04-01 11:25 strk
* Makefile: Updated to be accepted by BSD-make
2004-03-31 17:02 strk
* src/: mem.c, mem.h: Added deeper checks on passed nodes. Defaults
to avoid checking.
2004-03-31 15:50 strk
* src/actioncompiler/compile.c: initialized global **constants
2004-03-31 15:01 strk
* src/mem.c: Added compile-time option to check passed pointers
2004-03-31 14:56 strk
* src/shape_util.c: Added <stdlib> include before local ones
2004-03-31 11:03 strk
* src/: libming.h, mem.c, mem.h: Added memory wrapping functions.
Inverted wrapping mechanism. All wrapper code has to be explicit.
2004-03-30 17:07 strk
* config.make, src/Makefile, src/Makefile.am, src/displaylist.c,
src/fill.c, src/font_util.c, src/libming.h, src/ming.c, src/ming.h,
src/ming_config.h, src/movie.c, src/movieclip.c, src/shape_util.c,
src/test.c, src/text_util.c, src/actioncompiler/assembler.c,
src/actioncompiler/listaction.c, src/actioncompiler/main.c,
src/blocks/action.c, src/blocks/bitmap.c, src/blocks/block.c,
src/blocks/browserfont.c, src/blocks/button.c,
src/blocks/character.c, src/blocks/dbl.c, src/blocks/error.c,
src/blocks/fillstyle.c, src/blocks/font.c, src/blocks/fontinfo.c,
src/blocks/gifdbl.c, src/blocks/gradient.c, src/blocks/imports.c,
src/blocks/jpeg.c, src/blocks/method.c, src/blocks/morph.c,
src/blocks/output.c, src/blocks/outputblock.c,
src/blocks/placeobject.c, src/blocks/pngdbl.c, src/blocks/read.c,
src/blocks/rect.c, src/blocks/shape.c, src/blocks/sound.c,
src/blocks/soundinstance.c, src/blocks/soundstream.c,
src/blocks/text.c, src/blocks/ttffont.c, src/blocks/utf8.c,
src/blocks/videostream.c: Made all files include "libming.h".
Added a WRAP_MEMORY_MANAGEMENT define in src/ming_config.h. Added
mem.c mem.h modules with MM wrapping mechanisms.
2004-03-26 17:49 strk
* src/Makefile: Applied patch from Klaus Rechert <klaus@rechert.de>
2004-03-26 16:37 strk
* php_ext/: ming.c, php_ming.h: Added patch from Klaus Rechert
<klaus@rechert.de> to make use of new movie compression interface.
2004-03-25 10:41 strk
* php_ext/Makefile: Added compiler tips on how to find php includes
2004-03-25 09:28 strk
* mingpp.h, src/libming.h, src/ming.c, src/ming.h, src/movie.c:
Reverted SWFMovie_save() and SWFMovie_output APIs back to their
original signature. Added Ming_setSWFCompression() to handle
compression.
2004-02-17 18:04 whamann
* mingpp.h:
fixes contributed by Pete Schwamb pete@the-valley.org
2004-02-17 18:02 whamann
* src/actioncompiler/swf5compiler.y:
memory leak fixes contributed by Pete Schwamb pete@the-valley.org
2004-02-17 17:20 whamann
* src/blocks/shape.c:
rewrite some code so that a broken compiler can handle it :)
2004-02-11 08:58 whamann
* util/decompile5.c:
change so that an array reference item[1] rather than item.1 is
generated from push item, getvariable, push 1, getmember
2004-02-08 12:05 erich
* ChangeLog: updated
2004-02-08 11:59 erich
* config.make: should fix the python build issue
2004-02-04 01:30 erich
* ChangeLog: Generated new changelog using cvs2cl.pl
2004-02-04 00:53 erich
* ChangeLog, Makefile, php_ext/Makefile, py_ext/Makefile,
src/Makefile, tcl_ext/Makefile, util/Makefile: Replaced make by
$(MAKE) in the makefile, that should help those BSD users with
gmake
2004-02-02 13:20 vapour
* Rules.make, configure.in, perl_ext/SWF.pm, src/ming.h: Updated
the version number to be 0.3beta1.
2004-02-02 13:07 vapour
* README: Removed the installation instructions, as they're already
in the INSTALL file.
2004-02-02 12:59 vapour
* INSTALL: Updated to reflect the new Ming tarball name, plus
removed reference to commenting out the GIF and PNG support.
2004-02-02 12:46 vapour
* src/ming.h: Changed the version number to reflect reality.
2004-02-02 11:54 vapour
* config.make: Added the EXTRA_LIBS environment variable to get the
PHP module working.
2004-01-18 20:29 whamann
* php_ext/ming.c, src/ming.h, src/movie.c, src/movie.h,
src/actioncompiler/swf4compiler.flex,
src/actioncompiler/swf5compiler.flex, src/blocks/blocktypes.h,
src/blocks/character.c, src/blocks/gifdbl.c, src/blocks/imports.h,
src/blocks/input.c, src/blocks/pngdbl.c, src/blocks/soundstream.c,
src/blocks/text.c, src/blocks/textfield.c, util/png2dbl.c,
win32/libming.dsp:
patches by Wolfgang Glunz <wolfgang.glunz@siemens.com> fix a few
types so the stricter c++ typechecking is happy too
2004-01-18 14:42 vapour
* Makefile: Small fix to run make clean in perl_ext when
appropriate.
2004-01-18 14:20 vapour
* Makefile: Small fix to also remove the leftover libming.so and
libming.a
2004-01-18 12:10 vapour
* INSTALL: Added a missing line.
2004-01-18 11:47 vapour
* README: Changed the "Last Modified" line to be correct.
2004-01-18 11:45 vapour
* CREDITS: Added Klaus Rechert, Mohammad Haque, and myself to the
CREDITS.
2004-01-18 10:37 vapour
* Makefile, config.make, src/actioncompiler/Makefile,
src/blocks/Makefile: Further patches by Mohammad Haque to organise
the Makefiles.
2004-01-18 10:11 vapour
* Rules.make, c++_ext/Makefile, py_ext/Makefile, util/Makefile:
Further refactoring by Mohammad of the Makefiles.
2004-01-18 08:50 vapour
* perl_ext/Makefile.PL: Fixed the Makefile to correctly find
src/ming.h
2004-01-18 07:46 vapour
* INSTALL, Makefile, README, config.h, configure.in, ming.h,
php_ext/Makefile, php_ext/ming-dev.c, php_ext/ming-streams.c,
php_ext/ming.c, src/config.h, src/ming.h, src/ming_config.h,
src/test.c, src/blocks/dbl.c, src/blocks/gifdbl.c,
src/blocks/pngdbl.c, util/png2swf.c: Mohammad Haque's changes to
start cutting down the number of header files that were spread
around.
2004-01-17 06:52 vapour
* src/: Makefile, actioncompiler/Makefile, blocks/Makefile: Added
the CFLAGS and EXTRALIBS bits from Mohammad Haque.
Haven't included the -dynamiclib (or something like that)
replacements for the -shared options, as we should work out a
solution that helps more people first.
2004-01-17 06:37 vapour
* perl_ext/VideoStream.xs: Added Klaus' perl_ext/VideoStream.xs
file, as I forgot to include it before.
2004-01-17 06:30 vapour
* php_ext/Makefile: Swapped around the -I arguments, at Klaus'
suggestion.
2004-01-17 06:27 vapour
* src/ming.h, perl_ext/Makefile.PL, perl_ext/perl_swf.h,
perl_ext/typemap, php_ext/ming.c, php_ext/php_ming.h: Klaus'
patches for video streaming support.
2004-01-17 05:34 vapour
* php_ext/Makefile: Altered the Makefile to pick up the CFLAGS
environment variable.
2004-01-17 05:25 vapour
* src/blocks/input.c: Patch by Mohammad Haque to fix the missing
SWFInput_getUInt24_BE bug.
2004-01-15 20:38 vapour
* util/: Makefile, raw2adpcm.c: Patches by goto
<harpy@lily.freemail.ne.jp> to fix util/raw2adpcm and also add some
help text to it.
2004-01-15 18:17 vapour
* INSTALL, README: Split the old README into both an INSTALL and a
README now.
2004-01-15 15:40 vapour
* src/actioncompiler/: swf4compiler.flex, swf5compiler.flex:
Patches by goto <harpy@lily.freemail.ne.jp> to fix the YY_PROTO
errors.
2004-01-15 15:30 vapour
* src/: displaylist.c, blocks/blocktypes.h: Fixes by Klaus Rechert
to help get video streaming working.
2004-01-11 11:56 whamann
* php_ext/ming.c:
added a conditional to use php streams rather than files, sockets,
... depending on module api. This is supposed to fix the "missing
symbol ... _le_socket" error If anyone knows the proper php release
date for the switch, please report
2004-01-11 11:42 whamann
* src/: displaylist.c, ming.h, blocks/Makefile, blocks/Makefile.am,
blocks/input.h, blocks/videostream.c, blocks/videostream.h:
Ming Video streams, contributed by Klaus Rechert
<klaus@geekserver.net>
2004-01-11 10:47 whamann
* src/actioncompiler/: compile.h, main.c:
wrong constant value, after header restructuring the actioncompiler
test program was missing a declaration
2003-12-14 12:48 whamann
* src/blocks/font.c:
fix pointer relocation problem on 64bit machines - thanks to
Benjamin Osheroff <ben@gimbo.net>
2003-12-14 12:18 whamann
* src/actioncompiler/: swf4compiler.y, swf5compiler.y:
changed associativity of ? : from left to right - thanks
joerg_richter69@hotmail.com
2003-12-14 11:07 whamann
* c++_ext/Makefile, java_ext/native/Makefile, perl_ext/Makefile.PL,
perl_ext/SoundStream.xs, php_ext/Makefile, php_ext/ming.c,
py_ext/Makefile, py_ext/ming.py, src/config.h, src/font_util.h,
src/ming.h, src/shape_cubic.h, src/shape_util.h,
src/blocks/bitmap.c, src/blocks/dbl.c, src/blocks/font.c,
src/blocks/gifdbl.c, src/blocks/pngdbl.c, src/blocks/shape.h,
src/blocks/soundstream.c, src/blocks/soundstream.h, util/action.h,
util/blocktypes.h, util/makefdb.c, util/output.h, util/read.h,
util/swftophp.c:
cleanup patch by michael.schmitt@teststep.org - see changelog for
details
2003-11-08 19:30 whamann
* src/: actioncompiler/swf4compiler.flex,
actioncompiler/swf5compiler.flex, blocks/shape.c: [no log message]
2003-11-08 19:24 whamann
* perl_ext/Font.xs, src/Makefile, src/blocklist.c, src/blocklist.h,
src/blocktypes.h, src/displaylist.c, src/displaylist.h, src/fill.h,
src/font_util.c, src/font_util.h, src/libming.h, src/ming.c,
src/ming.h, src/movie.c, src/movie.h, src/movieclip.c,
src/movieclip.h, src/position.c, src/position.h, src/shape_cubic.c,
src/shape_cubic.h, src/shape_util.c, src/shape_util.h,
src/text_util.c, src/text_util.h, src/actioncompiler/Makefile,
src/actioncompiler/action.h, src/actioncompiler/assembler.c,
src/actioncompiler/assembler.h, src/actioncompiler/compile.c,
src/actioncompiler/compile.h, src/actioncompiler/compileaction.c,
src/actioncompiler/listaction.c, src/actioncompiler/main.c,
src/actioncompiler/swf4compiler.flex,
src/actioncompiler/swf4compiler.y,
src/actioncompiler/swf5compiler.flex,
src/actioncompiler/swf5compiler.y, src/blocks/Makefile,
src/blocks/action.c, src/blocks/action.h, src/blocks/bitmap.c,
src/blocks/bitmap.h, src/blocks/block.c, src/blocks/block.h,
src/blocks/blocktypes.h, src/blocks/browserfont.c,
src/blocks/browserfont.h, src/blocks/button.c, src/blocks/button.h,
src/blocks/character.c, src/blocks/character.h,
src/blocks/cxform.c, src/blocks/cxform.h, src/blocks/dbl.c,
src/blocks/dbl.h, src/blocks/error.c, src/blocks/error.h,
src/blocks/exports.h, src/blocks/fillstyle.c,
src/blocks/fillstyle.h, src/blocks/font.c, src/blocks/font.h,
src/blocks/fontinfo.h, src/blocks/gifdbl.c, src/blocks/gradient.c,
src/blocks/gradient.h, src/blocks/imports.c, src/blocks/imports.h,
src/blocks/input.c, src/blocks/input.h, src/blocks/jpeg.c,
src/blocks/jpeg.h, src/blocks/linestyle.c, src/blocks/linestyle.h,
src/blocks/matrix.c, src/blocks/matrix.h, src/blocks/method.c,
src/blocks/method.h, src/blocks/morph.c, src/blocks/morph.h,
src/blocks/mp3.c, src/blocks/output.c, src/blocks/output.h,
src/blocks/outputblock.c, src/blocks/outputblock.h,
src/blocks/placeobject.c, src/blocks/placeobject.h,
src/blocks/pngdbl.c, src/blocks/rect.c, src/blocks/rect.h,
src/blocks/shape.c, src/blocks/shape.h, src/blocks/sound.c,
src/blocks/sound.h, src/blocks/soundinstance.c,
src/blocks/soundinstance.h, src/blocks/soundstream.c,
src/blocks/soundstream.h, src/blocks/sprite.c, src/blocks/sprite.h,
src/blocks/text.c, src/blocks/text.h, src/blocks/textfield.c,
src/blocks/textfield.h, src/blocks/ttffont.c, src/blocks/ttffont.h,
src/blocks/utf8.c, src/blocks/utf8.h:
big cleanup patch by Michael Schmitt <Michael.Schmitt@teststep.org>
2003-11-07 07:33 whamann
* src/blocks/: gifdbl.c, pngdbl.c:
fixed function names to go in sync with the declarations in ming.h
2003-11-04 00:12 whamann
* src/movie.c, src/movie.h, src/movieclip.c, php_ext/ming.c,
src/blocks/soundstream.c, src/blocks/soundstream.h:
contributed by Klaus Rechert <klaus@geekserver.net> soundstream
(and the php streammp3() function) now accept an extra skip
parameter specifying the amount of time to skip at the beginning of
sound. Note - the skipped sound will NOT be exported to the swf
file. It is not tested whether streammp3 returns the correct
number of frames with skipping.
2003-10-15 06:30 peterdd
* ChangeLog: swf decompression for swftoperl
2003-10-15 06:09 peterdd
* util/Makefile: -lz for swf decompression, added swftoperl to
install:
2003-10-15 06:03 peterdd
* util/swftoperl.c: automatic decompression added, fix for -a
2003-10-10 17:39 whamann
* py_ext/ming.py:
new setmatrix function contributed by Dirk Datzert
<dirk.datzert@tks-rasselstein.thyssenkrupp.com>
2003-10-10 17:36 whamann
* src/blocks/: bitmap.c, gifdbl.c, pngdbl.c:
brought declarations and actual function names in sync contributed
by fabiano@x3ng.com.br
2003-10-10 17:16 whamann
* util/: Makefile, png2swf.c:
Contributed by Fabiano Weimar dos Santos <fabiano@x3ng.com.br>
2003-09-25 08:21 whamann
* util/: Makefile, decompile.c, decompile.h, decompile5.c,
swftoperl.c, swftophp.c:
changed swftophp / swftoperl to decode actions according to movie
version, also added -a flag to skip decoding of actions completely
2003-09-21 11:27 whamann
* src/actioncompiler/: compile.c, compile.h:
ensure that constant pool cannot grow beyond 64K and overflow the
size for a single action - patch provided by strk <strk@keybit.net>
2003-09-16 07:10 peterdd
* ChangeLog: added buttonsound decompilation to swftoperl.c
2003-09-16 06:45 peterdd
* util/swftoperl.c: added functions for buttonsound and
soundinstance
2003-09-13 11:35 peterdd
* ChangeLog: soundconstants for perl and small swftoperl.c fix
2003-09-13 11:22 peterdd
* perl_ext/: SWF/Constants.pm, Constants.xs, Exports.c: added
SWF::Sound-constants
2003-09-12 14:59 whamann
* src/: movie.c, blocks/output.c, blocks/output.h:
changed SWFMovie_output - there is now a new method SWFOutput
SWFMovie_toOutput(movie, level) which is intended to deliver a
movie as a binary string to the language bindings
2003-09-12 12:41 whamann
* ming.h:
Michael Schmitt somewhat beautified ming.h
2003-09-12 12:20 whamann
* py_ext/ming.py, src/blocks/sound.c, src/blocks/sound.h,
src/blocks/soundstream.c, src/blocks/soundstream.h:
fixes by David McNab <david@rebirthing.co.nz> fix sound
declarations in ming.h / ming.i, add interface functions required
by python to open sound files
2003-09-12 12:10 whamann
* py_ext/ming.py, php_ext/ming.c, php_ext/php_ming.h,
src/displaylist.c, src/displaylist.h, src/position.c,
src/position.h:
Patches contributed by David McNab <david@rebirthing.co.nz> Add a
bunch of get_ methods to retrieve the position, scale, ... of
displayitems to the core and the python binding Added similar calls
to the php binding Note: there are already functions in the perl
binding
2003-09-12 12:01 whamann
* py_ext/Makefile:
fixes by David McNab <david@rebirthing.co.nz> to fix python build
process
2003-09-12 11:48 whamann
* Makefile, README, TODO:
forgot to update TODO ...
2003-09-12 08:13 peterdd
* util/swftoperl.c: setMenu(); for SWF::Button added
2003-09-11 14:42 peterdd
* util/cws2fws: [no log message]
2003-09-11 13:55 peterdd
* util/swftoperl.c: added onClipEvent to printPlaceObject2
2003-08-29 04:23 peterdd
* src/actioncompiler/swf4compiler.flex: fixed nasty typo
2003-08-28 23:54 whamann
* config.h, config.make:
conditional code: use these two files to control whether you want
to include gif or png converters
2003-08-12 12:27 whamann
* php_ext/ming.c, php_ext/php_ming.h, src/Makefile, src/movie.c,
src/movie.h, src/test.c, src/blocks/Makefile, src/blocks/font.c,
src/blocks/font.h, src/blocks/imports.c, src/blocks/imports.h,
src/blocks/textfield.c:
allow to import movieclips and fonts from a shared library and to
export font for shared lib usage Implemented in library and php
binding at the moment: -- code to use library --
$movie->importChar("libfile.swf", "myclip"); $font =
$movie->importFont("libfile.swf", "font1");
$textfield->setFont($font); -- code to export library -- $font =
new SWFFont(".....fdb"); $fontchar = $movie->addFont($font);
$fontchar->addChars("abcd...."); $movie->addExport($fontchar,
"font1"); -- note that font sharing is known to be flaky, so please
test finished apps with many players
2003-08-06 17:42 erich
* CREDITS: added Jim Tittsler (jtittsler)
2003-08-06 17:32 erich
* ChangeLog: one more patch from jtittsler
2003-08-06 17:30 erich
* ming.i: accepted jtittslers fourth patch for newer swig version
2003-08-06 17:27 erich
* ChangeLog: added my changes and patches from jtittsler
2003-08-06 17:24 erich
* ChangeLog: added my changes and patches from jtissler
2003-08-06 17:22 erich
* py_ext/shape.py: modified to reflect web page version. thanks to
Jim Tittsler (jtittsler)
2003-08-06 17:20 erich
* py_ext/ming.py: added compression level argument, optional.
thanks to Jim Tittsler (jtittsler)
2003-08-06 17:13 erich
* ming.i: updating the swig file to track recent changes
2003-08-06 17:11 erich
* util/raw2adpcm.c: fix for gcc 3.3.x which does no longer support
certain multiline strings
2003-08-06 17:11 erich
* src/actioncompiler/: swf4compiler.flex, swf5compiler.flex: fixes
for flex 2.5
2003-08-03 19:55 whamann
* php_ext/ming.c:
fixed problem with bitmap creation - if bitmap cannot be read or
converted, no longer wants to bless a null pointer into a swfbitmap
resource
2003-08-03 19:53 whamann
* src/: Makefile, blocks/Makefile, blocks/dbl.c, blocks/dbl.h,
blocks/gifdbl.c, blocks/pngdbl.c:
added support for including png and gif images - requires -lpng,
-lgif or -lungif, and -lz edit config.h and config.make if you dont
have / want these
2003-07-20 23:15 whamann
* php_ext/ming.c, src/blocks/soundstream.c:
added new function SWFSoundStream_getFrames() to return the length
of a sound stream in frames PHP interface: $nframes =
$movie->streammp3($fp);
2003-07-18 23:16 whamann
* src/blocks/linestyle.c:
allow line color change even if line width is zero
2003-07-14 22:58 whamann
* mingpp.h:
added flags parameter to SWFsound declarations; this accepts sample
rate, mono / stereo, 8/16 bit parameters
2003-07-08 12:59 whamann
* ming.h:
sound related defines added....
2003-06-18 12:26 whamann
* perl_ext/SWF/SoundInstance.pm, perl_ext/SWF/SoundStream.pm,
perl_ext/Button.xs, perl_ext/Makefile.PL, perl_ext/Movie.xs,
perl_ext/MovieClip.xs, perl_ext/Sound.xs,
perl_ext/SoundInstance.xs, perl_ext/SoundStream.xs,
perl_ext/perl_swf.h, perl_ext/typemap, php_ext/ming.c,
php_ext/php_ming.h, src/displaylist.c, src/test.c,
src/blocks/button.c, src/blocks/sound.c, src/blocks/sound.h,
src/blocks/soundinstance.c:
adding event sounds $s = new SWFSound(....,
SWF_SOUND_44KHZ|SWF_SOUND_STEREO) $si = $movie->startSound($s)
$si->loopCount(4) $si = $button->addSound($s, SWFBUTTON_MOUSEDOWN)
$si->noMultiple()
2003-06-18 12:21 whamann
* php_ext/Makefile:
added -lz flag for compiling in the zlib compression
2003-06-04 20:31 whamann
* php_ext/ming-streams.c, util/decompile.c,
src/actioncompiler/swf5compiler.y:
ming.h - added missing swfbutton_setmenu() decompile.c - another
const char * swf5compiler.y - fixed delete operator ming-streams.c
- updated from ming-dev.c for recent php versions
2003-05-09 23:51 whamann
* src/blocks/: font.c, shape.c:
fix to shape->drawGlyph() and font->getShape() problem: font files
definitely will state 1 fill style and 0 line styles. Some font
files use 1 bit to encode the line style, others use 0 bits. Code
now uses actual number of bits here
2003-04-10 07:11 whamann
* src/actioncompiler/swf5compiler.y:
fixes for empty actions and do {} while
2003-04-10 04:44 peterdd
* ChangeLog: fixed morph.c and sync versionnumber for perl_ext
2003-04-10 04:28 peterdd
* src/blocks/morph.c: fixed 2 typos
2003-04-10 04:21 peterdd
* perl_ext/SWF.pm: synchronized the versionnumber
2003-04-06 15:59 whamann
* perl_ext/Shape.xs, php_ext/ming.c:
more type casts
2003-04-06 15:43 whamann
* php_ext/ming.c, src/blocklist.c, src/displaylist.c,
src/font_util.c, src/ming.c, src/ming.h, src/movie.c, src/movie.h,
src/movieclip.c, src/movieclip.h, src/position.c,
src/shape_cubic.c, src/shape_util.c, src/shape_util.h,
src/text_util.c, src/actioncompiler/assembler.c,
src/actioncompiler/compile.c, src/actioncompiler/compile.h,
src/actioncompiler/compileaction.c,
src/actioncompiler/listaction.c, src/actioncompiler/main.c,
src/actioncompiler/swf4compiler.flex,
src/actioncompiler/swf4compiler.y,
src/actioncompiler/swf5compiler.flex,
src/actioncompiler/swf5compiler.y, src/blocks/block.c,
src/blocks/browserfont.c, src/blocks/browserfont.h,
src/blocks/button.c, src/blocks/character.c, src/blocks/cxform.c,
src/blocks/dbl.c, src/blocks/error.c, src/blocks/error.h,
src/blocks/fillstyle.c, src/blocks/font.c, src/blocks/gradient.c,
src/blocks/input.c, src/blocks/jpeg.c, src/blocks/linestyle.c,
src/blocks/matrix.c, src/blocks/method.c, src/blocks/morph.c,
src/blocks/output.c, src/blocks/outputblock.c,
src/blocks/outputblock.h, src/blocks/placeobject.c,
src/blocks/read.c, src/blocks/rect.c, src/blocks/shape.c,
src/blocks/sound.c, src/blocks/soundinstance.c,
src/blocks/soundstream.c, src/blocks/sprite.c, src/blocks/swf.h,
src/blocks/text.c, src/blocks/textfield.c, src/blocks/textfield.h,
src/blocks/utf8.c, util/blocktypes.c, util/decompile.c,
util/decompile5.c, util/listswf.c, util/png2dbl.c, util/read.h:
changes by Wolfgang Glunz to make things compile with c++ - mostly
added type decls
2003-04-01 08:34 staybyte
* ChangeLog: [no log message]
2003-03-28 23:16 whamann
* src/actioncompiler/: swf4compiler.flex, swf5compiler.flex:
replaced constant 0 by EOF in comment parsing functions
2003-03-28 22:31 whamann
* src/actioncompiler/: swf5compiler.flex, swf5compiler.y:
allow windows line endings in actionscript return can now return an
anonymous object - should also be possible to pass one to a
function etc.
2003-02-13 19:26 staybyte
* ChangeLog: [no log message]
2003-02-09 23:27 whamann
* src/blocks/text.c:
fixed segfault for zero-length string: computeAdvances did
calculate width of 1st character anyways zero-length may occur from
addString("") or by changing attributes twice in a row
2003-02-08 00:03 whamann
* src/blocks/button.c:
-fix for buttons with bitmaps - please try
2003-02-01 19:36 soheil
* perl_ext/TODO: Updated
2003-02-01 19:33 soheil
* perl_ext/SWF/TextField.pm: Updated/Fixed documentation
2003-02-01 19:30 soheil
* perl_ext/SWF/Shape.pm: Added getPen() documentation
2003-02-01 19:26 soheil
* perl_ext/TextField.xs: Replaced setMargin wuth setMargins
2003-01-25 22:35 soheil
* perl_ext/README: Updated.
2003-01-25 22:22 soheil
* perl_ext/SUPPORT: Initial import to CVS
2003-01-21 01:24 soheil
* perl_ext/Movie.xs: Renamed SWFMovie_xs_output to SWFMovie_output
2003-01-21 01:23 soheil
* perl_ext/SWF/Movie.pm: Added SWF::Movie::output()
2003-01-21 01:19 soheil
* perl_ext/Makefile.PL: Added SWF::MyConfig.pm
2003-01-21 00:16 soheil
* perl_ext/CREDITS: Initial import to CVS
2003-01-19 17:47 soheil
* perl_ext/SWF/.cvsignore: initial import to cvs
2003-01-19 17:40 soheil
* perl_ext/SWF.pm: Fixed my Email address
2003-01-11 20:07 soheil
* perl_ext/Exports.c: Added SWFTEXTFIELD_AUTOSIZE
2003-01-11 20:05 soheil
* perl_ext/SWF/Constants.pm: - Added SWFTEXTFIELD_USEFONT &
SWFTEXTFIELD_AUTOSIZE - Fixed Typo & my email address
2003-01-11 16:44 staybyte
* ChangeLog: [no log message]
2003-01-11 16:43 staybyte
* src/actioncompiler/swf5compiler.y: fix incorrect %token and %type
syntax
2003-01-11 16:37 staybyte
* src/blocks/jpeg.c: accept SFO1 baseline jpegs
2003-01-08 10:54 staybyte
* ChangeLog: [no log message]
2003-01-07 22:54 whamann
* perl_ext/Constants.xs, php_ext/ming.c, src/blocks/textfield.h,
src/blocks/swf.h:
new constant SWFTEXTFIELD_AUTOSIZE
2003-01-07 22:25 whamann
* perl_ext/Button.xs, php_ext/ming.c, php_ext/php_ming.h,
src/actioncompiler/compile.c, src/actioncompiler/swf5compiler.flex,
src/actioncompiler/swf5compiler.y, src/movie.c,
src/blocks/button.c, src/blocks/button.h, src/blocks/swf.h,
src/blocks/text.c, src/blocks/text.h, src/blocks/textfield.c,
src/blocks/textfield.h:
assorted changes: font handling - got rid of two annoying segfaults
button - support "track as menu" behaviour compiler - finished
things like ~ or &= ops compiler - if (...) { .... } else {
/*empty*/ } no longer crashes
2003-01-06 16:45 staybyte
* ChangeLog: [no log message]
2003-01-04 20:44 soheil
* perl_ext/Morph.xs: Added refcnt of SWF::Shape
2003-01-04 19:00 soheil
* perl_ext/t/: png.t, sound.t: No. of tests is printed after
skip_test();
2003-01-04 18:57 soheil
* perl_ext/t/filljpeg.t: No. of tests is now printed after
skip_test();
2002-12-31 17:07 staybyte
* ChangeLog: [no log message]
2002-12-21 16:20 whamann
* win32/libming.dsp:
changes by Frank Kromann: debug build passes debug options to flex
and bison file removed and added again - should retain windows line
endings now
2002-12-21 16:17 whamann
* win32/libming.dsp: [no log message]
2002-12-16 13:23 whamann
* src/actioncompiler/action.h, src/actioncompiler/compile.c,
src/actioncompiler/compile.h, src/actioncompiler/listaction.c,
src/actioncompiler/swf5compiler.flex,
src/actioncompiler/swf5compiler.y, src/blocks/placeobject.c,
win32/libming.dsp:
compiler changes: added switch() added x instanceof y returning out
of a switch pops stack popping stack when breaking / returning out
of for/in does not work yet support for more than 256 constants in
the pool
placeobject - different format of placeobject record for MX does
not include the keycode so far nor any methods to set those bits
libming.dsp provided by Frank Kromann - calls up flex and bison
2002-12-10 23:10 whamann
* src/blocks/font.c, src/blocks/shape.c, src/font_util.c,
win32/libming.dsp:
added Frank Kromann's changes - optimizing compile could swap bytes
on windows added a change to drawglyph to allow styles in the fonts
- some fonts use 1 linestyle
2002-12-01 09:52 whamann
* perl_ext/Font.xs:
removed SWFFont_addChars
2002-11-26 17:11 sspickle
* py_ext/: .cvsignore, Makefile, Setup, build.py, setup.py: This
seems to work with the 'fink' ming installer..
2002-11-26 17:11 sspickle
* py_ext/setup.py: file setup.py was initially added on branch
new-py_ext-makefile.
2002-11-25 21:14 whamann
* mingpp.h:
checking in mingpp.h again - contributions from Fabiano Weimar dos
Santos and John Blanco
2002-11-22 14:58 whamann
* src/actioncompiler/swf4compiler.y:
c++ support for compressed movies removed duplicate declaration in
swf4compile.y contributed by Fabiano Weimar dos Santos
2002-11-20 18:15 raff
* src/font_util.h:
This definition is also in text_util.h
I don't know why there are two, but they should at least be the
same.
(as in text_util.h, I am adding the extra "len" argument, since
that's how the function is implemented).
2002-11-19 18:26 peterdd
* perl_ext/Shape.xs: added drawCubic and drawCubicTo
2002-11-19 09:01 whamann
* src/blocks/textfield.c:
another take at textfields with/without embedding
2002-11-15 21:36 whamann
* ming.h:
header changes for - text field handling - codepage / utf8 fonts -
save compressed
2002-11-15 18:43 raff
* src/text_util.h: If I trust the implementation, this function
needs an additional parameter (at least to make Ming compile).
2002-11-14 10:31 whamann
* src/.cvsignore, src/movie.c, src/movie.h, src/text_util.h,
src/blocks/font.c, src/blocks/font.h, php_ext/ming.c,
src/blocks/text.c, src/blocks/textfield.c, src/blocks/textfield.h:
another take at dynamic textfields with embedded font, this time
they seem to work also removed one source of segfaults from the
font handling code
2002-11-14 00:18 whamann
* src/blocks/font.c:
avoid compiler warnings with a pointer union
2002-11-13 19:21 whamann
* src/movie.c:
2002-22-13 17:00 peterdd
* perl_ext/Movie.xs perl_ext/Shape.xs src/shape_util.h
src/shape_util.c getPen, getPenX and getPenY added for the
interfaces (Movie.c)
2002-11-07 13:50 peterdd
*
perl_ext/Movie.xs,perl_ext/SWF/Movie.pm,perl_ext/SWF/TextField.pm
documentation for SWF::Movie and SWF::TextField save/output- method
of the perl-ming extension now supports flash6 compression protect
for perl_ext added
2002-11-13 16:21 peterdd
* perl_ext/Movie.xs: changed save and output back because normal
output routine handles compression too
2002-11-13 16:18 peterdd
* perl_ext/Shape.xs: added getPen getPenX getPenY
2002-11-13 16:16 peterdd
* src/: shape_util.c, shape_util.h: added getPen getPenX and
getPenY
2002-11-13 00:15 zebulon75018
* tcl_ext/: Makefile, README, test.tcl: First commit for the tcl
extension After making the mingc.so try tclsh test.tcl , it's the
shape example.
2002-11-12 10:52 whamann
* src/displaylist.c, src/displaylist.h, src/font_util.h,
src/ming.c, src/movie.h, src/text_util.c, src/text_util.h,
src/actioncompiler/compile.c, src/actioncompiler/listaction.c,
src/actioncompiler/swf5compiler.y, src/blocks/character.c,
src/blocks/font.c, src/blocks/font.h, src/blocks/read.c,
src/blocks/shape.c, perl_ext/Constants.xs, perl_ext/DisplayItem.xs,
perl_ext/Exports.c, perl_ext/Font.xs, perl_ext/Movie.xs,
perl_ext/SWF.xs, perl_ext/Text.xs, perl_ext/TextField.xs,
php_ext/ming.c, php_ext/php_ming.h, src/blocks/swf.h,
src/blocks/text.c, src/blocks/text.h, src/blocks/textfield.c,
src/blocks/textfield.h:
changed: - use addString() and getWidth() for codepage text again
use addUTF8String() and getUTF8Width() for unicode text
- modified the drawshape function to handle some existing fonts
that specify 1 bit (rather than 0 bits) for the number of line
styles
added: - endMask() for mask operations use: $mask_instance =
$movie->add($shape); // mask shape // add more characters on
top of the mask $mask_instance->endMask();
- font embedding for text fields use: $tf = new SWFTextField(....
| SWFTEXTFIELD_USEFONT); $tf->setFont($font);
$tf->addChars("0123456789"); will create a text field that uses
font embedding only for numbers. Note a) adding chars actually
adds to a font instance rather than the text field, so if one text
field is set up for digits and the other for alphabet, both will
have all alphanumerics available Note b) with html text fields, it
is possible to mix fonts. With FP5, both browser and embedded fonts
could be mixed. FP6 now requires all fonts to be embedded
- Ming_useConstants(flag) function to disable the use of constant
pool in actionscripts ... would make sense to disable if you create
100 buttons with simple script
- added a few existing functions to the php and perl interfaces:
$textfield->setPadding() $movie->addExport()
$movie->writeExports()
- new function $font->getShape(code) returns the character shape as
a multiline text. It is meant to be split into lines, where every
line represents a line or curve segment. For a possible use see
http://www.neuralust.com/~mingdocs/code/knifeexample.swf
2002-11-07 13:39 peterdd
* perl_ext/SWF/TextField.pm: typofixes
2002-11-07 13:37 peterdd
* perl_ext/SWF/Movie.pm: added documentation for SWF::Movie
2002-11-07 13:32 peterdd
* perl_ext/Movie.xs: added protect and compressed output
2002-11-07 07:25 peterdd
* perl_ext/Movie.xs: save method now supports compression.
2002-10-22 04:50 peterdd
* util/swftoperl.c: fixed Content-type:
2002-10-07 07:43 peterdd
* perl_ext/examples/morph.cgi: fix: added an extra frame at end of
morph.
2002-10-07 07:31 peterdd
* perl_ext/SWF/TextField.pm: added some documentation
2002-10-07 07:22 peterdd
* util/ming.css: deleted unused stuff
2002-09-24 05:11 soheil
* perl_ext/TODO: Updated
2002-09-24 05:10 soheil
* perl_ext/README: Fixed my email address
2002-09-24 05:10 soheil
* perl_ext/.cvsignore: - Added BOOT.xsh - Added generated .c files
2002-09-24 04:57 soheil
* perl_ext/: DisplayItem.xs, SWF/DisplayItem.pm: Added
$displayItem->getDepth()
2002-09-21 00:45 peterdd
* util/ming.css: added a stylesheet for swftoperl.html
2002-09-21 00:00 peterdd
* ChangeLog: added swftoperl
2002-09-20 23:49 peterdd
* util/TODO: a new TODO for util/ :-)
2002-09-20 23:45 peterdd
* util/README: more structure for the README
2002-09-20 23:41 peterdd
* util/swftoperl.html: instructions for swftoperl
2002-09-20 23:39 peterdd
* util/Makefile: added make swftoperl
2002-09-20 23:38 peterdd
* util/swftoperl.c: initial import
2002-09-20 23:36 peterdd
* util/swftoperl.h: for swftoperl
2002-09-05 01:38 erich
* ChangeLog: fixed perl_ext
2002-09-05 01:36 erich
* CREDITS: added myself ;)
2002-09-05 01:31 erich
* perl_ext/Makefile.PL: fix perl extension
2002-09-03 23:00 staybyte
* ChangeLog: [no log message]
2002-09-03 22:25 opaque_ndst
* src/blocks/: block.c, blocktypes.h, font.c, font.h: made SWFFont
a SWFBlock type again so we can use destroySWFBlock in the wrapper
code and ignore whether it's an SWFFont or SWFBrowserFont
2002-08-31 19:00 staybyte
* ChangeLog: [no log message]
2002-08-31 18:08 opaque_ndst
* ming.h, src/blocks/text.c, src/blocks/text.h: changed
SWFText_addString to SWFText_addUTF8String, replaced
SWFText_addString with old behavior
2002-08-28 21:00 staybyte
* ChangeLog: [no log message]
2002-08-28 20:05 opaque_ndst
* TODO, src/movie.c, src/position.c, src/shape_cubic.c,
src/shape_util.c, src/blocks/block.c, src/blocks/cxform.c,
src/blocks/dbl.c, src/blocks/error.c, src/blocks/font.c,
src/blocks/font.h, src/blocks/input.c, src/blocks/jpeg.c,
src/blocks/matrix.c, src/blocks/method.c, src/blocks/read.c,
src/blocks/sound.c, src/blocks/soundstream.c, src/blocks/text.c,
src/blocks/utf8.c, win32/libming.dsp: type casts to quell warnings
on windows
2002-08-27 09:00 staybyte
* ChangeLog: [no log message]
2002-08-27 08:50 opaque_ndst
* src/blocks/input.c: fixed really stupid problem with
indeterminate function call ordering
2002-08-19 18:00 staybyte
* ChangeLog: [no log message]
2002-08-19 17:58 staybyte
* src/movie.c: remove automatic version number change to 6
2002-08-19 16:00 staybyte
* ChangeLog: [no log message]
2002-08-19 15:58 staybyte
* src/actioncompiler/swf5compiler.y: correct entry for action
script command delete
2002-08-18 23:00 staybyte
* ChangeLog: [no log message]
2002-08-18 22:16 staybyte
* ming.h, ming.i, php_ext/ming-dev.c, php_ext/ming.c, src/Makefile,
src/movie.c, src/movie.h, src/blocks/method.c, src/blocks/method.h:
add flash mx compression support
2002-08-14 07:00 staybyte
* ChangeLog: [no log message]
2002-08-14 06:31 opaque_ndst
* src/blocks/text.c: fixed unitialized memory problem causing buggy
advance lists
2002-08-14 06:30 opaque_ndst
* src/actioncompiler/compile.c: fixed stupid typo causing crashing
on compilation
2002-08-13 09:00 staybyte
* ChangeLog: [no log message]
2002-08-13 08:13 opaque_ndst
* src/ming.h: added missing semicolon
2002-08-13 08:13 opaque_ndst
* src/: font_util.c, font_util.h: functions to let ming keep fonts
across process lifetime
2002-08-13 08:11 opaque_ndst
* src/Makefile: added font_util.o
2002-08-13 08:11 opaque_ndst
* src/ming.c: added font_util.h include
2002-08-13 08:10 opaque_ndst
* src/: blocklist.c, movie.c, blocks/font.c: fixed memory leaks
2002-08-13 08:00 staybyte
* ChangeLog: [no log message]
2002-08-13 07:35 opaque_ndst
* src/blocks/text.c: fixed bug with calling getScaledStringWidth
after text object's been added to movie (and thereby "resolved",
replacing textrecords' fonts with fontchars)
2002-08-13 07:33 opaque_ndst
* src/blocks/font.c: fixed an off-by-one malloc bug
2002-08-12 06:00 staybyte
* ChangeLog: [no log message]
2002-08-12 05:43 opaque_ndst
* ming.h, src/ming.c, src/ming.h, src/blocks/font.c,
src/blocks/font.h, src/blocks/text.c, src/blocks/text.h: fixed wide
font support
2002-08-08 22:00 staybyte
* ChangeLog: [no log message]
2002-08-08 21:22 opaque_ndst
* php_ext/ming-dev.c: ming.c for PHP-4.3.0dev
2002-08-08 07:00 staybyte
* ChangeLog: [no log message]
2002-08-08 06:07 opaque_ndst
* php_ext/ming.c: ming.c from php-4.2.2
2002-08-08 02:00 staybyte
* ChangeLog: [no log message]
2002-08-08 01:43 opaque_ndst
* TODO, HISTORY: [no log message]
2002-08-08 01:39 opaque_ndst
* src/: Makefile, fill.c, ming.c, ming.h, position.c, position.h,
shape_cubic.c, shape_util.c: formatting changes, cosmetic only
2002-08-08 01:38 opaque_ndst
* src/blocktypes.h: added DEFINEEDITTEXT (textfield) type
2002-08-08 01:37 opaque_ndst
* src/blocks/: Makefile, action.c, bitmap.c, block.c, block.h,
browserfont.c, cxform.c, dbl.c, error.c, fillstyle.c, fontinfo.c,
gradient.c, jpeg.c, libswf.h, linestyle.c, matrix.c, method.c,
method.h, morph.c, mp3.c, output.c, outputblock.c, placeobject.c,
read.c, rect.c, rect.h, shape.c, shape.h, sprite.c, sprite.h,
textfield.h, ttffont.c: removed superfluous sec_free calls,
formatting changes (cosmetic only)
2002-08-08 01:36 opaque_ndst
* src/blocks/: sound.c, soundinstance.c, soundstream.c: added
Goto's sound code, with support for adpcm and raw pcm (untested)
2002-08-08 01:35 opaque_ndst
* src/blocks/: input.c, input.h: added read method for many-byte
reading. Should replace getc..
2002-08-08 01:34 opaque_ndst
* src/: text_util.c, text_util.h: added SWFText_setSpacing
2002-08-08 01:33 opaque_ndst
* src/actioncompiler/: Makefile, assembler.c, compile.c,
compileaction.c: removed superfluous sec_free calls formatted code
(cosmetic only)
2002-08-08 01:32 opaque_ndst
* src/: blocklist.c, blocklist.h, displaylist.c, displaylist.h,
movie.c, movie.h, movieclip.c, movieclip.h, blocks/character.c,
blocks/character.h: rewrote dependency inheritance code to deal
with SWFFontCharacters, fix block ordering bugs
2002-08-08 01:30 opaque_ndst
* src/blocks/button.c: added Goto's button sound code (untested)
2002-08-08 01:30 opaque_ndst
* src/blocks/textfield.c: changed default flags to fix problem
reported (long ago..) by Wolfgang Hamann
2002-08-08 01:29 opaque_ndst
* src/blocks/: text.c, font.c, font.h, text.h: factored
SWFFontCharacter out of SWFFont- contains the movie-specific
information in a font allows SWFFont objects to be used across
multiple movies
added (untested) 16-bit font support
2002-08-08 01:25 opaque_ndst
* src/blocks/: utf8.c, utf8.h: UTF8 decoding code for international
text support
2002-08-08 01:24 opaque_ndst
* src/test.c: updated ming calls, compiles again
2002-08-08 01:24 opaque_ndst
* util/listswf.c: replaced changed code- font offset table really
does contain nGlyphs+1 entries
2002-08-05 23:00 staybyte
* ChangeLog: [no log message]
2002-08-05 22:56 opaque_ndst
* src/blocks/loadfont.c: code moved to font.c
2002-07-23 01:00 staybyte
* ChangeLog: [no log message]
2002-07-23 00:37 opaque_ndst
* ming.h, mingpp.h, src/blocklist.c, src/blocklist.h,
src/blocktypes.h, src/displaylist.c, src/displaylist.h, src/fill.c,
src/fill.h, src/libming.h, src/ming.c, src/ming.h, src/movie.c,
src/movie.h, src/movieclip.c, src/movieclip.h, src/position.c,
src/position.h, src/shape_cubic.c, src/shape_cubic.h,
src/shape_util.c, src/shape_util.h, src/test.c, src/text_util.c,
src/text_util.h, src/actioncompiler/assembler.c,
src/actioncompiler/assembler.h, src/actioncompiler/compile.c,
src/actioncompiler/compile.h, src/actioncompiler/compileaction.c,
src/actioncompiler/listaction.c, src/actioncompiler/main.c,
src/blocks/action.c, src/blocks/action.h, src/blocks/bitmap.c,
src/blocks/bitmap.h, src/blocks/block.c, src/blocks/block.h,
src/blocks/blocktypes.h, src/blocks/browserfont.c,
src/blocks/browserfont.h, src/blocks/button.c, src/blocks/button.h,
src/blocks/character.c, src/blocks/character.h,
src/blocks/cxform.c, src/blocks/cxform.h, src/blocks/dbl.c,
src/blocks/dbl.h, src/blocks/error.c, src/blocks/error.h,
src/blocks/exports.h, src/blocks/fillstyle.c,
src/blocks/fillstyle.h, src/blocks/font.c, src/blocks/font.h,
src/blocks/fontinfo.c, src/blocks/fontinfo.h,
src/blocks/gradient.c, src/blocks/gradient.h, src/blocks/input.c,
src/blocks/input.h, src/blocks/jpeg.c, src/blocks/jpeg.h,
src/blocks/libswf.h, src/blocks/linestyle.c,
src/blocks/linestyle.h, src/blocks/loadfont.c, src/blocks/matrix.c,
src/blocks/matrix.h, src/blocks/method.c, src/blocks/method.h,
src/blocks/morph.c, src/blocks/morph.h, src/blocks/mp3.c,
src/blocks/output.c, src/blocks/output.h, src/blocks/outputblock.c,
src/blocks/outputblock.h, src/blocks/placeobject.c,
src/blocks/placeobject.h, src/blocks/read.c, src/blocks/rect.c,
src/blocks/rect.h, src/blocks/shape.c, src/blocks/shape.h,
src/blocks/sound.c, src/blocks/sound.h, src/blocks/soundinstance.c,
src/blocks/soundinstance.h, src/blocks/soundstream.c,
src/blocks/soundstream.h, src/blocks/sprite.c, src/blocks/sprite.h,
src/blocks/swf.h, src/blocks/text.c, src/blocks/text.h,
src/blocks/textfield.c, src/blocks/textfield.h,
src/blocks/ttffont.c, src/blocks/ttffont.h: rolled back indentation
changes
2002-07-22 16:00 staybyte
* ChangeLog: [no log message]
2002-07-22 15:36 staybyte
* ming.h, mingpp.h, src/blocklist.c, src/blocklist.h,
src/blocktypes.h, src/displaylist.c, src/displaylist.h, src/fill.c,
src/fill.h, src/libming.h, src/ming.c, src/ming.h, src/movie.c,
src/movie.h, src/movieclip.c, src/movieclip.h, src/position.c,
src/position.h, src/shape_cubic.c, src/shape_cubic.h,
src/shape_util.c, src/shape_util.h, src/test.c, src/text_util.c,
src/text_util.h, src/actioncompiler/assembler.c,
src/actioncompiler/assembler.h, src/actioncompiler/compile.c,
src/actioncompiler/compile.h, src/actioncompiler/compileaction.c,
src/actioncompiler/listaction.c, src/actioncompiler/main.c,
src/blocks/action.c, src/blocks/action.h, src/blocks/bitmap.c,
src/blocks/bitmap.h, src/blocks/block.c, src/blocks/block.h,
src/blocks/blocktypes.h, src/blocks/browserfont.c,
src/blocks/browserfont.h, src/blocks/button.c, src/blocks/button.h,
src/blocks/character.c, src/blocks/character.h,
src/blocks/cxform.c, src/blocks/cxform.h, src/blocks/dbl.c,
src/blocks/dbl.h, src/blocks/error.c, src/blocks/error.h,
src/blocks/exports.h, src/blocks/fillstyle.c,
src/blocks/fillstyle.h, src/blocks/font.c, src/blocks/font.h,
src/blocks/fontinfo.c, src/blocks/fontinfo.h,
src/blocks/gradient.c, src/blocks/gradient.h, src/blocks/input.c,
src/blocks/input.h, src/blocks/jpeg.c, src/blocks/jpeg.h,
src/blocks/libswf.h, src/blocks/linestyle.c,
src/blocks/linestyle.h, src/blocks/loadfont.c, src/blocks/matrix.c,
src/blocks/matrix.h, src/blocks/method.c, src/blocks/method.h,
src/blocks/morph.c, src/blocks/morph.h, src/blocks/mp3.c,
src/blocks/output.c, src/blocks/output.h, src/blocks/outputblock.c,
src/blocks/outputblock.h, src/blocks/placeobject.c,
src/blocks/placeobject.h, src/blocks/read.c, src/blocks/rect.c,
src/blocks/rect.h, src/blocks/shape.c, src/blocks/shape.h,
src/blocks/sound.c, src/blocks/sound.h, src/blocks/soundinstance.c,
src/blocks/soundinstance.h, src/blocks/soundstream.c,
src/blocks/soundstream.h, src/blocks/sprite.c, src/blocks/sprite.h,
src/blocks/swf.h, src/blocks/text.c, src/blocks/text.h,
src/blocks/textfield.c, src/blocks/textfield.h,
src/blocks/ttffont.c, src/blocks/ttffont.h: indent sources
2002-07-22 15:35 staybyte
* php_ext/: ming.c, php_ming.h: add swfbutton_addsound
2002-07-21 09:00 staybyte
* ChangeLog: [no log message]
2002-07-20 18:47 staybyte
* php_ext/ming.c: backporting from php cvs tree
2002-07-20 18:30 staybyte
* util/gif2dbl.c: fixed spelling mistake
2002-07-20 18:29 staybyte
* src/blocks/: character.c, character.h, dbl.c: fixed proto
mismatch
2002-07-20 18:28 staybyte
* perl_ext/t/: fill.t, sound.t, sprite.t: add nl at end of files
2002-07-17 09:00 staybyte
* ChangeLog: [no log message]
2002-07-15 09:06 opaque_ndst
* ming.h: changed SWFMovie_add second arg back to void* to keep
existing code from complaining
2002-07-15 09:02 opaque_ndst
* src/blocks/morph.c: changed getdependencies function to new
format
2002-07-15 09:01 opaque_ndst
* src/blocks/mp3.c: added (empty, for now) getMP3Size function
2002-07-15 09:00 staybyte
* ChangeLog: [no log message]
2002-07-15 09:00 opaque_ndst
* src/test.c: updated to make it compile again..
2002-07-15 09:00 opaque_ndst
* src/: movie.c, movie.h, blocklist.c, blocklist.h, movieclip.c,
movieclip.h, displaylist.c, displaylist.h, blocks/character.c,
blocks/character.h: added sound code to SWFMovie and SWFMovieClip
changed getdependency function slightly moved resolvedependency
function to blocklist.c
2002-07-15 08:57 opaque_ndst
* src/blocks/: button.c, button.h: added sound code
2002-07-15 08:56 opaque_ndst
* src/Makefile, src/blocks/Makefile, util/Makefile: straightened
out OFILES added new sound code
2002-07-15 08:36 opaque_ndst
* src/blocks/: sound.c, sound.h, soundstream.c, soundstream.h:
Added functions for non-streaming sounds. These don't quite work
yet, but they don't seem to break existing code..
2002-07-15 08:35 opaque_ndst
* ming.h: added SWFSound and SWFSoundInstance functions
2002-07-15 08:33 opaque_ndst
* util/raw2adpcm.c: an ADPCM coder..
2002-07-15 08:33 opaque_ndst
* src/blocks/: soundinstance.c, soundinstance.h: SWFSoundInstance
is an instance handle for sounds, generated by SWFMovie_startSound
or SWFButton_addSound. Lets you change parameters like loop points
and envelopes
2002-07-14 23:01 opaque_ndst
* src/Makefile.am, src/actioncompiler/Makefile.am,
src/blocks/Makefile.am, util/Makefile.am: first stab at
autoconf'ing this mess
2002-07-14 22:58 opaque_ndst
* Makefile.am, autogen.sh, configure.in: first stab at autoconf'ing
this mess
2002-07-14 22:20 opaque_ndst
* util/decompile5.c: added SWFACTION_INITARRAY handler
2002-07-05 12:48 staybyte
* ChangeLog, ChangeLog, ChangeLog: [no log message]
2002-07-05 09:00 staybyte
* ChangeLog: [no log message]
2002-07-04 09:00 staybyte
* ChangeLog: [no log message]
2002-07-03 20:35 staybyte
* CHANGES, ming.h, php_ext/config.m4, php_ext/ming.c,
php_ext/php_ming.h, src/Makefile, src/blocklist.c,
src/displaylist.c, src/fill.c, src/ming.c, src/ming.h, src/movie.c,
src/movie.h, src/position.c, src/actioncompiler/Makefile,
src/actioncompiler/compile.c, src/actioncompiler/swf4compiler.y,
src/actioncompiler/swf5compiler.y, src/blocks/Makefile,
src/blocks/action.c, src/blocks/bitmap.c, src/blocks/block.c,
src/blocks/blocktypes.h, src/blocks/browserfont.c,
src/blocks/button.c, src/blocks/character.c, src/blocks/cxform.c,
src/blocks/dbl.c, src/blocks/error.c, src/blocks/fillstyle.c,
src/blocks/font.c, src/blocks/font.h, src/blocks/fontinfo.c,
src/blocks/gradient.c, src/blocks/input.c, src/blocks/jpeg.c,
src/blocks/libswf.h, src/blocks/linestyle.c, src/blocks/loadfont.c,
src/blocks/matrix.c, src/blocks/method.c, src/blocks/method.h,
src/blocks/morph.c, src/blocks/mp3.c, src/blocks/output.c,
src/blocks/outputblock.c, src/blocks/placeobject.c,
src/blocks/read.c, src/blocks/rect.c, src/blocks/shape.c,
src/blocks/sound.c, src/blocks/soundstream.c, src/blocks/sprite.c,
src/blocks/swf.h, src/blocks/text.c, src/blocks/text.h,
src/blocks/textfield.c, src/blocks/textfield.h,
src/blocks/ttffont.c, src/blocks/ttffont.h, util/gif2dbl.c,
util/listswf.c, util/swftophp.c: fixed some problems with segfaults
2002-07-03 20:29 staybyte
* ChangeLog, ChangeLog: [no log message]
2002-07-03 18:12 staybyte
* ChangeLog: [no log message]
2002-07-03 18:10 staybyte
* HISTORY: move CHANGES to HISTORY
2002-07-03 12:49 staybyte
* ChangeLog: [no log message]
2002-07-03 12:30 staybyte
* ChangeLog, ChangeLog: [no log message]
2002-02-02 13:35 erich
* java_ext/native/SWFNative.cc: fixed rotateTo, thanks to Tod E.
Kurt
2002-01-10 18:15 erich
* src/blocks/font.c: oops, broke that fix. next try
2002-01-10 18:10 erich
* src/blocks/: font.c, shape.c, text.c: included fixes from Uwe
Traum
2001-12-30 21:26 soheil
* perl_ext/Bitmap.xs: Fixed SWF::Bitmap::DESTROY
2001-12-30 21:23 soheil
* perl_ext/Button.xs: Fixed destroySWFButton
2001-12-30 21:22 soheil
* perl_ext/Font.xs: Fixed SWF::Font::new
2001-12-30 21:20 soheil
* perl_ext/Morph.xs: Fixed destroySWFMorph
2001-12-30 21:19 soheil
* perl_ext/Shape.xs: Fixed destroySWFShape
2001-12-30 21:18 soheil
* perl_ext/Text.xs: Fixed destroySWFText
2001-12-30 21:18 soheil
* perl_ext/TextField.xs: Fixed destroySWFTextField
2001-12-24 02:32 erich
* ming.i, mingpp.h: attemt to get ming.i and mingpp.h into sync
with ming.h and main source...
2001-12-23 21:13 opaque_ndst
* CHANGES: [no log message]
2001-12-23 00:11 opaque_ndst
* src/shape_cubic.c: added ming.h include for defines needed on
win32
2001-12-23 00:09 opaque_ndst
* src/actioncompiler/action.h, util/action.h, util/decompile5.c,
util/makefdb.c: added Wolfgang Hamann's fixes
2001-12-22 23:35 opaque_ndst
* win32/: libming.dsp, libming.dsw: MSVC project files from Martin
Weber
2001-12-14 06:31 opaque_ndst
* ming.h: added deprecated SWFFont_drawFontGlyph define for php
2001-12-14 06:29 opaque_ndst
* php_ext/: ming.c, config.m4: added Rasmus's changes for 4.1.0
2001-12-08 23:52 erich
* mingpp.h: Reported by Raymond Penners, inconsistency to ming.h in
addString
2001-11-29 07:36 opaque_ndst
* CHANGES, TODO, ming.h, src/Makefile, src/blocklist.c,
src/blocklist.h, src/displaylist.c, src/displaylist.h, src/fill.c,
src/fill.h, src/ming.h, src/movie.c, src/movie.h, src/movieclip.c,
src/movieclip.h, src/position.c, src/position.h, src/shape_util.c,
src/shape_util.h, src/text_util.h, src/actioncompiler/assembler.c,
src/actioncompiler/assembler.h, src/blocks/Makefile,
src/blocks/action.c, src/blocks/action.h, src/blocks/bitmap.c,
src/blocks/bitmap.h, src/blocks/block.c, src/blocks/block.h,
src/blocks/browserfont.c, src/blocks/browserfont.h,
src/blocks/button.c, src/blocks/button.h, src/blocks/character.c,
src/blocks/character.h, src/blocks/cxform.c, src/blocks/cxform.h,
src/blocks/dbl.c, src/blocks/dbl.h, src/blocks/exports.h,
src/blocks/fillstyle.c, src/blocks/fillstyle.h, src/blocks/font.c,
src/blocks/font.h, src/blocks/fontinfo.c, src/blocks/fontinfo.h,
src/blocks/gradient.c, src/blocks/gradient.h, src/blocks/input.c,
src/blocks/input.h, src/blocks/jpeg.c, src/blocks/jpeg.h,
src/blocks/linestyle.c, src/blocks/linestyle.h,
src/blocks/loadfont.c, src/blocks/matrix.c, src/blocks/matrix.h,
src/blocks/method.c, src/blocks/method.h, src/blocks/morph.c,
src/blocks/morph.h, src/blocks/output.c, src/blocks/output.h,
src/blocks/outputblock.c, src/blocks/outputblock.h,
src/blocks/placeobject.c, src/blocks/placeobject.h,
src/blocks/rect.c, src/blocks/rect.h, src/blocks/shape.c,
src/blocks/shape.h, src/blocks/sound.h, src/blocks/soundstream.c,
src/blocks/soundstream.h, src/blocks/sprite.c, src/blocks/sprite.h,
src/blocks/text.c, src/blocks/text.h, src/blocks/textfield.c,
src/blocks/textfield.h: general code cleanup:
changed void* object typedefs to struct pointers moved structure
definitions into .c files where possible some memory leaks plugged
random kruft removed
2001-11-29 07:34 opaque_ndst
* py_ext/Makefile: changed ming library linkage from static to
dynamic
2001-10-24 02:33 erich
* php_ext/ming.c: fix for php4 rc1
2001-10-24 02:20 erich
* php_ext/config.m4: added -lm so config detects ming again...
2001-09-26 04:33 soheil
* perl_ext/Changes: Updated
2001-09-26 04:33 soheil
* perl_ext/Font.xs: fixed SWF::Font::new method to accept browser
fonts (reported by Zbigniew).
2001-09-26 03:07 soheil
* perl_ext/DisplayItem.xs: added accessor methods
2001-09-26 03:05 soheil
* perl_ext/SWF/DisplayItem.pm: added documentation for accessor
methods.
2001-09-25 23:54 erich
* java_ext/Makefile: added -f to rm in clean target
2001-09-25 22:11 erich
* src/shape_util.h: synced with shape_util.c changes
2001-09-25 21:43 erich
* java_ext/Makefile: added rm *.jar to clean target
2001-09-25 19:27 erich
* java_ext/: SWFMovie.java, SWFMovieI.java: removed undefined
useSWFVersion, so the java extension builds
2001-09-25 19:25 erich
* java_ext/: SWFShape.java, SWFShapeI.java: removed duplicate
drawGlyph
2001-09-25 19:03 erich
* rb_ext/test.rb: trying to get this to run...
2001-09-25 18:25 erich
* perl_ext/SWF/Shape.pm: fixed two typos (shpae instead of shape)
reported by alfie in #debian.de@IRCNet
2001-09-25 18:20 erich
* util/Makefile: added listaction to clean target
2001-09-25 18:08 erich
* Makefile: now honors , added -m 0644 to install
2001-09-25 18:07 erich
* util/Makefile: added install target
2001-09-25 18:02 erich
* src/blocks/Makefile: added -fPIC
2001-09-25 18:01 erich
* src/Makefile: -fPIC fixes
2001-09-25 17:58 erich
* src/actioncompiler/Makefile: added -fPIC, clean target now
removes autogenerated files
2001-09-25 17:54 erich
* php_ext/Makefile, py_ext/Makefile: Small makefile fixes, now
using install instead of cp, honors DESTDIR now
2001-09-25 17:52 erich
* java_ext/Makefile: added clean target
2001-09-24 04:04 soheil
* perl_ext/SWF/Sound.pm: added version
2001-09-24 03:36 soheil
* perl_ext/Changes: updated changes
2001-09-24 03:30 soheil
* perl_ext/MANIFEST: removed example files
2001-09-24 03:27 soheil
* perl_ext/t/drag.t: add SWF::Constants
2001-09-24 03:26 soheil
* perl_ext/: SWF/Constants.pm, examples/action.cgi,
examples/alphafill.cgi: initial import to cvs
2001-09-24 03:24 soheil
* perl_ext/swf_util.c: added header files
2001-09-24 03:09 soheil
* perl_ext/perl_swf.h: added swf_stash_refcnt_inc/dec methods
2001-09-24 03:07 soheil
* perl_ext/TODO: Updated the list
2001-09-24 03:04 soheil
* perl_ext/t/button.t: - added SWF::Constants
2001-09-24 03:02 soheil
* perl_ext/SWF/TextField.pm: - added version - Moved :Text to
Constants
2001-09-24 02:59 soheil
* perl_ext/SWF/: Movie.pm, Shape.pm, Sprite.pm, Text.pm: - added
version
2001-09-24 02:55 soheil
* perl_ext/SWF/: Fill.pm, Font.pm, Gradient.pm, Morph.pm: - added
version
2001-09-24 02:54 soheil
* perl_ext/SWF/DisplayItem.pm: - added version - Moved :DisplayItem
to Constants
2001-09-24 02:53 soheil
* perl_ext/SWF/Button.pm: - added version - Moved :Button to
Constants.pm
2001-09-24 02:49 soheil
* perl_ext/SWF/: Action.pm, Bitmap.pm: - added version
2001-09-24 02:47 soheil
* perl_ext/SWF.pm: - added Constants to @EXPORT_OK - Changed
version to 0.09-dev
2001-09-24 02:44 soheil
* perl_ext/SWF.xs: Splitted the XS file
2001-09-24 02:44 soheil
* perl_ext/Makefile.PL: - added clean - added @SWF_MODULES +
write_bootxs() (needed for spliting SWF.xs)
2001-09-24 02:40 soheil
* perl_ext/Exports.c: Fixed possible typo warning
2001-09-24 02:37 soheil
* perl_ext/: Action.xs, Bitmap.xs, Button.xs, Constants.xs,
DisplayItem.xs, Fill.xs, Font.xs, Gradient.xs, Morph.xs, Movie.xs,
MovieClip.xs, Shape.xs, Sound.xs, Text.xs, TextField.xs: Initial
import to cvs
2001-09-18 23:05 opaque_ndst
* src/shape_util.c: changed drawarc/circle radius arg type to float
2001-09-16 00:39 opaque_ndst
* util/png2dbl.c: added Ingo Wilken's patch for word-aligning the
PNG data
2001-09-16 00:10 opaque_ndst
* ming.h, mingpp.h, src/displaylist.c, src/displaylist.h: added Uri
Yanover's displayitem property accessor functions
2001-08-22 03:21 soheil
* perl_ext/Changes: Updated Changes
2001-08-22 03:18 soheil
* perl_ext/TODO: updated TODO list
2001-08-22 03:15 soheil
* perl_ext/SWF/TextField.pm: - added documentation for importing
constants (need to add method pod)
2001-08-22 03:13 soheil
* perl_ext/examples/: glyph.cgi, keypress.cgi, text.cgi: initial
import to cvs
2001-08-22 03:11 soheil
* perl_ext/SWF.xs: updated SWFMovie::addExport SWFShape::drawGlyph
(patch submitted by Wolfgang Hamann)
2001-08-19 23:41 opaque_ndst
* CHANGES, CREDITS: [no log message]
2001-08-19 23:40 opaque_ndst
* php_ext/: Makefile.in, config.m4: updated from php4 cvs
2001-08-19 13:26 sspickle
* py_ext/: .cvsignore, INSTALL, README, Setup, build.py,
ming_wrap.c, shape.py: added new build.py Setup, and ming_wrap.c
for folks who don't have swig
2001-08-19 13:26 sspickle
* py_ext/Setup: file Setup was initially added on branch
new-py_ext-makefile.
2001-08-19 13:26 sspickle
* py_ext/build.py: file build.py was initially added on branch
new-py_ext-makefile.
2001-08-17 19:56 opaque_ndst
* src/: ming.h, movie.c: newSWFMovie didn't actually look at
SWF_versionNum before.. Oops.
2001-08-12 02:10 opaque_ndst
* src/Makefile: added shape_cubic
2001-08-12 02:10 opaque_ndst
* ming.h: changed version number, fixed SWFShape_drawFontGlyph
macro
2001-08-12 02:09 opaque_ndst
* src/: shape_cubic.c, shape_cubic.h, shape_util.c: moved cubic
functions to shape_cubic.c
2001-08-09 03:46 soheil
* perl_ext/SWF/DisplayItem.pm: - added documentation for importing
SWFACTION_* constants - added setMask() method doc (need to
explain)
2001-08-09 03:43 soheil
* perl_ext/t/.cvsignore: Fixed filename
2001-08-09 03:42 soheil
* perl_ext/t/.cvsignore: initial import to cvs
2001-08-09 03:40 soheil
* perl_ext/.cvsignore: Fixed list of files
2001-08-09 03:37 soheil
* perl_ext/SWF.xs: - added SWF::Movie::addExport() - added
SWF::DisplayItem::setMaskLevel()
2001-08-08 06:45 soheil
* perl_ext/SWF/Bitmap.pm: - fixed documentation
2001-08-08 06:44 soheil
* perl_ext/SWF.pm: - added SWF::setVersion($version) perldoc
2001-08-08 06:42 soheil
* perl_ext/Exports.c: - added SWFTEXTFIELD_HASLENGTH - removed
:Clip constants. ming.h doesn't have it! - added :DisplayItem
constants
2001-08-08 06:42 soheil
* perl_ext/SWF.xs: - added SWF::setVersion() - added DisplayItem
constants - added DisplayItem::addAction() - removed deprecated
methods from SWF::Shape - added SWFTEXTFIELD_HTML and
SWFTEXTFIELD_HASLENGTH to TextField constants - fixed
Action::new(). The script cannot be NULL
2001-08-08 06:40 soheil
* perl_ext/Makefile.PL: Fixed inlude directory for ming.h
2001-08-08 03:22 soheil
* perl_ext/Makefile.PL: Removed @supported_ming_vers. No need to
check ming version as we're going to distribute perl-ming though
CVS, ming website, or CPAN.
2001-08-06 23:45 soheil
* perl_ext/examples/: animation.cgi, morph.cgi, sprite.cgi: initial
import to cvs
2001-08-06 23:32 soheil
* perl_ext/examples/: shape.cgi, jpegfill.cgi: initial import to
cvs
2001-08-06 23:30 soheil
* perl_ext/Makefile.PL: added skip_test() to t/config.pl
2001-08-06 23:29 soheil
* perl_ext/t/: filljpeg.t, png.t, sound.t: - if required file
doesn't exist, call skip_test()
2001-08-06 22:51 soheil
* perl_ext/perl_swf.h: - added SWFSound - added debug level
2001-08-06 22:48 soheil
* perl_ext/MANIFEST: - added SWF/*.pm file - added swf_util.c -
added more test files
2001-08-06 22:44 soheil
* perl_ext/: SWF/Action.pm, SWF/Bitmap.pm, SWF/Button.pm,
SWF/DisplayItem.pm, SWF/Fill.pm, SWF/Font.pm, SWF/Gradient.pm,
SWF/Morph.pm, SWF/Movie.pm, SWF/Shape.pm, SWF/Sound.pm,
SWF/Sprite.pm, SWF/Text.pm, SWF/TextField.pm, t/00_basic.t,
t/01_shape.t, t/03_movie.t, t/button.t, t/drag.t, t/fill.t,
t/filljpeg.t, t/gradient.t, t/png.t, t/sound.t, t/sprite.t: initial
import to cvs
2001-08-06 22:41 soheil
* perl_ext/typemap: added SWF::Sound
2001-08-06 22:37 soheil
* perl_ext/SWF.pm: 1- added import() 2- added doc
2001-08-06 22:34 soheil
* perl_ext/swf_util.c: initail import to cvs
2001-08-06 22:33 soheil
* perl_ext/SWF.xs: - Added swf_util.c - Made necessary changes to
compile with 0.2-pre-a version - Fixed some of memory leaks
2001-08-06 22:28 soheil
* perl_ext/Makefile.PL: - For now, we'll only support 0.2-pre-a -
Fixed DEFAULT_DIR
2001-08-01 08:10 raff
* util/png2dbl.c: Maybe this fixes the strange colors in PNG
images:
- filler goes AFTER (RGBA) not before (ARGB ?) - do strange things
with alpha channel also for RGB, since we convert it in RGBA -
added a --verbose option that may help to find problems cVS:
-------------------------------------------------------------------
---
2001-07-29 06:36 raff
* ming.h: If the implementation uses int, the prototype should use
int to or very bad things will happen when you try to use the
advance list!
2001-07-26 02:59 raff
* src/displaylist.c: I don't know why I can compile (most of the
times ): but just in case, let's declare functions before using
them.
2001-07-26 02:10 raff
* src/actioncompiler/: swf4compiler.flex, swf4compiler.y: Added
(only to the Flash 4 compiler) :
- getProperty(object, property) - gotoAndPlay(frame) - gotoFrame()
is really gotoAndStop - tellTarget(target) { block } -
frameLoaded(expr) - callFrame(string) - don't ask me why, but I had
a variable named like a frame.
Some of these changes can easily be ported (copied) to the Flash 5
compiler.
2001-07-26 02:05 raff
* Makefile: Added entries to build and install Ming as a static
library.
In order to automatically build both static and dynamic libraries,
remove the comment (# sign) from the 'all' and 'install' targets.
2001-07-26 02:00 raff
* ming.h: prototypes for Ming_setSWFVersion() and
SWFDisplayItem_setMaskLevel()
2001-07-26 01:58 raff
* src/shape_util.h: SWFShape_drawGlyph really only has 3
parameters, not 4
2001-07-26 01:57 raff
* src/: displaylist.c, displaylist.h: - added
SWFDisplayItem_setMaskLevel() - in SWFDisplayItem_setDepth(),
either I set the depth in the PlaceObject thing, or there is
really no point of having this function (unless I am missing
something).
2001-07-26 01:55 raff
* src/blocks/swf.h: added prototype for
SWFPlaceObject2Block_setMaskLevel()
2001-07-26 01:49 raff
* src/blocks/: placeobject.c, placeobject.h: - the masklevel (clip
depth) comes before the object name, not after - exported
SWFPlaceObject2Block_setMaskLevel - I really need to be able to
change the depth level (SWFPlaceObject2Block_setDepth) before
emitting the object, in order to properly use the masklevel.
2001-07-25 02:33 raff
* src/actioncompiler/: swf4compiler.flex, swf4compiler.y: This
fixes a bunch of problems with parsing a "sprite path" in the Flash
4 compiler (I don't know how the Flash 5 compiler works, but since
this part of the code is completely different it may be ok).
Now you can do things like /root/movie/submovie:variable, ./movie,
/movie/../anothermovie, etc. (I used to have problems with more
than one submovie)
(note: I am not simplifying ANY path - i.e. the ones containing ..
- they get sent straight to the Flash player. But it seems to work,
so... :)
2001-07-25 02:29 raff
* src/actioncompiler/Makefile: - 'make clean' now also removes the
files generated by flex and bison. - added a FLEXDEBUG option, in
case I really need to see what's going on.
2001-07-25 02:25 raff
* src/actioncompiler/main.c: I still am faithfull to the Flash 4
compiler, so here is a --4 option to select it (the default, as
before, is to use the new compiler).
2001-07-24 02:06 opaque_ndst
* src/libming.h: commented out garbage after #endif
2001-07-18 03:05 raff
* src/actioncompiler/: swf4compiler.flex, swf5compiler.flex: added
escape sequences \b, \f, \n, \r, \t and a warning message for \x
and \u (every other character that follows a '\' is left unchanged
but of course the '\' is removed).
2001-07-18 02:37 raff
* src/actioncompiler/: swf4compiler.flex, swf5compiler.flex:
Strings can contain escaped characters ( mainly the escape
character itself '\' and quotes, so I guess removing the escape
character is the right thing to do - and I am too lazy to find a
way to do it in Flex :)
One day we can support escape sequences ( \b, \f, \n, \r, \t ) and
hex/unicode values ( \xHH, \uHHHH ) by "fixing" the unescape
function.
2001-07-14 02:42 opaque_ndst
* src/: libming.h, blocks/libswf.h: added rint define
2001-07-14 02:35 opaque_ndst
* util/: listmp3.c, listswf.c: fixed mp3 frame parsing
2001-07-14 02:35 opaque_ndst
* src/blocks/: mp3.c, soundstream.c, soundstream.h: okay, I think
this fixes mp3 streaming..
2001-07-14 02:34 opaque_ndst
* src/displaylist.c: removed soundrewind method call from
writeBlocks- what was I thinking??
2001-07-12 04:53 opaque_ndst
* CREDITS: [no log message]
2001-07-12 04:49 opaque_ndst
* src/Makefile: added libming.so to make clean
2001-07-12 04:48 opaque_ndst
* Makefile: changed install to libming-0.2
2001-07-12 04:48 opaque_ndst
* src/actioncompiler/: oldcompiler.flex, oldcompiler.y: [no log
message]
2001-07-12 04:42 opaque_ndst
* ming.i, java_ext/SWFShape.java, java_ext/SWFShapeI.java,
java_ext/native/SWFShape.h, perl_ext/SWF.xs, php_ext/ming.c,
py_ext/ming.py, rb_ext/ming.rb: changed calls to SWFShape_drawGlyph
to SWFShape_drawSizedGlyph
2001-07-12 04:36 opaque_ndst
* perl_ext/README, php_ext/config.m4, py_ext/README: changed ming
lib requirements to 0.2-pre-a
2001-07-12 04:35 opaque_ndst
* java_ext/SWFMovie.java, java_ext/SWFMovieI.java,
java_ext/native/SWFMovie.h, perl_ext/SWF.xs, php_ext/ming.c,
php_ext/php_ming.h, py_ext/ming.py: added Ming_useSWFVersion
2001-07-12 04:32 opaque_ndst
* CHANGES, CREDITS, TODO: [no log message]
2001-07-12 04:32 opaque_ndst
* src/shape_util.c, src/shape_util.h, ming.h, mingpp.h: moved sized
drawGlyph to drawSizedGlyph, restoring api compatibility
2001-07-12 04:25 opaque_ndst
* src/blocks/swf.h: removed unused SWFMatrix_copy
2001-07-12 04:24 opaque_ndst
* src/blocks/shape.c: fixed pen positioning in drawGlyph
2001-07-12 04:23 opaque_ndst
* src/blocks/: matrix.c, matrix.h: added SWFMatrix_apply, various
small cleanups
2001-07-12 04:22 opaque_ndst
* src/actioncompiler/swf5compiler.y: added ~ op, changed shift ops'
token names to avoid collision with assembler ops
2001-07-12 04:21 opaque_ndst
* src/actioncompiler/swf5compiler.flex: changed shift ops' token
names to avoid colliding with assembler ops
2001-07-11 02:01 opaque_ndst
* src/actioncompiler/: compile.c, compile.h, swf5compiler.flex,
swf5compiler.y: various small fixes..
2001-07-09 07:27 opaque_ndst
* perl_ext/SWF.xs, py_ext/Makefile, py_ext/ming.py, rb_ext/ming.rb:
added size arg to SWFShape_drawGlyph
2001-07-09 07:23 opaque_ndst
* java_ext/: SWFShape.java, SWFShapeI.java, native/SWFShape.h:
added size arg to SWFShape_drawGlyph
2001-07-09 03:39 opaque_ndst
* ming.i: added Ming_useSWFVersion(num)
2001-07-09 03:37 opaque_ndst
* src/blocks/shape.c: now tracking pre-scaled pen in drawGlyph to
fix leaky shapes caused by rounding errors
2001-07-09 03:36 opaque_ndst
* src/blocks/Makefile: removed unused stuff..
2001-07-09 03:36 opaque_ndst
* src/Makefile: added new compiler files
2001-07-09 03:35 opaque_ndst
* src/: ming.c, ming.h: added Ming_useSWFVersion(num)
2001-07-09 03:33 opaque_ndst
* src/actioncompiler/compileaction.c: changed yyparse to
swf[45]parse
2001-07-09 03:33 opaque_ndst
* src/actioncompiler/main.c: changed yyparse to swf5parse
2001-07-09 03:32 opaque_ndst
* src/actioncompiler/: compile.c, compile.h: added Wolfgang's
patches allowing multiple data per push op
2001-07-09 03:32 opaque_ndst
* src/actioncompiler/: .cvsignore, Makefile: added new files
2001-07-08 22:17 opaque_ndst
* util/png2dbl.c: turns out 24-bit images still need the extra byte
padding.. weird.
2001-07-08 04:35 opaque_ndst
* src/actioncompiler/swf5compiler.y: oops, forgot to change the
WriteU8s to WriteOps
2001-07-08 04:21 opaque_ndst
* src/actioncompiler/: swf4compiler.flex, swf4compiler.y,
swf5compiler.flex, swf5compiler.y: split back into two separate
compilers, added many patches from Wolfgang Hamann
2001-07-08 04:19 opaque_ndst
* src/actioncompiler/: compiler.flex, compiler.y: moved to
swf[45]compiler
2001-07-01 22:40 opaque_ndst
* src/: shape_util.c, shape_util.h: added size arg to
SWFShape_drawGlyph
2001-07-01 22:40 opaque_ndst
* src/blocks/: shape.c, shape.h, swf.h: added size arg to
SWFShape_draw[Scaled]Glyph
2001-07-01 22:39 opaque_ndst
* src/ming.c: added Ming_getScale()
2001-07-01 22:39 opaque_ndst
* ming.h, ming.i, mingpp.h: added size arg to SWFShape_drawGlyph
function
2001-07-01 22:38 opaque_ndst
* php_ext/: ming.c, php_ming.h: added changes from php4 cvs:
removal of "inline" from get* functions changed V_FOPEN to
VCWD_FOPEN added RINIT function (but commented it out, it seems to
mess things up..)
2001-07-01 02:06 opaque_ndst
* src/actioncompiler/compiler.y: added getURL as synonym for
loadMovie
2001-07-01 01:27 opaque_ndst
* util/: decompile.c, listswf.c: added default case in geturl args
switch
2001-07-01 01:26 opaque_ndst
* src/actioncompiler/compiler.y: added back some legacy functions
from oldcompiler.y in vain attempt at backwards compatibility
2001-07-01 01:26 opaque_ndst
* src/actioncompiler/compiler.flex: added yyreset to parseInit call
added various legacy function calls
2001-06-20 10:04 opaque_ndst
* src/actioncompiler/compile.c: added position increment after
non-branch wide instruction
2001-06-20 10:03 opaque_ndst
* src/actioncompiler/compiler.flex: fixed error reporting- now only
one call to SWF_error is made
2001-06-20 10:02 opaque_ndst
* src/actioncompiler/compiler.y: fixes the case
if((++x % 100) == 0)
foo();
2001-06-20 10:01 opaque_ndst
* src/blocks/text.c: attempting to deal with empty-stringed text
records
2001-06-20 08:20 opaque_ndst
* src/movieclip.c: removed initializer for now nonexistent
totalFrames field
2001-06-20 04:47 opaque_ndst
* src/blocks/loadfont.c: cosmetic..
2001-06-20 04:46 opaque_ndst
* src/: movieclip.c, movieclip.h, blocks/sprite.c, blocks/sprite.h,
blocks/swf.h: added (working) setNumberOfFrames to SWFSprite
2001-06-20 04:10 opaque_ndst
* util/swftophp.c: added Pete Schwamb's patch for saving shape type
2001-06-20 03:31 opaque_ndst
* mingpp.h: fixed pointer reference in SWFDisplayItem::addAction
2001-06-20 03:29 opaque_ndst
* perl_ext/SWF.xs: moved SWFDisplayItem_addAction w/in the
SWFDisplayItem methods area
2001-06-20 03:15 opaque_ndst
* ming.h, src/displaylist.c, src/movie.c, src/movieclip.c,
src/movieclip.h: added Jonathan Shore's patches for adding sound
streams to movie clips. Sure, it might be defeating the purpose
since they're loaded in one frame, but someone might have a good
use for it..
2001-06-20 03:05 opaque_ndst
* src/blocks/output.c: added paranoid case to checkSize()-
reportedly fixes things, even though I think it shouldn't.. My
guess is it's an off-by-one error somewhere else that's
propagating.
2001-06-19 22:03 opaque_ndst
* src/blocks/font.c: added [required] extra offset entry
2001-06-19 21:34 opaque_ndst
* src/blocks/character.c: added SWF_DEFINEFONT2 to
SWFCharacter_isBlock so that font block isn't destroyed by
blocklist
2001-06-17 20:57 raff
* util/decompile.c: same problem in the old decompiler
2001-06-17 20:54 raff
* util/decompile5.c: one more call in call
2001-06-17 19:23 raff
* util/decompile5.c: applying my changes to the old decompile
module (no pop() inside function calls) to this new version, so I
can play with it on Mac OSX :)
2001-06-15 03:03 opaque_ndst
* util/action.h: added various missed opcodes
2001-06-15 03:02 opaque_ndst
* util/listswf.c: cosmetic changes
2001-06-15 03:02 opaque_ndst
* util/Makefile: [no log message]
2001-06-15 03:02 opaque_ndst
* util/read.c: fixed goofo with string space allocing, hexdumping
2001-06-15 02:57 opaque_ndst
* util/decompile5.c: added the swf5 decompiler
2001-06-15 02:55 opaque_ndst
* src/actioncompiler/: compile.c, compile.h, compileaction.c,
compiler.flex, compiler.y, listaction.c, main.c: added Wolfgang
Hamann's assorted patches: fixed error reporting, fixed constant
pool writing, numerous other small improvements
2001-06-15 02:54 opaque_ndst
* src/: movie.c, movie.h: Added Wolfgang Hamann's library symbol
patches
2001-06-15 02:53 opaque_ndst
* src/blocktypes.h: added symbol export type
2001-06-15 02:53 opaque_ndst
* ming.h: added SWFMovie_addExport
2001-06-15 02:52 opaque_ndst
* perl_ext/: Exports.c, Makefile.PL, SWF.xs: added Wolfgang
Hamann's changes- clip event handlers for the placeobject tag,
export symbols, the textfield html flag, and the
SWF::Ming::setScale function.
2001-06-15 01:38 opaque_ndst
* src/blocks/: outputblock.c, outputblock.h, swf.h: added Wolfgang
Hamann's exportlist patches
2001-06-15 01:38 opaque_ndst
* src/blocks/loadfont.c: made name record large enough to hold
trailing '\0'. oops.
2001-06-15 01:37 opaque_ndst
* src/blocks/: font.c, font.h: added Wolfgang Hamann's definefont2
patches allowing for wideoffset fonts
2001-06-15 01:36 opaque_ndst
* src/blocks/blocktypes.h: added export tag type
2001-06-15 01:36 opaque_ndst
* src/blocks/block.h: purely cosmetic
2001-06-15 01:35 opaque_ndst
* src/blocks/exports.h: a list of exported clip symbols
2001-06-14 20:38 opaque_ndst
* src/actioncompiler/compile.c: added sloppy endianness code
2001-06-14 20:36 opaque_ndst
* src/blocks/sprite.c: fixed segv in completion of empty sprites
2001-06-14 11:11 raff
* util/decompile.c: a bunch of fixes to make the ActionScript look
more like ActionScript :)
- calling multiple pop() as parameters to a function is very bad,
because the C standard doesn't guarantee that they'll be called
in the order you expect. Most of the compilers push parameters
left to right, but gcc on Mac OSX has to be special!
In most of the places the pop() calls were already outside the
function calls, but a few of them didn't make it.
- SETPROPERTY wasn't correctly expanding the property name, as
GETPROPERTY did
- fixed a few things with strings
- unknown opcodes stop the decompilation process, but ACTION_POP is
a known opcode (don't know when Flash generates it, but it
does!). Still there are some cases where the decompilare get
lost, mostly after a POP, but I am not sure of what to do!
2001-06-14 11:02 raff
* util/swftophp.c: the right type for DefineText2 is DEFINETEXT2
not 2
2001-05-22 07:24 opaque_ndst
* src/blocks/placeobject.c: Fixed memory leaks
2001-05-22 07:23 opaque_ndst
* src/actioncompiler/: compiler.flex, compiler.y: Added Wolfgang
Hamann's fixes, added a.i++ and a[i]++
2001-05-21 20:28 opaque_ndst
* php_ext/: ming.c, php_ming.h: added request initializer, moved
Ming_init() call into it
2001-05-21 12:25 jshore
* java_ext/native/: SWFAction.h, SWFBitmap.h, SWFButton.h,
SWFDisplayItem.h, SWFFill.h, SWFFont.h, SWFGradient.h, SWFMorph.h,
SWFMovie.h, SWFMovieClip.h, SWFNative.cc, SWFNative.h, SWFShape.h,
SWFSound.h, SWFText.h, SWFTextField.h, SWFUtilities.h: new
functionality
2001-05-21 12:24 jshore
* java_ext/Makefile: [no log message]
2001-05-21 12:23 jshore
* java_ext/: README, SWFAction.java, SWFActionI.java,
SWFBitmap.java, SWFBitmapI.java, SWFButton.java, SWFButtonI.java,
SWFColor.java, SWFDimensionableI.java, SWFDisplayItem.java,
SWFDisplayItemI.java, SWFException.java, SWFFill.java,
SWFFillI.java, SWFFont.java, SWFFontI.java, SWFGradient.java,
SWFGradientI.java, SWFMatrix.java, SWFMorph.java, SWFMorphI.java,
SWFMovie.java, SWFMovieClip.java, SWFMovieClipI.java,
SWFMovieI.java, SWFObject.java, SWFObjectI.java, SWFShape.java,
SWFShapeI.java, SWFSound.java, SWFSoundI.java, SWFText.java,
SWFTextField.java, SWFTextFieldI.java, SWFTextI.java: new
functionality & GC fixes
2001-05-12 04:07 raff
* src/actioncompiler/compiler.y: oops, resolveJumps seems to now be
called bufferResolveJumps!
(this is what happen when I make changes on one version, and check
in another ):
2001-05-12 01:24 raff
* src/actioncompiler/: compiler.y, oldcompiler.y: This fixes a
segment fault when compiling something like:
for (;;) {
...
}
In this case the conditional expression is NULL (since there isn't
one).
So, the code checks if the conditional expression is null and in
that case creates a new buffer and SKIP the code that generates the
conditional branch.
2001-05-11 03:41 opaque_ndst
* src/blocks/sprite.c: now adds trailing showFrame block to sprite
if it's not there
2001-05-09 20:21 opaque_ndst
* ming.h, mingpp.h: added SWFDisplayItem_addAction
2001-05-09 20:21 opaque_ndst
* CHANGES, CREDITS, TODO: [no log message]
2001-05-09 09:43 opaque_ndst
* php_ext/Makefile: added static linkage to libdd.a w/ php_ming.so
2001-05-09 09:42 opaque_ndst
* php_ext/: ming.c, php_ming.h: added SWFDisplayItem::addAction
2001-05-09 08:51 opaque_ndst
* src/text_util.c: fixed descent/leading scaling
2001-05-09 08:51 opaque_ndst
* src/shape_util.c: fixed line scaling
2001-05-09 08:20 opaque_ndst
* src/movieclip.h: added placeobject.h include
2001-05-09 08:19 opaque_ndst
* src/movie.c: changed default version to 5
2001-05-09 07:35 opaque_ndst
* src/: displaylist.c, displaylist.h: added new placeobject2
handling
2001-05-09 07:35 opaque_ndst
* src/Makefile: added actioncompiler/assembler.?
2001-05-09 06:09 opaque_ndst
* src/blocks/swf.h: added placeobject functions
2001-05-09 06:05 opaque_ndst
* src/blocks/: outputblock.c, outputblock.h: moved placeobject2
stuff to placeobject.[ch]
2001-05-09 06:04 opaque_ndst
* src/blocks/: output.c, output.h: added Jon Ribbens' patches, made
some other small fixes
2001-05-09 05:29 opaque_ndst
* src/blocks/: action.c, action.h: yanked unused deprecated action
stuff
2001-05-09 04:48 opaque_ndst
* src/blocks/Makefile: added placeobject stuff
2001-05-09 04:48 opaque_ndst
* src/blocks/: placeobject.c, placeobject.h: placeobject stuff now
a separate object
2001-05-09 03:47 opaque_ndst
* src/actioncompiler/: action.h, compile.c, compile.h,
compiler.flex, compiler.y, listaction.c, main.c: added new swf5
action compiler
2001-05-09 03:14 opaque_ndst
* src/actioncompiler/: assembler.c, assembler.h: assembler support
functions
2001-05-09 03:13 opaque_ndst
* src/actioncompiler/Makefile: added assembler
2001-05-09 03:13 opaque_ndst
* src/actioncompiler/: oldcompiler.flex, oldcompiler.y: these are
the old swf4 compiler bits..
2001-05-08 21:03 opaque_ndst
* src/actioncompiler/swf5compiler.y: moved this to compiler.y
2001-05-07 05:28 jshore
* java_ext/: SWFAction.java, SWFActionI.java, SWFBitmap.java,
SWFBitmapI.java, SWFButton.java, SWFButtonI.java,
SWFDisplayItem.java, SWFDisplayItemI.java, SWFException.java,
SWFFill.java, SWFFillI.java, SWFFont.java, SWFFontI.java,
SWFGradient.java, SWFGradientI.java, SWFMorph.java, SWFMorphI.java,
SWFMovie.java, SWFMovieClip.java, SWFMovieClipI.java,
SWFMovieI.java, SWFObject.java, SWFObjectI.java, SWFShape.java,
SWFShapeI.java, SWFSound.java, SWFSoundI.java, SWFText.java,
SWFTextField.java, SWFTextFieldI.java, SWFTextI.java,
native/SWFAction.h, native/SWFBitmap.h, native/SWFButton.h,
native/SWFDisplayItem.h, native/SWFFill.h, native/SWFFont.h,
native/SWFGradient.h, native/SWFMorph.h, native/SWFMovie.h,
native/SWFMovieClip.h, native/SWFNative.cc, native/SWFNative.h,
native/SWFShape.h, native/SWFSound.h, native/SWFText.h,
native/SWFTextField.h, native/SWFUtilities.h, Tests/Simple.java,
Tests/SlideShow.java: spelling error
2001-05-07 05:25 jshore
* java_ext/README: information
2001-05-07 04:49 jshore
* java_ext/Tests/: Simple.java, SlideShow.java: new java extension
2001-05-07 04:44 jshore
* java_ext/: SWFAction.java, SWFActionI.java, SWFBitmap.java,
SWFBitmapI.java, SWFButton.java, SWFButtonI.java,
SWFDisplayItem.java, SWFDisplayItemI.java, SWFException.java,
SWFFill.java, SWFFillI.java, SWFFont.java, SWFFontI.java,
SWFGradient.java, SWFGradientI.java, SWFMorph.java, SWFMorphI.java,
SWFMovie.java, SWFMovieClip.java, SWFMovieClipI.java,
SWFMovieI.java, SWFObject.java, SWFObjectI.java, SWFShape.java,
SWFShapeI.java, SWFSound.java, SWFSoundI.java, SWFText.java,
SWFTextField.java, SWFTextFieldI.java, SWFTextI.java,
native/Makefile, native/SWFAction.h, native/SWFBitmap.h,
native/SWFButton.h, native/SWFDisplayItem.h, native/SWFFill.h,
native/SWFFont.h, native/SWFGradient.h, native/SWFMorph.h,
native/SWFMovie.h, native/SWFMovieClip.h, native/SWFNative.cc,
native/SWFNative.h, native/SWFShape.h, native/SWFSound.h,
native/SWFText.h, native/SWFTextField.h, native/SWFUtilities.h: new
java extension
2001-05-07 04:42 jshore
* java_ext/Makefile: [no log message]
2001-05-06 00:51 opaque_ndst
* src/blocks/output.c: added John Ribbens' fixes
2001-04-20 03:35 opaque_ndst
* mingpp.h: fixed confusion about input, added SWFSound constructor
from SWFInput
2001-04-14 04:50 opaque_ndst
* src/shape_util.c: got rid of deprecated lineToRelative crap in
drawCharacterBounds
2001-04-14 04:49 opaque_ndst
* src/movie.c: fixed scaling in automagic bitmap shapifying
2001-04-14 04:48 opaque_ndst
* php_ext/ming.c: fixed stuff. made it work. yep.
2001-04-14 04:48 opaque_ndst
* CHANGES: [no log message]
2001-04-13 02:51 opaque_ndst
* src/blocks/input.c: fixed typo
2001-04-13 02:50 opaque_ndst
* ming.h, mingpp.h, php_ext/ming.c, src/blocks/input.c,
src/blocks/input.h, src/blocks/swf.h: added hacky
SWFInput_allocedBuffer nonsense
2001-04-13 02:49 opaque_ndst
* CHANGES: [no log message]
2001-04-13 02:29 opaque_ndst
* src/blocks/input.c: buffer input now frees buffer. I don't like
it, but I can't see any way around it..
2001-04-13 02:28 opaque_ndst
* src/blocks/dbl.c: fixed stupid typo
2001-04-13 02:12 opaque_ndst
* src/blocks/jpeg.h: moved typedef above includes
2001-04-13 02:12 opaque_ndst
* src/blocks/swf.h: added newSWFBitmap_fromInput
2001-04-13 02:11 opaque_ndst
* src/blocks/input.c: forgot to inc offset on buffer's getChar.
oops.
2001-04-13 02:11 opaque_ndst
* src/blocks/error.h: added a little note..
2001-04-13 02:10 opaque_ndst
* src/blocks/: dbl.c, dbl.h: added SWFInput interfaces
2001-04-13 02:09 opaque_ndst
* src/blocks/: bitmap.c, bitmap.h: added newSWFBitmap_fromInput
2001-04-13 02:08 opaque_ndst
* src/: ming.h, shape_util.h: moved setScale/Threshold over to
ming.h, added seterror/warn to ming.h
2001-04-13 02:07 opaque_ndst
* src/ming.c: added seterror/warn functions
2001-04-13 02:06 opaque_ndst
* php_ext/: Makefile, ming.c, php_ming.h: added new SWFInput stuff
2001-04-13 02:05 opaque_ndst
* ming.h, mingpp.h: fixed version number, added seterror/warn
functions, SWFBitmap_fromInput
2001-04-12 11:45 opaque_ndst
* CREDITS, Makefile, ming.i: [no log message]
2001-04-12 11:43 opaque_ndst
* c++_ext/: README, test.cpp: updated to match new code
2001-04-12 11:42 opaque_ndst
* py_ext/: Makefile, ming.py: updated for new stuff
2001-04-12 11:41 opaque_ndst
* CHANGES, TODO: [no log message]
2001-04-12 11:40 opaque_ndst
* src/test.c: random changes. like it matters, anyway. whatever.
2001-04-12 11:40 opaque_ndst
* src/: movieclip.c, movieclip.h: changed 2000 to 2001
2001-04-12 11:39 opaque_ndst
* src/ming.h: added global extern crap
2001-04-12 11:38 opaque_ndst
* src/libming.h: ifdef wrapper for unistd.h
2001-04-12 11:37 opaque_ndst
* src/movie.c: added SWFMovie_add(SWFBitmap) automagic shape
wrapping convenience code
2001-04-12 11:36 opaque_ndst
* src/Makefile: added fill.o
2001-04-12 11:35 opaque_ndst
* src/: blocklist.c, blocklist.h, displaylist.c, displaylist.h,
movie.h, position.c, position.h, text_util.c, text_util.h: changed
2000 to 2001
2001-04-12 11:34 opaque_ndst
* src/: shape_util.c, shape_util.h: removed annoying inline
functions, added
2001-04-12 11:33 opaque_ndst
* src/: fill.c, fill.h: removed the annoying inline functions
2001-04-12 11:32 opaque_ndst
* src/actioncompiler/: compile.c, compile.h, compileaction.c,
main.c: small tweaks to make things compile easier under windows
2001-04-12 11:31 opaque_ndst
* src/actioncompiler/swf5compiler.y: first steps toward a flash 5
compiler.. still not really working
2001-04-12 11:29 opaque_ndst
* src/blocks/: Makefile, action.c, action.h, bitmap.c, bitmap.h,
block.c, block.h, blocktypes.h, browserfont.c, browserfont.h,
button.c, button.h, character.c, character.h, cxform.c, cxform.h,
fillstyle.c, fillstyle.h, font.c, font.h, fontinfo.c, fontinfo.h,
gradient.c, gradient.h, libswf.h, linestyle.c, linestyle.h,
loadfont.c, matrix.c, matrix.h, method.c, method.h, morph.c,
morph.h, output.c, output.h, outputblock.c, outputblock.h, rect.c,
rect.h, shape.c, shape.h, sound.c, sound.h, sprite.c, sprite.h,
swf.h, text.c, text.h, textfield.c, textfield.h, ttffont.c,
ttffont.h: changed 2000 to 2001
2001-04-12 11:29 opaque_ndst
* src/blocks/: dbl.c, dbl.h, jpeg.c, jpeg.h, mp3.c, soundstream.c,
soundstream.h: updated to use SWFInput object
2001-04-12 11:28 opaque_ndst
* src/blocks/: error.c, error.h: new flexible error methods
2001-04-12 11:28 opaque_ndst
* src/blocks/: input.c, input.h: new datasource abstraction thingy
2001-04-12 11:24 opaque_ndst
* perl_ext/: Changes, Exports.c, MANIFEST, Makefile.PL, README,
SWF.pm, SWF.xs, TODO, perl_swf.h, typemap: first include
2001-04-12 11:21 opaque_ndst
* ming.h, mingpp.h: hey, here's the new header files..
2001-04-12 11:20 opaque_ndst
* c++_ext/ming.h: moved to ../mingpp.h
2001-04-12 11:19 opaque_ndst
* util/png2dbl.c: added byteorder fix
2001-03-22 20:38 opaque_ndst
* src/blocks/text.c: now carries height from one record to the next
when you addString, setColor, etc.
2001-03-17 05:20 opaque_ndst
* php_ext/Makefile: replaced include nonsense with `php-config
--includes`
2001-03-17 05:15 opaque_ndst
* py_ext/Makefile: changed to static linkage with libming
2001-03-17 05:15 opaque_ndst
* CHANGES, README, TODO: [no log message]
2001-03-17 05:14 opaque_ndst
* src/ming.h: fixed version number
2001-03-17 03:41 opaque_ndst
* Makefile: fixed ln so ming.h gets installed
2001-03-17 00:42 opaque_ndst
* perl_ext/: Makefile, ming_wrap.c, ming_wrap.doc, mingc.pm,
sample.pl: replaced with soheil's XS module
2001-03-13 10:01 opaque_ndst
* src/blocks/text.c: removed superfluous textrecord 0/1 type
jostling as per Raff's investigative elucidations.
2001-03-13 09:51 opaque_ndst
* src/actioncompiler/: compiler.flex, compiler.y: added Raff's
getURL1 function
2001-03-13 09:43 opaque_ndst
* src/shape_util.h: yanked SWFShape_drawGlyph
2001-03-13 08:00 opaque_ndst
* ming.h: changed SWFFont_getStringWidth return to float
2001-03-13 03:19 opaque_ndst
* ming.h, ming.i, src/blocks/font.c, src/blocks/font.h,
src/blocks/shape.c, src/blocks/shape.h, src/blocks/swf.h: changed
drawGlyph arg to unsigned char so 8-bit character codes work
2001-03-12 23:24 opaque_ndst
* src/blocks/textfield.h: fixed offbits to allow for
SWFTEXTFIELD_HTML
2001-03-12 22:02 opaque_ndst
* util/: listmp3.c, listswf.c: added frameLen tweak
2001-03-12 22:01 opaque_ndst
* util/read.c: removed damn assert(0) to quell dumping
2001-03-12 22:00 opaque_ndst
* py_ext/ming.py: added Ming_setScale, Ming_setCubicThreshold, and
flags arg to SWFTextField()
2001-03-12 21:58 opaque_ndst
* php_ext/: ming.c, php_ming.h: added Ming_setScale, changed scalar
args to floats
2001-03-12 21:57 opaque_ndst
* ming.h, ming.i: changed scalar args to floats, cleaned out some
non-public functions
2001-03-12 21:55 opaque_ndst
* TODO: [no log message]
2001-03-12 21:55 opaque_ndst
* src/: blocklist.c, movie.c, movie.h: changed malloc/memset to
calloc, changed scalar args to floats and added scaling code
2001-03-12 21:54 opaque_ndst
* src/ming.c: added Ming_setScale, moved Ming_setCubicThreshold
here
2001-03-12 21:53 opaque_ndst
* src/: fill.h, position.c, position.h: changed scalar args to
floats, adding scaling code
2001-03-12 21:50 opaque_ndst
* src/: displaylist.c, displaylist.h: include [empty] matrix for
items left at (0,0)- some things don't seem to show up otherwise
2001-03-12 21:49 opaque_ndst
* src/: shape_util.c, shape_util.h: wrapped all metric-related
functions with scaled versions
2001-03-12 21:48 opaque_ndst
* src/Makefile: added text_util
2001-03-12 21:47 opaque_ndst
* src/blocks/: block.c, browserfont.c, button.c, character.c,
cxform.c, dbl.c, fontinfo.c, gradient.c, jpeg.c, loadfont.c,
matrix.c, morph.c, output.c, outputblock.c, rect.c, sound.c,
sprite.c: changed malloc/memset to calloc, assigning NULL to
pointers manually now for portability's sake
2001-03-12 21:46 opaque_ndst
* src/blocks/: mp3.c, soundstream.c: tweaked mp3 frame size
calculation, seems to be more compatible
2001-03-12 21:45 opaque_ndst
* src/blocks/: read.c, shape.c, shape.h: added "scaled" to
metric-related function names, moved cubic bezier and glyph drawing
code down here
2001-03-12 21:44 opaque_ndst
* src/blocks/: font.c, font.h, swf.h, text.c, text.h, textfield.c,
textfield.h: added "scaled" to all metric-related function names
2001-03-12 21:41 opaque_ndst
* src/read.c: moved down to blocks along with drawGlyph
2001-03-12 21:41 opaque_ndst
* src/: text_util.c, text_util.h: scales text/font/textfield
metrics by Ming_scale
2001-03-07 05:14 opaque_ndst
* php_ext/ming.c: fixed stupid setLineSpacing/setIndentation
mistake and goof in streamMp3(FILE *)
2001-03-05 02:36 opaque_ndst
* src/blocks/output.c: writeString now stops on null, not on < 0,
so we can output 8-bit chars. oops.
2001-03-05 02:35 opaque_ndst
* py_ext/ming.py: saved a reference to font in
SWFTextField::setFont so that it doesn't get freed if you do
t.setFont(SWFFont("boink"))
2001-02-27 07:16 opaque_ndst
* src/blocks/shape.c: added check for adding empty line/curve
2001-02-26 22:24 opaque_ndst
* py_ext/Makefile: added ming.pyc to make clean
2001-02-22 07:10 raff
* util/: makefdb.c, read.c, read.h: Ming currently doesn't support
wide-character fonts, but maybe we don't want to abort the program
run, since there may be other fonts we want to extract.
The "fix" is quite an hack: let the program do whatever it normally
does, but at the end remove the file, to avoid that using it may
crash the library.
2001-02-21 23:47 opaque_ndst
* TODO: added automatic bitmap-to-shape
2001-02-21 23:46 opaque_ndst
* py_ext/Makefile: added dependency on ../libming.a for
mingcmodule.so
2001-02-21 23:46 opaque_ndst
* py_ext/.cvsignore: added ming.pyc
2001-02-21 23:45 opaque_ndst
* src/blocks/text.c: check for string == NULL before strlen
2001-02-21 23:27 opaque_ndst
* src/blocks/dbl.c: Now grabs width and height from dbl file!
2001-02-17 04:27 opaque_ndst
* py_ext/.cvsignore: added ming_wrap.c and ming_wrap.doc
2001-02-17 04:25 opaque_ndst
* py_ext/: ming_wrap.c, ming_wrap.doc: removed swig-generated files
2001-02-17 04:24 opaque_ndst
* util/swftophp.c: added indent arg to decompileAction calls
2001-02-17 04:23 opaque_ndst
* src/actioncompiler/.cvsignore: added test
2001-02-17 04:19 opaque_ndst
* ming.h, ming.i, src/movie.h: added -1 return from SWFMovie_save
if named file doesn't exist
2001-02-17 04:18 opaque_ndst
* ming_wrap.c: removed generated file
2001-02-17 04:17 opaque_ndst
* .cvsignore: added ming_wrap.c generated file
2001-02-17 04:17 opaque_ndst
* .cvsignore, c++_ext/.cvsignore, perl_ext/.cvsignore,
php_ext/.cvsignore, py_ext/.cvsignore, rb_ext/.cvsignore,
src/.cvsignore, src/actioncompiler/.cvsignore,
src/blocks/.cvsignore: Dave learns what .cvsignore files are for
2001-02-17 04:11 opaque_ndst
* util/.cvsignore: Dave discovers what .cvsignore files are for..
2001-02-16 23:23 opaque_ndst
* php_ext/Makefile: Fixed botched CFILES define. oops.
2001-02-15 22:03 opaque_ndst
* src/actioncompiler/.cvsignore: added generated files lex.yy.c
compiler.tab.c compiler.tab.h
2001-02-15 22:01 opaque_ndst
* src/actioncompiler/: compiler.tab.c, compiler.tab.h, lex.yy.c:
removed bison/flex-generated files
2001-02-15 21:58 opaque_ndst
* src/: movie.c, movie.h: added SWFMovie_addBlock at Adam
Cohen-Rose's suggestion. This helps reduce movie's dependency on
blockList.
2001-02-13 00:15 opaque_ndst
* php_ext/ming.dsp: MS dev studio project file. From php's
ext/ming
2001-02-08 22:41 opaque_ndst
* php_ext/config.m4: Changed withval to PHP_MING as to not hose the
php build
2001-02-08 22:40 opaque_ndst
* Makefile: Changed to "install" method for RPM sake
2001-02-01 02:00 opaque_ndst
* CHANGES, CREDITS, LICENSE, Makefile, README, TODO, ming.h,
ming.i, ming_wrap.c, php_ext/Makefile.in, php_ext/config.m4,
php_ext/Makefile, php_ext/README, php_ext/make_module.sh,
php_ext/ming.c, php_ext/php_ming.h, py_ext/INSTALL,
py_ext/Makefile, py_ext/README, py_ext/TODO, py_ext/ming.py,
py_ext/ming_wrap.c, py_ext/ming_wrap.doc, py_ext/mingc.def,
py_ext/shape.py, py_ext/test.py, src/Makefile, src/blocklist.c,
src/blocklist.h, src/blocktypes.h, src/displaylist.c,
src/displaylist.h, src/libming.h, src/ming.h, src/movie.c,
src/movie.h, src/movieclip.c, src/movieclip.h, src/fill.h,
src/ming.c, src/position.c, src/position.h, src/read.c,
src/shape_util.c, src/shape_util.h, src/test.c,
src/actioncompiler/Makefile, src/actioncompiler/action.h,
src/actioncompiler/compile.c, src/actioncompiler/compile.h,
src/actioncompiler/compileaction.c,
src/actioncompiler/compiler.flex, src/actioncompiler/compiler.y,
src/actioncompiler/listaction.c, src/actioncompiler/main.c,
src/actioncompiler/compiler.tab.c,
src/actioncompiler/compiler.tab.h, src/actioncompiler/lex.yy.c,
src/blocks/Makefile, src/blocks/action.c, src/blocks/action.h,
src/blocks/bitmap.h, src/blocks/block.c, src/blocks/block.h,
src/blocks/blocktypes.h, src/blocks/browserfont.c,
src/blocks/browserfont.h, src/blocks/button.c, src/blocks/button.h,
src/blocks/character.c, src/blocks/character.h,
src/blocks/cxform.c, src/blocks/cxform.h, src/blocks/font.c,
src/blocks/font.h, src/blocks/fontinfo.c, src/blocks/fontinfo.h,
src/blocks/linestyle.c, src/blocks/jpeg.c, src/blocks/jpeg.h,
src/blocks/libswf.h, src/blocks/loadfont.c, src/blocks/matrix.c,
src/blocks/matrix.h, src/blocks/method.c, src/blocks/method.h,
src/blocks/mp3.c, src/blocks/output.c, src/blocks/output.h,
src/blocks/outputblock.c, src/blocks/outputblock.h,
src/blocks/rect.c, src/blocks/rect.h, src/blocks/shape.c,
src/blocks/shape.h, src/blocks/sound.c, src/blocks/sound.h,
src/blocks/soundstream.c, src/blocks/soundstream.h,
src/blocks/sprite.c, src/blocks/sprite.h, src/blocks/swf.h,
src/blocks/text.c, src/blocks/bitmap.c, src/blocks/dbl.c,
src/blocks/dbl.h, src/blocks/gradient.c, src/blocks/gradient.h,
src/blocks/text.h, src/blocks/textfield.c, src/blocks/textfield.h,
src/blocks/ttffont.c, src/blocks/ttffont.h, src/blocks/fillstyle.c,
src/blocks/fillstyle.h, src/blocks/linestyle.h, src/blocks/morph.c,
src/blocks/morph.h, util/Makefile, util/README, util/TODO,
util/action.h, util/bindump.c, util/blocktypes.c,
util/blocktypes.h, util/decompile.c, util/decompile.h,
util/gif2mask.c, util/hexdump.c, util/libswf.h, util/listfdb.c,
util/listjpeg.c, util/listmp3.c, util/listswf.c, util/makefdb.c,
util/output.h, util/read.c, util/read.h, util/swftophp.c,
util/swftophp.h, perl_ext/Makefile, perl_ext/sample.pl,
util/gif2dbl.c, util/png2dbl.c, c++_ext/Makefile, c++_ext/test.cpp,
perl_ext/README, perl_ext/ming_wrap.c, perl_ext/ming_wrap.doc,
perl_ext/mingc.pm, rb_ext/README, rb_ext/depend, rb_ext/extconf.rb,
rb_ext/ming.rb, rb_ext/shape.rb, rb_ext/test.rb, c++_ext/README,
c++_ext/ming.h: Initial revision
2001-02-01 02:00 opaque_ndst
* CHANGES, CREDITS, LICENSE, Makefile, README, TODO, ming.h,
ming.i, ming_wrap.c, php_ext/Makefile.in, php_ext/config.m4,
php_ext/Makefile, php_ext/README, php_ext/make_module.sh,
php_ext/ming.c, php_ext/php_ming.h, py_ext/INSTALL,
py_ext/Makefile, py_ext/README, py_ext/TODO, py_ext/ming.py,
py_ext/ming_wrap.c, py_ext/ming_wrap.doc, py_ext/mingc.def,
py_ext/shape.py, py_ext/test.py, src/Makefile, src/blocklist.c,
src/blocklist.h, src/blocktypes.h, src/displaylist.c,
src/displaylist.h, src/libming.h, src/ming.h, src/movie.c,
src/movie.h, src/movieclip.c, src/movieclip.h, src/fill.h,
src/ming.c, src/position.c, src/position.h, src/read.c,
src/shape_util.c, src/shape_util.h, src/test.c,
src/actioncompiler/Makefile, src/actioncompiler/action.h,
src/actioncompiler/compile.c, src/actioncompiler/compile.h,
src/actioncompiler/compileaction.c,
src/actioncompiler/compiler.flex, src/actioncompiler/compiler.y,
src/actioncompiler/listaction.c, src/actioncompiler/main.c,
src/actioncompiler/compiler.tab.c,
src/actioncompiler/compiler.tab.h, src/actioncompiler/lex.yy.c,
src/blocks/Makefile, src/blocks/action.c, src/blocks/action.h,
src/blocks/bitmap.h, src/blocks/block.c, src/blocks/block.h,
src/blocks/blocktypes.h, src/blocks/browserfont.c,
src/blocks/browserfont.h, src/blocks/button.c, src/blocks/button.h,
src/blocks/character.c, src/blocks/character.h,
src/blocks/cxform.c, src/blocks/cxform.h, src/blocks/font.c,
src/blocks/font.h, src/blocks/fontinfo.c, src/blocks/fontinfo.h,
src/blocks/linestyle.c, src/blocks/jpeg.c, src/blocks/jpeg.h,
src/blocks/libswf.h, src/blocks/loadfont.c, src/blocks/matrix.c,
src/blocks/matrix.h, src/blocks/method.c, src/blocks/method.h,
src/blocks/mp3.c, src/blocks/output.c, src/blocks/output.h,
src/blocks/outputblock.c, src/blocks/outputblock.h,
src/blocks/rect.c, src/blocks/rect.h, src/blocks/shape.c,
src/blocks/shape.h, src/blocks/sound.c, src/blocks/sound.h,
src/blocks/soundstream.c, src/blocks/soundstream.h,
src/blocks/sprite.c, src/blocks/sprite.h, src/blocks/swf.h,
src/blocks/text.c, src/blocks/bitmap.c, src/blocks/dbl.c,
src/blocks/dbl.h, src/blocks/gradient.c, src/blocks/gradient.h,
src/blocks/text.h, src/blocks/textfield.c, src/blocks/textfield.h,
src/blocks/ttffont.c, src/blocks/ttffont.h, src/blocks/fillstyle.c,
src/blocks/fillstyle.h, src/blocks/linestyle.h, src/blocks/morph.c,
src/blocks/morph.h, util/Makefile, util/README, util/TODO,
util/action.h, util/bindump.c, util/blocktypes.c,
util/blocktypes.h, util/decompile.c, util/decompile.h,
util/gif2mask.c, util/hexdump.c, util/libswf.h, util/listfdb.c,
util/listjpeg.c, util/listmp3.c, util/listswf.c, util/makefdb.c,
util/output.h, util/read.c, util/read.h, util/swftophp.c,
util/swftophp.h, perl_ext/Makefile, perl_ext/sample.pl,
util/gif2dbl.c, util/png2dbl.c, c++_ext/Makefile, c++_ext/test.cpp,
perl_ext/README, perl_ext/ming_wrap.c, perl_ext/ming_wrap.doc,
perl_ext/mingc.pm, rb_ext/README, rb_ext/depend, rb_ext/extconf.rb,
rb_ext/ming.rb, rb_ext/shape.rb, rb_ext/test.rb, c++_ext/README,
c++_ext/ming.h: initial import
|