1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274
|
2013-06-22 14:25 pabs3
* Doc/changes.txt, Lib/fontTools/__init__.py, setup.py: Release
fonttools version 2.4
2013-06-22 13:01 pabs3
* MetaTools/buildChangeLog.py: Fix the location of the SVN
repository
2013-06-22 08:16 pabs3
* Lib/fontTools/ttx.py: Fix syntax error
2013-06-22 08:13 pabs3
* Lib/fontTools/ttx.py: Detect both types of quotes when detecting
OTF vs TTF XML.
Fixes: http://sourceforge.net/p/fonttools/bugs/47/
2013-06-22 06:47 pabs3
* Doc/ttx.1, Lib/fontTools/ttx.py: Writing to stdout is not
actually implemented yet
2013-06-22 06:43 pabs3
* Doc/ttx.1, Lib/fontTools/ttx.py: Implement writing output to
arbitrary files including stdout.
Partially-fixes:
http://sourceforge.net/p/fonttools/feature-requests/7/
2013-06-12 05:04 pabs3
* Lib/fontTools/ttLib/tables/otConverters.py: Fix consistency of
space/tab usage.
Reference:
http://docs.python.org/reference/lexical_analysis.html#indentation
2012-11-10 17:58 jvr
* Lib/fontTools/ttLib/tables/_k_e_r_n.py: Georg Seifert: fix bug
with Apple's kern table format
2012-10-18 12:49 jvr
* ., Lib/fontTools/afmLib.py, Lib/fontTools/cffLib.py,
Lib/fontTools/fondLib.py, Lib/fontTools/misc/arrayTools.py,
Lib/fontTools/misc/bezierTools.py, Lib/fontTools/misc/psLib.py,
Lib/fontTools/misc/textTools.py, Lib/fontTools/nfntLib.py,
Lib/fontTools/pens/basePen.py, Lib/fontTools/t1Lib.py,
Lib/fontTools/ttLib/__init__.py, Lib/fontTools/ttLib/macUtils.py,
Lib/fontTools/ttLib/sfnt.py,
Lib/fontTools/ttLib/tables/D_S_I_G_.py,
Lib/fontTools/ttLib/tables/_g_a_s_p.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/tables/ttProgram.py, Lib/xmlWriter.py,
fonttools: merging fixes & changes from delft-sprint-2012
2012-03-01 13:26 jvr
* MetaTools/build_otData.py: cosmetic change to check whether I can
check in
2011-10-30 12:26 pabs3
* Lib/fontTools/ttx.py: Fix some typos in the ttx usage
instructions
Patch-by: Paul Flo Williams <paul@frixxon.co.uk>
Fixes: https://bugzilla.redhat.com/694387
Fixes: http://sf.net/support/tracker.php?aid=3279073
2011-03-28 10:41 pabs3
* Lib/fontTools/ttx.py: Remove shebang from ttyx.py since it is not
executed directly
2011-03-28 10:18 pabs3
* LICENSE.txt, Lib/fontTools/misc/transform.py, Windows/README.TXT,
Windows/fonttools-win-setup.iss, Windows/fonttools-win-setup.txt,
Windows/ttx.ico: Remove executable permissions from files that do
not need them
2011-02-13 07:28 pabs3
* Lib/fontTools/ttLib/tables/_h_m_t_x.py: Fix bug in last commit
2011-02-13 07:01 pabs3
* Lib/fontTools/ttLib/tables/_h_m_t_x.py: Be more thorough when
working around font bugs in the hmtx table
https://bugs.launchpad.net/ubuntu/+source/fonttools/+bug/223884
2011-02-13 06:27 pabs3
* Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/tables/_l_o_c_a.py: Be more thorough when
working around font bugs in the loca/glyf tables
https://bugs.launchpad.net/ubuntu/+source/fonttools/+bug/223884
2011-02-13 06:25 pabs3
* Lib/fontTools/ttLib/tables/O_S_2f_2.py: Be more thorough when
working around font bugs in the OS/2 table
https://bugs.launchpad.net/ubuntu/+source/fonttools/+bug/223884
2011-02-13 06:24 pabs3
* Lib/fontTools/ttLib/tables/_l_o_c_a.py: Long-format loca tables
are unsigned not signed.
2010-12-29 10:43 pabs3
* Windows/README.TXT, setup.py: Fix the instructions for building a
Windows installer.
2010-01-09 09:12 pabs3
* Doc/documentation.html, Doc/ttx.1, Lib/fontTools/fondLib.py,
Lib/fontTools/ttLib/__init__.py: Fix typos: 'neccesary' should be
'necessary'.
2009-11-08 15:58 pabs3
* Doc/changes.txt, Lib/fontTools/__init__.py, setup.py: Release
fonttools version 2.3
2009-11-08 15:57 pabs3
* Lib/fontTools/misc/eexec.py: Fix loading the
fontTools.misc.eexecOp module that speeds up
fontTools.misc.eexec.
2009-11-08 15:55 pabs3
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: Fix some broken
assertions in the cmap format 1 code.
Shame on Gentoo for not forwarding the patch upstream.
2009-11-08 15:54 pabs3
* setup.py: Install the manual page to the correct location.
Shame on MacPorts and Gentoo for not forwarding this change.
2009-11-08 15:53 pabs3
* Lib/fontTools/ttx.py: Fix typo in help output.
2009-11-08 15:52 pabs3
* Doc/changes.txt: Add brief entries to Doc/changes.txt for the
past two releases.
2009-11-08 15:51 pabs3
* Doc/install.txt: Drop version number from Doc/install.txt
2009-11-08 15:50 pabs3
* MANIFEST.in: Include the Doc/ChangeLog file in source tarballs
2009-11-08 11:19 pabs3
* Doc/ttx.1: Document the new -y option to choose which font in a
TTC to decompile.
2009-11-08 11:00 pabs3
* Lib/fontTools/unicode.py: updated unicode module to unicode 5.2.0
2009-11-08 06:39 pabs3
* Lib/fontTools/ttLib/tables/ttProgram.py: Raising strings is
deprecated in Python 2.5, raise an exception instead.
2009-03-24 09:42 pabs3
* Lib/fontTools/ttLib/sfnt.py: Fix some warnings due to signedness
and 64-bitness issues
2009-03-24 09:41 pabs3
* MetaTools/roundTrip.py: Fix arguments to diff in the roundTrip
testing tool
2009-03-23 07:11 pabs3
* Lib/fontTools/ttLib/tables/.cvsignore: Remove old .cvsignore file
2009-03-22 15:32 pabs3
* Doc/ChangeLog.txt, Doc/install.txt, MetaTools/buildChangeLog.py,
MetaTools/logmerge.py, Windows/README.TXT: Adapt Doc and
MetaTools to the use of SVN instead of CVS
2009-02-22 08:55 pabs3
* Lib/fontTools/ttLib/__init__.py, Lib/fontTools/ttLib/sfnt.py,
Lib/fontTools/ttx.py: Apply remainder of #1675210: add support
for TrueType Collection (TTC) files.
2008-09-16 14:14 jvr
* Lib/fontTools/ttLib/tables/ttProgram.py: don't use 'as' as a
name, it's a keyword in Python >= 2.6
2008-06-17 20:41 jvr
* Lib/fontTools/ttLib/sfnt.py: fixed buglet that caused the last
table in the font not to be padded to a 4-byte boundary (the spec
is a little vague about this, but I believe it's needed, also,
Suitcase may complain...)
2008-05-18 06:30 pabs3
* Doc/ChangeLog.txt: Update changelog
2008-05-18 06:28 pabs3
* Lib/fontTools/__init__.py, setup.py: Get ready to release version
2.2
2008-05-17 09:21 jvr
* Lib/fontTools/unicode.py: updated unicode module to unicode 5.1.0
2008-05-17 08:52 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: a different fix for
[1296026]: just comment out the offending assert
2008-05-17 08:44 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: back out 'fix', as this
solution isn't portable
2008-05-16 17:33 jvr
* Lib/fontTools/agl.py: updated to aglfn 1.6
2008-05-16 15:07 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: cmap format 1 support,
contributed by rroberts
2008-05-16 14:28 pabs3
* MANIFEST, MANIFEST.in, MetaTools/makeTarball.py: Use setup.py
sdist to create the tarball for distribution
2008-05-16 08:45 pabs3
* Doc/ttx.1, setup.py: Add cleaned-up and updated manual page from
the Debian package.
2008-05-16 07:17 pabs3
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: Apply 1296026: fix
tracebacks in some timezones
2008-03-11 07:25 jvr
* Lib/fontTools/misc/psLib.py: - turned ps exceptions into classes
and renamed them
2008-03-10 21:58 jvr
* Lib/fontTools/misc/psCharStrings.py, Lib/fontTools/t1Lib.py: -
t1Lib.py can now properly read PFA fonts
- fixed "flex" bug in T1 charstring reader
2008-03-09 21:43 jvr
* Lib/fontTools/ttLib/tables/otTables.py: added refactoring note
2008-03-09 20:48 jvr
* Lib/fontTools/ttLib/tables/otBase.py: minor fix: one zero too
many in assert
2008-03-09 20:39 jvr
* Lib/fontTools/ttx.py: added comment, the OTL Extension mechanism
should not be here
2008-03-09 20:13 jvr
* Lib/fontTools/ttLib/tables/otBase.py: fixed some comment typos
2008-03-09 08:58 jvr
* Lib/fontTools/ttLib/tables/V_O_R_G_.py: don't crash on empty VORG
table (reported by Werner Lemberg)
2008-03-08 20:29 jvr
* Lib/fontTools/ttLib/sfnt.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py: squash 2 bugs related to
the numpy conversion
2008-03-07 19:56 jvr
* Lib/fontTools/cffLib.py: - use the builtin symbols instead of the
types module
2008-03-07 19:49 jvr
* Lib/fontTools/cffLib.py: better float testing, so numpy.floats
also work.
2008-03-04 15:42 jvr
* Doc/install.txt: updated for numpy (this file needs a thorough
review)
2008-03-04 15:34 jvr
* Lib/fontTools/ttLib/tables/_g_a_s_p.py: initialize data to empty
string instead of list
2008-03-04 15:34 jvr
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: ar.typecode() doesn't
exist in numpy, but then again, this was overkill
2008-03-04 15:25 jvr
* Lib/fontTools/misc/arrayTools.py,
Lib/fontTools/misc/bezierTools.py, Lib/fontTools/nfntLib.py,
Lib/fontTools/ttLib/sfnt.py,
Lib/fontTools/ttLib/tables/G_P_K_G_.py,
Lib/fontTools/ttLib/tables/_c_m_a_p.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/tables/_h_m_t_x.py,
Lib/fontTools/ttLib/tables/_l_o_c_a.py,
Lib/fontTools/ttLib/test/ttBrowser.py, setup.py: converted usage
of Numeric to numpy
2008-03-04 15:04 jvr
* Lib/fontTools/ttLib/test/ttBrowser.py: note this file is
deprecated
2008-03-04 15:02 jvr
* Lib/fontTools/ttLib/tables/_v_m_t_x.py: removed some redundant
imports
2008-03-04 14:47 jvr
* Lib/fontTools/misc/arrayTools.py: - moved Numeric import to top
- converted tests to doctest
2008-03-01 17:26 jvr
* Doc/ChangeLog.txt: updated change log
2008-03-01 17:22 jvr
* MANIFEST: updated file list
2008-03-01 17:20 jvr
* Lib/fontTools/__init__.py, setup.py: post 2.1 version numbering
2008-03-01 17:03 jvr
* Doc/bugs.txt: see sf tracker
2008-03-01 16:43 jvr
* Lib/fontTools/ttLib/tables/_g_a_s_p.py: the gasp portion of patch
1675210: support for ClearType
2008-03-01 15:31 jvr
* Lib/fontTools/ttLib/tables/_h_m_t_x.py: fixed oversight in
sys.byteorder transition
2008-03-01 11:43 jvr
* Lib/fontTools/ttLib/__init__.py, Lib/fontTools/ttLib/sfnt.py,
Lib/fontTools/ttLib/tables/G_P_K_G_.py,
Lib/fontTools/ttLib/tables/T_S_I__5.py,
Lib/fontTools/ttLib/tables/_c_m_a_p.py,
Lib/fontTools/ttLib/tables/_c_v_t.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/tables/_h_m_t_x.py,
Lib/fontTools/ttLib/tables/_l_o_c_a.py,
Lib/fontTools/ttLib/tables/_p_o_s_t.py: Use sys.byteorder,
getting rid of ttLib.endian
2008-03-01 11:34 jvr
* Lib/fontTools/misc/macCreatorType.py, Lib/fontTools/t1Lib.py,
Lib/fontTools/ttx.py: - removed support for Python 2.2 on MacOS
10.2
- worked around a bug in GetCreatorType() on intel Macs
2008-03-01 09:42 jvr
* Lib/fontTools/ttx.py: Expose ignoreDecompileErrors as a command
line option (-e, to set
ignoreDecompileErrors to to false)
2008-03-01 09:30 jvr
* Lib/fontTools/ttLib/__init__.py: Make a hidden feature
accessible: optionally ignore decompilation errors,
falling back to DefaultTable, retaining the binary data. It's a
bit
dangerous to enable this by default, since it can lead to hiding
other
errors or bugs (in the font or fonttools itself).
2008-02-29 14:43 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: - skip subtables of
length zero
- minor tweak in cmap 4 logic
contributed by rroberts
2008-02-19 18:49 jvr
* Lib/fontTools/ttLib/tables/T_S_I__1.py: fixed problem with
private VTT table, found by Peter Bilak
2008-01-28 07:11 pabs3
* Doc/ChangeLog.txt: Update changelog
2008-01-28 07:09 pabs3
* Lib/fontTools/__init__.py: Woops, missed a version number
2008-01-28 04:59 pabs3
* MANIFEST: Add a MANIFEST file so that we don't forget files in
the source distribution
2008-01-28 04:22 pabs3
* Doc/ChangeLog.txt: Update the changelog from the CVS history
2008-01-28 04:19 pabs3
* setup.py: Get ready to release version 2.1
2008-01-28 04:00 pabs3
* setup.py: Just use fonttools as the tarball name.
2007-11-14 07:06 pabs3
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: Fix 1762552: traceback on
amd64 with DejaVuSans.ttf
2007-10-22 09:31 jvr
* Lib/fontTools/ttLib/tables/O_S_2f_2.py: added 'support' for OS/2
version 4: can anyone verify this is correct? I can't seem to
find an OS/2 v4 spec...
2007-08-25 06:19 pabs3
* Lib/fontTools/misc/textTools.py: Patch #1296028 from Tomasz
Wegrzanowski: improve performance with CJK fonts
2006-10-21 14:12 jvr
* Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/otBase.py,
Lib/fontTools/ttLib/tables/otConverters.py,
Lib/fontTools/ttLib/tables/otData.py,
Lib/fontTools/ttLib/tables/otTables.py, Lib/fontTools/ttx.py:
Misc patches from rroberts:
fontTools/ttx.py
# support virtual GIDs, support handling some GSUB offset
overflows.
fontTools/ttlib/__init__.py
# 1) make getReverseGlyphMap a public function; I find a reverse
map
to often be useful
# 2) support virtual glyphs, e.g. references to GID's that are
not in the font.
# Added the TTFont argument allowVID (default 0) to turn this off
and on;
# added the arg requireReal ( default 0) so as to get the obvious
default behaviour when
# allowVID is 0 or 1, but to allow requiring a true GID when
allowVID is 1.
fontTools/ttlib/tables/otBase.py
fontTools/ttlib/tables/otConverters.py
fontTools/ttlib/tables/otData.py
fontTools/ttlib/tables/otTables.py
# 1) speed optimization
# - collapse for loops
# - do not decompile extension lookups until a record is
requested
from within the lookup.
# 2) handling offset overflows
# 3) support of extension lookups
# 4) Fixed FetauresParam converter class def so as to survive a
font
that has this offset non-NULL.
# This fixes a stack dump.
# The data will now just get ignored
2006-10-21 13:54 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: patches from rroberts:
# 1) Switched to using Numeric module arrays rather than array
modules arrays,
# because of a memory leak in array.array when handling elements
> 1 byte.
# 2) speed optimizations:
# - For loops are collapsed when possible
# - the data for a subtable is parsed only if a mapping value is
requested
# - if two subtables share the same data offset, then on
decompilation, they will
# share the same cmap dict, and not get decompiled twice. Same
for compiling.
# - as before, two tables with the same contents will get
compiled to a single
# data block in the font.
# 3) added (self.platformID, self.platEncID) == (3, 10) to the
list
of subtables that
# get Unicode comments.
# 4) allow item reference by GID as well as by name. I did this
when
experimenting to see if using GID references only would speed the
compile; it didn't but it seemed useful enough to leave in.
# 5) Fixed compile to/from XML: for cmap type unknown ( aka cmap
format 10, in practice.)
2006-10-21 13:41 jvr
* Lib/fontTools/cffLib.py: Some edits from rroberts:
# 1) speed optimizations
# 2) fixed parseCharset0 to support CFF-CID fonts.
# 3) fixed CharsetConverter.read to work a font that actually has
one
of the pre-canned encodings.
# This fixes a stack dump.
# I did not try to support using these encodings when writing a
font,
# as the cases will be so rare as to not justify the processing
overhead for all other fonts.
(Read: I took out some of your loop optimizations since I believe
they
made the code a lot less clear. I also have my doubts whether
they were
actually performance improvements.)
2006-10-21 13:29 jvr
* Lib/fontTools/ttLib/tables/V_O_R_G_.py: Speed optimizations from
rroberts
2006-10-21 13:27 jvr
* Doc/documentation.html, Lib/fontTools/ttLib/tables/G_M_A_P_.py,
Lib/fontTools/ttLib/tables/G_P_K_G_.py,
Lib/fontTools/ttLib/tables/M_E_T_A_.py,
Lib/fontTools/ttLib/tables/S_I_N_G_.py,
Lib/fontTools/ttLib/tables/__init__.py: Some non-official OT
tables from rrboerts. He wrote:
There are also some new files, for SING glyphlet support, that
you
may or may not want to add, because they are not in the OpenType
spec.
M_E_T_A_.py # SING glyphlet meta data table. see
'http://partners.adobe.com/public/developer/opentype/gdk/topic.html"
S_I_N_G_.py # SING glyphlet basic info. See same web site as for
META
data table.
G_M_A_P_.py # Summary of sing glyphlet info that has been stuck
into
a parent font. Not documented anywhere yet.
G_P_K_G_.py # Opaque wrapper for SING glyphlet info; travels with
application document. Is also stuck into augmented parent font.
Not
documented anywhere yet
2006-10-21 13:16 jvr
* Lib/fontTools/nfntLib.py: make this module work with semi-recent
MacPython
2006-02-25 21:39 jvr
* Lib/fontTools/misc/psCharStrings.py: support the deprecated
dotsection T2 operator
2006-01-25 15:24 fcoiffie
* Lib/fontTools/ttLib/tables/_k_e_r_n.py: In some bad fonts, kern
table is incomplete (it only contains a version number). In this
case, the code accept a table without kernTables.
2006-01-25 15:21 fcoiffie
* Lib/fontTools/ttLib/tables/L_T_S_H_.py: LTSH length can be
different of numGlyphs as the table length must be 4-bytes
aligned (assertion changed to (len(data) % numGlyphs) < 4)
2006-01-25 15:12 fcoiffie
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: The dates are stored in
8-bytes fields (Microsoft reference document) but Macintosh dates
are only coded with 4-bytes. In some fonts, these date fields are
badly coded and 8-bytes are used. So, a ValueError occurs.
2006-01-12 14:04 fcoiffie
* Lib/fontTools/ttLib/tables/O_S_2f_2.py,
Lib/fontTools/ttLib/tables/_p_o_s_t.py: Unsigned long data field
must be packed with "L" instead of "l" (sometimes an
OverflowError can occur)
2005-06-24 09:35 jvr
* Lib/fontTools/fondLib.py: Hmm, fondLib has been broken on
Python.framework for a while: I used
the native struct alignment, which is different on OSX. Changed
all
struct calls to explicitly use big endian (ready for x86...),
which
also fixes the alignment issue.
2005-05-07 08:41 jvr
* Lib/fontTools/misc/psCharStrings.py: some flex hint fixes from
rroberts
2005-04-10 13:18 jvr
* Lib/fontTools/pens/basePen.py: avoid glyphSet.get(): not all
glyphsets in use implement it.
2005-03-08 09:50 jvr
* Lib/fontTools/pens/basePen.py, Lib/fontTools/ttLib/__init__.py:
BasePen should not fail if a base glyph does not exist in the
glyph set; added get() method to _TTGlyphSet class
2005-03-08 09:40 jvr
* Lib/fontTools/pens/pointInsidePen.py: added _endPath method;
without it, we'd fail on open paths (which requires pen.endPath()
to be called instead of pen.closePath())
2005-02-25 22:31 jvr
* Lib/fontTools/misc/bezierTools.py: use highly unscientific
epsilon value
2005-02-25 12:51 jvr
* Lib/fontTools/misc/bezierTools.py: more doco, reformatted __all__
2005-02-25 12:40 jvr
* Lib/fontTools/misc/bezierTools.py: reworked test code and
results, to make the results more readable
2005-02-25 12:28 jvr
* Lib/fontTools/misc/bezierTools.py: Refactored splitting logic;
added splitQuadraticAtT() and splitCubicAtT()
2005-02-25 10:47 jvr
* Lib/fontTools/misc/bezierTools.py: show/test that _testrepr()
reprs Numeric arrays nicely, too
2005-02-25 10:42 jvr
* Lib/fontTools/misc/bezierTools.py: added a comment
2005-02-25 10:40 jvr
* Lib/fontTools/misc/bezierTools.py: factored out param -> points
conversion
2005-02-25 10:33 jvr
* Lib/fontTools/misc/bezierTools.py: renamed and rewrote _tuplify()
to _testrepr(), added tests for splitCubic()
2005-02-25 10:11 jvr
* Lib/fontTools/misc/bezierTools.py: some refactoring, some
doctests
2005-02-23 22:15 jvr
* Doc/ChangeLog.txt: hm, it's been more than a year and a half
since I regenerated ChangeLog.txt...
2005-02-23 21:22 jvr
* Lib/fontTools/misc/psCharStrings.py: This patch fixes two things
- in T2 charstrings, a byte code of 255 is followed by a 16.16
fixed
point number, not a 4-byte int as in T1. Noted by rroberts.
- some integers were not correctly encoded in the T1 compiler.
2005-02-11 19:36 jvr
* Lib/fontTools/ttLib/tables/otTables.py: fixed problem with empty
ClassDef, as well as added some more defenses for possible empty
tables
2005-01-25 19:06 jvr
* Lib/fontTools/t1Lib.py: expose onlyHeader keyword arg to generic
read() func
2005-01-24 10:18 jvr
* Lib/fontTools/ttLib/tables/T_S_I__0.py: uh, and the other one
2005-01-24 10:06 jvr
* Lib/fontTools/ttLib/__init__.py: fixed buglet in GlyphSet support
code
2005-01-24 10:05 jvr
* Lib/fontTools/ttLib/tables/T_S_I__0.py: fixed 2.4 compat issue
2005-01-17 21:34 jvr
* Lib/xmlWriter.py: - rename file to fileOrPath
- check for capability, not type, so XMLWriter can hanlde unicode
filenames (on OS-es that support them).
2004-12-24 16:07 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: fix for new 2.4 hex()
behavior
2004-12-24 15:59 jvr
* Lib/fontTools/ttx.py: fix for new 2.4 hex() behavior
2004-12-14 07:55 jvr
* Windows/README.TXT, Windows/fonttools-win-setup.iss,
Windows/mcmillan.bat: Updates from Adam Twardoch. Thanks!
2004-11-16 10:37 jvr
* Lib/fontTools/ttLib/__init__.py, Lib/fontTools/ttLib/sfnt.py:
Refactored and enhanced table order support:
- Rewrote sorting function, it was really quite buggy.
- Added reorderFontTables() functions, which reorders the
tables in a font at the sfnt level.
- TTFont.save() will now by default rewrite the font in the
optimized order. This is done through a temp file since
our dependency checking logic gets in the way of writing
the tables in a predefined order directly (if table A depends
on B, table B will always be compiled and written first, so
this prevents A from showing up in the file before B).
sfnt.py:
- removed closeStream option from SFNTWriter.close(); it's better
done by the caller (TTFont).
2004-11-16 09:12 jvr
* Lib/fontTools/ttLib/__init__.py: tweak & bugfix
2004-09-26 18:32 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: make sure that a cmap
subtable instance always has a language attr, so __cmp__ can't
fail
2004-09-25 10:56 jvr
* Lib/fontTools/ttLib/tables/_k_e_r_n.py: Fix for [ 808370 ]
Dumping Legendum.otf fails on 'kern' table
Work around buggy kern table.
2004-09-25 10:31 jvr
* Lib/fontTools/ttLib/tables/otTables.py: [ 637398 ] Failure while
parsing OpenType file
Deal with empty Coverage table: it will be None so won't have a
.glyphs
attribute.
2004-09-25 10:01 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: workaround for bug [
766694 ] Error from invalid date
2004-09-25 09:12 jvr
* Lib/fontTools/ttLib/tables/_n_a_m_e.py: bug #784690: simple
workaround for buggy name table
2004-09-25 09:06 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: - Refactored XML writing,
removed lots of code duplicaiton
- Only output unicode names as comments if we're in fact dealing
with
a unicode cmap subtable (and this is -- in theory -- independent
of
cmap format)
2004-09-25 08:24 jvr
* MetaTools/roundTrip.py, Tools/ttx: whoops, rolling back
accidental #! commits
2004-09-25 08:12 jvr
* Lib/fontTools/agl.py: "Downgraded" AGL list to the "Adobe Glyph
List For New Fonts", which is
most appropriate here. There may be a use for the "big" AGL, but
that will
have to become a new module.
2004-09-25 07:47 jvr
* Lib/fontTools/unicode.py, MetaTools/roundTrip.py, Tools/ttx: [
845172 ] Updating to Unicode 4.0.0
Instead of using a list internally, I now use a dict, since the
unicode
mapping is quite sparse (lots of unused slots).
2004-09-25 07:35 jvr
* LICENSE.txt, Lib/fontTools/ttx.py: Patch #845551 from Anthony
Fok:
- two minor typos
- changed copyright year in LICENSE (and it's 2004 now...)
2004-09-25 07:30 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py,
Lib/fontTools/ttLib/tables/_l_o_c_a.py: Patch #845571 from
Anthony Fok:
- better exception msg in loca table
- renamed "version" to "language" in cmap
- made cmap 12 work (untested by me)
2004-09-25 07:19 jvr
* Lib/fontTools/ttLib/tables/O_S_2f_2.py: whoops, forgot one part
os OS/2 version 3 support
2004-09-24 18:33 jvr
* Lib/fontTools/ttLib/tables/O_S_2f_2.py: added support for OS/2
table #3
2003-10-14 20:30 jvr
* Lib/fontTools/pens/pointInsidePen.py: Fixed subtle bug in curve
intersection logic: due to floating point errors,
sometimes a legitimate solution is ever so slightly over 1.0.
Those used to
be filtered out; now checking for 1.0 + 1e-10.
2003-09-22 13:12 jvr
* Lib/fontTools/ttLib/tables/otData.py,
Lib/fontTools/ttLib/tables/otTables.py: ReverseChainSingleSubst
support from Yannis H. (must get that
generate-otdata-from-the-docs working again)
2003-09-22 07:09 jvr
* Lib/fontTools/ttLib/tables/otData.py: bug from the spec leaked
into here; pointed out by Yannis H.
2003-09-18 07:33 jvr
* Doc/install.txt: checked in with unix line endings -- this
probably needs proper review
2003-09-17 17:32 jvr
* Lib/fontTools/misc/psCharStrings.py: - Implemented the flex
operators for T2
- Changed a whole bunch of XXX traps into NotImplementedErrors
2003-09-16 11:30 jvr
* Lib/fontTools/misc/transform.py: more doctests
2003-09-16 11:01 jvr
* Lib/fontTools/misc/transform.py: Added lots of doco and doctests.
2003-09-16 10:14 jvr
* Lib/fontTools/pens/transformPen.py: debogofied doc string, added
another one
2003-09-16 09:48 jvr
* Lib/fontTools/misc/psCharStrings.py: - Properly support the pen
protocol for open sub paths in Type 1
2003-09-15 12:26 jvr
* Lib/fontTools/pens/reportLabPen.py: Added Pen for
reportlab.graphics.
2003-09-11 07:11 jvr
* Lib/fontTools/ttLib/tables/otTables.py: this should have been
part of the previous path by some fixes from klchxbec
2003-09-09 23:29 jvr
* Lib/fontTools/pens/transformPen.py: Correctly deal with the
TT-no-on-curve special case.
2003-09-07 09:41 jvr
* Lib/fontTools/pens/basePen.py: Factored out the SuperBezier and
TT-implied-point algorithms, as the
may be useful separately from pens.
2003-09-06 16:00 jvr
* Lib/fontTools/pens/basePen.py: - added endPath() method to the
Pen protocol, as a counterpart for
closePath() for *open* sub paths. This allows pen implementations
to reliably detect the end of a sub path.
- improved various doc strings.
2003-09-05 14:18 jvr
* Lib/fontTools/pens/basePen.py: ensure that the current point is
always set correctly
2003-09-02 19:23 jvr
* Lib/fontTools/ttLib/tables/otBase.py: tweaked doc string
2003-09-01 16:10 jvr
* Doc/documentation.html: more acks
2003-09-01 15:09 jvr
* Lib/fontTools/ttLib/tables/_h_h_e_a.py: Ha, a reserved field got
eaten. Noticed by Yannis Haralambous.
2003-08-30 06:46 jvr
* Doc/ChangeLog.txt: *** empty log message ***
2003-08-29 19:29 jvr
* Lib/fontTools/misc/arrayTools.py: - renamed all l,t,r,b tuff to
xMin, yMin, xMax, yMax
- added ome more doc strings
- added some minimal test code
2003-08-29 08:05 jvr
* Lib/fontTools/misc/psCharStrings.py: T2: I'm not sure if the
seac-variant of the endchar operator may be
combined with actual outlines, but if it is, we need to do the
closePath
before the components are added.
2003-08-28 20:43 jvr
* Lib/fontTools/misc/psCharStrings.py: added deprecated
endchar/seac support for T2 charstrings
2003-08-28 19:30 jvr
* Lib/fontTools/pens/basePen.py: - added support for quadratic
contours that have NO on-curve points.
- more doco and comments.
2003-08-28 19:03 jvr
* Lib/fontTools/pens/pointInsidePen.py: more doco and comments
2003-08-28 18:23 jvr
* Lib/fontTools/ttLib/__init__.py: workaround for buggy 2.2 mac
support
2003-08-28 18:14 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: whitespace nits
2003-08-28 18:04 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: Another patch from
rroberts. He writes:
"""It adds full support for cmap format 2, which is what
the Adobe CJK fonts use for the Mac cmap subtable."""
2003-08-28 17:59 jvr
* setup.py: whoops, forgot to add the .pens subpacke to the
distutils script :-( noticed by rroberts.
2003-08-28 08:51 jvr
* Lib/fontTools/pens/pointInsidePen.py: Is the point inside or
outside the outline?
2003-08-26 19:20 jvr
* Lib/fontTools/misc/bezierTools.py: - Fixed ZeroDivisionError in
solveCubic(). The solution is mathematically
dubious (I don't think 0.0/0.0 == 0.0...) but the result seems to
be
correct.
- Documented that soleCubic() and solveQuadratic() are not
guaranteed to
return the roots in order, and nor that they are guaranteed to
not return
duplicate roots.
2003-08-26 19:00 jvr
* Lib/fontTools/ttLib/__init__.py: Set .width in _TTGlyph.__init__
after all: these are just this wrapper
objects, _TTGlyphSet doesn't cache them, so setting .width in
.draw()
is confusing to say the least.
2003-08-26 18:20 jvr
* Lib/fontTools/pens/cocoaPen.py: new Cocoa=specific drawing pen
2003-08-26 18:19 jvr
* Lib/fontTools/ttLib/__init__.py: fixed AttributeError in
_TTGlyphSet.keys()
2003-08-26 12:02 jvr
* Doc/documentation.html: typo pointed out by Adam T.
2003-08-25 21:19 jvr
* MetaTools/buildTableList.py: output don't-edit note
2003-08-25 21:19 jvr
* Lib/fontTools/ttLib/tables/__init__.py: document that this file
is generated
2003-08-25 21:16 jvr
* Doc/documentation.html: add rroberts to the Acknowledgements
section; updated some years
2003-08-25 17:53 jvr
* Lib/fontTools/t1Lib.py: add the generic getGlyphSet() API to
T1Font as well.
2003-08-25 13:20 jvr
* Lib/fontTools/ttLib/__init__.py: comment typo fix, reflow
2003-08-25 13:18 jvr
* Doc/ChangeLog.txt: lots of stuff
2003-08-25 13:15 jvr
* Lib/fontTools/ttLib/__init__.py: TTFont now has a getGlyphSet()
method, which will return a generic
GlyphSet. A GlyphSet is simply a dict-like object mapping glyph
names
to glyphs. The glyphs in a GlyphSet have a .draw(pen) method and
a
.width attribute. This provides a generic interface for drawing
glyphs
or extracting outlines, and works both for CFF-based fonts and TT
fonts.
See also fontTools.pens.basePen for a description of what makes a
Pen
a Pen.
2003-08-25 12:23 jvr
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: add some more dict-like
stuff to the glyf table
2003-08-25 07:37 jvr
* Lib/fontTools/cffLib.py: small nits
2003-08-24 19:56 jvr
* Lib/fontTools/cffLib.py, Lib/fontTools/misc/psCharStrings.py,
Lib/fontTools/t1Lib.py: Refactored outline extraction for
CharStrings. The interface to
T{1,2}OutlineExtractor is not backwards compatible and this
change
basically makes them private classes: CharStrings now have a
.draw()
method that takes a Pen object (see fontTools.pens.*), so you
never
have to deal with the extractor objects yourself. Only lightly
tested.
2003-08-24 19:52 jvr
* Lib/fontTools/ttx.py: don't use macfs, it's deprecated
2003-08-24 17:23 jvr
* Lib/fontTools/pens/basePen.py: small tweak
2003-08-24 16:25 jvr
* Lib/fontTools/misc/psCharStrings.py: added and tweaked some
asserts
2003-08-24 16:17 jvr
* Lib/fontTools/misc/transform.py: remove trailing whitespace
2003-08-24 09:48 jvr
* Lib/fontTools/pens/transformPen.py: ugh, lineTo != moveTo...
2003-08-23 20:24 jvr
* Lib/fontTools/pens/basePen.py, Lib/fontTools/pens/boundsPen.py:
wrapped some long lines
2003-08-23 20:19 jvr
* Lib/fontTools/pens, Lib/fontTools/pens/__init__.py,
Lib/fontTools/pens/basePen.py, Lib/fontTools/pens/boundsPen.py,
Lib/fontTools/pens/transformPen.py: Pen stuff, see
http://just.letterror.com/cgi-bin/wypy?PenProtocol
Only lightly tested, component support is not tested at all.
2003-08-22 20:21 jvr
* Lib/fontTools/ttLib/tables/otData.py: some fixes from klchxbec
2003-08-22 20:02 jvr
* Lib/fontTools/ttLib/tables/V_O_R_G_.py: VORG support by rroberts.
2003-08-22 19:53 jvr
* Lib/fontTools/cffLib.py: Lots of CID work by rroberts.
2003-08-22 19:44 jvr
* Lib/fontTools/ttLib/__init__.py: - attempted to sort tables in
order recommended by spec.
TODO: need to fix table dependency order to complete this.
(Read: would you mind posting a bug report regarding this?)
2003-08-22 19:38 jvr
* Lib/fontTools/ttLib/sfnt.py: support for CEF fonts: don't depend
on the head table being available
2003-08-22 19:34 jvr
* Lib/fontTools/ttLib/tables/_m_a_x_p.py: recalc numGlyphs upon
writing
2003-08-22 18:56 jvr
* Lib/fontTools/ttLib/macUtils.py: update macUtils to current day
MacPython
2003-08-22 18:53 jvr
* Lib/fontTools/nfntLib.py: attempt to set the value for fRectWidth
'more correctly'
2003-08-22 18:52 jvr
* Lib/fontTools/ttLib/__init__.py: some modernizations
2003-08-22 18:50 jvr
* Lib/fontTools/ttx.py: Jaguar Python 2.2 workaround
2003-08-22 14:56 jvr
* Lib/fontTools/misc/transform.py: this module has been included in
so many (in house) packages that it's time it gets a more central
place.
2003-06-29 19:25 jvr
* Lib/fontTools/misc/bezierTools.py: - optimized a couple of
invariant expressions
- made sure solveCubic() also works when called with integer
arguments
2003-06-29 18:32 jvr
* Lib/fontTools/misc/bezierTools.py: splitLine(): make sure the
split is between the end points
2003-06-29 18:25 jvr
* Lib/fontTools/misc/bezierTools.py: new module bezierTools.py
2003-06-29 18:18 jvr
* Lib/fontTools/misc/arrayTools.py: two new functions
2003-06-07 15:15 jvr
* Lib/fontTools/t1Lib.py: avoid FSSpec on MacOS
2003-05-24 12:50 jvr
* Lib/fontTools/afmLib.py: add default _attrs value so pickling AFM
objects doesn't blow up
2003-05-24 12:34 jvr
* Lib/fontTools/t1Lib.py: updated for MacPython2.3
2003-02-23 19:40 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: Fix for bug #691744;
calc_mac_epoch_diff() was broken when the timezone
was GMT (or perhaps other situations; it's not entirely clear).
2003-02-08 10:45 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: cmap format 12 support,
donated by rroberts: thanks!
2003-01-25 18:20 jvr
* Lib/fontTools/ttLib/tables/_n_a_m_e.py: second try to work around
bogus stringOffset value
2003-01-25 11:15 jvr
* Lib/fontTools/ttLib/tables/_n_a_m_e.py: renamed stringoffset to
stringOffset as per spec
2003-01-25 11:14 jvr
* Lib/fontTools/ttLib/tables/_n_a_m_e.py: gracefully handle bogus
stringOffset values (thanks to Anthony Fok)
2003-01-10 22:34 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: clean up
checkSumAdjustment XML output: suppress trialing 'L'
2003-01-10 22:23 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: fix from Owen Taylor that
fixes my previous patch; thanks!
2003-01-03 21:29 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: detab table string
literal
2003-01-03 21:23 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: make two fields unsigned,
to conform to the spec but also to suppress Python 2.3 warnings
for hex(negativenumber).
2003-01-03 21:01 jvr
* setup.py: edited meta info, added trove classification
2003-01-03 20:57 jvr
* Lib/fontTools/ttLib/sfnt.py: suppres Python 2.3 warning
2003-01-03 20:56 jvr
* Lib/fontTools/cffLib.py: Added support for the Encoding field.
(Adam, please let me know if this
works for you.)
2003-01-03 20:54 jvr
* Lib/fontTools/ttLib/tables/otTables.py: make sure Coverage
instances have a 'glyphs' attribute
2003-01-03 20:52 jvr
* Lib/fontTools/ttLib/tables/O_S_2f_2.py: allow OS/2 tables
containing too much data
2002-11-26 14:09 jvr
* Lib/fontTools/afmLib.py: allow negative advance widths
2002-10-29 15:51 jvr
* Doc/ChangeLog.txt: it's been a while.
2002-10-29 15:49 jvr
* Lib/fontTools/fondLib.py: try Carbon.Res first.
2002-10-27 19:47 jvr
* Lib/fontTools/ttLib/standardGlyphOrder.py: revised comment, added
note about MS disagreement, removed alignment tabs
2002-10-27 09:11 jvr
* Windows/fonttools-win-setup.iss, Windows/fonttools-win-setup.txt:
Patches from Adam:
So, meanwhile, attached is a slightly improved isntaller. Now,
.ttx files
are registered as XML files so you can use Internet Explorer etc.
to view
them. Also, I'm creating a shortcut in the "SendTo" structure, so
the user
can click with RMB on the TTF, OTF or TTX file, then select Send
To / TTX.
Works with multiple files, very nice.
2002-10-08 14:22 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: fixed previous fix: it
assumed 4 bytes of data, which is wrong
2002-10-07 21:34 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: Handle negative long time
values gracefully instead of looping infinitely. Reported by
Jessica P. Hekman
2002-09-24 20:50 jvr
* Lib/fontTools/ttLib/tables/otTables.py: deal gracefully with
empty coverage tables; fixes bug 611509
2002-09-16 08:21 jvr
* Doc/changes.txt: note about maxp change
2002-09-16 08:10 jvr
* Lib/fontTools/ttLib/tables/_m_a_x_p.py: minor cleanups
2002-09-16 08:06 jvr
* Lib/fontTools/ttLib/tables/_m_a_x_p.py: interpret any version
value as 0x0001000 if it's not 0x00005000 (workaround for buggy
font)
2002-09-14 15:31 jvr
* Doc/changes.txt, Lib/fontTools/ttx.py: ugh, the zfill string
method doesn't exist in 2.2.1 and earlier :-(
2002-09-13 13:17 jvr
* Doc/changes.txt, Doc/documentation.html: small changes, first bux
fix note since 2.0b1
2002-09-13 12:07 jvr
* Lib/fontTools/__init__.py, Windows/fonttools-win-setup.iss:
bumped version to 2.0b2
2002-09-13 12:04 jvr
* Lib/fontTools/ttLib/tables/otTables.py: whoops, reversed key and
value
2002-09-13 00:17 jvr
* Doc/bugs.txt: mention control chars in name table
2002-09-12 23:15 jvr
* Doc/ChangeLog.txt: last commit for 2.0b1, I hope...
2002-09-12 23:14 jvr
* Tools/ttx: macfreeze import hints
2002-09-12 22:59 jvr
* Lib/fontTools/ttx.py: add simple support for Mac Suitcases, when
running on MacOS
2002-09-12 22:22 jvr
* Doc/bugs.txt, Doc/documentation.html: converging towards 2.0b1
2002-09-12 22:03 jvr
* Mac/README.txt: note about rustiness
2002-09-12 21:48 jvr
* Lib/fontTools/ttLib/tables/otTables.py: added manual
implementation of LigatureSubst to get nicer XML output
2002-09-12 21:21 jvr
* Lib/fontTools/ttLib/tables/otTables.py: added manual
implementation of AlternateSubst to get nicer XML output
2002-09-12 20:51 jvr
* Lib/fontTools/ttLib/tables/otTables.py: added manual
implementation of ClassDef to get nicer XML output as well as to
get rid of GlyphID dependencies
2002-09-12 20:05 jvr
* Lib/fontTools/ttx.py: doh! fixed wrong indentation, now does
batch jobs again...
2002-09-12 19:54 jvr
* Lib/fontTools/ttLib/tables/otTables.py: added manual
implementation of SingleSubst to get nicer XML output as well as
to get rid of GlyphID dependencies
2002-09-12 19:14 jvr
* MetaTools/roundTrip.py: break out of loop when cancelled
2002-09-12 19:07 jvr
* Lib/fontTools/ttLib/tables/_n_a_m_e.py: don't barf on empty name
tables (!)
2002-09-12 18:53 jvr
* MetaTools/roundTrip.py: adapted doc string to reality; removed -v
options
2002-09-12 18:34 jvr
* MetaTools/roundTrip.py: brand new round trip tool
2002-09-12 17:33 jvr
* Lib/fontTools/ttx.py, Tools/ttx: moved all ttx code to new
fontTools.ttx module
2002-09-12 17:22 jvr
* Tools/ttx: refactored slightly, preparing for miving most of this
code to fontTools.ttx.py
2002-09-12 17:09 jvr
* Lib/fontTools/ttLib/tables/otTables.py: renamed table to rawTable
2002-09-12 17:02 jvr
* Tools/ttroundtrip: new version will appear in MetaTools
2002-09-12 17:01 jvr
* Tools/ttcompile, Tools/ttdump, Tools/ttlist: these tools have
been replaced by the multi-purpose ttx tool
2002-09-12 16:47 jvr
* Lib/fontTools/ttLib/tables/otTables.py: added manual
implementation for the Coverage subtable to get rid of GlyphID
dependencies
2002-09-12 16:45 jvr
* Lib/fontTools/ttLib/tables/otBase.py,
Lib/fontTools/ttLib/tables/otConverters.py: minor refactoring
2002-09-10 20:47 jvr
* Doc/ChangeLog.txt: updating
2002-09-10 20:43 jvr
* Windows/fonttools-win-setup.txt: improved readme
2002-09-10 20:42 jvr
* MetaTools/buildTableList.py: also add tables to
documentation.html
2002-09-10 20:41 jvr
* Doc/documentation.html: added listing of all supported tables
2002-09-10 20:35 jvr
* Doc/ChangeLog.txt, Doc/changes.txt, Doc/documentation.html:
updating
2002-09-10 20:23 jvr
* Tools/ttx: include version in help text
2002-09-10 20:14 jvr
* Tools/ttx: catch SystemExit separately, factored out windows
keypress stuff
2002-09-10 19:42 jvr
* mktarball.py: moved to MetaTools
2002-09-10 19:41 jvr
* MetaTools/makeTarball.py: new name and location of mktarball.py
2002-09-10 19:26 jvr
* Lib/fontTools/ttLib/tables/otBase.py: refactored slightly to make
later specializations easier
2002-09-10 17:25 jvr
* Tools/ttx: trickery to keep the DOS window open if there was
exception
2002-09-10 15:37 jvr
* Windows/fonttools-win-setup.iss: adapt to renamed doco
2002-09-10 14:10 jvr
* Doc/changes.txt: more notes about 2.0b1
2002-09-10 13:39 jvr
* Doc/ChangeLog.txt: mit freundlichen Gruessen an Werner Lemberg
;-)
2002-09-10 13:25 jvr
* MetaTools/buildChangeLog.py, MetaTools/logmerge.py: 2 scripts to
generate ChangeLog file, logmerge.py is stolen from the python
distro
2002-09-10 13:14 jvr
* Tools/ttx: mjmja
2002-09-10 13:13 jvr
* Doc/documentation.html, Doc/install.txt, README.txt: updated
documentation, split user and developer doco
2002-09-10 13:09 jvr
* MetaTools/buildTableList.py: tool to generate
fontTools/ttLib/tables/__init__.py
2002-09-10 13:08 jvr
* Lib/fontTools/ttLib/tables/__init__.py: __init__.py is now
generated my MetaTools/builtTableList.py
2002-09-10 11:55 jvr
* Doc/documentation.html, Doc/index.html: renamed index.html to
documentation.html
2002-09-10 11:38 jvr
* Lib/fontTools/__init__.py: prepare for 2.0b1
2002-09-10 11:36 jvr
* MetaTools, MetaTools/build_otData.py, MetaTools/doco.diff: tool
to generate the otData.py module
2002-09-10 11:27 jvr
* Windows/README.TXT: minor nit, cleaner, and works for me
2002-09-10 11:23 jvr
* Windows/README.TXT, Windows/fonttools-win-setup.iss,
Windows/fonttools-win-setup.txt: adapted to new ttx app (not yet
tested)
2002-09-10 09:22 jvr
* setup.py: ttx it is, the other tools are now obsolete
2002-09-10 09:16 jvr
* Tools/ttx: added doc string, fiddled with options, made file name
creation a little more sensible
2002-09-10 08:47 jvr
* Tools/ttx: new command line tool 'ttx', replaces ttdump,
ttcompile and ttlist
2002-09-09 21:28 jvr
* Windows/README.TXT: changed py2exe recommended options: removed
-O2, added encodings package (needed for compilation)
2002-09-09 21:23 jvr
* Windows/README.TXT: more fonttools->TTX renaming
2002-09-09 21:22 jvr
* Windows/fonttools-win-setup.iss, Windows/fonttools.ico,
Windows/ttx.ico: some fonttools->TTX renaming
2002-09-09 21:12 jvr
* Windows/README.TXT: fixed item numbering
2002-09-09 21:12 jvr
* Windows/README.TXT: fixed naming of the Win folder
2002-09-09 20:38 uid55619
* ttx_shellext_win32.py: obsolete, see Windows subdirectory
2002-09-09 20:09 uid55619
* Windows/fonttools-win-setup.txt: another dummy checkin
2002-09-09 20:05 uid55619
* Windows/fonttools-win-setup.txt: dummy checkin
2002-09-09 19:58 uid55619
* Windows, Windows/README.TXT, Windows/fonttools-win-setup.iss,
Windows/fonttools-win-setup.txt, Windows/fonttools.ico: Adam's
new windows installer stuff.
2002-09-09 18:17 jvr
* Lib/xmlWriter.py: by default, specify an encoding when creating
XML files
2002-09-09 14:19 jvr
* Lib/fontTools/ttLib/xmlImport.py: use latin-1 as the default
encoding when parsing XML files
2002-09-09 14:18 jvr
* Lib/fontTools/cffLib.py: make 8-bit chars work in CFF Notice and
Copyright fields
2002-09-05 19:46 jvr
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: align glyphs on 4-byte
boundaries, seems the current recommendation by MS
2002-09-05 19:35 jvr
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: allow 4-byte alignment of
glyph data
2002-08-30 17:52 jvr
* Lib/fontTools/ttLib/tables/otData.py: fixed spelling consistency
bug. Note to self: report as bug in OT doco.
2002-07-29 21:39 jvr
* Lib/fontTools/t1Lib.py: break before adding the data..
2002-07-29 21:33 jvr
* Lib/fontTools/t1Lib.py: added only-read-the-header feature to
readLWFN(), similar to readPFB()
2002-07-23 17:56 jvr
* Tools/ttroundtrip: added -v (verbose) option to ttroundtrip,
causing stdout of ttdump and ttcompile not to be tossed. not all
that useful due to buffering.
2002-07-23 16:44 jvr
* Lib/fontTools/ttLib/__init__.py, Lib/fontTools/ttLib/macUtils.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/xmlImport.py: some (modified) progress bar
support
2002-07-23 16:42 jvr
* Lib/fontTools/cffLib.py: some progress bar support
2002-07-23 16:41 jvr
* Lib/xmlWriter.py: some preliminary progress bar support
2002-07-23 14:54 jvr
* Lib/fontTools/t1Lib.py: back out pfa 'fix'; it reverses a bug fix
from last year...
2002-07-23 09:26 jvr
* Lib/fontTools/misc/eexec.py: 'python' implementation of hex
functions
2002-07-23 09:25 jvr
* Lib/fontTools/t1Lib.py: fixed handling of PFA files by being less
smart about figuring out the end of the eexec part
2002-07-23 08:43 jvr
* Lib/fontTools/ttLib/tables/otBase.py: reordered/regrouped some
methods for clarity
2002-07-23 08:19 jvr
* Lib/fontTools/ttLib/tables/otBase.py: don't use __len__ for
arbitrary length method
2002-07-23 07:51 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: clarified cmap4
optimization strategy
2002-07-22 22:39 jvr
* Lib/fontTools/ttLib/tables/otBase.py: duh, I don't even _need_ to
track referers with the current scheme
2002-07-22 22:22 jvr
* Lib/fontTools/ttLib/tables/otBase.py: minor changes
2002-07-22 22:13 jvr
* Lib/fontTools/ttLib/tables/otBase.py: completely revamped
optimization strategy: now even _shrinks_ certain Adobe and MS
OTL tables.
2002-07-21 20:05 jvr
* Lib/fontTools/ttLib/sfnt.py: Wow, the master checksum in the
'head' table was never written to file correctly on little-endian
platforms :-(. Fixed.
2002-07-20 21:57 jvr
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: Optimized cmap format 4
compile function: now creates more compact binary. The code is
horrible, but then again cmap format 4 is beyond horrible...
2002-07-13 08:15 jvr
* setup.py: oops.
2002-07-12 19:20 jvr
* Lib/fontTools/t1Lib.py: don't test for os.name, as the mac stuff
now all works under darwin/posix as well
2002-07-11 18:19 jvr
* setup.py: added py2exe support (yes, that was basically all there
was to it...)
2002-07-11 18:17 jvr
* Lib/fontTools/ttLib/__init__.py: make dynamic table import work
when importing from a zip file (for py2exe)
2002-07-04 17:17 jvr
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: repair ttcompile -b
2002-07-04 17:17 jvr
* Lib/fontTools/ttLib/tables,
Lib/fontTools/ttLib/tables/.cvsignore: ignore .pyc files
2002-07-01 09:11 jvr
* setup.py: gracefully skip C extension if it can't be built
2002-06-06 19:59 jvr
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: increment progress less
frequently, it was too costly...
2002-06-06 19:58 jvr
* Lib/fontTools/ttLib/macUtils.py: MacPython 2.2 compat
2002-06-04 19:11 jvr
* Lib/fontTools/misc/psLib.py: finally upgraded psLib to use re
instead of the long obsolete regex module.
2002-06-04 19:10 jvr
* Lib/fontTools/misc/psOperators.py: nits
2002-06-04 19:08 jvr
* Lib/fontTools/ttLib/tables/__init__.py: add dummy import
function, so modulefinder can find our tables.
2002-05-25 16:08 jvr
* Tools/ttcompile, Tools/ttdump: hm, forgot to remove the -d option
from the getopt format string
2002-05-25 16:08 jvr
* Tools/ttroundtrip: mucking with the usage string
2002-05-25 16:04 jvr
* Tools/ttroundtrip: allow some ttdump options; not -s as that
makes diffing that much harder
2002-05-25 15:28 jvr
* Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/xmlImport.py: It still wasn't right; I think
the glyph order mess is now sufficiently cleaned up; at least
compiling the result of ttdump -x glyf works again.
2002-05-25 14:56 jvr
* Lib/fontTools/ttLib/__init__.py: make sure the glyph order is
loaded when importing XML as the TTX file may not contain it
(ttdump -t/ttcompile -i).
2002-05-25 08:22 jvr
* Lib/fontTools/ttLib/__init__.py: whoops, the new GlyphOrder table
stuff broke ttdump -s
2002-05-24 18:44 jvr
* Tools/ttroundtrip: slight doc rewording
2002-05-24 18:36 jvr
* Tools/ttroundtrip: test script: batch roundtripper
2002-05-24 17:42 jvr
* Lib/fontTools/ttLib/tables/_h_d_m_x.py: gross hack to allow ; in
glyph names (I don't think it _is_ allowed, but hey, I've got
this font here...)
2002-05-24 16:52 jvr
* Lib/fontTools/ttLib/tables/T_S_I__0.py: don't blow up on orphaned
VTT index tables
2002-05-24 14:42 jvr
* Lib/fontTools/ttLib/tables/ttProgram.py: fixed ttdump -i mode
2002-05-24 11:55 jvr
* Lib/fontTools/cffLib.py, Lib/fontTools/misc/psCharStrings.py:
added support for raw bytecode: this happens unintentionally for
subrs that aren't referenced, but it's good to have anyway, in
case we want to switch T2 decompilation off.
2002-05-24 10:38 jvr
* Lib/fontTools/cffLib.py: whoops, make charset format 2 work
also..
2002-05-24 10:35 jvr
* Lib/fontTools/cffLib.py: implemented compiling charset format 1
and 2
2002-05-24 09:58 jvr
* Lib/fontTools/cffLib.py, Lib/fontTools/misc/psCharStrings.py,
Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/C_F_F_.py: CFF/T2 <-> XML
roundtripping has begun!
2002-05-23 21:50 jvr
* Lib/fontTools/cffLib.py, Lib/fontTools/misc/psCharStrings.py:
first working version of CFF/T2 compiler; needs
cleanup/refactoring, and doesn't import from XML yet; hardly
tested.
2002-05-23 09:42 jvr
* Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/xmlImport.py: big change: the glyph order is
now dumped as a separate table and not as part of glyf (which
didn't make much sense to begin with, but can't work at all in
the case of CFF...)
2002-05-22 20:15 jvr
* Lib/fontTools/ttLib/__init__.py: refactored saveXML() method
2002-05-18 20:07 jvr
* Lib/fontTools/cffLib.py: remove format 3 charset switch; add
newline after ROS
2002-05-17 20:04 jvr
* Lib/fontTools/cffLib.py: renaming, refactoring.
2002-05-17 19:58 jvr
* Lib/fontTools/cffLib.py: tweaked the XML output somewhat, reorder
the topdict fields, etc.
2002-05-17 18:37 jvr
* Lib/fontTools/misc/psCharStrings.py: fixed ctnrmask problem:
hints weren't counted correctly
2002-05-17 18:36 jvr
* Lib/fontTools/cffLib.py: more CID support, some refactoring,
stuff.
2002-05-17 07:08 jvr
* Lib/fontTools/cffLib.py: only debug if DEBUG...
2002-05-17 07:07 jvr
* Lib/fontTools/misc/psCharStrings.py: first stab at compiling T2
CharStrings
2002-05-17 07:06 jvr
* Lib/fontTools/cffLib.py: tweaking, added some debug info
2002-05-16 18:38 jvr
* Lib/fontTools/cffLib.py: make decompiling charstrings work again
2002-05-16 18:17 jvr
* Lib/fontTools/cffLib.py: major refactoring, now evaluates
everything lazily, so it should be really fast if you only need
(say) the glyph order.
2002-05-16 18:15 jvr
* Lib/fontTools/ttLib/tables/C_F_F_.py: some changes to adapt to
new cffLib.py
2002-05-16 18:13 jvr
* Lib/fontTools/misc/psCharStrings.py: (nit)
2002-05-16 18:12 jvr
* Lib/fontTools/ttLib/tables/otConverters.py: whoops, compile was
broken due to Fixed 'fix'
2002-05-15 07:50 jvr
* Lib/fontTools/ttLib/__init__.py: ignore tables we don't have upon
saving as XML: this is indispensible for batch processing
2002-05-15 07:41 jvr
* Lib/fontTools/cffLib.py: more work in progress
2002-05-15 07:40 jvr
* Lib/fontTools/misc/psCharStrings.py: added delta array support to
DictDecompiler
2002-05-14 13:51 jvr
* Lib/fontTools/cffLib.py: more CID hackery
2002-05-14 13:49 jvr
* Lib/fontTools/misc/psCharStrings.py: fix argument type order
2002-05-14 12:37 jvr
* Lib/fontTools/cffLib.py: more rearranging, some fixes of the
previous version
2002-05-14 12:22 jvr
* Lib/fontTools/cffLib.py: resturcturing, reformatting
2002-05-14 12:09 jvr
* Lib/fontTools/ttLib/sfnt.py: fixed typo in comment
2002-05-13 18:13 jvr
* Lib/fontTools/ttLib/tables/_h_h_e_a.py: this wasn't meant te be
checked in yet.
2002-05-13 18:10 jvr
* Lib/fontTools/ttLib/tables/otConverters.py: added Fixed type
2002-05-13 18:08 jvr
* Lib/fontTools/ttLib/tables/_h_h_e_a.py,
Lib/fontTools/ttLib/tables/otBase.py: more cosmetics
2002-05-13 16:21 jvr
* Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/table_API_readme.txt,
Lib/fontTools/ttLib/xmlImport.py: a whole bunch of renames,
purely stylistic
2002-05-13 16:19 jvr
* Lib/fontTools/cffLib.py, Lib/fontTools/misc/psCharStrings.py:
moved some stuff to cffLib
2002-05-13 11:26 jvr
* Lib/fontTools/ttLib/__init__.py: don't get glyph names from CFF
it it's a CID-keyed font; invent glyph name on the spot if
glyphID is too high (dubious change..).
2002-05-13 11:25 jvr
* Lib/fontTools/cffLib.py, Lib/fontTools/ttLib/tables/C_F_F_.py:
use a StringIO stream instead slicing strings all the time; don't
barf on CID-keyed fonts (but CID support is by no means there
yet!)
2002-05-13 11:21 jvr
* Lib/fontTools/ttLib/sfnt.py: use spaces for alignment
2002-05-12 18:46 jvr
* Tools/ttcompile, Tools/ttdump: test whether final argument is a
directory
2002-05-12 17:14 jvr
* Lib/fontTools/ttLib/__init__.py, Lib/fontTools/ttLib/sfnt.py,
Lib/fontTools/ttLib/tables/_c_m_a_p.py,
Lib/fontTools/ttLib/tables/_k_e_r_n.py: renamed several items to
use camelCase
2002-05-12 17:02 jvr
* Lib/fontTools/ttLib/sfnt.py: Applied patch from Owen Taylor that
allows zero-length tables to be ignored. Added comment why.
2002-05-12 12:58 jvr
* Doc/index.html: note about PyXML
2002-05-12 12:48 jvr
* Doc/index.html: reworded glyph name section
2002-05-12 12:24 jvr
* Doc/changes.txt: notes about recent changes
2002-05-11 21:52 jvr
* Tools/ttcompile: case typo
2002-05-11 21:44 jvr
* Lib/fontTools/ttLib/xmlImport.py: minor restructuring
2002-05-11 21:38 jvr
* Lib/fontTools/ttLib/xmlImport.py: added support for the new
ttdump -s output: read file references from mini-ttx file
2002-05-11 21:18 jvr
* Lib/fontTools/ttLib/__init__.py: change how saveXML with
splitTable=True works: it no longer creates a directory, and
outputs a small file that references the individual table files
2002-05-11 21:16 jvr
* Tools/ttcompile, Tools/ttdump: changed the command line interface
of ttdump and ttcompile ***incompatibly***; changed ttdump -s
considerably: now outputs a small file containing references to
the individual table file; -d is gone; etc.
2002-05-11 10:21 jvr
* Lib/fontTools/ttLib/tables/otBase.py,
Lib/fontTools/ttLib/tables/otConverters.py,
Lib/fontTools/ttLib/tables/otTables.py: results of morning-after
code review, added some doc strings, etc.
2002-05-11 01:03 jvr
* Lib/fontTools/ttLib/tables/otCommon.py: removed non-functioning
lame-ass previous attempt
2002-05-11 00:59 jvr
* Lib/fontTools/ttLib/tables/B_A_S_E_.py,
Lib/fontTools/ttLib/tables/G_D_E_F_.py,
Lib/fontTools/ttLib/tables/G_P_O_S_.py,
Lib/fontTools/ttLib/tables/G_S_U_B_.py,
Lib/fontTools/ttLib/tables/J_S_T_F_.py,
Lib/fontTools/ttLib/tables/otBase.py,
Lib/fontTools/ttLib/tables/otConverters.py,
Lib/fontTools/ttLib/tables/otData.py,
Lib/fontTools/ttLib/tables/otTables.py: Completely revamped OT
support; this time it works and is complete. XML output is not
yet as pretty as can be.
2002-05-10 19:52 jvr
* Lib/fontTools/ttLib/tables/_k_e_r_n.py: fix unknown subtable
format and handling of Apple fonts
2002-05-10 19:03 jvr
* Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/O_S_2f_2.py,
Lib/fontTools/ttLib/tables/_c_m_a_p.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/tables/_k_e_r_n.py,
Lib/fontTools/ttLib/tables/_p_o_s_t.py: a few cosmetic/style
changes
2002-05-10 19:02 jvr
* Lib/fontTools/ttLib/tables/G_S_U_B_.py,
Lib/fontTools/ttLib/tables/otCommon.py: checking in last edits to
the old OT support; this stuff will be replaced by brand new code
soon.
2002-05-05 11:29 jvr
* Lib/fontTools/ttLib/__init__.py: Work around bootstrapping
problem in TTFont._getGlyphNamesFromCmap():
If the cmap parser was the one to cause _getGlyphNamesFromCmap()
to be
called, no unicode cmap was found as it was just starting to get
loaded. This resulted in different glyph names, depending on when
the cmap parser was invoked.
Also added a bunch of comment describing what this method does.
2002-05-05 09:55 jvr
* Tools/ttlist: cosmetic change: I forgot I dislike backticks...
2002-05-05 09:48 jvr
* Lib/fontTools/ttLib/__init__.py: renamed _getTableData() to
getTableData(); optimized getGlyphOrder() somewhat.
2002-05-04 22:04 jvr
* Lib/fontTools/ttLib/__init__.py, Lib/fontTools/ttLib/sfnt.py:
added support for deleting tables: del f[tag]
2002-05-04 22:03 jvr
* Lib/fontTools/ttLib/tables/_p_o_s_t.py: use dict for extraNames
lookups, getting rid of quadratic behavior
2002-05-03 19:38 jvr
* Lib/fontTools/t1Lib.py: MacPython 2.2 compatibility fix.
2002-05-03 19:35 jvr
* Tools/ttcompile, Tools/ttdump: some reformatting of the usage
msg.
2002-05-03 19:10 jvr
* Doc/index.html: more TTX...
2002-05-03 19:03 jvr
* LICENSE.txt, Lib/fontTools/__init__.py, README.txt: typos,
version update, date update
2002-05-03 19:02 jvr
* Doc/index.html: cleaned up command line tool section, updated to
current state.
2002-05-03 18:58 jvr
* ttCompile.py, ttDump.py, ttList.py: these moved to Tools/
2002-05-03 18:57 jvr
* setup.py: install the scripts from Tools/
2002-05-03 18:55 jvr
* Tools, Tools/ttcompile, Tools/ttdump, Tools/ttlist: new place and
names for scripts/tools
2002-05-03 17:05 jvr
* ttCompile.py, ttDump.py: minor fiddling with usage.
2002-05-03 17:05 jvr
* ttList.py: minimal table lister tool
2002-05-03 17:01 jvr
* Lib/fontTools/ttLib/tables/C_F_F_.py,
Lib/fontTools/ttLib/tables/G_P_O_S_.py,
Lib/fontTools/ttLib/tables/G_S_U_B_.py,
Lib/fontTools/ttLib/tables/otCommon.py: Work in progress on CFF,
GPOS and GSUB. Since it's only partly working, it's diasabled by
default.
2002-05-03 14:33 jvr
* Lib/fontTools/ttLib/tables/C_F_F_.py: use composition rather than
inheritance; \
2002-05-03 08:59 jvr
* setup.py: import expat instead of xmlproc, as that's what we're
using now
2002-05-02 20:54 jvr
* Lib/fontTools/ttLib/xmlImport.py: only keep the orginal table
around in two special cases.\n this fixes a problem with
importing individual tables.
2002-05-02 15:26 jvr
* Lib/fontTools/misc/eexec.py: eexecOp may be a global module or a
submodule.
2002-05-02 15:23 jvr
* Lib/fontTools/ttLib/__init__.py: use version from
fontTools.__init__.py
2002-05-02 15:16 jvr
* Lib/fontTools/ttLib/xmlImport.py: re-added progress support, to
be tested
2002-05-02 10:53 jvr
* Lib/fontTools/ttLib/tables/_h_m_t_x.py: whoops, lastIndex can't
be smaller than 1
2002-05-02 08:11 jvr
* Doc/changes.txt, Doc/index.html: updated installation
instructions and changes.txt
2002-05-01 21:32 jvr
* Lib/fontTools/ttLib/xmlImport.py: rearranged a bit, removed
redundant imports
2002-05-01 21:06 jvr
* Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/tables/_h_d_m_x.py,
Lib/fontTools/ttLib/tables/_h_m_t_x.py,
Lib/fontTools/ttLib/tables/_n_a_m_e.py,
Lib/fontTools/ttLib/xmlImport.py: Complety revised the XML import
code:
- use expat instead of xmlproc
- minor fixes here and there
Fixed bug in hmtx/vmtx code that only occured if all advances
were equal.
FontTools now officially requires Python 2.0 or up, due to exapt
and unicode.
2002-03-12 14:34 jvr
* Lib/fontTools/afmLib.py: Charnames can contain a period anywhere,
not just at the start.
2002-01-17 09:36 jvr
* Lib/fontTools/ttLib/tables/_p_o_s_t.py: another buggy font
workaround; sped up unpackPStrings somewhat
2002-01-07 08:44 jvr
* Lib/fontTools/ttLib/tables/ttProgram.py: Hm, these instructions
had their stack pop-count reversed.
Thanks to L. Peter Deutsch for finding this.
2001-11-28 12:22 jvr
* Lib/fontTools/t1Lib.py: At the expense of some speed, find the
end of an excrypted portion
more acurately. This fixes an obscure problem with Fog 4 fonts.
2001-11-05 19:32 jvr
* Lib/fontTools/ttLib/tables/_p_o_s_t.py: fixed post table format 1
error: even though the glyph order is fixed,
that doesn't mean all glyphs in the standard order are there.
2001-08-16 18:14 jvr
* Src/eexecOp/eexecOpmodule.c: Ugh. The previous change broke under
1.5.2. Work around it, and clean
up some more hwile we're at it.
2001-08-16 16:34 jvr
* Src/eexecOp/eexecOpmodule.c: Hm, using "h" format strings for
unsigned shorts broke in Python 2.1
2001-08-16 11:02 jvr
* Lib/fontTools/misc/psCharStrings.py: behave nicely when *any*
subpath doesn't start with a moveto.
2001-08-16 10:35 jvr
* Lib/fontTools/misc/psCharStrings.py: behave nicely when the font
doesn't do an initial moveto.
2001-08-16 10:34 jvr
* Lib/fontTools/t1Lib.py: fixed saveAs()
2001-08-15 09:26 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: style constency
2001-08-15 07:01 jvr
* Lib/fontTools/ttLib/tables/O_S_2f_2.py: spec changed: three
fields are now unsigned instead of signed,
and due to the the wonderful <snort> hungarian notation the field
names changed as well... (So this change is not b/w compatible)
2001-08-15 07:00 jvr
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: dump macStyle as binary
2001-08-14 06:43 jvr
* Src/eexecOp/eexecOpmodule.c: copyright notice updated (but mostly
to test the CVS log msg mail)
2001-08-10 22:17 jvr
* Lib/fontTools/ttLib/macUtils.py: work around MacPython 2.1
incompatibility
2001-08-10 22:16 jvr
* Mac/TTX.py: grab version from fontTools.__init__
2001-08-10 20:28 jvr
* Doc/changes.txt: 1.0b1 release notes
2001-08-10 20:27 jvr
* Doc/index.html: added note about distutils needed for Python <
2.0
2001-08-10 16:49 jvr
* Lib/fontTools/__init__.py: added version variable
2001-08-10 16:49 jvr
* mktarball.py: add version to tarball filename
2001-08-10 08:58 jvr
* LICENSE.txt: Let's be vague about where I live(d)...
2001-08-10 08:55 jvr
* LEGAL.txt, LICENSE.txt: renamed LEGAL.txt to LICENSE.txt, to
match the doco...
2001-08-10 08:54 jvr
* Doc/index.html: updated to the current state of affairs.
2001-08-10 00:04 jvr
* ttx_shellext_win32.py: cleaned up regtext for clarity. Should be
a 100% cosmetic change,
but I was unable to test it (Hi Adam ;-)
2001-08-09 23:45 jvr
* ttCompile.py: print a banner for each output file
2001-08-09 23:39 jvr
* ttCompile.py: reworked command line options
2001-08-09 23:03 jvr
* setup.py: added warning about dependency on NumPy and PyXML
2001-08-09 21:39 jvr
* ttDump.py: - fixed -d (forgot to add it to the getopt arg)
- added comment that -s implies -f
2001-08-09 21:31 jvr
* ttDump.py: implemented -d (specify output dir) option
2001-08-09 21:06 jvr
* ttDump.py: first step of changing the command line usage to
something more
sensible: it is now possible to do batches, as in
./ttDump.py *.ttf
This is not b/w compatible. (The new -d option is not yet
implemented)
2001-08-09 19:39 jvr
* Src/eexecOp/eexecOpmodule.c: And one more...
2001-08-09 19:36 jvr
* Src/eexecOp/eexecOpmodule.c: Hm, made func defs ANSI compliant.
2001-08-09 19:18 jvr
* setup.py: eexecOp.{so|pyd|slb} goes into fontTools/misc/
2001-08-09 19:13 jvr
* Lib/interfaceChecker.py: old cruft
2001-08-09 19:09 jvr
* LEGAL.txt, README.txt: minor things: the real doco needs real
work...
2001-08-09 19:06 jvr
* Src/eexecOp/Makefile, Src/eexecOp/Makefile.pre.in,
Src/eexecOp/README.txt, Src/eexecOp/Setup.in,
Src/eexecOp/eexecOp.ppc.prj, Src/eexecOp/eexecOp.ppc.prj.exp:
removed obsolete unix makefile support: distutils takes care
of that now (see setup.py in fonttools/).
2001-08-09 19:00 jvr
* Lib/fontTools/misc/eexec.py: eexecOp may also be a global module.
2001-08-09 18:47 jvr
* install.py, setup.py: Removed obsolete install.py script, and
replaced it with a
proper setup.py, offering full distutils support. So far only
tested under MacOS.
2001-07-30 19:05 Just
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: removed dependency on old
transformation class
2001-07-30 19:04 Just
* Lib/fontTools/t1Lib.py: updated OpenResFile() to FSpOpenResFile()
and CreateResFile() to
FSpCreateResFile() for carbon compatiblilty.
2001-06-27 23:09 Just
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: Don't take month and day
names from calendar.py: a buggy Metrowerks strftime() made this
crash hard in Python 2.2.
2001-06-24 15:14 Just
* Lib/fontTools/misc/psCharStrings.py, Lib/fontTools/misc/psLib.py:
don't print extra error info to stdout
2001-06-24 15:12 Just
* Lib/fontTools/t1Lib.py: renamed a bunch of things to use
CamelCase
2001-06-24 15:11 Just
* Lib/fontTools/afmLib.py: improved API for creating AFM files from
scratch
2001-06-24 15:10 Just
* Lib/fontTools/fondLib.py: fixed style strings bug, as triggered
by the Thorndale font.
2001-04-30 14:40 Just
* Lib/fontTools/afmLib.py: - added support for composite info
- write attributes in a decent order
2001-04-20 18:39 Just
* Lib/fontTools/misc/eexec.py, Lib/fontTools/misc/psLib.py: minor
cleanups
2001-03-09 12:42 Just
* Lib/fontTools/nfntLib.py: New & improved, but dead slow. Reads
and writes.
2001-02-23 21:58 Just
* Lib/fontTools/ttLib/__init__.py: don't allow duplicate glyph
names when building names from cmap/agl
2001-01-13 13:48 Just
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: workaround for currupt
(?) cmap subtable
2000-11-03 10:29 Just
* Lib/fontTools/ttLib/tables/_h_m_t_x.py,
Lib/fontTools/ttLib/tables/_l_o_c_a.py: don't complain as loudly
with fonts that don't completely adhere to the spec
2000-10-23 14:36 Just
* Lib/fontTools/ttLib/tables/_n_a_m_e.py: workaround for odd-length
unicode strings (!)
2000-10-18 22:27 Petr
* Lib/fontTools/ttLib/tables/_m_a_x_p.py: doh! font bounding box
goes to the head table, not maxp itself.
2000-10-13 14:19 Just
* Mac/TTX.rsrc.hqx: updated version & copyright
2000-10-13 14:18 Just
* Mac/TTX.py, Mac/TTXMain.py: what was I thinking
2000-10-13 13:51 Just
* Lib/fontTools/ttLib/tables/O_S_2f_2.py: added workaround for
buggy Apple fonts
2000-10-11 18:04 Just
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: added workaround for Py
1.5.1 compatibility
2000-10-03 10:34 Just
* Lib/fontTools/fondLib.py: initialize styleStrings with empty
string instead of None's: this allows certain Apple fonts to be
handled correctly.
2000-10-02 07:51 Just
* Lib/fontTools/ttLib/__init__.py, Lib/fontTools/ttLib/sfnt.py:
improved support for writing to (in memory) streams
2000-08-23 12:34 Just
* Lib/fontTools/ttLib/sfnt.py,
Lib/fontTools/ttLib/tables/_p_o_s_t.py: minor fix
2000-08-23 12:34 Just
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: made calculating bounding
box handle empty coordinate arrays gracefully
2000-08-23 12:33 Just
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: removed an assert that
was too strict
2000-08-23 12:31 Just
* Lib/fontTools/ttLib/__init__.py: minor changes
2000-07-03 18:45 Just
* Lib/fontTools/misc/homeResFile.py: module to find the home file
of a resource (handy for finding suitcase files when all you have
is a resource)
2000-06-29 18:35 Just
* Lib/fontTools/ttLib/tables/T_S_I_J_.py: another OT source table
2000-06-08 18:38 Just
* Lib/fontTools/ttLib/tables/O_S_2f_2.py: formatting
2000-06-07 19:13 Just
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: Allow long-aligned glyph
records (as is in fact recommended by the latest MS spec, but
almost nobody seems to do it...)
2000-06-07 18:25 Just
* Lib/fontTools/ttLib/tables/_c_m_a_p.py: Fixed cmap optimizer bug:
needs more testing!
2000-06-07 18:08 Just
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: Fixed getCoordinates() so
it works correctly with "empty" components.
2000-06-07 18:07 Just
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: The "flags" field is an
unsigned short, not a byte
2000-05-26 13:08 Just
* Lib/fontTools/agl.py: Roozbeh Pournader found a working version
to one of the broken URLs in the Adobe document.
2000-04-29 08:13 Just
* ttx_shellext_win32.py: updated to conform to the latest
configuration (Adam Twardoch)
2000-04-01 21:44 just
* Src/eexecOp/Makefile, Src/eexecOp/Makefile.pre.in,
Src/eexecOp/Setup.in: unix Makefile and Setup
2000-03-28 10:38 Just
* Lib/fontTools/t1Lib.py: some minor improvements
2000-03-28 10:37 Just
* Lib/fontTools/cffLib.py: don't barf if there are no subroutines
2000-03-28 10:33 Just
* Lib/fontTools/unicode.py: updated to Unicode 3.0 by Antoine Leca.
2000-03-15 20:57 Just
* Mac/README.txt: mac readme file
2000-03-15 20:56 Just
* Doc/bugs.txt, Doc/changes.txt: known bugs and last changes
2000-03-15 20:56 Just
* Doc/index.html: finally written some more doco
2000-03-15 20:55 Just
* LEGAL.txt: updated license
2000-03-15 20:55 Just
* README.txt: new minimal readme file
2000-03-14 23:21 Just
* Lib/fontTools/ttLib/test/__init__.py: added doc strings to empty
__init__.py files: WinZip apparently skips empty files. Doh!
2000-03-14 23:21 Just
* Lib/fontTools/ttLib/test/ttBrowser.py: fixed multi-arg .append()
call, for Python 1.6 compatibility.
2000-03-14 23:03 Just
* Lib/fontTools/ttLib/tables/_n_a_m_e.py: - some method name
changes
- check for 3,0 platform/encoding wide strings
2000-03-14 23:02 Just
* Lib/fontTools/ttLib/tables/_k_e_r_n.py: minor fixes. Note:
format2 is not implemented correctly!
2000-03-14 23:01 Just
* Lib/fontTools/__init__.py, Lib/fontTools/encodings/__init__.py,
Lib/fontTools/misc/__init__.py,
Lib/fontTools/ttLib/tables/__init__.py: added doc strings to
empty __init__.py files: WinZip apparently skips empty files.
Doh!
2000-03-14 23:00 Just
* Lib/fontTools/ttLib/xmlImport.py: fixed multi-arg .append() call,
for Python 1.6 compatibility.
2000-03-14 22:59 Just
* Lib/fontTools/ttLib/macUtils.py: changes reflecting a method name
change in the kern table.
2000-02-21 21:30 Just
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: be relaxed about zero
padding the input data to 4-byte boundaries
2000-02-21 21:14 Just
* Lib/fontTools/ttLib/tables/_h_e_a_d.py: another 64-bit fix
2000-02-16 14:59 Just
* ttffile.reg, ttx_shellext_win32.py: New Windows shell extension
by Adam Twardoch.
2000-02-13 17:36 just
* mktarball.py: some improvements; can optionally specify dest dir
2000-02-13 17:00 Just
* Lib/fontTools/ttLib/tables/_l_o_c_a.py: first patch to make ttLib
64-bit clean
2000-02-13 16:23 Just
* Lib/fontTools/ttLib/__init__.py: disable decompilation exception
catching: it causes too many debugging nightmares.
2000-02-04 19:19 Just
* Lib/fontTools/agl.py: Added note about the incorrect old URL in
the Adobe text, and reverted the text to what it was: it still is
the latest officially released document, and I'd rather include
it as-is.
2000-02-04 18:58 Erik
* Lib/fontTools/agl.py: new URL for adobe's glyphlist doco
2000-02-01 15:54 Just
* Lib/fontTools/ttLib/tables/ttProgram.py: reinstated accidentally
deleted regex.
2000-02-01 15:53 Just
* ttDump.py: added -i option. This will enable TT instruction
disassembly.
2000-02-01 15:32 Just
* Lib/fontTools/ttLib/tables/_n_a_m_e.py: added an assert, plus
some (commented out) test code for bad unicode strings
2000-02-01 15:31 Just
* Lib/fontTools/ttLib/tables/_f_p_g_m.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/tables/_p_r_e_p.py: added support for
instruction disassembly
2000-02-01 15:30 Just
* Lib/fontTools/ttLib/tables/ttProgram.py: - added assembler: we've
got a full round trip now!
- added toXML() and fromXML() methods
2000-02-01 15:29 Just
* Lib/fontTools/ttLib/__init__.py: added support for instruction
disassembly in saveXML()
2000-02-01 15:28 Just
* Lib/fontTools/misc/textTools.py: fixed buglet in num2binary()
2000-01-31 14:33 Just
* Lib/fontTools/misc/psCharStrings.py: fixed broken import
2000-01-31 14:31 Just
* Lib/interfaceChecker.py: minor doc string change
2000-01-26 19:32 Just
* Lib/fontTools/misc/arrayTools.py: Two new functions:
- vectorLength(vector): calculate the length of a vector
- asInt16(): round and cast any array (or number) to 16 bit ints
2000-01-26 19:20 Just
* Lib/interfaceChecker.py: Support for interface checking.
Experimental.
2000-01-23 19:10 Just
* Lib/fontTools/misc/arrayTools.py: new functions: unionRect() and
rectCenter()
2000-01-22 00:26 Just
* Lib/fontTools/misc/arrayTools.py: added intRect() function. Turn
any rect into a rect using ints only.
2000-01-20 11:08 Just
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: - added methods to get
composite component info conveniently
2000-01-19 20:44 Just
* Lib/fontTools/cffLib.py: various changes:
- the Transformation class is now a little cleaner & smarter
- pens now have a reference to a font
- pens have a new method called drawGlyph(), which is needed for
composites.
2000-01-19 12:37 Just
* Mac/TTXMain.py: use ".ttx" extension instead of ".xml". TTX is
now the name of the format, not just the app. Still needs work,
though.
2000-01-18 22:29 Just
* Lib/fontTools/misc/arrayTools.py: added a bunch of rectangle
tools that mimic some Qd.*Rect functions, like Qd.InsetRect.
2000-01-17 18:58 Just
* Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/table_API_readme.txt,
Lib/fontTools/ttLib/test/ttBrowser.py: use ".ttx" extension
instead of ".xml". TTX is not the name of the format, not the
app...
2000-01-17 18:49 Just
* tt2xml.py, ttCompile.py, ttDump.py, ttffile.reg, xml2tt.py:
renamed tt2xml.pt to ttDump.py and xml2tt.py to ttCompile.py
2000-01-16 22:14 Just
* Lib/fontTools/cffLib.py, Lib/fontTools/misc/psCharStrings.py,
Lib/fontTools/misc/psLib.py, Lib/fontTools/misc/psOperators.py,
Lib/fontTools/psCharStrings.py, Lib/fontTools/psLib.py,
Lib/fontTools/psOperators.py, Lib/fontTools/t1Lib.py: Moved
psCharStrings.py, psLib.py and psOperators.py to fontTools.misc,
since they're not "toplevel" font tools.
2000-01-16 20:37 Just
* Lib/fontTools/misc/arrayTools.py: yet another reorganization
round...
2000-01-12 19:15 Just
* Lib/fontTools/psLib.py, Lib/fontTools/t1Lib.py: Changes to use
the new fontTools.misc.eexec module instead of the old eexec
module.
2000-01-12 19:15 Just
* Lib/fontTools/misc/eexec.py: added fontTools.misc.eexec and a
MacOS/PPC shared lib (eexecOp) that provides the C
implementation.
2000-01-12 19:13 Just
* Src, Src/eexecOp, Src/eexecOp/README.txt,
Src/eexecOp/eexecOp.ppc.prj, Src/eexecOp/eexecOp.ppc.prj.exp,
Src/eexecOp/eexecOpmodule.c: added eexecOp, C implementation of
the new fontTools.misc.eexec module.
2000-01-05 20:45 Just
* Lib/fontTools/ttLib/tables/asciiTable.py: Remove null bytes
before dumping to XML. This seems neccesary, but I'm not sure if
this breaks compilation.
2000-01-05 20:44 Just
* Lib/fontTools/ttLib/tables/T_S_I_V_.py: added TSIV table
2000-01-05 20:43 Just
* Lib/fontTools/ttLib/__init__.py: - Added skiptTables argument to
TTFont.saveXML(), to support -x option of tt2xml.py
- Fixed typo
2000-01-05 20:41 Just
* tt2xml.py, ttDump.py: added -x <table> option, to exclude a
specific table.
2000-01-04 14:03 Just
* Lib/fontTools/ttLib/tables/T_S_I_B_.py,
Lib/fontTools/ttLib/tables/T_S_I_D_.py,
Lib/fontTools/ttLib/tables/T_S_I_P_.py,
Lib/fontTools/ttLib/tables/T_S_I_S_.py,
Lib/fontTools/ttLib/tables/asciiTable.py: Added private VOLT (?)
tables: TSIB, TSID, TSIP, TSIS. Easy, since they're plain ascii
tables.
2000-01-04 14:02 Just
* Lib/fontTools/ttLib/tables/T_S_I__1.py: added some initializer in
case the table is empty.
2000-01-04 14:01 Just
* Lib/fontTools/ttLib/tables/otCommon.py: while the OT modules are
in progress, disable decompilation and fall back to hex dumps.
2000-01-04 13:51 Just
* Lib/xmlWriter.py: set XML file type to BBEdit when on MacOS
2000-01-03 23:01 Just
* Lib/fontTools/ttLib/tables/otCommon.py: cleaned up error message
for failing version test
2000-01-03 23:00 Just
* Lib/fontTools/ttLib/tables/L_T_S_H_.py: added error messages to
the assert statements
2000-01-03 23:00 Just
* Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/DefaultTable.py,
Lib/fontTools/ttLib/xmlImport.py: Added code to fall back to the
DefaultTable (and therefore to hex XML dumps) when an exception
occurs during decompilation.
1999-12-29 13:10 Just
* tt2xml.py, ttDump.py: When using -s (splitting files), save the
xml files in a separate directory instead of in the same dir as
the font file.
1999-12-29 13:09 Just
* ttCompile.py, xml2tt.py: Revert current directory after glob'ing
for *.xml files
1999-12-29 13:07 Just
* Lib/fontTools/ttLib/tables/_n_a_m_e.py: Treat platformID=3,
platEncID=0 also as Unicode strings.
1999-12-29 13:06 Just
* Lib/fontTools/ttLib/__init__.py: - fixed broken agl import
- changed TTFOnt.saveXML + splitTables<>0 behavior: now expects a
path to a directory
1999-12-27 20:02 Just
* Lib/fontTools/ttLib/xmlImport.py: XMLApplication: don't create a
new table when a table with that tag already exist in the TTFont
object.
1999-12-27 19:52 Just
* ttCompile.py, xml2tt.py: Added support to merge multiple XML
files into one font (the opposite of tt2xml.py's -s option).
Improved doc string.
1999-12-27 19:49 Just
* tt2xml.py, ttDump.py: Added -s option to split each table into a
separate XML file.
1999-12-27 19:48 Just
* Lib/fontTools/ttLib/__init__.py: Added optional splitTables
argument to TTFont.saveXML(). Set to non-zero, this will cause
each table to be dumped to an idividual XML file.
1999-12-27 15:40 Just
* ttCompile.py, xml2tt.py: print final (timing) message when in
verbose mode
1999-12-27 15:39 Just
* Lib/fontTools/nfntLib.py: slight cleanup.
1999-12-23 15:16 Just
* Lib/fontTools/ttLib/__init__.py: edited TTFont.__init__ doc
string, the recalcBBoxes explanation should now be clearer and
more complete.
1999-12-23 14:44 Just
* Lib/fontTools/ttLib/test/ttBrowser.py: added browseTTFont()
function.
1999-12-23 14:44 Just
* Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/tables/_h_h_e_a.py,
Lib/fontTools/ttLib/tables/_m_a_x_p.py: don't recalc a number of
things then TTFont().recalcBBoxes is off. This allows us to
compact glyphs right after they've been parsed from XML, which
should greatly reduce memory usage, and therefore should speedup
compiling large fonts.
1999-12-23 12:32 Just
* Lib/fontTools/ttLib/tables/_h_d_m_x.py: oops: header struct is
big endian of course! noted by Werner Lemberg.
1999-12-23 12:31 Just
* ttCompile.py, xml2tt.py: fixed dumb error: recalcBBoxes goes into
the TTFont constructor, not int TTFont.save.
1999-12-20 23:37 Just
* Mac, Mac/TTX.py, Mac/TTX.rsrc.hqx, Mac/TTXMain.py: populating Mac
subdirectory
1999-12-20 23:36 Just
* TTX.py, TTX.rsrc: moved Mac subdirectory
1999-12-20 22:02 Just
* Lib/fontTools/cffLib.py: dummy checkin -- testing
1999-12-20 21:59 Just
* Lib/fontTools/cffLib.py: added $Id$ tag.
1999-12-18 23:56 just
* mktarball.py: fixed dir dependency
1999-12-18 23:28 Just
* mktarball.py: doco and cleanup
1999-12-18 23:25 just
* mktarball.py: working version
1999-12-18 23:10 Just
* mktarball.py: oops, syntax error
1999-12-18 23:09 Just
* mktarball.py: debugging...
1999-12-18 23:05 Just
* mktarball.py: added distribution script
1999-12-18 22:56 Just
* Lib/fontTools/encodings/MacRoman.py: dummy commit, testing
1999-12-18 21:32 Just
* Lib/fontTools/ttLib/__init__.py: moved an import statement
1999-12-18 21:30 Just
* Lib/fontTools/psOperators.py: now uses
fontTools.encodings.StandardEncoding instead of defining its own
1999-12-18 21:29 Just
* Lib/fontTools/encodings, Lib/fontTools/encodings/MacRoman.py,
Lib/fontTools/encodings/StandardEncoding.py,
Lib/fontTools/encodings/__init__.py: added some encoding files in
a new subpackage: fontTools.encodings
1999-12-18 18:18 Just
* Doc, Doc/index.html: added Doc directory and initial hmtl doc
file. Still pretty much empty...
1999-12-18 18:12 Just
* ttCompile.py, xml2tt.py: - changed some variable names
- added -b command line argument: sets recalcBBoxes to false
1999-12-18 18:11 Just
* tt2xml.py, ttDump.py: changed some variable names.
1999-12-18 18:08 Just
* Lib/fontTools/ttLib/tables/_g_l_y_f.py: added recalcBBoxes
argument to Glyph.compile()
1999-12-18 18:06 Just
* Lib/fontTools/ttLib/__init__.py: added recalcBBoxes argument to
TTFont.__init__()
1999-12-17 12:54 Just
* Lib/fontTools/ttLib/__init__.py: minor cleanup of some doc
strings
1999-12-17 12:51 Just
* Lib/fontTools/ttLib/__init__.py: added __release__ symbol,
changed __version__ to $Id$.
1999-12-17 12:42 Just
* install.py: changed the name of the .pth file to FontTools.pth
1999-12-17 12:37 Just
* Lib/fontTools/ttLib/test/ttBrowser.py: added doc string saying
that this module is Mac-only.
1999-12-17 12:36 Just
* Lib/fontTools/ttLib/test/__init__.py: forgot to check in the
__init__.py file for fontTools.ttLib.test
1999-12-17 11:57 Just
* Lib/fontTools/ttLib/tables/_k_e_r_n.py: fixed broken ttLib.sfnt
import statement
1999-12-16 22:04 Just
* LEGAL.txt, README.txt, TTX.py, TTX.rsrc, install.py, tt2xml.py,
ttCompile.py, ttDump.py, ttffile.reg, xml2tt.py: Added the TTX
main program, the command line programs and additional files.
1999-12-16 21:34 Just
* Lib, Lib/fontTools, Lib/fontTools/__init__.py,
Lib/fontTools/afmLib.py, Lib/fontTools/agl.py,
Lib/fontTools/cffLib.py, Lib/fontTools/fondLib.py,
Lib/fontTools/misc, Lib/fontTools/misc/__init__.py,
Lib/fontTools/misc/textTools.py, Lib/fontTools/nfntLib.py,
Lib/fontTools/psCharStrings.py, Lib/fontTools/psLib.py,
Lib/fontTools/psOperators.py, Lib/fontTools/t1Lib.py,
Lib/fontTools/ttLib, Lib/fontTools/ttLib/__init__.py,
Lib/fontTools/ttLib/macUtils.py, Lib/fontTools/ttLib/sfnt.py,
Lib/fontTools/ttLib/standardGlyphOrder.py,
Lib/fontTools/ttLib/tables, Lib/fontTools/ttLib/tables/C_F_F_.py,
Lib/fontTools/ttLib/tables/D_S_I_G_.py,
Lib/fontTools/ttLib/tables/DefaultTable.py,
Lib/fontTools/ttLib/tables/G_P_O_S_.py,
Lib/fontTools/ttLib/tables/G_S_U_B_.py,
Lib/fontTools/ttLib/tables/L_T_S_H_.py,
Lib/fontTools/ttLib/tables/O_S_2f_2.py,
Lib/fontTools/ttLib/tables/T_S_I__0.py,
Lib/fontTools/ttLib/tables/T_S_I__1.py,
Lib/fontTools/ttLib/tables/T_S_I__2.py,
Lib/fontTools/ttLib/tables/T_S_I__3.py,
Lib/fontTools/ttLib/tables/T_S_I__5.py,
Lib/fontTools/ttLib/tables/__init__.py,
Lib/fontTools/ttLib/tables/_c_m_a_p.py,
Lib/fontTools/ttLib/tables/_c_v_t.py,
Lib/fontTools/ttLib/tables/_f_p_g_m.py,
Lib/fontTools/ttLib/tables/_g_a_s_p.py,
Lib/fontTools/ttLib/tables/_g_l_y_f.py,
Lib/fontTools/ttLib/tables/_h_d_m_x.py,
Lib/fontTools/ttLib/tables/_h_e_a_d.py,
Lib/fontTools/ttLib/tables/_h_h_e_a.py,
Lib/fontTools/ttLib/tables/_h_m_t_x.py,
Lib/fontTools/ttLib/tables/_k_e_r_n.py,
Lib/fontTools/ttLib/tables/_l_o_c_a.py,
Lib/fontTools/ttLib/tables/_m_a_x_p.py,
Lib/fontTools/ttLib/tables/_n_a_m_e.py,
Lib/fontTools/ttLib/tables/_p_o_s_t.py,
Lib/fontTools/ttLib/tables/_p_r_e_p.py,
Lib/fontTools/ttLib/tables/_v_h_e_a.py,
Lib/fontTools/ttLib/tables/_v_m_t_x.py,
Lib/fontTools/ttLib/tables/otCommon.py,
Lib/fontTools/ttLib/tables/table_API_readme.txt,
Lib/fontTools/ttLib/tables/ttProgram.py,
Lib/fontTools/ttLib/test, Lib/fontTools/ttLib/test/ttBrowser.py,
Lib/fontTools/ttLib/xmlImport.py, Lib/fontTools/unicode.py,
Lib/sstruct.py, Lib/xmlWriter.py, fonttools: Created a new
library directory called "FreeLib". All OpenSource RFMKII
components will reside there, fontTools being the flagship.
1999-12-16 21:34
* .: Create standard layout
|