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
|
2015-02-15 00:58 fnevgeny
* COPYRIGHT, doc/UsersGuide.sgml, src/helpwin.c, src/main.c:
Copyright notices updated.
2015-02-15 00:42 fnevgeny
* doc/: Makefile, CHANGES.html: Fixed make rules for SGML->PDF.
2015-02-15 00:17 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: Version 5.1.25.
2015-02-15 00:10 fnevgeny
* src/computils.c: Fixed the FT DC term amplitude.
2015-02-14 23:28 fnevgeny
* src/: motifutils.c, pars.yacc: Kill set data from GUI or scripts
now clears comments.
2015-02-14 23:21 fnevgeny
* src/Makefile: Replaced "mv" with "mv -f".
2015-02-14 23:19 fnevgeny
* src/ssdata.c: Reverted last change.
2014-08-29 20:44 fnevgeny
* scripts/makerelease: Clean after making PDF docs.
2014-08-29 20:37 fnevgeny
* doc/CHANGES.html: 5.1.24.
2014-08-29 19:41 fnevgeny
* doc/UsersGuide.sgml, src/buildinfo.c: Grace-5.1.24.
2014-08-29 19:38 fnevgeny
* src/xmgrace.c: UTF8 XLocale problem (mostly copied a workaround
from Nedit).
2014-08-17 02:27 fnevgeny
* doc/: Makefile, gracebat.1, xmgrace.1: Use groff's .so mechanism
instead of soft links for xmgrace.1/gracebat.1 man pages.
2014-08-17 02:19 fnevgeny
* doc/Makefile: Install PDF docs instead of the DVI ones.
2014-08-17 02:15 fnevgeny
* doc/UsersGuide.sgml: Fixed too wide tables.
2014-08-17 02:09 fnevgeny
* doc/Makefile: Remove *.out on make clean.
2014-08-17 02:08 fnevgeny
* doc/.cvsignore: Ignore *.out files.
2014-08-17 02:04 fnevgeny
* COPYRIGHT, src/helpwin.c, src/main.c: Copyright notices updated.
2014-08-17 01:58 fnevgeny
* src/ssdata.c: Always overwrite set comments when reading data in.
2014-08-17 01:33 fnevgeny
* src/editpwin.c: Made spreadsheet dialog child of app_shell as the
rest of the dialogs.
2014-08-17 01:22 fnevgeny
* cephes/COPYING: Added cephes/COPYING (from Debian).
2014-08-17 01:02 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess &
config.sub.
2014-08-17 00:56 fnevgeny
* ac-tools/configure.in: Replaced mdw_CHECK_MANYLIBS with
AC_SEARCH_LIBS.
2014-08-17 00:54 fnevgeny
* ac-tools/aclocal.m4: Renamed some local vars as _cv_ ones
(cacheable). Got rid of mdw_CHECK_MANYLIBS.
2012-10-01 01:29 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: 5.1.23 released
2012-09-30 23:53 fnevgeny
* COPYRIGHT, doc/UsersGuide.sgml, src/helpwin.c, src/main.c:
Copyright updated.
2012-02-14 22:28 fnevgeny
* fonts/Makefile: Oops. IsoLatin5.enc wasn't added to the Makefile.
2011-06-08 21:10 fnevgeny
* grace_np/grace_np.c: Wrongly placed brackets (patch by Stan
Maree).
2011-01-29 23:37 fnevgeny
* src/rstdrv.c: Fix building against png-1.5 (patch by Thomas
Klausner).
2010-06-12 17:37 fnevgeny
* src/.cvsignore: Ignore .diff.
2010-06-12 17:31 fnevgeny
* COPYRIGHT, src/helpwin.c: Copyright notice.
2010-06-12 17:30 fnevgeny
* doc/UsersGuide.sgml: Graph types and INTEGRATE.
2010-06-12 17:29 fnevgeny
* doc/FAQ.sgml: Julian dates.
2010-06-12 17:28 fnevgeny
* doc/grace.1: List graph types.
2010-02-01 00:03 fnevgeny
* src/motifutils.c: A workaround for a bug in recent Xorg not
releasing grab of popup menus.
2009-06-23 23:00 fnevgeny
* src/nonlfit.c: Renamed RMS per cent error -> relative error.
2009-05-03 23:51 fnevgeny
* src/x11drv.c: Simplified xlib_setpen (backported from grace6).
2009-04-05 23:47 fnevgeny
* src/main.c: Accept -graphtype chart instead of bar. List possible
values in the help output.
2009-01-23 00:16 fnevgeny
* doc/grace.1: Oops. undo stupid thing ;-(
2009-01-23 00:02 fnevgeny
* doc/grace.1: Bad formatting (preventing part of the man page from
rendering) fixed.
2008-12-06 21:52 fnevgeny
* src/buildinfo.c: 5.1.23 started.
2008-12-06 21:48 fnevgeny
* ac-tools/configure.in: Removed *86 specific optimizations.
2008-12-06 21:47 fnevgeny
* Makefile: Cosmetics.
2008-05-21 23:50 fnevgeny
* COPYRIGHT, doc/CHANGES.html, src/buildinfo.c, src/helpwin.c,
src/main.c: 5.1.22 released.
2008-05-20 23:54 fnevgeny
* doc/FAQ.sgml: Added FAQ on max drawing path length.
2008-05-20 01:49 fnevgeny
* ac-tools/: config.guess, config.sub: config.guess and config.sub
updated.
2008-05-20 01:35 fnevgeny
* doc/UsersGuide.sgml, src/Make.common, src/humlik.c,
src/mathstuff.c, src/mathstuff.h, src/noxprotos.h, src/pars.yacc:
Added Voigt function.
2008-05-20 00:55 fnevgeny
* doc/UsersGuide.sgml, src/computils.c, src/compwin.c,
src/noxprotos.h, src/pars.yacc: Added LINCONV() to the parser.
2008-04-26 22:12 fnevgeny
* src/events.c: Mention object type when asking for user's
confirmation on delete.
2008-04-26 22:00 fnevgeny
* src/: noxprotos.h, objutils.c: Added object_types().
2008-04-26 21:25 fnevgeny
* src/files.c: nb_rt counting in unregister_real_time_input was
wrong.
2008-04-26 00:12 fnevgeny
* grace_np/grace_np.c: Supposedly fixed kill(-1)...
2008-04-03 00:31 fnevgeny
* src/motifutils.c: Safe check for an out-of-bounds value in
SetChoice().
2007-06-06 23:15 fnevgeny
* src/buildinfo.c: 5.1.22 started.
2007-06-06 23:10 fnevgeny
* grace_np/grace_np.c: Fixed a stupid bug causing the GraceClose()
to kill all user processes if by that time the Grace subprocess
has exited.
2007-02-17 00:43 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, doc/grace.1,
src/buildinfo.c, templates/Default.agr: 5.1.21 final.
2007-02-17 00:31 fnevgeny
* examples/Makefile, examples/dotest, examples/log2log.agr,
src/xmgrace.c: Added log2log.agr example (showing also the
computing and engineering tick labeling). Contributed by Harvey
Richardson.
2007-02-16 00:36 fnevgeny
* src/: defines.h, graphutils.c, motifutils.c, pars.yacc, utils.c:
Added Computing tick label format (a patch by Harvey Richardson).
2007-02-14 00:01 fnevgeny
* src/graphappwin.c: Allow for longer legend lines.
2007-02-13 23:37 fnevgeny
* src/: pars.yacc, ssdata.c: Implemented KILL BLOCK.
2007-02-13 23:26 fnevgeny
* src/utils.c: Extended range of prefixes in Engineering format up
to 10^{+/-24}.
2007-02-13 23:22 fnevgeny
* src/drawticks.c: Fixed rounding-off probem with zero label (rep.
#2098).
2007-01-28 00:54 fnevgeny
* COPYRIGHT, src/helpwin.c, src/main.c: Copyright dates updated.
2007-01-27 23:44 fnevgeny
* src/main.c: Added -maxpath command line option.
2006-09-26 23:33 fnevgeny
* src/pars.yacc: Honour locale in number stringifications.
2006-09-26 22:58 fnevgeny
* doc/grace.1: Man page cleaned (Debian patch).
2006-09-23 19:18 fnevgeny
* cephes/: cephes.h, ellpk.c, gamma.c, hyperg.c, ndtri.c:
Eliminated some gcc-4.1 warnings (patch by Ionut Georgescu).
2006-09-23 18:56 fnevgeny
* fonts/enc/IsoLatin5.enc: Added IsoLatin5 encoding file.
2006-08-06 01:45 fnevgeny
* src/pars.yacc: Output sensible error message when an attempt is
made to redefine a variable.
2006-08-06 01:42 fnevgeny
* src/buildinfo.c: 5.1.21 started.
2006-06-04 00:21 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml, doc/grace.1,
src/buildinfo.c: 5.1.20 released.
2006-06-04 00:19 fnevgeny
* src/: editpwin.c, xmgrace.c: Changes to work better with newer
Xbae.
2006-05-17 23:53 fnevgeny
* src/nonlwin.c: Close file selection dialog when fit parameters
file is read in successfully.
2006-05-17 23:29 fnevgeny
* src/utils.c: Fixed buffer overflow.
2006-05-04 00:40 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2006-05-04 00:27 fnevgeny
* src/defaults.c, templates/Default.agr: Changed default major axis
tick spacings to 0.2.
2006-05-04 00:21 fnevgeny
* ac-tools/configure.in: Got rid of "-pedantic" to silence newer
gcc.
2006-05-04 00:17 fnevgeny
* examples/tmc.c: Added stdlib.h for exit().
2006-05-04 00:04 fnevgeny
* COPYRIGHT, src/helpwin.c, src/main.c: Updated copyright years.
2006-05-03 23:43 fnevgeny
* src/: mathstuff.c, mathstuff.h, pars.yacc: Added sgn() function
to the interpreter.
2006-04-25 22:26 fnevgeny
* src/compwin.c: A "break" was forgotten...
2006-04-25 22:26 fnevgeny
* src/helpwin.c: The latest versions of Mozilla/Firefox seem to
treat the anchor symbol (#) differently if the URL is given
without the "file://" specification.
2006-02-12 23:54 fnevgeny
* src/pars.yacc: Oops. Undone last change.
2006-02-12 23:39 fnevgeny
* src/pars.yacc: Got rid of unused ZEROXAXIS and ZEROYAXIS tokens.
2005-11-28 23:59 fnevgeny
* src/buildinfo.c: 5.1.20 started.
2005-11-28 23:59 fnevgeny
* src/main.c: Recognize pie in -graphtype.
2005-11-27 00:11 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: Final 5.1.19 release.
2005-11-20 23:28 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, src/buildinfo.c,
templates/Default.agr: 5.1.19rc1 snapshot.
2005-11-20 23:25 fnevgeny
* .cvsignore, scripts/makerelease: Ignore autom4te.cache dir.
2005-11-20 23:14 fnevgeny
* ac-tools/: aclocal.m4, configure.in: Switched to autoconf 2.5.
2005-11-20 22:58 fnevgeny
* doc/grace.1, src/Makefile, ac-tools/Make.conf.in,
ac-tools/configure.in: Fixed --with-helpviewer configure option.
Default set to "mozilla %s".
2005-11-19 23:53 fnevgeny
* src/draw.c: Backported purge_dense_points() fixes from the main
trunk.
2005-11-13 00:46 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: 5.1.19rc0.
2005-11-13 00:45 fnevgeny
* src/dlmodule.c: Added const qualifier for error.
2005-11-12 22:09 fnevgeny
* src/: monwin.c, utils.c, utils.h, xprotos.h: Added "const"
qualifier for args of errmsg() and errwin().
2005-11-08 23:18 fnevgeny
* src/dlmodule.c: Make sure dlerror() message is not from a
previous dl* call.
2005-11-08 23:11 fnevgeny
* src/psdrv.c: Volatile settings were put inside
BeginSetup/EndSetup which broke cups accounting feature.
2005-10-28 23:42 fnevgeny
* src/drawticks.c: Shut up gcc-4 about uninitialized variables.
2005-10-22 23:56 fnevgeny
* src/fontwin.c: XtVaCreateWidget was used instead of
XtCreateWidget.
2005-05-19 23:41 fnevgeny
* COPYRIGHT, doc/UsersGuide.sgml, src/helpwin.c, src/main.c:
Copyright notices updated.
2005-05-19 23:30 fnevgeny
* src/plotone.c, doc/UsersGuide.sgml: Allow BARDY and BARDYDY sets
in XY graphs.
2005-05-19 23:18 fnevgeny
* src/buildinfo.c: 5.1.19 started.
2005-01-02 01:46 fnevgeny
* src/buildinfo.c: 5.1.18 release.
2004-12-28 01:43 fnevgeny
* doc/CHANGES.html: 5.1.18 release candidate.
2004-12-28 01:40 fnevgeny
* src/pars.yacc: Implemented string concatenation.
2004-12-28 01:39 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: 5.1.18
release candidate.
2004-12-28 01:35 fnevgeny
* ac-tools/config.guess: Updated config.guess.
2004-09-23 00:56 fnevgeny
* src/pars.yacc: Set drawing objects' default properties in sync
with grdefaults.
2004-09-23 00:47 fnevgeny
* src/defaults.c: Set tick label size to grdefault's.
2004-09-23 00:26 fnevgeny
* src/Tab.c: Backported font fixes for the Tab widget.
2004-09-23 00:26 fnevgeny
* src/buildinfo.c: Started 5.1.18 development.
2004-08-13 23:27 fnevgeny
* doc/UsersGuide.sgml, src/buildinfo.c: 5.1.17 final.
2004-08-13 00:46 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c, templates/Default.agr: 5.1.17rc1.
2004-08-04 23:37 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: 5.1.17rc0.
2004-08-04 22:37 fnevgeny
* src/pdfdrv.c: Fixed crash in PDF when using patterns with
PDF-1.4.
2004-08-03 12:35 fnevgeny
* scripts/cvs2cl.pl: Updated cvs2cl.
2004-08-02 22:54 fnevgeny
* Xbae/Xbae/Create.c: Backported font width fixes.
2004-07-31 01:52 fnevgeny
* src/x11drv.c: Backported page frame fix.
2004-07-31 00:36 fnevgeny
* src/: Tab.c, XMgrace.ad, xmgrace.c, Tab.h: Backported tabFontList
changes.
2004-07-31 00:31 fnevgeny
* src/pdfdrv.c: Changed default PDF dpi to 300.
2004-07-31 00:30 fnevgeny
* src/buildinfo.c: Started 5.1.17 development.
2004-07-04 00:13 fnevgeny
* src/buildinfo.c: 5.1.16 final.
2004-07-04 00:12 fnevgeny
* doc/CHANGES.html: Mangled emails.
2004-07-03 23:47 fnevgeny
* COPYRIGHT, Makefile, cmath.h, ac-tools/config.h.in,
arch/os2/config.h.os2, doc/CHANGES.html, src/alloca.c,
src/as274c.c, src/as274c.h, src/bitmaps.h, src/computils.c,
src/compwin.c, src/comwin.c, src/dates.c, src/defaults.c,
src/defines.h, src/device.c, src/device.h, src/devlist.h,
src/dlmodule.c, src/dlmodule.h, src/draw.c, src/draw.h,
src/drawticks.c, src/dummydrv.c, src/dummydrv.h, src/eblockwin.c,
src/editpwin.c, src/events.c, src/events.h, src/f2c.h,
src/featext.c, src/files.c, src/files.h, src/fileswin.c,
src/fit.c, src/fontwin.c, src/fourier.c, src/globals.h,
src/graphappwin.c, src/graphs.c, src/graphs.h, src/graphutils.c,
src/graphutils.h, src/helpwin.c, src/hotwin.c, src/iofilters.c,
src/jbitmaps.h, src/lmdif.c, src/locatewin.c, src/main.c,
src/mathstuff.c, src/mathstuff.h, src/mbitmaps.h, src/mfdrv.c,
src/mfdrv.h, src/mifdrv.c, src/mifdrv.h, src/miscwin.c,
src/missing.c, src/missing.h, src/monwin.c, src/motifinc.h,
src/motifutils.c, src/nonlfit.c, src/nonlwin.c, src/noxprotos.h,
src/objutils.c, src/params.c, src/pars.yacc, src/parser.h,
src/patterns.h, src/pdfdrv.c, src/pdfdrv.h, src/plotone.c,
src/plotone.h, src/plotwin.c, src/printwin.c, src/protos.h,
src/psdrv.c, src/psdrv.h, src/ptswin.c, src/regionutils.c,
src/regionwin.c, src/rstdrv.c, src/rstdrv.h, src/setappwin.c,
src/setutils.c, src/setwin.c, src/ssdata.c, src/ssdata.h,
src/strwin.c, src/svgdrv.c, src/svgdrv.h, src/t1fonts.c,
src/t1fonts.h, src/tickwin.c, src/utils.c, src/utils.h,
src/worldwin.c, src/x11drv.c, src/x11drv.h, src/xmgrace.c,
src/xprotos.h, src/xutil.c: Got rid of my email @plasma-gate...
2004-07-03 00:53 fnevgeny
* Xbae/Xbae/Matrix.c: Backported osfCancel fix.
2004-07-01 10:17 fnevgeny
* doc/CHANGES.html, src/buildinfo.c, templates/Default.agr: 5.1.16
release candidate 1.
2004-07-01 01:03 fnevgeny
* src/editpwin.c: Make sure the last entered cell's data it
commited.
2004-06-26 01:11 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c: 5.1.16 release candidate 0.
2004-06-26 01:04 fnevgeny
* ac-tools/Make.conf.in, ac-tools/aclocal.m4,
ac-tools/configure.in, src/Makefile: No longer check for libtiff.
2004-06-26 00:46 fnevgeny
* src/pdfdrv.c: Backported PDFlib6 compatibility issues.
2004-06-24 00:52 fnevgeny
* doc/FAQ.sgml: Maillists/forum updates.
2004-06-07 20:31 fnevgeny
* src/ssdata.c: Replaced a meaningless error message when trying to
load data with few string columns as a single set.
2004-06-07 20:26 fnevgeny
* src/tickwin.c: Made custom ticks/labels table scroll by 1 row.
2004-06-07 20:22 fnevgeny
* src/buildinfo.c: Started 5.1.16 development.
2004-05-30 23:24 fnevgeny
* src/buildinfo.c: Final 5.1.15 release.
2004-05-27 00:10 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, src/buildinfo.c: 5.1.15rc1
snapshot.
2004-05-26 23:34 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2004-05-26 22:02 fnevgeny
* src/buildinfo.c: Replaced netscape->mozilla.
2004-05-26 21:50 fnevgeny
* src/fit.c: In xcor, only the _absolute_ value at 0 is normalized
to 1.
2004-05-25 23:02 fnevgeny
* src/events.c: Fixed locator in polar coords.
2004-05-10 00:06 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: 5.1.15rc0
snapshot.
2004-05-10 00:06 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2004-04-21 22:28 fnevgeny
* src/pars.yacc: F_PPPPD and F_OF_PPPPPD were added incorrectly...
2004-04-16 23:19 fnevgeny
* src/featext.c: Fixed get_half_max_width(). Old version could give
anything for multipeaks.
2004-04-13 23:27 fnevgeny
* T1lib/t1lib/: sysconf.h, t1base.c, t1misc.h: Renamed MAXPATHLEN
to T1_MAXPATHLEN.
2004-01-24 14:44 fnevgeny
* src/params.c, src/pars.yacc, templates/Default.agr: Use one-line
format when saving graph's world and viewport settings.
2004-01-24 13:50 fnevgeny
* src/defines.h: Increased MAX_TICKS to 256 per popular demand.
2004-01-24 13:43 fnevgeny
* src/pars.yacc: Added safety check for custom tick label number
not exceeding MAX_TICKS.
2004-01-24 13:35 fnevgeny
* src/buildinfo.c: Started 5.1.15.
2004-01-07 23:08 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: Final 5.1.14 release.
2004-01-07 22:18 fnevgeny
* COPYRIGHT, doc/UsersGuide.sgml, src/helpwin.c, src/main.c:
Updated the copyright notice.
2003-12-24 23:08 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: 5.1.14
release candidate 1.
2003-12-24 21:51 fnevgeny
* grace_np/grace_np.c: Fixed race condition (patch by Tobias Oed).
2003-12-24 21:32 fnevgeny
* src/xmgrace.c: Fixed page size sync in the free mode.
2003-12-12 23:33 fnevgeny
* cmath.h, cephes/isnan.c: Chech for isnan() macro.
2003-12-05 00:17 fnevgeny
* T1lib/t1lib/sysconf.h: Updated T1LIB_IDENT to "1.3.1p2-grace".
2003-12-04 23:22 fnevgeny
* T1lib/t1lib/t1base.c: Fixed crash in T1_GetAfmFilePath() when the
afm file doesn't exist.
2003-12-04 23:06 fnevgeny
* src/t1fonts.c: Avoided calling grace_path() recursively.
2003-12-03 23:10 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c,
templates/Default.agr: Grace-5.1.14 release candidate #0.
2003-12-03 23:08 fnevgeny
* src/pars.yacc: Allow for DL modules to define functions of 4 and
5 parameters.
2003-12-02 23:45 fnevgeny
* src/x11drv.c: xlibfillrule wasn't properly initialized due to a
typo.
2003-11-16 23:41 fnevgeny
* src/computils.c: Use mutiplication sign in output of regression
report.
2003-10-22 23:46 fnevgeny
* src/motifutils.c: Use XStringToKeysym() to convert char to
XKeySym for mnemonics.
2003-10-22 23:42 fnevgeny
* src/: compwin.c, featext.c, fileswin.c, graphappwin.c, hotwin.c,
locatewin.c, miscwin.c, motifutils.c, regionwin.c, rstdrv.c,
setappwin.c, setwin.c, strwin.c, tickwin.c, worldwin.c: In all
calls to CreatePanelChoice(), end the vararg list with NULL, not
0. This is an issue on 64-bit platforms. Also, removed the last
redundant arg.
2003-10-22 23:27 fnevgeny
* src/buildinfo.c: Started 5.1.14 development.
2003-10-13 23:53 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c: Final 5.1.13 release.
2003-10-13 23:45 fnevgeny
* src/pars.yacc: Generalize VEC_D '.' LENGTH to array '.' LENGTH.
2003-08-26 01:08 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c: Grace-5.1.13 release candidate #1.
2003-08-26 01:04 fnevgeny
* src/pars.yacc: Implemented IMIN() and IMAX() aggregate functions.
2003-08-18 01:25 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2003-08-18 00:43 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: Grace-5.1.13 release
candidate.
2003-08-18 00:37 fnevgeny
* src/xmgrace.c: Fixed special parsing of the "-display" arg.
2003-07-27 23:19 fnevgeny
* src/mifdrv.c: Added font kerning to the MIF driver.
2003-04-23 12:08 fnevgeny
* src/tickwin.c: Minor cosmetic changes of the Axes dialog.
2003-03-19 23:36 fnevgeny
* src/: graphs.c, plotone.c: Enabled avalues for HILO sets.
2003-03-11 00:50 fnevgeny
* src/: fontwin.c, t1fonts.c, t1fonts.h: Compatibility changes for
T1lib-5.0.0.
2003-03-09 00:24 fnevgeny
* src/compwin.c: A typo fixed.
2003-03-09 00:23 fnevgeny
* src/buildinfo.c: Started 5.1.13 development.
2003-02-24 00:05 fnevgeny
* src/buildinfo.c: Final 5.1.12 release.
2003-02-22 00:20 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c:
Grace-5.1.12 release candidate #2.
2003-02-22 00:06 fnevgeny
* src/pars.yacc: Added RSUM(vexpr) - running sum.
2003-02-21 23:36 fnevgeny
* src/setappwin.c: Use SpinChoice for symbol skip control; disallow
negative values.
2003-02-21 00:38 fnevgeny
* fonts/Makefile: enc/IsoLatin7.enc was missing in the list.
2003-02-21 00:05 fnevgeny
* src/graphutils.c: Implemented zooming and scrolling of log plots.
2003-02-19 22:45 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c: Grace-5.1.12 release candidate #1.
2003-02-18 22:41 fnevgeny
* fonts/enc/: IsoLatin1.enc, IsoLatin2.enc: Removed extraneous
accent glyphs in the 0x9? range.
2003-02-16 02:10 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c:
Grace-5.1.12 release candidate.
2003-02-16 01:41 fnevgeny
* src/pars.yacc: Verify validity of g[whichgraph] and
g[whichgraph].t[naxis] accesses.
2003-02-16 01:34 fnevgeny
* src/graphs.h: Added is_valid_axis() proto to graphs.h.
2003-02-16 01:06 fnevgeny
* T1lib/t1lib/: parseAFM.c, sysconf.h: Fixed parsing of some fonts
(patch by Rainer Menzner).
2003-02-16 00:26 fnevgeny
* arch/os2/config.h.os2, ac-tools/config.h.in,
ac-tools/configure.in, arch/vms/configure.com: Get rid of vfork
stuff.
2003-02-16 00:17 fnevgeny
* grace_np/grace_np.c: Proper handling of signals (SIGSTOP),
getting rid of vfork and misc cleanings. (The patch by Tobias
Oed).
2003-01-26 23:43 fnevgeny
* src/pars.yacc: Added INT(x,y).
2003-01-26 23:16 fnevgeny
* src/motifutils.c: Fixed crash in GetTransformDialogSettings()
with multiple sets selected.
2003-01-22 23:47 fnevgeny
* src/ssdata.c: A memory leak fixed.
2003-01-22 23:44 fnevgeny
* src/: files.c, ssdata.c: Fixed memory corruption when reading in
block data.
2003-01-22 23:17 fnevgeny
* src/buildinfo.c, templates/Default.agr: Started 5.1.12
development.
2003-01-19 02:27 fnevgeny
* doc/FAQ.sgml, src/buildinfo.c: Final 5.1.11 release.
2003-01-08 23:47 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c:
grace-5.1.11rc2 snapshot.
2003-01-07 22:51 fnevgeny
* src/plotone.c: In XY charts, check that abscissas of all sets are
the same.
2003-01-03 00:45 fnevgeny
* doc/CHANGES.html: [no log message]
2003-01-03 00:37 fnevgeny
* src/buildinfo.c: grace-5.1.11rc1 snapshot.
2003-01-03 00:36 fnevgeny
* COPYRIGHT, doc/CHANGES.html, doc/UsersGuide.sgml, doc/grace.1,
src/helpwin.c, src/main.c, templates/Default.agr: Updated
copyright statements.
2003-01-03 00:08 fnevgeny
* src/motifutils.c: Use "+"/"-" instead of "shown"/"hidden" in the
graph selectors.
2003-01-02 22:44 fnevgeny
* ac-tools/: aclocal.m4, configure.in: Modifications of the auto*
stuff to work with autoconf-2.53. Allow the Fortran compiler to
be defined with the full path.
2002-12-28 01:02 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2002-12-25 02:31 fnevgeny
* src/files.c: Fixed a minor memory leak (during data file
parsing).
2002-12-24 22:50 fnevgeny
* scripts/makerelease: Exclude .cvsignore files from tar.gz.
2002-12-24 22:47 fnevgeny
* examples/stackedb.agr: A bit more meaningful legends for the
stackedb example ;-)
2002-12-12 00:20 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml, doc/grace.1,
src/buildinfo.c: Grace-5.1.11 release candidate #0.
2002-12-11 23:52 fnevgeny
* src/: files.c, files.h, setutils.c: Replaced
read_xyset_fromfile() with universal update_set_from_file(), thus
enabling hotlinks for all set types.
2002-12-11 23:29 fnevgeny
* src/hotwin.c: Run hotupdate on all graphs, not only the current
one.
2002-12-11 23:24 fnevgeny
* src/rstdrv.c: Set resolution in the png output.
2002-12-11 23:23 fnevgeny
* src/pars.yacc: Got rid of the unused "UNLINK" token.
2002-12-11 23:15 fnevgeny
* grace_np/grace_np.c: Detect pipe closing and/or exit of the Grace
process. Some cleanup of the code.
2002-12-11 00:54 fnevgeny
* src/pars.yacc: Verify the set selection is valid.
2002-12-11 00:54 fnevgeny
* src/setutils.c: Make sure the negative (-1) arg isn't allowed in
allocate_set().
2002-12-07 15:50 fnevgeny
* fonts/: Makefile, enc/CP1251.enc, enc/KOI8-R.enc, enc/KOI8-U.enc:
Added encoding files for Russian codepages koi8-r and cp1251 and
for Ukrainian codepage koi8-u, contributed by Yura Zotov.
2002-12-07 15:06 fnevgeny
* src/tickwin.c: Use higher precision for tick locations.
2002-12-07 13:41 fnevgeny
* src/pars.yacc: Added UPDATEALL command.
2002-12-07 13:35 fnevgeny
* src/buildinfo.c: Started 5.1.11 development.
2002-09-11 22:48 fnevgeny
* doc/FAQ.sgml, src/buildinfo.c: Final 5.1.10 release.
2002-09-02 00:08 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: 5.1.10
release candidate #1.
2002-08-29 00:56 fnevgeny
* src/pdfdrv.c: The pdflib patterned->solid colorspace switch
workaround added.
2002-08-27 22:58 fnevgeny
* src/regionwin.c: Refresh canvas after a region was killed.
2002-08-22 00:00 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c,
templates/Default.agr: 5.1.10 release candidate #0.
2002-08-21 23:19 fnevgeny
* src/fontwin.c: Auto-update font size so that font bbox fits into
matrix cell.
2002-08-21 22:37 fnevgeny
* src/editpwin.c: Set insertion position in the set editor
corresponding to the mouse click.
2002-08-20 23:13 fnevgeny
* fonts/enc/IsoLatin7.enc: Added IsoLatin7 encoding file.
2002-08-20 23:04 fnevgeny
* src/fontwin.c: Calculate FontBBox if the font's entry is
invalid/empty.
2002-08-16 12:50 fnevgeny
* src/draw.c: Fixed power in the rgb->srgb conversion.
2002-08-13 23:31 fnevgeny
* src/: draw.c, t1fonts.c: Invalidate AA gray levels' cache when
colormap changes.
2002-08-12 23:13 fnevgeny
* templates/Default.agr, src/globals.h: Changed default data format
to %.8g.
2002-08-07 23:51 fnevgeny
* src/: fontwin.c, t1fonts.c, t1fonts.h: Removed restriction on max
font name length.
2002-08-07 23:46 fnevgeny
* src/buildinfo.c: Replaced old-style "newwindow" openURL option
with "new-window" compatible with mozilla.
2002-08-06 00:33 fnevgeny
* src/motifutils.c: Disable showing hidden files by default and
added a checkbox to alter this behaviour (Motif-2.* only).
2002-08-06 00:32 fnevgeny
* src/buildinfo.c: Started 5.1.10 development.
2002-08-03 23:25 fnevgeny
* doc/CHANGES.html: A typo fixed.
2002-08-03 23:22 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: Final
5.1.9 release.
2002-07-31 22:39 fnevgeny
* src/fit.c: A typo fixed in crosscorr().
2002-07-30 00:46 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c: 5.1.9 release candidate 1.
2002-07-30 00:45 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2002-07-30 00:17 fnevgeny
* src/svgdrv.c: Transformation matrix fixed.
2002-07-29 23:55 fnevgeny
* src/svgdrv.h: Added svg_updatecmap() proto.
2002-07-29 23:55 fnevgeny
* src/svgdrv.c: Undo sRGB stuff.
2002-07-29 23:53 fnevgeny
* src/svgdrv.c: SVG driver updates: added devupdatecmap(),
clarified font names, use smarter coordinate transform, updated
DTD reference - all by [MD].
2002-07-29 23:37 fnevgeny
* T1lib/: t1lib/sysconf.h, t1lib/t1afmtool.c, t1lib/t1base.c,
t1lib/t1enc.c, t1lib/t1env.c, t1lib/t1load.c, t1lib/t1subset.c,
type1/scanfont.c, type1/t1io.c: Open all files in the binary
mode.
2002-07-22 23:23 fnevgeny
* src/pars.yacc: Allow trailing semicolon in the batch language.
2002-07-13 01:25 fnevgeny
* src/device.c: Fixed rounding errors in set_page_dimensions() and
get_device_page_dimensions().
2002-07-12 00:46 fnevgeny
* ac-tools/configure.in: Check for PDFLIB >= 4.0.3 (due to the PNG
conflict in previous ones).
2002-07-03 01:00 fnevgeny
* src/nonlfit.c: Fixed 1/n error in correlation().
2002-06-25 23:46 fnevgeny
* doc/CHANGES.html, src/buildinfo.c, templates/Default.agr: 5.1.9
release candidate 0.
2002-06-25 23:39 fnevgeny
* grace_np/grace_np.c: Run xmgrace in the nosafe mode when invoked
from GraceOpen().
2002-06-25 23:27 fnevgeny
* src/mifdrv.c: Derive fontfamily from fontalias.
2002-06-22 14:40 fnevgeny
* Makefile, auxiliary/Makefile, doc/CHANGES.html, doc/Makefile,
doc/UsersGuide.sgml, examples/Makefile, fonts/Makefile,
grace_np/Makefile, grconvert/Makefile, src/Makefile,
templates/Makefile: Make install fixes by Peter Breitenlohner:
convcal now gets stripped, "make -n install links" works, and
DESTDIR introduced for building binary packages.
2002-06-20 22:26 fnevgeny
* src/plotone.h: Get rid of unused #define's.
2002-06-19 23:00 fnevgeny
* src/svgdrv.c: Implemented patterned fills in SVG [MD].
2002-06-17 23:49 fnevgeny
* src/draw.c: Extraneous semicolons removed.
2002-06-17 23:20 fnevgeny
* src/: draw.c, draw.h: Added sRGB color transformations [MD].
2002-06-17 23:04 fnevgeny
* src/pdfdrv.c: Patterned fills were transparent in PDF.
2002-06-13 00:07 fnevgeny
* src/xmgrace.c: App name was missing in the XtDisplayInitialize()
call.
2002-06-07 00:43 fnevgeny
* src/main.c: Oops. -(no)safe flags were missed in the usage().
2002-06-07 00:41 fnevgeny
* src/buildinfo.c: Started 5.1.9.
2002-06-02 23:06 fnevgeny
* ac-tools/configure.in: PDFlib version string was misspelled.
2002-06-02 23:05 fnevgeny
* src/hotwin.c: An unused variable removed.
2002-06-01 23:03 fnevgeny
* src/buildinfo.c: Final 5.1.8 release.
2002-05-28 23:25 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: 5.1.8 release candidate #2.
2002-05-28 00:17 fnevgeny
* doc/UsersGuide.sgml, src/hotwin.c: Removed broken "Command"
function of the hotlink popup.
2002-05-27 23:59 fnevgeny
* src/mifdrv.c: Better fontdefinitions in the MIF driver [MD].
2002-05-27 23:59 fnevgeny
* src/: t1fonts.c, t1fonts.h: Added get_fontfullname(),
get_fontfamilyname(), get_fontweight(), and get_italic_angle()
wrappers around T1lib functions [MD].
2002-05-27 23:10 fnevgeny
* src/featext.c: Update canvas after feature extraction.
2002-05-27 23:07 fnevgeny
* src/helpwin.c: Updated PDFlib copyright.
2002-05-24 00:17 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: 5.1.8
release candidate #1.
2002-05-24 00:00 fnevgeny
* src/pdfdrv.c: Move fillrule setting out of path construction.
2002-05-23 22:40 fnevgeny
* ac-tools/configure.in: Check for PDFlib-4.0.1.
2002-05-23 22:30 fnevgeny
* src/pdfdrv.c: Backported PDF patterns from 5.2 by MD.
2002-05-22 23:48 fnevgeny
* doc/grace.1, src/globals.h, src/main.c, src/miscwin.c,
src/pars.yacc: Implemented safe mode.
2002-05-16 23:38 fnevgeny
* src/helpwin.c: An off-by-one allocation error fixed.
2002-05-05 00:29 fnevgeny
* src/x11drv.c: Set solid fill style before flushing the X canvas
background.
2002-05-01 00:09 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, src/buildinfo.c,
templates/Default.agr: 5.1.8 release candidate #0.
2002-04-30 22:09 fnevgeny
* ac-tools/configure.in: Stop with error if Motif can't be found by
configure.
2002-04-07 23:07 fnevgeny
* src/utils.c: Use leading zeros in year formats.
2002-03-29 23:22 fnevgeny
* src/ssdata.c: Use strchr() instead of BSD-ish index().
2002-03-28 13:22 fnevgeny
* src/xmgrace.c: Don't open the display twice.
2002-03-28 13:11 fnevgeny
* src/buildinfo.c: 5.1.8 development started.
2002-03-18 23:43 fnevgeny
* src/buildinfo.c: Final 5.1.7 release.
2002-03-17 01:10 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c: 5.1.7 release candidate #2.
2002-03-17 01:07 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2002-03-17 00:57 fnevgeny
* src/: psdrv.c, psdrv.h: Restrict PS output line length to 70
chars.
2002-03-16 18:57 fnevgeny
* src/xmgrace.c: Added a XtSetLanguageProc() call to the GUI
initialization.
2002-03-14 00:44 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: 5.1.7
release candidate #1.
2002-03-14 00:25 fnevgeny
* src/: graphutils.c, graphutils.h, pars.yacc, worldwin.c:
Implemented snake matrix fill in arrange_graphs().
2002-03-13 23:33 fnevgeny
* ac-tools/aclocal.m4: Removed cyclic dependence in
CHECK_MOTIF->CHECK_LESSTIF->CHECK_MOTIF.
2002-03-13 23:25 fnevgeny
* src/pars.yacc: When accessing drawing objects by id (e.g. "WITH
STRING nexpr") allocate the referenced object if necessary.
2002-03-12 23:46 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c: 5.1.7 release candidate #0.
2002-03-12 23:41 fnevgeny
* src/x11drv.c: Don't set BackingStore attribute of the root
window.
2002-03-12 23:26 fnevgeny
* src/x11drv.c: Detect max request size of the X server and set
max_path_limit accordingly.
2002-03-12 23:15 fnevgeny
* src/: computils.c, compwin.c, fit.c, noxprotos.h, pars.yacc,
xmgrace.c: Extended x-correlation stuff to calculate
x-covariance, too.
2002-02-28 00:23 fnevgeny
* ac-tools/aclocal.m4: Include <Xm/XmAll.h> instead of <Xm/Xm.h> in
the Motif check to make sure _all_ Motif headers are present.
2002-02-28 00:10 fnevgeny
* src/graphs.c: When setting axis scaling to log from other type,
set reasonable major/minor settings and world bounds.
2002-02-27 22:29 fnevgeny
* src/: graphs.c, plotone.c: Honour symskip for error bars and all
set types.
2002-02-19 22:51 fnevgeny
* src/: main.c, pars.yacc, ssdata.c, ssdata.h: Allow defining
string columns when creating sets from block data via the CLI or
parser.
2002-02-19 22:51 fnevgeny
* src/files.c: Simply ignore comments in data files instead of
breaking current set.
2002-02-19 22:39 fnevgeny
* src/x11drv.c: Set DPI of the X11 device from the X server props.
2002-02-05 22:20 fnevgeny
* examples/axes.agr: Removed zero-length line objects in axes.agr.
2002-02-04 22:55 fnevgeny
* src/plotone.c: Allow SET_XYZ in polar graphs.
2002-02-04 22:45 fnevgeny
* src/graphs.c: Don't reset graph settings in set_graph_type() when
the graph is already of the requested type.
2002-02-01 22:24 fnevgeny
* src/Makefile: $(LDFLAGS) were missing in the -version output.
2002-02-01 22:16 fnevgeny
* ac-tools/: aclocal.m4, configure.in: Fixed Motif checks.
2002-01-31 23:58 fnevgeny
* src/buildinfo.c, templates/Default.agr: Started 5.1.7
development.
2002-01-27 21:54 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, src/buildinfo.c: Final 5.1.6
release.
2002-01-27 21:53 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2002-01-27 21:38 fnevgeny
* ac-tools/configure.in: Var names were interfering w/
ACX_SAVE_STATE/ACX_RESTORE_STATE.
2002-01-27 21:30 fnevgeny
* src/files.c: Lines starting with spaces weren't parsed.
2002-01-21 18:41 fnevgeny
* src/utils.c: Fixed compilation on systems without setlocale().
2002-01-12 23:54 fnevgeny
* src/: computils.c, fit.c: More xcorr fixes and checks.
2002-01-12 22:53 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: 5.1.6 release candidate #1.
2002-01-12 21:57 fnevgeny
* src/: computils.c, fit.c, noxprotos.h: Fixed xcorrelation.
2002-01-12 19:51 fnevgeny
* ac-tools/: aclocal.m4, configure.in: Check for FFTW library
version >= 2.1.3.
2002-01-12 19:05 fnevgeny
* ac-tools/: aclocal.m4, configure.in: Re-wrote Motif checks.
2002-01-09 00:20 fnevgeny
* src/motifutils.c: Added a "My Computer" FSB entry for the Cygwin
port.
2002-01-09 00:15 fnevgeny
* ac-tools/aclocal.m4: Fixed order of X libs while detecting Motif.
2002-01-03 23:26 fnevgeny
* arch/win32/README: Updated win32 README.
2002-01-03 23:21 fnevgeny
* COPYRIGHT, doc/UsersGuide.sgml, src/helpwin.c, src/main.c:
Upgraded copyright notices.
2002-01-03 23:15 fnevgeny
* T1lib/t1lib/.dependencies, T1lib/t1lib/parseAFM.c,
T1lib/t1lib/parseAFM.h, T1lib/t1lib/sysconf.h,
T1lib/t1lib/t1aaset.c, T1lib/t1lib/t1aaset.h,
T1lib/t1lib/t1afmtool.c, T1lib/t1lib/t1afmtool.h,
T1lib/t1lib/t1base.c, T1lib/t1lib/t1base.h,
T1lib/t1lib/t1delete.c, T1lib/t1lib/t1delete.h,
T1lib/t1lib/t1enc.c, T1lib/t1lib/t1enc.h, T1lib/t1lib/t1env.c,
T1lib/t1lib/t1env.h, T1lib/t1lib/t1extern.h,
T1lib/t1lib/t1finfo.c, T1lib/t1lib/t1finfo.h,
T1lib/t1lib/t1global.h, T1lib/t1lib/t1lib.h,
T1lib/t1lib/t1load.c, T1lib/t1lib/t1load.h, T1lib/t1lib/t1misc.h,
T1lib/t1lib/t1outline.c, T1lib/t1lib/t1outline.h,
T1lib/t1lib/t1set.c, T1lib/t1lib/t1set.h, T1lib/t1lib/t1subset.c,
T1lib/t1lib/t1subset.h, T1lib/t1lib/t1trans.c,
T1lib/t1lib/t1trans.h, T1lib/t1lib/t1types.h,
T1lib/type1/.dependencies, T1lib/type1/fontfcn.c,
T1lib/type1/objects.c, T1lib/type1/pictures.h,
T1lib/type1/regions.c, T1lib/type1/scanfont.c,
T1lib/type1/t1io.c, ac-tools/configure.in: Upgraded T1lib to
1.3.1.
2001-12-30 00:20 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c, templates/Default.agr: 5.1.6 release candidate
#0.
2001-12-30 00:10 fnevgeny
* src/: Make.dep, files.c: If saving project under the same name,
don't warn about overwriting.
2001-12-26 23:42 fnevgeny
* Xbae/: LICENSE, README, Xbae/Create.c, Xbae/Input.c,
Xbae/Input.h, Xbae/InputP.h, Xbae/LICENSE, Xbae/Make.common,
Xbae/Matrix.c, Xbae/Matrix.h, Xbae/Methods.c: Backported from 5.2
Xbae changes.
2001-12-26 22:34 fnevgeny
* src/draw.c: Make sure angle2 > angle1 in arc drawing.
2001-12-26 22:33 fnevgeny
* src/gd.c: Fixed arc drawing for negative angles.
2001-12-18 23:37 fnevgeny
* src/motifutils.c: Fixed a typo in GetTransformDialogSettings()
that broke the test for src/dest selection exclusiveness.
2001-12-18 22:55 fnevgeny
* ac-tools/configure.in: Use the bundled Xbae by default.
2001-12-18 00:25 fnevgeny
* src/drawticks.c: BBox for calculation of the axis label
(auto)placement was left empty if tick marks weren't drawn.
2001-12-18 00:19 fnevgeny
* src/motifutils.c: Optimized updating of pulldown selectors.
2001-12-01 21:18 fnevgeny
* src/pars.yacc: Allow accessing array segments (e.g. x[4:10]).
2001-12-01 16:23 fnevgeny
* src/pars.yacc: Added SUM(vexpr).
2001-12-01 16:14 fnevgeny
* src/pars.yacc: Implemented KILL REGNUM.
2001-12-01 15:58 fnevgeny
* src/pars.yacc: Implemented: region on set evaluation
(REGNUM(selectset)), and applying region and logical restriction
to a set (RESTRICT(selectset, vexpr) and RESTRICT(selectset,
REGNUM, onoff)).
2001-12-01 01:35 fnevgeny
* src/buildinfo.c: Hmm, why did I call it "rc"?
2001-12-01 01:12 fnevgeny
* src/graphutils.c: Regions weren't cleaned up in wipeout().
2001-11-30 23:43 fnevgeny
* src/: noxprotos.h, regionutils.c: Added kill_all_regions().
2001-11-30 23:42 fnevgeny
* src/pars.yacc: Simplify polygon region reallocation.
2001-11-30 23:37 fnevgeny
* src/buildinfo.c: 5.1.6 development started.
2001-11-23 00:12 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: Final
5.1.5 release.
2001-11-23 00:10 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2001-11-23 00:00 fnevgeny
* src/buildinfo.c: Include uname.version in the "-v" output.
2001-11-22 23:53 fnevgeny
* doc/Makefile: Implicitly set paper size in dvips params (in sync
with linuxdoc).
2001-11-15 11:09 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: 5.1.5 release candidate #1.
2001-11-15 10:49 fnevgeny
* src/draw.h: Extend max line width to 20.
2001-11-15 10:45 fnevgeny
* doc/: CHANGES.html, Makefile: Explicitly set output to file in
dvi->ps convertion.
2001-11-15 10:29 fnevgeny
* src/: miscwin.c, motifinc.h, motifutils.c: Added one more
argument to CreateScale() - delta, the value change when pressing
Ctrl+Left/Right arrows. Enlarged max symbol/font size to 1000.
Set delta for font size controls to 25 and for angle controls -
to 10.
2001-11-15 10:10 fnevgeny
* src/: graphs.c, plotone.c: Honour X axis min & invert flag in pie
charts.
2001-11-13 22:48 fnevgeny
* src/motifutils.c: Removed a redundant call of
UpdateOptionChoice() in CreateColorChoice().
2001-11-13 22:36 fnevgeny
* src/graphappwin.c: Allow for negative gaps in bar charts.
2001-11-13 22:22 fnevgeny
* src/x11drv.c: Added proper casts for color indices > 128.
2001-10-27 00:23 fnevgeny
* src/: buildinfo.c, helpwin.c, main.c, utils.c, utils.h: Keep jpeg
and pdflib version info.
2001-10-26 23:37 fnevgeny
* src/xmgrace.c: Urge people to use at least LessTif-0.92.
2001-10-14 23:24 fnevgeny
* src/motifutils.c: Optimize UpdateOptionChoice() for large N.
2001-10-14 22:43 fnevgeny
* src/: draw.c, draw.h, plotone.c: Check for proper world &
viewport settings in select_graph().
2001-10-02 14:31 fnevgeny
* doc/: CHANGES.html, FAQ.sgml: Removed Q&A on low-resolution
displays.
2001-10-02 14:13 fnevgeny
* src/xmgrace.c: Automatically adjust Xresources for low-resolution
displays (backported from 5.2.).
2001-10-01 23:53 fnevgeny
* src/fit.c: Std. dev. was wrongly calculated using n instead of
n-1 in the denominator.
2001-10-01 23:42 fnevgeny
* src/: buildinfo.c, helpwin.c, main.c, utils.c, utils.h: Include
libpng version in the buildinfo.
2001-10-01 23:34 fnevgeny
* src/: as274c.h, computils.c, fit.c: Minor cosmetic fixes by AM.
2001-10-01 23:30 fnevgeny
* src/pars.yacc: Implicitly cast to boolean double arguments used
as bool in the parser.
2001-09-15 23:24 fnevgeny
* doc/CHANGES.html, examples/Makefile, examples/dotest,
examples/reciprocal.agr, examples/xycolor.agr, src/xmgrace.c:
Added examples of XYCOLOR set presentation and reciprocal axis
scale, contributed by Nels Dumin.
2001-09-09 23:39 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: 5.1.5 release candidate #1.
2001-09-09 23:15 fnevgeny
* src/: events.c, graphappwin.c, xprotos.h: Update legend and
viewport dialog props when moving legend or resizing graph from
canvas.
2001-09-05 01:01 fnevgeny
* src/pars.yacc: Date format hint was ignored in the parser.
2001-08-19 00:01 fnevgeny
* doc/: Makefile, convcal.1: Added man page for convcal.
2001-08-03 23:35 fnevgeny
* src/main.c: Make result file output line-buffered instead of
block-buffered.
2001-08-03 23:20 fnevgeny
* ac-tools/configure.in: The argument of --with-printcmd configure
switch wasn't quoted.
2001-08-03 21:45 fnevgeny
* T1lib/: README, README.t1lib: Use a generic README for T1lib.
2001-07-27 01:17 fnevgeny
* doc/CHANGES.html, src/buildinfo.c, templates/Default.agr: 5.1.5
release candidate #0.
2001-07-27 01:11 fnevgeny
* src/plotone.c: Fixed drawing lef/right stairs line type.
2001-07-27 00:51 fnevgeny
* T1lib/t1lib/t1finfo.c: A bug in T1_QueryLigs() fixed.
2001-07-13 23:20 fnevgeny
* src/plotone.c: Don't use anything but main palette colors in
XYCOLOR.
2001-07-02 09:50 fnevgeny
* src/buildinfo.c: Final 5.1.4 release.
2001-06-21 01:05 fnevgeny
* arch/os2/: Make.conf.os2, README, config.h.os2: Minor/cosmetics
OS/2 changes (from AM).
2001-06-21 01:03 fnevgeny
* doc/Tutorial.sgml: Minor enchancements from AM.
2001-06-18 00:20 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: 5.1.4 release candidate #2.
2001-06-17 23:44 fnevgeny
* examples/tmc.c: Explicitly activate graphs in tmc.c.
2001-06-17 23:43 fnevgeny
* src/: graphs.c, graphs.h, pars.yacc: Added graph_allocate() - to
allocate an initially hidden graph. set_graph_active() uses it.
2001-06-17 01:24 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, src/buildinfo.c: 5.1.4 release
candidate #1.
2001-06-16 00:39 fnevgeny
* src/: graphs.c, graphs.h, graphutils.c, main.c, motifutils.c,
pars.yacc: Drop the second argument in set_graph_active().
2001-06-07 23:45 fnevgeny
* src/graphs.c: Make set_graph_active() work as set_graph_hidden()
when the flag is FALSE instead of kill_graph().
2001-06-07 23:44 fnevgeny
* src/: Make.dep, mathstuff.c: Added "protos.h" (for missing.h,
actually) to mathstuff.c and updated the deps.
2001-05-31 23:56 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c,
templates/Default.agr: 5.1.4 release candidate #0.
2001-05-31 23:34 fnevgeny
* doc/UsersGuide.sgml: Updated DLL docs for OS/2 (by AM).
2001-05-31 23:23 fnevgeny
* src/: Make.common, Make.dep, mathstuff.c, mathstuff.h, pars.yacc:
Moved all math wrappers/utility funcs from pars.yacc to the newly
added mathstuff.*. Added wrappers around Cephes ellpe() and
ellpk() which in fact calculated for (1-x) argument. The patch by
AM.
2001-05-31 23:05 fnevgeny
* src/compwin.c: In the "Sample points" dialog, even when the "log.
expression" is selected, one had to input some values into
start/step input fields anyway.
2001-05-31 22:48 fnevgeny
* src/rstdrv.c: Check that freed ihandle pointer is not referenced.
2001-04-08 16:02 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: Final
5.1.3 release.
2001-04-08 15:40 fnevgeny
* src/: draw.c, draw.h: Backported from 5.2 the linewidth/bbox
stuff.
2001-04-07 23:57 fnevgeny
* src/graphs.h: Use unsigned char as the symchar type in the
'plotarr' struct.
2001-04-07 22:49 fnevgeny
* src/: drawticks.c, graphs.c: Backported the axis label
autoplacement stuff.
2001-04-07 00:20 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/pars.yacc: Added
AUTOSCALE ONREAD (by Luc).
2001-03-31 16:29 fnevgeny
* ac-tools/shtool: Updated shtool to version 1.5.2.
2001-03-31 16:23 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2001-03-31 15:50 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c: 5.1.3 release candidate #2.
2001-03-31 15:41 fnevgeny
* doc/grace.1: Added RESOURCES and FILES sections.
2001-03-31 01:38 fnevgeny
* src/pdfdrv.c: Setting PDF compression level was done outside the
relevant scope.
2001-03-27 02:24 fnevgeny
* src/device.c: Oops... how it happened that the last change not
actually committed??
2001-03-21 00:15 fnevgeny
* src/printwin.c: The "Rescale plot on page size change" option in
the "File/Print setup" dialog had no effect if the selected
device was X11.
2001-03-15 22:00 fnevgeny
* src/: device.c, device.h: When switching output device, check
whether it supports direct printing and if not, set output to
file.
2001-03-08 00:51 fnevgeny
* src/defines.h: Get rid of obsolete LOCWORLD/LOCVIEW defines.
2001-03-06 00:25 fnevgeny
* src/pdfdrv.c: Include stdlib.h (for atoi()).
2001-03-01 00:04 fnevgeny
* src/: files.c, utils.c, utils.h: Removed fexists() as a separate
function. Added check for return value of filter_write() in
grace_openw().
2001-02-26 23:44 fnevgeny
* doc/CHANGES.html, doc/UsersGuide.sgml, src/buildinfo.c: 5.1.3
release candidate #1.
2001-02-26 23:33 fnevgeny
* src/tickwin.c: When switching to log scale, set major/minor tick
settings to 10/9 by default.
2001-02-26 23:23 fnevgeny
* T1lib/type1/scanfont.c: A wrong pointer cast fixed.
2001-02-25 13:49 fnevgeny
* src/xutil.c: A stupid typo fixed.
2001-02-22 23:19 fnevgeny
* src/: utils.c, xutil.c: Set icon's title = project name.
2001-02-19 23:44 fnevgeny
* T1lib/t1lib/: t1subset.c, t1subset.h: Oops. t1subset* forgotten.
2001-02-19 23:43 fnevgeny
* src/pdfdrv.c, src/t1fonts.c, src/t1fonts.h, T1lib/Makefile,
T1lib/t1lib/.dependencies, T1lib/t1lib/Makefile,
T1lib/t1lib/sysconf.h, T1lib/t1lib/t1afmtool.c,
T1lib/t1lib/t1base.c, T1lib/t1lib/t1base.h,
T1lib/t1lib/t1finfo.c, T1lib/t1lib/t1lib.h, T1lib/t1lib/t1misc.h,
T1lib/t1lib/t1outline.c, T1lib/type1/hdigit.h,
T1lib/type1/paths.c, T1lib/type1/scanfont.c, T1lib/type1/t1io.c,
T1lib/type1/type1.c, ac-tools/configure.in: Backported from the
main trunk T1lib-1.1 & related changes.
2001-02-14 00:46 fnevgeny
* src/utils.c: A text polish.
2001-02-12 23:44 fnevgeny
* src/psdrv.c: List used fonts in %%DocumentNeededResources.
2001-02-12 23:10 fnevgeny
* doc/Tutorial.sgml: Updated tutorials.
2001-02-05 23:48 fnevgeny
* ac-tools/: config.guess, config.sub: Updated config.guess and
config.sub.
2001-02-05 23:20 fnevgeny
* scripts/cvs2cl.pl: Updated cvs2cl.pl.
2001-02-03 15:46 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, doc/UsersGuide.sgml,
src/buildinfo.c, templates/Default.agr: 5.1.3 release candidate
#0.
2001-02-03 15:29 fnevgeny
* ac-tools/configure.in: Allow to specify print command at
`configure' time.
2001-02-03 15:03 fnevgeny
* src/dates.c: Enable grace to read floats when they are explicitly
signed and positive.
2001-01-20 01:14 fnevgeny
* src/pars.yacc: Added "HELP url" and "HELP" to the parser.
2001-01-20 00:54 fnevgeny
* COPYRIGHT, src/helpwin.c, src/main.c: Updated copyright dates.
2001-01-20 00:52 fnevgeny
* src/plotone.c: Legend entries for BARDY and BARDYDY sets weren't
drawn.
2001-01-20 00:13 fnevgeny
* src/: buildinfo.c, mifdrv.c: Produce a mif-file with a textflow
in which the graph is included, so it can be included in another
FrameMaker document. A conversion table added to generate the
hex-codes needed in mif-files for special characters. The patch
by Matthias Dillier.
2001-01-19 23:54 fnevgeny
* Xbae/Xbae/Input.c: Include stdio.h for *printf().
2000-12-02 00:01 fnevgeny
* grace_np/grace_np.h: Removed unused EXIT_* #defines from
grace_np.h.
2000-12-01 23:22 fnevgeny
* src/defaults.c: Init legend's bbox.
2000-11-30 23:18 fnevgeny
* src/tickwin.c: Precision of offsets in the Axes dialog were
restricted to two digits.
2000-11-30 23:11 fnevgeny
* src/motifutils.c: Fixed rounding error in calculation pulldown
menu length.
2000-09-10 02:59 fnevgeny
* src/buildinfo.c: Final 5.1.2 release.
2000-09-10 02:50 fnevgeny
* examples/tstack.agr: Updated world stack manipulation example.
2000-09-09 02:19 fnevgeny
* ac-tools/: config.guess, config.sub: Newest config.guess and
config.sub from the GNU ftp site.
2000-09-09 01:59 fnevgeny
* arch/os2/: Make.conf.os2, README, config.h.os2: Minor updates
from AM.
2000-09-07 02:59 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: grace-5.1.2rc2 snapshot.
2000-09-07 02:50 fnevgeny
* templates/Default.agr: Updated default template.
2000-09-07 02:40 fnevgeny
* src/: defines.h, setappwin.c, setutils.c: Implemented baseline
setting to the set (y) average - based on the patch by Dominique
Bissieres.
2000-09-07 01:20 fnevgeny
* Xbae/Xbae/Create.c: Removed compile-time restriction on the
number of X server screens.
2000-09-07 00:33 fnevgeny
* src/draw.c: Fixed a floating point rounding bug in the polygon
clipping.
2000-09-01 00:59 fnevgeny
* doc/CHANGES.html, src/buildinfo.c: grace-5.1.2rc1 snapshot.
2000-09-01 00:49 fnevgeny
* src/ssdata.c: create_set_fromblock() didn't copy but merely
assigned strings. The patch by LM.
2000-08-28 00:18 fnevgeny
* src/setutils.c: Remove XYZ hack from set_dataset_type().
2000-08-24 01:05 fnevgeny
* doc/UsersGuide.sgml, src/pars.yacc: Added PAGE RESIZE xdim, ydim.
2000-08-24 00:19 fnevgeny
* patches/sgmltools.patch: Removed sgmltools.patch since it's
incorporated in the current linuxdoc suite.
2000-08-24 00:13 fnevgeny
* ac-tools/configure.in, doc/UsersGuide.sgml: Require PDFlib-3.02.
2000-08-22 00:56 fnevgeny
* src/buildinfo.c: 5.1.2 release candidate.
2000-08-22 00:53 fnevgeny
* doc/CHANGES.html, doc/Makefile, doc/UsersGuide.sgml,
src/computils.c, src/motifinc.h, src/motifutils.c,
src/printwin.c, src/psdrv.c, src/psdrv.h: Backported some stuff
from the main 5.2 trunk: - backslashes in PS; - DocumentData in
PS; - monotonicity/splines; - tall pulldown menus; - linuxdoc for
sgml processing; - file path in "Print setup".
2000-08-14 01:53 fnevgeny
* src/: globals.h, main.c: Removed unused global var "readcdf".
2000-08-03 01:10 fnevgeny
* Makefile: Build ChangeLog only for the 5.1 branch.
2000-08-01 02:58 fnevgeny
* doc/CHANGES.html, doc/FAQ.sgml, src/buildinfo.c: grace-5.1.2dev1
snapshot.
|