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
|
2005-01-26 21:36 danmc
* Makefile.in, aclocal.m4, README_FILES/Makefile.in,
doc/Makefile.in, example/Makefile.in,
example/libraries/Makefile.in, lib/Makefile.in,
newlib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
newlib/generic_SMD_packages/Makefile.in,
newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
newlib/tests/Makefile.in, newlib/toko/Makefile.in,
src/Makefile.in, src/icons/Makefile.in, src/script/Makefile.in,
tools/Makefile.in, tutorial/Makefile.in: update to latest
automake
2005-01-26 20:49 danmc
* src/: Pcb.ad.in, main.c: change pcb to Pcb in a commented out
resource
2005-01-26 20:45 danmc
* lib/: geda.inc, misc.inc: fix the LED3 and LED5 footprints for
T-1 and T-1 3/4 (3mm and 5mm) standard LED's. The old footprint
had drill holes which were too small and also there was silk on
the pad.
2005-01-25 20:35 danmc
* lib/plcc.inc: increase the padsize and drill size for
through-hole PLCC sockets
2005-01-25 13:20 djdelorie
* src/pcb-menu.res: Oops, take out test entry
2005-01-25 13:07 djdelorie
* src/: menu.c, pcb-menu.res, resmenu.c, resmenu.h: Move
right-click popup menu to pcb-menu.res also.
2005-01-21 18:19 danmc
* doc/version.texi: bump date
2005-01-21 17:46 danmc
* src/create.c: do not complain about MIN_PINORVIACOPPER on a
mounting hole
2005-01-21 17:25 danmc
* src/: Pcb.ad.in, main.c, set.c: - break the status line into 2
lines as it was getting rather long - put the cursor position
line below the menu as it is also getting rather long with the
metric display.
Besides keeping the 2 lines from being cutoff on smaller
displays, it seems to avoid some of the strange Xaw issues seen
in bug #1099862 and patch #1042731 where the porthole for the
main drawing area is not properly sized and where the status line
is sometimes covered by the porthole.
2005-01-21 17:21 danmc
* src/Makefile.in: regen
2005-01-21 17:18 danmc
* src/Makefile.am: for the .test/Pcb apps-default file (the one
used when running before installation), use the pcb-menu.res file
in the source directory.
2005-01-21 17:15 danmc
* src/action.c, src/pcb-menu.res, doc/pcb.texi: Add "Selected" and
"All" arguments to DisperseElements so you have the option to not
disperse all of them. Add corresponding menu choices.
2005-01-18 18:13 danmc
* src/print.c: avoid having text overlaying text in the fab drawing
when a very small number of drill sizes are used. Problem
reported in bug #1100163. Patch provided by Mick.
2005-01-17 23:40 danmc
* configure: regen
2005-01-17 23:38 danmc
* configure.ac: add a --disable-rpath flag to disable hardcoding of
the X11 library path. Default behaviour is unchanged.
2005-01-16 23:08 danmc
* src/main.c: use LAYOUT_BOTTOM to always put the status line at
the bottom of the main window. Gets rid of some annoying bugs on
solaris and some other systems where the status line would
sometimes get covered up when the window was resized.
2005-01-16 22:54 danmc
* src/create.c: in the message log produced when a via size has to
be increased to meet the minimum copper, add a location to make
it easier to locate the via.
2005-01-16 22:46 danmc
* src/: Pcb.ad.in, main.c: Increase
Pcb.masterForm*cursorPosition.width to make room for metric
display. Provided by Mark Whitis in patch #1042731
2005-01-16 20:05 danmc
* doc/pcb.texi: add docs for ChangeClearSize() action. Also apply
some other fixes provided in patch #1068842
2005-01-13 19:31 danmc
* lib/misc.inc: increase quoting of $2 in PKG_CRYSTAL to avoid the
refdes from being expanded by m4. Lets you use "X1" as the
refdes in gschem and gsch2pcb
2005-01-13 17:30 danmc
* README_FILES/Makefile.in: regen
2005-01-13 17:29 danmc
* doc/version.texi: udate data
2005-01-13 17:15 danmc
* src/pcb-menu.res: add DisperseElements() to menu
2005-01-13 17:13 danmc
* src/: control.c, main.c, resmenu.c: remove some more compiler
warnings
2005-01-13 17:08 danmc
* doc/pcb.texi, src/action.c, src/action.h, src/main.c: add a
DisperseElements() action which will disperse all elemnents in a
layout. The purpose is to spread out elements which are all on
top of each other at the very beginning of a design.
2005-01-06 18:27 danmc
* README, README_FILES/LICENSE, README_FILES/MAILING,
README_FILES/Makefile.am, README_FILES/README: remove duplicated
files and fix some out of date info
2005-01-05 22:46 danmc
* src/: djopt.c, rtree.c: cast some pointers to (void *) when
printing debug output. reduces the # of compiler warnings
2005-01-03 07:56 danmc
* src/: action.c, autoplace.c, autoroute.c, box.h, buffer.c,
buffer.h, change.c, change.h, clip.c, clip.h, copy.c, copy.h,
create.c, create.h, crosshair.c, crosshair.h, data.c, data.h,
dev_ps.c, dev_rs274x.c, draw.c, file.c, find.c, find.h, global.h,
insert.c, insert.h, intersect.c, line.c, macro.h, mirror.c,
mirror.h, misc.c, misc.h, move.c, move.h, mtspace.c, output.c,
output.h, pinout.c, polygon.c, polygon.h, print.c, print.h,
printdialog.c, rotate.c, rotate.h, rubberband.c, search.c,
search.h, set.c, set.h, undo.c, undo.h: change "Location" to
"LocationType". Avoids some confusion with some compilers
(SunPRO in particular) when "Location" is also used as part of a
struct.
2004-12-31 00:11 danmc
* src/vendor.c: move the regfree() call _before_ the return from
the function that calls it so that it actually happens.
2004-12-11 19:12 danmc
* src/vendor.c: remove a compiler warning
2004-11-20 17:25 danmc
* src/set.c: add metric output to the location display. Based on
patches provided in patch #1042731 by Mark Whitis
2004-11-20 17:20 danmc
* src/main.c: adjust Pcb.masterForm*cursorPosition.width to match
the app-defaults file value
2004-11-20 09:30 danmc
* src/actionlist.c: revert previous. Seems to have snuck in by
mistake in the strcmp() cleanup.
2004-11-20 09:15 danmc
* src/pcb-menu.res: add <Key>. as the hotkey for toggling 45 degree
line mode. addressed bug #1069665 filed by Mark Whitis.
2004-11-18 23:12 haceaton
* src/crosshair.c: Snap to pads go to pad centers and allow
snapping to element mark too.
----------------------------------------------------------------------
2004-11-18 22:08 haceaton
* src/: action.c, actionlist.c, autoplace.c, create.c,
dev_rs274x.c, dialog.c, djopt.c, draw.c, file.c, fileselect.c,
macro.h, main.c, misc.c, netlist.c, print.c, rats.c, res_parse.y,
search.c, selector.c, set.c, vendor.c: Replace all strcmp with a
macro that tests for NULL pointers
----------------------------------------------------------------------
2004-11-08 00:36 danmc
* src/control.c: Restore translation table for the mode buttons.
This seems to fix the "mode buttons are not responsive" bug
reported in bug #716517 Patch provided by Daniel Nilsson in patch
#1023078.
2004-11-07 09:46 haceaton
* src/: change.c, change.h: Allow element names to be edited over
the name itself
----------------------------------------------------------------------
2004-11-01 22:38 danmc
* src/Pcb.ad.in: Fix the <Key>. binding to toggle 45 degree mode.
Addresses bug #1022800
2004-11-01 06:58 danmc
* config.h.in, configure: regen [add support for ElectricFence
debugging. --enable-efence]
2004-11-01 06:57 danmc
* configure.ac: add support for ElectricFence debugging.
--enable-efence
2004-11-01 06:52 danmc
* doc/: pcb.texi, version.texi: clarify the units used by PCB a bit
2004-10-31 01:50 danmc
* doc/pcb.texi, src/vendor.c: Allow the use of regular expressions
in the resources which specify elements which should not have
their drill holes mapped to the vendor table.
2004-10-30 02:56 danmc
* src/: pcb-menu.res, vendor.c: Modify the LoadVendor() action so
if the file name is not give, the user is presented with a file
selection dialog box to choose a file. Also add a menu choice
for this.
2004-10-30 02:30 danmc
* src/script/pcb.in: Quote "$@" to keep args whole
2004-10-29 09:05 danmc
* src/: Makefile.am, Makefile.in: add missing vendor.h
2004-10-29 02:08 danmc
* doc/pcb.texi: document vendor drill mapping
2004-10-29 02:07 danmc
* src/: Makefile.in, actionlist.c: regen after adding vendor
resource/mapping code
2004-10-29 02:07 danmc
* src/: Makefile.am, action.c, change.c, change.h, create.c,
pcb-menu.res, vendor.c, vendor.h: Add support for a loadable
vendor resource. The primary purpose is to import a list of
vendor supported or prefered drill sizes. The design is then
modified to change drills to sizes in the drill list.
Additionally, the vendor resource file may include DRC settings.
2004-10-27 10:36 djdelorie
* src/resmenu.c: Support multiple actions per line for -action and
-script
2004-10-27 10:28 djdelorie
* src/pcbtest.sh.in: Quote "$@" to keep args whole
2004-10-27 10:23 djdelorie
* src/: actionlist.c, global.h, main.c, resmenu.c: Add -action
command line, to execute one action string at startup
2004-10-27 10:11 djdelorie
* src/: pcb-menu.res, res_lex.l: Add support for comments.
Comments begin with '#' and extend to the end of the line.
2004-10-27 10:10 djdelorie
* doc/: pcb.texi, version.texi: Document resource file comments
2004-10-25 21:38 danmc
* src/dialog.c: remove unused variable, make sure return returns a
value on a non-void fn
2004-10-25 06:55 danmc
* src/dialog.c: Add date and compile time to the About dialog.
Patch provided as patch #1053444 by Bob Paddock.
2004-10-24 22:10 danmc
* src/buffer.c: Fix one more (last one maybe?) hires bug where when
converting a selection or buffer to element, the soldermask
relief is 100x smaller than the default. Address bug report
#1049033.
2004-10-24 22:00 danmc
* Makefile.in, README_FILES/Makefile.in, example/Makefile.in,
example/libraries/Makefile.in, lib/Makefile.in,
newlib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
newlib/generic_SMD_packages/Makefile.in,
newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
newlib/tests/Makefile.in, newlib/toko/Makefile.in,
src/Makefile.in, src/icons/Makefile.in, src/script/Makefile.in,
tools/Makefile.in, tutorial/Makefile.in: regen so that all
Makefile.in files came from the same version of automake
2004-10-24 21:59 danmc
* doc/version.texi: update date on manual since there have been
additions
2004-10-22 23:39 danmc
* doc/pcb.texi: minor fixups to make this happy again with the new
texinfo.tex
2004-10-22 23:38 danmc
* doc/texinfo.tex: update to texinfoversion 2004-09-06.16
2004-10-21 18:49 haceaton
* src/change.c: Fix borking of name_tree when changing an element
name
----------------------------------------------------------------------
2004-10-21 18:16 danmc
* doc/Makefile.in: regen
2004-10-21 18:14 danmc
* doc/Makefile.am: - override the mostlyclean-aminfo target to
avoid deleting the .dvi, .html, .pdf, and .ps versions of the
manual with 'make clean'. Since these files already go in the
distfile, we don't want a 'make clean' to remove them as that
would force a dependency on TeX. This issue was noted by Stuart
Brorson.
- while here let automake handle the html and pdf conversions
automatically. This ends up defaulting to texi2pdf for PDF which
seems to do a better job than ps2pdf anyway.
2004-10-21 18:11 danmc
* aclocal.m4, configure: regen
2004-10-21 18:04 danmc
* configure.ac: check for ps2pdf which is used for building the
refcard
2004-10-21 18:02 danmc
* acinclude.m4: improve the quoting so that aclocal-1.9.2 is
happier
2004-10-20 08:21 danmc
* doc/pcb.texi: minor fixup in the newlib element creation guide.
2004-10-19 21:02 danmc
* doc/pcb.texi: Apply several improvements from Bob Paddock
including:
- spell check - improved section on modifying newlib footprints -
add section on searching for elements - add section on
measurements - add appendix on regular expressions
Some texinfo fixes from me.
2004-10-17 01:40 djdelorie
* src/resmenu.c: Sort actions by modifier so that both Ctrl<Key>x
and <Key>x work.
2004-10-17 01:40 djdelorie
* src/actionlist.c: Regenerated
2004-10-17 01:16 djdelorie
* src/action.c: Add FlagHaveRegex (have_regex) so that the
SelectByName menu entries work.
2004-10-12 09:16 djdelorie
* src/global.h: Oops, overzealous patching ;-)
2004-10-12 09:13 djdelorie
* src/global.h: add non-gcc definition of ATTRIBUTE_UNUSED
2004-10-12 08:09 danmc
* src/global.h: add missing #else clause in defining
ATTRIBUTE_UNUSED on non-gcc or older gcc version. Problem noted
by Dave McGuire.
2004-10-08 12:56 djdelorie
* src/rats.c: Check for numberless pins.
2004-10-07 22:30 djdelorie
* src/print.c: Print plated and unplated hole counts on separate
lines.
2004-10-06 16:04 djdelorie
* src/print.c: Avoid checking pin numbers for unnumbered pins.
2004-09-23 22:55 djdelorie
* src/: actionlist.c, data.c, dialog.c, global.h, main.c: Add
command history to : widget.
2004-09-23 22:02 danmc
* README.snapshots: minor tweaks to instructions
2004-09-21 00:37 haceaton
* src/: draw.c, move.c, pinout.c: Fixes for pinout window crash.
Still need to fix pinout scroll range at high zoom
2004-09-20 23:51 haceaton
* src/misc.c: Fix error on non-quarter circle arc bounding box
calculations
2004-09-20 22:31 haceaton
* src/menu.c: Don't ask for X,Y coordinates in third-button pop-up
menu; the coordinate is where the cursor was when the menu was
popped up.
2004-09-20 22:16 haceaton
* src/draw.c: Fixed return value of Emark_callback. (Didn't really
matter, we weren't count number of marks drawn).
2004-09-20 21:48 haceaton
* src/action.c: Allow Ctrl-drag to copy objects in arrow mode.
2004-09-20 21:46 haceaton
* src/polygon.c: Fix bug with polygon clearances from other layers
in the group.
2004-09-08 00:05 danmc
* src/set.c: add an extra digit to the display of metric
measurements. Patch from Gabriel Paubert.
2004-09-03 20:35 danmc
* NEWS: mention the background image in 20040903
2004-09-03 18:12 danmc
* NEWS: update with pcb-20040903 news items
2004-09-03 07:43 danmc
* aclocal.m4, configure, doc/version.texi: regen for pcb-20040903
2004-09-03 00:28 danmc
* configure.ac: set version for snapshot
2004-09-03 00:04 danmc
* ChangeLog: update to get ready for next snapshot
2004-09-03 00:02 danmc
* README.snapshots: add more detailed snapshot instructions
2004-08-30 07:54 danmc
* src/: resmenu.h, main.c: add missing headers
2004-08-30 07:29 danmc
* src/parse_y.y: add missing prototype
2004-08-30 07:26 danmc
* src/find.c: remove unused variable
2004-08-30 07:21 danmc
* src/res_lex.l: add missing prototype
2004-08-29 23:32 danmc
* src/res_parse.y: clean up a few more compiler warnings
2004-08-29 23:13 danmc
* src/djopt.c: get rid of a bunch of format string compiler
warnings along with some unused variable warnings
2004-08-29 22:52 danmc
* src/: action.c, autoplace.c, autoroute.c, buffer.c, change.c,
clip.c, command.c, compat.c, control.c, copy.c, create.c,
crosshair.c, data.c, dev_ps.c, dev_rs274x.c, dialog.c, djopt.c,
draw.c, drill.c, error.c, file.c, fileselect.c, find.c, global.h,
gui.c, heap.c, insert.c, intersect.c, lgdialog.c, library.c,
line.c, log.c, main.c, menu.c, mirror.c, misc.c, move.c,
mtspace.c, mymem.c, netlist.c, output.c, parse_l.l, parse_y.y,
pinout.c, polygon.c, print.c, printdialog.c, printpanner.c,
rats.c, remove.c, report.c, res_lex.l, res_parse.y, resmenu.c,
rotate.c, rtree.c, rubberband.c, search.c, select.c, selector.c,
set.c, sizedialog.c, undo.c, vector.c: rework the lines which
have static char *rcsid=.... to include an unused attribute on
gcc. This gets rid of a bunch of gcc -Wall warnings which can
cause some actual bugs to be lost in the noise.
While here, make sure we include config.h and also dmalloc.h if
dmalloc debugging has been requested.
2004-08-28 21:46 danmc
* src/draw.c: fix a "=" instead of "==" bug
2004-08-28 08:41 danmc
* README.cvs: update this to more closely match the current reality
2004-08-28 08:33 danmc
* src/actionlist.c: add actionlist.c for non-maintainers
2004-08-28 01:25 danmc
* configure: regen (if we are using gcc then add -Wall)
2004-08-28 01:24 danmc
* configure.ac: if we are using gcc then add -Wall
2004-08-27 18:04 danmc
* src/draw.c: add missing header (for isdigit)
2004-08-27 18:01 danmc
* src/dev_rs274x.c: use long int in some places to avoid assigning
a long int to an int
2004-08-27 18:01 danmc
* src/: action.c, rtree.c: remove some unused variables
2004-08-27 17:57 danmc
* src/: output.c, resmenu.c: add a missing header
2004-08-27 17:57 danmc
* src/main.c: remove an unused variable
2004-08-26 22:21 danmc
* doc/version.texi: bump updated date
2004-08-26 21:54 danmc
* doc/Makefile.in: regen (add pcb.1 to EXTRA_DIST)
2004-08-26 21:53 danmc
* doc/Makefile.am: add pcb.1 to EXTRA_DIST
2004-08-26 21:04 danmc
* doc/pcb.texi: document the ExecuteFile() action and the -script
command line option
2004-08-26 20:58 danmc
* src/: global.h, main.c, misc.c, resmenu.c: add an
ExecuteFile(file) action which executes the actions contained in
the specified file. In addition, add a "-script <filename>"
option which will invoke ExecuteFile(<filename>) upon startup.
Eventually (but not yet) this will be able to be used for things
like generating postscript and RS-274-X output from the command
line.
2004-08-25 21:58 danmc
* src/resmenu.c: Fix a minor memory leak bug which allocated space
for 10 more pointers everytime invoke_action() was called.
While here add a few comments about whats going on in this
function.
2004-08-24 22:38 danmc
* doc/pcb.texi: update the table of the output files generated by
PCB
2004-08-24 22:37 danmc
* src/pcb-menu.res: use "Reference Designator" instead of "Name on
PCB" as the former is more standard
2004-08-24 22:27 danmc
* src/file.c: exclude Makefile, Makefile.am, and Makefile.in as
valid element names as these may reside in a lib directory
2004-08-24 22:22 danmc
* doc/pcb.texi: add a brief comment about what M4 is and where to
find more info
2004-08-24 21:59 danmc
* src/action.c: add one more Usage message. this time for the
RemoveSelected() action
2004-08-24 21:07 danmc
* src/: main.c, misc.c: allow --version, --help, and --copyright to
also work since those are typically supported by GNU programs.
2004-08-24 21:03 danmc
* src/misc.c: In the Usage() function be sure to restore stderr at
the beginning since this function calls exit(). This will ensure
that the Usage() message can actually be seen in all cases.
Fixes the following: clock@oberon:~$ pcb --version
clock@oberon:~$ noted by Karel Kulhav on the gEDA mailing list.
2004-08-24 17:49 danmc
* doc/Makefile.in: regen after adding pcb.1
2004-08-24 17:44 danmc
* doc/: pcb.1, Makefile.am: add a man page which says where to look
for the manual
2004-07-30 23:29 danmc
* src/find.c: avoid 'inline' unless we're using gcc.
2004-07-30 23:26 danmc
* src/res_parse.y: use foo?foo:bar instead of foo?:bar as the
latter is a gcc extension. Makes the irix c compiler happy.
2004-07-28 21:50 danmc
* lib/geda.inc: update the 150 and 300 mil width SOIC packages per
the IPC recommendations at footprint.ipc.org. Partially
addresses the "silk on pad" bug noted in bug report #995401.
2004-07-28 21:48 danmc
* lib/smt.inc: improve the decision on adding or not adding a silk
arc on the COMMON_SMT_DIL_MIL macro
2004-07-16 23:14 haceaton
* src/print.c: Only clear silk on same side as pad. Patch
contributed by burto
2004-07-09 23:42 djdelorie
* doc/pcb.texi, src/draw.c, src/draw.h, src/global.h, src/main.c,
src/misc.c: Add limited support for a behind-the-board background
image.
2004-07-07 21:32 danmc
* src/rubberband.c: Fix a bug related to checking for the
intersection of a circular region defined by an line end point
and its radius and a rectangular pin/pad. The old code looked
for the intersection of the smallest square which encloses the
circular region and the rectangular pin/pad region. However this
method claims that there are intersections when in fact there are
not. For example a very wide trace has a significant area
enclosed by the square which encloses the circular region defined
by the line end and radius that is not enclosed by the circular
region.
The new code actually looks for intersection of the circular
region and the square region.
2004-07-07 19:59 danmc
* src/rubberband.c: fix some errors where the diameter was used
where the radius should have been used when looking for circular
regions which intersect. Fixes bug report #978412. Partial
patch provided in the bug report, additional bugs fixed by me.
Note: a bug still exists when calculating line -> rectangular pad
intersection. A fix will be coming.
2004-07-01 22:02 haceaton
* src/undo.c: Fix UndoChangeMaskSize assuming LINESTRUCT has the
mask parameter
2004-06-30 19:28 danmc
* src/: pcbtest.sh.in, script/pcb.in: when running under gdb set
XAPPLRESDIR and unset XUSERFILESEARCHPATH
2004-06-30 19:24 danmc
* src/resmenu.c: make 'str' static so that the memory allocated by
MyStrdup() can properly be freed on the next call of
invoke_action.
2004-06-25 19:04 djdelorie
* src/pcb-menu.res: Change size of selected objects, fix enlarge
options to actually enlarge (bug 978408)
2004-06-25 18:58 djdelorie
* src/menu.c: Cut and Copy from the popup menu now wait for a click
before acting (bug 978406)
2004-06-24 11:05 djdelorie
* src/: Pcb.ad.in, main.c, menu.c, pcb-menu.res, resmenu.c,
resmenu.h: Add support for menu accelerators. Replace hotkey
translations with menu accelerators where appropriate.
2004-06-20 17:33 djdelorie
* src/: Makefile.am, Makefile.in: Run gather-actions only if
maintainer-mode
2004-06-15 09:32 haceaton
* src/: action.c, autoroute.c, const.h, menu.c, pcb-menu.res: Fix
live routing menu handling; patch segfault on breaking element
with no element specified. Autorouter tweaks.
2004-06-10 18:48 danmc
* lib/geda.inc: add a few more 400mil width DIP packages (DIPxM)
2004-06-09 20:22 danmc
* src/dev_rs274x.c: make sure we define all aperture codes used by
arcs. Fixes the bug reported in bug #969903 by Werner Hoch where
an arc of a width not used by anything else in the layout does
not have its aperture defined.
2004-06-09 19:09 danmc
* src/find.c: fix the function name strings passed to MyCalloc().
2004-06-09 00:15 danmc
* src/pcb-menu.res: Do not arbitrarily change the zoom setting
whenever running DRC. Especially if there are no DRC errors, we
don't want/need to change the zoom. Noted by Mark Becker.
2004-06-09 00:14 danmc
* src/pcb-menu.res: Add 0.5 and 0.1 mil grid selections. Requested
in RFE #876549 by John Griessen.
2004-06-09 00:12 danmc
* src/: find.c, misc.c, misc.h: Save layerstack settings prior to
running DRC and restore them afterwards so that things like
current input layer are not changed by DRC. Noted by Mark
Becker.
2004-06-04 23:33 danmc
* configure: regen after rpath flag order change
2004-06-04 23:32 danmc
* configure.ac: change the order in the list of rpath flags which
are tried out. This is because when -R was tried first, it was
accepted on linux systems because even though gcc didn't like it,
it still exited with 0. The new order seems to do the right
thing on solaris, linux, and netbsd as the compiler now actually
gives an error code for the flags it does not like.
2004-06-04 22:21 djdelorie
* src/djopt.c: Be even more picky about which line is chosen as an
example.
2004-06-04 19:01 danmc
* configure: regen (If --enable-dmalloc is given but dmalloc is not
found then error out instead of disabling dmalloc
2004-06-04 19:00 danmc
* configure.ac: If --enable-dmalloc is given but dmalloc is not
found then error out instead of disabling dmalloc
2004-06-03 19:06 danmc
* src/action.c: add usage output for several more actions
2004-06-02 20:45 danmc
* src/action.c: Add usage output if the input arguments are not
quite right for several actions. Still have more to add, but
this is a start.
2004-06-01 20:45 danmc
* src/default_font: add @ character. Absence noted by Dave
McGuire.
2004-06-01 19:29 danmc
* src/pcb-menu.res: add a GetXY() to the 'copy selection to buffer'
menu. Needed to have a resonable reference point for the copy.
Noted by Mark Becker.
2004-06-01 19:18 danmc
* configure: regen (fail configuration if Xaw is not found)
2004-06-01 19:18 danmc
* configure.ac: fail configuration if Xaw is not found
2004-05-31 08:28 danmc
* README.snapshots: add a note to remember to do something better
with versions on the next snapshot
2004-05-31 08:15 danmc
* NEWS: remove duplicated line
2004-05-30 20:51 danmc
* ChangeLog: update changelog with cvs2cl.pl. This file previously
was empty.
2004-05-30 20:49 danmc
* doc/version.texi: bump updated date to match snapshot date
2004-05-30 20:46 danmc
* NEWS: add some release notes for the upcoming 20040530 snapshot
2004-05-29 14:57 danmc
* src/change.c: add missing prototype
2004-05-28 22:26 danmc
* globalconst.h: set MASKFRAME to be 3 (mils) instead of 0. This
way the soldermask opening will be larger than the pads for
components defined using the older style format which did not
explicitly give soldermask relief size.
2004-05-28 21:47 danmc
* doc/pcb.texi: document the SetFlag(), ClrFlag(), and ChangeFlag()
actions
2004-05-28 21:38 danmc
* doc/pcb.texi: correct location for Pcb appdefaults file
2004-05-28 20:15 danmc
* src/: pcbtest.sh.in, script/pcb.in: For the pcb wrapper script,
if the first argument is "-gdb", pick off that flag and run pcb
inside of the gdb debugger. Should simplify debugging a bit.
2004-05-28 20:13 danmc
* src/: action.c, action.h, change.c, change.h, main.c: Add
SetFlag, ClrFlag, and ChangeFlag actions. These currently let
you set, clear, or change the square, octagon, or thermal pads.
For example :SetFlag(SelectedVias,thermal)
:ClrFlag(SelectedObjects,square)
:ChangeFlag(SelectedPads,octagon,1)
2004-05-27 23:17 danmc
* src/djopt.c: Fix the segfault bug noted in bug report #959073 by
Bob Paddock. While here, also fix a bug which can potentially
cause a floating point exception.
2004-05-27 23:15 danmc
* config.h.in, configure: regen after adding rint() test
2004-05-27 23:12 danmc
* configure.ac: add test for rint()
2004-05-26 22:11 danmc
* doc/version.texi: bump date
2004-05-26 22:10 danmc
* doc/pcb.texi: add INFO-DIR-SECTION Miscellaneous per bug #957369
submitted by Mike Frysinger
2004-05-23 14:57 danmc
* lib/smt.inc: update the COMMON_SMT_2PAD_MIL macro to the newer
element format. With this change, the soldermask relief and
clearance can now be specified for the pads. This fixes the
issue noted recently on the geda mailing list about 0805
footprints from the ~geda library having soldermask openings
which are the same size as the pads.
2004-05-14 17:23 danmc
* src/dev_ps.c: make sure we get the preamble in all EPS output
files. Bug noted by David Koski
2004-05-14 17:22 danmc
* lib/geda.inc: add SOJ packages (lots of them)
2004-05-14 17:22 danmc
* lib/smt.inc: fix a hi-res bug in the polarity arc silk for some
SMT DIL pkgs
2004-05-14 17:22 danmc
* src/res_parse.y: add missing string.h (for strcmp). Noted by
Dave McGuire
2004-05-13 22:59 danmc
* src/: pcbtest.sh.in, script/pcb.in: unset XUSERFILESEARCHPATH
which causes a conflict with XAPPLRESDIR
2004-05-13 22:29 danmc
* src/resource.h: add a comment
2004-05-13 18:09 danmc
* src/misc.c: correct the pin/pad bounding box calculation. Bug
noted by David Koski.
2004-05-04 23:47 danmc
* src/macro.h: fix typo in comment
2004-05-02 01:02 djdelorie
* src/: djopt.c, pcb-menu.res: Add flag to default to optimizing
only autorouted nets, plus menu option to control it.
2004-05-02 00:26 djdelorie
* src/resmenu.c: Don't use local var for widget name.
2004-05-02 00:23 djdelorie
* src/djopt.c: Fix bug wrt intersecting layer groups in miter
2004-05-01 23:40 djdelorie
* src/: menu.c, resmenu.c: Remove gcc-isms
2004-05-01 00:44 danmc
* doc/pcb.texi: fix typo
2004-05-01 00:29 danmc
* src/resmenu.c: protect the inclusion of string.h with
HAVE_STRING_H
2004-04-30 18:55 danmc
* lib/minicircuits.inc: adjust spacing between the 2 rows of pins
to better match the datasheet
2004-04-30 18:55 danmc
* lib/smt.inc: clarify a comment
2004-04-29 21:49 danmc
* src/: Pcb.ad.in, action.c, file.c, find.c, global.h, macro.h,
main.c, parse_y.y, sizedialog.c: Add some DRC checking of
silkscreen layers. Currently this check looks for minimum widths
of silk lines. Currently not checked are:
- silk polygons - silk text - wide silk lines made by overlapping
several narrow silk lines
2004-04-29 20:19 danmc
* src/find.c: put a string which is repeated several times into a
#define and use that macro instead.
2004-04-29 19:50 danmc
* src/: autoplace.h, autoroute.h, djopt.h, drill.h, heap.h,
intersect.h, netlist.h, output.c, rats.c, resmenu.h, rtree.h,
selector.c, vector.h: RCS Id police
2004-04-29 19:09 danmc
* src/Makefile.in: regen
2004-04-29 19:05 danmc
* src/Makefile.am: minor fixes to get the distcheck target working
again.
2004-04-28 23:12 danmc
* doc/pcb.texi: add a note about the centroid and bill of materials
output. While here add a feature list near the top of the
document to help a new user quickly answer the question "what is
pcb and what can it do?".
2004-04-28 22:41 danmc
* src/resmenu.c: RCS Id and config.h police
2004-04-28 22:34 danmc
* src/print.c: When printing to RS-274-X also generate a centroid
data file (X-Y data) with the required data to drive a pick and
place machine. The centroid of each part is calculated from the
center of each pin/pad. The rotation is determined by looking at
the angle of pin1 relative to the centroid.
In addition, generate a bill of materials file. This lists the
part, quantity, and list of reference designators.
2004-04-28 22:21 danmc
* src/: res_lex.l, res_parse.y, resmenu.c: fix some 64-bit bugs to
get this working on my alpha. Of prime importance, an int isn't
big enough to hold a pointer.
2004-04-28 21:31 danmc
* src/resource.h: RCS Id police
2004-04-28 18:42 danmc
* src/: res_lex.l, res_parse.y: RCS Id police
2004-04-28 18:42 danmc
* src/misc.c: put variable declarations at the beginning of
functions. Avoids syntax error on gcc-2.95
2004-04-28 17:53 danmc
* lib/: amp.inc, bourns.inc, johnstech.inc, minicircuits.inc,
panasonic.inc: fix the EXTRACT_END flag
2004-04-28 17:34 danmc
* lib/: Makefile.am, Makefile.in, common.m4, cts.inc: add cts
library containing CTS series 742/3/4/5/6 resistor packs
2004-04-28 17:34 danmc
* lib/: johnstech.inc, smt.inc: fix refdes silk size
2004-04-27 22:42 danmc
* lib/: dil.inc, geda.inc: Fix SDIP (shrink DIP) footprints. Patch
from Wojciech Kazubski in RFE #929697 slightly modified by me.
2004-04-27 22:17 danmc
* lib/panasonic.inc: Correct the spacing between the rows of pads.
Also fix one of the pad widths on a footprint which was obviously
broken.
2004-04-27 22:09 danmc
* lib/smt.inc: hires-ify the COMMON_SMT_DIL_MIL macro. The macro
already took input arguments in 1/1000 mil so now we simple only
reduce the resolution to 1/100 mil in the output instead of to 1
mil. This also helps the COMMON_SMT_DIL_MM which calls the
COMMON_SMT_DIL_MIL macro.
2004-04-27 18:28 danmc
* src/tmp.txt: test commit #3
2004-04-27 18:18 danmc
* src/tmp.txt: test commit #2
2004-04-27 18:17 danmc
* src/tmp.txt: test commit
2004-04-27 15:13 djdelorie
* doc/version.texi: add version.texi for non-maintainers
2004-04-27 15:08 djdelorie
* src/Makefile.am, src/Makefile.in, src/Pcb.ad.in, src/Pcb.ad.raw,
src/Pcb.ad.small, src/action.h, src/dialog.c, src/gather-actions,
src/global.h, src/gui.c, src/main.c, src/menu.c, src/menu.h,
src/misc.c, src/misc.h, src/pcb-menu.res, src/res_lex.l,
src/res_parse.y, src/resmenu.c, src/resmenu.h, src/resource.h,
src/set.c, src/sizedialog.c, doc/pcb.texi: add file-driven menus
2004-04-27 14:49 djdelorie
* Makefile.in, ylwrap: add ylwrap
2004-04-27 08:56 haceaton
* src/autoroute.c: More autorouter improvements, some bug fixes
2004-04-26 09:20 haceaton
* src/: autoroute.c, mtspace.c: Significant improvements to
autorouting of congested designs
2004-04-25 00:56 haceaton
* src/: global.h, rtree.c: Fix rtree memory management bugs
2004-04-19 17:20 haceaton
* src/rtree.c: Fix a bug that allocates too much memory to store
pointers
2004-04-19 17:20 haceaton
* src/: buffer.c, move.c: Fix some bugs with rtree based name
handling
2004-04-18 22:19 haceaton
* src/: autoroute.c, find.c, rats.c: More autorouter improvements.
Improve trace appearance, slightly speed up and allow it to use
power planes
2004-04-18 10:12 haceaton
* src/: action.c, change.c, copy.c, file.c, insert.c, move.c,
polygon.c, polygon.h, remove.c, rotate.c: Fix pin-in-poly bug;
because polys can overlap can never check one single polygon.
2004-04-12 00:12 haceaton
* src/: djopt.c, autoroute.c: Restore mistakenly lost lines in
djopt, and various improvements to auto-router
2004-04-11 11:15 haceaton
* src/move.c: Argh, another attempt to properly fix the bug
2004-04-11 11:12 haceaton
* src/: djopt.c, move.c: Fixup some errors introduced in last patch
2004-04-09 00:13 haceaton
* src/djopt.c: Fix segfault with edge-connector elements (pads on
both sides)
2004-04-08 20:25 haceaton
* src/: draw.c, insert.c, move.c, output.c: Various bug fixes
2004-03-28 12:45 haceaton
* src/: action.c, autoroute.c, global.h, menu.c: Still more
improvements to the router, plus can show it's action on screen.
2004-03-27 22:06 haceaton
* src/: autoroute.c, box.h, mtspace.c, mtspace.h: More improvements
to the autorouter
2004-03-26 15:44 haceaton
* src/create.c: Forbid diagonal pads when created externally with
an editor
2004-03-25 17:36 haceaton
* src/autoroute.c: Some improvements to autorouter - still need to
better handle mtspace structures so there is not so much
duplicate effort with multiple route styles
2004-03-23 15:28 djdelorie
* src/parse_y.y: Provide our own yywrap(), just in case.
2004-03-22 08:12 haceaton
* src/Pcb.ad.in: Fix a couple of key binding bugs
2004-03-22 01:27 haceaton
* src/find.c: Fix some re-drawing issues after finding connections
2004-03-22 01:26 haceaton
* src/autoroute.c: Fix some autoroute bugs; add proper style
handling to autorouter
2004-03-20 18:02 haceaton
* src/: report.c, rtree.c: Provide better rtree visualization
capability
2004-03-20 18:01 haceaton
* src/: buffer.c, change.c, create.c, dev_ps.c, draw.c, global.h,
misc.c, move.c, move.h, mymem.c, print.c, printpanner.c,
remove.c, rotate.c, search.c: Use rtree to search element names;
fix postscript paper handling; fix silk names clipped over
pins/pads
2004-03-20 13:25 haceaton
* src/: rtree.c, rtree.h: Slight optimization of tree construction,
plus add means to visualize tree
2004-03-20 12:01 haceaton
* src/file.c: Don't use _LOOP macros for writing files in order to
preserver ordering so that diff can be effectively used on pcb
files
2004-03-18 19:08 danmc
* lib/johnstech.inc: increase soldermask relief on mounting pads
2004-03-18 10:35 haceaton
* src/: const.h, draw.c, polygon.c: Use sqrt(2)/2 defined in math
library when available
2004-03-18 10:34 haceaton
* src/rats.c: Handle shorts to unnamed elements and pins
2004-03-18 10:33 haceaton
* src/line.c: Forgot to check this in with the _LOOP macro changes
2004-03-18 00:46 haceaton
* src/: print.c, dev_ps.c: Add assembly drawing output for
postscript
2004-03-16 23:59 haceaton
* src/: action.c, autoplace.c, autoroute.c, buffer.c, change.c,
copy.c, create.c, crosshair.c, dev_ps.c, dev_rs274x.c, djopt.c,
draw.c, drill.c, file.c, find.c, global.h, library.c, macro.h,
menu.c, mirror.c, misc.c, move.c, mymem.c, netlist.c, pinout.c,
polygon.c, print.c, rats.c, remove.c, report.c, rotate.c,
rtree.c, rubberband.c, search.c, select.c, set.c, undo.c: Change
_LOOP macros so that gdb can break inside the loop
2004-03-16 19:29 danmc
* src/rtree.c: revert last change. Some compilers including
gcc-2.95.3 do not like it. ok'ed by harry.
2004-03-14 01:30 haceaton
* src/: autoplace.c, intersect.c: Various fixes to autoplacement
code
2004-03-14 01:29 haceaton
* src/set.c: auto drc bug fix
2004-03-14 01:29 haceaton
* src/action.c: Acknowledge placement
2004-03-14 01:26 haceaton
* src/: netlist.c, rats.c: Fix memory leaks
2004-03-13 00:51 haceaton
* src/rotate.c: corrctly distinguish rubberand rat lines
2004-03-11 17:57 haceaton
* src/rtree.c: Remove unnecessary union identifier to clarify code
2004-03-10 17:55 haceaton
* src/action.c: Fix polygon insert point bug introduced when
reorganizing code
2004-03-09 20:17 danmc
* lib/geda.inc: 100 pin QFP packages have 100 pins not 72
2004-03-09 19:10 haceaton
* src/error.c: Fix for bad pipe handling under cygwin
2004-03-09 14:51 haceaton
* src/draw.c: Minimize rectangle fills
2004-03-09 14:30 haceaton
* src/polygon.c: Oops - this fixes the error introduced moving to
IsPadInPolygon
2004-03-09 09:01 haceaton
* src/crosshair.c: Use SQUARE macro
2004-03-09 08:59 haceaton
* src/: action.c, create.c, rats.c, change.c: clean up code to use
SQUARE macro and fix via mask update bug
2004-03-09 08:58 haceaton
* src/: draw.c, find.c, find.h, polygon.c, print.c, search.c,
search.h: Erase silk over solder regions when they cross and
display that way on screen
2004-03-08 17:48 haceaton
* src/rtree.c: Streamline code for clustering
2004-03-07 21:29 haceaton
* src/: Pcb.ad.in, action.c: Added a function { AddRats(Close)
bound to shift-n } that selects the shortest unselected ratline
and centers the screen view on it.
2004-03-07 20:52 haceaton
* src/: crosshair.c, crosshair.h, line.c, line.h: New Auto-DRC line
drawing mode implemented.
2004-03-07 13:24 haceaton
* src/: draw.c, draw.h: Forgot to checkin draw.h; fix some bugs
with really high zoom
2004-03-07 13:20 haceaton
* src/find.c: Avoid doubling DRC clearance between non-clearing
polygons and square pins/pads
2004-03-06 22:38 haceaton
* src/: action.c, buffer.c, change.c, create.c, dialog.c, draw.c,
find.c, global.h, move.c, move.h, mymem.c, output.c,
printpanner.c, remove.c, rotate.c, rtree.c, search.c, select.c:
Fixes for various bugs introduced with the rtree database
infrastructure
2004-03-06 22:31 haceaton
* src/: menu.c, misc.c: A couple of bug fixes: absolute negative
value entries (e.g. =-4) also check the correct zoom level in the
menu
2004-03-06 00:55 haceaton
* src/select.h: Fix conditional compile variable name
2004-03-05 08:29 haceaton
* src/: library.c, mymem.c, output.c, polygon.c: Fixes for several
memory leaks and some uninitialized varibable bugs
2004-03-04 21:22 haceaton
* src/: file.c, parse_l.l, parse_y.y: Save the DRC settings in the
board file
2004-03-04 18:41 haceaton
* src/: Pcb.ad.in, dev_ps.c, global.h, printdialog.c,
printpanner.c: Fix the postscript print panner bugs introduced
with hi-res; also fix the long-standing bug where the default
media selection wasn't used
2004-03-04 17:12 danmc
* src/select.h: one more regex bug fix noted by Matt Ettus
2004-03-03 23:44 danmc
* doc/pcb.texi: document the ToggleVisibility action
2004-03-03 23:38 danmc
* src/: action.c, action.h, main.c: Added a new action which will
toggle the visibility of layers without clicking on them.
Intended to be bound to keys. Patch provided by Matt Ettus in
patch #908658.
2004-03-03 23:27 danmc
* src/: action.c, menu.c, select.c: enable the regex select stuff.
A trial of a regex select of some components seems to work.
Prompted by patches provided by Matt Ettus in patch submission
908651.
2004-03-02 21:51 danmc
* lib/geda.inc: a HEADER60_2 should have 60 pins not 50 as noted in
bug report 900231
2004-03-02 20:49 haceaton
* globalconst.h, src/action.c, src/draw.c, src/misc.c, src/move.c,
src/report.c: Fixes for element line boundry handling
2004-03-01 11:59 haceaton
* src/move.c: Fix for search element bounding box error
2004-03-01 11:19 haceaton
* src/: crosshair.c, crosshair.h: These were updated too for the
auto-DRC infrastructure
2004-03-01 00:10 haceaton
* src/: find.c, action.c, change.c, control.c, control.h, find.h,
global.h, misc.c, misc.h, move.c, output.c, search.c, set.c: Some
intersection bug fixes and more rtree infrastructure change Also
more ground work for auto drc line mode
2004-02-28 22:52 djdelorie
* src/Makefile.in: Regenerate.
2004-02-28 18:44 haceaton
* src/: action.c, buffer.c, change.c, const.h, create.c, draw.c,
find.c, global.h, insert.c, menu.c, misc.c, misc.h, move.c,
remove.c, search.c, set.c, undo.c: More usage of rtrees for rats,
pins and pads. Some foundation work for a new auto-drc line
drawing mode, and some bug fixes.
2004-02-27 17:20 haceaton
* src/: buffer.c, create.c, find.c, global.h, menu.c, misc.c,
move.c, mymem.c, remove.c, rtree.c, rtree.h: Store pins/pads in
rtree
2004-02-27 10:35 haceaton
* src/rtree.c: Fixes for some compiler warnings
2004-02-27 01:23 haceaton
* src/: clip.c, clip.h: Oh Yeah, the drawing clipping won't work
without these files!
2004-02-27 01:16 haceaton
* src/: Makefile.am, Makefile.in, action.c, create.c, data.c,
data.h, draw.c, global.h, insert.c, insert.h, line.c, line.h,
macro.h, misc.c, output.c, parse_y.y, polygon.c, report.c: Fixes
for clipping the drawing. Simple saturation could change the
geometry when zoomed way in. Also some organizational changes to
make the code easier to maintain.
2004-02-26 23:53 danmc
* doc/pcb.texi: clarify the pad creation a little
2004-02-26 23:41 haceaton
* src/misc.c: Fix for text bounding box error
2004-02-25 15:56 haceaton
* src/: action.c, const.h, crosshair.c, menu.c: Add a feature to
display design-rule clearance arround prospective line/arc/via
2004-02-25 14:33 haceaton
* src/: find.c, search.c: Fix some DRC bugs with square pins
2004-02-19 22:11 danmc
* lib/misc.inc: whitespace fix
2004-02-18 22:10 danmc
* lib/connector.inc: add a PKG_CONNECTOR_DIL for 2 column headers
with DIL pin numbering. This fixes the HEADER*_1 entries in the
geda footprint library.
2004-02-17 11:12 haceaton
* src/buffer.c: Fix typo that caused bug in via tree handling.
2004-02-17 07:40 danmc
* lib/generic.list: remove extra whitespace in generic208_lqfp
2004-02-17 01:27 haceaton
* src/: action.c, draw.c, find.c, polygon.c, polygon.h, print.c,
report.c, rtree.c: Bug fixes for design rule checking
2004-02-16 22:31 haceaton
* src/rtree.c: Make rtree routines reentrant since now they are
used that way when drawing during DRC.
2004-02-15 13:04 haceaton
* src/: action.c, autoplace.c, autoroute.c, buffer.c, change.c,
copy.c, create.c, dev_ps.c, draw.c, file.c, find.c, insert.c,
main.c, mirror.c, misc.c, move.c, mtspace.c, mymem.c, pinout.c,
polygon.c, print.c, find.h, global.h, macro.h, mirror.h, misc.h,
move.h, mymem.h, parse_y.y, polygon.h, rats.c, remove.c,
report.c, rotate.c, rotate.h, rtree.c, rtree.h, rubberband.c,
search.c, search.h, select.c, undo.c: Large number of changes to
keep most of the database in rtrees and avoid linear searches
2004-02-15 11:54 haceaton
* src/change.c: Fix minor bug in pad clearance adjustment
2004-02-15 02:46 danmc
* src/Makefile.in: regen after adding compat.c/h
2004-02-15 02:46 danmc
* src/: Makefile.am, compat.c, compat.h, draw.c, set.c: add a place
for putting our own implementation of missing/broken functions.
For now add a logf and expf to help solaris.
2004-02-15 02:44 danmc
* tools/: Makefile.am, Makefile.in: install MergePCBPS and
Merge_dimPBPS
2004-02-15 02:29 danmc
* config.h.in, configure: regen after adding logf and expf checks
2004-02-15 02:28 danmc
* configure.ac: add checks for logf and expf
2004-02-15 02:12 danmc
* src/: create.c, dev_ps.c, dev_rs274x.c, draw.c, file.c, global.h,
parse_l.l, parse_y.y: add a way to control the scale factor
associated with thermals. This is a global value stored in the
.pcb file. The default gives the same behaviour as previous
version. By increasing the scale factor, the width of the spokes
increases. Eventually it would be nice to make this be per
pin/via.
2004-02-15 02:00 danmc
* src/report.c: correct the drill diameter in the drill report
after the hi-res changes
2004-02-14 18:04 haceaton
* src/polygon.c: Fixed syntax error and potential bug
2004-02-14 13:03 haceaton
* src/draw.c: Elliminate pre-computing of octagons - there are too
many with .01 mil resolution
2004-02-14 11:12 haceaton
* src/: find.c, polygon.c: More non-clearing polygon fixes
2004-02-14 10:46 haceaton
* src/: buffer.c, dev_rs274x.c, draw.c, macro.h, menu.c, polygon.c,
print.c, rubberband.c: Fixed some bugs with non-clearing polygons
and made GROUP_LOOP macro
2004-02-14 01:40 haceaton
* src/: action.c, crosshair.c, macro.h: Fix arc creation tool when
crosshair is on-axis with start point
2004-02-13 21:48 haceaton
* src/: report.c, report.h: Report on points and fix some formating
2004-02-13 21:38 haceaton
* src/set.c: Fix formatting mismatch
2004-02-13 21:32 haceaton
* src/polygon.c: Fixup includes and trivial bug
2004-02-13 21:22 haceaton
* src/move.c: fix includes for Message()
2004-02-13 21:21 haceaton
* src/menu.c: add left/right buffer mirror menu entry
2004-02-13 17:31 haceaton
* src/: Pcb.ad.in, action.c, find.c, global.h, insert.c, main.c,
polygon.c, polygon.h, print.c, report.c, set.c, sizedialog.c:
More complete and sensible DRC checking
2004-02-13 16:11 haceaton
* src/: move.c, search.c: Prevent changing layers of locked
objects, find ratlines before other layer objects
2004-02-13 00:54 haceaton
* src/: action.c, buffer.c, buffer.h, menu.c: Added function to
mirror the buffer
2004-02-13 00:36 haceaton
* src/buffer.c: Recalculate arc bounding box when swaping the side
2004-02-12 21:02 haceaton
* src/dialog.c: Updated about dialog
2004-02-12 20:57 haceaton
* src/rats.c: Use warn color on pins/pads even when netname is
known
2004-02-12 20:11 haceaton
* src/change.c: Only change masks with size change when they're
non-zero to begin with
2004-02-12 20:06 haceaton
* src/change.c: Allow +0 change to mask size to make it equal the
underlying copper
2004-02-12 19:51 haceaton
* src/: action.c, change.c, select.c: Proper handling of all text
scalings
2004-02-12 19:13 haceaton
* src/: action.c, select.c: Handle element name size changing
properly
2004-02-12 10:56 haceaton
* src/change.c: Automatically adjust mask size when copper size is
changed
2004-02-10 17:13 haceaton
* src/print.c: Fixed output bug with persistant thermal changes
2004-02-08 23:08 danmc
* tools/Makefile.in: regen after adding Merge_dimPCBPS
2004-02-08 23:07 danmc
* tools/Makefile.am: add Merge_dimPCBPS
2004-02-08 23:06 danmc
* tools/: MergePCBPS, Merge_dimPCBPS: #/bin/sh -> #!/bin/sh to make
these execute correctly.
While here, add RCS Id's.
2004-02-06 22:28 haceaton
* src/find.c: Find more errors when skipping through DRCs
2004-02-06 16:59 haceaton
* src/: action.c, find.c, find.h: Added feature to continue
checking drc after first error is found
2004-02-06 16:03 haceaton
* src/change.c: Prevent clearance size adjustment from changing
joined lines to unjoined
2004-02-06 15:57 haceaton
* src/set.c: Fix bug where local reference mark was not erased
properly
2004-02-06 15:40 haceaton
* src/file.c: Fix bug where loading pcb didn't restore saved view
position correctly
2004-02-06 15:30 haceaton
* src/: global.h, undo.c: Fixed undo change text size bug
introduced with hi-res changes
2004-02-06 11:25 haceaton
* src/draw.c: Special drawing mode to examine planes for break-up
due to tracks routing through them.
2004-02-06 11:22 haceaton
* tools/Merge_dimPCBPS: Add a tool to merge to PCB postscript files
where the first one is printed in a light gray color. This is
useful for making an assembly drawing where the front tracks are
shown in light gray while the silkscreen is solid black.
2004-02-05 23:11 haceaton
* src/: macro.h, draw.c, polygon.c, print.c: Make persistant
thermal flags for easier changes to polygons
2004-02-05 17:04 haceaton
* src/: action.c, const.h, menu.c: Add mode for poly viewing to
help spot broken planes
2004-02-05 17:02 haceaton
* src/main.c: Fix text scaling intialization
2004-02-05 09:18 haceaton
* src/dev_rs274x.c: Fix a couple of gerber bugs introduced with
hi-res
2004-02-05 01:25 haceaton
* src/polygon.c: Warn on unplated holes piercing polygons
2004-02-05 01:21 haceaton
* src/print.c: Don't clear pure-holes in polygons
2004-02-05 01:20 haceaton
* src/polygon.c: Fix bug in PIP flags
2004-02-05 01:06 haceaton
* src/: dev_rs274x.c, find.c, find.h, print.c: Fixed some gerber
hi-res bugs and some complex ground-plane print issues
2004-02-03 23:09 djdelorie
* example/libraries/Makefile.in: * Detect re_comp(), regcomp(), and
<regex.h> (select.c doesn't use the new HAVE_* yet, this is a
prelude to it).
* Set -DNDEBUG for all src/* compiles.
* Support maintainer mode (--enable-maintainer-mode) (I got tired
of having half the world regenerated just because I did a "cvs
update")
* Detect tgif, if not found pad.{png,eps} just isn't built
(what's that for, anyway?) Prebuilt copies of those should be
checked in too at some point.
2004-02-03 22:59 djdelorie
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
README_FILES/Makefile.in, doc/Makefile.am, doc/Makefile.in,
example/Makefile.in, lib/Makefile.in, newlib/Makefile.in,
newlib/2_pin_thru-hole_packages/Makefile.in,
newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
newlib/generic_SMD_packages/Makefile.in,
newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
newlib/tests/Makefile.in, newlib/toko/Makefile.in,
src/Makefile.am, src/Makefile.in, src/icons/Makefile.in,
src/script/Makefile.in, tools/Makefile.in, tutorial/Makefile.in:
* Detect re_comp(), regcomp(), and <regex.h> (select.c doesn't
use the new HAVE_* yet, this is a prelude to it).
* Set -DNDEBUG for all src/* compiles.
* Support maintainer mode (--enable-maintainer-mode) (I got tired
of having half the world regenerated just because I did a "cvs
update")
* Detect tgif, if not found pad.{png,eps} just isn't built
(what's that for, anyway?) Prebuilt copies of those should be
checked in too at some point.
2004-02-03 19:53 djdelorie
* src/draw.c: Don't assume that an all-ones pixel is white.
2004-02-03 18:28 haceaton
* src/menu.c: Fixes for hi-res bugs
2004-02-03 18:10 haceaton
* src/print.c: Changes to the fab drawing for improved clarity and
allows for a an outline route by naming a layer "outline" or
"route"
2004-02-03 00:30 haceaton
* src/error.c: Added a line count to Message mechanism
2004-02-02 22:08 danmc
* NEWS: note harry's hi-res changes.
2004-02-01 20:03 haceaton
* src/: autoroute.c, heap.c, heap.h: More speed-ups for the router
2004-02-01 12:12 haceaton
* src/print.c: Change gerber drill files to have .cnc suffix and
name the component side output group "front", the solder-side
output "back"
2004-02-01 11:28 haceaton
* src/: action.c, parse_y.y: A couple of bug fixes for arc handling
in hi-res
2004-01-31 10:35 haceaton
* src/autoroute.c: More speed-up changes. Limit the intial search
in FindIntersecting
2004-01-31 10:33 haceaton
* src/rtree.c: Minor comment changes and some tiny tweaks
2004-01-30 22:20 haceaton
* src/buffer.c: Fix bug in element name mirroring when elements are
created on the solder side
2004-01-30 09:09 haceaton
* src/main.c: Fix initial screen/offscreen zoom
2004-01-30 09:09 haceaton
* src/polygon.c: Some Hi-res fixes plus elliminat too close to
polygon concept
2004-01-29 23:34 haceaton
* src/output.c: Fixed the auto-scroll broken when switched to
hi-res
2004-01-29 23:20 haceaton
* src/rats.c: Fix bug introduced changing to hi-res
2004-01-29 01:46 haceaton
* src/: autoroute.c, box.h: More speed ups to the auto-router code.
This is only code streamlining, there is no algorithm change
2004-01-27 23:54 haceaton
* src/: kdtree.c, kdtree.h: The kdtree has been replaced with rtree
which is faster given the way it is used
2004-01-27 23:48 haceaton
* src/: rtree.c, rtree.h: rtree for faster rectangle intersection
searching
2004-01-27 23:47 haceaton
* src/: Makefile.am, Makefile.in, autoplace.c, autoroute.c,
mtspace.c: replaced kd-tree with r-tree for faster auto-routing
2004-01-20 11:15 haceaton
* src/action.c: Fix for smashing element in place
2004-01-19 17:17 haceaton
* src/: autoroute.c, heap.h, kdtree.c, kdtree.h: Fixes for
auto-router with hi-res and some speed-ups of its operation
2004-01-19 16:49 haceaton
* src/find.c: Speed up polygon/polygon intersection testing. The
special case is *all* points inside polygon, not just some points
so only one point need be tested
2004-01-19 14:16 haceaton
* src/: const.h, data.c, data.h, draw.c, draw.h, file.c, global.h,
macro.h, main.c, menu.c, parse_y.y, pinout.c, set.c, set.h:
Modifications to support arbitrary zoom ratios
2004-01-17 20:08 haceaton
* src/menu.c: Fix for intermediate zoom levels
2004-01-17 20:05 haceaton
* globalconst.h, src/Pcb.ad.in, src/data.c, src/draw.c,
src/macro.h, src/output.c, src/parse_y.y, src/set.c: Added some
intermediate zooms, so now it goes by sqrt(2)
2004-01-17 18:07 haceaton
* src/menu.c: Add menu item to auto-route only selected rats
2004-01-17 18:06 haceaton
* src/output.c: Increase the minimum size of the panner control
2004-01-17 18:06 haceaton
* src/main.c: Fix some default sizes for hi-res when no resource
file is available
2004-01-15 15:16 haceaton
* src/: action.c, action.h, menu.c: Added support to smash an
element in place
2004-01-15 11:17 haceaton
* src/: action.c, const.h, menu.c, misc.c, set.c: Added Local
reference measurement for line drawing and allow not-overriding
the mark position for moves and line-drawing
2004-01-15 09:21 haceaton
* src/: Pcb.ad.in, action.c, main.c, set.c, set.h: Fix to keep mode
setting and add a function for moving an object by/to numerical
coordinates
2004-01-13 22:10 haceaton
* src/: Pcb.ad.in, action.c, command.c, misc.c: Tweaks for
case-insensitive command arguments, keyboard adjust of grid and
fixed a couple of absolute/relative bugs.
2004-01-13 21:24 haceaton
* src/misc.c: Turned off debugging messages
2004-01-13 21:23 haceaton
* src/: macro.h, misc.c, output.c: Fixes for several solder-side
viewing bugs introduced with hi-res changes
2004-01-13 00:00 haceaton
* src/djopt.c: Fixed for new definition of mils for savings report
2004-01-12 23:52 haceaton
* src/: box.h, mtspace.c: Fix for mtspace coalesce; hi-res requires
floats for area computation
2004-01-10 14:38 haceaton
* src/: action.c, draw.c, report.c: Fixes for text scaling
2004-01-09 20:23 danmc
* src/parse_y.y: One more hi-res buglet. Correct parsing of 'Arc'.
Thanks to Bill Wilson for catching this one.
2004-01-09 07:15 danmc
* lib/smt.inc: partially undo the last change with respect to
quoting. Only quote $2. This keeps the reference designator
from being expanded as desired but lets the Description field get
expanded as desired.
2004-01-08 00:00 haceaton
* Makefile.in, aclocal.m4, configure, doc/Makefile.in,
lib/Makefile.in, newlib/Makefile.in,
newlib/2_pin_thru-hole_packages/Makefile.in,
newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
newlib/generic_SMD_packages/Makefile.in,
newlib/headers/Makefile.in, newlib/msp430/Makefile.in,
newlib/not_vetted_ingo/Makefile.in, newlib/sockets/Makefile.in,
newlib/tests/Makefile.in, newlib/toko/Makefile.in, src/Pcb.ad.in,
src/action.c, src/main.c, src/misc.c, src/icons/Makefile.in,
src/script/Makefile.in: Fixes for absolute/relative size change.
Also added repeat last typed command and fixed a few hi-res bugs.
2004-01-06 18:53 haceaton
* src/set.c: Fixed sign display in fractional mil part of crosshair
2004-01-05 20:04 haceaton
* src/action.c: Fix for Display(Save|Restore)
2004-01-05 18:41 danmc
* src/print.c: fix generation of fab drawing with the high
resolution changes
2004-01-05 18:40 danmc
* src/dev_rs274x.c: fix a couple of other bugs related to the high
res changes. In particular, correct the aperture for the fab
drawing and for the outline. Also fix up text output.
2004-01-05 17:23 danmc
* lib/johnstech.inc: Convert to a high resolution footprint. Pads
are a little more accurate now.
2004-01-05 17:21 danmc
* src/dev_rs274x.c: correct the aperture definition output lines
and the drill tool definition output lines after the hi-res
change. Gerber output should be ok again.
2004-01-05 00:00 haceaton
* src/Pcb.ad.in: fixed missing continuation in scroll commands
2004-01-04 20:40 haceaton
* configure, configure.ac, globalconst.h, src/Makefile.in,
src/Pcb.ad.in, src/action.c, src/action.h, src/autoplace.c,
src/autoplace.h, src/autoroute.c, src/autoroute.h, src/box.h,
src/buffer.c, src/buffer.h, src/change.c, src/change.h,
src/const.h, src/copy.c, src/copy.h, src/create.c, src/create.h,
src/crosshair.c, src/crosshair.h, src/data.c, src/data.h,
src/dev_ps.c, src/dev_rs274x.c, src/djopt.c, src/djopt.h,
src/draw.c, src/drill.h, src/file.c, src/find.c, src/find.h,
src/global.h, src/gui.c, src/gui.h, src/heap.h, src/insert.c,
src/insert.h, src/intersect.c, src/intersect.h, src/kdtree.c,
src/kdtree.h, src/macro.h, src/main.c, src/menu.c, src/mirror.c,
src/mirror.h, src/misc.c, src/misc.h, src/move.c, src/move.h,
src/mtspace.c, src/mtspace.h, src/netlist.c, src/netlist.h,
src/output.c, src/output.h, src/parse_y.y, src/pinout.c,
src/polygon.c, src/polygon.h, src/print.c, src/print.h,
src/rats.c, src/report.c, src/rotate.c, src/rotate.h,
src/rubberband.c, src/search.c, src/search.h, src/set.c,
src/set.h, src/sizedialog.c, src/undo.c, src/undo.h,
src/vector.h: Many changes to add 0.01 mil resolution
2004-01-02 15:52 haceaton
* src/change.c: Display pin/pad number when prompting for name
2004-01-02 00:46 haceaton
* src/draw.c: Minor correction to not attempt to write vertical
null strings
2004-01-02 00:26 danmc
* doc/refcard.tex: add missing RCS Id
2004-01-02 00:00 danmc
* src/: autoplace.h, autoroute.h, box.h, djopt.h, drill.h, gui.h,
heap.h, intersect.h, kdtree.h, mtspace.h, netlist.h, vector.h,
autoplace.c, autoroute.c, djopt.c, gui.c, heap.c, intersect.c,
kdtree.c, mtspace.c, netlist.c, rats.c, vector.c: add missing RCS
Id
2004-01-01 15:05 danmc
* lib/smt.inc: - modify the 2 pad smt base definition to put the
origin of the footprint at the common centroid. Useful both
for driving pick and place as noted in bug report 716519 and
for centering a part on a grid.
- while here make sure the $1, $2, and $3 arguments to the
various macros are properly quoted. This helps avoid some
obscure bugs with generated layouts from gEDA.
2004-01-01 08:30 haceaton
* src/draw.c: Font metrics need to be outside TO_DRAW() macros
2004-01-01 02:43 danmc
* lib/smt.inc: fix some quoting
2004-01-01 02:42 danmc
* lib/amphenol.inc: bump copyright date
2004-01-01 02:42 danmc
* lib/amphenol.inc: properly pass down the arguments to the
underlying macro for the PKG_AMPHENOL_ARFX123{0,1,2} packages
2003-12-31 23:43 danmc
* doc/wishlist.txt: add element versioning and database of good
elements
2003-12-31 23:41 danmc
* doc/wishlist.txt: add a features wish list. not sure if this is
the best place for such a thing, but for now it'll do.
2003-12-31 14:37 danmc
* lib/Makefile.in: regen after adding amp library
2003-12-31 14:26 danmc
* lib/: Makefile.am, amp.inc, common.m4: add Amp connector library.
Currently its populated with the 767054 series of Mictor
connectors.
2003-12-31 00:01 haceaton
* src/menu.c: Fixed menu selection of metric grids: The
C-preprocessor won't change string literals of course.
2003-12-30 22:41 haceaton
* src/: Pcb.ad.in, const.h, draw.c, misc.c: Added vertical text
support for pinout descriptions
2003-12-30 22:33 danmc
* lib/smt.inc: with reverse order numbering in COMMON_SMT_DIL_MIL
and COMMON_SMT_DIL_MM, make sure the pin number matches the pin
name.
2003-12-30 22:03 danmc
* lib/panasonic.inc: fix typo in a comment
2003-12-30 21:57 danmc
* lib/: geda.inc, smt.inc: add SC70_3, SC70_4, SC70_5, and SC70_6
footprints (the 3,4,5, and 6 pin SC70 family).
2003-12-30 21:37 danmc
* lib/to.inc: rename the SOT23 and SOT323 footprints here to
SOT23_CEL and SOT323_CEL to avoid a conflict with the ones
defined in the geda library. The "CEL" part reflects that the
pin numbering is the one used by CEL which is different from what
others seem to use.
2003-12-30 21:32 danmc
* lib/Makefile.in: regen after adding panasonic library
2003-12-30 21:30 danmc
* lib/: Makefile.am, common.m4, panasonic.inc: Add the panasonic
EXB series of chip resistor arrays.
2003-12-30 21:29 danmc
* lib/smt.inc: deal with SMT DIL packages with an odd number of
pads per side
2003-12-30 20:24 danmc
* lib/smt.inc: add an extra argument to COMMON_SMT_DIL_MIL and
COMMON_SMT_DIL_MM to allow the pins to go in the reverse order to
deal with some non-standard pinouts like the mini-circuits KK81
package.
2003-12-30 20:05 danmc
* lib/Makefile.in: regen after adding minicircuits
2003-12-30 20:04 danmc
* lib/: Makefile.am, common.m4, minicircuits.inc: add several
minicircuits packages
2003-12-30 18:05 danmc
* lib/Makefile.in: regen after adding bourns library
2003-12-30 18:04 danmc
* lib/: geda.inc, smt.inc: - add a handful of 3 pin SMT EMI filter
footprints - add US* family of SMT packages.
2003-12-30 18:02 danmc
* lib/connector.inc: add through hole test point footprint.
2003-12-30 17:59 danmc
* lib/common.m4: include the bourns library
2003-12-30 17:59 danmc
* lib/: amphenol.inc, amphenol.list, amphenol.m4: add some more SMA
connectors
2003-12-30 17:58 danmc
* lib/: Makefile.am, bourns.inc: add bourns 3224G, 3224J, 3224W,
and 3224X trim pots
2003-12-29 23:42 danmc
* doc/pcb.texi: add note about the dangers of whitespace in .list
files
2003-12-29 23:37 danmc
* lib/amphenol.m4: correct capitalization for amphenol_ARFX1229
2003-12-29 23:37 danmc
* lib/amphenol.list: remove extra whitespace at end of ARFX1229
line
2003-12-29 23:13 danmc
* lib/Makefile.in: regen after adding amphenol library
2003-12-29 23:08 danmc
* lib/: Makefile.am, amphenol.inc, amphenol.list, amphenol.m4,
common.m4: Add amphenol connectors. Start out with the ARFX1229
SMA connector.
2003-12-29 23:06 danmc
* lib/: connector.inc, geda.inc: add MTA100 connectors
2003-12-29 21:18 haceaton
* src/: action.c, autoplace.c, buffer.c, change.c, copy.c,
create.c, crosshair.c, dev_ps.c, dev_rs274x.c, dialog.c, draw.c,
drill.c, file.c, find.c, library.c, menu.c, mirror.c, misc.c,
move.c, mymem.c, netlist.c, pinout.c, polygon.c, print.c, rats.c,
remove.c, report.c, rotate.c, rubberband.c, search.c, select.c,
set.c, undo.c: Ok, this complete the formating changes. Whew!
2003-12-29 18:40 haceaton
* src/file.c: Fixed another glitch during format change
2003-12-29 09:24 haceaton
* src/find.c: Fixed a polygon/polygon intersection bug where a
wrong point index was used
2003-12-29 09:10 haceaton
* src/file.c: Restored accidentally deleted line during formating
change.
2003-12-28 22:15 haceaton
* src/: action.c, autoplace.c, buffer.c, change.c, command.c,
control.c, copy.c, create.c, crosshair.c, dev_ps.c, dev_rs274x.c,
dialog.c, draw.c, drill.c, error.c, file.c, fileselect.c, find.c,
gui.c, insert.c, kdtree.c, lgdialog.c, library.c, log.c, main.c,
menu.c, mirror.c, misc.c, move.c, mtspace.c, mymem.c, netlist.c,
output.c, pinout.c, polygon.c, print.c, printdialog.c,
printpanner.c, rats.c, remove.c, report.c, rotate.c,
rubberband.c, search.c, select.c, set.c, sizedialog.c, undo.c,
vector.c: Cleaned up coding formating from long-ago indent
diaster with _LOOP macros. These should be formating changes
only.
2003-12-28 12:16 haceaton
* src/: insert.c, polygon.c, remove.c, search.c, search.h, undo.c:
fixed polygon undo bugs; speed-up of undo operations
2003-12-26 15:04 djdelorie
* src/djopt.c: Use the layer groups to determine which layers are
solder and component. Fix bugs in check2 and padcleaner where
deleted lines weren't skipped.
2003-12-25 22:33 haceaton
* src/djopt.c: added undo capability for trace optimizations
2003-12-25 12:22 haceaton
* src/: autoroute.c, copy.c, dev_rs274x.c, draw.c, find.c, macro.h,
polygon.c, print.c, rubberband.c, undo.c: using macro
LAYER_PTR(n) to go from layer number to pointer. this simplifies
the code a little bit
2003-12-25 11:27 haceaton
* src/: move.c, remove.c: simplified ObjectMove undo serial number
handling
2003-12-24 18:58 haceaton
* src/select.c: fixed bug where null F->Pad could be called (e.g.
change drill size)
2003-12-22 09:13 haceaton
* src/netlist.c: Both ends of an added rat line must have named
elements
2003-12-22 00:16 haceaton
* src/: find.c, search.c: Fixed various DRC errors with arcs,
square pads and square pins
2003-12-21 13:58 haceaton
* src/netlist.c: Disallow drawing rat-lines to unnamed elements;
fixed a problem with netlist window being doubly disposed.
2003-12-19 22:31 danmc
* lib/smt.inc: add -*- m4 -*-
2003-12-16 22:36 danmc
* lib/: Makefile.am, Makefile.in, common.m4, gen_list.awk,
gen_m4.awk, johnstech.inc: add footprints for Johnstech
Evaluation Socket for QFN packages Johnstech Socket Part Numbers
724810 through 724839. Note, the footprint has been checked by
hand but not yet verified through fabrication.
2003-11-30 19:30 danmc
* configure: regen after -R fix
2003-11-30 19:28 danmc
* configure.ac: When trying out the various -R, --rpath, etc.
compiler flags, actually try them out instead of just claiming
to. Addresses part of bug report 850369 filed by Tom Saunders.
2003-11-28 21:00 haceaton
* src/crosshair.c: Allow snap to line end-points and vias when
off-grid
2003-11-20 13:55 haceaton
* src/dev_rs274x.c: restored bug fixes that got lost, fixed some
bugs and cleaned the code a little
2003-11-20 10:43 haceaton
* src/dev_rs274x.c: removed #include <varargs> that accidentally
got in on the last commit
2003-11-19 16:58 haceaton
* src/: dev_rs274x.c, print.c:
Changed print.c and dev_rs274x.c in order to provide negative
image ground planes for gerber output when possible. Some fab
vendors can't handle or charge extra for composite ground planes
which is the motivation for this. Negative image planes are made
when (1) There are no lines, arcs, text, or pads on a layer and
(2) There is exactly 1 polygon on the layer and (3) All
vias/holes/pins pierce the polygon. The polygon is then assumed
to consume all of the area and only the thermal reliefs and
pin/via clearances are needed. haceaton 11/19/03
2003-11-13 04:18 danmc
* doc/Makefile.in: regen
2003-11-13 04:13 danmc
* doc/Makefile.am: add rules for creating postscript and png from a
tgif drawing. Needed for improved docs.
2003-11-13 04:06 danmc
* config.h.in: regen after adding Xpm check
2003-11-13 04:01 danmc
* src/print.c: Change how the polarity of the soldermask relief
layer is handled. The polarity is not changed but it now
correctly works for postscript output as well as gerber output.
Previously the postscript output produced white on a white
background or black on a black background. This addresses PR
825680 filed by Russ Dill.
2003-11-08 00:12 danmc
* configure.ac, configure: use AC_PATH_PROGS to search through a
list of candidates for wish
2003-11-07 22:35 danmc
* configure, src/Makefile.in, src/script/Makefile.in: regen after
moving the pcb script to a subdirectory.
2003-11-07 22:31 danmc
* configure.ac, src/Makefile.am, src/pcb.in,
src/script/Makefile.am, src/script/pcb.in: move the pcb script to
a subdirectory to avoid name conflicts with the Pcb application
default file on systems such as cygwin that are not case
sensitive.
2003-11-07 22:06 danmc
* configure.ac, configure: search for libXpm which is needed on
cygwin libXaw
2003-11-07 19:05 danmc
* configure.ac, configure: add a few more variants of wish (wish83,
cygwish80, etc) to search for
2003-10-15 19:54 danmc
* src/dev_rs274x.c: fix two bugs related to gerber file generation.
The first bug is triggered when the first aperture used in a
file is the same as the last aperture used in the previous file.
In this case the aperture selection code is missing from the
output file.
The second bug is when the first point drawn has its Y coordinate
(in PCB coordinates) equal to zero. The output will be at gerber
Y coordinate zero which is on the opposite side of the board.
Thanks to Gabriel Paubert (paubert at iram dot es) for noting
these bugs and supplying a patch.
2003-10-12 23:37 danmc
* src/report.c: correct the reporting of soldermask relief for pads
and via's. Patch provided by Gabriel Paubert, paubert at iram
dot es on the geda-dev mailing list.
2003-10-11 00:43 danmc
* src/report.c: show pad names in object report. patch supplied in
bug report 787711 by Olof Tangrot.
2003-10-10 23:35 danmc
* src/: cmask.grb, cpaste.grb, csilk.grb, pdrill.grb, smask.grb,
spaste.grb, ssilk.grb, udrill.grb: remove some output files which
should have never been in CVS.
2003-10-02 20:04 danmc
* lib/Makefile.in: regen after qfn.inc additions
2003-10-02 20:02 danmc
* lib/: Makefile.am, common.m4, geda.inc, qfn.inc: add 60 members
of the Quad Flat No-lead (QFN) package family. Based on package
drawings downloaded from www.maxim-ic.com and Intersil technical
brief TB389.1 "PCB Land Pattern Desugn and Surface Mount
Guidelines for QFN (MLFP) Packages".
2003-10-01 07:20 danmc
* doc/: Xdefaults.tgif, pad.obj: add a figure to help with
describing the pads. Also add an Xresources file needed to
convert the tgif drawing to png
2003-09-30 19:50 danmc
* doc/pcb.texi: update copyright for last changes
2003-09-30 19:41 danmc
* configure, example/Makefile.in, example/libraries/Makefile.in:
regen after example/libraries addition
2003-09-30 19:38 danmc
* configure.ac, example/Makefile.am: add example/libraries/Makefile
2003-09-30 19:32 danmc
* doc/pcb.texi, example/libraries/Makefile.am,
example/libraries/example.inc, example/libraries/example.list,
example/libraries/example.m4: Add two new chapters to the manual.
The first attempts to provide some more documentation about
library creation. It includes a complete example of adding
footprints using M4 style libraries as well as giving
instructions on creating newlib style footprints. The second
added chapter shows how to take a design from start to finish
using gEDA as the schematic capture and PCB as the layout tool.
This chapter still needs work, but early feedback is good and its
better than no documentation.
2003-09-02 23:18 djdelorie
* src/: dev_ps.c, dev_rs274x.c, draw.c, drill.c, print.c, report.c:
Add FAB drawing page. Use thinner traces for larger fonts.
2003-09-02 22:08 danmc
* aclocal.m4, configure: regen
2003-09-02 22:06 danmc
* acinclude.m4, configure.ac: don't hardcode -lXaw in the FUNCPROTO
and related tests.
2003-09-02 21:50 danmc
* configure: regen
2003-09-02 21:49 danmc
* configure.ac: add a --with-xaw= option that lets you select an
alternative to Xaw. For example, --with-xaw=Xaw3d will search
for the Xaw3d library.
2003-09-02 20:21 danmc
* doc/pcb.texi: add brief section about the trace optimizer.
2003-08-31 19:10 danmc
* lib/geda.inc: change 'Square' to 'Rectangular' to the comment for
the rectangular QFP section.
2003-08-29 20:26 danmc
* lib/: gen_geda_list.awk, gen_geda_m4.awk: remove the lines which
tried to copy the source file RCS Id to the generated files. CVS
broke this feature by expanding keywords on me.
2003-08-29 20:21 danmc
* lib/: geda.list, geda.m4: these files are autogenerated now
2003-08-29 20:17 danmc
* lib/: geda.inc, qfpdj.inc: rework the QFP packages fixing several
bugs and greatly expanding the footprint database. Patches
supplied in bug report 785400 by Wojciech Kazubski. Many thanks
for the contribution!
2003-08-29 20:12 danmc
* lib/common.m4: add qfpdj.inc to the include list
2003-08-29 20:12 danmc
* lib/CreateLibraryContents.sh.in: when given a -I flag, look both
there and the current directory for .list files. Needed for
building outside the source tree directory.
2003-08-29 20:11 danmc
* lib/: Makefile.am, Makefile.in, gen_geda_list.awk,
gen_geda_m4.awk: add scripts which autogenerate geda.m4 and
geda.list from geda.inc.
2003-08-26 06:48 danmc
* lib/: geda.inc, geda.list, geda.m4, plcc.inc: Add 20,28,32 pin
PLCC footprints, both unsocketed and socketed (through hole).
Provided in bug report 777539 by Troy Jacobson.
2003-08-23 00:41 djdelorie
* src/djopt.c: Support however many layers are configured.
2003-08-16 16:01 danmc
* doc/pcb.texi: add info-dir entry
2003-08-16 15:52 danmc
* newlib/2_pin_thru-hole_packages/Makefile.in: regen
2003-08-16 15:37 danmc
* newlib/2_pin_thru-hole_packages/Makefile.am: Makefile.am is not a
library component so do not install it as one
2003-08-14 21:07 danmc
* README.snapshots: add a note on creating snapshots
2003-08-14 20:42 danmc
* doc/pcb.texi: add DJ and myself
2003-08-14 07:01 danmc
* lib/: lsi.list, lsi.m4: Remove extra space in one of the pin
names in AT90S2313_dil and add missing AT90S4434_dil
AT90S8535_dil AT90S8535_plcc. Patch provided in bug report
770829 by Daniel Mooney (dbmk).
2003-08-06 08:10 danmc
* lib/texas_inst_voltage_reg.m4: fix parse error on uA7952C. Patch
provided in bug report 770829 by Daniel Mooney (dbmk).
2003-08-05 05:38 danmc
* lib/texas_inst_amplifier.m4: fix parse errors in TL083 and ua747.
Patch provided in bug report 770829 by Daniel Mooney (dbmk).
2003-08-05 05:18 danmc
* lib/jerry.m4: fix parse errors on DS1225 and DS1230. Patch
provided in bug report 770829 by Daniel Mooney (dbmk).
2003-07-24 22:12 djdelorie
* src/djopt.c: second dummy commit
2003-07-24 20:22 djdelorie
* src/djopt.c: Dummy commit to test log messages
2003-07-20 15:58 danmc
* README.cvs: note that autoconf 2.13 is not new enough and mention
how to get the version
2003-07-19 23:04 djdelorie
* src/dev_rs274x.c: polygon fills must have a defined aperture also
2003-07-19 22:39 djdelorie
* src/: dev_rs274x.c, print.c: Solder mask layers are reliefs and
normally are positive prints. Support inverted gerber plots.
2003-07-06 20:22 djdelorie
* src/dev_rs274x.c: Properly scale outline and alignment. Add
segment to alignment to act as registration.
2003-07-06 12:39 djdelorie
* src/report.c: Sort drill report by hole size, list total hole
count.
2003-07-02 09:33 djdelorie
* src/djopt.c: Fix off-by-one bug in handling bloat. Be more
careful about cleaning up traces within pads.
2003-07-01 12:27 djdelorie
* src/sizedialog.c: The minimum size of a board should never be
more than the current actual size of the board.
2003-06-25 19:48 djdelorie
* src/: Pcb.ad.in, change.c: Automatically set CLEARLINEFLAG if the
user modifies the clearance. Add keys for changing clearance by
selection instead of pointer.
2003-06-22 13:06 djdelorie
* src/Makefile.in: Regenerate with djopt.c
2003-06-22 13:02 djdelorie
* src/: action.c, const.h, crosshair.c, menu.c: Add orthogonal move
feature
2003-06-22 12:51 djdelorie
* src/: Pcb.ad.in, action.c, const.h, draw.c, menu.c: Add Thindraw
2003-06-22 00:34 djdelorie
* src/: Makefile.am, Pcb.ad.in, djopt.c, djopt.h, main.c, menu.c:
Add trace optimizer.
2003-06-13 19:52 danmc
* Makefile.in, aclocal.m4, config.h.in, configure, depcomp: add
automake/conf output to make it easier for users to build
2003-06-13 19:42 danmc
* README_FILES/Makefile.in, doc/Makefile.in, example/Makefile.in,
lib/Makefile.in, newlib/2_pin_thru-hole_packages/Makefile.in,
newlib/analog-devices/Makefile.in, newlib/burr-brown/Makefile.in,
newlib/connectors/Makefile.in, newlib/crystal/Makefile.in,
newlib/cypress/Makefile.in, newlib/electro-optics/Makefile.in,
newlib/generic_SMD_packages/Makefile.in,
newlib/headers/Makefile.in, newlib/Makefile.in,
newlib/msp430/Makefile.in, newlib/not_vetted_ingo/Makefile.in,
newlib/sockets/Makefile.in, newlib/tests/Makefile.in,
newlib/toko/Makefile.in, src/icons/Makefile.in, src/Makefile.in,
tools/Makefile.in, tutorial/Makefile.in: add the automake/conf
generated files to make building from CVS sources easier for
people.
2003-06-13 19:14 danmc
* src/error.c: only declare sys_nerr if we're using the sys_errlist
interface. This fixes compilation on NetBSD/alpha using gcc-3.3.
2003-06-13 19:10 danmc
* src/dev_rs274x.c: remove unused varargs.h header which breaks
gcc-3.3 compilation
2003-06-05 06:48 danmc
* src/: action.c, menu.c: Allow '=' at the beginning of the zoom
exponent to indicate an absolute number rather than a relative
number. This lets a value of "=-2" be used to indicate an
absolute -2 while "-2" still indicates a relative -2. Also
correct the position of the check mark on the zoom menu.
Patch from DJ Delorie.
2003-05-26 19:45 danmc
* src/: file.c, fileselect.c, misc.c, misc.h: Fix a bug in the way
the current working directory is found. This caused the file
dialog box to always start in the library tree directory.
In addition add a loop in ParseLibraryTree() to allow multiple
newlib style directory tree's to be specified in the Xresource.
This provides an easy way to have per-user and per-project
library directories. These directories may either be specified
as an absolute or relative path.
Patches provided by Tony (droghedra at users dot sourceforge dot
net) in bug report 736010 with minor changes by me.
2003-05-22 17:51 danmc
* lib/Makefile.am: add missing rules.inc
2003-05-22 07:31 danmc
* src/menu.c: add 2 more levels of zooming to the menu. Inspired
by an email from DJ Delorie on the gEDA mailing list.
2003-05-20 20:39 danmc
* src/parse_l.l: change yy_current_buffer to YY_CURRENT_BUFFER.
This addresses the build \ problem reported in bug 734403 and
also agrees with the man page for \ flex-2.5.4.\ \ In addition
add a %option yylineno to address part of bug 736010\ where the
line number associated with a parse error is incorrectly\
displayed as 1. \
2003-05-20 07:50 danmc
* lib/common.m4: add missing bga.inc and resistor_adjust.inc
included. The latter addresses part of bug report 734403.
2003-03-17 06:50 danmc
* src/.output.h.swp: remove spurious file which should not have
been imported. Noted by Mark Becker.
2003-03-17 06:16 danmc
* ...: remove spurious file which should not have been imported.
Noted by Mark Becker.
2003-03-04 21:17 danmc
* src/error.c: if strerror() is present on our system then use it
instead of trying to use sys_errlist. Patch from harry, with the
check for strerror from me.
2003-03-04 21:11 danmc
* configure.ac: move the strerror test up in the configure process
so we don't need to link to the X libraries for the test.
2003-03-04 20:58 danmc
* configure.ac: add check for strerror()
2003-02-24 07:18 danmc
* src/autoroute.c: when checking for a NULL pointer compare to NULL
rather than 0 for enhanced portability.
2003-02-20 21:14 danmc
* configure.ac: bump to 1.99o since a 1.99n version was posted to
the geda list. We should avoid further updates to this version
number until a release. If users want snapshots, they can get
them from CVS.
2003-02-20 21:10 danmc
* src/kdtree.c: change c++ style comments to c style and remove the
use of non-static initializers to allow the SunPRO c compiler to
be able to compile this file.
2003-02-20 21:05 danmc
* src/autoroute.c: coding style fixes to allow this to be compiled
with the SunPRO c compiler. Changes are moving from c++ style
comments to c style comments and getting rid of non-static
initializers.
2003-02-20 20:40 danmc
* README.cvs: - add section on checking out via anoncvs and
updating via anoncvs.
- point to INSTALL document for what to do afte bootstrapping the
auto* tools
2003-02-20 05:26 danmc
* doc/: Imakefile, pcb.texi.in, pcb.texi.raw, refcard.tex.in,
refcard.tex.raw: remove obsolete files
2003-02-20 05:19 danmc
* lib/newlib.tgz: remove obsolete file (the contents live in
pcb/newlib/ now
2003-02-20 05:18 danmc
* lib/: CreateLibrary.sh.raw, CreateLibraryContents.sh.raw,
Imakefile, QueryLibrary.sh.raw: remove obsolete files
2003-02-19 20:00 danmc
* src/: CreateSedScript.sh, Imakefile: remove obsolete files
2003-02-19 19:46 danmc
* src/: 1.grb, 2.grb, 3.grb, 4.grb, 5.grb: remove unneeded output
files
2003-02-19 19:22 danmc
* AUTHORS, ..., COPYING, ChangeLog, INSTALL, Makefile.am, NEWS,
README, README.cvs, acinclude.m4, autogen.sh, configure.ac,
globalconst.h, install-sh, missing, mkinstalldirs,
README_FILES/CHANGES, README_FILES/INSTALL, README_FILES/LICENSE,
README_FILES/MAILING, README_FILES/Makefile.am,
README_FILES/README, README_FILES/Tools,
README_FILES/Whats_new_in_2.0, doc/Imakefile, doc/Makefile.am,
doc/mdate-sh, doc/pcb.man.in, doc/pcb.man.raw, doc/pcb.texi,
doc/pcb.texi.in, doc/pcb.texi.raw, doc/refcard.tex,
doc/refcard.tex.in, doc/refcard.tex.raw, doc/texinfo.tex,
example/LED.NET, example/LED, example/Makefile.am, example/LED2,
lib/CreateLibrary.sh.in, lib/CreateLibrary.sh.raw,
lib/CreateLibraryContents.sh.in,
lib/CreateLibraryContents.sh.raw, lib/Imakefile,
lib/ListLibraryContents.sh, lib/Makefile.am,
lib/QueryLibrary.sh.in, lib/QueryLibrary.sh.raw,
lib/TTL_74xx_DIL.list, lib/TTL_74xx_DIL.m4, lib/bga.inc,
lib/common.m4, lib/connector.inc, lib/connector.list,
lib/connector.m4, lib/crystal.list, lib/crystal.m4, lib/dil.inc,
lib/geda.inc, lib/geda.list, lib/geda.m4, lib/generic.list,
lib/generic.m4, lib/genericsmt.inc, lib/genericsmt.list,
lib/genericsmt.m4, lib/gtag.list, lib/gtag.m4, lib/jerry.list,
lib/jerry.m4, lib/linear.list, lib/linear.m4, lib/logic.list,
lib/logic.m4, lib/lsi.list, lib/lsi.m4, lib/memory.list,
lib/memory.m4, lib/misc.inc, lib/newlib.tgz, lib/optical.list,
lib/optical.m4, lib/pci.inc, lib/pci.list, lib/pci.m4,
lib/plcc.inc, lib/qfp-ui.in, lib/qfp.dat, lib/qfp.inc,
lib/qfp2.inc, lib/qfpdj.inc, lib/resistor_0.25W.list,
lib/resistor_0.25W.m4, lib/resistor_adjust.inc,
lib/resistor_adjust.list, lib/resistor_adjust.m4,
lib/resistor_array.list, lib/resistor_array.m4, lib/rules.inc,
lib/smt.inc, lib/texas_inst_amplifier.list,
lib/texas_inst_amplifier.m4, lib/texas_inst_voltage_reg.list,
lib/texas_inst_voltage_reg.m4, lib/to.inc, lib/transistor.list,
lib/transistor.m4, lib/zif.inc, newlib/Makefile.am,
newlib/2_pin_thru-hole_packages/0.125W_Carbon_Resistor,
newlib/2_pin_thru-hole_packages/1W_Carbon_Resistor,
newlib/2_pin_thru-hole_packages/CK05_type_Capacitor,
newlib/2_pin_thru-hole_packages/CK06_type_capacitor,
newlib/2_pin_thru-hole_packages/IRU1015-33CT_3.3V_reg_TO220,
newlib/2_pin_thru-hole_packages/Makefile.am,
newlib/2_pin_thru-hole_packages/RN55_type_0.1W_Resistor,
newlib/2_pin_thru-hole_packages/T1.75_LED,
newlib/analog-devices/ADC12138CIMSA,
newlib/analog-devices/Makefile.am, newlib/burr-brown/Makefile.am,
newlib/burr-brown/OPA340_SOT23-5, newlib/connectors/100_Pin_jack,
newlib/connectors/16x1_SMD_jack,
newlib/connectors/3terminal_screw_block,
newlib/connectors/72pin45degreeSIMMconnector,
newlib/connectors/MOLEX_miniFitJr-12pin,
newlib/connectors/Makefile.am, newlib/connectors/Power_Jack,
newlib/connectors/RightAngleSMA,
newlib/connectors/SJ-3523-SMT_3.5mm_stereo_jack,
newlib/crystal/CTX169_oscillator, newlib/crystal/Makefile.am,
newlib/cypress/Makefile.am,
newlib/electro-optics/IRF_optical_switch,
newlib/electro-optics/Makefile.am,
newlib/generic_SMD_packages/0805_reflow_solder,
newlib/generic_SMD_packages/0805_wave_solder,
newlib/generic_SMD_packages/1206_reflow_solder,
newlib/generic_SMD_packages/Makefile.am,
newlib/generic_SMD_packages/SOT-23_Transistor,
newlib/headers/0.1_inch_10pin, newlib/headers/0.1_inch_2pin,
newlib/headers/2mm_8pin_header, newlib/headers/Makefile.am,
newlib/msp430/MSP430F1121, newlib/msp430/MSP430F1121+jtag,
newlib/msp430/Makefile.am, newlib/not_vetted_ingo/Makefile.am,
newlib/not_vetted_ingo/pc104+.ele,
newlib/not_vetted_ingo/pc104.ele,
newlib/not_vetted_ingo/pq100.ele,
newlib/not_vetted_ingo/pq128.ele,
newlib/not_vetted_ingo/pq144.ele,
newlib/not_vetted_ingo/pq160.ele,
newlib/not_vetted_ingo/pq208.ele,
newlib/not_vetted_ingo/pq240.ele,
newlib/not_vetted_ingo/pq304.ele,
newlib/not_vetted_ingo/pq32.ele, newlib/not_vetted_ingo/pq44.ele,
newlib/not_vetted_ingo/smt0402.ele,
newlib/not_vetted_ingo/smt0603.ele,
newlib/not_vetted_ingo/smt0805.ele,
newlib/not_vetted_ingo/smt1206.ele,
newlib/not_vetted_ingo/smt1210.ele,
newlib/not_vetted_ingo/smt1913.ele,
newlib/not_vetted_ingo/smt2416.ele, newlib/sockets/Makefile.am,
newlib/tests/14DIP_oval_pad, newlib/tests/Generic_TSOP48_Flash,
newlib/tests/MONOBLOCK_large, newlib/tests/Makefile.am,
newlib/tests/StrongARM_CPU, newlib/tests/TK11950,
newlib/tests/TO99fromLED, newlib/tests/UART,
newlib/tests/monoblock_small, newlib/toko/Makefile.am,
src/smask.grb, src/.output.h.swp, src/1.grb, src/2.grb,
src/3.grb, src/4.grb, src/5.grb, src/CreateSedScript.sh,
src/Imakefile, src/Makefile.am, src/Pcb.ad.in, src/Pcb.ad.raw,
src/Pcb.ad.small, src/action.c, src/action.h, src/autoplace.c,
src/autoplace.h, src/autoroute.c, src/autoroute.h, src/box.h,
src/buffer.c, src/buffer.h, src/change.c, src/change.h,
src/check_icon.data, src/cmask.grb, src/set.h, src/command.c,
src/command.h, src/const.h, src/control.c, src/control.h,
src/copy.c, src/copy.h, src/cpaste.grb, src/create.c,
src/create.h, src/crosshair.c, src/crosshair.h, src/csilk.grb,
src/data.c, src/data.h, src/default_font, src/dev_ps.c,
src/dev_ps.h, src/dev_rs274x.c, src/dev_rs274x.h, src/dialog.c,
src/dialog.h, src/draw.c, src/draw.h, src/drill.c, src/drill.h,
src/error.c, src/error.h, src/file.c, src/file.h,
src/fileselect.c, src/fileselect.h, src/find.c, src/find.h,
src/global.h, src/gui.c, src/gui.h, src/heap.c, src/heap.h,
src/icon.data, src/insert.c, src/insert.h, src/intersect.c,
src/intersect.h, src/kdtree.c, src/kdtree.h, src/lgdialog.c,
src/lgdialog.h, src/library.c, src/library.h, src/log.c,
src/log.h, src/macro.h, src/main.c, src/menu.c, src/menu.h,
src/mirror.c, src/mirror.h, src/misc.c, src/misc.h,
src/mode_icon.data, src/move.c, src/move.h, src/mtspace.c,
src/mtspace.h, src/mymem.c, src/mymem.h, src/netlist.c,
src/netlist.h, src/output.c, src/output.h, src/parse_l.h,
src/parse_l.l, src/parse_y.y, src/pcb.in, src/pcbtest.sh.in,
src/pdrill.grb, src/pinout.c, src/pinout.h, src/polygon.c,
src/polygon.h, src/print.c, src/print.h, src/printdialog.c,
src/printdialog.h, src/printpanner.c, src/printpanner.h,
src/rats.c, src/rats.h, src/remove.c, src/remove.h, src/report.c,
src/report.h, src/rotate.c, src/rotate.h, src/rubberband.c,
src/rubberband.h, src/search.c, src/search.h, src/select.c,
src/select.h, src/selector.c, src/selector.h, src/set.c,
src/sizedialog.c, src/sizedialog.h, src/spaste.grb,
src/ssilk.grb, src/udrill.grb, src/undo.c, src/undo.h,
src/vector.c, src/vector.h, src/icons/Makefile.am,
src/icons/hand.dat, src/icons/hcurs.dat, src/icons/lcurs.dat,
src/icons/lock.dat, tools/Makefile.am, tools/MergePCBPS,
tools/PCB2HPGL, tools/apctools.zip, tools/gerbertotk.c,
tools/pcb2ncap.tgz, tools/tgo2pcb.tcl, tutorial/Makefile.am,
tutorial/tut1.pcb: Initial revision
2003-02-19 19:22 danmc
* AUTHORS, ..., COPYING, ChangeLog, INSTALL, Makefile.am, NEWS,
README, README.cvs, acinclude.m4, autogen.sh, configure.ac,
globalconst.h, install-sh, missing, mkinstalldirs,
README_FILES/CHANGES, README_FILES/INSTALL, README_FILES/LICENSE,
README_FILES/MAILING, README_FILES/Makefile.am,
README_FILES/README, README_FILES/Tools,
README_FILES/Whats_new_in_2.0, doc/Imakefile, doc/Makefile.am,
doc/mdate-sh, doc/pcb.man.in, doc/pcb.man.raw, doc/pcb.texi,
doc/pcb.texi.in, doc/pcb.texi.raw, doc/refcard.tex,
doc/refcard.tex.in, doc/refcard.tex.raw, doc/texinfo.tex,
example/LED.NET, example/LED, example/Makefile.am, example/LED2,
lib/CreateLibrary.sh.in, lib/CreateLibrary.sh.raw,
lib/CreateLibraryContents.sh.in,
lib/CreateLibraryContents.sh.raw, lib/Imakefile,
lib/ListLibraryContents.sh, lib/Makefile.am,
lib/QueryLibrary.sh.in, lib/QueryLibrary.sh.raw,
lib/TTL_74xx_DIL.list, lib/TTL_74xx_DIL.m4, lib/bga.inc,
lib/common.m4, lib/connector.inc, lib/connector.list,
lib/connector.m4, lib/crystal.list, lib/crystal.m4, lib/dil.inc,
lib/geda.inc, lib/geda.list, lib/geda.m4, lib/generic.list,
lib/generic.m4, lib/genericsmt.inc, lib/genericsmt.list,
lib/genericsmt.m4, lib/gtag.list, lib/gtag.m4, lib/jerry.list,
lib/jerry.m4, lib/linear.list, lib/linear.m4, lib/logic.list,
lib/logic.m4, lib/lsi.list, lib/lsi.m4, lib/memory.list,
lib/memory.m4, lib/misc.inc, lib/newlib.tgz, lib/optical.list,
lib/optical.m4, lib/pci.inc, lib/pci.list, lib/pci.m4,
lib/plcc.inc, lib/qfp-ui.in, lib/qfp.dat, lib/qfp.inc,
lib/qfp2.inc, lib/qfpdj.inc, lib/resistor_0.25W.list,
lib/resistor_0.25W.m4, lib/resistor_adjust.inc,
lib/resistor_adjust.list, lib/resistor_adjust.m4,
lib/resistor_array.list, lib/resistor_array.m4, lib/rules.inc,
lib/smt.inc, lib/texas_inst_amplifier.list,
lib/texas_inst_amplifier.m4, lib/texas_inst_voltage_reg.list,
lib/texas_inst_voltage_reg.m4, lib/to.inc, lib/transistor.list,
lib/transistor.m4, lib/zif.inc, newlib/Makefile.am,
newlib/2_pin_thru-hole_packages/0.125W_Carbon_Resistor,
newlib/2_pin_thru-hole_packages/1W_Carbon_Resistor,
newlib/2_pin_thru-hole_packages/CK05_type_Capacitor,
newlib/2_pin_thru-hole_packages/CK06_type_capacitor,
newlib/2_pin_thru-hole_packages/IRU1015-33CT_3.3V_reg_TO220,
newlib/2_pin_thru-hole_packages/Makefile.am,
newlib/2_pin_thru-hole_packages/RN55_type_0.1W_Resistor,
newlib/2_pin_thru-hole_packages/T1.75_LED,
newlib/analog-devices/ADC12138CIMSA,
newlib/analog-devices/Makefile.am, newlib/burr-brown/Makefile.am,
newlib/burr-brown/OPA340_SOT23-5, newlib/connectors/100_Pin_jack,
newlib/connectors/16x1_SMD_jack,
newlib/connectors/3terminal_screw_block,
newlib/connectors/72pin45degreeSIMMconnector,
newlib/connectors/MOLEX_miniFitJr-12pin,
newlib/connectors/Makefile.am, newlib/connectors/Power_Jack,
newlib/connectors/RightAngleSMA,
newlib/connectors/SJ-3523-SMT_3.5mm_stereo_jack,
newlib/crystal/CTX169_oscillator, newlib/crystal/Makefile.am,
newlib/cypress/Makefile.am,
newlib/electro-optics/IRF_optical_switch,
newlib/electro-optics/Makefile.am,
newlib/generic_SMD_packages/0805_reflow_solder,
newlib/generic_SMD_packages/0805_wave_solder,
newlib/generic_SMD_packages/1206_reflow_solder,
newlib/generic_SMD_packages/Makefile.am,
newlib/generic_SMD_packages/SOT-23_Transistor,
newlib/headers/0.1_inch_10pin, newlib/headers/0.1_inch_2pin,
newlib/headers/2mm_8pin_header, newlib/headers/Makefile.am,
newlib/msp430/MSP430F1121, newlib/msp430/MSP430F1121+jtag,
newlib/msp430/Makefile.am, newlib/not_vetted_ingo/Makefile.am,
newlib/not_vetted_ingo/pc104+.ele,
newlib/not_vetted_ingo/pc104.ele,
newlib/not_vetted_ingo/pq100.ele,
newlib/not_vetted_ingo/pq128.ele,
newlib/not_vetted_ingo/pq144.ele,
newlib/not_vetted_ingo/pq160.ele,
newlib/not_vetted_ingo/pq208.ele,
newlib/not_vetted_ingo/pq240.ele,
newlib/not_vetted_ingo/pq304.ele,
newlib/not_vetted_ingo/pq32.ele, newlib/not_vetted_ingo/pq44.ele,
newlib/not_vetted_ingo/smt0402.ele,
newlib/not_vetted_ingo/smt0603.ele,
newlib/not_vetted_ingo/smt0805.ele,
newlib/not_vetted_ingo/smt1206.ele,
newlib/not_vetted_ingo/smt1210.ele,
newlib/not_vetted_ingo/smt1913.ele,
newlib/not_vetted_ingo/smt2416.ele, newlib/sockets/Makefile.am,
newlib/tests/14DIP_oval_pad, newlib/tests/Generic_TSOP48_Flash,
newlib/tests/MONOBLOCK_large, newlib/tests/Makefile.am,
newlib/tests/StrongARM_CPU, newlib/tests/TK11950,
newlib/tests/TO99fromLED, newlib/tests/UART,
newlib/tests/monoblock_small, newlib/toko/Makefile.am,
src/smask.grb, src/.output.h.swp, src/1.grb, src/2.grb,
src/3.grb, src/4.grb, src/5.grb, src/CreateSedScript.sh,
src/Imakefile, src/Makefile.am, src/Pcb.ad.in, src/Pcb.ad.raw,
src/Pcb.ad.small, src/action.c, src/action.h, src/autoplace.c,
src/autoplace.h, src/autoroute.c, src/autoroute.h, src/box.h,
src/buffer.c, src/buffer.h, src/change.c, src/change.h,
src/check_icon.data, src/cmask.grb, src/set.h, src/command.c,
src/command.h, src/const.h, src/control.c, src/control.h,
src/copy.c, src/copy.h, src/cpaste.grb, src/create.c,
src/create.h, src/crosshair.c, src/crosshair.h, src/csilk.grb,
src/data.c, src/data.h, src/default_font, src/dev_ps.c,
src/dev_ps.h, src/dev_rs274x.c, src/dev_rs274x.h, src/dialog.c,
src/dialog.h, src/draw.c, src/draw.h, src/drill.c, src/drill.h,
src/error.c, src/error.h, src/file.c, src/file.h,
src/fileselect.c, src/fileselect.h, src/find.c, src/find.h,
src/global.h, src/gui.c, src/gui.h, src/heap.c, src/heap.h,
src/icon.data, src/insert.c, src/insert.h, src/intersect.c,
src/intersect.h, src/kdtree.c, src/kdtree.h, src/lgdialog.c,
src/lgdialog.h, src/library.c, src/library.h, src/log.c,
src/log.h, src/macro.h, src/main.c, src/menu.c, src/menu.h,
src/mirror.c, src/mirror.h, src/misc.c, src/misc.h,
src/mode_icon.data, src/move.c, src/move.h, src/mtspace.c,
src/mtspace.h, src/mymem.c, src/mymem.h, src/netlist.c,
src/netlist.h, src/output.c, src/output.h, src/parse_l.h,
src/parse_l.l, src/parse_y.y, src/pcb.in, src/pcbtest.sh.in,
src/pdrill.grb, src/pinout.c, src/pinout.h, src/polygon.c,
src/polygon.h, src/print.c, src/print.h, src/printdialog.c,
src/printdialog.h, src/printpanner.c, src/printpanner.h,
src/rats.c, src/rats.h, src/remove.c, src/remove.h, src/report.c,
src/report.h, src/rotate.c, src/rotate.h, src/rubberband.c,
src/rubberband.h, src/search.c, src/search.h, src/select.c,
src/select.h, src/selector.c, src/selector.h, src/set.c,
src/sizedialog.c, src/sizedialog.h, src/spaste.grb,
src/ssilk.grb, src/udrill.grb, src/undo.c, src/undo.h,
src/vector.c, src/vector.h, src/icons/Makefile.am,
src/icons/hand.dat, src/icons/hcurs.dat, src/icons/lcurs.dat,
src/icons/lock.dat, tools/Makefile.am, tools/MergePCBPS,
tools/PCB2HPGL, tools/apctools.zip, tools/gerbertotk.c,
tools/pcb2ncap.tgz, tools/tgo2pcb.tcl, tutorial/Makefile.am,
tutorial/tut1.pcb: import pcb sources (automake version) from my
private CVS sources. This matches the sources with the
'sourceforge' tag on my private CVS.
|