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
|
/* gcalctool NEWS.
*
* Copyright (c) 1987-2006 Sun Microsystems, Inc.
* All Rights Reserved.
*/
Overview of changes in gcalctool 5.8.25
* Fixed bug #354730 - crash in Calculator: running 3x10^38 using bi..
* Fixed bug 359291 - crash when localized decimal point is greater
than 1 char. Removed the bogus assert.
* Fixed bug #358337 - gcalctool no longer crashes in the Oriya locale
due to sloppy string handling.
----
Overview of changes in gcalctool 5.8.24
* Released a gcalctool tarball for GNOME 2.16.0 (Final).
----
Overview of changes in gcalctool 5.8.23
* Released a gcalctool tarball for GNOME 2.16.0 (RC1).
----
Overview of changes in gcalctool 5.8.22
* Removed several chunks of code that were surronded by #if 0/#endif.
----
Overview of changes in gcalctool 5.8.21
* Fixed bug #350341. gcalctool now builds again with gcc v2.95.
----
Overview of changes in gcalctool 5.8.20
* Released a gcalctool tarball for GNOME 2.16.0 (beta2).
----
Overview of changes in gcalctool 5.8.19
* More work on bug #347700. Added another "Note to translators"
comment for the Abs button labels.
* Fixed bug #348452. Removed line for help/sv/Makefile.in
* Released a gcalctool tarball for GNOME 2.16.0 (beta1).
----
Overview of changes in gcalctool 5.8.18
* Work on bug #347700. Added a "Note to translators" comment for the
Bksp and Clr button labels.
----
Overview of changes in gcalctool 5.8.17
* Released a gcalctool tarball for GNOME 2.15.4.
----
Overview of changes in gcalctool 5.8.16
* Released a gcalctool tarball for GNOME 2.15.3.
----
Overview of changes in gcalctool 5.8.15
* Fixed bug #343150. Gcalctool no longer crashes when switching to
scientific mode.
----
Overview of changes in gcalctool 5.8.14
* Adjusted configure.in so that gcalctool now requires intltool v0.35.0.
----
Overview of changes in gcalctool 5.8.13
* Released a gcalctool tarball for GNOME 2.15.2.
----
Overview of changes in gcalctool 5.8.12
* Fixup compiler warnings from inclusion of last patch.
----
Overview of changes in gcalctool 5.8.11
* Fixed bug #163538 (http://bugzilla.gnome.org/show_bug.cgi?id=163538)
Backspace results in mal-formed expression.
* = button is now also a one step undo. (This feature was temporary
disabled by the previous redo/undo patch.)
* Removed gotos from do_expression function. (This change might add
unstability as this is a major change to the expression mode state
machine.)
* Functions (such as sin, cos, tan..) can use previously calculated value.
----
Overview of changes in gcalctool 5.8.10
* First cut at an Undo/Redo implementation for use with the arithmetic
operator precedence mode.
----
Overview of changes in gcalctool 5.8.9
* Respun the gcalctool tarball for GNOME 2.15.1 as the po/*.po files
were missing.
Overview of changes in gcalctool 5.8.8
* Removed .../po/Makefile.in.in. Shouldn't have been in CVS.
* Released a gcalctool tarball for GNOME 2.15.1.
----
Overview of changes in gcalctool 5.8.7
* Fixed bug #337897. Changes to use po/LINGUAS file.
----
Overview of changes in gcalctool 5.8.6
* Fixed bug #338220. The 'Show trailing zeroes' option in the View menu
should now be correctly set [in]sensitive depending upon which mode
it's in.
----
Overview of changes in gcalctool 5.8.5
* Fixed bug #332023. The bitwise operators now work in arithmetic operator
precedence mode, when you use them with the result of a previous operation.
----
Overview of changes in gcalctool 5.8.4
* Fixed bug #327729. The fields in the memory register window were not
correctly aligned in some themes.
----
Overview of changes in gcalctool 5.8.3
* Fixed bug #330867. Added License info to the Gcalctool About dialog.
----
Overview of changes in gcalctool 5.8.2
* Fixed bug #335095. Gcalctool no longer displays the current mode in
the title bar when in Basic mode (due to lack of space).
----
Overview of changes in gcalctool 5.8.1
* Fixed bug #335236. Gcalctool schemas files should be installed if
built with "--without-gnome".
----
Overview of changes in gcalctool 5.8.0
* Adjustments to the AOP code so that e to the power of x gives the
correct answer at high precision.
----
Overview of changes in gcalctool 5.7.32
* Released a gcalctool tarball for GNOME 2.14.0 (Final).
----
Overview of changes in gcalctool 5.7.31
* Fix for bug #333078. cvs fails to build due to bg translation of help.
* Inclusion of a translation of gcalctool help for the bg locale.
----
Overview of changes in gcalctool 5.7.30
* Released a gcalctool tarball for GNOME 2.14.0 (RC).
----
Overview of changes in gcalctool 5.7.29
* Released a gcalctool tarball for GNOME 2.14.0 (beta2).
----
Overview of changes in gcalctool 5.7.28
* Released a gcalctool tarball for GNOME 2.14.0 (beta1).
----
Overview of changes in gcalctool 5.7.27
* Refixed bug #323150. The recent changes to the square root and
subtraction button labels broke the token parser for arithmetic
operator precedence.
----
Overview of changes in gcalctool 5.7.26
* Fixed bug #327124. Changes to fix bug #326344 had the side-effect of
causing the CE button to no longer work correctly.
----
Overview of changes in gcalctool 5.7.25
* Fixed bug #327214. The results from performing trig functions were not
being passed on to future calculations correctly (in non-arithmetic
operator precedence mode).
----
Overview of changes in gcalctool 5.7.24
* Gcalctool now uses U+00F7 (DIVISION SIGN) instead of U+2215 (DIVISION SLASH)
for label on division button.
----
Overview of changes in gcalctool 5.7.23
* Released a gcalctool tarball for GNOME 2.13.5.
----
Overview of changes in gcalctool 5.7.22
* Fixed bug #323149. Gcalctool now uses the Unicode symbols for division,
multiplication, plus/minus, minus and square root.
----
Overview of changes in gcalctool 5.7.21
* Fixed bug #326344. The bit display of large numbers (in non-arithmetic
operator precedence mode with the scientific view) now hopefully works
correctly.
----
Overview of changes in gcalctool 5.7.20
* Fixed bug #142824. Gcalctool no longer ignores locale specific numeric
point in arithmetic operator precedence mode.
* Adjusted all the copyright messages to include 2006.
----
Overview of changes in gcalctool 5.7.19
* Fixed bug #317378 (http://bugzilla.gnome.org/show_bug.cgi?id=317378)
Gcalctool no longer crashes when you double click the 0 in the display area.
----
Overview of changes in gcalctool 5.7.18
* Final fix for bug #153854. Now handles the case where the first thing
the user does is change mode (Basic, Financial, Advanced, Scientific)
in AOP mode.
* Released a gcalctool tarball for GNOME 2.13.4.
----
Overview of changes in gcalctool 5.7.17
* Fixed bug #323150. Sqrt (and other similar operations) no longer fail
in non-English locales
----
Overview of changes in gcalctool 5.7.16
* Fixed bug #324001. Primary Selection (middle mouse button) is now working.
----
Overview of changes in gcalctool 5.7.15
* Released a gcalctool tarball for GNOME 2.13.3.
----
Overview of changes in gcalctool 5.7.14
* More work on bug #153854. Similar change to that made on 15th November
2005, this time for arithmetic operator precedence mode.
----
Overview of changes in gcalctool 5.7.13
* Slight fixup for bug #157961. The toggling of the first bit in the
bit panel wasn't working correctly.
----
Overview of changes in gcalctool 5.7.12
* More work on bug #153854
If the user has completed a calculation and we are going to a
new mode that is "compatible" with this one, then just change
modes. Otherwise display a dialog warning the user that the
current calculation will be cleared.
Incompatible modes are:
Scientific -> Basic
Scientific -> Advanced
Scientific -> Financial
(unless we are in Scientific mode with Decimal numeric base and Fixed).
These changes work nicely in non-arithmetic operator precedence mode.
----
Overview of changes in gcalctool 5.7.11
* Released a gcalctool tarball for GNOME 2.13.2.
----
Overview of changes in gcalctool 5.7.10
* Fixed bug #316755. Gcalctool no longer has "Gdk-CRITICAL **:
gdk_window_invalidate_rect: assertion `window != NULL' failed"
warnings at startup.
----
Overview of changes in gcalctool 5.7.9
* Fixed bug #319934. The percent operator was broken in non-arithmetic
operator precedence mode.
----
Overview of changes in gcalctool 5.7.8
* Fixed bug #317378 (http://bugzilla.gnome.org/show_bug.cgi?id=317378)
Exponential notation now works correctly in arithmetic operator
precedence mode.
----
Overview of changes in gcalctool 5.7.7
* Slight adjustment to the bit panel. It's now centralized.
----
Overview of changes in gcalctool 5.7.6
* Adjusted the mpcmim() routine in mp.c. The fix for Sun bug #4006391
needed to also preserve v->toclear and v->pointed.
* Work on enhancement request #157961. Started to implement the bit
panel for non-arithmetic precedence mode. It's automatically displayed
when in Scientific mode.
----
Overview of changes in gcalctool 5.7.5
* Implemented enhancement request #148104 for arithmetic precedence mode.
The modulo operation. See entry below for more details.
----
Overview of changes in gcalctool 5.7.4
* Fixed bug #316382. The "useless" cursor is no longer displayed in
the calculator display area.
----
Overview of changes in gcalctool 5.7.3
* Implemented enhancement request #148104 for non-arithmetic precedence
mode. Added in a modulo operation. This is available in Scientic Mode.
A Mod B return the remainder when you divide A by B. A and B must be
integers. Keyboard shortcut for this operation is "M".
----
Overview of changes in gcalctool 5.7.2
* Fixed bug #162453. The memory register dialog now uses GtkEntry widgets
to display the register values. Gnopernicus can now correctly speak the
contents of each memory register. There is also a close button to easily
dismiss this dialog.
----
Overview of changes in gcalctool 5.7.1
* Fixed bug #314540. The memory register window is now a dialog rather
than a top-level window.
----
Overview of changes in gcalctool 5.7.0
* Fix to prevent invalid numeric entry in arithmetic operator precedence
mode, depending upon the current base.
----
Overview of changes in gcalctool 5.6.31
* A number of the bison- and flex-related make rules in
.../gcalctool/Makefile.am were broken when builddir != srcdir.
----
Overview of changes in gcalctool 5.6.30
* Fixed bug #314540. The libparser.a library needs ranlib run on it
for Mac OS X.
----
Overview of changes in gcalctool 5.6.29
* Fixed bug #314375. Replaced usage of malloc.h with stdlib.h in
syntax_translation.c
----
Overview of changes in gcalctool 5.6.28
* Generated release for GNOME 2.12 (RC)
* Changed type of argument in paren_disp from char to int for 64bit.
----
Overview of changes in gcalctool 5.6.27
* Fixed bug #313255. The definitions for BUT_<n>_BAS in gtk.c were incorrect.
Overview of changes in gcalctool 5.6.26
* Generated release for GNOME 2.11.91 (beta2).
----
Overview of changes in gcalctool 5.6.25
* Fixed bug #311306. If the user was in View->Scientific with base Bin,
Oct or Hex and then went to View->Basic, then returned to View->Scientific,
some of the numeric keys were incorrectly greyed out.
----
Overview of changes in gcalctool 5.6.24
* Fixed bug #310849. Gcalctool no longer crashes when pressing the "B"
button (or typing Shift-B).
----
Overview of changes in gcalctool 5.6.23
* Fixed bug #310791. Memory register window view logic was screwed.
----
Overview of changes in gcalctool 5.6.22
* Fixed bug #310441. Adjusted code to compile with gcc 2.95.2.
----
Overview of changes in gcalctool 5.6.21
* Fixed bug #153854. When the user changes modes, a warning dialog is
displayed to let them know that their current display will be cleared
and the base reset to decimal. The user has the option of checking a
toggle box on the dialog, that will prevent this warning from being
displayed again.
----
Overview of changes in gcalctool 5.6.20
* Fixed bug #309294. Adjustments to allow gcalctool to successfully build
on Solaris with pkgconfig >= 0.17.1.
----
Overview of changes in gcalctool 5.6.19
* Fixed bug #309182. In non-arithmetic precdence mode, gcalctool can now
correctly change the sign of the exponent on scientific numbers again.
----
Overview of changes in gcalctool 5.6.18
* Fixed bug #308408. gcalctool can now correctly convert the hexadecimal
numbers "A-F" to other bases in "use arithmetic operator precedence mode".
----
Overview of changes in gcalctool 5.6.17
* Fixed bug #305619. Calculations with stored register values in arithmetic
operator precedence mode, now work correctly.
----
Overview of changes in gcalctool 5.6.16
* Fixed bug #305034. In "Use Arithmetic Precedence" mode, when switching
the format (e.g. from ENG to FIX), the displayed value switches to zero
(in the corresponding format, so e.g. 0.0 or 0e+0, ...).
----
Overview of changes in gcalctool 5.6.15
* Fixed bug #305467. gcalctool no longer crashes under the following
scenerio:
- type "f" to bring up the user function menu.
- dismiss the menu by clicking elsewhere with the mouse.
- type another character which isn't in the range "0" to "9".
----
Overview of changes in gcalctool 5.6.14
* Did a gcalctool tarball release.
----
Overview of changes in gcalctool 5.6.13
* Fixed bug #304056. Adjusted the keyboard shortcuts for the Xor and x^y
operations. New values are:
Xor - 'x'
x^y - '^'
----
Overview of changes in gcalctool 5.6.12
* Fixed bug #302555. Various gcalctool variables have now been const'ified.
----
Overview of changes in gcalctool 5.6.11
* Fixed bug #300957. Replaced the underscore character in
"translator_credits" with a hyphen, to prevent some
translation tools from being confused.
----
Overview of changes in gcalctool 5.6.10
* More work on bug #172704.
- Adjusted the code to not try to display a menu when the user
entered a left parentheses (another do_pending() type of operation).
- Toggling the "Show Trailing Zeroes" operation via keyboard
shortcuts, needed to clear the v-.pending flag.
----
Overview of changes in gcalctool 5.6.9
* Fixed up some problems reported by lint.
----
Overview of changes in gcalctool 5.6.8
* Fixed bugs #172704 and #172869. When the user now uses the keyboard shortcut
for any of the gcalctool buttons that have a menu associated with them, that
menu is now displayed. The user can use the arrow keys to select a menu item
or the menu items shortcut.
----
Overview of changes in gcalctool 5.6.7
* Fixed bug #171393. Allow stock labels to show through.
----
Overview of changes in gcalctool 5.6.6
* Refixed bug #158280. The Help->Contents menu item no longer appears if
gcalctool is built Gtk-only.
----
Overview of changes in gcalctool 5.6.5
* Fixed bug #172798. gtk_set_locale was already being run by gtk_init()
and the gtk about popup didn't have the gcalctool icon.
----
Overview of changes in gcalctool 5.6.4
* Fixed Sun internal CR #6214176. If gcalctool is being driven by gok,
the on-screen keyboard assistive technology, it's possible that the
event returned by gtk_get_current_event() is NULL. If this is the
case, we need to fudge the popping up on the menu associated with
this menu button.
----
Overview of changes in gcalctool 5.6.3
* Fixed bug #158280. You can now build gcalctool without the GNOME
libraries by specifying "--disable-gnome" on the configure command
line.
----
Overview of changes in gcalctool 5.6.2
* Fixed bug #167479. gcalctool with set the View->Memory Registers menu
item inactive if the calculator is in Basic mode.
----
Overview of changes in gcalctool 5.6.1
* Fixed bug #168694. gcalctool now saves/restores the ten memory
register values as gconf resources.
* Removed the redundant process_str() routine in graphics.c
----
Overview of changes in gcalctool 5.6.0
* Fixed bug #169196. gcalctool now uses use g_get_home_dir().
* Added in a better implementation of the trig_filter() routine in
functions.c
----
Overview of changes in gcalctool 5.5.41
* Version for GNOME 2.10.0 (final) call for tarballs.
----
Overview of changes in gcalctool 5.5.40
* Version for GNOME 2.10.0 (rc1) call for tarballs.
----
Overview of changes in gcalctool 5.5.39
* Partial fix for bug 168385. "F+F=" wasn't working in arithmetic operator
precedence mode.
----
Overview of changes in gcalctool 5.5.38
* Changes to make the trigonometric code work with hyp and inv properly.
----
Overview of changes in gcalctool 5.5.37
* Left and Right shift operations weren't working correctly. Menu
name comparison in mb_proc() in gtk.c was incorrect.
----
Overview of changes in gcalctool 5.5.36
* The fix for bug #162998 was incorrect when in Arithmetic Precedence mode.
* Exch functionality was incorrect in Arithmetic Precedence mode.
----
Overview of changes in gcalctool 5.5.35
* Fixed bug 167124. One of the entries in the words[] array in
syntax_translation.c was accidentally commented out.
----
Overview of changes in gcalctool 5.5.34
* Fixed bug 166634. Call to create the About box was missing a
NULL terminator.
----
Overview of changes in gcalctool 5.5.33
* Adjusted all copyright messages to be 2005.
* Version for GNOME 2.10.0 (beta2) call for tarballs.
----
Overview of changes in gcalctool 5.5.32
* Fixed bug #165522. Made the status bar non-resizable.
----
Overview of changes in gcalctool 5.5.31
* Various code cleanups. It moves some declarations of static functions
to the corresponding .c files. It also cuts down the number of
included files, moving some includes to where they are needed from
calctool.h.
----
Overview of changes in gcalctool 5.5.30
* Adjusted the About dialog to use the latest GtkAbout widget.
----
Overview of changes in gcalctool 5.5.29
* Version for GNOME 2.10.0 (beta1) call for tarballs.
----
Overview of changes in gcalctool 5.5.28
* Fixed bug #162998. The "menu" buttons in gcalctool now responds
to the "clicked" event rather than the "button-press-event" to
allow gok, the on-screen keyboard to function properly.
* Fixed bug #159957. Input number in FIX mode now make mimimal changes
to (i.e append a single character) the display rather than completely
delete and insert it. The is helpful to assistive technologies like
gnopernicus.
----
Overview of changes in gcalctool 5.5.27
* Fixed bug #164184. Adjusted location of comments in syntax_translation.c
so that the L10N message translation software isn't confused.
----
Overview of changes in gcalctool 5.5.26
* Fixed bug #163468. Pressing "(<Del>)" would cause gcalctool to crash.
----
Overview of changes in gcalctool 5.5.25
* Version for GNOME 2.9.4 call for tarballs.
----
Overview of changes in gcalctool 5.5.24
* Couldn't use the "#" key to select constants as this symbol was
a lower-case symbol on his keyboard.
* Powers that were a multiple of 30 (10 as well as 3) would not
display correctly, having a 4 digit significand. Further testing
showed that without the fix the following powers had a 4 digit
significand: 27,30, 57,60, 90, 96 (and every 3 from here on).
----
Overview of changes in gcalctool 5.5.23
* Fixed bug #161976. configure.in now checks to make sure that atk >= 1.5
----
Overview of changes in gcalctool 5.5.22
* Fixed bug #155101. Made the gcalctool window resizable.
----
Overview of changes in gcalctool 5.5.21
* Version for GNOME 2.9.3 call for tarballs.
----
Overview of changes in gcalctool 5.5.20
* Fixed bug #160929. Removed the "Mode" word from each of the different
mode menu items in the gcalctool View menu.
----
Overview of changes in gcalctool 5.5.19
* Fixed bug #157701. gcalctool can now use real multiplication and division
symbols instead of "*" and "/".
----
Overview of changes in gcalctool 5.5.18
* Fixed bug #160088. Adjusted the titlebar text so that it doesn't include
the word "Mode" which was getting chopped when the calculator was in
Basic mode.
----
Overview of changes in gcalctool 5.5.17
* Fixed bug #157962. Added in a set of three colors for gcalctool that
will work with the default theme. To use them, the "gcalctoolrc" file
supplied with the source distribution needs to be moved to ~/.gcalctoolrc
----
Overview of changes in gcalctool 5.5.16
* Generated gcalctool tarball for the GNOME 2.9.2 release.
----
Overview of changes in gcalctool 5.5.15
* Adjusted the scroll_right() routine to only scroll right if the
horizontal scroll bar is visible.
----
Overview of changes in gcalctool 5.5.14
* Fixed bug #158357. Removed the -DGNOME_DISABLE_DEPRECATED and the
-DGTK_DISABLE_DEPRECATED flags from the INCLUDES definition in
.../gcalctool/Makefile.am for now, to allow it to successfully build
against the latest GNOME/Gtk+.
* Slight adjustment to correct check the Advanced mode menu item when
the user had previously terminated gcalctool in that mode.
----
Overview of changes in gcalctool 5.5.13
* Changed the names of the gconf mode type key so that there is backward
compatibility.
* Reset the initial default mode to BASIC.
----
Overview of changes in gcalctool 5.5.12
* Fixed bug #157757. The horizontal scrollbar for the display area will
now only be visible when needed. It will also display the rightmost part
of the display as you are entering new input.
----
Overview of changes in gcalctool 5.5.11
* Added in a very basic mode for gcalctool. Rather than calling this a
"Light" mode, the existing "Basic" mode is now renamed to "Advanced"
and the new basic mode is called "Basic".
----
Overview of changes in gcalctool 5.5.10
* Fix for bug #157021. X^Y now works for -X with integer Y. -X with
non-integer Y will now display a descriptibe error in the status bar.
----
Overview of changes in gcalctool 5.5.9
* Generated gcalctool tarball for first GNOME 2.9 release.
----
Overview of changes in gcalctool 5.5.8
* Slight adjustment to bug #152301. The tooltip message had been tweaked to
"Show the About Gcalctool dialog".
----
Overview of changes in gcalctool 5.5.7
* Fixed bug #152301. Adjusted the tooltip message for Help->About... from
"Show about help" to "Show the about dialog", to make it more understandable.
----
Overview of changes in gcalctool 5.5.6
* Fixed bug #153726. Gcalctool will now build correctly when using the
-fno-common option for gcc (3.3.4).
----
Overview of changes in gcalctool 5.5.5
* Numerical answer localization and thousand separator support for
arithmetic precedence mode.
* If the accuracy was changed via one of the ten preset menu items in the
Acc menu, the tooltip wasn't getting correct updated with the new accuracy.
----
Overview of changes in gcalctool 5.5.4
* Further changes to the "Set Precision" popup (rfe #147803):
- "Significant places" not "Significant Places".
- Change "Set Precision..." to be "Other (12) ..." (where "(12)" is the
current precision, and be in the same radio box group as the other menu
items. Check the appropriate menu entry.
- Adjust the Acc button tooltip to show the current accuracy too.
- When the user attempts to enter an invalid entry in the Set Precision
popup, an error message is shown in the main gcalctool status bar.
- the other Acc radio button items (0-9) need to have mnemonics (_0, _1 ...).
* Fixed bug #152790. Most of the changes needed were already in CVS; there
was one compiler warning that still needed to be removed.
* Storing the display value to a memory register was not updating the memory
register window, if it was visible.
----
Overview of changes in gcalctool 5.5.3
* Added in functionality to set the number of significant places > 9.
There is a new menu item under the Acc menu called "Set Precision..."
that brings up a small popup allowing you to set precision between 0
and MAXACC significant places (where MAXACC is currently 30).
----
Overview of changes in gcalctool 5.5.2
* Fixed up numerous warnings generated by running lint on the gcalctool code.
Removed unused variables and functions. Declared routines statically where
possible.
----
Overview of changes in gcalctool 5.5.1
* Fixed bug 148581. Changes to get latest gcalctool compiling on a BSD system.
----
Overview of changes in gcalctool 5.5.0
* Major new release of gcalctool. Incorporates an arithmetic operator
precedence mode (currently the default while it's been debugged). To get
the old style, uncheck View->Use Arithmetic Precedence from the menu bar.
* The "(" and ")" buttons have moved from the scientific mode into the
Basic mode so that they are now available to users who need them but not
everything that the Scientific mode provides.
* There is a footer message area that provides feedback.
* The display area now has an horizontal scrollbar.
* Typing in the keyboard shortcuts for the various gcalctool buttons
autocompletes their entry into the display area.
* Tooltips show button's shortcut.
----
Overview of changes in gcalctool 4.4.13
* Remainder of the fix for bug #143924. Control-T shouldn't work in Basic
or Financial modes.
----
Overview of changes in gcalctool 4.4.12
* Partial fix for bug #143924. After an error condition, the "Show
Trailing Zeroes" menu item is only activated if the user is in
Scientific mode.
----
Overview of changes in gcalctool 4.4.11
* Fixed bug 138106. In Basic or Financial mode, "Error" was been
incorrectly display if you user has "Show Thousands Separator" set.
----
Overview of changes in gcalctool 4.4.10
* Fixed bug 144031. gcalctool checked for the presence of the X11
libraries but doesn't need to.
----
Overview of changes in gcalctool 4.4.9
* Selecting Help->About from the menubar now works again.
----
Overview of changes in gcalctool 4.4.8
* Adjusted the creation of the menubar and the Accuracy and Left/Right
shift menus from GtkItemFactory to GtkUIManager.
----
Overview of changes in gcalctool 4.4.7
* Fixed bug 142824. gcalctool now correctly recognizes the localized
decimal point character.
----
Overview of changes in gcalctool 4.4.6
* Fixed bug 129397. Use GtkIconTheme to load gcalctool icon instead of
built-in image.
----
Overview of changes in gcalctool 4.4.5
* Fixed bug 142888. Gcalctool is now connected to the "die" signal so
that it can be successfully terminated when removed from
gnome-session-properties.
----
Overview of changes in gcalctool 4.4.4
* The "Bsp" button label has been changed to "Bksp" to make it more
understandable.
----
Overview of changes in gcalctool 4.4.3
* Fixed bug 138106. If the "Error" message is being displayed, it is now
no longer incorrectly displayed as "Er,ror" if the "Show Thousands
Separator" is on.
----
Overview of changes in gcalctool 4.4.2
* Fixed bug 135068. Adjusted several default constant descriptions to be
more understandable.
----
Overview of changes in gcalctool 4.4.1
* Fixed bug 135065. Tooltips for OR, AND, NOT, XOR and XNOR have been
changed from "Logical <whatever>" to "Bitwise <whatever>".
----
Overview of changes in gcalctool 4.4.0
* Fixed bug 136872. gcalctool can now be built with "CFLAGS=-fdata-sections".
----
Overview of changes in gcalctool 4.3.51
* Version for GNOME 2.6 (FINAL) call for tarballs. Includes:
- new locales for pa, en_GB, bg and ga.
- localized online user documentation from the Sun translation team.
for de, es, fr, it, ja, ko, sv, zh_CN, zh_HK and zh_TW.
----
Overview of changes in gcalctool 4.3.50
* One more slight adjustment to the fix for bug 135064.
Entering numbers that start with the numeric point character ('.")
are now visibly displayed.
----
Overview of changes in gcalctool 4.3.49
* Adjustment to the fix for bug 135064. Fix to remove a potential spurious
initial thousands separator character after a change sign operation.
----
Overview of changes in gcalctool 4.3.48
* Fixed bug 135064. Changing the sign of a large number (when "Show
Thousands Separator" is on and this is not the C locale), no longer
corrupts the display.
----
Overview of changes in gcalctool 4.3.47
* Fixed bug 135328. Added Shift-slash as a recognized alternate for the
divide operation (needed by the be-latin1 keyboard layout).
----
Overview of changes in gcalctool 4.3.46
* Fixed bug 134540. gcalctool now correctly handles the digits 0123456789
which are shifted about the accented characters on a French keyboard.
----
Overview of changes in gcalctool 4.3.45
* Fixed bug 134484. Doing "3 x! x! x!" no longer causes gcalctool to lock up.
----
Overview of changes in gcalctool 4.3.44
* Fixed bug 133764.
- "Gradients" was still appearing when in Scientific mode (instead of
"Gradians".
- In the x^2 button, the 2 should not be italicized.
- In the x^2 and x^y buttons, the x should be italicized.
- The View Thousands Separator menu item should not remain active during
an error condition.
----
Overview of changes in gcalctool 4.3.43
* Fixed bug 133590. The About box now lists the documenters of gcalctool.
----
Overview of changes in gcalctool 4.3.42
* Fixed bug 132582. Adjusted the gcalctool titlebar to use a hyphen
(rather than square brackets) to show what mode the user is currently
using.
----
Overview of changes in gcalctool 4.3.41
* Fixed bug 132570. Adjusted UI to use spacing to delineate groups rather
than frames (per the HIG).
----
Overview of changes in gcalctool 4.3.40
* Fixed bug 131571. User defined constants are now read/written out (as
gconf resources) with no thousands separator and with a radix of ".".
----
Overview of changes in gcalctool 4.3.39
* Fixed bug 131594. The "Insert ASCII View..." menu item and the
"Insert" button no longer use the GTK_STOCK_CONVERT stock icon
(as per the HIG).
----
Overview of changes in gcalctool 4.3.38
* Fixed bug 131059. Fix to allow the thousands separator to be used
correctly with the creation of the initial constant values in the
Russian locale.
----
Overview of changes in gcalctool 4.3.37
* Fixed bug 130078. Changed the y^x button label to x^y (really x
superscript y). Adjusted the tooltip message to "Raise displayed
value to the power of y".
----
Overview of changes in gcalctool 4.3.36
* Fixed bug 130282 again. Needed to remove the "|| tsep[0] == '\0'" check
from the get_tsep() routine in order to get the thousands separator to
correctly work in all locales. Note that there is no thousands separator
now for the C locale.
----
Overview of changes in gcalctool 4.3.35
* Fixed part of bug 126125. If the user entered: "1+(2()<backspace>)",
this resulted in an answer of 0.
----
Overview of changes in gcalctool 4.3.34
* Fixed bug 130187. When gcalctool changes modes now, it's internal state
and the display are cleared.
----
Overview of changes in gcalctool 4.3.33
* Fixed bug 130282. Fixes for more problems with the thousands separator
in certain locales, plus correct handling of the radix character with
the initial constant values.
----
Overview of changes in gcalctool 4.3.32
* Fixed bug 128603 again. The solution this time was to duplicate the
initial string constant values to be confident that they are not in
read-only memory.
----
Overview of changes in gcalctool 4.3.31
* Fixed bug 129539. The thousands separator is a null terminated string,
not a single character. Same for the radix.
----
Overview of changes in gcalctool 4.3.30
* Fixed bug 129496. "Gradients" should be "Gradians".
----
Overview of changes in gcalctool 4.3.29
* Fixed bug 128603. The changes for enhancement request #126626 which added
thousands separator support caused a crash at startup time on a Debian
system. The initial constant strings are being put in read-only memory
either by gcc (or because of the way that x86 arch is designed). This was
not a problem when tested with the Sun compilers on a Solaris SPARC machine.
The remove_tsep() routine is display.c has been rewritten to correctly
handle this.
----
Overview of changes in gcalctool 4.3.28
* Further work on enhancement request 125873. As the user is typing in
input, the display will now show the thousands separator (if checked).
----
Overview of changes in gcalctool 4.3.27
* On a Solaris keyboard, Shift-"^" is GDK_asciicircum/GDK_SHIFT_MASK.
This keyval/state pair needed to be added to the Xor recognized mappings.
----
Overview of changes in gcalctool 4.3.26
* Re-fixed bug 127672. The fix for Shift-"=" should have been for GDK_equal
not GDK_Return. Needed to add in support for Shift-"/" too.
----
Overview of changes in gcalctool 4.3.25
* Implemented enhancement request 125873. gcalctool can now optionally
show the thousands seperator character for fixed point numbers displayed
in the decimal base. Same for numbers stored in the memory registers.
There is a new "Show Thousands Separator" menu entry in the View menu
to set this.
----
Overview of changes in gcalctool 4.3.24
* Fixed bug 126626. gcalctool no longer causes a Gtk-CRITICAL error when
the user enters "9*(1<Xor>". The problem was caused because a non-UTF
character was being inserted into the text string to be displayed for
the Xor function.
----
Overview of changes in gcalctool 4.3.23
* Fixed bug 125782. If the user is entering a left parenthesis and it is
the first one being displayed and there is no current arithmetic operand,
then the current display is initially cleared to avoid the confusion of
showing something like "0(".
----
Overview of changes in gcalctool 4.3.22
* Fixed bug 127862. The fix for bug #125625 introduced a potential
out-of-order case for users who are rapid keyboard typers. This
bug fix rectifies this with the unfortunate side-effect of no longer
visual toggling the equivalent button to the keyboard character
that the user entered. This fix is still compatible with the way
the accessibility infrastructure works though.
----
Overview of changes in gcalctool 4.3.21
* Fixed bug 65806. For the "1/x", "x^2", "x!", "e^x", "10^x" and
"y^x" labels, all occurances of "x" and "y" are now italicized.
The "e" in "e^x" is no longer italicized.
----
Overview of changes in gcalctool 4.3.20
* Fixed bug 127316. The "fix" introduced in gcalctool v4.1.18 to fix Sun
Bugtraq bug #1258472 against CDE dtcalc (which was also a problem with
gcalctool) was incorrect.
----
Overview of changes in gcalctool 4.3.19
* Fixed bug 127672. The "=" key on a Swedish keyboard is on the upper
level of a key (i.e. the Shift key needs to be down). Added another
mask/keysym pair to the "=" entry to handle this.
----
Overview of changes in gcalctool 4.3.18
* Fixed bug 125625. gcalctool now handles "clicked" events rather than
"pressed" ones.
----
Overview of changes in gcalctool 4.3.17
* Fixed bug 124928. Plugged several memory leaks.
----
Overview of changes in gcalctool 4.3.16
* Fixed bug 124377. Fixed rounding errors when the radix character for a
locale isn't ".".
* Online help updated for various recent (small) changes.
----
Overview of changes in gcalctool 4.3.15
* Fixed bug 124172. The "+" character on a German keyboard is on the lower
level of a key (i.e. the Shift key doesn't need to be down). Added another
mask/keysym pair to the "+" entry to handle this.
----
Overview of changes in gcalctool 4.3.14
* Fixed bug 120737. Changed the accessible text for the OR button from
"Logical OR" to "logical OR" so that it's not changed by FreeTTS's
token to words module to "logical Oregon".
----
Overview of changes in gcalctool 4.3.13
* Fixed bug #123948. Removed the GTK_DISABLE_DEPRECATED flag from
.../gcalctool/gcalctool/Makefile.am, to allow the depreciated
GtkItemFactory, to successfully build.
----
Overview of changes in gcalctool 4.3.12
* Fixed bug 123724. Hitting Esc now does the same as hitting
Control-Backspace; i.e. the CE (clear entry) functionality.
* Updated the gcalctool man pages to reflect this change, and the changes
for bug #118826.
----
Overview of changes in gcalctool 4.3.11
* Refixed bug 122373. gcalctool now uses nl_langinfo() to get the numeric
point for the users locale, rather than via a localised string.
----
Overview of changes in gcalctool 4.3.10
* Fixed enhancement #65806. Changed that label for e^x (e superscript x) to
use an italised "e".
----
Overview of changes in gcalctool 4.3.9
* Fixed bug 118826. The keyboard shortcuts for the six hex. digits are
now "A" to "F". The functions that previously used those letters have
been reassigned to their lowercase equivalents.
----
Overview of changes in gcalctool 4.3.8
* Fixed bug 122408. The tooltips for the numeric buttons (0-9) have been
removed as they are redundant.
----
Overview of changes in gcalctool 4.3.7
* Fixed bug 120749. When gcalctool is displaying a menu, typing Alt+Tab
can no longer switch windows.
----
Overview of changes in gcalctool 4.3.6
* Fixed bug 120745 (http://bugzilla.gnome.org/show_bug.cgi?id=120745)
Accessible names have now been added to each of the widgets in the
mode panel when in Scientific mode.
----
Overview of changes in gcalctool 4.3.5
* Fixed bug 122373. The decimal separator is now a translatable string so
that other locales that don't use a period can adjust accordingly.
----
Overview of changes in gcalctool 4.3.4
* Fixed bug 120605. Gcalctool debug messages are no longer translatable
strings.
----
Overview of changes in gcalctool 4.3.3
* Build for GNOME 2.4 (Final). Tag in CVS is GCALCTOOL_4_3_3
----
Overview of changes in gcalctool 4.3.2
* Fixed bug 119888. gcalctool keyboard handling has been improved.
----
Overview of changes in gcalctool 4.3.1
* Fixed bug 119832. The space bar can now correctly activate the button
that has focus.
----
Overview of changes in gcalctool 4.3.0
* Build for GNOME 2.4 (Beta1). Tag in CVS is GCALCTOOL_4_3_0
----
Overview of changes in gcalctool 4.2.104
* Fixed bug 118246. The display field can now take focus. The initial
widget with focus is the Clr button.
----
Overview of changes in gcalctool 4.2.103
* (Bug #118247) Three more small adjustments to AccessibleName text:
"E to the power of x" goes back to "E to the x"
"Ten to the power of x" goes back to "Ten to the x"
"Y to the power of x" goes back to "Y to the x"
----
Overview of changes in gcalctool 4.2.102
* (Bug #118247) Four small adjustments to AccessibleName text:
"Random" becomes "Random number"
"E to the x" becomes "E to the power of x"
"Ten to the x" becomes "Ten to the power of x"
"Y to the x" becomes "Y to the power of x"
----
Overview of changes in gcalctool 4.2.101
* Fixed bug 118247. Each gcalctool button now has an AccessibleName.
----
Overview of changes in gcalctool 4.2.100
* Fixed bug 117691. The GDK_Up, GDK_Down, GDK_Left and GDK_Right keysyms are
not valid equivalents for the 8, 2, 4 and 6 keys. They are needed for
keyboard navigation.
----
Overview of changes in gcalctool 4.2.99
* Bumped version number for GNOME 2.3.4 release, to include John's doc
build changes.
----
Overview of changes in gcalctool 4.2.98
* Fixed bug 116944. Various HIG improvements to the edit constants, edit
functions, and insert ASCII value dialogs.
----
Overview of changes in gcalctool 4.2.97
* Further work on bug 116727. A simpler fix was found.
----
Overview of changes in gcalctool 4.2.96
* Fixed bug 116727. When the calculator display is showing an error message,
it is now correctly localized.
----
Overview of changes in gcalctool 4.2.95
* Fixed bug 115950. The "*" key wasn't being recognized as a keyboard
shortcut for multiplication.
----
Overview of changes in gcalctool 4.2.94
* Further work on bug 114364. The items in the constants menu are now always
displayed in the decimal numeric base. This is consistent with the way that
calctool in the OpenWindows DeskSet worked.
----
Overview of changes in gcalctool 4.2.93
* Fixed bug 114364. When you select "Edit Constants" from the Con menu, the
values of each constant are shown in Decimal. The label:
"All constant values are specified in the decimal numeric base"
has also been added to the "Edit Constant" popup to clarify this.
----
Overview of changes in gcalctool 4.2.92
* Fixed bug 115653. Adjusted the keyboard mnemonic checking code to now
check to make sure that neither of the Alt keys is pressed when comparing
against button equivalents.
----
Overview of changes in gcalctool 4.2.91
* Similar problem to bug #115212 but for the "Edit Constants" and
"Edit Functions" dialog boxes. gcalctool no longer can display
multiple versions of them.
----
Overview of changes in gcalctool 4.2.90
* Fixed bug 114363 (http://bugzilla.gnome.org/show_bug.cgi?id=114363)
When an error condition occurs:
- make insensitive all buttons except Clr.
- make all Scientific mode toggles and checkboxes insensitive.
- make all menubar items insensitive except:
Calculator->Quit
Help->Contents
When the error condition is cleared, resensitise everything, setting
the numeric base buttons correctly.
----
Overview of changes in gcalctool 4.2.89
* Fix for bug #115212. gcalctool no longer can display multiple About boxes.
----
Overview of changes in gcalctool 4.2.88
* Fix for bug #108209. The appropriate gcalctool button is now animated
when the user enters that value via the keyboard.
----
Overview of changes in gcalctool 4.2.87
* Partial fix for bug 114363. When the calculator display is showing "Error",
the Constant values and the Memory Register values no longer incorrectly
show "Error" as well.
----
Overview of changes in gcalctool 4.2.86
* Fixed bug 113703. You can now specify an alternate location for
the gcalctool schemas file with: --with-gconf-source=whatever
----
Overview of changes in gcalctool 4.2.85
* Fixed bug 113754. Decimal point didn't work with a German keyboard if
Numlock was turned on.
----
Overview of changes in gcalctool 4.2.84
* Install "gnome-calculator" symlink as reqested by Glynn Foster.
----
Overview of changes in gcalctool 4.2.83
* Fixed Bugzilla bug 111269. It was possible to type fast into gcalctool
and digits would be transposed.
----
Overview of changes in gcalctool 4.2.82
* Refixed bug 110416. Concatenated more error messages in mp.c.
* Adjusted the Acc menu entries to be "<n> significant places" rather than
"<n> radix places".
* Replaced "kilometers per hour / miles per hour" with "kilometers per hour
or miles per hour" in the first constant description.
* Replaced occurances of "/" in the other constant descriptions with "or".
----
Overview of changes in gcalctool 4.2.81
* Translators: The documentation is now ready for translation!
* Updated the following files:
* configure.in: updated version number to 4.2.81
* help/C/gcalctool.xml: first approved draft, ready for translation
* help/C/gcalctool-C.omf: updated manual date and version number
* help/C/l10n.txt: new file added
* help/C/figures/gcalctool_edit_const_window.png: deleted
* help/C/figures/gcalctool_edit_func_window.png: deleted
* help/C/figures/gcalctool_ins_ascii_window.png: deleted
* help/C/figures/gcalctool_mem_reg_window.png: deleted
----
Overview of changes in gcalctool 4.2.80
* Fixed Bugzilla bug 110416. Various fprintf statements in mp.c have been
concatenated to help translators.
----
Overview of changes in gcalctool 4.2.79
* Added in latest online help changes from Breda McColgan. This should now
put the online help in sync with the actual functionality of gcalctool.
----
Overview of changes in gcalctool 4.2.78
* Made translated menu entries actually visible. fixed some tooltips, added
AC_PREREQ macro to configure.in.
----
Overview of changes in gcalctool 4.2.77
* This version announced on gnome-announce.
----
Overview of changes in gcalctool 4.2.76
* Slight adjustments to Bugzilla bug 108226 . Menu item is now
"Show Trailing Zeroes", with a Control-T accelerator. Added a similar
menu item to the View menu on the menu bar.
----
Overview of changes in gcalctool 4.2.75
* Fixed Bugzilla bug 108729.
Added tooltips to the radio and check buttons in scientific mode.
----
Overview of changes in gcalctool 4.2.74
* Fixed Bugzilla bug 108226.
The menu items in the Acc menu are now "tickable", so you know what the
current accuracy selection is. Setting one of these clears the previous one.
A new "remove trailing zeroes" menu item is added to the Acc menu (last
item, with a separator just above), that is "tickable". This tick doesn't
affect the accuracy ticks. It's either on or off.
The default setting for accuracy now becomes 9 numeric places and "remove
trailing zeroes".
The Acc button is moved to the Scientific mode (clear slot in the top
right corner, above the Rand.
The Base radio button group and the display type radio button group in
the mode panel in Scientific mode are now moved to the right side to be
close in proximity to the Acc button. The other mode items move to the
left side.
----
Overview of changes in gcalctool 4.2.73
* Fixed Bugzilla bug 108208. The default value for the "showregisters"
resource in gcalctool.schemas was incorrectly set.
* There should be no "default:" action in the command line parsing in
get_options().
----
Overview of changes in gcalctool 4.2.72
* Correctly fixed Bugzilla bug 108219. The previous fix didn't correct
set the radio buttons when changing mode from Scientific to Basic or
Financial. Only the internal state.
----
Overview of changes in gcalctool 4.2.71
* Further fix for Bugzilla bug 108209. Followup changes to make the numeric
keypad animate the buttons on Linux machines.
----
Overview of changes in gcalctool 4.2.70
* Fixed Bugzilla bug 108219.
When you go from Scientific mode to either Basic or Financial mode,
the calculator will revert to "Dec" base in "Fix" notation.
Any number in the display (and the memory registers if shown) will be
converted accordingly.
When you are in a mode (Basic, Financial, or Scientific) you will only
be able to do the functionality that that mode shows.
----
Overview of changes in gcalctool 4.2.69
* Fixed Bugzilla bug 108333. The gcalctool buttons with menus associated
with them are now keyboard navigable.
----
Overview of changes in gcalctool 4.2.68
* Fixed Bugzilla bug 108209. When the user uses the keyboard to enter data,
the associated gcalctool button will be animated.
----
Overview of changes in gcalctool 4.2.67
* Fixed Bugzilla bug 108210. Main gcalctool window is no longer resizable.
----
Overview of changes in gcalctool 4.2.66
* Incorporated various changes to the online help Breda McColgan in
the Sun GNOME doc. team. Translators, please do not translate yet.
See ChangeLog for more information.
----
Overview of changes in gcalctool 4.2.65
* Added scrollkeeper checks into configure.in.
* Fixed warning message:
** (gcalctool:27091): WARNING **: Help error: Unable to find the
GNOME_FILE_DOMAIN_APP_HELP domain
----
Overview of changes in gcalctool 4.2.64
* Added in a first (draft) version of online help from Breda McColgan in
the Sun GNOME doc. team. Translators, please do not translate yet. See
ChangeLog for more information.
----
Overview of changes in gcalctool 4.2.63
* Abstracted the key values and modifiers.
----
Overview of changes in gcalctool 4.2.62
* Adjusted the tooltip help to be minimalist messages.
----
Overview of changes in gcalctool 4.2.61
* Small adjustment to allow gcalctool to compile using the Solaris Forte
compilers.
----
Overview of changes in gcalctool 4.2.60
* Gcalctool wasn't saving the trigonometric type when it was changed.
----
Overview of changes in gcalctool 4.2.59
* Added Brazilian Portuguese (pt_BR) to ALL_LINGUAS.
----
Overview of changes in gcalctool 4.2.58
* Allows Backspace to now correctly work inside parentheses.
----
Overview of changes in gcalctool 4.2.57
* The Xor logical operation wasn't being performed correctly.
* Hitting Clr was not correctly clearing the Hyp and Inv trigonometric
checkboxes.
----
Overview of changes in gcalctool 4.2.56
* Removed the final period from the ten default constant descriptions.
* Changed occurances of "kilometre" to "kilometer" and "centimetre" to
"centimeter".
* Fixed up the values of the ten default constant definitions in the
manual pages.
* The "centimeters <=> inches" default constant should be 0.3937007
rather than 2.54 to be consistent with the other constants.
----
Overview of changes in gcalctool 4.2.55
* Entering "(<Delete>)" no longer crashes gcalctool.
----
Overview of changes in gcalctool 4.2.54
* The financial Term tooltip example now works.
* Moved the Exp button to the right of the Con and Fun buttons for better
grouping.
----
Overview of changes in gcalctool 4.2.53
* Fixed Bugzilla bug 106501. Added bullet proofing to prevent user
backspacing off the end of the display string.
----
Overview of changes in gcalctool 4.2.52
* Toggled the positions of the Sto and Rcl buttons.
----
Overview of changes in gcalctool 4.2.51
* No longer crashes if the user Pastes in an empty clipboard value.
* Now uses a text view for its display widget.
----
Overview of changes in gcalctool 4.2.50
* Fixes to the manual page:
- the keyboard shortcut for the "Term" function is "t" not "T".
- removed the LOGICAL mode section.
----
Overview of changes in gcalctool 4.2.49
* The display label and mode no longer expand when the calculator is resized.
* Replace the three characters of white space in the title bar text with one
space character, so more of the title fits into the task window list applet.
Overview of changes in gcalctool 4.2.48
* Added a launcher to the GNOME's Accessories menu.
----
Overview of changes in gcalctool 4.2.47
* Marks the menu labels for translation.
----
Overview of changes in gcalctool 4.2.46
* Various cleanup, to make gcalctool be more like other GNOME applications.
----
Overview of changes in gcalctool 4.2.45
* Fixed Bugzilla bug 104249. The UI for adding new or editing existing
constants and/or functions has been improved.
----
Overview of changes in gcalctool 4.2.44
* Fixed Bugzilla bug 104830. gcalctool now uses gnome-calc3.png as its icon
(same as the current gnome-calculator)
----
Overview of changes in gcalctool 4.2.43
* Further slight adjustments needed to fix Bugzilla bug 104248. The memory
registers window now displays correctly again.
* Fixed Bugzilla bug 104240. The "File" menubar item is now called
"Calculator", and there is a set of unique mnemonics for the various
items in the Scientific mode panel. The gcalctool manual pages have been
updated to reflect these changes.
* Added in a Control-I mnemonic for Edit->Insert ASCII Value.
Added in a Control-A mnemonic for Help->About.
----
Overview of changes in gcalctool 4.2.42
* Fixed Bugzilla bug 104248. The View->Memory Registers menu item's toggle
is now set correctly depending upon whether the memory register windows
is visible or hidden.
* The correct radio item is now set in the View menu mode menu item entries
if gcalctool is initially started in Financial or Scientific mode.
----
Overview of changes in gcalctool 4.2.41
* The constant and function definitions are now read and written as Gconf
resources.
* Fixed Bugzilla bug 104250. The constant and the function menu items now
have "C<n>:" and "F<n>:" prefixes respectively, where <n> is the
constant/function number.
----
Overview of changes in gcalctool 4.2.40
* Fixed Bugzilla bug 104245. The View->Basic Mode, Financial Mode,
Scientific Mode and Memory Registers now have keyboard accelerators
(Control-B, Control-F, Control-S and Control-M respectively).
----
Overview of changes in gcalctool 4.2.39
* Further slight adjustments for Bugzilla bug 104287
The insert button isthe default button.
The dialog is no longer resizable.
The ESC key can now be used to cancel the dialog.
----
Overview of changes in gcalctool 4.2.38
* Fixed Bugzilla bug 104287. HIG improvements for the "Insert ASCII Value"
dialog.
----
Overview of changes in gcalctool 4.2.37
* Fixed Bugzilla bug 104241. The Insert ASCII Value" menu item is now
"Insert ASCII Value..."
* Tidied up the I18N code as gcalctool now includes <gnome.h> which includes
<bonobo-i18n.h,> where all this stuff is already defined.
----
Overview of changes in gcalctool 4.2.36
* Fixed Bugzilla bug #102928. The x^2, e^x, 10^x and y^x keys now use
Pango markup to display the label using superscripts.
----
Overview of changes in gcalctool 4.2.35
* Added in handling of the numeric keypad for Linux systems.
----
Overview of changes in gcalctool 4.2.34
* Handling of the users saved function definitions now works correctly.
* Changed the keyboard accelerators for the following to use non Alt-<?>
values:
Cos (old value: Alt-c) becomes 'J'.
Sin (old value: Alt-s) becomes 'K'.
Tan (old value: Alt-t) becomes 'L'.
Frac (old value: Alt-f) becomes ':'.
Int (old value: Alt-i) becomes 'i'.
Abs (old value: Alt-u) becomes 'u'.
Rate (old value: Alt-r) becomes 'T'.
* Removed the need to configure with "--enable-build-broken".
----
Overview of changes in gcalctool 4.2.33
* Adjusted the memory registers windows to use the same "R0: 0.00" format
(bold for first part), as the Rcl, Sto and Exch menus.
----
Overview of changes in gcalctool 4.2.32
* The menu items for the Rcl, Sto and Exch menus now have the format
"R0: 0.00", where the "R0:" part is in bold.
* The keyboard accelerators for the menubar menu items are now working.
----
Overview of changes in gcalctool 4.2.31
* Updated the NEWS file with an overview of all the changes since v4.1.13.
----
Overview of changes in gcalctool 4.2.30
* Removed the gconf resource for getting/setting whether a beep is sounded
on error. A beep will now always be sounded in such a case.
* The writing out of the resources will now be immediately done when each
of those functions changes.
----
Overview of changes in gcalctool 4.2.29
* Updated the manual pages to reflect the recent v4.2.xx changes.
* Replaced the occurance of mktemp with mkstemp to placate the Gnu compiler
on Linux.
----
Overview of changes in gcalctool 4.2.28
* The real fix for displaying the icon.
----
Overview of changes in gcalctool 4.2.27
* Vastly improved keyboard navigation.
* Control-F1 now toggles the displaying of tooltip help, so the "-h"
command line option has been removed and the old-style event handling
code has also been removed.
* Added in a signal handler for the "delete" event for the main gcalctool
window. The callback calls gtk_main_quit() to terminate the application.
----
Overview of changes in gcalctool 4.2.26
* HCI change. Attempt to correct disaplay the gcalctool icon.
----
Overview of changes in gcalctool 4.2.25
* HCI change. The Sto/Rcl/Exch menu items now show the current register
values as well.
----
Overview of changes in gcalctool 4.2.24
* HCI change. All the radiobutton and checkbox items in the mode panel
now have a mnemonic associated with them.
----
Overview of changes in gcalctool 4.2.23
* HCI change. Fixed up the buttons on the "Insert ASCII Value", "Enter
Constant..." and "Enter Function..." popups. They now just use Cancel
and OK buttons, and use standard stock Gtk icons.
----
Overview of changes in gcalctool 4.2.22
* HCI change. Added in an Edit->Paste menu item. If selected this will
paste the current contents of the clipboard into the calculator display
as if you'd typed it.
* Added bullet proofing to protect the calculator against values that
weren't found. If a value wasn't found, it's just ignored, and it goes
on to process the next character in the string.
* Improved the handling of the recognition of characters entered. It now
takes into effect the mods value for each keysym.
----
Overview of changes in gcalctool 4.2.21
* HCI change. Added a 2 pixel border for the frames containing the Basic,
Financial and Scientific buttons and the mode panel.
----
Overview of changes in gcalctool 4.2.20
* HCI change. Removed the "operand item" label widget.
----
Overview of changes in gcalctool 4.2.19
* The frames around the mode button tables and the mode panel are no longer
always being shown.
----
Overview of changes in gcalctool 4.2.18
* Fixed Bugzilla bug #101865. Remade various keyboard remappings:
* Removed mention of the "-l" and "-r" command line options from the manual
pages. Remove reference to the /schemes/apps/gcalctool/righthanded Gconf
resource too.
----
Overview of changes in gcalctool 4.2.17
* Removed the "Keys" key, that allowed you to toggle the button labels to
show their keyboard equivalents.
----
Overview of changes in gcalctool 4.2.16
* Put each of the the button tables and the mode panel inside a frame, rather
then use horizontal separators, to try to make the GUI look nicer.
----
Overview of changes in gcalctool 4.2.15
* Entering "((2+3)*(2+3))" now gives the correct answer.
* Added some bullet-proofing to parentheses handling when bogus characters
are entered.
----
Overview of changes in gcalctool 4.2.14
* Hooked up the Help->Contents menu item. Note that help support still has
to be included (i.e. a help subdirectory with associated files etc.).
----
Overview of changes in gcalctool 4.2.13
* The View->Memory Registers menu item now correctly toggles the showing of
the memory register window.
----
Overview of changes in gcalctool 4.2.12
* Menubar menu items now use stock Gtk icons (where applicable).
----
Overview of changes in gcalctool 4.2.11
* Revised the gcalctoolrc (Gtk resources) file for the new display layout.
----
Overview of changes in gcalctool 4.2.10
* Going into Scientific mode and clicking on "(" twice no longer causes a
segmentation violation.
----
Overview of changes in gcalctool 4.2.9
* Added some horizontal separators to help make the calculator more readable
when in Financial and Scientific Mode.
----
Overview of changes in gcalctool 4.2.8
* Entering "((2+3)*9+(5-3))" no longer causes a segmentation violation.
----
Overview of changes in gcalctool 4.2.7
* Removed the attempt to display a calculator image on the About popup.
* Typing the keyboard equivalent of the menu buttons now works.
* Removed the VERSION string from the titlebar. This is now in the About popup
----
Overview of changes in gcalctool 4.2.6
* Added in an About popup that's accessible through the Help->About Gcalctool
menubar Help menu item.
----
Overview of changes in gcalctool 4.2.5
* Fixed Bugzilla bug #102927.
Replaced abbreviation "trig." with full word "trigonometric".
----
Overview of changes in gcalctool 4.2.4
* Fixed Bugzilla bug #102922.
Adjusted two occurances of sentence fragments to make it easier for
L10N folks to translate them.
----
Overview of changes in gcalctool 4.2.3
* Added Spanish (es) to ALL_LINGUAS at configure.in
* gcalctool is now resizable again.
----
Overview of changes in gcalctool 4.2.2
* Made calculator window choose a reasonable size at startup, and resize
when changing modes.
----
Overview of changes in gcalctool 4.2.1
* Removed the GNOME_UTIL_LIBS line in gcalctool/Makefile.am so that
gcalctool will correctly build.
----
Overview of changes in gcalctool 4.2.0
* The gcalctool GUI layout has been redone to make the Basic mode more
basic and to make the application more GNOMEish.
* The Financial/Logical/Scientific mode buttons have been moved into
the main calculator window above the Basic mode buttons. The Logical
and Scientific modes have been combined.
* Added a menubar.
* The six item mode display has been removed and a mode panel added for
the scientific mode.
* Removed the property sheet. gcalctool no longer has a left or right
handed style.
* Blank buttons are now correctly hidden.
* Added a "--enable-build-broken" flag to configure that has to be present
in order to configure and build gcalctool while it's still in a semi-broken
state.
----
Overview of changes in gcalctool 4.1.27
* Fixed Bugzilla bug #101782.
Removed trailing "\n"'s where possible in the tooltip help messages.
----
Overview of changes in gcalctool 4.1.26
* Fixed Bugzilla bug #101861.
The size of the memory register window is no longer hard-wired.
----
Overview of changes in gcalctool 4.1.25
* Fixed Bugzilla bug #101867.
Changed multiply key from "X" to "*" (same as the existing gnome-calculator).
----
Overview of changes in gcalctool 4.1.24
* Fixed Bugzilla bug #101780.
Removed leading and trailing spaces from the labels for the gcalctool buttons.
----
Overview of changes in gcalctool 4.1.23
* Fixed Bugzilla bug #101777.
Removed trailing periods on the four window titles.
----
Overview of changes in gcalctool 4.1.22
* Various I18N changes.
----
Overview of changes in gcalctool 4.1.21
* Various I18N changes.
----
Overview of changes in gcalctool 4.1.20
* Fixed Sun Bugtraq bug #1102883 against DeskSet calctool:
Adjusted so that all error messages just display "Error" which is
more consistent.
----
Overview of changes in gcalctool 4.1.19
* Fixed Sun Bugtraq bug #4006391 against CDE dtcalc:
Bring up gcalctool, enter 10000 X 0.58 =, get answer is 5800.
Then click on Int button, supposely should get 5800, but the answer was 5799.
----
Overview of changes in gcalctool 4.1.18
* Fixed Sun Bugtraq bug #1258472 against CDE dtcalc:
Start up gcalctool and set to decimal and fixed. Set accuracy to 2 decimal
places. Do a division like 0.19/2 It gives 0.0A.
----
Overview of changes in gcalctool 4.1.17
* Fixed Bugtraq bug #1190181 against OpenWindows DeskSet calctool:
gcalctool core dumped if parent directory was not readable.
----
Overview of changes in gcalctool 4.1.16
* Updated TODO file with all relevant calculator Sun bugs and rfes.
* Adjusted matherr() routine so that strict ANCI C compilers can compile it.
* Mode windows now shows buttons correctly if you start up in Basic mode,
then try to show one of the other modes.
----
Overview of changes in gcalctool 4.1.15
* "Keys" button now displays correctly if started with left-handed style.
* Switching handed style now displays button labels correctly if currently
showing the keyboard equivalent.
----
Overview of changes in gcalctool 4.1.14
* Buttons are colored correctly if started with left-handed style.
----
Overview of changes in gcalctool 4.1.13
* The unused buttons in the mode window are now hidden.
----
Overview of changes in gcalctool 4.1.12
* Added gconf support, removing the use of X11 resources.
----
Overview of changes in gcalctool 4.1.11
* Explicitly setting the size of the calculator buttons has been removed.
* The width of the mode window is now set to the width of the main window.
----
Overview of changes in gcalctool 4.1.10
* Fixes for I18N support.
----
Overview of changes in gcalctool 4.1.9
* Now that gcalctool is using Gtk resources to determine the appearance of
the calculator, there is no need to use the custom display_frame widget.
* The calculator display area now has tooltip help.
----
Overview of changes in gcalctool 4.1.8
* Fixed up mistakes is the gcalctool tooltip help text.
* Three keyboard accelerators weren't working when a "menu" button had been
pressed and the calculator was in pending mode:
Base button - "o" (octal).
Mode button - "l" (logical).
Trig button - "g" (gradient).
* The + and . keys on the numeric keypad now work.
----
Overview of changes in gcalctool 4.1.7
* Added in help support. Hitting the Help key will toggle whether tooltip
help messages are displayed for the various buttons and other widgets.
By default tooltips are disabled. Start gcalctool with the "-h" command
line option will enable them. There is also a "gcalctool.showhelp"
resource that can enable/disable them.
----
Overview of changes in gcalctool 4.1.6
* The new Constant/Function popup now has the various items aligned.
----
Overview of changes in gcalctool 4.1.5
* The size of the buttons in the Mode window are incorrect if the unused ones
are not shown. Solved this my simply making the unused ones insnsitive, and
showing them all.
----
Overview of changes in gcalctool 4.1.4
* Keyboard accelerators now work for the gcalctool "menu" buttons.
----
Overview of changes in gcalctool 4.1.3
* The constant and function definitions are now read and written to a file
named ~/.gcalctoolcf.
* gcalctool now also tries to read a ~/.gcalctoolrc file at startup time.
This file (if it exists) can contain resources for changing the appearance
of the application. A gcalctoolrc file is now also included with the
gcalctool distribution, which gives the old OpenWindows DeskSet appearance
to the calculator.
* The ability to change various colors via X resources has also been removed.
The manual pages have been updated to reflect this.
----
Overview of changes in gcalctool 4.1.2
* Starting gcalctool then switching hands to left-handed, then using the
keyboard for input, wrongly associated the various keyboard accelerators
for the swapped keys.
----
Overview of changes in gcalctool 4.1.1
* Now finds the X11 libraries in a platform independent way.
* Fixed up the gcalctool usage message.
* Fixed up the gcalctool manual pages.
* gcalctool now looks for ~/.gcalctoolrc and ~/.gcalctooldefaults files.
* X resources are now "gcalctool.<whatever" rather than "calctool.<whatever>".
----
Overview of changes in gcalctool 4.1.0
* Graphics driver is now based on Gtk2.
----
Overview of changes in calctool 4.0.0
* Code based on the calctool in the OpenWindows Deskset for Solaris 8.
* Adjusted to use an autoconf/automake configuration and build environment.
* Adjusted the code to a K&R style.
* Incorporated in needed code from the libguide and libdeskset libraries.
* Released under a GNU LIBRARY GENERAL PUBLIC LICENSE (LGPL) license.
* Just an XView graphics driver currently provided.
----
|