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
|
CHANGELOG
----------------------
[2013-04-01: Sasha Vasko]
* updated configure script to remove old privacy notice and add install
instructions.
[2013-03-14: Sasha Vasko]
* Fixed compile - instead of linking to glib we now link to gio - was causing
compile problems without svg support
[2013-03-04: Sasha Vasko]
* Adjusted icon finding algorithm to not try .Z .gz extension when png, tiff
or jpeg is present Removed $PATH from image search paths since it was
causing executables to be probed. Added check for image already loaded
Disabled icon theming whenever filename contains directory names Disabled
search whenever image filename is a full path.
[2013-02-25: Sasha Vasko]
* applied patch 00 from .deb partially - all except deb-specific stuff
[2013-01-30: Sasha Vasko]
* Fixed move/resize code to properly account for virtual coordinates and
changes in viewport. Minor tweaks to Makefiles for shorter output
[2013-01-04: Sasha Vasko]
* Attention: This is commit has bugs! There is a Segfault in Menu
functionality
[2012-12-26: Sasha Vasko]
* Fixed compile warnings in libAfterBaseand libAfterImage
* Added Icon theme support, ASMount config file handling, GLIB detection minor
cleanups and bugfixes.
[2012-12-24: Sasha Vasko]
* Updated build files for new version of AS and to include ASMount
[2012-11-14: sasha]
* Added patch to compile with libexecinfo. Contributed by Naohiro (gentoo)
[2012-10-17: sasha]
* updated to fix compilation problems related to newer autoconf, plus session
.desktop file
[2012-07-12: sasha]
* fixed compilation of ASRun when gtk is unavailable
[2011-12-06: speedy]
* updated thumbnail cache to actually work without debian submenu
[2011-12-05: speedy]
* added debian patches 20, 31, 35; gentoo patches ldflags and libpng15
[2011-12-01: speedy]
* added debian typo fixes from patches 22, 24, 28, 29, 37
[2011-06-29: sasha]
* no message
[2011-01-28: sasha]
* Added check if the header was already included
* Moved BMP related code to bmp.c as windows headers conflict with libjpeg
[2011-01-14: sasha]
* Updated the ChangeLog for release
[2011-01-13: sasha]
* Changed version to 2.2.11 and fixed build to compile ASWallpaper
[2010-09-23: sasha]
* fixed memory leak in xcf file loading
* fixed memory leak in tga image loading
* fixed minor memory leak in gif saving code.
* fixed memory leak in xml processing on image loading
* fixed major memory leak at vectorize_asimage
* Fixed BMP writing to not set compression to 1 - we don't use any
[2010-09-15: sasha]
* fixed possible dereferencing of NULL pointer in asimage_destroy (minor)
[2010-09-08: sasha]
* trimmed some dead code
* fixed visual2visual_prop bug in *size usage
* fixed param hidden warnings
* corrected usage of get_xpm_string() to use proper enum value
[2010-09-03: sasha]
* Fixed possible memory leak in xpm code when image is too big
* fixed unlikely but possible (if height>width) buffer overrun bug in gradient
generation code
* Fixed unlikely but possible use of uninitialized variable in
ASImage2xpmRawBuff
* Fixed unlikely but possible use of uninitialized variable in
ASImage2xpmRawBuff
[2010-05-20: sasha]
* updated to libjpeg v.8b
[2010-01-29: sasha]
* added transupp to libjpeg just in case
* upgraded built-in libjpeg to version 8
[2009-12-11: sasha]
* fixed segfault in on look change where previous look has obsolete font
settings
[2009-11-12: sasha]
* fixed export.c to properly assign default export values using union members
- contributed by Axel Naumann
[2009-10-14: sasha]
* fixed annoying ICC warnings in mystrdup use without libAfterBase
[2009-10-13: sasha]
* minor fix in afterbase.c to correct ambiguity in evaluation order
[2009-08-25: sasha]
* fixed ascompose to build without X libs
* fixed ascompose to build without X libs
[2009-05-04: sasha]
* updated ChangeLog for the release
* AfterStep release v 2.2.9
[2009-03-18: sasha]
* added ifdef to avoid double fclose under MSVC2005 and newer
* added ifdef to avoid double fclose under MSVC2005 and newer
* added ifdef to avoid double fclose under MSVC2005 and newer
[2009-02-11: sasha]
* Got rid of dpy global variable in libAfterBase and libAfterIMage for good.
Moved it into libAfterStep instead, as it incorporates screen handling
functionality.
[2009-01-30: sasha]
* fixed warning in jpeg2ASImage
[2009-01-16: sasha]
* fix to fill_hline_colored to work on scratch canvas + some debugging of
reported fill bugs on 64bit systems
[2009-01-13: sasha]
* fixed aliasing for drawing with brush wider then 1x1; Fixed areas of low
intensity inside solid lines
* fixed clipping in straight ellips drawing where y+ry > height
* added missing declaration of Bool asim_set_custom_brush_colored()
[2009-01-12: sasha]
* somewhat fixed drawing with ARGB brush over ARGB canvas; Still unclear what
would happen if those are different ;
[2008-12-17: sasha]
* fixed memory leak in ASImage2gif file needed to be closed even after Egif
closes it too
* fixed Makefile to work on FBSD/Gentoo
[2008-11-12: sasha]
* fixed references to the global variable dpy in GLX code
[2008-09-30: sasha]
[2008-08-15: sasha]
* added utility to check if glyphs are available in the font for a certain
char or a list of chars
[2008-06-24: sasha]
* Fixed root pixmap setting - to handle XKillClient failures and not free
pixmap after it was put on the root
[2008-06-23: sasha]
[2008-06-18: sasha]
* Updated ChangeLog for libAfterImage 1.18 release
* libAfterImage 1.18 release
[2008-06-13: sasha]
* implemented EdgeResistanceToDragging setting
[2008-06-10: sasha]
* compile bugs without X fixed
* compile bugs without X fixed
[2008-06-02: sasha]
* added missing scanline.h
[2008-05-30: sasha]
* additional logic to avoid red/blue artifacts
[2008-05-29: sasha]
* implemented some 12-bps raw image processing- demosaicing
[2008-05-02: sasha]
[2008-04-23: sasha]
* Fixed build on non-gcc compilers
[2008-04-17: sasha]
* preliminary support for loading RAW camera photos stored as tiff images with
CFA data - still need to implement interpolation, white balance, and
leveling
* preliminary support for loading RAW camera photos stored as tiff images with
CFA data - still need to implement interpolation, white balance, and
leveling
* compile warning on signed/unsigfned comparison
[2008-04-10: sasha]
* fixed alpha overflow in color2alpha
[2008-04-07: sasha]
* implemented color2alpha method from GIMP without color correction that was
damaging the image. Complete with color2alpha xml tag
[2008-04-03: sasha]
* implemented pixelization filter
[2008-03-24: sasha]
* fixed bunch of compilation bugs showing up on old systems
[2008-03-17: sasha]
* hopefully fixed syslimit.h warnings on FBSD
[2008-03-07: sasha]
[2008-03-06: sasha]
* fixed problem with docs having spaces in filenames
[2008-03-05: sasha]
* disabled build for Sound2 for now
[2008-03-04: sasha]
* fixed segfault in xcf code where layer is larger then image
* updated NEW and ChangeLogs for release 2.2.8
* AfterStep release v. 2.2.8
[2008-02-29: sasha]
* some more brainstorming as related to aftershow design
[2008-02-26: sasha]
* updated afterbase.c to include new stuff from libAfterBase for xml
[2008-02-22: sasha]
[2008-02-19: sasha]
* xml manipulation code added
[2008-02-17: sasha]
[2008-02-16: sasha]
* started implementing aftershow client to be used by shell scripts to
redirect stdio to aftershow
* fixed asfont get_glyph_map to not confuse compilers into thinking that there
might be uninitialized stuff
[2008-02-15: sasha]
* added code to handle client connections and input to aftershow
* updated libAfterImage.mak
[2008-02-14: sasha]
* added socket setup code - need to move socket.c in here in case afterbase is
unavailable
* more X initialization code for aftershow
[2008-02-13: sasha]
[2008-02-08: sasha]
* started implementing aftershow daemon
* started work on aftershow daemon
* started work on aftershow daemon
* fixed memory leak in ascompose processing in interactive mode
* compile warning on solaris in pixmap.c
[2008-02-07: sasha]
* fixed compile warning with gcc 4.3
[2008-02-06: sasha]
* fixed compile warnings in asfont.c in win32
* removed old png files from project
* fixed png.h to properly include zlib.h on windows and undeffed stdint.h on
win32
[2008-02-01: sasha]
* fixed makefile to not reference obsolete libong files
[2008-01-25: sasha]
* added functionality to ascompose to allow for constantly updating display of
stuff; command line should be: script.sh | ascompose -I --endless
--click-timeout 0 -q -f -;
[2008-01-18: sasha]
* implemented full color drawing in draw.c using prototypes from ROOT by
Valeri Onuchin. Needs testing and and changes to aply_context()
* changed draw.c to use 32bit values in canvas, possibly to enable rendering
in all 4 channels in future - need more work
[2008-01-17: sasha]
* fixed handling of grayscale PNG images with bit depth < 8
[2008-01-16: sasha]
* partially fixed segfault on loading grayscale PNG images
* fixed segfault on loading grayscale PNG images
* enabled debugging for bigendian tests
[2008-01-15: sasha]
* moved HAVE_XPM to after config.h in libAI xpm.c; updated main configure
* exclude xpm.c from built when no xpm is requested; no longer support
standard libgif and libxpm
[2008-01-09: sasha]
* implemented functionality to setup slicing of frame sides and titlebar
elements
* added code to kill Esetroot client if desktop background was set by it
[2008-01-08: sasha]
* added functionality to ascompose to set XROOTPMAP property while changing
root background
[2008-01-04: sasha]
* removed erroneous configure.h include in ascompose
[2008-01-03: born2late]
* added utf8 support according to sasha s instructions - seems to work
[2007-12-27: sasha]
* removed config.h from installation script
* added new convinience function to convert Lead Tools like DIBs into ASImage
in one call; Fixed typo in ASImage2DIB.
* Fixed major bug that maybe causing memory corruption on any system where
malloc does not return pointer aligned on 8-byte boundary
* sanity fix to configure
[2007-12-26: sasha]
* fixed logic to not enlarge icons in menus if target size is too big
[2007-12-19: sasha]
* giving up on trying to figure out why asvector does not work on Power PC
[2007-12-18: sasha]
* yet another try in resolving endiannes of the XImage encoding
[2007-12-17: sasha]
* rewrote scanline2ximage32 to properly account for offset and hopefully fix
byteordering issue
[2007-12-14: sasha]
* hopefully fixed incorrect byte order while converting XImage on 32 bit
visuals back to ASImage on big endian machines
* minor cleanups in configure script to use lowercase NO
[2007-12-05: sasha]
* updated built-in libpng to 1.2.23
[2007-11-30: sasha]
* updated xwrap.h to be the same as in libAfterBase and fixed compilation
under newer MSVC
[2007-11-26: sasha]
* Fixed memory leak in DGifCloseFile where pointer to GifFile gets overwritten
with NULL leaving dungling memory
[2007-11-20: sasha]
* fixed memory leak in gif import code
[2007-11-16: sasha]
* fixed missing initialization of ASColormap structure in colormap_asimage
* disabled performance output in transform.c
[2007-10-25: sasha]
* added ability to load ASXML images for set size - should use .width and
.height vars inside the image to calculate different sizes
[2007-10-16: sasha]
* Implemented proper transfer of ASImage to OpenGL drawables using textures
and pixel ops
[2007-09-21: sasha]
* altered configure to make building of apps optional - if the dir is present
[2007-09-18: sasha]
* removed __FUNCTION__ to fix compile on Solaris
[2007-09-17: sasha]
* fixed compile errors under MSVC
* fixed compile errors under MSVC
* fixed compile errors under MSVC
* fixed compile errors under MSVC
* fixed compile errors in asstorage.c under MSVC
[2007-09-15: sasha]
* fixed compile warnings on solaris in asvisual.c reported by ROOT project
* fixed compile problem under VisualStudio .Net 2005, as reported by Valeri
Onuchin
* added functions for reading raw XPM and PNG buffers, contributed by Valeri
Onuchin of ROOT project
* added ASImage2xpmRawBuff() contributed by Valeriy Onuchin of ROOT project
[2007-09-14: sasha]
* fixed compile bug when building with shmimage and without libAfterBase
[2007-09-12: born2late]
* minor typos corrected
[2007-09-05: sasha]
* fixed one off error in blurring code potentialy causing a segfault
[2007-08-23: sasha]
* updated ChangeLog for release
[2007-08-22: sasha]
* compile problem on solaris fixed; Feeble attempts at increasing performance
without any results
* compile fixes and minor optimization of the blurring code
[2007-08-20: sasha]
* AfterStep 2.2.7 release
[2007-08-02: sasha]
* fixed printing of CARD32 values on 64 bit CPUs as lX
* Fixed install targets in Makefiles to create dirs
* Fixed install targets in Makefiles to create dirs
[2007-08-01: sasha]
* Fixed install targets in Makefiles to create dirs
* fixed configure and deps checking in apps
* updated ChangeLog for libAfterImage release
* Updated embedded libPNG and Zlib to latest versions; Fixed bugs in find_file
when compiled without libAfterBase.
* libAfterImage v. 1.15 release
[2007-07-31: sasha]
* added some docs to libAfterImage
* Completed refactoring gaussian blur code. It now works both in vertical and
horizontal direction. Maximum blur radius is 128, and its bloody fast too
* optimizations to gaussian blur and fixed mystrdup(NULL) in libAI standalone
* fixed gaussian blur at the begining and the end; added lookup tables for
standard deviation and multiplier, prototyped vertical pass
[2007-07-30: sasha]
* implemented integer math version of gaussian blur algorithm
* fixed blur function to not limit radius to 10 and properly calculate
gaussian distribution
[2007-07-28: sasha]
* switched timing printing off
[2007-07-27: sasha]
* some additions to asstorage attempting to improve performance in XImage
reading - unsuccessfull
[2007-07-26: sasha]
* Cleaned up libAfterImage to compile without libAfterBase and added
fiunctions to ger drawable size and window position for a specific display
[2007-07-25: sasha]
* fixes to libAfterImage to get it compiling without libAfterBase and to
reduce valgrind complaints about uninitiolized memory
[2007-07-20: sasha]
* fixed many valgrind messages related to uninitialized memory in
libAfterImage and libAfterBase; Fixed WinTabs to take into consideration
window's gravity and frame rectangle while determining where to unswallow
the window.
* fixed image reloading to keep relevant flags - that was messing up wharf's
support for look defined folder icon. That should also speedup repeated
changes of look
* adding support in Wharf for look-specific folder pixmap - so far only works
2 times, then stops changing - wierd
[2007-07-19: sasha]
* further safeguarding agains running out of storage slots in asstorage
* further safeguarding agains running out of storage slots in asstorage
[2007-07-17: sasha]
* fixed the way dumb scaling up along Y axist was screwing up slicing of the
small images.
* fixed stupid dumb bug in make_scales introduced in porevious fix
* fixed a long-standing bug with slicing images getting a vertical stripe
tovards the end. Thanks DrCurl for your Patience
* fixed a long-standing bug with slicing images geting a vertical stripe
tovards the end. Thanks DrCurl for your Patience.
[2007-07-12: sasha]
* added fixes for using proper dpy (from ASVisual structure) in many cases
[2007-07-11: sasha]
* fixed compilation without libPNG; added ability to change default asstorage
block size
* fixed bar rendering to have proper values used for unset hue/saturation,
which eliminates one extra ASImage from being rendered
[2007-07-10: sasha]
* fixed compilation without X in libAfterImage
* reduced modules memory usage by making fonts loading on demand, instead of
on look change
[2007-07-09: sasha]
* fixed few emory leaks (minor)
[2007-07-06: sasha]
* fixed several critical bugs in causing double free and heap corruption,
based on valgrind traces
[2007-06-22: sasha]
* Improved on location where submenus are opened, to make sure they don't
completely cover parents
[2007-06-07: jeremy]
[2007-05-30: sasha]
* Fixed typo causing ttf configure parameteers being ignored
[2007-05-17: sasha]
* updated ChangeLogs for relesae
[2007-05-15: sasha]
* upgraded AS version in anticipation of release
[2007-05-11: sasha]
* made ShowHints more generic option allowing iut to be used in other modules
- started modifying WinList to make use of it
[2007-05-03: sasha]
* fixed window list publishing to use new stacking_order vector
[2007-05-02: sasha]
* minor optimization of the alpha-blending code
* added test container for mmx use
* fixed MMX usage - required _mm_empty() after each mmx intrinsics use;
Optimized window title change to not regenerate icon when not in iconic mode
[2007-05-01: sasha]
* Implemented support for root window having different color depth - blacxk
background on 16bpp screens should go away; temorarily disabled mmx - it
seems to ruin images sometimes
* fixed color printing on 64 bit system
* replaced mmx code to use gcc intinsics
[2007-04-23: sasha]
* updated ChangeLog for 2.2.5 release
* AfterStep release v. 2.2.5
[2007-04-20: sasha]
* implemented proper support for window groups where group leader is an
unmapped unmanaged window; Added support for window groups to move all
windows in the group to a proper desktop at the same time; Added support for
restacking window groups so that when group leader is raised/lowered - all
the members follow, but not when one of the members does the same
[2007-02-22: sasha]
* if we don't reload menu minipixmap - we need to move it over onto new image
manager
* added feature to be able to query filetype and only reload menu minipixmap
if it is ASXML script
[2007-02-21: sasha]
[2007-02-20: sasha]
* added functionality to export ASIUmage into mask MS DIB data, contributed
by Valeriy Onuchin of the ROOT project
* implemented fast thumbnailing for SVG images
* implemented fast thumbnailing for SVG images
* work in progress
[2007-02-16: sasha]
* different check for k!=0 added to clip_line()
* check for k!=0 added to clip_line() and small change for compilation on
Apple
[2007-02-15: sasha]
[2006-11-18: sasha]
[2006-11-09: sasha]
* fixed clamping code in hsv conversion of greyscale colors
[2006-11-08: sasha]
* finished up SVG support implementation
[2006-11-07: sasha]
* preliminary implementation of svg support in libAI using librsvg - may need
some cleaning up to be done
* added check for librsvg to configure in preparation for support for SVG
image format
[2006-11-03: sasha]
* fixed segfault when locale is not set and added special case handling to hsv
transformation to only adjust value on greyscale pixels
* fixed segfault when locale is not set and added special case handling to hsv
transformation to only adjust value on greyscale pixels
[2006-10-25: sasha]
* added code to support UTF8 in menu items and comments (using .desktop
entries)
[2006-10-19: sasha]
* fixed memory leaks in libAI on image slicing
[2006-10-12: sasha]
* fixed floating point exception gets thrown by libAI upon having to scale
image up more then 255 times its height
* Added look.Smooth and fixed segfault happening when MyStyle image needs to
be semitransparent, flipped and scaled all at the same time
[2006-10-11: vae]
* ChangeLog revisions for 2.2.3
* AfterStep release v 2.2.3
[2006-10-10: sasha]
* Fixed libAI to fail when subimage does not exist in the image file -
otherwise there is no way to determine how many images are there
* added support for reading and saving animation repeat counts in gif images
[2006-10-02: sasha]
* updated NEW and Changelogs
[2006-09-15: sasha]
* fixed infinite loop under win32 in import.c
[2006-09-13: sasha]
* fixed reading and writing animation delay in gif images
[2006-09-11: sasha]
* added ability to obtain animation delay when reading gif images
[2006-08-29: sasha]
* added function Set to AfterStep functions to be able to change value of xml
vars; added default_src param to <recall> tag to be able to fall back on
something if none of the sourceid's is available
[2006-08-28: sasha]
* added example to if tag docs
* added <then><else> and <unless> tags handling
[2006-08-24: sasha]
* fixed GIF graphics control extention's size to be 4 bytes - that was messing
up dumb MS Photo Editor
* updated libAfterImage.mak to reflect changes in libungif
* removed includes for stdint.h
[2006-08-18: sasha]
* added <if> asxml tag to conditionally execute stuff
* added <set> tag to asxml to be able to set variables to evaluated
expressions in xml scripts
[2006-08-16: sasha]
* added LZ compression to builtin libungif, as patent is expired already
[2006-08-14: sasha]
* fixed ascmap.c to not leak memory in SortedColorHash buckets
[2006-08-08: sasha]
* implemented changes to automate config parsing for modules and also
implementing support for parsing module options from look and feel - only
WinList does that for now.
[2006-07-18: sasha]
* fixed handling of the text rendering where first character has a large
negative lead, such as 'j'
[2006-05-23: sasha]
* fixed Changelog generation script and updated ChangeLogs for the release
* AfterStep release v 2.2.2
[2006-05-17: sasha]
* implemented automatic image reloading on colorscheme change in Wharf
[2006-05-15: sasha]
* made libAI tolerable to negative size for image transformation functions -
not to crash
[2006-05-12: sasha]
* fixed gigantic memory leak causing background images to get lost on desktop
change
[2006-05-04: sasha]
* fixed memory leaks in xml image parsing, wm_wprotocols debugging code, menu
minipixmaps, hints and several other places
[2006-04-21: sasha]
* fixed erroneous pixmap destruction by modules for tbar props; memory leaks
in WinTabs; shaped MyStyles for WinTabs tabs; UrgencyHint cleared handling
when there is no Extended WM state
[2006-04-06: sasha]
[2006-03-31: sasha]
* added installation into alternatives list, added Games menu under
Applications
[2006-03-24: sasha]
* cirtain fixes to bugs reported on ML
[2006-03-23: sasha]
* implemented filtering of BackgroundForeign backgrounds to include only whats
supported
[2006-03-22: allanon]
* Fixed bug causing png compression to always be zero for
save_asimage_to_file().
[2006-03-16: sasha]
[2006-03-07: vae]
* ChangeLog commit for 2.2.1
[2006-02-28: sasha]
* added check for validity of the text (no negative size)
[2006-02-15: sasha]
* fixed all the errors reported by propriatery source analyser
[2006-01-10: sasha]
* changed titlebar props setting to use different values for NoBevel and
NoAlign being set and for when those values are unset altogether
[2006-01-09: vae]
* ChangeLog
[2006-01-03: sasha]
* fixed bug in handling of length of UTF8 text while determining the text size
- should translate length in chars into byte length
[2005-12-19: sasha]
[2005-12-16: sasha]
* implemented KDE config files manipulation using xml structures; moved xml
parsing into libAfterBase
[2005-12-13: sasha]
* rewrote Makefiles abit to make output more readable. Upgraded version to
2.2.0
[2005-12-08: sasha]
* added built-in function SignalReloadGTKRCFile to send signal to gtk apps to
refresh rc
[2005-12-05: sasha]
[2005-11-30: sasha]
* Fixed several deps in libAfterImage which were failing to compile without
libAfterBase
[2005-11-29: sasha]
* implemented better handling of the <text> tag - with honoring of the alpha
component of the fgcolor
[2005-11-16: sasha]
* changed clipping attr in scale tag to src_ to avod collision with
<composite> tag attributes
[2005-11-15: sasha]
* fixed SIGFPE in scale_asimage2 on clip_width and clip_height being 0
[2005-11-14: sasha]
* added clip_x, clip_y, clip_width and clip_height to scale tag
* added ability to scale the middle of the sliced image - use scale=1 in the
slice tag - still need to add this to MyStyles
[2005-11-04: sasha]
* more file browser stuff
[2005-11-01: sasha]
* implemented faster dir scanning for image list; added time and size to be
displayed on file list; added 3 new members to TermDef data struicture for
future simpler config parsing
[2005-10-18: sasha]
* changed TTF font renderer to use advance.x attribute of the glyph as the
step instead of old way of width + bitmap_left
* implemented horizontal font kerning support for TTF fonts. Most font's don't
have that info in them though
[2005-10-05: sasha]
* fixed potential segfault in gradient parsing where number of offsets is
greater the colors
[2005-09-22: sasha]
* debugging NET_WM_ICON support - mostly works
[2005-09-21: sasha]
* implemented support for 32bit ARGB icons supplied by an app in _NET_WM_ICON
property
[2005-09-19: sasha]
* changed parsing of <slice> xml to match docs and use x_start instead of
start_x etc.
[2005-07-19: vae]
* AfterStep Release v 2.1.2 Changelog
* AfterStep Release v 2.1.2
[2005-06-30: sasha]
* completed implementing Make XML wizard with both minipixmaps and main
wallpaper xml generation
[2005-06-26: fabs]
* removed redundant ";" to allow compilation on FreeBSD 4x
[2005-06-21: sasha]
* improved layout of XML editor
[2005-06-20: sasha]
* began implementing xml editor widget for ASWallpaper - don't really save
anythging yet
[2005-06-15: sasha]
* Implemented safer detection of AfterStep XML image type to differentiate
from XML and HTML docs; Added more controls to ASImageBrowser
* debugged directory listing in image browser; added new file types for HTML
and XML to stop treating them as image scripts; Added keycombo to switch
windows in WinTabs - Alt +(key to the left from 1)
[2005-06-13: sasha]
* added widget for image directory list and image browser dialog
[2005-06-10: sasha]
* implemented GTK widget for image viewing , usefull for image browsers
[2005-06-08: sasha]
* Applyed many fixes based on output of automated analysys tool, provided by
sdague
* updated changelog for release of libAfterImage
* libAfterImage release v.1.07
* fixed segfault on closing of asview
[2005-06-06: vae]
* AfterStep release v 2.1.1
* ChangeLog update for 2.1.1
[2005-06-03: sasha]
* implemented rudimentary Targa files reading
* fixes in libAfterImage for compilation and installation without libAfterBase
- eliminated debug output, type casts, etc.
* Fixed create_visual_pixmap to work with root = None; Fixed scale_pixmap to
scale even in one direction only; Fixed configure to set path to
libAfterBase to more sensible values
[2005-06-02: sasha]
* implementing import of TGA files
[2005-05-25: sasha]
* fixed gc creation code to not create a new window each time gc needs to be
created
* fixed merge function selection code in composite tag handler
[2005-05-24: sasha]
* rewrote xml handling code and broke some stuff
[2005-05-23: sasha]
* implemented slice_asimage function as yet another method of enlarging images
where corners remain unchanged, but middle part gets tiled
* implemented slice_asimage function as yet another method of enlarging images
where corners remain unchanged, but middle part gets tiled
[2005-05-20: sasha]
* Fixed bug in tiling of ARGB32 data in libAI and implemented dynamic resizing
of preview in ASWallpaper
[2005-05-19: sasha]
* Improvements to enable gtk apps to interoperate with libAS
[2005-05-17: vae]
* AfterStep release v 2.1.0 - changelogs - vae
* AfterStep release v 2.1.0 - vae
[2005-05-17: sasha]
[2005-05-04: sasha]
* Updated ChangeLogs for 2.00.05 release
[2005-05-03: sasha]
* Fixed segfault in shared memory cleanup code; Still segfaulting on restart
in FramesList cleanup code
[2005-04-29: sasha]
* added image path to ASImageManager's search path, so that referensed images
could be found from local dir.
* changed asview.c to open display prior to the image so that display size
variables would get set properly
* added image path to ASImageManager's search path, so that referensed images
could be found from local dir.
[2005-04-26: sasha]
* fixed handling of ButtonSize setting - it was ignored
[2005-04-22: sasha]
* Fixed off-by-one bug in ASStorage causing wierd artefact and possibly
segfaults, due to occupied slots being reused improperly
[2005-04-21: sasha]
* hopefully fixed Segfault when window changes name at the time of destruction
[2005-04-11: sasha]
* fixed segfault when wrong op= to composite tag is used
[2005-04-04: sasha]
* removed inline's froom functions all exported functions in libAfterImage
[2005-03-22: sasha]
* Updated ChangeLogs for 2.0.4 release
* made desktop cover tint to be similar to Base color from selected
colorscheme
* cleaned up stale help files; got rid of sgmltools deps; updated .spec file;
changed version number to 2.0.4
[2005-03-21: sasha]
* fixed segfault with glx enabled
[2005-03-17: sasha]
* fixed libraries listed by libAfterImage config script to include X libs to
avoid linkage problems
* implemented dynamic linking to several global vars exported from
libAfterStep to prevent compilation and linkage errors
* hopefully cleaned up shared memory usage
[2005-03-16: sasha]
* optimization of shared memory
* some debugging of asstorage code, possibly fixing segfault
[2005-03-14: sasha]
* fixed handling of special sequences in xml source of ASDocGen+ fixed
handling of several term tags within single varlist entry
[2005-03-11: sasha]
* copied DefaultFancy.ttf to libAfterImage/apps/test.ttf to avoid possible
licensing issues. Those are the same anyways, only DefaultFancy includes
Public Domain notice
[2005-03-09: sasha]
* some memory hole plugging and leaks debugging - nothing major so far
[2005-03-08: sasha]
* debugging memory utilization
* fixed compile warnings for Alpha's cc
* fixed few compile warnings
[2005-03-07: sasha]
* fixed problem with wharf swallowing apps that were mapped on different
desktop
[2005-03-02: sasha]
* updated ChangeLog file to 2.00.03 release
* AfterStep 2.00.03 release
[2005-03-01: sasha]
* added support for IMAGE_PATH env var to all apps in libAfterImage enabling
them to view images installed in different afterstep directories
* some docs additions
* fixed bugs: segfault and mem corruption in ASStorage when compressed size
exceeds buffer size; Proper encoding usage in winlist menus - for UTF8
encoded window names; Proper encoding usage in balloons - it was using ASCII
regardless; Proper font in Pager with support for international chars
instead of 5x8; Handling of $HOME at the beginning of include statements of
.include files
[2005-02-28: sasha]
* added experimental image transfer code using OpenGL API
* more performance testing with OpenGL
* more performance testing with OpenGL
* gl timing
[2005-02-26: sasha]
[2005-02-25: sasha]
* added prototype of image transfer to X using GLX - to see if its any faster
* fixed compile warning
* updated configure to exclude Save
[2005-02-23: sasha]
* implemented scratch canvas functionality in draw.c to facilitate fill
operation on some countours; Added draw.h header
[2005-02-22: sasha]
* changed ~ to //home/sasha
* added FONT_PATH and IMAGE_PATH to set of envvars put out by AfterStep
* compilation warnings and bugs submitted by Valeriy Onuchin
[2005-01-21: sasha]
* added recovery code for malformed gifs not having zero length block at the
end of compressed data
[2005-01-20: sasha]
* updated ChangeLog for 2.00.02 release
[2005-01-18: sasha]
* fixed configure for CYGWIN to build proper lib type. Implemented Image
writing into memory buffer in PNG format - see ASImage2PNGBuff example in
asvector.c
* fixed configure for CYGWIN to build proper lib type. Implemented Image
writing into memory buffer in PNG format - see ASImage2PNGBuff example in
asvector.c
* added ability to bundle included sumenu's items under private user items
[2005-01-14: sasha]
* changed everything to make possible libAfter* as a DLLs - Scr substituted to
a pointer and same for MyArgs
[2005-01-13: sasha]
* bunch of fixes to enable shared libs under CYGWIN - but there is still a
problem of linking apps becouse of the Scr variable
[2005-01-12: sasha]
* fixed long standing bug with AS not restarting itself properly. Upped
version to 2.00.02 in preparation to release
* fixed Makefiles and -config scripts
[2005-01-10: sasha]
* ellipses, damn it
[2005-01-08: sasha]
[2005-01-06: sasha]
* more bloody ellips
[2005-01-04: sasha]
* mostly done with ellips implementation using doubles - runs faster the
approximation through beziers
[2004-12-29: sasha]
* some funky stuff to try to get alternative ellips algorithm going - doesn't
work yet
[2004-12-28: sasha]
[2004-12-26: sasha]
[2004-12-23: sasha]
* completed implementation of ellips and circle primitives
[2004-12-22: sasha]
* improved cubic splines to not use recursion and implemented circle drawing
* improved cubic splines to not use recursion and implemented circle drawing
* Implemented antialiased cubical Bezier curves drawing
* implemented anialiased line rendering
[2004-12-21: sasha]
* implemented anialiased line rendering
* implemented anialiased line rendering
* implemented anialiased line rendering
* implemented anialiased line rendering
[2004-12-20: sasha]
* fixed afterstep-config to include extra X libs; implemented prototype
anialiased drawing code
[2004-12-17: sasha]
* added test code for drawing
* added drawing functionality
* fixed performance hog introduced by data[1] changed to data[0] in asstorage
during round of warnmings fixes
[2004-12-10: sasha]
* More compilation warnings fixed
* ttf always on under win32 and typo fix in mmx initialization code
[2004-12-09: sasha]
* added list of standard X colornames
* numerous fixes from FonsRademaker and Valeriy Onuchin - to make it compile
under win32
[2004-12-08: sasha]
* fixed bunch of warnings for different compilers
[2004-12-01: sasha]
[2004-11-30: sasha]
* AfterStep 2.00.01 release
* AfterStep 2.00.01 release
* added a configure option --disable-data-reinstall just for MG_Tak - it
prevents image, font files from being copied over existing ones, and
prevents HTML catalogue from being generated;
[2004-11-29: sasha]
* Fixed bug in afterstep not sending proper notifications about which window
is currently focused
[2004-11-26: sasha]
* fixed memory leak at add_line_mono
[2004-11-24: sasha]
[2004-11-23: sasha]
* updated version to 2.00.01
* added comments to vectorize_asimage
[2004-11-22: sasha]
* implemented vectorize_asimage and some minor fixes to Wharf
[2004-11-19: sasha]
* Fixed tiling with negative offset - unsigned/signed conversion problem
* Debugged conversion from alt.argb32 to other stuff, like XImage etc. using
ASImageDecoder - see example in asview.c
* Implemented ASImageDecoder support for alt.argb32 format
[2004-11-16: sasha]
* changes to accomodate new aterm code
* Fixed ascmap to not segfault under MSWin and fixed fill_asimage to use
proper width when x > 0 - reported by Valeriy Onuchin;
[2004-11-15: sasha]
* fixed shading translation into tint
* fixed some code in pixmap handling used in aterm
* changed Pager invocation in start menu to use desktop number specifyed to
configure script
[2004-11-15: born2late]
[2004-11-10: sasha]
* fixes to afterimage include files to properly install and enable other apps
to use it
[2004-10-27: sasha]
* began implementing XML-RPC interface to ASConfig
[2004-10-15: sasha]
* fixed libAfterImage makefile for win32 to include asstorage.c; fixed
compilation problem and excessive debug output under windows
[2004-10-14: sasha]
* possibly resolved problem with ASDocGen not being run when compiled with
shared libraries
[2004-10-08: sasha]
* Fixed problem in base loading where there were no sanity checks for
DesktopScale value; Fixed a bug in ASStorage where small images < 15 pixel
widths would come out broken; Implemented partially property tree printing
in ASConfig; Added ASStorage functionality to be able to query original size
of the stored data
[2004-09-27: sasha]
* changed versions to 2.00 and 1.00 for libraries
* fixed recently intoduced bug in asstorage causing major slowness; added some
logic to prevent costly maintenance operations from happening too often
[2004-09-25: sasha]
[2004-09-24: sasha]
* fixed segfault in asstorage when diff buffer does not gets reallocated
* fixed button ungrabbing on windows withdrawing that was causing wierd
BadAccess errors in Wharf
[2004-09-23: sasha]
* implemented preloading of menu pixmaps - speeding things up considerable;
fixed segfault in asstorage - still unclear how that could happen - may see
some image corruption instead
[2004-09-22: sasha]
* some performance optimization based on gprof stats, as well as memory leak
cleanups
[2004-09-21: sasha]
* added mandatory -O3 in libAfterImage and libAfterBase improving performance
significantly;
* fixed performance hog in asstorage, as well as segfault in the same place;
Implemented shaped image rendering directly into XImage, added menu
shortcuts for Left and Right keys
[2004-09-20: sasha]
[2004-09-16: sasha]
* lots of optimizations of focus change handling in WinList and AfterStep,
shape handling optimizations in Pager and other tweaks
[2004-09-15: sasha]
* added NoBorder flag to MyFrames, improved performance and feedback in data
doc generation
[2004-09-14: sasha]
* added code to background handling, to not interrupt the animation when
desktop is switched before it completes
[2004-09-08: sasha]
* changes to feel file for better shortcuts for desktop switching; Fixes to
ASStorage to properly handle reference counting without leaving leftovers
[2004-09-02: sasha]
* Lots of tweaks to desktop switching, initial placement handling and
move-resizing
[2004-08-31: sasha]
[2004-08-26: sasha]
* fix to Makefile to install man pages and HTML help pages
[2004-08-25: sasha]
* more xft development
* Some changes to DeadPipe to prtevent it from reentering self
[2004-08-24: sasha]
* Implemented memory debugging for buffer underruns with --enable-audit under
win32; Found memory corruption caused by merging image of size 0, which
fixes segmentation Fault in WinList
[2004-08-23: sasha]
* Fixed make install in libAfterImage; Added missing files to libAfterImage's
project files; Fixed segfault in afterstep when clicking happens too fast
and there is no more window by the time function is executed
* applied patch for interlaced GIF support from Maxim Nikulin
[2004-08-20: sasha]
* new development to add interface with XRender extention for text rendering
[2004-08-19: sasha]
* fixed potential segmentation fault in asfont.c at the time of text rendering
[2004-08-17: sasha]
* fixed compile bug in asstorage.c
* disabled clocking of transformations and text drawing
[2004-08-16: sasha]
* Changed version number to beta5, Changed AfterStep.spec to be updated
automagically with proper version number; Updated afterstepdoc script to
select web browser from mozilla, firefox, konq, opera, netscape
[2004-08-13: sasha]
* fixed bug in asstorage causing segfaults if block is used completely;
Improved Wharf's handling of animation - should now be much smoother
[2004-08-12: sasha]
* fixes to docs to format properly into PHP. Fixes to AsDocGen to have nice
indexes and proper references from devel docs to user and back
[2004-08-11: sasha]
* Implemented new generated doc installation in Makefiles, added more
libAfterImage docs, fixed formatting in asimage.h and asfont.h
[2004-08-10: sasha]
* Fixed bug in ASStorage causing negative sizes in slots and as the result
garbadge in images
* Fixed bug in ASStorage causing negative sizes in slots and as the result
garbadge in images
[2004-08-09: sasha]
* fixed segfault bug in transform.c if image creatrion fails
* fixed some docs generation
[2004-08-06: sasha]
* added xml source for documentation into CVS and updated Look in libAfterConf
to be same as in src/afterstep/configure.c
[2004-08-03: sasha]
* Implemented 3 new types of text: OutlineAbove, OutlineBelow, OutlineFull
that does outlining of text, also enabled alpha tinting of the text at the
time of rendering
[2004-08-02: sasha]
* added memory cleanup code to ascompose, and added missing free calls to
storage destruction code
* fixed thresholding code in asstorage needed for rectangular shape stuff
* Improved reference counting in ASStorage to accomodate to wierd storage
states where some blocks have no space left for reference
[2004-07-30: sasha]
* reimplemented image reading using new functionality of ASStorage using
bitmap stuff and grayscale images using reference counters
[2004-07-29: sasha]
* debugging the size of AS menus; added storage printing function
[2004-07-28: sasha]
* disabled debug output
* rewrote ASImage contents storing code to utilize generic ASStorage
* added 32bit store function
[2004-07-23: sasha]
* completed implementation of ASStorage, including compression scheme for
bitmapped data
[2004-07-21: sasha]
* Completed implementing RLEDIFF compression and ; Completed debugging of
asstorage with RLE DIFF compression
[2004-07-20: sasha]
* implemented decompression
* Implemented RLE diff compression code in ASStorage
[2004-07-16: sasha]
* started implementing compression using zlib
[2004-07-14: sasha]
* completed debugging and implementing asstorage
[2004-07-13: sasha]
* Implemented and debugged storage defragmentation; Moved xml parser enums
back to .h and added missing typedefs
* Fixed guarded memory handlinbg for blocks of whole number of pages; Debugged
some of the aspects of ASStorage memory handling - must implement
defragmentation now
* changed /ML flags to /MD ( based on Bertrand Bellenot suggestion)
* accepted patch from Bertrand Bellenot (Root) for libAfterImage under Win32;
Updated MSVC project files with new files
[2004-07-12: sasha]
* debugged storage storing, started implementing fetching
* added better testing code
[2004-07-09: sasha]
* partially debugged ASStorage implementation
[2004-07-07: sasha]
* storage splitting
[2004-07-06: sasha]
* ASAStorage slot selection code added
* Continued implementation of ASStorage
* implemented test container for asstorage ala XP
[2004-07-05: sasha]
* started implemnting proper storage for ASImage data
[2004-07-04: sasha]
[2004-07-03: sasha]
* Updated configure scripts; spilt image decoder/encoder from asimage - need
to rearrange to get it to order
* done most of the coding required for proper handling od static ASImages
[2004-07-02: sasha]
* implemented crosslinking docs
[2004-07-01: sasha]
* implementing urls for keywords, intellifgent handling of the NAME section,
etc.
[2004-06-30: sasha]
* Added nested subsections, partly debugged quotations, other doc gen tweaks
[2004-06-25: sasha]
* prototyped doc generation for robodoc comments
[2004-06-24: sasha]
* Disabled stripping of binaries when enable-gdb is requested
[2004-06-23: sasha]
[2004-06-21: sasha]
* added support for UTF-8 when its requested in LC_LANG setting
[2004-06-14: sasha]
[2004-06-11: sasha]
[2004-06-09: sasha]
[2004-06-08: sasha]
* Fixed race condition with modules using LOCKONSEND and display being grabbed
* added ability to XML parser to recognize known tags; Added framework code
for converting source xml into html docs to ASDocGen
[2004-05-24: sasha]
* fixed scaling algorithm to properly scale images with height <= 3
[2004-05-18: sasha]
* updated dependancies, and completed reimplementing Animate module - still
needs some debugging though
* fixed erroneous uncommented line in shared memory XImages
[2004-05-17: sasha]
* cleaned up C++ comments
[2004-05-13: sasha]
* debugging background changing
* hopefully fixed detection of freetype library on debian sarge
[2004-05-12: sasha]
* updated configure scripts and partly fixed freetype autodetection for debian
- still need ft2build adding to freetype.h detection code
* implemented fast(er) desktop switching by caching background pixmaps - there
are some quirks that needs to be ironed out still
[2004-05-11: sasha]
* fishing out segfault in get_text_size
* Implemented memory debugging under cygwin and fixed discovered bug in
MyStyle parsing
[2004-05-10: sasha]
* Implemented Transient button functionality in Wharf, missing from 1.8
[2004-05-07: sasha]
* minor TODO changes
[2004-04-29: sasha]
* Implemented ability to use tab stops while drawing text, and cleaned up new
api calls; Fixed Wharf Bevel setting
[2004-04-19: sasha]
* Implemented ability to load any font as monospaced using scaling of glyphs
and other techniques, making it possible to use libAfterImage for text
output in applications such as text editors and terminal emulators
[2004-04-15: sasha]
* Fixed bug in handling of Viewport setting in database when only one of the x
or y is set.It was using X set flag for y value and wise versa
[2004-03-31: sasha]
* Fixed potential segfault in asfont.c when font is NULL; Fixed including of
afterbase.h in asapp.h to be done only when compiled as part of AfterStep
[2004-03-19: sasha]
* added includes for xmd.h prior to jpeglib, to prevent multiple definitions
of INT32
* added missing include for system's zlib.h in png.h
* removed unneeded io.h from libungif
[2004-03-18: sasha]
* Found and fixed very wierd heap corruption bug, causing segfault whenever
bevelled rectang is drawn
* Added builtin libungif to libAfterImage, and enabled support for it by
default in configure
[2004-03-17: sasha]
* added MSVC nmake makefiles
* fixed libAfterImage to properly handle path in win32
[2004-03-16: sasha]
* Incorporated libpng, libjpeg and zlib into libAfterImage, in case it is not
available on the target system, or we are compiling under win32
[2004-03-11: sasha]
* Completed implementing conversion from ASImage into DIB and implemented
sample win32 image viewer application as an example and testbed.
[2004-03-10: sasha]
* started implementing ASImage2DIB converter
* moved some of the bmp functionality into bmp.c/h
* removed 0x0D that came from MSVC porting
* changes to make libAfterImage compile under MSVC in win32
* began porting libAfterImage into win32
[2004-03-05: sasha]
* Fixed compilation in Feel.c with --enable-gdb; Fixed local selection if only
the country is specified such as en_US - RedHat seems to have this; Fixed
segfault in spawn_child with locale specified it was attempting to check if
pointer is isspace() triggering bug in glibc
[2004-03-04: sasha]
* Fixed annoying type-punning warnings; Fixed annoying -rdynamic warnings on
CYGWIN; Changed default compression ratio for screenshots to give very high
quality; Fixed configure.in to properly work with latest autotools
supporting PACKAGE_ stuff; Fixed configure to remove -g if enable-gdb is not
requested; Fixed root image grabbing using overlay window to not use Backing
Store; Fixed ascompose to set USPosition when geometry is requested; Fixed
Banner to set its title ; Upgraded version to beta4
[2004-03-01: sasha]
* better Banner
* removed redundand ifdefs for I18N
* debugged and optimized Banner and ascompose
[2004-02-27: sasha]
* added missing usage text to ascompose and fixed Makefile to install Banner
* improved ascompose
* debugged mask to rectangles list functionality in asimage.c
[2004-02-26: sasha]
* added support for shaped windows to ascompose; Debugged channel->rectangle
set conversion in libAfterImage - still have some vertical stripes
* Fixed <rotate> tag in asxml to properly swap width and height in case of 90
or 270 degree rotation
* Fixed <rotate> tag in asxml to properly swap width and height in case of 90
or 270 degree rotation
[2004-02-21: sasha]
* added code to AfterStep to publish Image and Font path in env vars; Added
feel.ICCCM that has no keyboard bindings; Added window centering code to
ascompose; Added missing cursor definitions to look.QNX;
[2004-02-20: sasha]
* Added ability to wait for data placed in X clipboard and then displaying it
if its in XML format
[2004-02-19: sasha]
* added ability to use same window for different images
* fixed display closing when running in loop
* added interactive error reporting functionality
* added interactivity functionality to ascompose
[2004-01-27: sasha]
* now hopefully workplace state restoration should work fine - fixed complex
function name parsing, for cases when its nested within anopther complex
function. Also added checks to not remove -g even if --enable-gdb is not
specified ( due to requests from debian folks)
[2004-01-21: sasha]
* fixed bug where empty locale would be specified while starting a module
causing Pager to have 255 desktops and other wierdness
[2004-01-14: sasha]
[2004-01-13: sasha]
* fixed bug in shared image variant of background xfer
* disabled animating for tiled pixmaps as it seems to cause slowness
[2004-01-12: sasha]
* hopefully optimized ximage transfer by using reusable memory and added
ability to postpone background switching task to be done later
[2004-01-08: sasha]
* fixed libAfterStep installation procedure and some of the headers to make it
useable in external apps
[2004-01-06: sasha]
* fixed get_font to not crash when X is missing; Fixed ascolor to not open any
connections to AS when -n option is used
[2004-01-02: sasha]
* Fixed keyboard presses handling to not require window selection when there
is a focused window; Updated .spec file to better handle libraries and stuff
( thanks to Andre Costa )
[2003-12-23: sasha]
* Fixed README.SOLARIS and libAfterImage's Makefile if's
[2003-12-17: sasha]
* added width/height value "proportional" to <scale> tag to keep image ratio
while scaling
[2003-12-09: sasha]
* got rid of Wait3 testing in configure - should speed it up a bit
[2003-12-08: sasha]
* fixed handling of trailing whitespace at the end of the tag in XML processor
* added support for C control codes in printf format strings in asxml, added
safeguards to check for proper number of parameters in printf format string
* fixed support for input from stdin and output onto stdout in ascompose
[2003-12-05: sasha]
* Cleaned up configure to not have ugly -I.. -I../.. and not do any detection
of libAfterImage/Base - we should always use what we came distributed with
* fixed without-x compile problem in asvisual.c
* fixed stddef.h bug in libAfterBase and without-x compile problem in
asimage.c
* added <print> tag to asimage xml to enable output of internal variables such
as image size
[2003-11-28: sasha]
* added afterimage-config
[2003-11-14: sasha]
* Added cover window to meaningfully show user that AfterStep is reloading
config or starting up or doing anything else that takes time
[2003-11-07: sasha]
* Added ActiveDeskBevel and InActiveDeskBevel to Pager's options; Debugged
bevel drawing when tbar has different bevels for focus and unfocus states(
should get rid of wierd black frame when one of the states is None)
[2003-09-26: sasha]
[2003-09-25: sasha]
* AfterStep 2.00.beta2 Release
* AfterStep 2.00.beta2 Release
* Some minor tweaks to cursor coloring and HSV manipuylation for grayscale
* Implemented automagic generation of the ChangeLog
[2003-09-22: sasha]
* Fixed locale parsing from LANG variable; Fixed module startup to pass on
current locae specified on command line
[2003-09-09: sashav]
* More fixing Pager's geometry; Added -i cmd line parameter to ascompose to
allow for 'include' files (such as colorschemes, etc.); Updated configure
scripts to properly detect headers when its run from libAfterBase; Updated
version to beta2; Updated TEAM file
[2003-09-08: sasha]
* Fixed Pager to properly account for label size while sizing min-desktop
windows
[2003-09-03: sasha]
* added new AfterStep log icon; fixed wharf config file
[2003-09-02: sasha]
* added new xml tag : <color> to define symbolic color names
[2003-08-30: sashav]
* debugged workspace state handling code, and improved Wait loop
[2003-08-28: sasha]
* added caching of pixmaps for unfocused bas in window decorations to speed up
fast focus switching
* 64-bit fixes: properties and strlen warnings
[2003-08-27: sashav]
* synching
[2003-08-27: sasha]
* fixed handling of non-default MyBackgrounds, and proper adding of
DeskConfigs while switching desks
* synching
[2003-08-26: sasha]
* added parameters to import funcions, to allow for sized image/preview
stuff; Removed compression buffer from ASImage structure to save up some
memory; Hopefully fixed hints handling on 64 bit hw
[2003-08-23: sashav]
* added new 3 icons to complete the set of default icons: switched AfterStep
to use ~/.afterstep instead of ridiculous ~/GNUstel/L/A stuff
[2003-08-22: sasha]
* fixed autodetection of zipped xpms and added 6 more icons to default iconset
[2003-08-21: sasha]
* more improvements to asimbrowser
[2003-08-20: sasha]
* implemented html generator for icons list (asimbrowser); TODO: replace all
asimage_decode_line with Image Output thingy, or implement support for
back_color
[2003-08-19: sasha]
* implemented image list loading from dir listing
[2003-08-18: sasha]
* configure regenerated
* changes to configure to properly handle user set LDFLAGS
* configure regenerated
* changes to configure to properly handle user set LDFLAGS
* configure regenerated
* changes to configure to properly handle user set LDFLAGS
* configure regenerated
* changes to configure to properly handle user set LDFLAGS
[2003-08-16: sashav]
[2003-08-15: sashav]
* applied 5 patches from Stasinos Konstantopoulos
* more work on compilation issues, notably fixed errors on old debian 2.2
[2003-08-15: sasha]
* applied 5 patches from Stasinos Konstantopoulos
* updated configure scripts to autoconf 2.57
* more messing aruound with system headers and compilation
* updated configure scripts
* more messing aruound with system headers and compilation
* updated configure scripts
* more messing aruound with system headers and compilation
* more work on compilation issues, notably fixed errors on old debian 2.2
[2003-08-14: sashav]
[2003-08-14: sasha]
* disabled gif/ungif by default
* disabled gif/ungif by default - needs to be reenabled manually
* compilation warnings fixed
* updated configure
* hopefully fixed all the strict aliasing breakage errors with newer gcc
[2003-08-12: sasha]
* removed offending varargs include that was not needed anyways, but was
breaking compile with gcc 3.3.1
[2003-08-11: sashav]
* cleanup in preparation to beta1 release
[2003-08-11: allanon]
* fail gracefully if merge is requested and no images can be loaded
[2003-08-09: sashav]
* added cleanup code for shared memory
[2003-08-08: sashav]
[2003-08-08: sasha]
* added safety check for shared memory utilization
* added safety check for shared memory utilization
* added safety check for shared memory utilization
[2003-08-01: sasha]
* rewrote shaped windows handling to use rectangles everywhere, and
intelligently merge them together, thus greately reducing memory utilization
and avoiding flickering and other nasty artifacts. That's it, last commit
before beta1 release :) - I'm off for vactaion, coincedentally :)
[2003-07-23: sasha]
* added feature allowing for the menu minipixmaps to come from files with
specified extension, such as .mini
[2003-07-22: sasha]
* fixed error message while trying to load X11 font with part of the name
truncated as the result of size parsing
[2003-07-18: sashav]
* completed implementation and debugging of shared memory extensions use in
afterstep proper; Fixed compression of xml images - save a bundle or root
pixmaps
[2003-07-17: sashav]
* completed implementation of support for shared memory XImages
[2003-07-17: sasha]
* Fixed bug in asimage2ximage where asv->dpy was used instead of asv; Fixed
bug in Pager's handling of folders while checking availability
* completed implementation of support for shared memory XImages
[2003-07-16: sasha]
* added look.Glass (look-alike of 23 Oz Glass E theme); Fixed shaped windows
bug in mystyle image rendering (alpha channel was being lost); Added ability
to adjust hsv of the color; fixed bug in window decorations handling -
background images
[2003-07-15: sashav]
* mostly completed wharf config
[2003-07-14: sashav]
[2003-07-14: sasha]
* added icons for terms and added better availability check to Wharf and
AfterStep - Wharf now allows to choose from one of the icons
[2003-07-11: sasha]
* Implemented 3 more functions: TakeScreenShot, TakeWindowShot and
TakeFrameShot, as the side effect of debugging root background handling.
Updated feel.DEFAULT to use those
* fixed bug in inheritance code where back_icon would get destroyed even if it
was inherited, thus causing wierd things to happen when same style is
inherited twice; Added code to mystyle_make_image to ensure that we always
produce valid ASImage
[2003-07-01: sashav]
* continued development of the xshmimages
[2003-07-01: sasha]
* fixed uninitialized ximage pointer usage in create_visual_ximage
* continued development of the xshmimages
[2003-06-30: sasha]
* fixed shmem autodetection
* added support X Shared Memory Image extensions ( mostly ) ;
* added support X Shared Memory Image extensions ( mostly ) ;
[2003-06-27: sashav]
* Fixed handling of xv's crazy WM_HINTS changing and overal;l hints changing;
Fixed out of bounds memory access in make_file_name and
picture_ximage2asimage; completed support in configure for X Shared Memory
images
[2003-06-26: sasha]
* Fixed bug in libAfterImage causing garbadge in gradients 1 pixel wide
[2003-06-25: sasha]
* Fixed transparent gradient drawing to do alphablending instead of allanon;
Fixed menu to not show underscores; Fixed menu look update; Added feature to
Wharf to verify that Exec command commands are actually available in PATH;
Fixed balloons drawing to withdraw them as pointer leaves the window
[2003-06-23: sasha]
* made afterstep UTF-8 aware.
[2003-06-21: sashav]
* debugged UTF8 rendering with libAfterImage and Default.ttf font
[2003-06-20: sashav]
* Fixed bug in unicode character drawing causing segfaults
[2003-06-20: sasha]
* fixed UTF8 char size calculation
* Fixed bug in unicode character drawing causing segfaults
[2003-06-10: sashav]
[2003-06-06: sashav]
* Fixed gradient type handling; Fixed PinMenu in feel for button 5; Added
check for what side should be dragged when window is resized without
pressing on the frame
[2003-06-05: sashav]
* fixed manual placement so that window's corner is at the mouse position
[2003-06-05: sasha]
* gradient rotation code implemented for vertical titlebars
* fixed manual placement so that window's corner is at the mouse position
[2003-06-04: sasha]
* created pressed buttons for the default look; Fixed bug in load_file where
file would get opened twice
[2003-06-03: sasha]
* redesigning default titlebar buttons
* Implemented NoFocusOnMap database hint; Added opacity setting to solid tag
in xml:
[2003-06-02: sasha]
* minor fixes to xml parser
[2003-05-30: sasha]
* Added several new attributes to composite and text tags for: text 3d type,
align, vailgn ( in asxml handler ); Fixed text foreground image handling in
asimagexml; Designed new default background as composite of gradient and old
texture with text on top of it.
[2003-05-28: sasha]
* completed debugging colorscheme tools - need to check into way of
calculating saturation and value
[2003-05-22: sasha]
* Makefile fixes to make libAfterImage and libAfterBase packageable for RedHat
[2003-05-20: sasha]
* Implemented colorscheme parsing/writing (mostly)
[2003-05-19: sasha]
* added handling of button pressing to ascolor; Fixed bug in man page
installation for libAfterImage reported by MG_Tak
[2003-05-09: sasha]
* Fixed image storing in xml scripts using id= attribute; Added check for
minimum text color brightness when whitening it; Added more bars to
ascolor.c; Fixed bug in Makefiles for shared libraries;
* fixed compile bugs in parse.c and completed hsv/rgb custom color parsing
[2003-05-07: sasha]
* prototyped FLTK based ascp; Made all the libraries C++ safe
[2003-05-06: sasha]
* added csome code to produce nice colorschemes automagically
[2003-04-25: sasha]
* fixed loading of images inside xml scripts to use same PixmapPath as
everything else
* added .xpm to filenames of old buttons
* Got rid of old MyFont cruft; Got rid of global GCs in MyStyles; Fixed
handling of FontPath and loading of TTF fonts
[2003-04-22: sasha]
* added bunch of xml icons for titlebar buttons; removed fprintf from
transform.c
[2003-04-21: sasha]
* generated bunch of dots icons from buttons
[2003-04-18: sasha]
* improvements and fixes to asimagexml adding new flags to bevel tag and
fixing handling of IMAGE_PATH env var
[2003-04-16: sasha]
* updated configure script
* Fixin Makefiles for new icons etc
[2003-04-08: sasha]
* missing braces in ico import code; Fixed large icons broken by broken
libAfterImage; Added Bookshelf and Package icons
* Fixed scaling Up algorithm to put correct last line ( it was putting 4th
line before last instead); Fixed MS Icon file format reading to allow for
arbitrary size of images ( it was affecting AndMask not being read
correctly;
[2003-04-03: sasha]
* added xpm2png conversion script
[2003-03-28: sasha]
* Fixed bug where while writing bitmap mask we would forget to unset flag
indicating that it is 8 bit mask
[2003-03-26: sasha]
* Fixed segfaulting with 64bit compile due to 32bit values used instead of
pointers in calls to get_hash_item
[2003-03-25: sasha]
* some changes to make code 64-bit safe
[2003-03-22: sasha]
[2003-03-19: sasha]
* Fixed text size miscalculation due to starting counting from second
character instead of first
* implemented gaussian blurr for selected channels in ascompose:) WE can now
easily convert icons into png
[2003-03-10: sasha]
* debugged root background handling so that aterms should not crash now;
Scaled/tiled/clipped backgrounds should reload now; There will be no
multiple copies of the image kept in AS memory anymore;
[2003-03-04: sashav]
* upgraded version, rearranged and renamed libraries to match as-devel;
updated includes in libAfterConf and libAfterStep
[2003-02-24: sasha]
* Hopefully fixed gamma correction issue in PNG images
[2003-01-07: sasha]
* IMplemented shaped windows support in as-proper; Implemented shaped Wharf;
Debugged labels in Wharf; Fixed bug in image flipping code where color could
get lost when original uses back_color;
[2002-12-19: sasha]
* cleaned up and debugged background image handling; fixed clients stacking
order in Pager; ICCCM ConfigureNotify on frame moves reenabled; proper
config broadcasting at the time of the actuall ConfigureNotify; stacking
order gets sent on WindowList request;
[2002-12-05: sasha]
* Fixed bug in image flipping where back_color would get lost; Implemented
menu style in database as Style ASMenu; began working on Pager and WinList2
to get them to compile and run with new as-proper
[2002-12-04: sasha]
* sugnificantly improved speed of menu rendering as well as loading time;
mostly implemented Pinning of the menus - need to debug redecoration of the
frame window;
[2002-12-03: sashav]
[2002-11-15: sasha]
* Fixed memory leaks in asfont.c,list.c,decor.c and InitLook(); Implemented
proper cleanup to produce clean memory leak output; Implemented smooth
shading animation in both directions
[2002-11-06: sasha]
* Moved MyStyles to use Hash table, Fixed mystyle_property code to use
wmprops; updated libConfig to use asapp and fixed MyStyle parsing; cleaned
up bits and pieces and at long last got AfterStep proper to compile cleanly
cd as-stable! Now its time for some debugging
[2002-10-30: sasha]
* making progress to get as to compile - link time errors now
[2002-10-18: sasha]
* started fixing functions.c; fixed bug in event.c reported by tildouf
[2002-07-24: sashav]
* implemented shaped decoration drawing - see winlist2 with BackPixmap set to
125 or 126 for any of the styles
[2002-07-23: sashav]
* Fixed afterstep proper to use same functions as mystyles for icon loading(
with shapes and alpha-channel) Fixed bugs in mystyle text drawing; some
ximage.c functions where bitmap parameter was wrong; Changed titlebar
buttoins to use MyIcon and MyButton; Changed Frames to use MyIcon with
shapes and everything; Fixed menu to properly load and unload icons
[2002-07-22: sashav]
* completed implementation of 8-bit alpha channel pixmaps in libAfterImage;
added function to hopefully determine the most efficient depth of alpha
channel (8 or 1); added 8-bit alpha support to icon_t and mystyles; fixed
bugs in MyStyles cloning of mask; added twm rubberband; fixed Audio (see AS
ML)
[2002-07-20: sashav]
* added some functions for export of alpha channel into 8 bit pixmap and back
[2002-07-16: sashav]
* Parameter check bugfix in marge_layers in libAfterImage; Rewrote WinList
layout, to do it two steps
[2002-06-24: allanon]
* o re-ordered a bit of code so that the width and height attributes of
<scale> could use variables defined by children of the tag
[2002-05-24: sashav]
* compilation warning
[2002-05-22: allanon]
* o added support for multi-bit-depth displays like those found on Solaris
boxes: 8bpp root window, with 24bpp possible to afterstep; note that
asetroot still does not support this situation, so transparency modes do
not work o moved around audit.h includes to allow AS to be compiled with
--enable-audit again
[2002-05-18: sashav]
* added configure option to enable reusing loaded font by modules (old way)
[2002-04-25: sashav]
* cleaned up headers and fixed Makefiles
[2002-04-23: sashav]
* Fixed Pager to use correct color parsing; Added ARGB2PIXEL converters for
pseudo-color modes; Removed GCs from Wharf
[2002-04-21: sashav]
* fixed Wharf to (hopefully) work with libAfterImage. Fixed several minor bugs
in libAfterImage
[2002-04-19: sashav]
* more wharf work. Added xpm_data2ASImage()
[2002-04-18: sashav]
[2002-04-16: sashav]
* slightly improved logic of gradient drawing to account for completely messed
up offsets
[2002-04-15: sashav]
* synced with as-devel/libAfterImage
[2002-04-13: sashav]
* Reimplemented MyStyles using libAfterImage - include ssome changes to
MyStyle data structure. Tinting now works both ways - darkens and lightens.
all 15 blending methods should work now. half of the modules needs fixing to
compile
[2002-04-09: sashav]
* Syncronized with devel tree - xml vars, stdout image export
[2002-04-03: sashav]
* Added self diag code. Fixed bug in libAfterImage where Mask was incorrectly
exported into ximage
[2002-04-03: allanon]
* Added variables to the XML image parsing.
[2002-03-28: sashav]
* fixed libAfterWidegt to get asclook to compile again
* Completed pixmap manipulation functions port from old libafterimage
[2002-03-27: sashav]
* compile warnings
* Alpha portability fixes
* Alpha portability fixes
* portability fixes
[2002-03-26: sashav]
* fixed lousy bug in tiling code where data was coming out randomly
[2002-03-23: sashav]
* almost done with pixmap.c
[2002-03-19: sashav]
* implemented draw_unicode_text and draw_utf8_text and get_text_size for those
as well
* minor tweaks to asvector.c
[2002-03-17: sashav]
* Locale support for TTF fonts mostly completed - need to add
draw_text_unicode and draw_text_utf8
[2002-03-15: sashav]
* right smack in the middle of unicode debugging, loosing bloody glyphs
somewhere :(
[2002-03-12: sashav]
* hopefully completed locale string parsing
[2002-03-11: sashav]
* adding decoder for locale names
[2002-03-10: sashav]
* Implemented large portion of locale/unicode support in text drawing
[2002-03-09: sashav]
* completed implementing char to unicode conversion
[2002-03-08: sashav]
* added test container for vector draving
[2002-03-02: sashav]
* fixed missing argument in query_screen_visual macro
[2002-03-02: allanon]
* o fixed segfault when no valid image is generated at all o xml_print() now
indents xml so it's more readable
[2002-03-01: sashav]
* implemented 8-bit mask output into XImage and reverse mask decoding into
alpha channel from attached mask XImage
[2002-02-26: sashav]
* done with ximage tiling code, now we can use XImages instead of encoded
ARGB data
[2002-02-22: sashav]
* made possible to use XImage data directly for other transformations - need
to complete scanline tiling code and add trigger disabling DATA_UNUSABLE
flag
[2002-02-21: sashav]
* started adding decoding capabilities for ASImages that only has XImage/ARGB
data
* added colormap parameter to create_asvisual_from_id, so that custom created
colormap could be passed for libAfterImage to use from calling app.
[2002-02-20: sashav]
* minor portability fixes
* minor portability fixes
[2002-02-19: sashav]
* Added xml2ASImage input filter. Changed gradient drawing code to not assume
ascending order of offsets.
[2002-02-18: sashav]
* converted ascompose to use xml code from asimagexml.c and did some cursory
debuggin
[2002-02-16: sashav]
* completed asimagexml - now to convert ascompose to use it and do some funky
debuggin for meory corruption/leaks and other features :)
[2002-02-12: sashav]
* mostly done with asimagexml refactoring
[2002-02-11: sashav]
* added asimagexml - input filter that allows to perform complex
transformation on image transparently for the app and based on supplied XML
file.
[2002-02-06: sashav]
[2002-01-17: sashav]
* Fixed bug in ascompose where command line argument could be freed. Fixed bug
where wrong destruction function has been used in image hash in ascompose.
* Fixed segfault when opening XPMs with greater then 256 colors. Hopefully
satisfied stupid gcc 3.0.3 when it stumbles upon printf() with ifdefs
inside.
[2002-01-15: sashav]
* Updated ChangeLogs
* updated docs
* updated deps and configure scripts
* Upped version number for libAfterImage and libAfterBase
[2002-01-14: sashav]
* added missing AS_HASHABLE and show_progress
* added missing AS_HASHABLE and show_progress
* added missing show_debug into afterbase.c/.h
* added missing show_debug into afterbase.c/.h
* Completed portability fixing of the day
* Removed unneeded debug code
* Fixed embarrasing bug in MAX macro - it really worked the same as MIN :)
*GRRRRR*
* debugging on 64bit big emdian machine
* XParseGeometry requires unsigned int*
* XParseGeometry requires unsigned int*
* Added mandatory libm , since we now need exp() from gaussian blurr
* Added mandatory libm , since we now need exp() from gaussian blurr
* XParseGeometry expects pointers to unsigned int
* DOS format somehow creeped in :(
* datatype portability issues
* __FUNCTION__ macro portability issues
* Hopefully bomb-proof freetype detection
* Hopefully bomb-proof freetype detection
* Hopefully bomb-proof freetype detection
* prototyped ASCommManager - for the generic even/input loop handling
[2002-01-10: sashav]
* Updated ChnageLogs for libAfterImage and libAfterBase
* Fixed bug in bevel drawing where right solid line would not be drawn
* added XGCValues to xwrap code
* updated libs configure script with new version and correct help/options
* Fixed makefile to install ascompose man page into correct location, since it
is an app it should go into man1
* updated man pages
[2002-01-09: sashav]
* Completed documenting libAfterImage's latest additions.
[2002-01-08: sashav]
* Completed documenting ascompose.c Regenerated .HTML docs
[2002-01-07: sashav]
* done with about 50% of ascompose documentation.
[2001-12-31: sashav]
* Fixed HSV and HLS colorspaces to correctly assign meaningful HUE values
with straight mapping onto 360 degree colorcircle with red being 0, green
120 and blue 240 degrees. Fixed adjust_asimage_hsv to correctly translate
degrees. debugged <hsv> tag in ascompose. Added ARGB32_RED16 macro and the
likes.
* added HSV transformation
[2001-12-28: sashav]
* Fixed alpha handling in allanon and add methods of blender.c Fixed minor
bugs in ascompose related to clip_height handling in composite tag.
[2001-12-27: sashav]
* greateluy improved ascompose fixed bug when colormap had 128 entries in gif
transparency
[2001-12-26: sashav]
* Added compress, replace and delay attributes to save tag in ascompose.
[2001-12-25: sashav]
* debugged GIF and XPM transparency
[2001-12-24: sashav]
* Fixed bug in PNG with alpha writing, where alpha channel could get lost.
Fixed bug in Gif reading where extensions where lost. Updated ascompose to
use show_progress/error instead of plain printf fixed libAfterBase to
compile
[2001-12-14: sashav]
* Lots of fixes for session handling, look/feel loading and non-default-visual
handling
* Fixed visual detection code to not create new Colormap when Default Visual
is in use.
* Fixed Visual Autodetection code to correctly create windows for visuals
other then default visual.
[2001-12-12: sashav]
* Added ability to specify preferred Visual ID via env. variable
AFTERIMAGE_VISUAL_ID
[2001-12-07: sashav]
* When scale_asimage is called with quality set to POOR it will not
interpolate pixels, but merely duplicate existing ones. When scaling down is
perfomed it will it will keep averaging pixels values nevertheless. Added
tiling_range to ASImageOutput to allow filling of portion of the image with
the same scanline. Fixed bug in enlarging algorithm causing corruption of
the image near the right edge.
[2001-12-06: sashav]
* Fixed minor compilation problems reported by Reiner Rohlfs.
* added ARGB2pixel conversion for 16/15bpp; Fixed bug where root position of
window was not updated on move
[2001-12-05: sashav]
* Fixed bugs in merge_asimage and bevel drawing causing segfaults and wrong
images when negative destination is used.
* fixed bug in merge_aslayers that was not traversing layers list correctly
[2001-12-04: sashav]
* continued debugging of image rendering with varying dest position in layers
[2001-12-03: sashav]
* Removed unneeded ASVisual arg from clone_asimage.
* Completed rewriting bevel rendering. It should now correctly trim bevel when
requested to do so.
[2001-11-30: sashav]
* More rendering/look debugging. Fixed Titlebuttons handling. Started
rewriting bevel drawing to enable drawing of bevel on clipped images when
some parts of the bevel maybe outside of the clip rectangle.
[2001-11-29: sashav]
* Extensive debugging of new rendering code.
[2001-11-28: sashav]
* Implemented actiuall dubblebuffered drawing. Fixed all the compile time bug
- need to get asclook to actually draw something.
[2001-11-25: sashav]
* Added check for correct libPNG
[2001-11-20: sashav]
* Added desktop layout to ornaments - incomplete
* ByteOrder debugging - fixed misaligned green channel in ASImage-> XImage
conversion in MSBFirst != BigEndian configuration
* ByteOrder debugging
* ByteOrder debugging
* ByteOrder debugging
* ByteOrder debugging
* ByteOrder debugging
* ByteOrder debugging
* ByteOrder debugging
* ByteOrder debugging
* ByteOrder debugging
* ByteOrder debugging
* ByteOrder debugging
* portability and compilation fixes
* portability and compilation fixes
* portability and compilation fixes
* portability and compilation fixes
* portability and compilation fixes
[2001-11-15: sashav]
* Debugged Vector data drawing code and added optimizations for repetitive
data.
* Debugged Vector data drawing code and added optimizations for repetitive
data.
[2001-11-14: sashav]
* Added new fixes from Fons Rademaker Implemented ASImage support for data in
vector of doubles with additional pallette to translate into real ARGB.
* added automated check for MMX support to libAfterImage
[2001-11-02: sashav]
* Applied next batch of diffs from Fons Rademakers. Fixed several cuel bugs
in libAfterWidget, causing memory corruption. Changed ASHashableValue to be
simply unsigned long - for portability.
[2001-10-26: sashav]
* moved widget event handling into widgetevent.c/.h
* Added patches for compilation into C++ proggrams ( contributed by Fons
Rademakers) Implemented export filter into TIFF. Hopefully fixed library
order when compiling apps from libAfterImage
[2001-10-22: sashav]
* Added viewport changing functionality
[2001-10-12: sashav]
* Moved per-desktop look/feel management into session.c. Made asclook compile
and debugged libAfterImage's use of AS_ASSERT.
[2001-10-10: sashav]
* Added missing string_destroy into afterbase.c
* Added missing remove_hash_item into afterbase.c
* Fixed Makefile to work without libAfterBase
* Updated ChangeLogs
* completed update of the documentation for libAfterImage
* updated documentation and deps
* Fixed configure script to be able to compile libAfterImage and libAfterBase
at once
[2001-10-09: sashav]
* Updated most of the libAfterImage inline documentation. ascmap.h is left to
do.
[2001-10-01: sashav]
* completed updating libAfterImage to work with no X display; cleaned up in
preparation for release
[2001-09-28: sashav]
* Updated e-mail address
[2001-09-26: sashav]
* synchin
[2001-09-14: sashav]
* debugged ascp to the degree that all the panels are shown correctly
[2001-09-13: sashav]
* Added visibility to newly created basic widgets. Upgraded to typesafe
MIN/MAX using prototype from the LInux kernel. Fixed libAfterImage to do
type-safe MIN/MAX.
[2001-09-06: allanon]
[2001-09-04: allanon]
* o (libAfterImage) added blur_asimage_gauss() to do a gaussian blur; this
function currently only supports horizontal blurs o (ascompose) added
<blur> as an undocumented feature, for testing only
[2001-09-01: sashav]
* moved ascp into libAfterConf and begun work on getting it fixed for recent
changes to libAfterSTep/Image. Fixed main.c and lib.c
[2001-08-30: sashav]
* Fixed Transparency in asrender - several bugs in mytexture.c that was. Added
MyBackground and DeskBack to look configuration. added
release_asimage_by_name to asimage.c
* added cvsignore to libAfterImage/apps
* Implemented AS customized geometry parsing function; Added stub for
XParseGeometry; Fixe astile and asscale to compile without X
[2001-08-29: sashav]
* Rewrote window hierarchy handling in asrender, and started implementing
transparency handling
* further configure, Makefile and code cleanup to get it to compile without X
[2001-08-28: sashav]
* Fixed numerous bugs in libAfterImage of various severity. Got asclook to
render default look correctly.
[2001-08-28: allanon]
* o (ascompose) finalized and documented inherited attributes of <composite>:
crefid, x, y, and tint o (ascompose) added support for compiling
--without-x o (ascompose) new command-line option --root-window; when
given, the final result image of ascompose will be drawn to the root
window instead of a new window
* o (ascompose) started adding support for --without-x o (ascompose) changed
the default text spacing to 3; this needs to be an option instead
[2001-08-27: sashav]
* fixed freetype detection
* freetype compilation fixes
* fixed magic number usage in ASImage
[2001-08-25: sashav]
* fixed asrender and asclook to actually render default look properly and not
segfault in pad_asimage
* fixed ability to load several TRuyeType fonts with different point size
* added vert and horizontal spacing for fonts; Added ability to load several
TRuyeType fonts with different point size
[2001-08-25: allanon]
* o (ascompose) fixed x,y handling for <composite>; yes, i know i still
haven't documented them - they're obviously not ready yet :)
[2001-08-22: sashav]
* completed library configure cleanup - adding aslook subdir
[2001-08-21: sashav]
[2001-08-21: allanon]
[2001-08-20: sashav]
* fixed nasty bug where if dst_x = 0 - and top image is smaller then bottom
one - merge_layer generates garbadge
* Added image cloning/padding functionality to libAfterImage
[2001-08-19: sashav]
[2001-08-17: sashav]
* Added code for Buttons, Icons and empty items to asrennderer. Fixed bugs in
image referencing using ImageManager. Added render_pad_align_image.
[2001-08-16: sashav]
* Fixed utterly ugly bug in image decompression code where first position in
channel data get corrupted with the data from adjusten channels. Fixe
mytexture tile generation to simply set image's background to back_color.
Added copy_asimage_channel
* Moved back_color into ASImage to maintain image consistency between
subsequent decodings and encodings. Changed back_color to solid_color in
ASImageLayer, to use it only when image is NULL. Updated everything
accordingly. Changed asimage2ximage to restore missing scanlines based on
image's back_color.
* updated ascompose to use init_image_layer for layer initialization - it was
missing back_color to be set to default. Updated init_image_layer
accordingly
[2001-08-15: sashav]
[2001-08-15: allanon]
* o (ascompose) made <composite> attrib "op" optional o (ascompose) added
"merge" to <composite> o (ascompose) added "keep-transparency" to
<composite> o (ascompose) added "refid" to all of the options that support
width and height options o (ascompose) made <tile> attrib "width" and
"height" optional o (ascompose) added new tag <text> and documentation to
README o (ascompose) added new tag <bevel> and documentation to README o
(ascompose) added new tag <solid> and documentation to README o (ascompose)
now uses refcounts to deallocate images when possible
[2001-08-14: sashav]
* Fixed corners drawing while drawing the inline of the bevel. Fixed
ImageDecoder to allow for im meber to be NULL, but back_color - not 0
Improved merge_layers to only merge portions of scanlines that overlap -
without padding top scanline. Updated all blenders accordingly.
* added bevel with solid inlines; Fixed gradiented bevel drawing on very large
distances; updated deps
[2001-08-13: sashav]
* Implemented create/init_image_layers Implemented AddLabel in asrenderer
Fixed mystyle_draw_text
[2001-08-10: sashav]
* added sanity checks to bevel parameter. Need to fix bevel increment
calculations for inline.
* Split asimage.c into 3 files - asimage.c, transform.c and ximage.c, with
asimage.h being split up accordingly. Fixed bug in create_asimage code to
check for validity of compression parameter. Fixed introduced bug in
merge_layers where we forgot to skip first layer in the main loop.
[2001-08-10: allanon]
* o sync commit so sasha can see a problem with <bevel>
[2001-08-09: sashav]
* Mostly implemented window background rendering and layers merging in
asrender code.
[2001-08-08: sashav]
* Changed license of libAfterBase and libAfterImage to LGPL
[2001-08-08: allanon]
* o (ascompose) reordered usage message to be alphabetical o (ascompose)
upped version to 1.2 o (ascompose) added automagical output format
detection based on extension o (ascompose) added id parameters to all xml
tags o (ascompose) added <recall> and <save> xml tags, and docs to README
[2001-08-07: sashav]
* Updated ascompose with ability to save images into any supported file
format(kowalski) Also added ability to write out image without displaying it
first.
* Fixed bug found by k0walski where file export filters would return False
even if save was successful.
* Updated MyTexture, MyLook and MyStyle to use libAfterImage. Rewrote session
management a bit for saner look/feel management. Added CursorManager code.
Added asclook app to libAfterConf to provide for preview of arbitrary looks.
Fixed several bugs in Image loading code.
[2001-07-26: sashav]
* Finally brought giflib to its knees by implementing lots of cludges to work
around its bugs. Thank god gif's colormap is stored uncompressed! Now
libAfterImage can both read and write multiimage gif files. HipHip Hooray!
[2001-07-25: sashav]
* playing cat and mouse with giflib bugs - and there are plenty of those.
We'll need to move portions of it into libAfterImage to ease the pain.
* Minor cleanup in gif writer
[2001-07-24: sashav]
* no message
* fixed several bugs in colormap generation, and implemented gif output filter
( sort of )
[2001-07-23: sashav]
* completed colormapping code allowing for different degrees of dithering
[2001-07-22: sashav]
* polished colormap calculation quite a bit and made it to allocate just the
right amount of colors by adding more passes
[2001-07-20: sashav]
* completed implementation of quantization and colormapping of images.
Debugged, but still can be optimized for speed.
[2001-07-19: sashav]
* Implemented some experimetal code to create colormapped images and allow for
dithering and optimum color selection.
[2001-07-17: sashav]
* Rewrote MyLook from config generation . Updated MyStyles to use ASImages and
ASFonts
[2001-07-16: sashav]
* Added image reference to libAfterImage Fixed font dereferencing ( see
release_font() ). Started implementation of libAfterImage interface in
libAfterStep.
[2001-07-13: sashav]
* Added get_drawable_size to afterbase.c (damn allanon :) Added define for
mystrcmp Added check for libAfterBase presence before setting output
threshold in asmerge
* Fixed clobbered variable in export.c; Fixed missing SHOW/START_TIME in
afterbase.h.in Added MMX notice to README's.
* Updated docs to reflect recent API changes
* Upped library version to 0.81
* Fixed libAfterImage to compile nicely when libAfterBase is not available
* added mirroring capability to asflip
[2001-07-13: allanon]
* o added <mirror> xml tag to ascompose, and documentation in README
[2001-07-12: sashav]
* Implemented mirror_asimage() for image mirroring (as you could have guessed
:)
* fixed compile bug in ASImage2gif
* Added templaites for image export filters. Implemented RGB and greyscale
JPEG image writing. Implemented RGB and greyscale PNG image writing with or
without alpha channel. Added usefull SHOW_TIME and START_TIME macros to
libAfterBase
[2001-07-11: sashav]
* disabled doc.html generation on make install - that was stupid to try and do
that.
* Added final astext tutorial comments. Reupdated documentation.
* final fix to installation and Makefiles
* added afterimag.h to incs
* fixed headers locating in /usr/local/include
* fixed installation of afterimage-libs script
* fixed standalon configure run
* fixed doc installation in Makefile
* fixed doc installation in Makefile
* fixed doc installation in Makefile
* fixed doc installation in Makefile
* fixed doc installation in Makefile
* updated Makefile to install include files as well
* fixed configure in libAfterImage to have separate enablers for static and
shared libs
[2001-07-11: allanon]
* added ascompose, an XML-based image composition tool
[2001-07-10: sashav]
* Updated documentation abit to refelect recent code changes and make it
easier to link from main index page.
* fixed bug in xpm parser where spaces would get treated incorrectlt in
colormap; added READMEs;
[2001-07-09: sashav]
* Added functionality to move_asimage_channel to be able to move to arbitrary
channels from arbitrary channels. Added documenting comments to astext.c and
fixed text layout abit.
* Fixed parse_argb_color. Added options to astile and asflip for easier
operation. Fixed asgrad to treat gradient type well, if gradient is not
specified. Added few more points to asgrad sample gradient to create better
illusion of the rainbow.
* Added report of the scale factor to asscale
* Changed astile to tile to twice the size of the image
* Fixed bug in 3D text rendering causing us to skip scanline inbetween lines
of text. Added sample image rose512.jpg, and TTF font: test.ttf. Added nice
defaults to all the sample apps, so that ppl can see libAfterImage in its
full beauty.
* Adde Usage to all the examples. Fixed segfault in asscale. Added error
message on image file not found. Added texturized text sample images.
[2001-07-08: sashav]
* fixed parse_argb_color to check for dpy not being NULL - to avoid segfaults,
babe
* added usage display to asflip and asgrad and fixed some other places where
parse_argb_color would be called prior to dpy initialized
* added clocking to draw_text; added usage and more sophisticated usage to
astext
[2001-07-07: sashav]
* fixed 3D drawing and implemented all 6 modes
[2001-07-06: sashav]
* fixed glyph compression again; Started implementing 3D text.
* Fixed bug in asimage.c where fake_im was not initialized; Corrected glyph
compression code
* asfont fixin
* fixed layers merging to correctly draw the background layer when image is
missing; Fixed spacing calculations, while drawing text
[2001-07-05: sashav]
* Temporarily plugged bug in layer merging descovered by allanon, when
bottommost layer does not have any image in it.
* Reimplemented image output to allow for flexible support for many image
formats - right now it could be ASImage itself, XImage, mask XImage and
ARGB32. Surprisingly that simplified code quite abit. Fixed ugly bug in
create_asimage. Completed and debugged astext tutorial.
* fixed text size calculations; fixed (almost) bevel drawing - need to think
about what to do with clip_width/height in Layer specs
[2001-07-04: sashav]
* fixed lots of bugs in glyph compressing and rendering, still something is
wrong with size calculation func. Added move_asimage_channel to swap
channels on images
[2001-07-03: sashav]
* implemented astext properly
* implemented asgrad, asflip and astext. Althou astext still needs some work.
* added prototypes for asflip, asgrad and astext examples/tutorials/testapps
to the libAfterIMage suit
[2001-07-02: sashav]
* Completed ASMerge implementation. Used it to debug all the merging routines.
Everything works perfect now. Added doc/html/asmerge.html - another
tutorial. Added list_scanline_merging function to blender.c so that we can
show descriptions on different merging methods.
* Completed ASMerge implementation. Used it to debug all the merging routines.
Everything works perfect now. Added doc/html/asmerge.html - another
tutorial. Added list_scanline_merging function to blender.c so that we can
show descriptions on different merging methods.
* Added ASMerge example, and added translator from function name to function
for scanline merging/blending.
[2001-06-29: sashav]
* Added ASScale and ASTile examples with documentation and stuff. Fixed bug in
asimage.c causing artifacts when image is tiled with TOP quality. cleabed up
cvsignore in include/
* fixed and simplified configure script for examples to libAfterImage. Have a
good day :)
[2001-06-28: sashav]
* Added documenting comments to asview.c so it generates nice little Tutorial
as the result. Added lots of X functions to xref files, so now all the
source code is very nicely crossreferenced. Added references to asview to
other headers etc.
[2001-06-27: sashav]
* Completed documenting asfont.h Added afterimage.h with library overview got
rid of old doc files added freetype and X11 xrefs so that docs are nicely
crosslinked with X docs
[2001-06-26: sashav]
* asfont.h documentation 50% done
* added Makefile targets fopr autogeneration of documentation in man and HTML
formats. Added installation procedure for those.
[2001-06-25: sashav]
* Documented blender.h and import.h - asfont.h to go. Also it sound like a
good idea to add afterimage.h with overview notes about libAfterImage and
references to components.
[2001-06-24: sashav]
* completed fixing libraries includes
* rewrote libraries includes generation; fixed freetype checking to skip old
garbadge left over in X11R6 dir
[2001-06-22: sashav]
* Completed documenting asimage.h and asvisual.h. asfont.h and import.h to go
* fixed libAfterImage include to always use -I gcc flag
[2001-06-21: sashav]
* MOre documentation writing - ASImage.h is almost done.
* got asview to compile cleanly and find all the relevant libraries - need to
think about simplifying configure scripts and headers there
[2001-06-21: owsla]
* added stop_image_output() to asimage2mask_ximage()
[2001-06-20: sashav]
* asimage.html and asimage.man updates
* Implemented proper generation of mask XImage (1bpp)
[2001-06-19: sashav]
* more doc
* Implemented ARGB->pixel conversion for 32 and 24 bit True color visual Fixed
parse_argb_color to correctly treat 12 digit color value as 48bit RGB. More
libAfterImage documenting
* Fixed bug in find_file preventing it from finding files when not NULL search
path is specified. Fixed bug in asimage2pixmap causing it to use wrong gc
variable. Added more documentation to asimage.h and respectively to
asimage.html
[2001-06-18: sashav]
* Added lots of self documenting comments to libAfterImage/asimage.h to allow
for automagic documentation generation using robodoc package. Seems to be
the only package that works decently.
[2001-06-17: sashav]
* started implementing sample repository of example libAfterImage apps
[2001-06-15: sashav]
* Added prototypes of the man pages for libAfterImage
[2001-06-14: sashav]
* added MMX enabling switch to libAfterImage configure
* Completed Pseudo-color support with colormap allocation and ximage handling.
Added create_asimage and destroy_asimage for convinience. Added missing
stuff to libAfterImage/afterbase.h to make it completely independant.
libAfterImage thus should be ready for release - only to write up some docs
:)
[2001-06-13: sashav]
* completed flip-flopping code. Added show_debug to show_* series in
libAfterBase/output.c started working on collor allocation on PseudoColor
visuals
[2001-06-12: sashav]
* completed implementation of image alpha beveling. completed implementation
of image flipping - need some cleanup thou to allow for tiling.
[2001-06-11: sashav]
* fixed configure to produce correct dependencies
* no message
* Hopefully fixed memory allocations audit on libAfterBase.
* Added ASImageBevel to allow for transparent bevelling of images while
merging layers. Hopefully fixed X libs in configure script - need to rerun
autoconf
* added configclean target to the top level makefile; fixed libraries
makefiles to correctly generate .depend files
* fixed configure scripts to not do extra checks when invoked from one
another
[2001-06-11: owsla]
[2001-06-10: sashav]
* got rid of old image loading stuff. LoadImageWithMask moved into resources.h
and is now simple shortcut to libAfterImage loader
[2001-06-09: sashav]
* made test to compile; Fixed several bugs in libAfterImage; optimized 2bpp
handling in xpm code; builtin xpm handler is about 2 times as fast as libXpm
on small images and 5 times on larger ones
[2001-06-08: sashav]
* configure fixes
* updated configure scripts
* further progress - src/test compiles now, but need to redo
libAfterImage/configure
* fixed compilation bug in import.c
* rebuilt configure scripts
* updated configure scripts to reflect addition of the xpm parsing code
* Completed custom xpm implementation. Needs to be debugged thou.
* hopefully fixed main configure script to gracefully handle libraries
configuration as well. MOved configure.h and some other headers into include
dir, so it could be used by modules
[2001-06-07: sashav]
* Fixed MyName requests in selfdiag.c; Added xpm.c to implement custom xpm
handling code - appears to be rather simple and effective. Most of the
things are implemented, except for top level routine.
* cleaned configure script for libafterimage. added afterimage-libs script to
print list of LD_FLAGS for linking with libafterimage
[2001-06-06: sashav]
* fixed bug found by allanon when asimage2ximage would produce black ximage
due to unset flags in scanline
[2001-06-04: sashav]
* fixed bug in configure --with-jpeg
* added missing .depend
* sorted out compilation problems, and test now builds with new libAfterImage
[2001-06-04: owsla]
* updated configure
* updated the .cvsignore files
[2001-06-03: sashav]
* got libAfterImage to compile
[2001-06-02: sashav]
* hopefully resolved libAfterImage dependancy on libAfterBase
[2001-06-01: sashav]
* separated libAfterImage files from the rest of the crowd
* started up libAfterImage
[2001-05-30: sashav]
* Prototyped ASRenderer interface
* completed fixing old lib files to compensate for file relocation. There
needs to be something done to Mkaefiles and configure to correctly set up
include paths and libraries.
[2001-05-28: sashav]
* Split ASVisual from ScreenInfo and rearranged ARGB32. Added ASGradient to
asimage.h and made gradient_t to be a synonym to it. That should allow for
better library independancy - visual will go with libAfterImage while
ScreenInfo will move into libAfterStep , or, possibly will split up even
more. Goal is to make libAfterImage completely independant from everything
else.
[2001-05-23: allanon]
* Updated FSF snail mail address.
[2001-05-12: sashav]
* added code to check for valid channels while flipping
[2001-05-10: sashav]
* Completed gradients drawing code. Started on flipping code. Added direction
reverse to output method.
[2001-05-09: sashav]
* Implemented vertical gradient drawing. sorted out relationship between
channel numbering and ARGB32 component order - its the same now.
* fixed mono line encoding to add zero terminator at the end; fixed scanline
back_color initialization to have alpha at 0xFF; fixed decoration layouting
to not use stack memory in linked list; fixed property event handler to
initialize variable to NULL; Afterstep now starts , althou does not do
anything usefull
[2001-05-08: sashav]
* coded gradients drawing using ASImages with smoothing and dithering - works
very blasted fast. Fixed numerous include's issues
[2001-05-07: sashav]
* fixed create_screen_window for InputOnly windows fixed bug in screen
initialization where Colormap ID would get lost fixed bug in desktop
creation code where desktop->scr would never get initialized. Added
show_progress function to work similarly to show_warning/error Rearranged
thresholds for output verbosity Added stdargs.h to import.c - suggested by
Sean Dague
[2001-05-04: sashav]
* completed ASFont implementation as needed at the moment - there will need to
be some work done in order to adapt it to locale support.( as well as in
several other places). changed glyph compression algorithm once again to run
length encode only 0s and FFs, and store rest in raw format. That allows to
cut down on memory since we don't use 2 bytes anymore. 3 step antialiasing
works now. Off to image rotation and gradient drawing.
[2001-05-03: sashav]
* Improved glyph compression algorithm so now it actually reduces size, even
on ery small fonts. Tryed to implement additional glyph smoothing, but
something is wrong - disabled for now.
[2001-05-02: sashav]
* fixed font drawing to group glyphs as close together as possible - make for
much nicer effect.
* debugged X11 fonts loading and drawing. Still need to do something about
negative left bearings - ought to really offset a pen to overlap charcters
[2001-05-01: sashav]
* Implemented antialiasing for native X fonts - still needs some debuggin.
[2001-04-30: sashav]
* added RLE compression to the font glyph cache. added character range
specification for the font. added right-to-left writing order on per font
basis.
[2001-04-27: sashav]
* implemented text drawing using precached TTF fonts -- needs addition of
locale support in future. Fixed image merging to do clipping correctly.
Added image background color
* fixed freetype headers problems and a bug in font hashing
[2001-04-26: sashav]
* started implementing font manager and freetype support
[2001-04-25: sashav]
* moved scanline merging functions into separate file
* fixed most blending function so not to tresspass alpha channel boundaries.
Added tint_scanlines and implemented dissipation
* fixed bug in image loading where piexls would get shifted by one to the
right. added 14 image blending functions - almost matching that of the
GIMP's capabilities, except for multiply and divide modes, which I don't see
much sense in. Added RGB->HSV->RGB and RGB->HLS->RGB conversion functions.
[2001-04-24: sashav]
* cleaned up output/encoding functionality. Added quality parameters to
dynamically adjust quality on per image basis. Implemented alpha blending
and generic layer merging framework.
[2001-04-23: sashav]
* debugged tiling functionality and optimized it so not to do repeated
compression on the same data. Added compression ratio specification on per
image basis. OPtimized buffer copy to use 32bit data transfer. Implemented
tinting( as a part of tiling process ).
* debugging tiler
[2001-04-22: sashav]
* added tile_image() - needs debugging
* ASImageDecoder
[2001-04-20: sashav]
* added TIFF import and implemented generic image loading function with search
capabilities and subimage loading. Fixed two more bugs in image scaling.
* added GIF import filter; added configure code to detect gif and tiff
libraries
[2001-04-19: sashav]
* .CUR is the same as .ICO only type = 2
* Added support for .PNM, .PPM, .ICO, .BMP image file formats - TIFF and GIF
to go
[2001-04-18: sashav]
* xcf image loading now works, but only gets you first layer with the same
size as whole image. Need to implement layers merging for ASImages to get
complete support for GIMP's xcf files
* fixed bug in xcf channel loading - theer are no such thing as channel type
[2001-04-17: sashav]
* most of the preparation work for xcf reading is done - now off to actually
create ASImage from it. added code to poupulate ASScanline with 0's where
data is not available;
[2001-04-16: sashav]
* minor quality tweaks in rations 1-2 scaling up. Started implementing
ASImageDecoder for automatic tinting/tiling
* IMplemented JPEG input filter for ASImage. Fixed long standing bug in image
scaling causing wierdness in scaling UP with small ratios. Started
implemntation of XCF file reader.
[2001-04-15: sashav]
* implemented png file reader and fixed blatant bug in scale image up where
first line got garbadge in it
[2001-04-14: sashav]
[2001-04-13: sashav]
* compilation fixes
* Implemented xpm loading into asimage. Updated asimage to correctly use
ScreenInfo. implemented create_screen_pixmap and create_screen_ximage
* fixed test abit to not spit lots of warnings
[2001-04-08: sashav]
* fixed bugs in scaling down code with ratio > 2; It appears that you can
create windows with different visual only if you create new colormap and
allocate border color from it as well. Fixed screen.c accordingly. We keep
black and white pixels and colormap in ScreenInfo now - should use it
instead of X macros
[2001-04-06: sashav]
* implemented workaround for some stupid X servers that denys you your
constitutional right to use whatever Visual you like.
* couple bugfixes for new visual handling code. moved ximage->scanline->ximage
code from asimage.c to screen.c still need to implement PseudoClor handling
* hopefully fixed bug in 2x scaling up code
[2001-04-05: sashav]
* no message
* reworked ScreenInfo abit to include visual info. Added screen.c to
libafterstep to collect together all the Screen/display related stuff -
ConnectX, MyXErrorHandle, and several new things : init_screen and
destroy_screen. nolock_mods has been moved outside of the ScreenInfo as it
is per-display and not per-screen stuff. all_screens global variable holds
pointers to all ScreenInfo structrures for available screens. Added
query_visual_info to try and obtain best possible visual for AfterStep to
use. Need to move ximage->as->ximage conversion stuff into screen.c.
ConnectX now takes only one parameter - pointer to ScreenInfo is
discontinued
* same old Ximage cleanup
[2001-04-04: sashav]
* asimage->ximage debugging again - this time about 50% performance increase.
* more optimization to ximage output algorithm - that was the last of it I'm
sick and tired from this stuff
[2001-04-03: sashav]
* Some tweaks to XImage writing code to speed things up - we were spending
up to 30% of time writing XImages - unacceptable.
* fixed bug in line interpolation causing stripy artifacts in scaling up
* fixed bug in line interpolation causing stripy artifacts in scaling up
* mmx debugged
[2001-04-02: sashav]
* Added some MMX inline assembly to image scaling code to hopefully make it
faster - need to verify if that indeed is the case.
* aaa
[2001-04-01: sashav]
* scaling speed optimizations
[2001-03-31: sashav]
* debugged new scaling code - scale up is rather nice even with huge ratio -
check out src/test
[2001-03-30: sashav]
* Implemented complete scaling Up procedure for arbitrary ratio - if it'll
work then similar stuff will go for 1-2 and 2-3 ratios. Added
reshape_winlist to WinList to actually generate layout of titlebars based on
WinList data and store pointers to them in appropriate place in WMDecor
structures. It now needs to be debugged as a prototype for other modules.
* debugged scaling down algorithm - it now works and scale things down rather
nicely. Thus we have a proof of concept and can proceed on to scaling up -
which is mopstly implemented already
[2001-03-29: sashav]
* completed implementation of scaling down of ASImages. Added dithering
capabilities to ASImage->XImage conversion to hopefully produce better
results on 16bpp and 15bpp Fixed bug in ASWinLIst message processing to
create WinList if it did not exist. Fixed Bug in afterstep to initialize
handlers in main window list to correct functions.
* defined structure of high level scaling API
[2001-03-28: sashav]
* Added AS message reading/partiall handling to new WinList. Moved
get_window_* functions into aswinlist.c Changed the way process_message is
called - it now takes ASMessage * as a param. Made everything compiling.
* some theory investigation into up scaling algorithms with smoothing
[2001-03-27: sashav]
* the best variant of compression algorithm - average compression ratio is
about 75for highly random images(nature) and 30for regular images (naked
body, etc.); no off to more exciting things
[2001-03-26: sashav]
* no message
* fixed compression code
[2001-03-24: owsla]
* removed static keyword from libasimage_decode_line, this was preventing it
from being exported in the lib, which made the test program fail
[2001-03-23: sashav]
* optimized asimage decompression algorithm scaling down algorithm
implemented/.
* extensive asimage debugging - compression now seems to work fine
[2001-03-22: sashav]
* Completed implementation of Pixmap->ASImage->Pixmap cycle Now off to
debugging and implementing of scaling/alpha-blending/etc.
[2000-12-12: sashav]
* libasimage has been renamed to libasGUI
[2000-09-18: sashav]
[2000-05-15: sashav]
* asImageFromXImageTest
|