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
|
2006-07-09 22:10 memoryhole
* configure, configure.in, definitions.h: new version
2006-07-09 22:09 memoryhole
* test.simple, English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: [no log message]
2006-07-09 22:08 memoryhole
* wcalc.1: added c_style_mod pref keyword
2006-07-09 22:06 memoryhole
* parser.y, scanner.l: added \cmod command
2006-07-09 22:04 memoryhole
* main.c: added live precision toggle, % style prefs, and the
c_style_mod pref keyword
2006-07-09 22:02 memoryhole
* number_formatting.c: eliminate the negative zeros
2006-07-09 22:00 memoryhole
* calculator.c, calculator.h: added live precision toggle, % style
prefs
2006-07-09 21:57 memoryhole
* WcalcController.h, WcalcController.m: added live precision
toggle, % style prefs, improved the prefs versioning, and fixed
some whitespace
2006-07-09 19:55 memoryhole
* Makefile.am, Makefile.in: dont need optimization by default
2006-04-21 16:28 memoryhole
* acinclude.m4, aclocal.m4, configure: better history detection
2006-04-12 17:54 memoryhole
* parser.y: this was backwards
2006-04-12 17:54 memoryhole
* calculator.c: probably faster
2006-03-20 19:27 memoryhole
* calculator.c: make mod (%) efficient
2006-03-09 22:08 memoryhole
* scanner.l: fixes the 0.9e-9 bug, and enables exponents and
decimals and such on the other bases
2006-03-09 22:07 memoryhole
* add_commas.c: fixes the exponent brokenness
2006-03-09 22:04 memoryhole
* string_manip.c: now handles of hex exponents
2006-03-02 20:58 memoryhole
* English.lproj/MainMenu.nib/: info.nib, keyedobjects.nib: no
printing, and standardize the appearance of some windows
2006-03-02 08:35 memoryhole
* WcalcController.m: keyboard is now a one-click affair
2006-03-02 08:35 memoryhole
* English.lproj/MainMenu.nib/: info.nib, keyedobjects.nib:
Preloaded Variables buttons, renamed the menu item, added more
auto-save names
2006-03-01 14:10 memoryhole
* HistoryList.h, HistoryList.m, VariableList.h, VariableList.m,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser: can
copy from history/variable list.
2006-03-01 12:35 memoryhole
* InspectorController.h, InspectorController.m,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser:
Inspector is now a panel
2006-03-01 10:42 memoryhole
* Info.plist, NEWS, README, Wcalc-nonFHS.pmproj, Wcalc.pmproj,
configure, English.lproj/InfoPlist.strings,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser:
post-release commit
2006-03-01 09:15 memoryhole
* configure.in, definitions.h, Wcalc.xcodeproj/kyle.mode1,
Wcalc.xcodeproj/kyle.pbxuser, Wcalc.xcodeproj/project.pbxproj:
incrementing version
2006-03-01 09:05 memoryhole
* ChangeLog: [no log message]
2006-03-01 09:02 memoryhole
* PersVarList.m, list.c: fix crash when theres an empty list
2006-02-28 22:03 memoryhole
* ChangeLog: post-release commit
2006-02-28 21:52 memoryhole
* Wcalc-nonFHS.pmproj: Releasing 2.2
2006-02-28 21:48 memoryhole
* Wcalc.pmproj, Wcalc.xcodeproj/kyle.mode1,
Wcalc.xcodeproj/kyle.pbxuser, README: Releasing 2.2
2006-02-28 21:27 memoryhole
* wcalc.1: sinc
2006-02-28 21:22 memoryhole
* parser.y: sinc
2006-02-28 21:16 memoryhole
* definitions.h: sinc
2006-02-28 21:12 memoryhole
* calculator.c, calculator.h, explain.c, isfunc.c, parser.y,
scanner.l: sinc
2006-02-28 20:55 memoryhole
* explain.c: explanations of Gamma, lnGamma, zeta, and K
2006-02-28 20:28 memoryhole
* explain.c: added a \n
2006-02-28 10:21 memoryhole
* isfunc.c, definitions.h, isconst.c, wcalc.1: new symbols
2006-02-28 02:57 memoryhole
* ChangeLog: [no log message]
2006-02-28 02:29 memoryhole
* English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser: Preload
Variables
2006-02-28 02:29 memoryhole
* string_manip.c: avoiding string functions
2006-02-28 02:28 memoryhole
* list.c: correct getListElement
2006-02-28 02:28 memoryhole
* WcalcController.m: preload the preloaded variables
2006-02-28 02:26 memoryhole
* VariableList.m: unused variable
2006-02-28 02:25 memoryhole
* PersVarList.m: all the rest of the implementation
2006-02-27 21:26 memoryhole
* calculator.c: rely on count_digits to do it right
2006-02-27 21:25 memoryhole
* number_formatting.c: better truncation decisions
2006-02-27 21:24 memoryhole
* scanner.l: more accurate sig-fig calculation
2006-02-27 21:12 memoryhole
* string_manip.c: make count_digits aware of base (I think)
2006-02-26 20:55 memoryhole
* HistoryList.m, InspectorController.h, InspectorController.m,
PersVarList.h, PersVarList.m, README, VariableList.m,
Wcalc.pmproj, WcalcController.h, WcalcController.m, w.png,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: added the new functions, and a
way to change the internal bitcount. partially through the
preload stuff
2006-02-26 20:51 memoryhole
* calculator.c: rounding needs more work
2006-02-26 20:45 memoryhole
* variables.c: getrealnvar was totally broken
2006-02-26 20:42 memoryhole
* scanner.l: forgiving capitalization of lnGamma
2006-02-26 20:41 memoryhole
* list.c: getListElement was broken... dunno about this aliasing
stuff
2006-02-26 20:39 memoryhole
* add_commas.c: debug printf twiddle
2006-02-26 20:38 memoryhole
* parser.y, evalvar.c: num_to_str changed
2006-02-26 20:37 memoryhole
* number_formatting.c, number_formatting.h: some truncation hinting
2006-02-26 02:06 memoryhole
* Makefile.in, aclocal.m4, config.h.in, configure: osx utils
2006-02-26 02:01 memoryhole
* calculator.c, configure.in: better uj detect (use mpfr!)
2006-02-26 01:15 memoryhole
* calculator.c: uj
2006-02-26 01:08 memoryhole
* config.h.in, configure: new version
2006-02-26 00:48 memoryhole
* configure.in: stupid library
2006-02-26 00:40 memoryhole
* configure.in: GMPs broken MPFR library really irritates me
sometimes
2006-02-23 14:35 memoryhole
* calculator.c: wbnot was missing
2006-02-21 11:09 memoryhole
* Makefile.in, aclocal.m4, configure: OSX tools
2006-02-21 11:07 memoryhole
* historyManager.c: unnecessary function
2006-02-21 11:06 memoryhole
* acinclude.m4: new URL
2006-02-21 11:06 memoryhole
* configure.in: that extra dollar sign was making OpenBSD confused
2006-02-21 10:09 memoryhole
* configure: new configure.in
2006-02-21 10:06 memoryhole
* parser.y: typo
2006-02-21 10:05 memoryhole
* conversion.c, conversion.h: plurals and non-plurals
2006-02-21 10:01 memoryhole
* scanner.l: some units have periods
2006-02-20 11:28 memoryhole
* conversion.c: more accurate foot-inches conversion
2006-02-20 11:27 memoryhole
* list.c, list.h: unused-but-possibly-useful-someday function
2006-02-20 11:25 memoryhole
* parser.y: whitespace
2006-02-20 11:11 memoryhole
* parser.y: shift/reduce errors and more explanation of memory leak
in error condition
2006-02-15 16:01 memoryhole
* configure.in: better error message, more accurate requirements
(for the moment)
2006-02-15 15:52 memoryhole
* aclocal.m4, configure, Makefile.in, config.h.in: MacOS X 10.4.5
2006-02-15 15:47 memoryhole
* calculator.c, scanner.l: work with older mpfr versions
2006-02-15 15:47 memoryhole
* definitions.h: catalan constant if its missing from mpfr
2006-02-15 15:46 memoryhole
* configure.in: detect a missing mpfr_sec function
2006-02-15 11:02 memoryhole
* main.c: whitespace
2006-02-15 11:01 memoryhole
* definitions.h: K (Catalan)
2006-02-15 10:59 memoryhole
* WcalcController.h, calculator.h, conversion.h, variables.h,
calculator.c: whitespace
2006-02-15 10:56 memoryhole
* historyManager.c, isconst.c, isfunc.c, list.c, simpleCalc.c,
string_manip.c, variables.c: whitespace
2006-02-15 10:53 memoryhole
* add_commas.c, evalvar.c, explain.c, extract_vars.c: whitespace
2006-02-15 10:46 memoryhole
* files.c: whitespace
2006-02-15 10:30 memoryhole
* parser.y: comment explaining memory loss
2006-02-15 10:27 memoryhole
* main.c: print errors in commandline
2006-02-15 10:16 memoryhole
* calculator.c: memory leak in error condition
2006-02-15 10:01 memoryhole
* parser.y, conversion.c: memory leak
2006-02-15 09:53 memoryhole
* scanner.l: Gamma function rather than gamma to distinguish it
from the Euler constant
2006-02-15 09:53 memoryhole
* add_commas.c: fix memory overrun
2006-02-15 09:37 memoryhole
* list.c: allocate the right thing
2006-02-15 09:34 memoryhole
* extract_vars.c: strdup it so it can be safely freed
2006-02-15 09:28 memoryhole
* main.c: just fixing an exit memory allocation (doesnt *really*
matter)
2006-02-15 09:23 memoryhole
* calculator.c: memory leak
2006-02-15 09:21 memoryhole
* variables.c: memory leak (description)
2006-02-15 09:18 memoryhole
* extract_vars.c: memory leak
2006-02-15 09:16 memoryhole
* number_formatting.c: possible memory overwrite
2006-02-15 09:04 memoryhole
* calculator.c, calculator.h, parser.y, scanner.l: secant, cosecant
(and related functions), gamma, lngamma, zeta, catalan (K) and
enhanced euler
2006-02-15 09:03 memoryhole
* number_formatting.c: correct calloc syntax (does this matter?)
2006-02-15 09:02 memoryhole
* add_commas.c: only numbers
2006-02-14 17:37 memoryhole
* calculator.c: make the equal always in the second column
2006-02-14 17:36 memoryhole
* add_commas.c: negatives
2006-02-14 11:31 memoryhole
* calculator.c: a warning against bad thoughts
2006-02-14 10:42 memoryhole
* parser.y: add_commas pref
2006-02-14 10:41 memoryhole
* add_commas.c: debugging
2006-02-14 10:37 memoryhole
* wcalc.1: descriptions of wcalcrc keys
2006-02-14 10:13 memoryhole
* calculator.c: add commas for regular numbers too
2006-02-13 15:46 memoryhole
* main.c: potato potah-toe
2006-02-13 15:25 memoryhole
* main.c: cmdline input fix for systems without READLINE_HISTORY
2006-02-13 14:57 memoryhole
* calculator.c, calculator.h: add commas
2006-02-13 14:57 memoryhole
* main.c: whitespace and delimiters preference
2006-02-13 14:56 memoryhole
* scanner.l: \delimiters
2006-02-13 14:55 memoryhole
* parser.y: DELIM_CMD
2006-02-13 14:54 memoryhole
* number_formatting.h: whitespace
2006-02-13 14:54 memoryhole
* number_formatting.c: commas
2006-02-13 14:53 memoryhole
* WcalcController.m: commas preference preliminary
2006-02-13 14:53 memoryhole
* Makefile.am, Makefile.in, add_commas.c, add_commas.h: add_commas
2006-02-13 12:03 memoryhole
* test.simple: trickier precision guard test
2006-02-13 12:03 memoryhole
* number_formatting.c, scanner.l: main.c
2006-02-13 12:02 memoryhole
* calculator.c: spacing and fiddled with print_this_result
2006-02-02 16:53 memoryhole
* VariableList.m: compatability with new variables.c
2006-01-19 13:03 memoryhole
* explain.c: better error message
2006-01-19 12:00 memoryhole
* test.simple: might be important to test
2006-01-19 11:55 memoryhole
* parser.y: added print_ints pref to \\prefs
2006-01-19 11:52 memoryhole
* main.c: corrected print_integers preference, added error-checking
to internal variable storage
2006-01-19 11:25 memoryhole
* variables.c: wrong semantics on key sanity testing
2006-01-15 02:13 memoryhole
* variables.h: size_t instead of int
2006-01-15 02:13 memoryhole
* variables.c: made it use the generic List structure
2006-01-15 02:12 memoryhole
* parser.y: better variable abstraction, a readability fix, and
slightly more useful error messages
2006-01-15 02:11 memoryhole
* list.h: added getListElement
2006-01-15 02:10 memoryhole
* list.c: removed unnecessary error printout, and added
getListElement
2006-01-15 02:09 memoryhole
* files.c: readability
2005-12-12 02:52 memoryhole
* wcalc.1: tidying up, reorganizing
2005-12-12 02:42 memoryhole
* wcalc.1: variables & descriptions
2005-12-11 09:08 memoryhole
* Info.plist, OldVariableList.h, VariableList.m, WcalcController.m,
calculator.c, calculator.h, configure, configure.in,
conversion.c, conversion.h, definitions.h, evalvar.c, explain.c,
extract_vars.c, files.c, help.c, help.h, historyManager.c,
historyManager.h, list.c, list.h, main.c, parser.y, simpleCalc.c,
string_manip.c, string_manip.h, variables.c, variables.h,
English.lproj/InfoPlist.strings, Wcalc.xcodeproj/kyle.mode1,
Wcalc.xcodeproj/kyle.pbxuser, Wcalc.xcodeproj/project.pbxproj:
tidying up, incrementing version
2005-12-10 20:56 memoryhole
* calculator.c, explain.c, uint32_max.h: UINT32_MAX is *not* that
hard, people!
2005-12-10 20:26 memoryhole
* files.c: save the description, bugfix for saveState
2005-12-10 17:08 memoryhole
* explain.c: portability fixes
2005-12-10 17:05 memoryhole
* variables.h: include config.h
2005-12-10 16:52 memoryhole
* explain.c, files.c, help.c, main.c, parser.y, scanner.l,
variables.c, variables.h: descriptions
2005-12-10 15:17 memoryhole
* wcalc.1: \\store and \\explain
2005-12-10 15:14 memoryhole
* explain.c, files.c: \\explain \\store
2005-12-10 15:11 memoryhole
* files.c, files.h, main.c, parser.y, scanner.l: \\store function,
and useability fixes in files.c for the preload file
2005-12-10 15:10 memoryhole
* calculator.c: formatting
2005-12-10 13:56 memoryhole
* calculator.c: folds
2005-12-10 13:55 memoryhole
* calculator.c: depth-first recursion search, not breadth-first
2005-12-10 13:45 memoryhole
* calculator.c: that was unnecessary
2005-12-10 13:44 memoryhole
* calculator.c: find_recursion uses all List's now
2005-12-10 13:28 memoryhole
* test.errors: more tests
2005-12-10 13:28 memoryhole
* list.c, list.h: added an iterator structure and a way to use the
list as a stack rather than a queue
2005-12-10 13:27 memoryhole
* calculator.c: removed local_extract_vars in favor of the
separated one in extract_vars.c
2005-12-10 12:16 memoryhole
* calculator.c: fixing the a==5 bug
2005-12-10 12:09 memoryhole
* test.errors: more extensive testing
2005-12-10 12:09 memoryhole
* calculator.c: starting to eliminate non-List lists
2005-12-10 11:39 memoryhole
* Makefile.am, Makefile.in, configure, evalvar.c, evalvar.h,
explain.c, explain.h, extract_vars.c, extract_vars.h, help.c,
isconst.c, isconst.h, isfunc.c, isfunc.h, list.c, list.h, main.c,
parser.y, scanner.l, variables.h, Wcalc.xcodeproj/kyle.mode1,
Wcalc.xcodeproj/kyle.pbxuser: \\explain
2005-12-10 11:11 memoryhole
* calculator.c: this was extraneous
2005-12-10 11:08 memoryhole
* English.lproj/MainMenu.nib/: info.nib, keyedobjects.nib: missing
connection repaired
2005-12-07 18:04 memoryhole
* main.c: that var was unecessary
2005-12-07 18:02 memoryhole
* main.c: command-line operations now add to the history
2005-12-07 14:02 memoryhole
* wcalc.1: wcalcrc and active variable documentation
2005-12-02 08:02 memoryhole
* configure.in: typo
2005-12-01 18:23 memoryhole
* Info.plist, InspectorController.h, InspectorController.m, NEWS,
README, Wcalc.pmproj, WcalcController.h, WcalcController.m,
definitions.h, wcalc.info, English.lproj/InfoPlist.strings,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: fixed resizeness, made Inspector
a window, releasing 2.1.2
2005-12-01 15:38 memoryhole
* ChangeLog: Version 2.1.2
2005-12-01 15:18 memoryhole
* Makefile.am: Reference for if I need lexx flags in the future
2005-12-01 15:12 memoryhole
* configure, configure.in: Version 2.1.2
2005-12-01 15:11 memoryhole
* Makefile.in: backup file garbage
2005-11-14 13:46 memoryhole
* Makefile.am: remove more cvs cruft
2005-11-10 08:18 memoryhole
* English.lproj/MainMenu.nib/: info.nib, keyedobjects.nib: the menu
functions now say areasinh instead of arcsinh
2005-11-09 11:27 memoryhole
* files.c: makes OpenBSD happy
2005-11-08 02:05 memoryhole
* files.c: variables as expressions should be quoted correctly
2005-11-07 16:42 memoryhole
* Wcalc.xcodeproj/: kyle.mode1, kyle.pbxuser: whatever
2005-11-07 16:42 memoryhole
* Makefile.in, aclocal.m4, configure, configure.in: attempt to
detect broken MPFR installations
2005-11-07 16:41 memoryhole
* English.lproj/MainMenu.nib/: info.nib, keyedobjects.nib: Forgot
to connect the drawers to the corrected main window :(
2005-11-07 16:40 memoryhole
* scanner.l: technically, that should be a "mu" and not a "micro",
but you can't tell visually... for the time being, we accept
either one
2005-11-07 16:38 memoryhole
* WcalcController.m: technically, that should be a "mu" and not a
"micro", but you can't tell visually - also, use a real multiply
symbol for implicit here
2005-11-07 11:11 memoryhole
* README, definitions.h: I wanted mu, not micro... but that's
complicated
2005-11-06 23:41 memoryhole
* ChangeLog, NEWS, README, README.txt, Wcalc.pmproj,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: 2.1.1
2005-11-05 11:53 memoryhole
* WcalcController.m: improve utf-8 friendliness, add debug
printouts in loading sequence, fix compatability with locales
without NSThousandsSeparators, fix repeat calculation bug
2005-11-05 11:49 memoryhole
* scanner.l: correct name for the asinh,acosh,atanh,acoth functions
2005-11-05 11:48 memoryhole
* ReadMe.rtf: text only now
2005-11-05 10:50 memoryhole
* English.lproj/InfoPlist.strings: binary-fied
2005-11-05 10:49 memoryhole
* English.lproj/InfoPlist.strings: step 1 in binary-fying it
2005-11-05 10:48 memoryhole
* simpleCalc.c: fixed debug output
2005-11-05 10:47 memoryhole
* scanner.l: fixed the division symbol and made it so the
error-reporter won't break the GUI by printing malformed UTF-8
2005-11-05 10:45 memoryhole
* definitions.h: preparing for 2.1.1
2005-11-05 10:44 memoryhole
* OldVariableList.m, VariableList.m: made utf-8 friendly
2005-11-05 10:18 memoryhole
* Info.plist: preparing for 2.1.1
2005-11-05 10:17 memoryhole
* ErrorController.m: minor obvious optimizations (what was I
thinking?)
2005-11-05 10:17 memoryhole
* ConversionList.m, HistoryList.m, MyTextField.m: made utf-8
friendly
2005-11-05 10:05 memoryhole
* English.lproj/MainMenu.nib/keyedobjects.nib: presto: binary
2005-11-05 10:04 memoryhole
* English.lproj/MainMenu.nib/keyedobjects.nib: step 1 to proper
cvsage
2005-11-05 10:03 memoryhole
* English.lproj/MainMenu.nib/info.nib: Re-add as binary
2005-11-05 10:03 memoryhole
* English.lproj/MainMenu.nib/info.nib: Step 1 to making it work
properly
2005-11-05 10:01 memoryhole
* English.lproj/MainMenu.nib/classes.nib: Re-adding with wrapper
2005-11-05 09:58 memoryhole
* English.lproj/MainMenu.nib/classes.nib: Step 1 to adding it
"properly"
2005-11-02 13:20 memoryhole
* test.simple: \ints tests
2005-11-02 13:19 memoryhole
* calculator.c: correct \ints output for small numbers (I am still
a moron)
2005-11-02 13:11 memoryhole
* calculator.c: correct \ints output for big numbers (I am a moron)
2005-11-02 13:10 memoryhole
* variables.c: fix logic errors introduced by the openbsd strncmp
fixes: now variables where one is a prefix of the other will not
be confused
2005-11-02 13:07 memoryhole
* test.errors, test.recursion, test.simple, test.vars: comments
that say what you should expect
2005-11-02 12:02 memoryhole
* calculator.c: small optimization and remove a debug printout
2005-11-02 10:55 memoryhole
* calculator.c: fix possible double-free plus some casting warnings
2005-11-02 10:53 memoryhole
* simpleCalc.c: warning removal through casting
2005-11-02 01:48 memoryhole
* Info.plist, Makefile.in, NEWS, README.txt, Wcalc.pmproj,
configure, configure.in, wcalc.info, wcalc.spec,
English.lproj/InfoPlist.strings, Wcalc.xcodeproj/kyle.mode1,
Wcalc.xcodeproj/kyle.pbxuser: post-version 2.1-release commit
2005-11-01 23:50 memoryhole
* ChangeLog: cvs2cl
2005-11-01 22:55 memoryhole
* Makefile.in: changed with Makefile.am
2005-11-01 22:53 memoryhole
* English.lproj/MainMenu.nib/: info.nib, keyedobjects.nib: little
tweak - added a symbol
2005-11-01 22:52 memoryhole
* Wcalc.xcodeproj/: kyle.mode1, kyle.pbxuser, project.pbxproj: many
compilation fixes and organizational improvements
2005-11-01 22:51 memoryhole
* wcalc.info: fink needs to get its act together wrt gmp and mpfr
2005-11-01 22:49 memoryhole
* wcalc.1: gamma is more accurate
2005-11-01 22:47 memoryhole
* scanner.l: make utf-8 savvy (mostly)
2005-11-01 22:45 memoryhole
* parser.y: remove sarcasm
2005-11-01 22:45 memoryhole
* definitions.h: added Phi0 (magnetic flux quantum) and made gamma
more accurate
2005-11-01 22:44 memoryhole
* WcalcController.m: comply with ObjC charset restrictions, and add
a symbol
2005-11-01 22:40 memoryhole
* ConversionList.m: comply with ObjC charset restrictions
2005-10-27 10:23 memoryhole
* test.recursion, test.vars: more tests
2005-10-27 10:22 memoryhole
* files.c, main.c, parser.y, scanner.l, calculator.h: added verbose
command
2005-10-27 10:22 memoryhole
* variables.c: removed debugging printouts
2005-10-27 10:07 memoryhole
* calculator.c: dprintf cleanup
2005-10-27 10:04 memoryhole
* variables.c: bug in storing variables when theres only one
variable fixed
2005-10-26 21:03 memoryhole
* files.c: removed a length limitation
2005-10-26 20:54 memoryhole
* calculator.c: cleanup and removed a nondynamic string (aka
possible overflow)
2005-10-26 20:53 memoryhole
* parser.y, scanner.l: the \base command
2005-10-26 20:52 memoryhole
* aclocal.m4: downgraded for OSX
2005-10-26 11:11 memoryhole
* wcalc.1: updates and corrections
2005-10-26 10:26 memoryhole
* parser.y: minor readability tweaks
2005-10-26 10:25 memoryhole
* Makefile.in: automake regen
2005-10-26 10:24 memoryhole
* main.c: typo
2005-10-26 10:20 memoryhole
* main.c: more useful command-line options
2005-10-26 10:01 memoryhole
* calculator.h: pedantic compatability
2005-10-26 10:00 memoryhole
* acinclude.m4: remove extra printout in readline detection
2005-10-26 09:59 memoryhole
* Makefile.am: parser.h is sometimes missed in the cleaning phase
2005-10-02 12:36 memoryhole
* wcalc.1: Fixed irand/fact bug - noticed by Daniele Sempione
2005-09-10 23:56 memoryhole
* Makefile.am, Makefile.in: more automake distclean cleanup
2005-09-10 23:49 memoryhole
* Makefile.am: shouldnt use maintainer-clean for this purpose
2005-09-10 23:38 memoryhole
* Makefile.in: removing CVS directories
2005-09-10 23:36 memoryhole
* Makefile.am: now removes CVS files when I do a "make
maintainer-clean"
2005-09-10 23:30 memoryhole
* Makefile.am, Makefile.in, aclocal.m4, configure: newer auto*
tools, and now it gets rid of the lex/yacc stuff
2005-08-30 14:09 memoryhole
* calculator.c, historyManager.c, main.c, test.vars, variables.c,
variables.h: some more memory leaks, all small, most irrelevant
2005-08-30 11:51 memoryhole
* calculator.c: fix longstanding memory leak. lets hope its a
cross-platform solution
2005-08-30 11:30 memoryhole
* calculator.c: memory leak
2005-08-29 23:04 memoryhole
* ChangeLog: cvs2cl
2005-08-29 23:02 memoryhole
* number_formatting.c, Wcalc.xcodeproj/kyle.mode1,
Wcalc.xcodeproj/kyle.pbxuser, Wcalc.xcodeproj/project.pbxproj:
compile warnings
2005-08-29 22:34 memoryhole
* test.simple: 100!
2005-08-29 21:26 memoryhole
* number_formatting.c, number_formatting.h: less namespace
pollution
2005-08-29 21:24 memoryhole
* Makefile.am, Makefile.in, calculator.c, number_formatting.c,
number_formatting.h: fixed a crasher in large number output --
better organized the number formatting stuff
2005-08-29 18:56 memoryhole
* calculator.c: allow for the display of REALLY long numbers
2005-08-29 17:25 memoryhole
* calculator.c, files.c, main.c, parser.y, scanner.l, variables.c:
OpenBSD portability fixes
2005-08-29 14:40 memoryhole
* NEWS: old fix
2005-08-28 12:41 memoryhole
* ChangeLog: cvs2cl
2005-08-28 12:00 memoryhole
* VariableList.m, main.c, parser.y, variables.c,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: variable corrections
2005-08-28 12:00 memoryhole
* calculator.c: comment spelling correction
2005-08-28 10:28 memoryhole
* COPYING.txt, COPYRIGHT, NEWS, ReadMe.rtf, Wcalc.pmproj,
Wcalc.pmsp, test.simple, Wcalc.xcodeproj/kyle.mode1,
Wcalc.xcodeproj/kyle.pbxuser, Wcalc.xcodeproj/project.pbxproj:
hopefully, last commit of version 2.0
2005-08-28 10:25 memoryhole
* Info.plist: correct version
2005-08-28 10:24 memoryhole
* calculator.c: that was stupid - I should have seen that before
2005-08-28 10:11 memoryhole
* parser.y: Corrected a little precedence stuff in the parser.
Managed to reduce conflicts too! :)
2005-08-28 02:02 memoryhole
* ChangeLog: cvs2cl
2005-08-28 01:53 memoryhole
* English.lproj/InfoPlist.strings, Wcalc.xcodeproj/kyle.mode1,
Wcalc.xcodeproj/kyle.pbxuser, Wcalc.xcodeproj/project.pbxproj:
new version
2005-08-28 01:47 memoryhole
* Info.plist: version strings from the old Wcalc .plist
2005-08-28 01:44 memoryhole
* Info.plist: Yes, THIS software
2005-08-28 01:42 memoryhole
* main.c: initialization and whitespace
2005-08-28 01:41 memoryhole
* variables.c, parser.y, scanner.l: whitespace
2005-08-28 01:41 memoryhole
* calculator.c: initialization cannot be here
2005-08-28 01:40 memoryhole
* WcalcController.m: Fixed a few crashes, fixed a toggle/toggle
weirdness, and made the AnswerField automatically expand.
2005-08-28 01:37 memoryhole
* WcalcController.h: minor cleanup plus the #import thing
2005-08-28 01:36 memoryhole
* AboutBoxController.h, AboutBoxController.m, ConversionList.h,
ConversionList.m, ErrorController.h, ErrorController.m,
HistoryList.h, HistoryList.m, MyTextField.h, MyTextField.m,
VariableList.h, VariableList.m, main.m: #import is deprecated now
2005-08-28 01:33 memoryhole
* theDelegate.h, theDelegate.m: #import is deprecated now
2005-08-28 01:31 memoryhole
* wcalc.info, wcalc.spec: new version
2005-08-28 01:31 memoryhole
* English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: The usual stuff (preparing for a
new release)
2005-08-27 17:48 memoryhole
* English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: Fixed the main window's scaling
behavior. Since I moved to a text-format nib, CVS shouldn't be
screwing it up again.
2005-08-27 17:48 memoryhole
* ConversionList.m: silly semicolon
2005-08-27 14:51 memoryhole
* ConversionList.m, conversion.c, conversion.h, help.c, parser.y,
scanner.l, test.errors, test.simple,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: Compiles and works!
2005-08-27 13:29 memoryhole
* ConversionList.m, Info.plist, VariableList.m, WcalcController.m,
calculator.c, main.m, parser.y, English.lproj/InfoPlist.strings,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/keyedobjects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: IT COMPILES AND RUNS! For those
who find themselves in a similar pickle, you have to specify
WHERE the Info.plist file is in the get-info dialog box of the
_native target.
2005-07-28 10:27 memoryhole
* calculator.c: fixed integers printing too many decimals
2005-07-21 16:11 memoryhole
* calculator.c: You'd think this would be a memory leak, but it
isn't for some reason
2005-07-21 16:11 memoryhole
* config.h.in, configure, configure.in: portability for Debian
2005-07-21 14:58 memoryhole
* simpleCalc.c: cleanup
2005-07-21 14:57 memoryhole
* scanner.l: cleanup (use yyleng instead of strlen())
2005-07-21 14:54 memoryhole
* main.c: cleanup and trim an extra mpfr_t for efficiency
2005-07-21 14:53 memoryhole
* historyManager.c, parser.y: cleanup
2005-07-21 14:51 memoryhole
* files.c: cleanup and trim an extra mpfr_t for efficiency
2005-07-21 14:50 memoryhole
* conversion.c: just clarify things for when I go grepping
2005-07-21 14:49 memoryhole
* calculator.h: some cleanup
2005-07-21 14:47 memoryhole
* calculator.c: some cleanup, fixed some #includes, and fixed
variable substitution
2005-07-20 03:19 memoryhole
* Makefile.am, Makefile.in, conversion.c, conversion.h, main.c,
parser.y, scanner.l: conversions work!
2005-07-20 00:13 memoryhole
* calculator.c, calculator.h, definitions.h, parser.y, scanner.l:
added xor and comp()
2005-07-19 19:05 memoryhole
* calculator.c: output function doesn't crash anymore, and the
bitshifts work properly now
2005-07-19 19:03 memoryhole
* configure, configure.in: version 2.0
2005-07-19 12:48 memoryhole
* wcalc.1: it had gotten stagnant
2005-07-19 12:48 memoryhole
* scanner.l: typo
2005-07-19 12:48 memoryhole
* main.c: add a few more configuration options
2005-07-19 12:47 memoryhole
* help.c: be more helpful
2005-07-19 12:46 memoryhole
* calculator.c: Fixed a seg-fault in really long numbers.
2005-07-19 12:45 memoryhole
* WcalcController.m: Fixed the menu thingy
2005-07-18 21:55 memoryhole
* parser.y, main.c: fix memory leaks
2005-07-18 13:42 memoryhole
* calculator.c: implemented sig_fig rounding indication (huh, ended
up identical to the old one) and fixed several things that were
wrong with the old implementation
2005-07-18 13:40 memoryhole
* scanner.l: oops, left debugging printfs in there
2005-07-18 13:40 memoryhole
* main.c: increase the default accuracy? why not?
2005-07-18 13:29 memoryhole
* help.c: most recent major thing
2005-07-18 13:18 memoryhole
* parser.y: removed several unnecessary doubles, added the \bits
command, and fixed the \prefs display to be slightly more useful
2005-07-18 13:14 memoryhole
* scanner.l: fixed some sigfig problems, and several unnecessary
doubles
2005-07-18 13:13 memoryhole
* string_manip.c: correct formatting
2005-07-18 13:10 memoryhole
* main.c: ~/.wcalcrc parsing was broken
2005-07-18 11:01 memoryhole
* main.c: use libhistory properly, and finally fix the damn
readline problems
2005-07-18 00:45 memoryhole
* help.c: Info about the \bits command
2005-07-18 00:45 memoryhole
* calculator.c: Implemented binary operations, and a few other
minor tweaks. Still much cruft in the second display function.
2005-07-17 10:41 memoryhole
* WcalcController.m: fixed the constants menu, added all the mpfr
stuff
2005-07-17 10:40 memoryhole
* simpleCalc.c: mpfr stuff added
2005-07-17 10:38 memoryhole
* definitions.h: more constants, corrected constants
2005-07-17 10:36 memoryhole
* variables.c, variables.h: variable_exists test (read: efficiency)
2005-07-17 10:36 memoryhole
* scanner.l: more constants, and no mpfr_inits()
2005-07-17 10:35 memoryhole
* main.c: this should get initialized automatically now
2005-07-17 10:34 memoryhole
* parser.y: damn mpfr_clears()
2005-07-17 10:33 memoryhole
* conversion.h: the correct mpfr includes
2005-07-17 10:32 memoryhole
* calculator.c: fixes to display and the random numbers, and also
initialization
2005-07-17 10:30 memoryhole
* MyTextField.h, VariableList.m: mpfr stuff added
2005-06-19 15:17 memoryhole
* English.lproj/MainMenu.nib/: info.nib, keyedobjects.nib: We're
ditching 10.2 support.
2005-06-19 15:14 memoryhole
* English.lproj/MainMenu.nib/objects.nib: BAM!
2005-06-10 13:39 memoryhole
* calculator.c, calculator.h, config.h.in, configure, configure.in,
conversion.c, conversion.h, definitions.h, files.c,
historyManager.c, historyManager.h, main.c, parser.y, scanner.l,
variables.c, variables.h, English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib,
Wcalc.xcodeproj/kyle.mode1, Wcalc.xcodeproj/kyle.pbxuser,
Wcalc.xcodeproj/project.pbxproj: Arbitrary Precision Compiles!
2005-06-10 10:46 memoryhole
* WcalcController.m: Fixed SourceForge bug 1218205
2005-06-10 01:41 memoryhole
* variables.c: Just formatting - the mpfr_t stuff will be along in
a bit
2005-06-10 01:01 memoryhole
* historyManager.c: Just formatting - the mpfr_t changes will be
along in a moment.
2004-02-13 04:18 memoryhole
* parser.y: Oops, typo.
2004-02-13 04:16 memoryhole
* calculator.c, calculator.h, parser.y, scanner.l: Added the exp
function (exp(x) is equivalent to e^x)
2004-01-05 17:12 memoryhole
* Makefile.in, config.h.in, configure: Time for a new version
2004-01-04 19:36 memoryhole
* scanner.l: On machines without HUGE_VALF, strtod returns HUGE_VAL
2004-01-04 19:34 memoryhole
* configure.in: Have I mentioned how irritating Solaris is?
2004-01-04 19:34 memoryhole
* Makefile.am: This is cleaner.
2003-12-29 17:43 memoryhole
* ChangeLog, NEWS, config.h.in, configure, configure.in,
definitions.h, wcalc.info, English.lproj/InfoPlist.strings,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: New version
2003-12-29 17:05 memoryhole
* simpleCalc.c: Minor clear problem fixed (clearing entry shouldn't
clear the operator). Also some debugging printouts.
2003-12-29 17:02 memoryhole
* WcalcController.m: Fixed up preference settings disabling when
SimpleCalc is enabled.
2003-12-29 03:24 memoryhole
* configure, configure.in: Fixed some more configure stuff
2003-12-29 03:21 memoryhole
* .cvsignore, Makefile.in, aclocal.m4, configure, configure.in:
Reran autoscan, and updated for newer tools.
2003-12-29 03:09 memoryhole
* English.lproj/MainMenu.nib/: classes.nib, info.nib, objects.nib:
All things updated.
2003-12-29 03:08 memoryhole
* MyTextField.h, MyTextField.m, WcalcController.h,
WcalcController.m, simpleCalc.c, simpleCalc.h: I think that
should do it for simpleCalc. I'll see about concocting some tests
to run it through tomorrow, then perhaps prepare for RELEASING A
NEW VERSION! WOOOHOOOO!!!
Ahem. Yes. This is all true.
2003-12-29 03:01 memoryhole
* calculator.c: Some while loop changes, bad variable substitution
fix, some abstraction (set_prettyanswer), and avoiding returning
-0.0. Also a bunch of debugging printf's that will get removed by
the preprocessor when not compiled for debugging.
2003-12-29 02:57 memoryhole
* variables.c: A thought.
2003-12-29 02:55 memoryhole
* scanner.l: Be slightly more flexible in number formatting. Accept
numbers in the form: "5." (without the quotes)
2003-12-29 02:27 memoryhole
* calculator.h: Made SimpleCalc a preference, and made Dprintf not
throw warnings when not debugging.
2003-12-25 16:41 memoryhole
* calculator.c: A fix for variable expansion
2003-12-25 16:28 memoryhole
* calculator.c: Slightly more informative (and standardized) math
errors.
2003-12-25 16:16 memoryhole
* parser.y: Minor correction
2003-12-25 15:35 memoryhole
* parser.y, scanner.l: Fixed a bunch of stuff. Decreased errors,
got rid of some dead weight, etc. Trying to do correct error
detection from strtod without warnings and it isn't working well.
2003-12-25 15:34 memoryhole
* calculator.h: Added Dprintf
2003-09-30 18:48 memoryhole
* files.c: Ran it through 'indent'
2003-09-30 18:05 memoryhole
* files.c: Fixed file loading.
2003-08-31 23:47 memoryhole
* calculator.c: Fixed bug
2003-08-31 23:36 memoryhole
* calculator.c: Code cleanup, started the parenthesis hack.... not
done yet.
2003-08-25 15:44 memoryhole
* calculator.c, parser.y: Fixed error stickyness.
2003-08-22 16:27 memoryhole
* main.c: Fixed piped input with active variables
2003-08-22 15:53 memoryhole
* calculator.c: Cleaned up find_recursion per Ingo van Lil's
suggestion.
2003-08-21 17:49 memoryhole
* wcalc.info: added the wcalc.rc to the doc files
2003-08-21 17:47 memoryhole
* NEWS, ReadMe.rtf, Wcalc.pmsp, configure, configure.in,
wcalc.info, wcalc.rc, wcalc.spec: New version.
2003-08-21 17:17 memoryhole
* WcalcController.h, WcalcController.m, config.h.in, configure,
definitions.h, English.lproj/InfoPlist.strings,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: Put the printInts
preference into the GUI, updated some things for the new version.
2003-08-21 13:16 memoryhole
* parser.y: Fixed extraneous output when there's errors.
2003-08-20 23:20 memoryhole
* parser.y: More good error messages.
2003-08-20 23:08 memoryhole
* parser.y: More sensible error messages when you try to assign new
values to constants.
2003-08-20 22:49 memoryhole
* calculator.c: Took the extra variable parsing out of recursion
checking.
2003-08-20 22:25 memoryhole
* calculator.c: Fixed a crasher on Linux (Ingo van Lil).
2003-08-20 11:56 memoryhole
* wcalc.info: Silly hard-wrapping.
2003-08-20 11:55 memoryhole
* wcalc.info: Updated for new version.
2003-08-20 10:40 memoryhole
* COPYRIGHT, Wcalc.pmsp, wcalc.info: New version stuff
2003-08-19 22:57 memoryhole
* config.h.in, parser.y: Compiling fixes.
2003-08-19 18:13 memoryhole
* ChangeLog, NEWS, ReadMe.rtf, WcalcController.m, configure,
configure.in, wcalc.info, wcalc.spec,
English.lproj/InfoPlist.strings,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: New version.
2003-08-19 17:28 memoryhole
* help.c: Updating for new version.
2003-08-19 17:15 memoryhole
* wcalc.1: Fixed lots of stuff
2003-08-19 14:29 memoryhole
* definitions.h: Documentation
2003-08-19 13:09 memoryhole
* parser.y: Small bit of labelling.
2003-08-19 13:06 memoryhole
* calculator.c: Fixed command/variable conflicts.
2003-08-19 12:43 memoryhole
* calculator.c: Fixed a memory leak in the recursion detection.
2003-08-18 22:51 memoryhole
* calculator.c: Fixed a repeatable crash on linux (flex is weird).
Fixed the recursion detection.
2003-08-18 22:38 memoryhole
* main.c: Missing a semicolon.
2003-08-17 21:33 memoryhole
* main.c: Small, one-time, memory leak, before the main loop gets
going.
2003-08-09 04:22 memoryhole
* wcalc.info: Wcalc is not part of fink. This is the current .info
file for creating the .deb file.
2003-08-09 04:13 memoryhole
* calculator.c, calculator.h, parser.y, scanner.l: Added irandom,
rand(), and irand(). rand(x) is a number between 0 and x.
irand(x) is an integer between 0 and x. irandom is a random
integer.
2003-08-09 04:11 memoryhole
* files.c, historyManager.c: Fixed some signed/unsigned comparison
warnings.
2003-07-12 02:28 memoryhole
* calculator.c, calculator.h, parser.y, scanner.l: Added bitwise
operators & and | and ~
2003-04-19 12:56 memoryhole
* calculator.c, parser.y: Fixed the flatten problems. Removed some
compile warnings on Solaris.
2003-04-01 16:12 memoryhole
* main.c: Forgot to add the integer pref to the config file. (CLI)
2003-04-01 16:09 memoryhole
* WcalcController.m, calculator.c, calculator.h, main.c, parser.y,
scanner.l: Made it so you can turn on and off the "always print
integers" thing. (CLI)
2003-03-25 18:01 memoryhole
* calculator.c, main.c, scanner.l: Fixed some Solaris warnings.
2003-03-24 14:14 memoryhole
* WcalcController.m, configure,
English.lproj/MainMenu.nib/objects.nib: Version problem fixed.
Added cot to the menus. Corrected the log2 thing.
2003-03-22 23:35 memoryhole
* help.h, historyManager.c, historyManager.h: Linux compiling
fixes.
2003-03-22 23:15 memoryhole
* ChangeLog, Makefile.am, Makefile.in, NEWS, ReadMe.rtf,
Wcalc.pmsp, acinclude.m4, aclocal.m4, calculator.c, config.h.in,
configure, configure.in, definitions.h, wcalc.1, wcalc.spec:
Updated everything for the new version (1.6)
2003-03-22 22:28 memoryhole
* historyManager.c, main.c, parser.y: Fixing silly compile errors.
2003-03-22 20:20 memoryhole
* help.c, scanner.l: Updated the scanner to be more flexible with
opening and saving filenames, and changed the help text to
reflect the new commands.
2003-03-22 20:19 memoryhole
* files.c: Made it save variables in save-files as well as
expressions. The variables are saved first, so they'll always be
available (because I don't want to have to remember exactly at
which point they were saved).
2003-03-22 17:37 memoryhole
* Makefile.am, Makefile.in, WcalcController.h, WcalcController.m,
calculator.c, files.c, files.h, main.c, parser.y, scanner.l,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/objects.nib: Got file support working.
Saves and loads history. As it loads, it evaluates, so variables
stored that way are saved as well. Handles comments appropriately
(read: ignores them) when loading.
2003-03-22 17:34 memoryhole
* HistoryList.m, historyManager.c, historyManager.h: Discovered
that history_length conflicts with readline. Fixed.
2003-03-22 14:41 memoryhole
* WcalcController.h, WcalcController.m: Added an open, save, and
saveAs command that do predictable things. For the moment, only
open really does anything. save and saveAs display dialogs, but
don't do anything with the selection (yet). also added a
displayErrno function for reporting file-related errors.
2003-03-22 14:10 memoryhole
* calculator.c: Fixed the flatten detection.
2003-03-22 14:09 memoryhole
* parser.y: Fixed the history limit display (CLI)
2003-03-22 14:08 memoryhole
* string_manip.c, string_manip.h: Added a function to remove
comments from strings.
2003-03-22 12:35 memoryhole
* ErrorController.m: Errors should beep.
2003-03-20 22:34 memoryhole
* WcalcController.m: Patch for decimal key from Thomas Steinhausen
2003-03-19 13:40 memoryhole
* English.lproj/MainMenu.nib/: classes.nib, info.nib, objects.nib:
A few nib fixes - the drawer is now reconnected to the main
window, things like that.
2003-03-19 13:35 memoryhole
* calculator.c: Added recursion detection.
2003-03-19 13:25 memoryhole
* WcalcController.h, WcalcController.m: Removed some strict_syntax
stuff. Fixed printout of the history limit. A few miscellaneous
changes.
2003-02-28 11:39 memoryhole
* .cvsignore: Always more stuff to ignore.
2003-02-28 11:39 memoryhole
* scanner.l: Improved precision specification. Added a rounding
indication command.
2003-02-28 11:38 memoryhole
* parser.y: Added a rounding indication command.
2003-02-28 11:37 memoryhole
* main.c: Made readline pay attention to the history limit
preference.
2003-02-28 11:36 memoryhole
* help.c: Updated the help screen.
2003-02-28 11:36 memoryhole
* definitions.h: Added a newline to the help screen.
2003-02-28 11:35 memoryhole
* calculator.c: Fixed the arc- trig functions in degree mode.
Added a command-line rounding indicator.
2003-02-24 14:37 memoryhole
* calculator.h, main.c, parser.y, scanner.l, wcalc.rc: Removed the
strict_syntax preference (it doesn't do anything anymore).
2003-02-24 14:36 memoryhole
* calculator.c: Fixed integer output to respect the engineering
printout preference. Made it use the builtin prefixes for octal
and hex.
2003-02-24 13:44 memoryhole
* calculator.c: I'm an idiot. Simplified the integer-printing
stuff.
2003-02-24 11:58 memoryhole
* main.c, wcalc.rc: Added support for persistent preferences
(~/.wcalcrc)
2003-02-24 11:58 memoryhole
* calculator.c: If it's just an integer, print the whole thing.
(fix the prefs stuff)
2003-02-21 17:42 memoryhole
* Makefile.in, aclocal.m4, calculator.c, calculator.h, config.h.in,
configure, configure.in, main.c, parser.y, scanner.l,
variables.c: Added support for a ~/.wcalcrc. Changed some
error-message wording here and there. Miscellaneous fixes.
2003-02-21 17:40 memoryhole
* definitions.h: Added cot acot coth acoth and reformatted a
little.
2003-02-20 03:26 memoryhole
* ChangeLog, NEWS: Keeping things up to date.
2003-02-19 11:38 memoryhole
* WcalcController.m, English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: Finally fixed the bizarre
window behavior. Replaced it with some bizarre window behavior
behind the scenes (see WcalcController.m), but I can hide that
from the user.
2003-02-19 11:35 memoryhole
* calculator.c, calculator.h: Added output_string... just for
convenience.
2003-02-19 11:32 memoryhole
* parser.y, scanner.l: Added some display functions.
2003-02-19 11:29 memoryhole
* definitions.h: Updated the list of supported symbols.
2003-02-19 11:27 memoryhole
* main.c: Moved the help functions.
2003-02-19 11:25 memoryhole
* Makefile.am, Makefile.in, help.c, help.h: Moved help to be
generic.
2003-02-06 15:48 memoryhole
* ReadMe.rtf, Wcalc.pmsp, definitions.h, main.c, wcalc.spec,
English.lproj/MainMenu.nib/objects.nib: Tiny version update.
2003-02-06 14:49 memoryhole
* main.c: Fixed the ^D bug when it's compiled without readline
support.
2003-02-06 14:43 memoryhole
* ChangeLog, calculator.c, calculator.h, conversion.c,
definitions.h, historyManager.c, string_manip.c, variables.c: Got
the GUI to build properly.
2003-01-29 12:02 memoryhole
* wcalc.spec: Uses more standard rpm macros for cross-distro
goodness.
2003-01-28 15:11 memoryhole
* Wcalc.pmsp: New version.
2003-01-28 14:40 memoryhole
* ReadMe.rtf: New version.
2003-01-27 22:56 memoryhole
* config.h.in, configure: Removed the AC_FUNC_REALLOC thing.
2003-01-27 22:52 memoryhole
* calculator.c, main.c, parser.y, scanner.l: Moved \dsep and \tsep
into the parser/scanner and fixed some configuration issues.
2003-01-27 22:43 memoryhole
* variables.c: Fixed some casting warnings when compiling on Linux.
2003-01-27 14:47 memoryhole
* .cvsignore: A few more things to ignore.
2003-01-27 14:31 memoryhole
* .cvsignore, wcalc.spec: Pulling together a clean release.
2003-01-27 13:53 memoryhole
* configure.in: Not very portable.
2003-01-27 13:51 memoryhole
* Makefile.am, Makefile.in, acinclude.m4, aclocal.m4: Added the man
page to automake.
2003-01-27 13:47 memoryhole
* configure: More autoconf/automake
2003-01-27 13:35 memoryhole
* AUTHORS, COPYING, ChangeLog, INSTALL, README, acinclude.m4,
aclocal.m4, depcomp, install-sh, missing, mkinstalldirs: More
pieces of autoconf/automake compatability.
2003-01-27 12:14 memoryhole
* Makefile, Makefile.am, calculator.c, calculator.h, config.h.in,
configure.in, conversion.c, definitions.h, historyManager.c,
libreadline.a, main.c, parser.y, scanner.l, string_manip.c,
variables.c, variables.h, English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: Modified it for
automake/autoconf
2003-01-25 15:19 memoryhole
* ChangeLog, NEWS: Moved ChangeLog to NEWS (since I discovered the
ChangeLog format is very strict)
2003-01-23 15:25 memoryhole
* WcalcController.m, historyManager.c: Finished (I think) history
length limiting.
2003-01-23 14:05 memoryhole
* WcalcController.h, WcalcController.m, calculator.c, calculator.h,
scanner.l, English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: Fixed (I think) the
internationalization stuff. Also began work on limiting the
history length.
2003-01-17 14:00 memoryhole
* historyManager.h, English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: Fixed a copyright notice.
Added clear buttons to the interface. Updated the project file
for use with newer versions of Project Builder.
2003-01-17 12:01 memoryhole
* historyManager.h, VariableList.h, historyManager.c,
HistoryList.h, HistoryList.m, VariableList.m: Added clearing
functions for the History and the list of variables.
2003-01-16 16:20 memoryhole
* WcalcController.m, calculator.c, calculator.h, main.c, scanner.l:
Attempted fix to thousands/decimal separator handling. Also got
rid of some sticky error messages (one error caused another error
later).
2003-01-16 13:08 memoryhole
* conversion.c: Fixed compiling problems.
2003-01-16 11:38 memoryhole
* conversion.c: Alphabetized the listings.
2002-12-18 12:32 memoryhole
* calculator.c, calculator.h, parser.y, scanner.l: Added the log2
command. (Should it be logtwo?)
2002-11-12 16:13 memoryhole
* Makefile: Added a prefix for installing.
2002-11-12 16:12 memoryhole
* Makefile, calculator.c, main.c, string_manip.c: Fixes to get it
to compile on Solaris.
2002-11-01 01:05 memoryhole
* parser.y: Fixed a crasher in error reporting.
2002-10-20 16:48 kyle
* Makefile, parser.y, wcalc.spec: New version, small bugfix.
2002-10-20 16:41 kyle
* ReadMe.rtf: New version
2002-10-20 16:41 kyle
* Makefile, Wcalc.pmsp: New version.
2002-10-20 16:40 kyle
* main.c: Fixed the defaults for the precision guard.
2002-10-20 15:56 kyle
* calculator.c, calculator.h, WcalcController.m: Implemented
toggling precision control
2002-10-20 15:55 kyle
* definitions.h, ChangeLog: New version
2002-10-20 15:55 kyle
* main.c: Documented \conservative
2002-10-20 15:54 kyle
* parser.y, scanner.l: Added the \conservative command, to toggle
conservative precision
2002-10-20 15:47 kyle
* main.c: Documented \list
2002-10-03 01:04 kyle
* parser.y, scanner.l: Lists variables in command-line mode.
2002-09-08 22:16 kyle
* scanner.l: Another way to tell it "hex"
2002-08-30 12:11 kyle
* Makefile: Alternate compiling for redhat
2002-08-11 23:43 kyle
* English.lproj/MainMenu.nib/: info.nib, objects.nib: [no log
message]
2002-08-11 23:43 kyle
* ChangeLog, Makefile, MyTextField.m, ReadMe.rtf, Wcalc.pmsp,
main.c, wcalc.1: Distribution
2002-08-11 22:24 kyle
* ReadMe.rtf, Wcalc.pmsp: Synching before release
2002-08-11 22:21 kyle
* definitions.h, English.lproj/InfoPlist.strings,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: Changed the version
numbers
2002-08-11 18:53 kyle
* MyTextField.m: Removed debugging printouts.
2002-08-11 18:53 kyle
* ConversionList.h, ConversionList.m, WcalcController.h,
WcalcController.m: Conversion functions are available in the GUI.
2002-08-11 18:52 kyle
* conversion.c, conversion.h: Conversion functions now work.
2002-08-11 13:38 kyle
* calculator.c: uber_converstion belongs in conversion.c
2002-08-02 02:13 kyle
* calculator.c, calculator.h, conversion.c, conversion.h,
scanner.l: Getting a start on the conversions stuff.
2002-07-31 12:34 kyle
* string_manip.h: Stupid gcc and it's end of line at end of file
nonsense.
2002-07-31 02:05 kyle
* scanner.l: Added shell-style comment support.
2002-07-31 01:56 kyle
* parser.y, scanner.l: Added expression/string support.
2002-07-31 01:55 kyle
* calculator.c: Fixed variable reassignment. Fixed exessive
printouts in command-line mode. Added expression support
(command-line mode).
2002-07-31 01:25 kyle
* calculator.c: Fixed a possible infinite loop.
2002-07-31 01:25 kyle
* scanner.l: Added support for comments.
2002-07-31 00:50 kyle
* main.c: Made the default to print prefixes (0x, etc) Added the
standard -h argument support. Changed to match variables.c
changes.
2002-07-31 00:47 kyle
* MyTextField.m: Removed spacebar actions (now it's normal again).
Removed errors from arrow keys.
2002-07-31 00:46 kyle
* VariableList.m: Handles expressions now.
2002-07-31 00:45 kyle
* string_manip.h, string_manip.c: Added justnumbers.
2002-07-31 00:44 kyle
* scanner.l: Changed the precision syntax a bit. Added bitshifts.
2002-07-31 00:41 kyle
* parser.y: Added bitshifts. Updated for changes in variables.c.
2002-07-31 00:37 kyle
* variables.h: Added expressions to the variable struct. Added the
answer struct. Synched the function definitions with variables.c
2002-07-31 00:35 kyle
* variables.c: Added the _full functions for pulling out
expressions too. Made the getvar functions return answer
structs, to provide more information (expressions, errors, etc.)
Made getvar_core exit early for zero-length keys. Added a putexp
function for inserting expressions. Renamed putvar to putval
(for consistency)
2002-07-31 00:25 kyle
* calculator.c: Added the flatten function to pre-parse variables
(and handle "active" variables recursively). Fixed the bitshift
functions.
2002-07-29 21:35 kyle
* calculator.c, calculator.h: Added left and right bitshifts.
2002-05-21 11:04 kyle
* WcalcController.h, WcalcController.m: Handles '=' and 'clear' at
input-time now (sorta). (also a small change getting ready for
dynamic variables... probably breaks it - will commit more later
that fix it again)
2002-05-21 10:51 kyle
* MyTextField.h, MyTextField.m: Handles '=' and 'clear' at
input-time now (sorta).
2002-04-12 16:53 kyle
* wcalc.spec: Updated the version
2002-04-12 16:45 kyle
* English.lproj/MainMenu.nib/: classes.nib, info.nib, objects.nib:
[no log message]
2002-04-12 16:44 kyle
* libreadline.a: New version of the library.
2002-04-12 16:29 kyle
* main.c: Setup reverse-lookup table for characters (we'll need it
when we print errors/numbers back out)
2002-04-12 16:26 kyle
* scanner.l: Using reverse-lookup table for error formatting.
2002-04-12 16:25 kyle
* calculator.c: Took out debugging printfs
2002-04-12 16:23 kyle
* WcalcController.m, calculator.h, variables.c: Setup
reverse-lookup table for characters (we'll need it when we print
errors/numbers back out)
2002-04-12 16:03 kyle
* WcalcController.h: Organized the code a bit.
2002-04-12 16:03 kyle
* WcalcController.m: No use_commas pref!
2002-04-12 16:02 kyle
* scanner.l: Scanner error hides internationalization futzing.
2002-04-12 15:59 kyle
* calculator.c: Stripped out the bogus internationalizing loop.
2002-04-12 15:58 kyle
* parser.y, calculator.h: No comma-command!
2002-04-12 15:57 kyle
* scanner.l: Back to American-only (may be some cruft left in
there... I'll get it later)
2002-04-12 15:56 kyle
* main.c: Specify separators on the fly in cmd-line.
2002-04-12 14:03 kyle
* WcalcController.m, calculator.c, calculator.h, variables.c:
Initial preprocessor support!
2002-04-10 01:03 kyle
* WcalcController.h, WcalcController.m, calculator.h, main.c,
parser.y, scanner.l: Added a preference to optionally forget
expressions that produce errors and don't return values.
2002-04-09 19:40 kyle
* WcalcController.m, theDelegate.m: Minor code cleanups
2002-03-28 00:58 kyle
* WcalcController.m: Now saves the base drawer state, too.
2002-03-28 00:49 kyle
* WcalcController.m: Now saves the history/variable state.
2002-03-07 19:21 kyle
* main.c: Uses new configuration structure.
2002-03-07 19:15 kyle
* ChangeLog: Logging changes
2002-03-07 19:10 kyle
* WcalcController.m, calculator.c, calculator.h, parser.y,
scanner.l: Added cube root (cbrt)
2002-03-07 18:41 kyle
* scanner.l: Added square function and fixed it up with the new
configuration stuff. Counting digits for sig-fig rounding
indication.
2002-03-07 18:40 kyle
* parser.y: Added square function and fixed it up with the new
configuration stuff.
2002-03-07 18:39 kyle
* WcalcController.m, calculator.c, calculator.h: Implemented the
Rounding indications (Simple and Significant Figure)
2002-03-07 18:38 kyle
* string_manip.c, string_manip.h: Added count_digits function.
2002-03-07 16:38 kyle
* WcalcController.h, WcalcController.m, calculator.c, calculator.h:
Redid preferences as a struct to make it easier to maintain.
2002-03-07 03:03 kyle
* WcalcController.m, calculator.c, calculator.h: Visual indication
of rounding. (next: sig figs)
2002-03-06 10:49 kyle
* scanner.l: Added Fortran-style exponent operator.
2002-03-04 21:00 kyle
* English.lproj/: MainMenu.nib/classes.nib, MainMenu.nib/info.nib,
MainMenu.nib/objects.nib, .cvsignore: [no log message]
2002-03-04 21:00 kyle
* English.lproj/InfoPlist.strings: version increment
2002-03-04 20:30 kyle
* ChangeLog: Updated changes per CVS log
2002-03-04 20:22 kyle
* definitions.h: Incremented the version.
2002-03-04 20:22 kyle
* WcalcController.h, WcalcController.m: Added a base drawer.
2002-03-03 14:57 kyle
* ReadMe.rtf, Wcalc.pmsp: Released a pre-release
2002-03-02 12:22 kyle
* English.lproj/MainMenu.nib/: classes.nib, info.nib, objects.nib:
stuff
2002-03-02 12:22 kyle
* Makefile: Switched to yacc and flex. Added the new string
manipulation files.
2002-03-02 00:49 kyle
* WcalcController.h: Removed a pointless pointer (heh).
2002-03-02 00:48 kyle
* WcalcController.m: Fixed the live preference display. Fixed the
menu's response the the drawer state. Made the preference panel
modeless.
2002-03-02 00:46 kyle
* scanner.l: Implemented the strict_syntax preference.
2002-03-01 22:21 kyle
* parser.y: [no log message]
2002-03-01 22:19 kyle
* parser.y: Removed no-longer reserved variables.
2002-03-01 22:09 kyle
* scanner.l: Stripped the wrong char from numbers with commas.
2002-03-01 22:09 kyle
* parser.y: Fixed errors on essentially blank lines.
2002-03-01 22:09 kyle
* WcalcController.h, WcalcController.m: Changes the period button
to a comma button depending on the state. Displays the current
comma preference, too.
2002-03-01 21:22 kyle
* scanner.l: Moved commands from main.c. Added some acceptable,
equivalent symbols. Fixed (I think) comma support. Added a
garbage collector for goofily-formatted numbers.
2002-03-01 21:18 kyle
* parser.y: Added smarts for piped files. Moved commands here from
main.c.
2002-03-01 21:16 kyle
* WcalcController.m: Added a preference for comma parsing
pickiness. Fixed a continuous expression bug (new division
symbol).
2002-03-01 21:14 kyle
* WcalcController.h, calculator.c, calculator.h: Added a preference
for comma parsing pickiness.
2002-03-01 21:14 kyle
* main.c: Moved commands to the parser (so they'll work with piped
files).
2002-03-01 21:12 kyle
* PrefsController.h, PrefsController.m: long since outdated
2002-03-01 17:58 kyle
* calculator.h, main.c, parser.y, scanner.l, string_manip.c,
string_manip.h: Continued fixing international comma support.
Started migrating commands from main.c to the parser/scanner.
2002-03-01 01:42 kyle
* ReadMe.rtf, libreadline.a, English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: stuff
2002-03-01 01:30 kyle
* main.c: More CLI error printing (were previously ignoring
errorstring.
2002-03-01 01:29 kyle
* scanner.l: Added sanity/error checking to alternate bases,
started complete support for commas/periods in decimal numbers
2002-03-01 01:28 kyle
* parser.y: Fixed potential crasher freeing static memory.
2002-02-28 17:07 kyle
* PrefsController.m: Display use_commas preference.
2002-02-28 16:25 kyle
* calculator.c: fixed crasher in comma-output printing
2002-02-28 02:30 kyle
* ChangeLog: logging changes
2002-02-28 02:29 kyle
* calculator.c: Fixed binary output.
2002-02-28 02:05 kyle
* WcalcController.m, calculator.c, calculator.h, main.c, parser.y,
scanner.l: Added sqrt, ceil, floor functions
2002-02-28 01:52 kyle
* main.c: Added an interactive CLI "strict variable parsing"
toggle.
2002-02-27 16:06 kyle
* scanner.l: Fixed the comma parsing.
2002-02-27 14:55 kyle
* WcalcController.m: Made preference panel and keyboard panel
placement more commonsensical.
2002-02-27 12:05 kyle
* ChangeLog, ReadMe.rtf, Wcalc.pmsp, WcalcController.m,
calculator.c, definitions.h, parser.y,
English.lproj/InfoPlist.strings: Excessive error reporting fixed
(good god)
2002-02-27 11:35 kyle
* calculator.c: clamped too hard! fixed erroneous clamp messages
2002-02-27 02:49 kyle
* .cvsignore, Wcalc.pmsp: New stuff to ignore, new version
2002-02-27 02:45 kyle
* wcalc.spec: Version increase
2002-02-27 02:17 kyle
* main.c: fixed a typo
2002-02-27 02:11 kyle
* ReadMe.rtf: Just describing the new version (1.4.3)
2002-02-26 18:43 kyle
* English.lproj/MainMenu.nib/: classes.nib, info.nib, objects.nib:
Changed the preferences layout, added comma option
2002-02-26 18:43 kyle
* English.lproj/InfoPlist.strings: Version changes
2002-02-26 18:42 kyle
* definitions.h: Version increment
2002-02-26 18:41 kyle
* ChangeLog: logging changes
2002-02-26 18:40 kyle
* main.c: Update the help
2002-02-26 18:37 kyle
* libreadline.a: Ran "ranlib" on it. (What does that do? it was
complaining about it)
2002-02-26 18:35 kyle
* Makefile: made it easier to manage debugging and distribution
2002-02-26 18:32 kyle
* WcalcController.h, WcalcController.m, calculator.c, calculator.h,
main.c: Added the preference to output with a comma instead of a
period.
2002-02-26 18:10 kyle
* calculator.c, main.c, parser.y: Fixed a rounding error (all
negative decimals were removed!). (BOTH) Added error reporting to
the command-line. (CLI) Added a radians toggle (CLI)
2002-02-26 17:18 kyle
* ChangeLog: logging changes
2002-02-24 15:41 kyle
* Wcalc.pmsp: Goes with the project
2002-02-24 12:31 kyle
* Makefile, WcalcController.h, WcalcController.m, historyManager.c,
historyManager.h, English.lproj/.cvsignore,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: Fixed a bug or two, made
small speed improvements on preference changes. Made history
redisplay configurable.
2002-02-24 10:53 kyle
* scanner.l: Fixed the parsing (0.9 is now 0.9 and not octal 0
times .9)
2002-02-24 00:22 kyle
* ChangeLog: added a dividing line
2002-02-23 23:57 kyle
* calculator.c: to make gcc on linux be quiet, i added a newline at
the end of the file
2002-02-23 23:46 kyle
* wcalc.spec: version increase
2002-02-23 23:44 kyle
* Makefile: strips automatically now
2002-02-23 23:28 kyle
* English.lproj/InfoPlist.strings: stuff
2002-02-23 23:28 kyle
* .cvsignore, README.txt, ReadMe.rtf: getting ready for release of
1.4.2, and tidying up
2002-02-23 23:20 kyle
* definitions.h: version change
2002-02-23 16:13 kyle
* .gdb_history, definitions.h, theDelegate.h, theDelegate.m:
Rectifying the repository
2002-02-23 16:10 kyle
* Wred.png: Stuff that got left out along the way.
2002-02-23 16:04 kyle
* libreadline.a: For static compiling
2002-02-23 15:59 kyle
* WcalcController.m: Fixed the editing-after-pressing-a-button
error (I'm an idiot) (GUI) Fixed the window-position saving
routines (GUI) The problem with window sizing has gotten WORSE
(OSX's fault?) (GUI)
2002-02-23 15:57 kyle
* English.lproj/MainMenu.nib/: classes.nib, info.nib, objects.nib:
stuff
2002-02-23 15:57 kyle
* wcalc.spec: Version changes
2002-02-23 15:56 kyle
* scanner.l: Accepts commas as period replacements
2002-02-23 15:56 kyle
* WcalcController.h: Merged the pref panel to be controlled more
centrally (splitting it was just a pain in the butt)
2002-02-23 15:54 kyle
* ChangeLog: Logging changes
2002-02-23 15:51 kyle
* Makefile: Figured out this static thing (I think)
2002-02-23 15:47 kyle
* Makefile, PrefsController.h, PrefsController.m,
WcalcController.h, WcalcController.m, calculator.c, calculator.h,
historyManager.c, main.c, parser.y, scanner.l, wcalc.spec: Added
output commands to the GUI too (GUI) Fixed debug output in the
CLI (CLI) Tried to compile statically (BOTH) Supports real
division symbol (BOTH) Random is now truly random, if the system
supports it - relies on /dev/random (BOTH)
2002-02-23 15:46 kyle
* ChangeLog: Logging changes
2002-02-23 15:45 kyle
* English.lproj/: InfoPlist.strings, MainMenu.nib/classes.nib,
MainMenu.nib/info.nib, MainMenu.nib/objects.nib: stuff
2002-02-23 15:45 kyle
* HistoryList.m, PrefsController.h, PrefsController.m,
VariableList.m, WcalcController.m, calculator.c, calculator.h,
historyManager.c, historyManager.h, main.c, parser.y, scanner.l:
Saves the history (max of 1000 lines - should this be
configurable?) (CLI) New commands in the CLI - (most) old ones
will disappear next version (CLI) Supports hex (0x), octal (0),
and binary (0b) input and output (BOTH) Cleared out some
pointless error messages (CLI) Improved factorials (BOTH)
Miscellaneous Bugfixes (BOTH) Tried to fix a window drifting
problem (GUI) Added a "Result" column to the history (GUI)
2002-02-23 15:43 kyle
* wcalc.spec: Version change
2002-02-23 15:42 kyle
* ChangeLog: Logging changes
2002-02-23 15:41 kyle
* .DS_Store: Doesn't belong in repository
2002-02-23 15:40 kyle
* English.lproj/: InfoPlist.strings, MainMenu.nib/classes.nib,
MainMenu.nib/info.nib, MainMenu.nib/objects.nib: stuff
2002-02-23 15:40 kyle
* WcalcController.h, WcalcController.m, calculator.c, calculator.h,
main.m, parser.y, scanner.l, wcalc.spec: More improvements to the
parser (BOTH) Added LOTS of constants (BOTH) Added menus for
functions and symbols (GUI) Added absolute value abs() (BOTH)
Added a bunch of physical constants to the symbols (BOTH) Saves
toggled status (GUI) Added the ability to toggle the presence of
the keypad (GUI)
2002-02-23 15:38 kyle
* ChangeLog: Logging changes
2002-02-23 15:35 kyle
* WcalcController.h, WcalcController.m, calculator.c, calculator.h,
main.c: Began work on continuous calculations
2002-02-23 15:34 kyle
* wcalc.spec, English.lproj/InfoPlist.strings: Version change
2002-02-23 15:33 kyle
* parser.y: Fixed the grammar again (or tried to)
2002-02-23 15:32 kyle
* ChangeLog: Logging changes
2002-02-23 15:31 kyle
* English.lproj/MainMenu.nib/: classes.nib, info.nib, objects.nib:
Added the version number to the about box
2002-02-23 15:30 kyle
* English.lproj/InfoPlist.strings: Version numbers
2002-02-23 15:30 kyle
* calculator.h, parser.y: Fixed a typo in the grammar
2002-02-23 15:29 kyle
* variables.c: Added newline at the end of the file to make gcc on
linux shut up
2002-02-23 15:29 kyle
* variables.h, wcalc.spec: Added newlines at the end of the file to
make gcc on linux shut up
2002-02-23 15:28 kyle
* AboutBoxController.h, AboutBoxController.m: Added the version
number to the about box
2002-02-23 15:27 kyle
* main.c: Version change
2002-02-23 15:26 kyle
* ChangeLog: Logging changes
2002-02-23 15:19 kyle
* English.lproj/MainMenu.nib/: classes.nib, info.nib, objects.nib:
GUI changes
2002-02-23 15:19 kyle
* English.lproj/InfoPlist.strings: Version number change
2002-02-23 15:18 kyle
* HistoryList.m, PrefsController.h, PrefsController.m,
WcalcController.h, WcalcController.m, calculator.c, calculator.h,
historyManager.c, main.c, main.m, parser.y, scanner.l,
variables.c, variables.h, wcalc.spec: Fixed the grammar (or broke
it) (BOTH) Added checks to catch values with too much precision
(BOTH) Precision slider won't go too far anymore (GUI) Remembers
the window position (GUI) Quits when the window is closed (GUI)
Saves Preferences! (GUI) Expanded the vocabulary
(asin,arcsin,sin^-1) (BOTH) Added a preference to toggle using
Radians (GUI) Made the history font smaller (GUI) Fixed a crasher
in the history list. (GUI) Can now do floating point mods (BOTH)
"random" means a random value (BOTH) added round() to round a
value to the nearest whole number (BOTH)
2002-02-23 15:15 kyle
* ChangeLog: Logging changes
2002-02-23 15:03 kyle
* .DS_Store, .gdb_history, AboutBoxController.h,
AboutBoxController.m, ChangeLog, ErrorController.h,
ErrorController.m, HistoryList.h, HistoryList.m, Makefile,
OldVariableList.h, OldVariableList.m, PrefsController.h,
PrefsController.m, README.txt, TheW.icns, VariableList.h,
VariableList.m, WcalcController.h, WcalcController.m,
calculator.c, calculator.h, historyManager.c, historyManager.h,
main.c, main.m, parser.y, scanner.l, variables.c, variables.h,
w.png, wcalc.1, wcalc.spec, English.lproj/InfoPlist.strings,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: Initial Import
2002-02-23 15:03 kyle
* .DS_Store, .gdb_history, AboutBoxController.h,
AboutBoxController.m, ChangeLog, ErrorController.h,
ErrorController.m, HistoryList.h, HistoryList.m, Makefile,
OldVariableList.h, OldVariableList.m, PrefsController.h,
PrefsController.m, README.txt, TheW.icns, VariableList.h,
VariableList.m, WcalcController.h, WcalcController.m,
calculator.c, calculator.h, historyManager.c, historyManager.h,
main.c, main.m, parser.y, scanner.l, variables.c, variables.h,
w.png, wcalc.1, wcalc.spec, English.lproj/InfoPlist.strings,
English.lproj/MainMenu.nib/classes.nib,
English.lproj/MainMenu.nib/info.nib,
English.lproj/MainMenu.nib/objects.nib: Initial revision
|