1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856
|
Fri Mar 28 15:25:34 CET 2008 Achim Mueller <ace@gnubg.org>
* changed configure.in: new release number 0.9.0
Fri Mar 28 00:40:32 CET 2008 Christian Anthon <anthon@kiku.dk>
* gtkrelational.c: rearrange player details and stats view
Thu Mar 27 22:37:01 CET 2008 Christian Anthon <anthon@kiku.dk>
* po/gnubg.pot, non-src/credits.c, po/it.po: update italian
translation
Tue Mar 25 14:30:42 CET 2008 Christian Anthon <anthon@kiku.dk>
* dbprovider.c: fix a compiler warning when without python and sqlite
Tue Mar 18 23:47:53 CET 2008 Christian Anthon <anthon@kiku.dk>
* bearoffdump.c, gnubg.c, makebearoff.c, makehyper.c: minor compile
problems without threads
Tue Mar 18 02:25:32 CET 2008 Christian Anthon <anthon@kiku.dk>
* analysis.c, formatgs.c: edit the texts in the game analysis
Tue Mar 18 01:54:21 CET 2008 Christian Anthon <anthon@kiku.dk>
* po/*.po, po/gnubg.pot: update the translation files
Mon Mar 17 21:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* credits.sh/c: Update copyright to 2008.
Sun Mar 16 22:01:07 CET 2008 Christian Anthon <anthon@kiku.dk>
* set.c, gtkgame.c: fix minor problems with the hide/show ids
Sun Mar 16 21:56:59 CET 2008 Christian Anthon <anthon@kiku.dk>
* credits.sh, gnubg.c, non-src/credits.c, non-src/external_l.c,
non-src/external_y.c, non-src/sgf_l.c, non-src/sgf_y.c,
non-src/sgf_y.h: minor updates to version printing and to non-src
files
Sun Mar 16 10:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtktoolbar.c: Change menus:
Add menu items for edit position and swap direction toolbar commands.
Add option to hide toolbar.
Add option to show/hide ids.
Remove Python shell item.
Put panel items in a sub menu.
Move match info to file menu.
Sat Mar 15 13:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Merge match/session analysis menu items.
Thu Mar 13 22:27:26 CET 2008 Christian Anthon <anthon@kiku.dk>
* gtkexport.c: change html export type and style sheet to combo_box
Thu Mar 13 22:16:39 CET 2008 Christian Anthon <anthon@kiku.dk>
* gktoptions.c: change cheat roll and rng choosers to combo_box
Thu Mar 13 21:54:24 CET 2008 Christian Anthon <anthon@kiku.dk>
* gtkprefs.c: change the wood type to combo_box
Thu Mar 13 22:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtktoolbar.c, gtkgame.c: Move stop button from toolbar to status bar.
Thu Mar 13 22:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtk files: Tidy up some common gtk functions and remove SIG_IO signal.
Wed Mar 12 23:06:32 CET 2008 Christian Anthon <anthon@kiku.dk>
* gtkgame.c, gtkpanels.c, gtkpanels.h: update game selection menu to
gtk_combo_box and remove the redundant names
Wed Mar 12 20:36:40 CET 2008 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: cleanup the Go menu
Tue Mar 11 14:53:12 CET 2008 Christian Anthon <anthon@kiku.dk>
* gtkexport.c, gtkgame.c, gtktoolbar.c, xpm/dice.xpm,
xpm/leftarrow.xpm, xpm/rightarrow.xpm, xpm/stock_export.xpm,
xpm/stock_import.xpm, xpm/stock_stop_16.xpm, xpm/stock_undo_16.xpm,
xpm/tb_redouble.xpm: cleanup in the help menu and delete some unused
xpms
Mon Mar 10 09:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkfile.c: Remove export button/menu item (use save instead)
Sun Mar 9 12:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkfile.c: Move load commands from menu into load dialog.
(and other small changes to this dialog)
* gtkexport.c: Move generate html images from file menu into export settings.
Sat Mar 8 09:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* boardpos.c, render.c: Change 2d direction arrow to look like 3d arrow (smaller and near bearoff tray).
Move cube to side of board. Swap position of pieces on bar.
Fri Mar 7 22:28:52 CET 2008 Christian Anthon <anthon@kiku.dk>
* backgammon.h, gnubg.c, gtkgame.c, gtkpanels.c, board3d/Makefile.am,
board3d/gtkcolour3d.c: minor stuff and warnings
Fri Feb 29 19:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c, gtkcolour3d.c: Change 3d previews to use widgets not pixmaps.
Thu Feb 28 15:15:08 CET 2008 Christian Anthon <anthon@kiku.dk>
* osr.c: fix bug introduced by uint changes
Wed Feb 27 21:22:47 CET 2008 Christian Anthon <anthon@kiku.dk>
* gtkoptions.c: add reset all to defaults button.
* sound.c: fix sound default file bug on windows
Tue Feb 26 12:35:23 CET 2008 Christian Anthon <anthon@kiku.dk>
* makebearoff.c: don't print progress to stderr unless on a TTY.
Mon Feb 25 23:16:26 CET 2008 Christian Anthon <anthon@kiku.dk>
* text.c, html.c, latex.c: Allow export of games with beavers/raccoons
in them.
Mon Feb 25 15:12:08 CET 2008 Christian Anthon <anthon@kiku.dk>
* backgammon.h, gnubg.c, set.c, sgf.h: cleanup in lists of commands.
Removed declared but undefined, and defined, but unused. Move all
declarations to backgammon.h and all lists of commands to gnubg.c.
Sun Feb 24 10:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, play.c, multithreaded.c, others: Fix multi-threaded progress indicator.
Wed Feb 20 23:52:48 CET 2008 Christian Anthon <anthon@kiku.dk>
* relational.c: fix bug caused by APPENDI and APPENDF not being
properly {}'ed.
* dbprovider.h, relational.c: fix minor compiler warnings.
* dbprovider.c: add input string to SQL warnings.
Wed Feb 20 23:50:02 CET 2008 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: update GTKOutput to use a g_string instead of a list.
Sun Feb 17 13:19:58 CET 2008 Christian Anthon <anthon@kiku.dk>
* bearoff.c, dbprovider.c, dbprovider.h, gnubg.sql, gnubgmodule.c,
gtkrelational.c, gtkrelational.h, relational.c: more relational db
changes and a few minor compiler warnings. Added new item to matchstat
and gamestat.
Fri Feb 15 16:59:43 CET 2008 Christian Anthon <anthon@kiku.dk>
* drawboard.c: revert to Jan 19 after accidental checkin (fix board
after uint changes)
Fri Feb 15 13:03:31 CET 2008 Christian Anthon <anthon@kiku.dk>
* .cvsignore, backgammon.h, gtkoptions.c, makebearoff.c, play.c,
util.h, board3d/Makefile.am, po/POTFILES.in: minor cleanups and
compiler warnings
Sun Feb 10 23:21:33 CET 2008 Christian Anthon <anthon@kiku.dk>
* backgammon.h, export.c, export.h, file.c, gnubg.c, html.c, play.c,
simpleboard.c, text.c: allow cairo ps and pdf to export games and
matches
Sun Feb 10 11:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkoptions.c: Move database settings to options dialog.
Sat Feb 9 23:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkrelational.c: Put simple stats into relational dialog
Sat Feb 9 14:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* dbprovider.c, relational.c: Added game stats to database
Fri Feb 8 23:11:13 CET 2008 Christian Anthon <anthon@kiku.dk>
* Makefile.am, dbprovider.c, relational.h: allow code to compile
without python and fix a couple of minor warnings
Fri Feb 8 11:24:23 CET 2008 Christian Anthon <anthon@kiku.dk>
* Makefile.am, configure.in: compile in native sqlite3 on linux
Thu Feb 7 22:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* dbprovider.c: Added native sqlite interface.
Wed Feb 6 22:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* dbprovider.c+.h, gnubg.c, relational.c, gtkrelational.c, database.py:
Move relational code out of database.py and into relational.c
Sun Feb 3 16:34:37 CET 2008 Christian Anthon <anthon@kiku.dk>
* gtkboard.c: size cube and dice widgets according to board size
* gtkgame.c, gtkpanels.c, gtkprefs.c, gtkrelational.c, gtktheory.c:
replace deprecated gtk_widget_set_usize with
gtk_widget_set_size_request
Sun Feb 3 01:02:54 CET 2008 Christian Anthon <anthon@kiku.dk>
* gnubg.c, relational.c, scripts/database.py: allow creation of
default sqlite database in szHomeDirectory. Look for database conf
file in szHomeDirectory. MIGHT DISTURB EXISTING USERS?
Sun Feb 3 00:47:49 CET 2008 Christian Anthon <anthon@kiku.dk>
* gnubg.c, gtksplash.c: disable splash unless asked for. Shorten
pauses a bit
Thu Jan 31 17:20:11 CET 2008 Christian Anthon <anthon@kiku.dk>
* multithread.c: check if g_threads already initialized.
Mon Jan 21 00:36:53 CET 2008 Christian Anthon <anthon@kiku.dk>
* backgammon.h, dice.c, eval.c, gnubg.c, gtkboard.c, gtkexport.c,
gtkoptions.c, import.c, makebearoff.c, makehyper.c, relational.c,
render.c, rollout.c, sgf.c: replace uint with unsigned int
Sat Jan 19 21:45:51 CET 2008 Christian Anthon <anthon@kiku.dk>
* eval.c: fix a potential signed/unsigned problem in crashed net
Sat Jan 19 09:58:13 CET 2008 Christian Anthon <anthon@kiku.dk>
* drawboard.c: fix board after uint changes
Tue Jan 15 22:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg-types.h + others: change board type to unsigned
hopefully not breaking anything on the way (esp. bearoff)
Tue Jan 15 19:05:58 CET 2008 Christian Anthon <anthon@kiku.dk>
* analysis.c, backgammon.h, dice.c, eval.c, gnubg.c, gtkboard.c,
gtkexport.c, gtkgame.c, gtkmovelist.c, gtkoptions.c, import.c,
makebearoff.c, makehyper.c, multithread.c, play.c, render.c, sgf.c,
board3d/drawboard3d.c, relational.c, rollout.c: Fix some minor
uint//int gcc warnings
Sun Jan 13 09:03:18 CET 2008 Christian Anthon <anthon@kiku.dk>
* backgammon.h, bearoff.c, bearoff.h, external_l.l, external_y.y,
gnubg.c, gtkgame.c, gtkgame.h, gtkpanels.c, multithread.c,
multithread.h, sound.c, sound.h, board3d/fun3d.h, lib/cache.c,
non-src/external_y.c, non-src/external_l.c: fix some incomplete or
missing prototypes
Sun Jan 13 01:07:21 CET 2008 Christian Anthon <anthon@kiku.dk>
* bearoffdump.c, gnubg.c, makehyper.c, multithread.c, sound.c:
compiler warnings and Sleep is a win32 function
Sun Jan 13 00:36:48 CET 2008 Christian Anthon <anthon@kiku.dk>
* configure.in, common.h: change how acosf, signbit and lrint are
checked for to allow to compile with -Werror
Sat Jan 12 23:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* sound.c, set.c, gnubg.c: Re-introduce exit sound, but disabled by default
Wed Jan 2 15:48:02 CET 2008 Christian Anthon <anthon@kiku.dk>
* Makefile.am, doc/Makefile.am, lib/Makefile.am, non-src/Makefile.am,
po/POTFILES.in: fix make distcheck
* multithread.h: fix typo and add MT_SafeDecCheck
Tue Jan 01 21:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* relational.c, gtkrelational.c, database.py, gnubg.sql:
Simplify relational database by removing "environments".
Wed Dec 19 11:06:45 CET 2007 Christian Anthon <anthon@kiku.dk>
* lib/cache.c: only lock one level
Wed Dec 19 10:32:27 CET 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, util.c, board3d/drawboard3d.c, board3d/misc3d.h,
lib/cache.c: small changes to previous
Tue Dec 18 21:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* Code changes so -ansi -pedantic (just about) works for gcc on windows.
Tue Dec 18 14:14:10 CET 2007 Christian Anthon <anthon@kiku.dk>
* set.c, board3d/drawboard3d.c, board3d/fun3d.h, board3d/inc3d.h,
board3d/matrix.c, board3d/matrix.h, board3d/misc3d.c,
board3d/misc3d.h, board3d/shadow.c, board3d/widget3d.c: let new
board3d code compile under linux.
Tue Dec 18 14:10:55 CET 2007 Christian Anthon <anthon@kiku.dk>
* bearoffdump.c, makebearoff.c, makehyper.c, record.c: make utily
programs compile with threads enabled
Mon Dec 17 16:33:01 CET 2007 Christian Anthon <anthon@kiku.dk>
* lib/cache.c: Fix multithreaded hang when runing quad core with four
threads. WaitForManualEvent appears to be broken, at least on glib
threads
Mon Dec 17 15:06:44 CET 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, dice.c, dice.h, eval.c, format.c, gnubg.c, gtkgame.c,
gtkgame.h: move things around a bit so that utility programs compile
without ugly fixes (only without threads for now)
Mon Dec 17 15:04:42 CET 2007 Christian Anthon <anthon@kiku.dk>
* sgf.c, gtkgame.c, show.c: use %lu instead of casting to uint.
Mon Dec 17 14:59:20 CET 2007 Christian Anthon <anthon@kiku.dk>
* sounds/Makefile.am, configure.in: we haven't beeen able to recompile
the sounds for a long time, so let's stop trying.
Sat Dec 15 21:27:19 CET 2007 Christian Anthon <anthon@kiku.dk>
* Renamed sgf.y to sgf_y.y and sgf.l sgf_l.l to avoid conflicts with
sgf.c
* bearoff.c, eval.c, format.c, gnubg.c, gtkgame.c, gtkrolls.c,
makebearoff.c, multithread.c, play.c, relational.c, rollout.c, sgf.c,
show.c: minor compiler warnings
Sat Dec 15 21:23:49 CET 2007 Christian Anthon <anthon@kiku.dk>
* board3d/gtkcolour3d.c: remove unneeded gdk_gl_drawable_begin calls since
they causes assertions on newer X window.
Thu Dec 13 22:39:56 CET 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, backgammon.h, bearoff.c, bearoff.h, bearoffdump.c,
drawboard.c, drawboard.h, gnubg.c, gtkrolls.c, makebearoff.c,
makehyper.c, multithread.c, positionid.c, positionid.h, render.h,
rollout.c, sgf.y, util.c, util.h, lib/gnubg-types.h: fixes to make
gnubg compile after Jon's changes. board3d doesn't compile. utility
programs doesn't compile.
Wed Dec 12 23:12:45 2007 Jon Kinsey <Jon_Kinsey@hotmail.com>
* movelistctrl: Fix spacing in German (reported by Thomas Steiner)
* bearoff.c: Fix multithreaded disk bearoff access (reported by Hugh Sconyers)
* list.h + others: list type renamed to listOLD (ideally replace with glist in future)
Wed Dec 12 15:40:08 CET 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, gnubg.6: manual now maintained in doc
Wed Dec 12 13:52:14 CET 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, board3d/Makefile.am, doc/Makefile.am, lib/Makefile.am,
m4/Makefile.am, met/Makefile.am, po/POTFILES.in: cleanup and fixes to
make distcheck
Wed Nov 28 09:43:59 CET 2007 Christian Anthon <anthon@kiku.dk>
* po/POTFILES.in: remove pub_eval.c
* doc/Makefile.am: remove *.txt from EXTRA_DIST
Sun Nov 25 12:09:04 CET 2007 Christian Anthon <anthon@kiku.dk>
* import.c: fix partygammon import. Games terminated badly.
Sun Nov 18 07:04:44 CET 2007 Christian Anthon <anthon@kiku.dk>
* eval.c, makebearoff.c: Fix messed up evaluation of hypergammon.
Redirect loading of hyper databases to pkgdir.
Sat Nov 17 11:27:28 CET 2007 Christian Anthon <anthon@kiku.dk>
* eval.c eval.h gnubg.c lib/neuralnet.c lib/neuralnet.h: cleanup
neuralnet.[ch]
Fri Nov 16 23:24:02 CET 2007 Christian Anthon <anthon@kiku.dk>
* backgammon.h, gtkchequer.h, gtkgame.c, gtkgame.h, gtkpanels.c,
gtkrelational.c, gtkrelational.h, relational.c, rollout.h: cleanup
gtkgame.h
Fri Nov 16 22:11:05 CET 2007 Christian Anthon <anthon@kiku.dk>
* backgammon.h, export.h, gnubg.c, gtkfile.c, gtkfile.h, import.h,
makeweights.c, multithread.h, play.c, timer.c: cleanup backgammon.h
Fri Nov 16 14:32:04 CET 2007 Christian Anthon <anthon@kiku.dk>
* : update manuals
Thu Nov 8 01:29:47 CET 2007 Christian Anthon <anthon@kiku.dk>
* text.c: fix small bug reported by Philippe
Mon Nov 5 21:31:24 CET 2007 Christian Anthon <anthon@kiku.dk>
* doc/.cvsignore, doc/Makefile.am, doc/gnubg/allabout.pdf,
doc/gnubg/gnubg.pdf, doc/images/appearence.png,
doc/images/cubeful-ex1.png: build pdf files
Wed Oct 24 17:17:50 CEST 2007 Christian Anthon <anthon@kiku.dk>
* external_y.y, file.c, gnubg.c, gnubgmodule.c, gtk-multiview.c,
gtkboard.c, gtkgame.c, gtksplash.c, htmlimages.c, import.c,
makebearoff.c, relational.c, renderprefs.c, set.c, sgf.y,
simpleboard.c, board3d/gtkcolour3d.c, board3d/misc3d.c,
lib/neuralnet.c: fix a bunch of minor compiler warnings
Tue Oct 23 12:38:57 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gktgame.c, gtkpanels.c: cleanup of InitGTK, move command widget to
gtkpanels.c
Mon Oct 8 15:46:22 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkcube.c: add rollout presets to cube tool
Wed Oct 3 19:23:28 CEST 2007 Christian Anthon <anthon@kiku.dk>
* analysis.c, rollout.c: fix to minor mt problems
Wed Oct 3 18:58:41 CEST 2007 Christian Anthon <anthon@kiku.dk>
* bearoffdump.c eval.c gnubg.c gtkgame.c gtkmovelistctrl.c gtkpanels.c
latex.c makebearoff.c makehyper.c matchequity.c play.c render.c:
compiler warnings
Mon Oct 1 23:06:52 CEST 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, configure.in, export.c, multithread.c, simpleboard.c,
simpleboard.h: make code compile without gtk, cairo or pangocairo
Sat Sep 29 23:10:12 CEST 2007 Christian Anthon <anthon@kiku.dk>
* backgammon.h, eval.c, eval.h, gnubg.c, gtkgame.c, set.c, show.c:
remove unused training functions.
Fri Sep 28 11:27:57 CEST 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am po/LINGUAS po/POTFILES.in po/da.po po/en_US.po
po/gnubg.pot po/is.po po/ru.po po/tr.po: make sure that "make dist"
works. Remove unmaintained languages.
Fri Sep 28 00:28:34 CEST 2007 Christian Anthon <anthon@kiku.dk>
* backgammon.h, bearoff.c, bearoff.h, ChangeLog, export.c, export.h,
file.c, file.h, formatgs.c, gnubg.c, gtkfile.c, gtkgame.c, html.c,
lib/.cvsignore, lib/Makefile.am, Makefile.am, matchid.h, rollout.c,
text.c: add a simple cairo board capable of exporting positions to
svg, pdf and postscript surfaces
* simpleboard.c, simpleboard.h: new files
* lib/dynarray.c, lib/dynarray.h, lib/event.c, lib/event.h,
lib/event.texi, lib/hash.c, lib/hash.h, lib/heap.c, lib/heap.h,
lib/stamp-vti, postscript.c: removed files
Thu Sep 27 22:50:16 CEST 2007 Christian Anthon <anthon@kiku.dk>
* analysis.c, analysis.h, formatgs.c, gnubg.c, gnubgmodule.c,
gtkexport.c, gtkgame.c, play.c, relational.c, set.c, show.c: remove
SKILL_GOOD completely as the use was overlapping with that of
SKILL_NONE
Thu Sep 27 16:22:08 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkfile.c: allow default extension to be .sgf when saving and last
used extension otherwise.
Thu Sep 27 16:20:17 CEST 2007 Christian Anthon <anthon@kiku.dk>
* AUTHORS, INSTALL, Makefile.am, README, configure.in, credits.sh,
non-src/credits.c, non-src/external_l.c, non-src/external_y.c,
non-src/external_y.h, non-src/sgfl.c, non-src/sgfp.c, non-src/sgfp.h:
cleanup of readme and install files and minor updates to the rest
Mon Sep 24 22:56:56 CEST 2007 Christian Anthon <anthon@kiku.dk>
* makebearoff.c: fix tmp file creation problem
Wed Sep 19 22:15:09 CEST 2007 Christian Anthon <anthon@kiku.dk>
* rollout.c: change assertion to error message when mt_rollout results
in too many rollouts done.
Sat Sep 15 14:30:36 CEST 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am: fix external_l.c dependency problem
Fri Sep 14 23:40:14 CEST 2007 Christian Anthon <anthon@kiku.dk>
* remove unused makebearoff1 program
Fri Sep 14 13:58:36 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c, configure.in: remove need for fstat
Fri Sep 14 13:28:57 CEST 2007 Christian Anthon <anthon@kiku.dk>
* .cvsignore, backgammon.h, bearoff.c, bearoffgammon.h, boarddim.h,
boardpos.h, common.h, dice.c, eval.h, gnubgmodule.c, gtk-multiview.h,
gtkboard.h, gtkcolour.h, gtkprefs.c, render.c, render.h,
renderprefs.c, board3d/drawboard3d.c, board3d/matrix.c,
board3d/misc3d.c, board3d/model.c: header clean-up. Use definitions
from glib.h instead.
Fri Sep 14 09:52:15 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c, set.c: Make lang change more robust
Mon Sep 3 11:40:07 CEST 2007 Christian Anthon <anthon@kiku.dk>
* html.c: fix tmpfile creation problem to allow export of gammonline
to clipboard under MS Vista.
Mon Sep 3 01:18:12 CEST 2007 Christian Anthon <anthon@kiku.dk>
* rollout.c: fix buffer overflow on 64 bit platforms
* analysis.c, gnubg.c, multithread.c, rollout.c: add a new --debug
option to turn on debugging for multithreaded code.
Sun Sep 2 22:20:43 CEST 2007 Christian Anthon <anthon@kiku.dk>
* board3d/misc3d.h, speed.h: new files
* analysis.c, analysis.h, backgammon.h, board3d/drawboard3d.c,
board3d/fun3d.h, board3d/graph.c, board3d/gtkcolour3d.c,
board3d/Makefile.am, board3d/misc3d.c, board3d/widget3d.c, dice.c,
eval.c, eval.h, external_y.y, format.c, gnubg.c, gnubgmodule.c,
gnubgmodule.h, gtkboard.c, gtkchequer.c, gtkchequer.h, gtkfile.c,
gtkgame.c, gtkgame.h, gtkgamelist.c, gtkmovelist.c, gtkmovelistctrl.c,
gtkmovelistctrl.h, gtkoptions.c, gtkoptions.h, gtkpanels.c,
gtkpanels.h, gtkprefs.c, gtkrace.c, gtkrelational.c, gtkrelational.h,
gtkrolls.c, gtktoolbar.c, gtktoolbar.h, gtkwindows.c, gtkwindows.h,
import.c, lib/cache.c, Makefile.am, matchequity.c, multithread.c,
multithread.h, play.c, progress.c, pub_eval.c, relational.c,
relational.h, render.c, renderprefs.c, rollout.c, rollout.h, set.c,
show.c, speed.c, timer.c, userrng.c, util.c, util.h: make sure that
functions are either static or declared in an appropriate header.
Fri Aug 31 23:36:49 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c, gtkgame.c, set.c, gtkgame.h: make sure that GTKOutput calls
are rejected if the gtk interface isn't up and running. Fix a few
potential language setting problems.
Wed Aug 22 22:59:26 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkboard.c: fix player name setting bug
Tue Aug 14 15:10:14 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkgame.c, gnubg.svg, gnubg.png: Add png file in case svg load
unsupported.
Sun Aug 12 10:45:16 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkcube.c, gtkmet.c, gtkrolls.c, gtksplash.c, gtktheory.c,
gtktoolbar.c: update deprecated gtk_object_set_data
Sat Aug 11 21:30:46 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkboard.c: update deprecated gtk_entry_new_with_max_length
Sat Aug 11 21:09:41 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkwindows.c, gtkgame.c: update deprecated gtk_window_set_policy and
gtk_container_children
Sat Aug 11 20:58:02 CEST 2007 Christian Anthon <anthon@kiku.dk>
* play.c, gtkboard.c: update deprecated gtk_timeout*
Sat Aug 11 20:26:54 CEST 2007 Christian Anthon <anthon@kiku.dk>
* board3d/fun3d.h, board3d/misc3d.c: make export position png work
when using board3d
Wed Aug 1 20:57:30 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: set default icon for all windows
Tue Jul 31 00:27:34 CEST 2007 Christian Anthon <anthon@kiku.dk>
* analysis.c, configure.in, multithread.c, multithread.h, rollout.c,
speed.c: make windows threads compile again and make a few simplifying
changes
* M html.c: UserCommand not awailable without gtk
Sun Jul 29 08:27:41 CEST 2007 Christian Anthon <anthon@kiku.dk>
* file.c, file.h, gtkfile.c, import.c: allow manual setting of the import
file format in the GUI
Sun Jul 29 08:24:22 CEST 2007 Christian Anthon <anthon@kiku.dk>
* html.c: export html-images dir if non-existing
* gtkgame.c: always export images to html-images/
Sun Jul 29 00:42:50 CEST 2007 Christian Anthon <anthon@kiku.dk>
* multithread.c: another attempt to fix the check for all tasks done
* rollout.c: fix mt rollout bug (wrong count)
Wed Jul 18 14:35:32 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c, gtkboard.c, gtkgame.c, gtkgame.h, gtkgamelist.c, gtkoptions.c,
gtkpanels.c, gtkprefs.c, gtktoolbar.c, play.c, render.c, renderprefs.c,
board3d/fun3d.h, board3d/graph.c, board3d/misc3d.c, board3d/widget3d.c:
Allow startup in 2D mode if gtk_gl_init_check fails
Sat Jul 14 22:54:29 CEST 2007 Christian Anthon <anthon@kiku.dk>
* multithread.c: Fix hangup when all task done signal was missed and fix a
closing bug for gthreads. Win32 threads are likely a bit messed up after
these changes.
Sat Jul 14 22:53:32 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkchequer.[ch]: Add quick rollout buttons
Sat Jul 14 22:50:07 CEST 2007 Christian Anthon <anthon@kiku.dk>
* export.c, import.c: Fix two Jellyfish MAT format bugs. One import and
one export.
Sat Jul 14 22:47:19 CEST 2007 Christian Anthon <anthon@kiku.dk>
* backgammon.h, gnubg.c, set.c: Fix a couple of set sound options.
Sat Jul 14 22:41:22 CEST 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.w32, Makefile.am, bearoffdump.c, getopt*, makebearoff.c,
makebearoff1.c, makehyper.c, tctutorial.h, lib/Makefile.am,
lib/hashtest.c, lib/md5test.c: Code clean, remove unused test programs and
getopt.
Wed Jul 11 15:37:49 CEST 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.w32: Delete a few unused files
* eval.c: Fix startup bug when gnubg.wd was missing
Tue Jul 10 17:22:33 CEST 2007 Christian Anthon <anthon@kiku.dk>
* set.c, show.c, gnubg.c: Fix a language setting problem
Tue Jul 10 10:42:39 CEST 2007 Christian Anthon <anthon@kiku.dk>
* progress.c, rollout.c: Fix counting bug in multithreaded code for cube
rollouts. Revert changes in progress.c so that the displayed number of
games i correct for both non-threaded and multi-threaded code.
Wed Jul 4 00:01:48 CEST 2007 Christian Anthon <anthon@kiku.dk>
* : Updated GNU Backgammon to use GPL version 3. Achim did the work.
I'm removing a few obsoleted and autotools related files.
Sun Jul 1 13:05:02 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkprefs.c: fix bug with default board designs not being loaded
Thu Jun 28 21:20:45 CEST 2007 Christian Anthon <anthon@kiku.dk>
* import.c: Fix TMG post-Crawford import bug
Mon Jun 11 20:54:35 CEST 2007 Christian Anthon <anthon@kiku.dk>
* boardpos.c, copying.awk, corecount.c, credits.sh, erf.c, erftest.c,
external_l.l, getopt.c, getopt1.c, gnubgmodule.h, gtk-multiview.c,
gtkboard.c, gtkchequer.c, gtkcolour.c, gtkcube.c, gtkexport.c,
gtkfile.c, gtkgame.c, gtkgamelist.c, gtkmet.c, gtkmovefilter.c,
gtkmovelist.c, gtkoptions.c, gtkpanels.c, gtkprefs.c, gtkrace.c,
gtkrelational.c, gtkrolls.c, gtksplash.c, gtktempmap.c, gtktheory.c,
gtktoolbar.c, gtkwindows.c, htmlimages.c, progress.c, pub_eval.c,
rollout.c, sgf.l, sound.c, speed.c, userrng.c, util.c,
board3d/drawboard3d.c, board3d/font3d.c, board3d/graph.c,
board3d/gtkcolour3d.c, board3d/inc3d.h, board3d/matrix.c,
board3d/misc3d.c, board3d/model.c, board3d/shadow.c,
board3d/widget3d.c, lib/cache.c, lib/dynarray.c, lib/hash.c,
lib/heap.c, lib/isaac.c, lib/list.c, lib/md5.c, lib/md5test.c,
lib/mt19937ar.c, non-src/copying.c, non-src/credits.c,
non-src/external_l.c, non-src/sgfl.c: replace deprecated gtk_signal
functions with g_signal functions. Make sure that config.h is included
at the top of all .c files and not in .h files for better control (e.g. #define
GTK_DISABLE_DEPRECATED).
Fri Jun 8 00:07:30 CEST 2007 Christian Anthon <anthon@kiku.dk>
* analysis.c, analysis.h, gnubg.c, gtkfile.c, progress.c,
relational.c: make a gtkwidget for batch_analysis
Fri Jun 1 08:43:07 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c: fix rollout problem in cl interface. Allow doubling before
rolling the dice when positions are obtained from the move hint list,
but not when rolling out a single position.
Fri Jun 1 00:27:53 CEST 2007 Christian Anthon <anthon@kiku.dk>
* backgammon.h, gnubg.c, openurl.c, openurl.h, set.c, show.c: fix some
problems with setting the web browser
Thu May 31 11:43:08 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c, sound.c: update a few strings.
Thu May 31 23:22:37 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c, dice.c: fix a few text mode locale problems
Thu May 31 22:11:00 CEST 2007 Christian Anthon <anthon@kiku.dk>
* sound.c: minor bug
* gtkboard.c, gtkgame.c: make pasting of position and match id's work
in edit mode and before starting a new match.
Wed May 30 16:43:08 CEST 2007 Christian Anthon <anthon@kiku.dk>
* sound.c: print to stdout instead of stderr in case of missing sound
files, etc.
Tue May 29 20:37:13 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkoptions.c: removed bearoff options
Mon May 28 23:37:57 CEST 2007 Christian Anthon <anthon@kiku.dk>
* sound.c: fix small sound setting problem
Fri May 25 17:56:41 CEST 2007 Christian Anthon <anthon@kiku.dk>
* sound.c, show.c, gtkoptions.c: fix small sound setting problem
Wed May 23 22:44:14 CEST 2007 Christian Anthon <anthon@kiku.dk>
* render.c: malloc more space for the labels to avoid crashes on small
board sizes.
Wed May 23 17:12:54 CEST 2007 Christian Anthon <anthon@kiku.dk>
* file.c, file.h, Makefile.am, backgammon.h, export.c, export.h,
gnubg.c, gtkfile.c, gtkgame.c, html.c, import.c, import.h, sgf.h: move
some import/export/load/save functions for consistency. New files
file.[ch] to allow the new cl command "import auto".
Fri May 18 21:02:50 CEST 2007 Christian Anthon <anthon@kiku.dk>
* openurl.c: small win32 improvement
Thu May 17 21:35:00 CEST 2007 Christian Anthon <anthon@kiku.dk>
* util.c: win32 fixes
Thu May 17 15:53:42 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkgame.c, gtkwindows.c, progress.c: fix problem with
DIALOG_FLAG_NOTIDY not being used. Make sure that the parent of the
dialog is present.
* util.c, board3d/matrix.c, board3d/matrix.h: compiler warnings
Mon May 14 12:21:13 CEST 2007 Christian Anthon <anthon@kiku.dk>
* util.[ch]: new files. Keeps the common parts of the ugly fixes of
the util programs in one place.
Mon May 14 01:18:33 CEST 2007 Christian Anthon <anthon@kiku.dk>
* makehyper.c: rename WriteFile to WriteHyperFile to avoid conflict
with windows.h
Mon May 14 01:10:14 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c, gtkgame.c, set.c: Fix problems in SetupLang
Tue May 8 02:22:42 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkgame.c, rollout.c: solved problem with calibration widget causing
crash. Modality disabled, because of an unresolved issue.
DIALOG_FLAG_NOTIDY is unused??
Mon May 7 23:29:33 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c: fix problem with lang settings not being loaded.
* po/: now fuzzy matching, since po files are ill maintained.
Fri May 4 10:21:14 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c: fix issue with matches loaded twice from command line
* analysis.c: fix issue with progress bar when running multithreaded
* export.c, multithread.c: fix WIN32 compiler warnings
Wed May 2 00:00:38 CEST 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, backgammon.h, bearoff.c, bearoff.h, bearoffdump.c,
dice.c, eval.c, eval.h, gnubg.c, gnubgmodule.c, gnubgmodule.h,
gtkfile.c, gtkgame.c, gtkoptions.c, gtkprefs.c, html.c, makebearoff.c,
matchequity.c, matchequity.h, openurl.c, path.c, path.h, render.c,
set.c, show.c, sound.c, sound.h, board3d/font3d.c, board3d/misc3d.c:
remove path.[ch]
Sun Apr 29 01:18:40 CEST 2007 Christian Anthon <anthon@kiku.dk>
* analysis.c ,backgammon.h ,gnubg.c ,html.c ,latex.c ,play.c
,postscript.c ,relational.c ,text.c: removed MOVE_TIME
Fri Apr 27 10:50:01 CEST 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, analysis.c, analysis.h, backgammon.h, configure.in,
drawboard.c, formatgs.c, gnubg.c, gnubgmodule.c, gtkboard.c,
gtkboard.h, gtkgame.c, gtkgame.h, import.c, play.c, set.c, sgf.c,
show.c, sound.c, sound.h, text.c: removed timecontrol
Fri Apr 27 01:35:36 CEST 2007 Christian Anthon <anthon@kiku.dk>
* configure.in: cleanup
Fri Apr 27 00:04:02 CEST 2007 Christian Anthon <anthon@kiku.dk>
* eval.c, gnubg.c, gtkoptions.c, set.c, show.c: removed egyptian rule
Thu Apr 26 23:52:57 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkbearoff.c, gtkbearoff.h, Makefile.am, backgammon.h, bearoff.c,
bearoff.h, eval.c, eval.h, gnubg.c, gtkgame.c, gtkoptions.c,
gtkrace.c, onechequer.c, onechequer.h, set.c, show.c: race cleanup.
Removed Sconyers support.
Thu Apr 26 23:06:04 CEST 2007 Christian Anthon <anthon@kiku.dk>
* dice.c, gnubg.c, configure.in: replace gettimeofday by
g_get_current_time
Mon Apr 23 13:52:56 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkfile.c: fixed problem with . being added to filename on eache
export.
Fri Apr 20 18:00:10 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkfile.c, gtkgame.c: compiler warnings and fixed problem with
extension not being remembered when exporting.
Wed Apr 18 20:52:26 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gtkgame.h, gtktoolbar.c, gtktoolbar.h, play.c, speed.c: hack to make
edit start a new game if gameste is none. Added an edit new position
button to the new game widget.
Tue Apr 17 09:13:43 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c: swap r ratings when swapping players
Tue Apr 17 09:08:36 CEST 2007 Christian Anthon <anthon@kiku.dk>
* doc/Makefile.am: DESTDIR support
Thu Apr 12 20:43:03 2007 ystein Johansen <oystein@gnubg.org>
* gtkfile.[ch], gtkgame.c: New feature: Batch analysis (still buggy)
Thu Apr 12 16:57:39 CEST 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c: init_sconyers unused, protect spaces in LoadRC
Tue Apr 10 00:41:03 CEST 2007 Christian Anthon <anthon@kiku.dk>
* backgammon.h, configure.in, gnubg.c, gnubgmodule.c, gtkgame.c,
gtkgame.h, gtkwindows.c, show.c, doc/.cvsignore: cleanup of the main
function. Fix problem with error messages during startup. Postpone
efectuation of -p and -c options so that they may be used under gtk.
Fix problem with readline not being detected under redhat.
Sun Apr 8 18:44:45 CEST 2007 Christian Anthon <anthon@kiku.dk>
* analysis.c, eval.c, eval.h, external.c, format.c, format.h, gnubg.c,
gnubgmodule.c, gtkcube.c, gtkwindows.c, html.c, latex.c, makebearoff.c,
play.c, postscript.c, progress.c, rollout.c, set.c, sgf.c, show.c, text.c:
icc compiler fixes
Sun Apr 8 13:40:34 CEST 2007 Christian Anthon <anthon@kiku.dk>
* backgammon.h, eval.c, eval.h, gnubg.c, gtkgame.c, gtkrace.c, gtkrace.h,
gtktoolbar.c, show.c: race theory update and simplification of analyse
menu.
Wed Apr 4 00:07:07 CEST 2007 Christian Anthon <anthon@kiku.dk>
* bearoff.c: fix the fnd function, which was messed up by a typecast.
Thu Mar 29 17:57:17 CEST 2007 Christian Anthon <anthon@kiku.dk>
* board3d/Makefile.am: fix --without-board3d
Thu Mar 29 09:51:40 CEST 2007 Christian Anthon <anthon@kiku.dk>
* configure.in, m4/az_python.m4: Fix --without-python
Mon Mar 26 17:05:29 CEST 2007 Christian Anthon <anthon@kiku.dk>
* configure.in, m4/az_python.m4: OS/X changes
Thu Mar 22 00:22:47 CET 2007 Christian Anthon <anthon@kiku.dk>
* import.c, openurl.c, sound.c, doc/Makefile.am: a few compile fixes
after previous checkins
Wed Mar 21 00:23:10 CET 2007 Christian Anthon <anthon@kiku.dk>
* <many>: Sound system cleanup. We now allow only an external command
or for system that support it: either esound, or win32 sound.
Wed Mar 21 00:21:08 CET 2007 Christian Anthon <anthon@kiku.dk>
* import.c: Allow import of nackgammon mat files. (thx, Joerg Picard
<joerg.picard@gmail.com>)
Tue Mar 20 19:28:06 CET 2007 Christian Anthon <anthon@kiku.dk>
* <many>: Removed gtktexi. Added Albert Silver's 'All about GNU'.
Updated the openurl function and allowed user configuration of the web
browser.
Tue Mar 20 16:49:37 CET 2007 Christian Anthon <anthon@kiku.dk>
* eval.[ch]: fix bug caused by signed/unsigned changes
Fri Mar 16 02:30:26 CET 2007 Christian Anthon <anthon@kiku.dk>
* <many>: updated documentation. It now contains the information from
the dokuwiki as well as the old info files. The documentation is now
written in docbook format, and texinfo and info files are now
generated from the docbook source. The manpage has been updated as
well.
Fri Mar 16 00:04:44 CET 2007 Christian Anthon <anthon@kiku.dk>
* gnubg.c, gtkgame.c, gtkwindows.c, play.c: replace gtk_idle with
g_idle.
Fri Mar 16 00:04:29 CET 2007 Christian Anthon <anthon@kiku.dk>
* <many>: silence a bunch of intel c compiler warnings (recomitting
after savannah crash)
Fri 15 Mar 21:47:53 2007 GMT Jim Segrave <jes@j-e-s.net>
* rollout.c: was using the 'this is a cube rollout' flag to
decide whether to calculate JSDs from cubeful or cubeless equities
Sun 25 Feb 12:11:40 2007 GMT Jim Segrave <jes@j-e-s.net>
* rollout.c : if settings were for cubeful rollouts, then
extending rollouts used cubeful equity. Threading aggravates
the problem, this is not a complete fix (rcRollout
is used globally but needs to be modified to match the set of
moves being rolled out. Ensuring it's put back for all
sequences which might terminate a rollout is non-trivial
Mon Feb 12 21:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* speed.c : Make calibration test multi-threaded
Wed Feb 14 11:07:07 CET 2007 Christian Anthon <anthon@kiku.dk>
* multithread.h: first argument to MT_Safe* is pointer not value also
when compiled without threads
Wed Feb 14 10:03:35 CET 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, configure.in: remove pthread
Mon Feb 12 21:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* multithread.c : Remove pthread tls code and reduce #ifs/tidy win32 code
Sun Feb 11 22:18:33 CET 2007 Christian Anthon <anthon@kiku.dk>
* bearoffdump.c, eval.c, makebearoff.c, makehyper.c, rollout.c: small fixes
to let gnubg and tools compile without warnings.
Thu Feb 08 19:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* multithread.c, rollout.c : Multi-thread rollouts.
Fri Feb 02 18:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* multithread.c/.h, lib/neuralnet.c, lib/neuralnetsse.c, lib/cache.c (new) : syncronize cache
access, fix mis-aligned mingw thread stack, remove frombase optimisation for SSE.
Wed Jan 31 12:49:00 CET 2007 Christian Anthon <anthon@kiku.dk>
* Makefile.am, configure.in, eval.c, gnubg.c, multithread.c,
multithread.h, lib/neuralnet.c, lib/neuralnetsse.c: various changes to
make gnubg compile with ./configure --enable-threads
Thu Jan 25 20:27:53 CET 2007 Christian Anthon <anthon@kiku.dk>
* makehyper.c, lib/neuralnet*.c: small fixes needed to compile without
threads on linux
Thu 25 Jan 09:43:30 2007 GMT Jim Segrave <jes@j-e-s.net>
* gnubg.c: restore some code dropped some revisions ago
Sun Jan 05 10:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* eval.c: Fix some concurrency problems.
Fri Jan 05 21:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* analysis.c multithread.c: Add multi-thread compatiblity for game analysis.
Fri Dec 29 12:51:42 CET 2006 Christian Anthon <anthon@kiku.dk>
* lib/Makefile.am, lib/fifo.[ch], lib/buffer.[ch]: removed as they are
not used anymore.
Thu Dec 28 10:03:36 CET 2006 Christian Anthon <anthon@kiku.dk>
* common.h, board3d/matrix.c, board3d/matrix.h, lib/fifo.c,
lib/fifo.h, lib/neuralnet.c: small linux compile fixes after last
commit.
Tue Dec 26 11:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* lib/board3d: Run through lint, added consts to pointers and
made some int's unsigned.
Wed Dec 20 10:06:46 CET 2006 Christian Anthon <anthon@kiku.dk>
* */: add some filenames to .cvsignore
Wed Dec 20 09:25:49 CET 2006 Christian Anthon <anthon@kiku.dk>
* non-src/: updated the flex/bison files to versions supplied by Ingo
Tue Dec 19 23:30:58 CET 2006 Christian Anthon <anthon@kiku.dk>
* configure.in: fix small python and png problems
Tue Dec 19 12:03:14 CET 2006 Christian Anthon <anthon@kiku.dk>
* configure.in, common.h, render.c, lib/neuralnet.c: declare signbit
and lrint as macros if undeclared
Mon Dec 18 23:58:05 2006 GMT Jim Segrave <jes@jes-2.demon.nl>
* analysis.c: fix casts and parens in relativeFibsRating
Sun Dec 16 20:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkmovelist.c: Fix for bug #18526 s
Thu Dec 14 17:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkmovelist.c: Fix for bug #17845 multiple highlights in hint
* import.c: Small partygammon fix
* gnubg.c: Fix for bug #12131 menus while analysing games
Tue Dec 12 15:54:22 CET 2006 Christian Anthon <anthon@kiku.dk>
* gnubg.c, gtkgame.c: Save/Load rollout settings added to gtk interface
Sun Dec 10 17:27:29 CET 2006 Christian Anthon <anthon@kiku.dk>
* configure.in, lib/neuralnet.c: configure option to disable the sse
test (e.g. on amd64)
Thu Dec 7 16:57:14 CET 2006 Christian Anthon <anthon@kiku.dk>
* gnubg.c: make CommandImportParty compile without gtk
Thu Dec 7 00:59:04 CET 2006 Christian Anthon <anthon@kiku.dk>
* various: mingw fixes of autotool changes
Thu Dec 7 00:10:46 CET 2006 Christian Anthon <anthon@kiku.dk>
* too many to list: major autotools/library cleanup. Likely some
things will be broken on some systems.
Tue Dec 5 09:53:54 CET 2006 Christian Anthon <anthon@kiku.dk>
* ChangeLog, configure.in, gnubg.c, gtkprefs.c, gtktexi.c,
matchequity.c, rollout.c: vprintf cleanup
Tue Dec 5 00:44:07 CET 2006 Christian Anthon <anthon@kiku.dk>
* common.h, configure.in, dice.c, eval.c, export.c, gnubg.c,
gtkchequer.c, gtkcube.c, gtkexport.c, gtkgame.c, gtkmet.c,
gtkmovefilter.c, gtkrace.c, gtktexi.c, gtktheory.c, osr.c, path.c,
render.c, rollout.c, lib/Makefile.am, lib/buffer.c, lib/neuralnet.c:
alloca cleanup (we allways have g_alloca).
Mon Dec 4 10:10:29 CET 2006 Christian Anthon <anthon@kiku.dk>
* gtkoptions.c: hide sound options when compile without USE_SOUND
Sat Dec 2 21:52:04 CET 2006 Christian Anthon <anthon@kiku.dk>
* rollout.c, progress.c: Disable view rollout statistics after
close/reopen. Add drops to won games in rollout statistics.
Thu Nov 30 23:43:03 CET 2006 Christian Anthon <anthon@kiku.dk>
* eval.c, gtkgame.c: remove meaningless data from evaluation window
and fix window size
Thu Nov 30 22:17:24 CET 2006 Christian Anthon <anthon@kiku.dk>
* gtkwindows.c: fix sizing problem in messages window
Thu Nov 30 20:14:05 CET 2006 Christian Anthon <anthon@kiku.dk>
* gtkoptions.c: fix gtk sizing problem in sound options.
Tue Nov 28 23:59:09 CET 2006 Christian Anthon <anthon@kiku.dk>
* sound.c: cleanup of play_file
Sun Nov 26 21:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkoptions.c (mainly): Selectable sound files (in gui)
Sun Nov 26 16:59:28 CET 2006 Christian Anthon <anthon@kiku.dk>
* backgammon.h, gnubg.c, gtkfile.c, import.c, import.h: "import gam",
"import party" and "import empire", respectively imports, jellyfish .gam,
partygammon .gam and gammonempire .gam.
Sun Nov 26 16:24:30 CET 2006 Christian Anthon <anthon@kiku.dk>
* gtkfile.c: Default folders on win32
Sat Nov 25 17:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* import.c: First try at PartyGammon import
(based on convert-to-mat script by gunnar bluth and achim mueller)
Thu Nov 23 18:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkfile.c: Add warning if trying to import PartyGammon game files
Sat Nov 18 14:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c: Fix bug in saving/exporting custom designs
Wed Nov 15 16:53:19 CET 2006 Christian Anthon <anthon@kiku.dk>
* gnubg.c, set.c, show.c: in fresh installs: g11.xml, more sensible
rollout settings, infinite number of moves analysed.
* gtkboard.c, gtkgame.c, gtkpanels.c: docked panels wider by default.
gnubg starts maximized(make this an option?). Attempt to fix ugly
resizes in player/score frames.
Thu Nov 16 15:27:32 CET 2006 Christian Anthon <anthon@kiku.dk>
* gnubg.c, gtkgame.c, record.c, record.h, gtkprefs.c: Move all
rc files to g_get_home_dir()/.gnubg (both windows and unix).
Tue Nov 14 21:17:55 GMT 2006 Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c : GTKShowScoreSheet callback to MoveListIntoView
2nd parameter is pointer to int, not int
Mon Nov 13 22:32:37 CET 2006 Christian Anthon <anthon@kiku.dk>
* Makefile.am, configure.in,g gnubg.c , gtkbearoff.c , gtkgame.c ,
gtkprefs.c , record.c: attempt fix of recent problems with
szHomeDirectory
Mon Nov 13 18:50:22 CET 2006 Christian Anthon <anthon@kiku.dk>
* Makefile.am, configure.in, board3d/.cvsignore, board3d/Makefile.am,
lib/.cvsignore, lib/Makefile.am: Use libtool static libs.
Mon Nov 13 12:16:54 CET 2006 Christian Anthon <anthon@kiku.dk>
* Makefile.am, configure.in, board3d/Makefile.am, lib/Makefile.am,
non-src/Makfile.am: Add various files to EXTRA_DIST or sources.
Fri Nov 10 15:22:46 CET 2006 Christian Anthon <anthon@kiku.dk>
* fonts/Makefile.am, flags/Makefile.am: Add flags and fonts to
EXTRA_DIST
Fri Nov 10 12:40:47 CET 2006 Christian Anthon <anthon@kiku.dk>
* configure.in: Version bump, MAIN now version 0.16-devel
Fri Nov 10 12:35:50 CET 2006 Christian Anthon <anthon@kiku.dk>
* gnubgmodule.c: Hopefully fix AMD64 relational database crash
Fri Nov 10 08:31:26 2006 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* gtktheory.c: Fix typo. Use TG instead of TP for "Too good".
Tue Nov 7 19:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* import.c, gktfile.c : Add money game import for .gam files
Thu Nov 9 20:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* font3d.c, render.c : Minor changes to 3d cube font and 2d point
number font to make them look slightly better.
Mon Nov 6 15:11:40 CET 2006 Christian Anthon <anthon@kiku.dk>
* render.c, board3d/font3d.c, board3d/widget3d.c: Allow fallback when
no stencil buffer and make vera fonts work in 3d.
Mon Nov 6 13:28:52 CET 2006 Christian Anthon <anthon@kiku.dk>
* Makefile.am, configure.in, render.c, board3d/font3d.c, R luxi.c, A
fonts/: Use the free bitstream vera fonts instead of the non-free
luxi.c
Thu Nov 2 20:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkfile.c + .h: Removed import option and now open
any file type automatically.
Thu Nov 2 20:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c + .h: Show 3 decimals for epc and include wastage.
(By Ian Shaw)
Wed Nov 1 00:52:26 CET 2006 Christian Anthon <anthon@kiku.dk>
* gnubg.c, backgammon.h, Makefile.am: Move option parser to glib
option parser, since it facilitates the integration of gnubg options
with gtk options. getopt*.[ch] still needed for utility programs.
Wed Oct 25 11:36:58 CEST 2006 Christian Anthon <anthon@kiku.dk>
* Makefile.am, backgammon.h, export.c, gnubg.c, gnubgmodule.c,
gtkfile.c, gtkgame.c, gtkgame.h, gtkoptions.c, gtkprefs.c,
gtktoolbar.c, html.c, latex.c, postscript.c, set.c, sgf.c, show.c,
text.c: Moved file dialogs to gtk_file_chooser
* gtkfile.h: new file
* gtkpath.c gtkpath.h: removed
Wed Oct 18 14:54:34 CEST 2006 Christian Anthon <anthon@kiku.dk>
* Makefile.am, configure.in, gtkgame.c, flags/.cvsignore,
flags/Makefile.am: automake and install stuff for the new flags
Wed Oct 18 09:31:12 CEST 2006 Christian Anthon <anthon@kiku.dk>
* backgammon.h, gnubg.c, gtkgame.c, postscript.c, sgf.c: charset
conversion cleanup
Tue Oct 17 15:03:08 CEST 2006 Christian Anthon <anthon@kiku.dk>
* drawboard.c: avoid assuming length of translated strings
Mon Oct 16 15:45:49 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: Correct locales. Call language changes directly instead
of through UserCommand.
* gnubg.c: Use environment locale. Replace putenv by setenv.
Thu Oct 12 19:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkoptions.c, flags dir: Added new dialog to set language
Thu Oct 5 23:51:15 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: Fix compiler warnings without USE_PYTHON after last
commit
Wed Oct 4 14:18:35 CEST 2006 Christian Anthon <anthon@kiku.dk>
* Makefile.am analysis.c, analysis.h, formatgs.c, formatgs.h, html.c,
text.c: minor changes to allow "relational show details"
* database, database.example: rename
* gtkgame.c, gtkgame.h, gtkrelational.c, gtkrelational.h,
relational.c: detailed player stats in the CL version. List of all
player stats and details upon double-clicking in the GUI.
Wed Oct 4 11:58:50 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtktoolbar.c: make sure labels are shown
* .cvsignore: add linked files
Mon Oct 2 00:49:27 CEST 2006 Christian Anthon <anthon@kiku.dk>
* several: compiler warnings mainly on 64bit platforms. Avoid casting
integer to pointer and back.
Sat Sep 30 09:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Fix minor edit bug (labels dissappearing when panels moved)
Sun Sep 24 06:12:42 2006 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* makebearoff.c: Fix typo: #include <sys/types.h>.
Wed Sep 20 21:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Save full screen state and show pip count
Mon Sep 18 22:17:39 CEST 2006 Christian Anthon <anthon@kiku.dk>
* misc: Keith Count
Wed Sep 13 21:42:45 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtk*, Makefile.am: Cleanup after modal comit
Wed Sep 13 21:38:50 CEST 2006 Christian Anthon <anthon@kiku.dk>
* sgf.c: make save/load locale independent
Mon Sep 11 23:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkwindows.c+.h, lots of gtk files: Move dialog code to new file
Fixed modal dialog z order problems (mainly on windows)
Sat Sep 9 14:11:25 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: Reimplement the idle python shell
Wed Sep 6 19:16:04 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: make ctrl-c and ctrl-v work for gtktextview
Tue Sep 5 12:42:29 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtkgame.c and friends: replace gtktext (gtk1) with gtktextview
Tue Aug 29 14:32:51 CEST 2006 Christian Anthon <anthon@kiku.dk>
* drawboard.c: 'off' and 'bar' should not be translated
Wed 23 Aug 2006 Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c: initialise rollout context when calling RolloutGeneral
Tue Jul 4 18:45:04 CEST 2006 Christian Anthon <anthon@kiku.dk>
* several files: fix gcc4 compiler warnings due to xml using usigned
char
Mon Jul 3 17:58:33 CEST 2006 Christian Anthon <anthon@kiku.dk>
* doc/gnubg.xml, non-src/README: gnubg.xml moved (edit gnubg.texi
instead).
Fri Jun 30 11:41:51 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: fix save settings when using gnubg -t
Thu Jun 29 11:41:00 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gnubg.weights: added to archive
Thu Jun 29 11:27:09 CEST 2006 Christian Anthon <anthon@kiku.dk>
* Several files: move generated files to non-src. Make the generated
files actually compile and automake work as expected.
Mon Jun 26 22:05:50 CEST 2006 Christian Anthon <anthon@kiku.dk>
* Several files: remove simplelibgen
Mon Jun 26 21:00:44 2006 UTC CEST 2006 Christian Anthon <anthon@kiku.dk>
* Several files: remove gtk_1 code missed first time
Thu Jun 22 23:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* Several files: Moved some 3d settings and code into 3d lib.
Thu Jun 22 20:53:54 CEST 2006 Christian Anthon <anthon@kiku.dk>
* Several files: remove gtk_1 code
Sun Jun 18 01:26:05 CEST 2006 Christian Anthon <anthon@kiku.dk>
* Several files: cleanup after ystein i18n changes
Sat Jun 17 19:42:19 2006 ystein Johansen <oystein@gnubg.org>
* Many files: Remove i18n functions like PushLocale and PopLocale,
use glibs g_ascii_strtod and g_ascii_formatd instead.
* gnubg.c and others: Remove gdbm database training
Sat Jun 10 00:02:19 CEST 2006 Christian Anthon <anthon@kiku.dk>
* : Removal of USE_GUI, USE_EXT, xgame* xboard*, the ext directory
Tue Jun 22 Christian Anthon <anthon@kiku.dk>
* Makefile.am (SUBDIRS): Remove intl. (EXTRA_DIST): Add config.rpath.
Upgrade to gettext-0.14.5.
Mon May 29 13:01:07 CEST 2006 Christian Anthon <anthon@kiku.dk>
* M Makefile.am, configure.in, gnubg.gtkrc : gtk1/gtk2 cleanup, we now
expect gtk-2.6.0
* M README,TODO : guile clean
* R config.guess, config.sub, ltmain.sh, libtool : autoconfig cleanup
* M gnubg.c, gtkgame.c : gtk1/gtk2 cleanup, get rid of gdkx.h, which seems
unneeded, update evaluate widget to gtk_text_view
* M gnubg.gtkrc : gtk2 cleanup, don't autogenerate from gnubg.gtkrc.in
anymore
Fri May 26 20:35:05 2006 ystein Johansen <oystein@gnubg.org>
* gnubg.c: Simple Win32 fixes (Windows doesn't use gdkx.h)
Fri May 26 11:51:05 CEST 2006 Christian Anthon <anthon@kiku.dk>
* Many files : Updated the autobuild system. Please read INSTALL in
the topdir. Gtk1 and guile are no longer supported.
Tue May 24 19:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c : Fixed memory overwrite and .mat export for foreign languages
Tue May 24 19:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* render.c, htmlimages.c : Rewrite libart 2d board arrows using cairo
Sat May 21 15:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* boards.xml : Added two new designs by Wilson Amaral Jorge.
Mon May 8 21:32:34 2006 ystein Johansen <oystein@gnubg.org>
* renderprefs.c: A revised 64 bit patch from Alex applied.
Sun May 7 18:49:34 2006 ystein Johansen <oystein@gnubg.org>
* renderprefs.c: Revert Alex' patch.
Tue May 2 00:33:07 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: fix display of gtkeval window
Mon May 1 22:06:34 2006 ystein Johansen <oystein@gnubg.org>
* renderprefs.c: Apply Alex patch.
* texture.txt: Bump version
Sun Apr 16 12:48:31 CEST 2006 Christian Anthon <anthon@kiku.dk>
* rollout.c: Use abs in time check
* gnubg.py : Fix typo
Tue Apr 14 09:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* export.c : Fix 3d png export (and 3d preview bars in appearance dialog)
Thu Apr 13 01:37:29 CEST 2006 Christian Anthon
* Make Jon's sse-splitup actually compile on linux. Moved
SSE_Support() to neuralnet.c to make makeweights compile. Added some
autoconf magick.
Tue Apr 12 07:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* backgammon.h +various: Tidy up min/max to use MIN/MAX everywhere
Tue Apr 11 21:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.c: Minor bugfix when hitting chequers in edit mode
Tue Apr 11 17:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* rollout.c: Only update rollout stats once a second at most
Tue Apr 11 17:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkfile.c: Fix bug changing met with gtk 2
Mon Apr 10 09:49:03 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gtkgame.c: Fixed typo causing crash in RelationalAddMatch
Fri Apr 7 13:46:58 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gnubg.c, gtkgame.c: Fix problems with help menus in gtk
* gtkgame.c : Enable add game to relational in gtk(thx MaX)
* database.py : Create games database when appropriate(thx MaX)
* html.c : small improvement on previous
Thu Apr 6 22:30:58 CEST 2006 Christian Anthon <anthon@kiku.dk>
* html.c make it clearer who is who when exporting to gammonline
Wed Mar 29 10:13:39 CEST 2006 Christian Anthon <anthon@kiku.dk>
* **/Makefile.in aclocal.m4 config.h.in configure: Sync auto-tools
files.
Tue Mar 28 23:45:53 CEST 2006 Christian Anthon <anthon@kiku.dk>
* gnubg.game.mysql gnubg.game.sql gnubg.sql: Fix switched order of
normalised/unnormalised for some error_, so that it matches
database.py.
Tue Mar 28 23:37:40 CEST 2006 Christian Anthon <anthon@kiku.dk>
* remove m4/gettext.m4
Tue Mar 28 23:24:14 CEST 2006 Christian Anthon <anthon@kiku.dk>
* format.c eval.c analysis.c: Clean up isCloseCube and lower limit to
0.16
Sat Mar 20 23:16:45 2006 ystein Johansen <oystein@gnubg.org>
* analysis.c: Fix for problem with wrong double statistics.
(Thanks to Christian Anthon)
Sat Mar 03 10:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Change mouse pointer to watch when computer is thinking
Sat Mar 03 09:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtktoolbar.c: Undo any partial move that may have been made
when entering edit mode.
Sat Mar 03 09:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Remove old ClearText function
Mon Feb 27 10:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* play.c: Fix 'too good' tutor bug
Fri Feb 24 17:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c and others: Sort out copy/paste for gtk 2
Sat Feb 11 09:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* import.c: Fixed an import bug for TMG files
(reported by Christian Anthon).
Mon Feb 06 08:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkfile.c, eval.c, matchequity.c: 3 small fixes from Philippe Michel
Thu Feb 02 07:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkgamelist.c: Replace old gdk_string_width() calls
Thu Jan 31 07:56:45 2006 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Add menu option to switch between 2d and 3d views
Sun Jan 29 19:32:05 GMT 2006 Jim Segrave <jes@jes-2.demon.nl>
* gtkpanels.c - don't do anything to undock panels in CLI mode
ChangeLog entry for 27/01 listed the wrong source file, sigh
Fri Jan 27 18:36:46 GMT 2006 Jim Segrave <jes@jes-2.demon.nl>
* play.c - don't do anything to undock panels in CLI mode
Sat Dec 17 -3:31:09 GMT 2005 Jim Segrave <jes@jes-2.demon.nl>
* gtkchequer.c - CreateMoveListTools() must be called before
calling MoveListCreate(), otherwise coredumps can result
Sat Dec 17 -1:22:09 GMT 2005 Jim Segrave <jes@jes-2.demon.nl>
* html.c - copy basemane() from simplelibgen.c to
get_basename(), as basename() is not promised to be
re-entrant. This caused all the links between html game
files to be set to the last call to basename()
Thu Dec 12 13:23:12 GMT 2005 Jim Segrave <jes@jes-2.demon.nl>
*eval.c change assembler code labels to locals. gcc 3.42 saw
labels as redfined. I don't know what this will do to MS
compilers
or the Intel compiler.
Fri Nov 18 16:38:11 GMT 2005 Jim Segrave <jes@jes-2.demon.nl>
*gtktexi.c - make inclusion of io.h dependent on not having
unistd.h, as done in other routines (io.h is a Windows-only
header)
Mon Sep 19 22:37:25 GMT 2005 Jim Segrave <jes@jes-2.demon.nl>
* relational.c, gtkgame.c - don't reference non-existent gtk
objects
postgresql does not accept queries in the form
SELECT column from A INNER JOIN B INNER JOIN C
ON A.id1 = B.id1 AND B.id2 = C.id2
must be
SELECT column from A INNER JOIN B ON A.id1 = B.id1
INNER JOIN C ON B.id2 = C.id2
Sun Sep 18 14:10:02 GMT 2005 Jim Segrave <jes@jes-2.demon.nl>
* gnubg.game.sql, gnubg.game.mysql - create databases with tables
for game statistics
* database - sample database configuration file
Mon Aug 29 15:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkchequer.c (and a few others), gtkmovelist(.h, .c, ctrl.c) - new files
Added win/loss stats to movelist
Fri Aug 5 11:45:31 2005 GMT Jim Segrave <jes@jes-2.demon.nl>
* gtkexport.c - fix to skip SKILL_GOOD for cube decisions
Sun May 8 12:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkpanels.c: full screen improvments (for gtk 2.6)
* progress.c: alloc mismatch
Wed May 4 18:10:43 GMT 2005 Jim Segrave <jes@jes-2.demon.nl>
* eval.c: Don't use MMAP for reading weights when using sse
Fri Apr 29 20:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* progress.c: Limit list updates in rollouts to reduce flicker
and improve speed (gtk 2.6)
* eval.c: Minor speed improvment
Thu Apr 28 22:35:45 2005 Oystein Johansen <oystein@gnubg.org>
Vectorization of neural net evaluation.
* eval.c: Change callers to NeuralNetEvaluate to use vectorized code.
* set.c: Fix typo. Thanks Jim Curtis.
Wed Mar 30 16:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkfile.c : Allow spaces in filenames (new 2.6 file dialog),
not tested with linux
* gtkgame.c : Fix maximised window->full screen (gtk 2+)
Sat Mar 26 00:17:49 GMT 2005 Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c, sound.c - fix for Cygwin FASYNC vs O_ASYNC
(from Ingo Macherius <macherius@web.de>
Fri Mar 11 19:25:45 2005 Oystein Johansen <oystein@gnubg.org>
* gtkgame.c (InitGTK): move the 'Go' menu to the right place
accoring to HIG.
* gtkgame.c (GTKHelp): Make the command reference window a dialog.
Sun Mar 06 18:00:45 2005 Oystein Johansen <oystein@gnubg.org>
* gtkgame.c InitGTK(): Exclude GTK_STOCK_ABOUT when gtkversion < 2.6
Sat Mar 05 23:50:45 2005 Oystein Johansen <oystein@gnubg.org>
This is the first commit in a large GUI cleanup I intend to do.
Cleanup in the menu system. Simplify all the 'File' menues. Rearrange
accoring to Human Interface Guidlines 2.0 (HIG 2.0). Add some stock
icons to some of the menu items. Please comment on the stock items.
* gtkgame.[ch], gtkpanels.c, gtktoolbar.c: Menu cleanup.
Fri Feb 25 11:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtk(some).c : Make event boxes transparent (By Ingo Macherius)
Tue Feb 23 18:26:45 2005 Oystein Johansen <oystein@gnubg.org>
* gtkgame.c, progress.c: Make all progress bars with gtk_progress_bar
instead of the deprecated gtk_progress_*, when compiled with GTK+2.
Wed Feb 23 06:49:52 2005 GMT Jim Segrave
* gtkpanels.c: use string.h rather than strings.h to get
prototype for strcasecmp()
Tue Feb 22 19:26:45 2005 Oystein Johansen <oystein@gnubg.org>
* gtkcube.c (CubeAnalysisEvalPly): Get the evalcontext right!
Tue Feb 22 19:06:45 2005 Oystein Johansen <oystein@gnubg.org>
* gtkgame.c (GTKFileCommand): Apply a fix from Ingo
Fri Feb 18 16:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* matchequity.c : Fix met xml files met/catalog (By Ingo Macherius)
Thu Feb 17 16:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkfile.c (and a few others): First part of new
file dialogs (By Ingo Macherius)
* gtkpanels.c: Minor gtk 2 window fix
Tue Feb 15 17:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, gtkpanels.c: Remember maximised state of windows
Mon Feb 14 12:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
Fixes from Philippe Michel:
rollout.c, format.c: Fix bugs in rollout output
gnubg.c: Fix for bug 10099
makebearoff1.c: Typo
Thu Feb 10 10:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
Fixes from Ingo Macherius:
external_l.l, external_y.y: Minor parser change
gnubg.c: No-gui build fixes
gtkpanels.c: Remove compiler warning
gnubgmodule.c/h: Add paramater to FindCubeDecision
Fix from Philippe Michel:
matchid.c: Buffer fix for matchidfromkey
Fixes for gtk 2.6:
gnubg.c: Don't hide windows on close - so sound finishes correctly
gtkprefs.c: Fix long pause if no boards.xml file
misc3d.c, play.c: Dice not shown until after roll sound (3d)
Wed Feb 8 16:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* Various fixes for gtk 2.6:
eval.c : Increase poll time
gnubg.c : Fix ok click problem for gtk 2.6
gtkgame.c : Fix dock/undock problem for gtk 2.6
gtkoptions.c gtkbearoff.c gtktempmap.c : Fix dialog modality
Tue Feb 7 17:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c: change get install dir to look at path to exe (windows)
Tue Feb 2 19:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgamelist.c: Remove gtk loop, hopefully fixing "can't move" bug
* gtkgame.c: More relational db code
Tue Jan 5 8:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* relational.c: Add warning if adding unfinished or unanalyzed match
* gtkpanels.c: Fix for console build
Tue Jan 4 9:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkpanels.c: Move remaining window/panel code to this file
and fix a couple of small bugs
Tue Jan 4 00:16:32 2005 GMT Jim Segrave <jes@jes-2.demon.nl>
* gnubgmodule.c - add detail to python doc strings
Sun Jan 2 13:44:55 2005 GMT Jim Segrave <jes@jes-2.demon.nl>
* gnubgmodule.h - reinclude config.h to set HAVE_FSTAT (gcc
doesn't like trying to redfine it and config.h is not
idempotent)
* gnubgmodule.c - replace _getcwd with getcwd, _MAX_PATH with
PATH_MAX, which should be available in all C implementations
Sun Jan 2 11:56:45 2005 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubgmodule.c: Look for local python installation (windows)
Sun 12 Dec 13:27:54 gmt 2004 Jim Segrave <jes@jes-2.demon.nl>
* fix some bugs in scripts/database.py
Sun 28 Nov 01:04:30 GMT 2004 Jim Segrave <jes@jes-2.demon.nl>
* import.c - patch Fibs code to ignore non-game lines in input
Wed Nov 23 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* play.c: Fix wrong resign acceptance
* eval.c, bearoff.c, set.c: Hypergammon fixes
Thu Nov 18 23:06:46 2004 GMT Holger Bochnig <hbgg@gmx.net>
* bearoffdump.c: allow posids as arguments
Mon Nov 15 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c (and others) : Simplify widget grabbing, hopefully
fixing multiple "can't move" bug
Mon Nov 8 11:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c : Fixed bug with credits
Fri Nov 5 14:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.sql, gtkgame.c, realational.c, database.py :
Added multiple environments to the realational database
Fri Nov 5 14:08:48 2004 Joseph Heled <joseph@gnubg.org>
* eval.c (EvalInitialise): Fix bug with prunning. Order of crash
and race nets was reversed, So crashed/race prune nets were
returning garbage.
Thu Nov 4 13:12:07 2004 Joseph Heled <joseph@gnubg.org>
* eval.c: Make evals after prunning cubeful. See if it makes a
difference. Would be nice to offer this as a global option.
Wed Nov 03 20:44:45 2004 Oystein Johansen <oystein@gnubg.org>
* gtkgame.c (EvalWidget): Fix a copy'n'waste error
* eval.c: Change 'Tiny' movefilter to 5 candidates.
Wed Nov 03 20:07:45 2004 Oystein Johansen <oystein@gnubg.org>
* gtkchequer.c (CreateMoveList): Use NULL instead of ""
Wed Nov 03 09:15:45 2004 Oystein Johansen <oystein@gnubg.org>
* i18n.h: reenter #include "config.h"
Tue Nov 02 22:03:30 2004 CET Petr Kadlec <mormegil@centrum.cz>
* gtkprefs.c: Fixed an issue when not using HAVE_LIBXML2
Wed Oct 27 01:20:45 2004 Oystein Johansen <oystein@gnubg.org>
* boards.xml: Add design by Ian Curtis.
Wed Oct 27 01:20:45 2004 Oystein Johansen <oystein@gnubg.org>
* gtktheory.c gtktempmap.c: Two files I missed in the last commit.
Tue Oct 26 21:00:45 2004 Oystein Johansen <oystein@gnubg.org>
Hate me or love me! I've commited the code that removes the reduced
searches. (Sorry Nis! Hope it won't cause you any trouble). Hopefully
I will be able to combine the two reduction methods later.
* gtkgame.c, eval.c and other files: Add user interface to prune nets
Fri Oct 22 15:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* html.c, and others : Fix exports to display cube analysis whenever
analysis available
Thu Oct 21 15:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* matchequity.c, set.c : Bug fix while inverting met
Tue Oct 19 17:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c : Fixes for import/export appearance designs
Sun Oct 17 22:14:00 2004 UTC Jim Segrave <jes@jes-2.demon.nl>
* Makefile.in - missing gtkpanels.*
* sgf.c - versioning for pruning
* gnubg.c - move reduction variables inside ifdef
* eval.c - cosmetic fix for compiler warnings
* xpm/x.xpm - missing final line of bmp
* eval.h - add version numbers for pruning in .sgf files
Sat Oct 16 23:36:45 2004 Oystein Johansen <oystein@gnubg.org>
* gnubgmodule.c: Fix dice option handling
Thu Oct 14 17:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, gtkgame.c : Remember last import+export file type
Thu Oct 14 12:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* eval.c : Minor (non gcc) compiler fixes
Tue Oct 12 19:44:00 2004 Oystein Johansen <oystein@gnubg.org>
* gnubgmodule.c: Add methods for FindBestMove and EvaluateCubeful
Tue Oct 12 21:36:00 2004 Joseph Heled <joseph@gnubg.org>
* eval.c (FindBestMoveInEval): Add usage of prunning nets. This is
quite a large change, and since it adds a member to evalcontext,
possibly a destructive one.
Sun Oct 10 23:04:14 GMT 2004 Jon Nall <backgame@gmail.com>
* backgammon.h, gnubg.c, play.c: Added support for adding comments
to moves from the command line. Closes bug #10638
Tue Oct 5 16:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* database.py, relational.c, gtkgame.c (and others) : Added
check for match in database
Wed Sep 29 21:29:45 2004 Oystein Johansen <oystein@gnubg.org>
* relational.c: make it compile without gtk
Wed Sep 29 18:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* database.py, relational.c, gtkgame.c: Added more relational
database code
Wed Sep 29 15:10:45 2004 Oystein Johansen <oystein@gnubg.org>
* makebearoff.c: Display 'usage' on Windows.
Sun Sep 19 14:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Fix gtk2 panel bug
Thu Sep 16 8:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* eval.c: Fix bug (navigate to last match crash) - hopefully
Fri Sep 10 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.c, gtkgame.c, gnubg.c, gtkpanels.c: Added command and theory
panels (test) and slider for panels.
Thu Sep 9 12:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.c, render.*, gnubg.c: Small memory leaks, uninitialized
memory reads and tidy up code added. May fix import .mat bugs
Mon Sep 6 00:27:04 2004 GMT Jim Segrave <jes@jes-2.demon.nl>
* show.c = fix for running off array end in show path command
Wed Sep 1 17:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Small import bug fixed
Wed Aug 25 18:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkgamelist.c, import.c, sgf.c: Speed up loading
and remove flickering
Fri Aug 13 09:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* play.c: Small bug fix (bug 9926)
Wed Aug 11 23:39:41 CEST 2004 Joern Thyssen <jth@gnubg.org>
* external_y.y: remove %output to stop ylwrap complaining.
Thu Aug 12 07:46:18 2004 Joseph Heled <joseph@gnubg.org>
* gnubg.c: Add search in "scripts/gnubg.py" if all else fails in
CommandLoadPython, since this IS the place 'gmake install' puts on
my Linux box (i.e./usr/local/share/gnubg/scripts/gnubg.py).
Mon Aug 02 09:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* play.c: Fixed 3d quick draw bug
Sun Aug 01 00:40:47 UTC 2004 Jim Segrave <jes@jes-2.demon.nl>
* gnubgmodule.c - calls to PythonGame had arguments in different
order, so database ratings were calculated on 1 point matches
Fri Jul 30 23:08:58 CEST 2004 Oystein Johansen <oystein@gnubg.org>
* gtkgame.c (PythonShell): starting "idle" differs between platforms.
Sun Jul 25 20:34:35 2004 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* gnubg.c (Convert): Suppress compiler warnings. Synch with
iconv() prototype.
Sun Jul 25 19:19:41 2004 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* rollout.h: Suppress compiler warnings; static declaration for
`nSkip' follows non-static.
Sun Jul 25 18:15:47 UTC 2004 Jim Segrave <jes@jes-2.demon.nl>
* gtkexport.c - fix handling of cube export settings (typo and
corrections for unused entries)
Mon Jul 19 09:53:10 CEST 2004 Joern Thyssen <jth@gnubg.org>
* gnubg.c (real_main): initialise random seed for rollout
RNG.
(bug reported by Chuck Bower, fix suggested by Jim)
Mon Jul 12 22:48:32 CEST 2004 Petr Kadlec <mormegil@centrum.cz>
* gtkprefs.c (ImportDesign): Use ngettext.
* html.c (HTMLBoardHeader): Ditto.
Sun Jul 11 16:37:02 2004 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* eval.c (EvalInitialise): Suppress compiler warnings.
Sun Jul 11 14:47:30 2004 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* gtkgame.c: include <ctype.h> for isspace().
Sun Jul 11 14:42:51 2004 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* dice.h: Added extern UserRNGOpen();
Sun Jul 11 13:30:11 2004 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* htmlimages.c: include <malloc.h>.
Sun Jul 11 12:07:25 CEST 2004 Joern Thyssen <jth@gnubg.org>
* external.c: pacify fussy compilers.
Sun Jul 11 07:17:35 2004 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* gnubg.c (DisplayTimeAnalysis, ShowBoard, CommandCopy): Use
ngettext. And tabify.
* gtkboard.c (ReturnHits): Ditto.
* gtkgame.c (TimeAnalysis, GTKShowScoreSheet): Ditto.
* html.c (HTMLPrologue, ExportGameHTML): Ditto.
* html.c (ExportPositionGammOnLine): Ditto.
* play.c (ApplyMoveRecord): Ditto.
Sat Jul 10 14:35:26 2004 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* gtkoptions.c (aaszLang): Use ja_JP instead of ja_JA. Added
ru_RU.
Sat Jul 10 08:17:26 2004 GMT TAKAHASHI Kaoru <kaoru@kaisei.org>
* i18n.h [!ENABLE_NLS] (ngettext): New macro.
Sun Jul 4 14:22:59 CEST 2004 Joern Thyssen <jth@gnubg.org>
* analysis.c (CashPoint): fix bug leading to wrong
classification of wrong doubles.
(reported by Hans-Jrgen Schfer)
* eval.c (calculate_gammon_rates): new function.
* openurl.c, gtkgame.c, relational.c: pacify fussy compilers.
Sun Jul 4 11:41:54 CEST 2004 Joern Thyssen <jth@gnubg.org>
* gtkprefs.c: add functions for importing and exporting
board designs.
Sat Jul 3 14:41:56 CEST 2004 Joern Thyssen <jth@gnubg.org>
* configure.in: rewrite test for ftgl.
* gtkgame.[ch]: declare SelectFile external.
Wed Jun 30 22:28:07 CEST 2004 Joern Thyssen <jth@gnubg.org>
* configure.in: write test for ftgl.
Wed Jun 30 20:42:53 CEST 2004 Nis Joergensen <nis@superlativ.dk>
* gtkboard.c: fix bug that disallowed certain legal moves.
Mon Jun 28 16:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* boards.xml: Add 2 new designs by Ruth Schneider and Ausbilder Schmidt
Mon Jun 28 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgamelist.c: Allow last move to be selected in game list
* render.c: Small bug in design dialog
Sun Jun 27 11:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.c: Fixed bug - 2d chequers disappearing if dragged off board
* positionid.c: Fixed bug - illegal position id's not being errored
Sat Jun 26 16:49:31 CEST 2004 Nis Joergensen <nis@superlativ.dk>
* speed.c (CommandCalibrate): Speed Calibration" now avoids using the
same seed for randomization every time, so gives reliable results on
consecutive runs.
* gtkboard.c: Dragging checkers allows for pick-and-pass. The logic I
have implemented is to hit if possible, and if there are two options,
hit with the "left" die (ie highest in standard setup). I am still
working on undo of pick-and-pass.
* play.c: Gnubg allows you to resign AFTER you roll, based on what you
rolled. This actually fixes a way to cheat - resigning if your equity
drops to below -1 or -2 when you roll.
Thu Jun 17 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkchequer.c, gtkgamelist.c: Fixes for styles in gamelist
Wed Jun 16 20:50:46 CEST 2004 Joern Thyssen <jth@gnubg.org>
* gnubg.gtkrc.in: backport changes to gnubg.gtkrc
Wed Jun 16 12:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkchequer.c, gtkboard.c, gnubg.gtkrc: separate styles for current
move and done move in move list
Wed Jun 16 12:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkchequer.c: use move style for hint window, also removed highlight
code from several files
Tue Jun 15 20:32:05 CEST 2004 Joern Thyssen <jth@gnubg.org>
* gnubg.gtkrc.in: autogenerate gnubg.gtkrc
Tue Jun 15 15:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: gtk_widget_destroy error message when opening
hint window (reported by Ian)
Tue Jun 15 12:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgamelist.c, gnubg.gtkrc: Fix font styles for gtk2 and style order
Tue Jun 15 05:58:34 2004 TAKAHASHI Kaoru <kaoru@kaisei.org>
* credits.sh, credits.c, AUTHORS: Fix Japanese translations
credit.
Sun Jun 13 22:32:09 CEST 2004 Jim Segrave <jes@jes-2.demon.nl>
* import.c - allow handling uncompleted matches in .mat files
Sat Jun 12 12:25:54 CEST 2004 Joern Thyssen <jth@gnubg.org>
* import.c (ParseSGGOptions): use strcasecmp for deciding which
variant of backgammon is used.
(reported by Hugh Sconyers)
Fri Jun 11 18:56:45 GMT 2004 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.c: Fix minor chequer display bug
Fri Jun 11 19:00:05 CEST 2004 Jim Segrave <jes@jes-2.demon.nl>
* gtkgamelist.c gnubg.gtkrc
* Add gtkrc support for any-blunder/any-error/any-doubtful
Thu Jun 10 17:41:40 CEST 2004 Joern Thyssen <jth@gnubg.org>
* Makefile.am: add gtkgamelist.c
Thu Jun 10 14:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgamelist.c, gnubg.gtkrc: Multiple styles and new defaults for game list
Wed Jun 9 14:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, gtkgamelist.c, gnubg.gtkrc: Get game list colours from gtkrc file
Tue Jun 8 8:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkgamelist.c: Colour mistakes in game list
Mon Jun 7 8:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Remove keyboard focus from game window, fix minor bug
with new right click menu.
* gnubg.c: Empty board on startup (try #2)
Sun Jun 6 18:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c: Empty board on startup
* gtkboard.c: Close hint window when editing
* import.c: Ignore empty lines in mat import
Fri Jun 4 22:58:22 CEST 2004 Joern Thyssen <jth@gnubg.org>
* eval.c (EvalKey): add another bit to match scores in
hash key.
(fixes bug #9211 reported by Casey Hopkins)
Fri Jun 4 18:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gnubg.c: Add show scoresheet command (to right click menu)
Wed Jun 2 9:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkboard.c: Add undo right click menu
Thu May 27 19:05:49 CEST 2004 Joern Thyssen <jth@gnubg.org>
* import.c (ParseMatMove): fix logic for calculating
resignations.
(reported by Joachim Matussek)
Tur May 20 15:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* external.*: Remove memory leaks
Tue May 18 15:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* external.*: Minor changes to parser
Tue May 18 8:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c, render.c: Several small fixes to board appearance options
Wed May 12 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* boards.xml, gtkprefs.c, render.c+.h, renderprefs.c:
Add Taki-style rounded points
Mon May 10 21:33:28 CEST 2004 Joern Thyssen <jth@gnubg.org>
* external.h: move "#define closesocket close" to external.h
Sat May 8 11:25:08 CEST 2004 Joern Thyssen <jth@gnubg.org>
* gnubg.c, show.c: enlarge buffers
Fri May 7 21:13:26 CEST 2004 Joern Thyssen <jth@gnubg.org>
* external_l.l: fix buffer overflow.
Fri May 8 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* external.c, dice.c, set.c: Fix socket code for windows
Fri May 7 16:17:09 CEST 2004 Joern Thyssen <jth@gnubg.org>
Change union moverecord into struct moverecord
(this is step 1 towards better support for editing positions
and storing analysis)
* backgammon.h: Change union moverecord into struct moverecord
(change a gazillion subroutines)
Fri May 8 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, gtkgame.c, gtkpath.c, set.c: Added png to set path command
Fri May 7 07:48:47 CEST 2004 Joern Thyssen <jth@gnubg.org>
Prerelease 0.14.3. CVS tag is pre-rel-0-14-3
* configure.in, gtkgame.c: prelease 0.14.3
Fri May 7 07:27:18 CEST 2004 Joern Thyssen <jth@gnubg.org>
* gnubg.c: fix problems with initialisation of rollout
contexts. This lead the problem about cubeless and cubeful
equities being different for -1,-3C rollouts reported by
Robert Eberlein.
Thu May 6 15:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtktempmap.c, gtkboard.c: Show correct dice colour in temperture
map when in 3d
Mon May 3 15:20:43 CEST 2004 Joern Thyssen <jth@gnubg.org>
* osr.c, dice.c: add mti as parameter to init_genrand.
Fri Apr 30 18:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkboard.c: Change dice and cube selection dialogs to fixed size
* gtkboard.c board3d/graph.c: Remove event->count optimization as now done in gtk
* i18n.c: Warn if too many PopLocale() calls attempted
* gtkprefs.c, htmlimages.c: No libart build fixes
* gtkprefs.c: Small bug in colours when switching from 3d to 2d
Thu Apr 29 20:44:24 CEST 2004 Joern Thyssen <jth@gnubg.org>
* bearoff.c (GetDistCompressed): fix sanity check for huge
databases.
Wed Apr 28 20:28:22 CEST 2004 Joern Thyssen <jth@gnubg.org>
Add new utility program bearoffdump for inspection
of databases.
* bearoffdump.c: new file.
* Makefile.am: add bearoffdump as installable file.
Wed Apr 28 16:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* set.c: Change "set priority idle" to set the process priority to
idle (for windows).
Mon Apr 26 13:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, credits.*: Moved copyright string to credits.sh
Sun Apr 25 08:46:27 CEST 2004 Dmitri I GOULIAEV <dmitri.gouliaev@telkel.net>
* credits.sh: add Dmitri I GOULIAEV
* NEWS: add russian translation
Fri Apr 23 22:12:51 CEST 2004 Joern Thyssen <jth@gnubg.org>
* gnubg.c: according to FSF we must give individual years
rather than an interval.
* gtkboard.c (update_pipcount): show epc in lowercase.
* gnubg.c: fix a typo in the definition for "relational" command.
* relational.c: add code for most functions.
* scripts/database.py: adapt code to relational.c
Fri Apr 23 13:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c: Change year to 2004 for command line build
Thu Apr 22 21:09:01 CEST 2004 Joern Thyssen <jth@gnubg.org>
Introduce RNG context for storage of RNG-specific private data.
* dice.c (many functions): add rngctx to a number of functions
(change all callers)
* show.c (CommandShowSeed): show RNG counter as well.
Wed Apr 21 22:53:44 CEST 2004 Petr Kadlec <mormegil@centrum.cz>
Corrected some i18n-related problems + typos.
* gnubg.c, gtkgame.c, gtkprefs.c, gtkrace.c, html.c,
play.c, set.c, show.c, text.c: Added calls to gettext,
marked some previously unmarked translatable
strings (and vice versa), corrected a few typos.
Tue Apr 20 17:56:25 CEST 2004 Joern Thyssen <jth@gnubg.org>
* matchequity.c (initPostCrawfordMETFromParameters):
add missing call to PushLocale.
(reported by Joachim Matussek)
Mon Apr 19 22:52:41 CEST 2004 Joern Thyssen <jth@gnubg.org>
* gnubg.c (EPC): fix "same dice sequence for several games in a
row"-bug, reported by several users (Erik Barfoed, ystein, Murat
etc). Well, this is not really a fix, I've just changed the code
to avoid calling the OSR code, that resets the seed.
We really need to introduce several RNG contexts...
Mon Apr 19 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c: Small 3d bug fix
Sun Apr 18 10:53:26 CEST 2004 Joern Thyssen <jth@gnubg.org>
Define functions for CLI and GUI support for relational
database interface.
* gnubg.c: new functions "relational ...".
* relational.c, Makefile.am: new file
* gtkgame.c: menu items for relational database.
* dice.c (InitRNGSeedLong): allow setting seed = 0.
Sat Apr 17 23:43:07 2004 Oystein Johansen <oystein@gnubg.org>
* render.c (RenderFrameWood): Fix typo.
Sat Apr 17 20:01:07 CEST 2004 Joern Thyssen <jth@gnubg.org>
* set.c (CommandSetMet): call "clear hint".
Sat Apr 17 10:58:18 CEST 2004 Joern Thyssen <jth@gnubg.org>
Save leading comment lines in the match information when
reading Jellyfish .mat files
(e.g., the information Dueller adds to .mat files)
* import.c (ImportMat): same comments.
* html.c (HTMLMatchInfo): rearrange match info into a <table>
Fri Apr 16 22:02:23 CEST 2004 Joern Thyssen <jth@gnubg.org>
Add built-in support for mec
* mec.c: new file (copy of original mec.c with modfications
for gnubg)
* Makefile.am: add mec.c
* matchequity.c (initMetFromParameters,
initPostCrawfordMETFromParameters): support for mec.
Fri Apr 16 16:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* sound.c: Fix bug if no sound card on windows
Wed Apr 14 22:41:23 CEST 2004 Joern Thyssen <jth@gnubg.org>
* set.c (SetMoveFilter): insert some debug code.
* set.c: set szSetCommand a few places.
Wed 14 Apr 2004 16:39:45 GMT Jim Segrave <jes@jes-2.demon.nl>
* play.c - turn off Crawford on one point matches
* board3d/misc3d.c - avoid segfault if no textures (CLI mode)
Mon 12 Apr 2004 13:12:06 GMT Jim Segrave <jes@jes-2.demon.nl>
* set.c - put if (fX) wrapper around SetToolbarStyle, stops
GTK complaints in text mode
Sun Apr 11 22:52:49 CEST 2004 Joern Thyssen <jth@gnubg.org>
* gtkprefs.c (SetTitle): move misplaced pbdeSelected.
(contributed by Petr Kadlec)
* gnubg.c (real_main): no env. variable DISPLAY on wintendo.
(contributed by Petr Kadlec)
Sun Apr 11 19:20:52 CEST 2004 Joern Thyssen <jth@gnubg.org>
Various patches from Mike Petch.
* gnubg.c (real_main): avoid segfaults with gnubg -t
* sound.c (SoundWait): do nothing if sound is disabled.
* sound.c: only include stropts.h when HAVE_STROPTS_H
* openurl.c, import.c: include glib.h
* Makefile.am: move openurl.c to common files (it's now
being used by CommandShowManualWeb)
* configure.in: various checks for Mac.
* set.c (CommandSetGUIShowEPCs): define a NO_GUI variant of function
Thu Apr 8 16:03:09 CEST 2004 Joern Thyssen <jth@gnubg.org>
Show EPCs in GUI. (suggested by Ian Shaw)
* gtkboard.c (update_pipcount): show EPCs
* gnubg.c: new command "set gui showepcs on|off"
* set.c (CommandSetGUIShowEPCs): new sub.
* gnubg.c (EPC): new parameter fOnlyRace
* gtkoptions.c: gui control for setting fGUIShowEPCs
Wed Apr 7 10:46:00 CEST 2004 Joern Thyssen <jth@gnubg.org>
* configure.in, sound.c, config.h.in: check for _af_ulaw2linear
Mon Apr 5 08:24:52 CEST 2004 Joern Thyssen <jth@gnubg.org>
* Makefile.am: add gnubg.sql to DATA
* gnubg.sql, scripts/database.py: rename stat to matchstat, and change
some PKs/FKs
* gnubg.c (CommandLoadPython): use PathSearch.
Sun Apr 4 15:50:55 CEST 2004 Joern Thyssen <jth@gnubg.org>
First implementation of gnubg-rel.database interface.
* gnubg.sql: DDLs for gnubg database.
* scripts/database.py: python script for adding match to database.
Sun Apr 4 15:11:10 2004 Joern Thyssen <jth@gnubg.org>
* gnubgmodule.c (PyGameStats): add missing statistics.
* gnubgmodule.c: new functions "gnubg.luckrating" and
"gnubg.errorrating".
Sun Apr 4 10:35:13 2004 Joern Thyssen <jth@gnubg.org>
Respect $BROWSER
(http://www.catb.org/~esr/BROWSER/index.html)
* openurl.c: use env. variable BROWSER. Also, call "system"
instead of g_command_line_sync which doesn't seem to work with lynx.
* gnubg.c: new commands "show manual [web|gui]".
* gtkgame.c: use "show manual [web|gui]".
* show.c: new functions "show manual [web|gui]".
Sun Apr 4 09:43:17 2004 Joern Thyssen <jth@gnubg.org>
* sound.c: include <libaudiofile.h>
Thu Apr 1 11:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkchequer.c: Reset interupt flag on analysis start
* sound.c: Add some error handiling to windows sound
Wed Mar 31 20:58:49 2004 Joern Thyssen <jth@gnubg.org>
* Makefile.am: add BR1_SOURCES to makebearoff and makehyper.
* configure.in: whoops, remove "dynamic"..
* sound.c: include <stropts.h> [SIGIO]
Wed Mar 31 9:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c and other files: Moved preview in preferences
Mon Mar 29 17:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Fixed small bug to allow both names to be swapped
Mon Mar 29 09:40:02 CEST 2004 Joern Thyssen <jth@gnubg.org>
* Makefile.am: target for br1.c not kept up to date with
changes in makebearoff
* Makefile.am: FLEX->LEX, BISON->YACC
* bearoff.h: declare BearoffAlloc extern
* configure.in: add "dynamic" as parameter to --enable-bearoff
* makebearoff1.c: update code to match latest version of bearoff.h
* play.c (DumpGameList): fix typo, add linebreak
(reported by Mike Whitton)
* gtkgame.c: use correct release_id when reporting bugs.
Sun Mar 28 09:07:48 2004 Joern Thyssen <jth@gnubg.org>
* matchequity.c (initMETZadeh): use G1 for calculation
of 1-away pre-Crawford values.
Sat Mar 27 10:45:08 CET 2004 Joern Thyssen <jth@gnubg.org>
Prerelease 0.14.2
Thu Mar 25 22:22:57 CET 2004 Joern Thyssen <jth@gnubg.org>
* Makefile.am, */Makefile.am: add a few missing files
(reported by Christian Anthon)
Thu Mar 25 21:04:54 CET 2004 Joern Thyssen <jth@gnubg.org>
* credits.sh, gtkgame.c, show.c, credits.c, credits.h:
Move generation of cred entries into credits.sh for easy
reuse in the text version of CommandShowCredits.
Wed Mar 24 12:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: More credits and version info now copyable.
Tue Mar 23 12:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* boards.xml, textures.txt: Added settings for final few 3d designs,
tidied up design a bit too.
Mon Mar 22 12:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Make sure messages shown when docked panels are
hidden, also don't show a message when setting cube (bug 3973)
Fri Mar 19 12:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Change window order and titles, and put back
accelerators from windows (Ned's suggestions)
Fri Mar 19 00:26:45 2004 Oystein Johansen <oystein@gnubg.org>
* external.c (and other files): changes to use winsock2.h
Thu Mar 18 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Panel bug fixed (removed warning)
Mon Mar 16 11:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Panel bug fixed (crash at startup)
Mon Mar 15 17:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* sound.c: Wait when multiple sounds attempted to be played (windows)
Mon Mar 15 11:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c gtkgame.c: Reorganized about box
Mon Mar 15 07:49:53 2004 Joern Thyssen <jth@gnubg.org>
* gnubgmodule.c (PythonInitialise): fix bug for szDir==NULL
(reported by Joseph Heled)
Sun Mar 14 08:55:39 2004 Joseph Heled <pepster@users.sourceforge.net>
* gtkcolour.h: Change broken type for GtkColourPicker::func and
prototype.
Fri Mar 12 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, gtkprefs.c, gtkgame.c: Removed texture load errors when in 2d mode
Mon Mar 8 8:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkcolor.c, gtkprefs.c: Remove "property delete" gtk warning message
when changin colours
Thu Mar 4 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gnubg.c: Replace USE_OLD_LAYOUT compile flag with menu option
* gtkboard.c: Crawford flag only changeable when editing
Sun Feb 29 18:17:14 2004 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gnubg.c: #include <winsock.h> only if WIN32 defined.
Wed Feb 25 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, gtkgame.c: Add option so toolbar can show text, icon or both
Wed Feb 25 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, gtkgame.c, set.c: Save shown panels
* gnubg.c : Fixed small show epc bug
Fri Feb 20 15:10:39 CET 2004 Joern Thyssen <jth@gnubg.org>
* Makefile.am, configure.in: move gnubg.py to scripts.
* gnubgmodule.c: _MAX_PATH only defined onwintendo.
Thu Feb 19 13:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* import.c: Fixed import jellyfish pos problem (bug 6086)
Thu Feb 19 9:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* scripts: Added new directory to cvs for python scripts
Wed Feb 18 11:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Remove maximum column size of text copied to
clipboard from statistics view (Bug 4161).
Mon Feb 16 21:57:18 CET 2004 Joern Thyssen <jth@gnubg.org>
* bearoff.c (HeuristicDatabase): align heuristic database
with GetBearoffDistUncompressed (a.k.a. the 40 byte offset).
(reported by Daniel Murhpy)
Mon Feb 16 9:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* html.c: Tidy text version of html export
Sat Feb 14 20:32:24 CET 2004 Joern Thyssen <jth@gnubg.org>
* gnubg.c: new command "load python <filename>".
Mon Feb 9 22:56:17 CET 2004 Joern Thyssen <jth@gnubg.org>
* import.c (ImportTMG): don't call SwapPlayers unless
a game is in progress.
(reported by John Marttila)
Thu Feb 5 19:06:31 CET 2004 Joern Thyssen <jth@gnubg.org>
* progress.c (formatDelta): fix small bug leading to
gnubg thining that there is 60 hours/day.
(reported by Michael Depreli)
Wed Feb 4 17:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* import.c (and minor changes in others) : Limit size of player
names in import files, bug #7526
Mon Feb 02 2004 18:42:05 GMT
* timer.c - wrong #if around include
Fri Jan 30 9:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* several files: Small changes for msdev compiler
Thu Jan 29 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.c, gtkprefs.c: 3d quick draw-last options added
Wed Jan 28 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.c: 3d quick draw-chequer target help added
Tue Jan 27 9:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.c, gtkprefs.c: Some more 3d quick draw code
Mon Jan 26 19:24:34 2004 Joern Thyssen <jth@gnubg.org>
NetBSD compilation fixes by Adrian Bunk.
* gnubg.c (real_main): HAVE_NL_INFO does not
necessarily imply HAVE_LANGINFO_CODESET
* sound.c: include sys/types.h before sys/audioio.h to
define u_int.
Mon Jan 26 07:31:03 2004 TAKAHASHI Kaoru <kaoru@kaisei.org>
* htmlimages.c [!HAVE_LIBPNG] (CommandExportHTMLImages): Argument
synch with HAVE_LIBPNG version.
Wed Jan 21 21:17:12 2004 Joern Thyssen <jth@gnubg.org>
* bearoff.c (GetDistCompressed): fix stupid stupid stupid bug.
(reported by several users)
Tue Jan 20 00:22:21 CET 2004 Joern Thyssen <jth@gnubg.org>
Prerelease 0.14.1
* configure.in: bump to 0.14.1-devel
Tue Jan 20 00:02:30 CET 2004 Joern Thyssen <jth@gnubg.org>
* bearoff.c (GetDistCompressed): add sanity check to detect
corrupted bearoff files.
(inspired by bug #7296 by Rod Roark)
Mon Jan 19 10:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* timer.c timecontrol.c: Small timing changes
Mon Jan 19 9:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, gtkboard.c, gtkchequer.c, gtkgame.c, gtkgame.h,
gtkprefs.c, gtktoolbar.c: More 3d quick draw option stuff
Fri Jan 16 9:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* set.c, render.c, play.c, renderprefs.c, gtkprefs.c, gtkoptions.c,
gtkgame.c, gtkboard.c: 3d quick draw option
Fri Jan 16 9:56:45 2004 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* bearoff.c, show.c, progress.c: Removed some build warnings
Sun Jan 4 13:35:16 2004 Joern Thyssen <jth@gnubg.org>
* gtkchequer.c (CreateMoveList): remove the old layout version as
the new can do both versions.
(reported by Nardy)
Sun Jan 4 11:05:03 2004 Joern Thyssen <jth@gnubg.org>
The hint dialog will now always show the w/g/bg's whereas the panelled
analysis only shows the equity/MWC. Pressing the "details" button
will pop up the hint dialog.
* gtkchequer.c: restore some of the old non-panel code
Sun Jan 4 2004 00:51:45 Jim Segrave <jes@jes-2.demon.nl>
* makebearoff.c: va_start needs stdarg.h
Sat Jan 3 16:53:09 2004 Oystein Johansen <oystein@gnubg.org>
* makebearoff.c: Add progress bar. (Win32 only)
* makebearoff.rc: New file.
Sat Jan 3 14:32:46 2004 Joern Thyssen <jth@gnubg.org>
Some updates to EPCs:
* gnubg.c (EPC): return mu and sigma if requested.
* gnubg.c (ShowEPC): calculate GWC from mu and sigma.
* onechequer.c (GWCFromMuSigma, GWCFromDist): new funtions.
Sat Jan 3 01:02:49 2004 Joern Thyssen <jth@gnubg.org>
* configure.in: look for socklen_t.
Fri Jan 2 19:23:09 2004 Oystein Johansen <oystein@gnubg.org>
* render.c (RenderDice): Redesign the dice in the 2D board.
* gtkboard.c (DrawDie): Redesign the dice in the dice selection
dialog.
Fri Jan 2 12:14:52 2004 Joern Thyssen <jth@gnubg.org>
Use one chequer racing formulae from Zadeh & Kobliska, Management
Science, 1977.
* onechequer.c (GWCFromPipCount): new function. Delete obsolete
OneChequer and GetDistFromPipCount.
(change all callers)
Thu Jan 1 22:59:09 2004 Oystein Johansen <oystein@gnubg.org>
* external.c: Add som #if USE_SOCKETS to make it compile w/o socket
support.
Thu Jan 1 20:29:09 2004 Joern Thyssen <jth@gnubg.org>
* gnubg.c (DisplayAnalysis, DisplayTimeAnalysis): show time analysis
in cli.
* gtkgame.c (TimeAnalysis, SetAnnotation): show time analysis
in gui.
* analysis.c, import.c: remove debug output
* format.c (OutputMWCDiff): new function.
Thu Jan 1 18:56:50 2004 Joern Thyssen <jth@gnubg.org>
Report equity loss due to "time outs", e.g., when importing
matches from TMG which ended with "time out".
[USE_TIMECONTROL]
TODOs: save in SGF file, text/gtk analysis output
* analysis.c (AnalyzeMove): analyse time-outs.
* analysis.c (updateStatContext): calculate equity loss from time-outs.
* formatgs.c (formatGS): output time-outs.
* import.c (ParseTMGGame): don't record dice rolls with dice recorded
as '?'
Thu Jan 1 12:44:52 2004 Joern Thyssen <jth@gnubg.org>
Happy New Year to all!
* gtktoolbar.c (ToolbarUpdate): disable edit button if there
is no match in progress
(reported by Misja Alma)
Wed Dec 31 23:24:55 2003 Joern Thyssen <jth@gnubg.org>
Change external interface to use yacc/lex parser/scanner.
* configure.in: look for yacc, lex using correct macros.
* external_l.l, external_y.y: new files
* external.c: use yacc/lex
Mon Dec 29 23:58:34 2003 Joern Thyssen <jth@gnubg.org>
* play.c (NewGame): remove some old code that led
to gnubg deleting the current game. I wonder why
I originally inserted that code???
(bug #7008 reported by Petr Kadlec)
Mon Dec 29 23:17:20 2003 Joern Thyssen <jth@gnubg.org>
* progress.c: move cpp directive.
Mon Dec 29 23:14:35 2003 Joern Thyssen <jth@gnubg.org>
* Makefile.am, configure.in: don't use old X code anymore.
(bug #7003, reported by Rod Roark)
Thu Dec 18 23:35:16 2003 Joern Thyssen <jth@gnubg.org>
* configure.in: search for ATLAS libblas.
* bearoff.c: disable cache, since it appears to be rather
inefficient.
* bearoff.c (ReadBearoffOneSidedExact): only use cache when
initialised.
* show.c (CommandShowEPC): new subroutines.
* gnubg.c (ShowEPC, EPC): new functions.
* gnubg.c: new command "show epc".
* onechequer.c (DistFromEPC): new function.
* makebearoff.c (BearOff): fix database lookup bug.
* gtktheory.c, gtkbearoff.c, gtkgame.c: fix font bug introduced earlier.
* gtkbearoff.c (GTKShowEPC): new function.
* eval.c (EvalInitialise): initialise table used for neural net
evaluation
* gtkgame.c: add "show epc" to menu.
Sat Dec 13 21:15:52 2003 Joern Thyssen <jth@gnubg.org>
* gtkrace.c (OneChequerPage): remove call to SwapSides
(reported by Ned Cross and Petr Kadlec)
* gnubg.c (HintChequer): compile error: move "moverecord *pmr"
outside USE_GTK.
(reported by Nardy)
* gtkgame.c (ReportBug): remove extra slash in path
(bug #6898 by Kennedy Fraser)
* analysis.c (AnalyzeMove): generalise calculation of
is_initial_position. Use is_initial_position for calculation of luck.
(reported by Mathias Kegelmann)
* progress.c: print time elapsed, estimated time left, and
estimated final standard error.
* show.c (CommandShowVariation):
* bearoff.c, format.c, gtktheory.c: add some gettexts.
* import.c (isAscending): fix off-by-one bug.
(reported by Joseph Heled)
* set.c (CommandSetVariation): add some extra output to
emphasize that the new setting won't be effective until
a new match or session has been started.
Mon Dec 29 10:56:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* htmlimages.c, html.c: Small fixes and variable size html image generation
Wed Dec 3 11:56:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* htmlimages.c: Tidied code
Sun Nov 30 13:15:48 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (real_main): honour env. var HISTSIZE.
* gnubg.c (CommandHistory): show all entries in history.
(suggested by Achim)
Son Nov 30 12:50:45 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLPrologue): set Charset to GNUBG_CHARSET instead
of hardcoded ISO-8859-1.
(suggested by Petr Kadlec)
Sun Nov 30 09:56:25 2003 Joern Thyssen <jth@gnubg.org>
* gtkbearoff.c, gtkgame.c, gtktheory.c: subst. "iso8859-1" with "*"
in font names.
(suggested by Petr Kadlec)
Sun Nov 30 09:10:46 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (HintCube): improve logic for determining whether a move
has been made: (a) by having moved something in the GUI (old logic)
(b) by going back in the match and doing a hint on an already
stored move
(suggested by Michael Depreli)
Sun Nov 30 08:47:01 2003 Joern Thyssen <jth@gnubg.org>
New command "clear hint" to allow CLI users to force
re-evaluation of "hint" after changing settings.
(suggested by Achim)
* gnubg.c (CommandClearHint): new command "clear hint".
* gnubg.c (InvalidateStoredCube): new function.
* gnubg.c (HintCube): fix typo
Sat Nov 29 21:22:13 2003 Joern Thyssen <jth@gnubg.org>
Implement history
* gnubg.c (real_main, PromptForExit, ProcessInput): implement
history
* gnubg.c (CommandHistory): new command "history".
Sat Nov 29 11:02:50 2003 Joern Thyssen <jth@gnubg.org>
* gnubgmodule.c: new python command "nextturn" to
emulate C routine "NextTurn".
* gnubgmodule.c (PyGameStats): add a few stats.
* gnubgmodule.c (PythonCommand): add calls to nextturn.
Sat Nov 29 10:14:33 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c (ReportBug): use uname to improve logic.
Thu Nov 27 9:56:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* htmlimages.c: Fix dice colour
* gtkboard.c: Remove previous fix...
Wed Nov 26 22:12:37 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkgame.c: when opening the bug report page in a browser window
make gnubg fill in its version, build date and the operating system
Mon Nov 24 9:56:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c: Make sure preview appears if libxml not present
* gtkboard.c: Remove valgrind error
Sun Nov 23 21:07:12 GMT Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c function header comments for token handling
Sat Nov 21 21:19:17 2003 Oystein Johansen <oystein@gnubg.org>
* gtkgame.c: corrected some links (reported by Frank Grosse)
Thu Nov 20 20:24:04 GMT Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - board setup in .sgf files of rollouts only worked if
player 0 made first move, now appears to be correct for both
players and double by both players
Thu Nov 20 07:44:55 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gtkgame.c (EvalWidget): Add /* xgettext: no-c-format */ comment.
Wed Nov 19 19:52:16 2003 GMT Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c gtkprefs.c gtkrace.c add some more I18n strings
Wed Nov 19 19:16:25 2003 GMT Jim Segrave <jes@jes-2.demon.nl>
* play.c - always output moves to stdout/message window
Wed Nov 19 16:35:25 2003 GMT Holger Bochnig <hbgg@gmx.net>
* htmlimages.c, play.c, progress.c, rollout.c:
make CLI version compile, get rid of compiler warnings
Wed Nov 19 07:15:17 2003 Oystein Johansen <oystein@gnubg.org>
* latex.c: use unicode and decrease size of board
Mon Nov 17 20:04:17 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkoptions.c: add GUI menu entry for Czech language
Sun Nov 16 10:56:59 2003 Joern Thyssen <jth@gnubg.org>
* play.c (DiceRolled): add call to ShowBoard for CLI.
(reported by Achim)
Wed Nov 12 01:17:58 2003 Oystein Johansen <oystein@gnubg.org>
* gnubg.iss: New file for building MS-Windows installation archives
with Inno Setup.
Sat Nov 8 19:56:58 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* analysis.c - set up cubeinfo before analysis of a SET_DICE
moverecord.
Thu Nov 6 13:18:48 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* analysis.c - Stupid, stupid, stupid. My silly last minute change
prevented cube analysis on any position except the initial one.
Arrgh.
Wed Nov 5 00:31:27 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* analysis.c - don't analyse cube if board is in initial position
(spurious annotations for not doubling when tutor mode was enabled)
* gtkoptions.c - fix bug which crashed with invalid language option
Mon Nov 3 11:56:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Changes to the panel view
Sat Nov 1 14:36:45 2003 Joern Thyssen <jth@gnubg.org>
* htmlimages (CommandExportHTMLImages): make the html image
export work with the new board dimensions.
(reported by olivier croisille)
* html.c (printHTMLBoardGNU): some new images.
Wed Oct 29 12:26:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Moved .xpm files in root directory to xpm directory
Tue Oct 28 21:10:39 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtkoptions.c - add Turkish and Icelandic to language options
Tue Oct 28 11:56:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* import.c: Minor memory bug
* gtkboard.c: Minor chequer sound fix
Fri Oct 25 10:10:07 GMT Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - correct stupid mistake causing board setup in sgf
file to be reversed
Fri Oct 25 10:10:07 GMT Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - cast to keep compiler happy
Thu Oct 24 22:52:23 2003 GMT Jim Segrave <jes@jes-2.demon.nl>
* set.c backgammon.h rollout.c gnubg.c - added text mode commands
set rollout log on/off, set rollout logfile <template name>
When rollout log is set to on and rollout logfile has a valid
path and template, then each rollout will generate a .sgf file
of the game. The .sgf file name will use the template, followed
by '-'nnnnn'-'x.sgf where nnnnn is the trial number (starts at
0) and x is a etter a-z to indicate which option is being done -
the top line in the rollout window is 'a', next 'b', etc/
Sat Oct 18 13:46:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.h, play.c, sgf.c: Tidy 3d dice shake code
Sat Oct 18 11:19:06 2003 Joern Thyssen <jth@gnubg.org>
* formatgs.c (formatGS): use fOutputDigits and fix typo in
calculation of confidence interval.
(in part reported by Zorba)
* analysis.c, html.c: always show overall statistics.
Fri Oct 17 16:31:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c: Make 3d dice look smoother
Thu Oct 16 19:22:58 2003 Joern Thyssen <jth@gnubg.org>
* rollout.c (RolloutGeneral): do not call SanityCheck. The gwcs returned
by BasicCubefulRollout should be sanitised already. Besides, either
anBoardOrig or aarMu[alt] should be inverted if fInvert.
(bug reported by Robert Eberlein)
Thu Oct 16 11:49:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* renderprefs.c: Fix for 3d dice opacity settings
* sgf.c: Make sure dice don't roll when match loaded
Tue Oct 14 18:43:10 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* drawboard.c - FormatPoint assumed bar and off would always be
three characters, Icelandic UTF-8 did not agree
Tue Oct 14 10:58:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* drawboard3d.c, misc3d.c, gtkprefs.c, renderpref.c: Added
option to draw background in bear off trays (3d board).
* graph.c: Tidied number sizes in axis.
* boards.xml: Added more (rough) 3d designs.
* gtkboard.c: Don't allow chequer input if computers turn.
Mon Oct 13 18:12:37 2003 Joern Thyssen <jth@gnubg.org>
gnubg.c (real_main): attempt to read install directory
from windows registry.
Mon Oct 13 12:40:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gtkboard.c: Add _() translations to a few strings.
(reported by Hlynur Sigurgslason)
Sun Oct 12 15:13:46 2003 Joern Thyssen <jth@gnubg.org>
* sgf.c (RestoreGame): setting fTurn = fMove = -1 results in the board
being inverted when shown.
(reported by Albert Silver)
Sun Oct 12 14:57:49 2003 Joern Thyssen <jth@gnubg.org>
* timecontrol.c: use "if ( fX )" around calls to GTK specific
code.
Sun Oct 12 12:26:49 2003 Joern Thyssen <jth@gnubg.org>
* analysis.c (AnalyzeGame + others): don't analyse cube
for cubeless play.
(bug #5872 reported by Stefan van den Berg(?))
Sun Oct 12 11:49:33 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c (SetRollouts): change tests "a != b" to
"fabs(a-b)>epsilon" for floats.
(bug #4408 item 3, reported by Ian Dunstan)
Sun Oct 12 10:43:18 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (swapGame): swap player for MOVE_TIME.
* import.c (ImportTMGGame): handle timeouts in TMG files
correctly when USE_TIMECONTROL is defined.
Sat Oct 11 23:22:37 2003 Joern Thyssen <jth@gnubg.org>
* play.c (NextTurn): protect call to gtk_timeout_remove.
(FIXME: implement general solution?)
(bug reported by Scott Steiner)
Sat Oct 11 18:00:03 2003 Joern Thyssen <jth@gnubg.org>
* text.c (TextPrologue, ExportPositionGammOnLine, HTMLPrologue):
change format for writing score, e.g., add text for Crawford game.
(in part reported by Neil Kazaross)
Sat Oct 11 13:15:36 2003 Joern Thyssen <jth@gnubg.org>
* progress.c (TextRolloutProgress): Improve rollout progress output
when in text mode
(suggested by Ian Shaw)
Tue Oct 7 12:06:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkcube.c, gtkgame.c: Make sure hint window is correct size in new layout.
* gtkprefs.c, drawboard3d.c: Small memory fix.
Mon Oct 06 20:42:21 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkcube.c: bring output of double and take analysis in line
Mon Oct 06 19:37:17 2003 GMT Holger Bochnig <hbgg@gmx.net>
* analysis.c, analysis.h, formatgs.c, gnubgmodule.c, sgf.c:
change categorization of doubles (2 categories each for missed and
wrong doubles, separator is cash point)
Mon Oct 06 18:34:47 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtktheory.c: fix typo (bg rate value range in theory window)
Sat Oct 4 16:40:25 2003 Joern Thyssen <jth@gnubg.org>
* gtkchequer.c (UpdateMoveList): ensure that the selectec
move is highlighted.
Fri Oct 3 20:49:58 2003 Joern Thyssen <jth@gnubg.org>
* play.c: store analysis performed by computer player
where possible.
Fri Oct 3 19:17:29 2003 Joern Thyssen <jth@gnubg.org>
* progress.c (TextRolloutProgress): no newline after
\r.
Fri Oct 3 19:08:51 2003 Joern Thyssen <jth@gnubg.org>
* gtktheory.c (TheoryUpdated): argh, it should be
bg <= 1.0-g.
(reported by Massimiliano Maini)
Thu Oct 2 20:48:23 2003 Joern Thyssen <jth@gnubg.org>
* formatgs.c (errorRateMP): remove extra digit in
error rates.
(suggested by olivier croisille)
Thu Oct 2 20:21:21 2003 Joern Thyssen <jth@gnubg.org>
* import.c (ImportSGGGame): ensure that resignations are in the
range 1 (normal) to 3 (backgammon)
(bug #5641 reported by Bert Van Kerckhove)
Thu Oct 2 19:57:56 2003 Joern Thyssen <jth@gnubg.org>
* text.c (printTextBoard): assign asz[7] and asz[8] if
USE_TIMECONTROL
(reported by Jeff White)
Thu Oct 2 19:37:15 2003 Joern Thyssen <jth@gnubg.org>
* gtktheory.c (TheoryUpdated): ensure that bg <= g.
Thu Oct 2 10:59:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
play.c, gnubg.c: Added first move command
Wed Oct 1 2003 16:37:22 GMT Jim Segrave <jes@jes-2.demon.nl>
* gtkboard.c - when changing the match length, update the limits
on the score spinner. Also ensure the dice are valid or not
rolled. You can now increase the match length and then change a
score to be greater than the old match length.
Tue Oct 1 9:38:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c: Fixed 2d board chequer shape setting.
* gtkpboard.c, render.c: Fixed single chequer removal from bar in edit mode
Mon Sep 29 8:33:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtktoolbar.c: Remeber last used import/export type+directory.
* gtkgame.c: Escape key exits fullscreen mode, added removable
warning when fullscreen mode entered.
Fri Sep 26 2003 19:18:48 GMT Jim Segrave <jes@jes-2.demon.nl>
* play.c = missing conditional around call to HitGameClock
Fri Sep 26 2003 08:17:55 Stein Kulseth <steink@opera.com>
* backgammon.h gnubg.c gtkgame.[ch] play.c
set.c tctutorial.h timecontrol.[ch]:
bugfixes,
GUI additions
Tue Sep 23 17:47:55 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* sgfp.c sgfl.c - regenerated for users who don't have working
flex/bison
Mon Sep 22 22:35:43 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* sgf.y - Concatenate() didn't deal with empty ValueString's
Mon Sep 22 19:38:07 2003 Joern Thyssen <jth@gnubg.org>
* rollout.c (RolloutGeneral): do not invert board for
sanity check
(reported by Daniel Murphy,
http://www.gammonline.com/members/board/config.cgi?read=61387)
Sun Sep 21 18:31:55 2003 Joern Thyssen <jth@gnubg.org>
* eval.c (getMoneyPoints): fix bug in calculation of W and L.
(reported by Massimiliano.Maini)
Mon Sep 22 11:50:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c: Add option to cover all of 3d chequer with texture
Sun Sep 21 19:28:03 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkgame.c (GTKMatchInfo): show match comment text, rearrange window,
fix memory leak
Sun Sep 21 16:57:55 2003 Joern Thyssen <jth@gnubg.org>
* import.c (ParseOldMove): fix a few problems with the FIBS
oldmoves import.
(reported by Joseph)
Sat Sep 20 22:07:59 2003 Joern Thyssen <jth@gnubg.org>
* formatgs.c (errorrateMP): allow control of number of digits in
error rate and allow control over factor used (default is 1000).
* gnubg.c: new command "set output errorratefactor ...".
* set.c (CommandSetOutputErrorRateFactor): new function.
Fri Sep 19 20:23:46 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* boarddim.h - reverse cube locations, gtkgame.c - micro-typo
in dice drawing area
Fri Sep 19 19:53:02 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* Makefile.am, Makefile.in - add timer.c to sources
Fri Sep 19 20:59:43 2003 Joern Thyssen <jth@gnubg.org>
* eval.c (getPercent): fix bugs for "strange" match play
scenarios (see 2-ply and 3-ply eval on cAmgACAAGAAA/4HPkAUgzW8EBMA)
(reported by Ege Lundgren)
Fri Sep 19 09:34:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c: Add tab-completion to the command dialog
Thu Sep 19 22:06:27 2003 GMT Jim Segrave <jes@jes-2.demon.nl>
* first cut at paramaterising board. It now appears to be possible
to alter the aspect ratio (adding space in the middle). A 72x108
board is buildable, but should not be used (there's no guarantee
that the dice or doubling cube can be placed on the board
without intersecting chequers, although changing the die and
doubling cube size will fix that)
Wed Sep 17 11:42:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* timercontrol.c: Changed timing function for win32
moved timer.c to main direcory
Tue Sep 16 17:42:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gnubg.c, gtkgame.c: Add dynamic help to enter command.
Mon Sep 15 12:55:45 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkboard.c, render.c: fix an oversight of my last commit
Mon Sep 15 01:54:44 2003 GMT Holger Bochnig <hbgg@gmx.net>
fixing some 2D board problems, moving board dimensions to
defines in boarddim.h
* export.c, gtkboard.c, gtkexport.c, gtkprefs.c, htmlimages.c,
render.c, render.h, set.c, show.c, xboard.c, xgame.c:
update of dynamic point labels on the bottom should work now,
some fixes to export of HTML images
* boarddim.h: new file
* Makefile.am: add boarddim.h
Sat Sep 13 22:32:01 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* play.c (NewGame): Fixed reroll conditional.
Sat Sep 13 04:59:01 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gtkgame.c (SetAnnotation): Use strlen gettext string instead
of magic number.
Fri 12 Sep 23:26:21 GMT Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c gnubg.c play.c - move panels flag out to
unconditional compile point.
Fri 12 Sep 19:17:25 GMT Jim Segrave <jes@jes-2.demon.nl>
backgammon.h MOVE_TIME needn't be conditional
Fri 12 Sep 19:00:57 GMT Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c show.c set.c backgammon.h gtkgame.c - add panels on/off
setting
Fri Sep 12 17:56:18 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gnubg.c (TextToClipboard): Chanage Japanese locale detection
logic.
Fri 12 Sep 1707:54 GMT Jim Segrave <jes@jes-2.demon.nl>
* timecontrol.c play.c backgammon.h needed Unix include files,
missing return values, suppress compiler warnings
* text.c show.c simplelibgen.c sgf.c C style coments
html.c gtkgame.c gnubgmodule.c gnubg.c C style coments
bearoffgammon.h C style coments
Fri Sep 12 13:35:24 Stein Kulseth <steink@opera.com>
* Makefile.am configure.in
backgammon.h drawboard.c gnubg.c gtkboard.c gtkboard.h gtkgame.c
gtkgame.h play.c sgf.c show.c sound.c sound.h
tctutorial.h timecontrol.h timecontrol.c:
Time control code added on main branch
Thu Sep 12 10:02:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkboard.c: Edit clear chequers empty fix.
* gtkgame.c: Manual dice in new dialog state fix
Thu Sep 11 18:51:28 2003 Joern Thyssen <jth@gnubg.org>
* import.c (ParseMatMove): don't add illegal moves to plGame.
(reported by Kees van den Doel)
Thu Sep 11 18:10:28 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c (CreateList, GTKDumpStatcontext): reestablish
the old copy-enabling of line-by-line in the statistics window.
Note: this only works for OSes with a primary selection, such
as *nix.
Wed 10 Sep 21:30:14 GMT Jim Segrave <jes@jes-2.demon.nl>
* insert limits.h before PATH_MAX use in backgammon.h
Tue Sep 09 23:13:44 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkgame.c (GTKDumpStatcontext): make stats window only bigger,
not smaller
Tue Sep 9 04:34:30 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* formatgs.c (formatGS): Add /* xgettext: no-c-format */ comment
for N_("95% confidence interval (ppg)").
Mon Sep 08 20:18:46 2003 GMT Holger Bochnig <hbgg@gmx.net>
* formatgs.c (formatGS): report cube errors as negative values
(reported by Scott Steiner)
Mon Sep 08 18:45:56 2003 GMT Holger Bochnig <hbgg@gmx.net>
classify cube decisions into 3 categories: around DP, CP and TG
(suggested by Jrn)
* analysis.c: rename getMarketWindowDividersMWC to
getMarketWindowDividersEq
* analysis.c (getMarketWindowDividersEq): calculate two dividers
of market window for categorization of doubles
* analysis.h: add new variables to statcontext
* formatgs.c (formatGS), gnubgmodule.c (PyGameStats),
sgf.c (RestoreGS, WriteStatContext): add cube decisions around CP
Mon Sep 08 17:39:45 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkgame.c (GTKMessage): add a scrollbar for message window when
it has to hold lots
Mon Sep 8 19:20:13 2003 Joern Thyssen <jth@gnubg.org>
* import.c (ParseOldMove): handle oldmoves files generated by
fibs2html. Add warning for truly invalid moves.
Mon Sep 8 11:26:52 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gtkgame.c (GTKRecordShow): Use gettext to aszRating[] and
aszLuckRating[].
Mon Sep 8 03:07:11 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gtkrace.c (OSRPage): Don't use gettext on empty strings.
Sun Sep 7 15:23:01 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c (NewSet): ensure that tutor mode flag follows
global setting.
* gtkexport.c: legend is not implemented yet.
Sun Sep 7 15:11:08 2003 Joern Thyssen <jth@gnubg.org>
* external.c (CommandExternal), play.c (ComputerTurn): yet another
attempt to fix external play.
Sun Sep 7 10:35:46 2003 Joern Thyssen <jth@gnubg.org>
Revert "Sat Sep 6 11:35:32 2003".
* drawboard.c, boardpos.c, boardpos.h, gtkboard.c, export.c:
revert checkin.
Sat Sep 6 18:06:51 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gnubg.c (HintChequer): Message synch with play.c.
Replace "Considering moves" with "Considering move".
Sat Sep 6 16:14:58 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* play.c - try to improve distinguishing cube & chequer play
error flags
Sat Sep 6 15:07:31 2003 Joern Thyssen <jth@gnubg.org>
* gtkrace.c, show.c: Small improvements in output of race stuff and
fixes to some bugs in gtkrace.
(reported by Chris D. Yep)
Sat Sep 6 14:24:54 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLPrintCubeAnalysisTable): fix typo.
(reported by Martin Krainer)
Sat Sep 6 11:35:32 2003 Joern Thyssen <jth@gnubg.org>
Align the FIBSBoard routines to the FIBS board spec.
This should fix Kees' external player problems.
* drawboard.c (FIBSBoard): write correct value for "doubled".
* boardpos.c (CubePosition): value of "doubled" changed according to
specs. Change all callers.
* export.c (GenerateImage): do.
* gtkboard.c (cube_position, board_set): do.
Fri Sep 05 22:57:49 2003 GMT Holger Bochnig <hbgg@gmx.net>
* backgammon.h, play.c (getFinalScore): new function
* gtkgame.c (AddNavigation): give final score or none for overall stats
(reported by Martin Janke)
* gtkgame.c (GTKDumpStatcontext): #ifdef unused variable
Fri Sep 5 22:46:12 2003 Joern Thyssen <jth@gnubg.org>
* matchequity.c (InitMatchEquity): extend the post Crawford match
equty table from n - 1 as the post Crawford table of a n match equity
table might not include the post Crawford equity at n-away, since the
first "legal" post Crawford score is n-1.
Fri Sep 5 19:23:04 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (TextToClipboard): fix small memory leak.
Fri Sep 5 09:26:15 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gnubg.c (TextToClipboard): Deal with Japanese WIN32 clipboard
encoding.
Thu Sep 4 18:36:21 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* html.c (WriteStyleSheet): Don't gettextize CVS ID marker string.
Thu Sep 04 16:34:03 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkgame.c: resize stats window if no-panels selected,
make New dialogue default to match
Thu Sep 04 11:12:45 2003 GMT Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c, gnubg.c: Added CR/LF for copy to clipboard under windows
* boards.xml: Added new 3d design (nature)
Wed Sep 03 22:04:45 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkmet.c (UpdateTable): avoid buffer overflow
Wed Sep 3 20:07:45 2003 Joern Thyssen <jth@gnubg.org>
* sgf.c (WriteLuck): uses 5 digits for luck to avoid
rounding errors, e.g., after analysis you get 17.66% luck
but after you get 17.63% as the luck is only saved with 3 digits.
(reported by Chris D. Yep)
Wed Sep 3 19:12:12 2003 Joern Thyssen <jth@gnubg.org>
* external.c (CommandExternal): fix bug leading to
strange cubes and play by external player (only player 0).
(reported by Kees van den Doel)
Wed Sep 3 18:44:13 2003 Joern Thyssen <jth@gnubg.org>
* import.c (ExpandMatMove,ParseMatMove): show warning
instead of core dump on garbage in .mat files
(reported by Kees van den Doel)
Tue Sep 2 23:56:28 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* show.c (CommandShowVersion): Deal with gettext.
* progress.c (TextRolloutProgress): Ditto.
Tue Sep 02 21:48:18 2003 GMT Holger Bochnig <hbgg@gmx.net>
* analysis.c (getMarketWindowDividerMWC, updateStatcontext):
fix typo, calculate doubling window for the correct player
Tue Sep 02 11:16:46 2003 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c added option to switch between list/panels for statistics
Tue Sep 02 00:03:39 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkgame.c (SetAnnotation), gtkcube.c (CreateCubeAnalysis):
tidy up GUI double/take annotation
Mon Sep 01 23:29:12 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkgame.c (SetAnnotation): swap doubling skill and luck widgets
Mon Sep 01 22:55:25 2003 GMT Holger Bochnig <hbgg@gmx.net>
first version of better logic for categorization of doubles
(needs tweaking for correct doubling window)
* analysis.c (updateStatcontext): alter logic
* analysis.c (getMarketWindowDividerMWC): new function
Mon Sep 1 21:19:42 2003 Joern Thyssen <jth@gnubg.org>
* html.c, text.c: honour more export settings.
(reported by Martin Krainer)
Mon Sep 1 19:28:48 2003 Joern Thyssen <jth@gnubg.org>
* import.c (ParseOldmove): do not subtract 1 from move
before calling CanonicalMoveOrder.
(bug #5016 reported by Alix Martin)
Mon Sep 1 10:16:46 2003 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkprefs.c (bug 4875) Simplified saving new board designs
* small 3d board fixes and some default designs (boards.xml)
Mon Sep 1 02:48:46 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gnubg.c (real_main): Fix typo.
Mon Sep 1 12:39:20 2003 Joseph Heled <pepster@users.sourceforge.net>
* gnubgmodule.c (PythonMatch): Add match statistics to gnubg.match().
Sun Aug 31 22:53:12 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c conditionals around StartPythonHandleX/StopPythonHandleX
for all environments, as it appears to be for a later python
version
Sun Aug 31 22:53:12 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c conditionals around StartPythonHandleX/StopPythonHandleX
for non GUI environments
* play.c remove dead variable
Sun Aug 31 21:35:16 2003 Joern Thyssen <jth@gnubg.org>
* eval.c (DumpPosition): add position ID and match ID to
the "eval" output.
(suggested by Hugh Sconyers)
Sun Aug 31 16:13:02 2003 GMT Holger Bochnig <hbgg@gmx.net>
* gtkchequer.c (UpdateMoveList): didn't compile with USE_OLD_LAYOUT,
bring back move details
Sun Aug 31 15:13:40 2003 Joern Thyssen <jth@gnubg.org>
Remove arDouble from movenormal and movedouble.
We can't remove it from DA[ ... ] since it'll break existing
SGF files.
* backgammon.h, gtkcube.c, gtkgame.c, text.c, html.c, play.c,
sgf.c, analysis.c: remove arDouble from movenormal and movedouble.
* sgf.c: do not write arDouble for rollouts.
* export.c (ExportGameEquityEvolution): remove "dead" code.
Sat Aug 30 20:24:57 2003 Joern Thyssen <jth@gnubg.org>
* html.c: fix broken stylesheet.
Sat Aug 30 20:20:39 2003 Joern Thyssen <jth@gnubg.org>
* formatgs.c (errorRateMP): report errors rate per decision
in millipoints.
Sat Aug 30 20:06:47 2003 Joern Thyssen <jth@gnubg.org>
Unify handling of match and game statistics for html export,
text export, and gtk.
* Makefile.am: add formatgs.[ch]
* formatgs.c: new file. Return formatted match statistics.
* html.c (HTMLDumpStatcontext), gtkgame.c (GTKDumpStatcontext),
analysis.c (DumpStatcontext): use formatGS.
Sat Aug 30 08:45:23 2003 Joern Thyssen <jth@gnubg.org>
* credits.sh, credits.c, AUTHORS: refresh and revert some
changes.
Sat Aug 30 09:57:49 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* backgammon.h (MAX_CUBE_STR): Remove #define. Use MAX_CUBE and
format function instead.
Fri Aug 29 21:34:21 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* gtkprefs.c (BoardPrefsDestroy): Move to outside of HAVE_LIBXML2
#ifdef (functions for board design zone).
Fri Aug 30 22:53:25 2003 Oystein Johansene <oystein@gnubg.org>
* gtkgame.c, gtkchequer.c: Make the old layout available through
the compile option #define USE_OLD_LAYOUT
Fri Aug 30 20:34:25 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* lots of fiddling with include files etc. to suppress compiler
warnings: board3d/inc3d.h analysis.h play.c html.c
text.c format.c gtkgame.c board3d/mylist.c gtktoolbar.c
board3d/gtkcolour3d.c gnubg.c gnubgmodule.h gnubgmodule.c
Fri Aug 29 18:53:50 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (real_main): "move" initialisating of szTerminalCharset
and localisation stuff outside #if USE_GUI.
(reported by Nardy Pillards)
Fri Aug 29 17:23:55 2003 Joern Thyssen <jth@gnubg.org>
* analysis.c (Luck, Skill): modify inequalities.
(bug reported by Michael Depreli, fix contributed by Nis Joergensen)
Fri Aug 29 13:58:55 2003 TAKAHASHI Kaoru <kaoru@kaisei.org>
* autogen.sh: touch board3d/Makefile.in and textures/Makefile.in.
* credits.sh, credits.c, AUTHORS: Fix my name and refresh.
Fri Aut 30 12:31:43 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* fixes for graph functions
* gtkgame.c include gtktext.h, fix trailing ';' on #endif
* board3d Makefile.am - add graph.c to sources
* graph.c - include config.h and some gl includes
* inc3d.h - add glconfig as global, make idempotent
* shadow.h - make idempotent
* widget3d.c - include config.h
Thu Aug 29 10:39:52 2003 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c - display statistics in a graph
* graph.c - new file to draw a graph
Thu Aug 28 19:23:52 2003 Joern Thyssen <jth@gnubg.org>
* analysis (absoluteFIBSRating): use new formulae provided by Kees.
Wed Aug 27 21:51:22 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c - fix careless cut&paste for language setting
Wed Aug 27 17:43:38 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c - fix rollout settings problems - onesidedbearoff
truncation and negative values for rollout seed
Wed Aug 27 17:43:38 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - fix bug causing it to stop to soon in CommandRollout
Wed Aug 27 18:19:44 2003 Oystein Johansen <oystein@gnubg.org>
* gtkgame.c (NewWidget): Fix bug that the shortcut buttons react on
the player settings.
Wed Aug 27 14:04:44 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c - make szLang writeable, ensure LANG env setting
is not a local variable
Wed Aug 27 10:11:28 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* board3d/inc3d.h - remove doubled directory separator
Wed Aug 27 09:00:00 2003 Jon Kinsey <Jon_Kinsey@hotmail.com>
* gtkgame.c Added navigation for match statistics
Tue Aug 26 16:59:33 GMT 2003 Holger Bochnig <hbgg@gmx.net>
add commands and GUI option to set the language
* backgammon.h, gnubg.c: add commands
* gnubg.c (CommandSaveSettings): save language setting
* gnubg.c (real_main): read language setting from .gnubgautorc,
set language
* gtkoptions.c (OptionsPages, OptionsOK, OptionsSet):
GUI language setting
* set.c, show.c: new functions CommandSetLang, CommandShowLang
TueAug 26 16:17:05 GMT 2003 Jim Segrave jes@jes-2.dmeon.nl
* gtkexport.c - make number of options a compile time calculation
Tue Aug 26 01:43:26 2003 Holger Bochnig <hbgg@gmx.net>
* gtkgame.c (SetAnnotation): rearrange skill widgets to save space
Mon Aug 25 23:39:47 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c (GTKNew): add call to gtk_main_quit when dialog
is destroyed.
(reported by Joern Thyssen)
Mon Aug 25 23:26:25 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c: ensure that TOGGLE_GAMELIST and friends to not
overlap with enum _gnubgcommand.
Mon Aug 25 20:53:03 GMT 2003 Jim Segrave jes@jes-2.dmeon.nl
* gnubg.c = glibc putenv() doesn't copy strings
Mon Aug 25 22:12:56 2003 Joern Thyssen <jth@gnubg.org>
* gtktheory.c (TheoryUpdated): enlarge font used for
market window.
(reported by Massimiliano Maini)
Tue Aug 26 07:16:35 2003 Joseph Heled <pepster@users.sourceforge.net>
* gtkgame.c (SkillMenu): ignore skill "good" in gtk game.
Sun Aug 24 21:22:13 2003 Oystein Johansen <oystein@gnubg.org>
This is a big patch to integrate the GUI. There are still
a couple of issues to be solved, but I'm commiting this, and hope
someone can help out with the remaining issues. (See my post to the
mailing list.
* render.c, boardpos.c, gtkprefs.c, gtkboard.[ch]: Stretch the 2D board
to fit the screen better. The size is now 108 x 82.
* gtkgame.[ch]: Integrate the game record, annotation and message window
with the main window. Add a "New" dialog. Improve GTKFileCommand
* gtkchequer.c gtkcube.c: Move the tool buttons under the
movelist/cubeevauation to save width.
* gtktoolbar.[ch]: Redesign of the toolbar.
* gnubg.c, backgammon.h: Small changes, for integration.
Sun Aug 24 17:18:13 2003 Oystein Johansen <oystein@gnubg.org>
* gtkbearoff.c: Make pixmaps of the dice in the pulldown menu.
* xpm/dice.xpm: New file
Sun Aug 24 11:05:13 2003 Joern Thyssen <jth@gnubg.org>
* set.c (SetSkillThreshold): allow setting threshold to zero.
(suggested by Michael Depreli)
Sat Aug 23 17:31:30 Jim Segrave <jes@jes-2.demon.nl>
* backgammon.h, gnubg.c add dicerolls nnn command to output list
of rolls to stdout.
Sat Aug 23 10:32:33 2003 Joern Thyssen <jth@gnubg.org>
* import.c (ImportTMGGame): handle cases where the TMG file says "wins
1 point" but where the cube value is 2 or more. Typically the last game of a match.
(reported by Albert Silver)
* import.c (ImportTMGGame): handle small typo in Jim's commit :-)
Fri Aug 22 15:01:19 GMT Jim Segrave <jes@jes-2.demon.nl>
* import.c - add out of time type 22 for .tmg imports
* gnubg.c, play.c wrap pwBoard and pwBoard->data with tests
for fX, to prevent text mode core dumps
* board3d/misc3d.c - fix typos
Thu Aug 21 23:18:40 2003 Joern Thyssen <jth@gnubg.org>
* Makefile.am, configure.in: add texture directory.
Thu Aug 21 20:25:51 2003 Joern Thyssen <jth@gnubg.org>
* gtkcube.c (OutputPercentsTable): show headers on
gwc's.
(contributed by Rob Konigsberg)
* gnubg.c: fix typo in "set beavers" command
(reported by Chris D. Yep)
Thu Aug 21 18:15:11 2003 Joern Thyssen <jth@gnubg.org>
* evalc. (DumpPosition): ensure "eval" reports cubeless money
equituies rather than cubeless equity.
(reported by Chris D. Yep)
Thu Aug 21 07:16:42 2003 Joseph Heled <pepster@users.sourceforge.net>
* gtkgame.c: Fix manually setting skill to 'good'.
Wed Aug 20 19:20:51 2003 Joern Thyssen <jth@gnubg.org>
Restore abs. ratings using the formulae provided by
Kees van den Doel.
* gnubg.c: new command "set ratingoffset .."
* gnubg.c (CommandSaveSettings): save rating offset.
* set.c (CommandSetRatingOffset): new function.
* html.c (HTMLDumpStatcontext), gtkgame.c (GTKDumpStatcontext),
analysis.c (DumpStatcontext): show abs. rating.
* analysis (absoluteFIBSRating): use formulae provided by Kees.
Mon Aug 18 19:41:07 2003 Holger Bochnig <hbgg@gmx.net>
* gtkrace.c: bug fix: race theory window didn't even fit on 1024x768
Mon Aug 18 18:54:36 2003 Joern Thyssen <jth@gnubg.org>
* gtkbearoff.c (ToggleWho, BearoffSet): remove debug printf.
(reported by Oeystein)
Mon Aug 18 17:51:45 2003 Joern Thyssen <jth@gnubg.org>
* external.c (CommandExternal), play.c (ComputerTurn):
another attempt to fix the resign bug.
Mon Aug 18 17:38:07 2003 Joern Thyssen <jth@gnubg.org>
* external.c (CommandExternal): copy Joseph's resignation fix.
Mon Aug 18 13:12:05 2003 Joseph Heled <pepster@users.sourceforge.net>
* play.c: fix resignation bug.
Sun Aug 17 17:41:58 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - ensure the eval context stored with a rollut has
the cubeful/cubeless flags consistent (some exports reported
incorrectly that portions were cubeful when they weren't)
Sun Aug 17 12:38:22 2003 Joern Thyssen <jth@gnubg.org>
* analysis.c (DumpStatcontext): fix typo.
Sun Aug 17 12:15:31 2003 Joern Thyssen <jth@gnubg.org>
* gnubgmodule.c: remove C++ style variable decl. inside code.
Sun Aug 17 8:45:30 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c - fix overwrite of buffer in CommandSaveSettings
Sun Aug 17 0:44:16 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* play.c - put if(fX) around 3d board code (seg faulted on
starting game in text mode
* board3d/gtkcolour.c - needs string.h
Sat Aug 16 11:24:24 2003 Joern Thyssen <jth@gnubg.org>
* analysis.c: include only finished games in luck adj.
Sat Aug 16 11:05:45 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLDumpStatcontext), gtkgame.c (GTKDumpStatcontext),
analysis.c (DumpStatcontext): show actual and luck adj. result
relative instead of absolute.
(suggested by Chris D. Yep)
Sat Aug 16 10:43:32 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLDumpStatcontext), gtkgame.c (GTKDumpStatcontext),
analysis.c (DumpStatcontext): show FIBS rating difference instead
of relative FIBS rating.
(suggested by Kees van den Doel)
* html.c (HTMLDumpStatcontext), gtkgame.c (GTKDumpStatcontext),
analysis.c (DumpStatcontext): show only relative fibs rating
for the entire match
(suggested by Chris D. Yep)
Sat Aug 16 7:19:27 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtkchequer.c - empty string instead of null caused errors
in sizing hint and annotation windows
Fri Aug 15 19:56:24 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* po/it.po more translations from Renzo Campagna
Fri Aug 15 21:01:48 2003 Oystein Johansen <oystein@gnubg.org>
* gtkoptions.c: Set seed with a spinbox directly, instead of
clicking a button and then operate a spinbox.
Fri Aug 15 17:01:48 2003 Joern Thyssen <jth@gnubg.org>
* dice.c (RollDice): use high bits of RNGs to generate dice.
(reported by Michael Petch)
Fri Aug 15 16:42:02 2003 Joern Thyssen <jth@gnubg.org>
* play.c (ComputerTurn, CommandExternal): fix logic
for resignations.
Fri Aug 15 11:36:41 2003 Joseph Heled <pepster@users.sourceforge.net>
* eval.c : constify eval contexts.
Fri Aug 15 10:19:01 2003 Joseph Heled <pepster@users.sourceforge.net>
* analysis.h: Remove SKILL_INTERESTING, SKILL_VERYGOOD, but keep
SKILL_GOOD with a "new" interpretation - to flag analyzed good
moves as opposed to non-analyzed (SKILL_NONE).
Wed Aug 13 22:02:30 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* po/it.po more translations from Renzo Campagna
Wed Aug 13 22:48:07 2003 Joern Thyssen <jth@gnubg.org>
* gtkchequer.c (UpdateMoveList): ensure proper error
handling.
Wed Aug 13 22:38:33 2003 Joern Thyssen <jth@gnubg.org>
* set.c (CommandSetTutorChequer): fix typo.
(contributed by Rob Konigsberg)
* gnubg.c (CommandSaveSettings): declare szTemp.
* gtkprefs.c: make szTemp local.
(reported by Nardy)
Wed Aug 13 21:32:37 2003 Joern Thyssen <jth@gnubg.org>
* play.c (CommandNext): fix bug in "next marked" command.
(reported by Klaus Rindholt)
* play.c (ShowMark): protect GTK+ code.
Wed Aug 13 19:44:10 2003 Joern Thyssen <jth@gnubg.org>
* gtktheory.c (GTKShowTheory): fix i18n problem.
(reported by Jim)
Wed Aug 13 19:09:18 2003 Joern Thyssen <jth@gnubg.org>
* gtkboard.c (button_press_event): right clicks to
drop double and reject resignation.
(contributed by Rob Konigsberg)
Wed Aug 13 18:08:35 2003 Joern Thyssen <jth@gnubg.org>
* configure.in: add some magic for board3d and gtk1.2. Also add
a "--without-board3d" option as suggested by Jim.
Wed Aug 13 15:26:57 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtktheory.c - don't call gettext on null strings.
Wed Aug 13 18:03:57 2003 Joseph Heled <pepster@users.sourceforge.net>
* set.c: Clear cache when changing MET table. (Reported by Albert
Silver)
Tue Aug 12 10:53:49 2003 Joseph Heled <pepster@users.sourceforge.net>
* gnubgmodule.c (PythonMatch): Initial version. Incomplete in some
ways. Documentation missing. Likely to change.
Tue Aug 12 10:37:08 2003 Joseph Heled <pepster@users.sourceforge.net>
* positionid.c (PositionFromID): constify some args.
change CheckPosition and PositionFromID return sane TRUE/FALSE
(1/0) for success/failure after even Joern was bitten by it in
PythonPositionFromID.
Mon Aug 11 22:10:08 2003 Joern Thyssen <jth@gnubg.org>
* po/LINGUAS po/fr.po: French translation.
* aclocal.m4, Makefile.in: finish upgrade to gettext 0.12.2
Mon Aug 11 14:06:22 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* credits.sh, po/LINGUAS po/it.po - Italian translations by
* Renzo Campagna <renzo.camp@tin.it> & Giulio De Marco
* <polietilene@tiscalinet.it>
Sun Aug 10 15:04:08 2003 Joern Thyssen <jth@gnubg.org>
* htmlimages.c (CommandExportHTMLImages): fix bug:
(no arrows where drawn for fClockwise=TRUE)
(reported by Martin Janke)
Thu Aug 7 19:57:42 2003 Joern Thyssen <jth@gnubg.org>
* sgf.c (SaveGame): fix for MOVE_SETBOARD records where
one or both sides has bourne all chequers off.
(reported by Hugh Sconyers)
Thu Aug 7 19:45:11 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTLMDumpStatcontext): always show Eq. Snowie error rate.
(reported by Chris Yep)
Thu Aug 7 19:29:35 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLDumpStatcontext), gtkgame.c (GTKDumpStatcontext),
analysis.c (DumpStatcontext): don't show relative fibs rating
for p>1 or p<0.
(reported by Kees Van Doel)
Wed Aug 6 20:24:31 2003 Joern Thyssen <jth@gnubg.org>
* configure.in, configure: ensure $host is known by envoking
AC_CANONICAL_HOST.
(reported by Mike Petch)
Tue Aug 5 21:41:57 GMT 2003 Holger Bochnig <hbgg@gmx.net>
* gtktheory.c (GTKShowTheory): rearrange theory window so it fits
on 800x600
Tue Aug 5 22:59:25 2003 Joern Thyssen <jth@gnubg.org>
* Makefile.am, configure.in: changes needed for win32 cross
compilation.
(contributed by Mike Petch)
Tue Aug 5 14:46:18 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c - fix for lost aarOuput in Hint window, fixes for
terminal character set names
Mon Aug 4 23:47:19 2003 Oystein Johansen <oystein@gnubg.org>
* simplelibgen.c (dirname): Check for USE_GTK, so gutils can be used.
Mon Aug 4 21:20:15 2003 Joern Thyssen <jth@gnubg.org>
* html.c: some color changes in the html export.
Mon Aug 4 21:04:39 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLCubeAnalysisTable): add class for cubeless equity.
Mon Aug 4 09:18:36 2003 Jim Segrave <jes@jes-2.demon.nl>
* sgf.c, backgammon.h, play.c, import.c:
count number of successive doubles in move record, clean up
linking of initial double and following cube actions
Sun Aug 3 19:16:13 2003 Joern Thyssen <jth@gnubg.org>
* gtkboard.c (ReturnHits): enlarge buffer.
Sun Aug 3 18:51:30 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLPrintMoveAnalysis): add style to equity column.
(reported by Albert Silver)
Fri Aug 1 09:01:20 2003 Joseph Heled <pepster@users.sourceforge.net>
* gnubgmodule.c: code cleanups. Return 'None' where
appropriate. Use C loops. Use sequences access instead of
lists. Return board and others as tuples.
Fri Aug 1 19:49:01 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* Makefile.am - allow environment variable for thread libs
* acinclude.m4 - mispled synopsis
* configure.in - allow environment variable for thread libs
export THREAD_LIBS="-lc_r" or similar
The contents of THREAD_LIBS will be added to the flags for
ld
changes thanks to Phil Pennock pdp@nl.demon.net
Fri Aug 1 08:43:01 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - off by one error in minimum games check
Thu Jul 31 17:59:08 2003 Joern Thyssen <jth@gnubg.org>
* gtkboard.c (write_points): fix typo.
* gtkboard.c (write_board): swap board when necesary.
* gtkchequer.c (MoveListShowMove): do not swap sides.
(fix bugs #4536 and #4513)
Thu Jul 31 11:36:53 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c: prevent division by zero when jsds are small. This
time it actually should do something
* set.c - missing space in option description
Wed Jul 30 09:36:07 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - prevent division by zero when jsds are small
Mon Jul 28 21:31:19 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c (InitGTK): new menu entry for IDLE (Python).
* gnubg.c (HandleCommand): strip leading space of python commands.
* gnubgmodule.c (PythonInitialise): set argv.
Mon Jul 28 14:31:43 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* play.c - missed initialising CubeDecPtr on beavers
Sun Jul 27 17:22:51 2003 Oystein Johansen <oystein@gnubg.org>
* simplelibgen.[ch] (new files): put 'dirname' and 'basename' in a new
file, so makeweigths, makebearoff and makehyper can link.
Sun Jul 27 14:39:51 2003 Oystein Johansen <oystein@gnubg.org>
* gnubg.c (dirname), backgammon.h: Pacify fussy compilers.
Sun Jul 27 14:39:51 2003 Oystein Johansen <oystein@gnubg.org>
* gnubg.c, html.c, bearoff.c: improve 'dirname' where it's not present.
Sun Jul 27 13:59:51 2003 Joern Thyssen <jth@gnubg.org>
* text.c: move all Output* functions to new file format.c
(change all callers)
* format.c, Makefile.am: new file.
* gnubg.c (DisplayCubeAnalysis, DumpPosition): use
OutputCubeAnalysis instead of now deprecated GetCubeActionSz.
Sun Jul 27 12:05:37 2003 Joern Thyssen <jth@gnubg.org>
Oops, the html did not validate...
* html.c (GetStyleGeneral): new function.
* html.c (HTMLPrintMoveAnalysis): re-fix reentrancy problems.
* html.c (HTMLPrologue): missing end tag on <link>
Sun Jul 27 11:43:36 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLPrintMoveAnalysis): remove some colspans to
produce better output. Fix reentrancy problem.
(reported by Joseph)
Sun Jul 27 11:11:33 2003 Joern Thyssen <jth@gnubg.org>
Avoid coredump when importing invalid SGG (and others) with
"set gotofirstgame on"
(reported by Joseph)
* import.c: let import routines return -1 indicating errors.
* gnubg.c: handle returned value from import routines.
Sun Jul 27 01:46:23 2003 Joern Thyssen <jth@gnubg.org>
* html.c (CommandExportHTMLImages): render board label pictures
correctly.
Sun Jul 27 01:20:51 2003 Joern Thyssen <jth@gnubg.org>
Update board labels dynamically.
* gtkboard.c (board_invalidate_labels): new function.
* gtkboard.c (board_set): invalidate labels if turn has changed.
* gtkprefs.c (GeneralPage): add option for dynamic labels.
* renderprefs.c (RenderPrefsParam, RenderPrefsCommand):
add option for dynamic labels.
* render.c (CalculateImages): render labels dynamically based
on who's on roll.
* render.c (RenderImages): render images needed for dynamic labels.
Sat Jul 26 22:45:35 2003 Joern Thyssen <jth@gnubg.org>
Include Holger's arrows in the html export.
* htmlimages.c (CommandExportHTMLImages): write images
with arrows if LIBART is present.
* html.c (printHTMLBoardGNU): use new images.
Sat Jul 26 18:15:27 2003 Joern Thyssen <jth@gnubg.org>
* analysis.c - utilise the combined double/take data and preserve
rollouts across analyses
Sat Jul 26 19:16:45 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLPrintCubeAnalysisTable): more styles.
* html.c (HTMLPrintMoveAnalysi): use bullet instead of *.
Sat Jul 26 17:18:40 2003 Joern Thyssen <jth@gnubg.org>
* gtkboard.c (board_set): oops, get rid of button_clockwise.
* gtktoolbar.c (ToolbarSetClockwise): new function.
* gtkboard.c (ReturnHits): new function.
* gtkboard.c (update_move): first attempt on showing number
of rolls that hit blots.
(suggested by Morten Juul)
Sat Jul 26 13:53:07 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLPrintCubeAnalysisTable): bold fontface for essential
cube decision numbers.
* html.c (printHTMLBoardBBS): surround BBS board with paragraph
which has the "page-break-inside: avoid" style.
Sat Jul 26 13:37:53 2003 Joern Thyssen <jth@gnubg.org>
* htmlimages.c (CommandExportHTMLImages): draw labels on picture.
* html.c (printHTMLBoardGNU): labels are now on pictures.
Sat Jul 26 11:01:26 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - pass no-double cube value so money game rollouts of
cube decisions give correct equity
Sat Jul 26 12:58:31 2003 Joern Thyssen <jth@gnubg.org>
Remove toolbar from "inside" of board.
* gtktoolbar.c: new file
* gtkboard.c: move toolbar related code to gtkboolbar.c
* Makefile.am: new file gtktoolbar.c
* gtkgame.c: add toolbar to main window.
Sat Jul 26 11:05:25 2003 Joern Thyssen <jth@gnubg.org>
* eval.c (Cl2CfMoney): fix bug in calculation of cubeless equity.
(reported by Ned Cross)
Fri Jul 25 21:04:58 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c (FinishMove): new function.
* gtkgame.c (InitGTK): new menu item and accelerator for finish move.
(bug #4278 by Erik Barfoed)
Fri Jul 25 20:49:07 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (CommandSaveSettings): add some qoutes around %s in
'set rng file %s'. This is a possible fix for bug #4393.
(bug #4393 reported by William Maslen)
Fri Jul 25 20:22:06 2003 Joern Thyssen <jth@gnubg.org>
* analysis.c (LuckFirst): fix bug in calculation of luck for
the first roll in match play with asymmetric scores.
(reported by Peter Eberhard)
Fri Jul 25 16:51:08 2003 Joern Thyssen <jth@gnubg.org>
* html.c (printHTMLBoardBBS, printHTMLBoardGNU, printHTMLBoardF2H):
print pip counts above position ID. Print position ID and match ID with
a smaller font.
* html.c: finish implementation of external CSS style sheet.
Fri Jul 25 16:35:48 2003 Joern Thyssen <jth@gnubg.org>
* gtkbearoff.c: widget did not update when pressing who's
was on roll.
* bearoff.c (ReadSconyers15x15): remove debug print.
(reported by Hugh Sconyers)
Fri Jul 25 07:53:09 2003 Joseph Heled <pepster@users.sourceforge.net>
* gtkgame.c (FormatStatEquity,FormatStatCubeError): Remove verbose
zeros in summary.
Thu Jul 24 19:41:23 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (DumpGameList): show dice for MOVE_SETDICE.
Thu Jul 24 19:29:36 2003 Joern Thyssen <jth@gnubg.org>
* import.c (ImportSGGGame): better support for resignations
in SGG files.
* html.c (HTMLDumpStatcontext), gtkgame.c (GTKDumpStatcontext),
analysis.c (DumpStatcontext): show only luck adj. results
when calculated.
Thu Jul 24 11:57:54 2003 Joseph Heled <pepster@users.sourceforge.net>
* html.c: Small HTML cleanups.
Complete removel of zeros in summary. Change '*' to HTML bullet.
Wed Jul 22 16:34:15 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* backgammon.h gnubg.c gtkgame.c html.c latex.c postscript.c
text.c sgf.c play.c analysis.c import.c export.c
doubles and corresponding take moverecords have the same
analysis and evalcontext
Wed Jul 22 14:17:18 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtkcube.c - allow extending cube decision rollouts
Tue Jul 22 14:29:09 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* set.c - add decimal places to j.s.d. displayed value
* rollout.c - force rollouts of cube decisions to use cubeful
rollout contexts
Tue Jul 22 10:41:36 2003 Joseph Heled <pepster@users.sourceforge.net>
* html.c (printStatTableMissed): don't print '(-0.000 ( -0.000%))'
in HTML output.
Mon Jul 21 23:05:10 2003 Joern Thyssen <jth@gnubg.org>
* gtkboard.c (write_points): fix bug when writing boards
for turn=-1.
(reported by Dean Gay)
Mon Jul 21 22:13:49 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLMatchInfo): only print non-empty values.
Mon Jul 21 21:17:30 2003 Joern Thyssen <jth@gnubg.org>
* html.c (HTMLDumpStatcontext), gtkgame.c (GTKDumpStatcontext),
analysis.c (DumpStatcontext): fix normalisation bug.
Mon 20 Jul 17:04:44 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c - more re-arrangement of aspect ratio
* gtkoptions.c - set output digits reset old value
Mon Jul 21 15:59:43 2003 Holger Bochnig <hbgg@gmx.net>
* gtkgame.c gtkgame.h gtkmet.c: update filename of current MET
in options after loading a new one
Mon 20 Jul 13:30:41 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c - quick hackery changing some hboxes to vboxes
to change the aspect ration of the rollout settings main page
Mon 20 Jul 11:32:04 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - re-instate fix for initial position dice (lost
when hand merging changes for orginal extendable rollouts)
Mon 20 Jul 09:49:08 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* progress.c - neater display of rank/jsds, better column label
Sun 19 Jul 22:01:18 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c - called SanityCheck with reversed board, so
it didn't deal with rollouts where one side has borne
off.
Sun 19 Jul 14:49:33 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c - fix limits on j.s.d. spinner, re-arrange
rollout general page (truncation pane above later
evaluations pane).
Sun 19 Jul 10:48:16 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c was losing the number of games rolled out.
Sat Jul 18 09:55:40 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* guile.c - adjust call to GeneralEvaluationR to match
new rollout progress functions.
Sat Jul 18 07:13:40 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c - search the stack of grab owners for the
current caller of ResumeInput and trim the stack if
found
Sat Jul 18 00:22:40 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* rollout.c gtkgame.c - update after every game rolled out,
cosmetics on Rank/no. JSDs
Fri Jul 18 23:02:40 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gtkgame.c - add a stack to hold signals for grab so that
closing a window with grab will not die when the signal
can't be disconnected
Fri Jul 18 21:15:10 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* gnubg.c - missing call to RolloutProgressStart in CommandRollout
for chequer play
Fri Jul 18 21:32:34 2003 Holger Bochnig <hbgg@gmx.net>
* gtkgame.c gtkoptions.c: fix [bug #4288] Incorrect path to MET
Fri Jul 18 13:49:30 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* backgammon.h eval.h gnubg.c rollout.c rollout.h progress.c
progress.h set.c gtkgame.c gtkgame.h
Fixes to rollout extension, allow rollout stop on JSD of moves
fix 'set output digits' command
Fri Jul 18 10:12:40 2003 Joern Thyssen <jth@gnubg.org>
* text.c (OutputMWC): strip some '+' signs from output of
standard error values.
Thu Jul 17 21:59:37 2003 Holger Bochnig <hbgg@gmx.net>
Sockets support on Windows
getting the dice from random.org now works on Windows, too
* gnubg.c (real_main, Shutdown): Winsock initialisation and cleanup
* dice.c (getDiceRandomDotOrg), external.c (ExternalSocket,
ExternalRead, ExternalWrite):
use send and recv, adjusting to different function definitions
Thu Jul 17 14:46:45 2003 Joern Thyssen <jth@gnubg.org>
* gtkchequer.c (UpdateMoveList): use Output* functions instead of
hardcoded logic.
Thu Jul 17 12:29:20 2003 Joern Thyssen <jth@gnubg.org>
Some changes to the match statistics:
(a) output ppg advantage for money game
(b) REMOVE output of abs. fibs rating
(c) add output of relative fibs rating based on luck adj. results
* html.c (HTMLDumpStatcontext), gtkgame.c (GTKDumpStatcontext),
analysis.c (DumpStatcontext): see above.
Wed Jul 16 21:28:23 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (CommandHint): move code into a set of subroutines.
* gnubg.c (CommandRollout): call new functions HintCube and HintChequer.
Wed Jul 16 21:21:08 2003 Joern Thyssen <jth@gnubg.org>
* gtkoptions.c: introduce gui equivalent to "set output digits ..."
(suggested by Olivier Croisille)
Wed Jul 16 18:49:11 2003 Joern Thyssen <jth@gnubg.org>
Introduce flag to set the numbers of digits output for
probabilities and equities.
(derived from bug #4236 by Ian Shaw)
* gnubg.c: new command "set output digits ..."
* text.c (OutputEquity, OutputMoneyEquity, OutputEquityScale,
OutputEquityDiff, OutputMWC, OutputPercent): generate format
dynamically using new flag fOutputDigits
* progress.c (GTKRolloutProgress): use Output* functions instead
of hardcoded logic.
Wed Jul 16 15:57:01 2003 Joern Thyssen <jth@gnubg.org>
Revert changes dated Wed Jul 9 10:32:08 2003 pending
discussion on bug-gnubg@gnu.org
* text.c
Wed Jul 16 14:57:00 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (CommandRollout): only save rollout into movelist, if
this is a rollout of a move!
(bug #4313 reported by Ian Shaw)
Wed Jul 16 12:21:20 2003 Joern Thyssen <jth@gnubg.org>
Change rollouts routines to accept a progress callback instead
of currently hardcoded GTK+ calls.
* rollout.c (GeneralEvaluation, GneralEvaluationR,
GeneralCubeDecision, GeneralCubeDecisionR): change prototype to
include progress callback.
* rollout.c (RolloutGeneral): replaced hardcoded calls with
calls to passed progress callback.
* progress.c: new file with default progress initialisers and
callbacks.
* gnubg.c (CommandRollout): bring up hint dialog after
"rollout =cube" and "rollout =1 =2 =3".
* gnubg.c, gtkchequer.c, gtkcube.c, database.c, analysis.c, external.c:
change calls to rollout functions.
* gtkgame.c: move GTK rollout progress stuff to new file progress.c
Tue Jul 15 19:52:54 2003 Holger Bochnig <hbgg@gmx.net>
* set.c: sockets: added includes for Windows
Tue Jul 15 17:07:45 2003 Holger Bochnig <hbgg@gmx.net>
* gnubgmodule.c gnubgmodule.h: if-guard python extensions
Tue Jul 15 00:11:02 2003 Joern Thyssen <jth@gnubg.org>
* rollout.c (GeneralCubeDecisionR): fix bug leading to wrong
cube decision rollouts.
Sun Jul 13 22:24:12 2003 Joern Thyssen <jth@gnubg.org>
* text.c (OutputMoveFilterPly): add a newline
* text.c (OutputEvalContextsForRollout): fix some indentation
problems.
Sun Jul 13 20:02:12 2003 Joern Thyssen <jth@gnubg.org>
* gnubgmodule.c (PythonPositionID, PythonPositionFromID,
PythonPositionFromBearoff, PythonPositionBearoff): new functions.
Sun Jul 13 18:17:05 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* make sure rollouts skip completed trials without wasting time
Sun Jul 13 19:49:16 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.py: new file (read during startup).
Sun Jul 13 19:17:27 2003 Joern Thyssen <jth@gnubg.org>
* gtkchequer.c (MoveListRollout): call HandleXAction.
Sun Jul 13 12:06:05 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (CommandRollout): fix some non-ANSI decls.
* configure.in: new autoconf magic for python
* gnubg.c (real_main, usage): new option -p.
Sun Jul 13 02:17:05 GMT 2003 Jim Segrave <jes@jes-2.demon.nl>
* eval.c, eval.h, export.h, gnubg.c, gtkchequer.c, gtkcube.c
gtkgame.c, guile.c, html.c, play.c, rollout.c, rollout.h, sgf.c
text.c - change rollout handling to support extending rollouts
and 'parallel' rollouts of multiple moves
Sat Jul 12 19:58:53 2003 Joern Thyssen <jth@gnubg.org>
* gnubgmodule.c: change board from typle to list.
Sat Jul 12 15:27:04 2003 Joern Thyssen <jth@gnubg.org>
Add Python support for gnubg.
* gnubg.c: support for Python.
* gnubgmodule.c: new file: python support for gnubg.
Sat Jul 12 10:11:00 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c (EvalWidget): ugly fix for problematic string.
Sat Jul 12 01:25:24 2003 Joern Thyssen <jth@gnubg.org>
* Makefile.am, configure.in: check for python
Fri Jul 11 20:48:34 2003 Joern Thyssen <jth@gnubg.org>
* path.c (PathOpen, PathSearch): use DIR_SEPARATOR as
directory separator instead of hardcoded /.
Fri Jul 11 20:47:56 2003 Holger Bochnig <hbgg@gmx.net>
* external.c: ignore SIGPIPE on Windows
Fri Jul 11 19:29:11 2003 Holger Bochnig <hbgg@gmx.net>
trying to use sockets on Windows (SIGPIPE still missing)
* dice.c, external.c, external.h: added includes and defines for Windows
* external.c: some workarounds for missing socket functions and
ones with different prototypes
Fri Jul 11 12:39:38 2003 Joern Thyssen <jth@gnubg.org>
* play.c (CommandRoll): fix grammer (bug #4273)
* gtkoptions.c (OptionsPages): fix some typos and disable
15x15 on disk (it's not implemented yet)
Thu Jul 10 21:56:41 2003 Holger Bochnig <hbgg@gmx.net>
* bearoff.c, gnubg.c: use g_path_get_dirname
if dirname not available
* show.c: #include "gtkpath.h" added
Thu Jul 10 20:19:59 2003 Holger Bochnig <hbgg@gmx.net>
* postscript.c: changed StartPage and EndPage to
PSStartPage and PSEndPage, respectively, to avoid name clash
on Windows
Thu Jul 10 14:56:04 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c: new command "show matchresult" to show
actual and luck adjusted results for a money game.
(needed to answer post in rec.games.backgammon)
* show.c (CommandShowMatchResult): new function.
Thu Jul 10 13:55:07 2003 Joern Thyssen <jth@gnubg.org>
* gnubg.c (dirname): win32 doesn't have dirname.
Thu Jul 10 13:10:29 2003 Joern Thyssen <jth@gnubg.org>
Improve output of settings for rollout
(bug #4243 by Ian Dunstan)
* text.c (OutputRolloutContext): output more settings
Thu Jul 10 11:14:30 2003 Joern Thyssen <jth@gnubg.org>
Trim gtkgame.c: move gtk widget for Settings->Options and
Settings->Path into new files.
* gtkoptions.c, gtkpath.c: new files
* gtkgame.c: rename a few functions and move many to new files.
Thu Jul 10 10:35:00 2003 Joern Thyssen <jth@gnubg.org>
Initial experimental support of Hugh Sconyers' full 15x15
bearoff database.
* gnubg.c: new command "show bearoff",
"set bearoff sconyers 15x15 [dvd|disk] [enable|path]".
* gnubg.c (ChangeDisk): new function.
* gnubg.c (real_main): init sconyers' bearoff databases.
* gnubg.c (CommandSaveSettings): save setup for Sconyers' databases.
* set.c (CommandSetBearoffSconyers15x15DVDEnable,
CommandSetBearoffSconyers15x15DiskEnable
CommandSetBearoffSconyers15x15DVDPath,
CommandSetBearoffSconyers15x15DiskPath): new functions.
* show.c (CommandShowVariation): fix typo.
* show.c (CommandShowBearoff, ShowBearoff): new functions.
* eval.h: new class CLASS_BEAROFF_15x15 (NOT ENABLED YET!)
* eval.c: make sure that all evaluations routines return
values to indicate errors or interrupt.
* bearoff.c (BearoffClose): modify prototype; free pbc
* bearoff.h: new options.
* bearoff.c: make sure that all bearoff routines return
values to indicate errors or interrupt.
* bearoff.c (BearoffDumpSconyers15x15, ReadSconyers15x15,
BearoffEvalSconyers): new functions.
* gtkbearoff.c: new file (GTK equivalent of "show bearoff")
* gtkgame.c (GTKChangeDisk): new function.
* gtkgame.c: new meny entry: Analyse->Bearoff
* gtkgame.c (OptionPages): new page for bearoff setup.
* rollout.c (BearoffRollout): add fixme...
* configure.in, config.h.in: search for dirname.
* Makefile.am: new files gtkbearoff.[ch]
Wed Jul 9 10:32:08 2003 Joern Thyssen <jth@gnubg.org>
* text.c (OutputEquity, OutputMoneyEquity, OutputEquityScale,
OutputEquityDiff, OutputMWC, OutputPercent): add a digit to the
output
(bug #4236 by Ian Shaw)
Tue Jul 8 23:00 CET 2003 Olivier Baur <olivier.baur@noos.fr>
* openurl.c: added support for MacOS X
Tue Jul 08 22:58:59 2003 Holger Bochnig <hbgg@gmx.net>
* gtkgame.h, gtkexport.c, gtkgame.c, gtkmet.c,
gtkmovefilter.c, gtkprefs.c, gtkrace.c, gtkrolls.c,
gtktempmap.c, gtktheory.c: rename CreateDialog to GTKCreateDialog
to avoid name clash with the Windows function
Tue Jul 8 21:00 CET 2003 Olivier Baur <olivier.baur@noos.fr>
Implement sound support on Mac OS X, using QuickTime; add a new
"sound system" called "QuickTime", a new command "set sound system
quicktime", and a new sound system radio button in the Options >
Sound settings dialog.
* sound.h: define new sound system SOUND_SYSTEM_QUICKTIME
* sound.c: modify play_file() and play_file_child(); add functions
PlaySound_QuickTime() and Thread_PlaySound_QuickTime();
* set.c: add new function CommandSetSoundSystemQuickTime()
* backgammon.h: add prototype to CommandSetSoundSystemQuickTime()
* gnubg.c: add command "set sound system quicktime"
* gtkgame.c: OptionPages(), OptionsOK'): add new "pwSoundQuickTime"
radio button widget
Tue Jul 8 19:05 GMT 2003 Jim Segrave jes@jes-2.demon.nl
* undo change to rollout.c - it was a fix for a problem which
was only in local development source
* gtkgame.c - turning off cubefull on the Rollout setting general
page will turn off cubeful chequer play on all other pages
Suggestion by Ian Dunstan
Tue Jul 8 18:29:56 2003 Joern Thyssen <jth@gnubg.org>
* text.c (OutputRolloutContext): display later evals.
(bug #4229, reported by Ian Dunstan)
Tue Jul 8 11:15 GMT 2003 Jim Segrave jes@jes-2.demon.nl
* rollout.c - initialise internal variables on first game of
rollout
Mon Jul 7 12:33:17 2003 Joern Thyssen <jth@gnubg.org>
* rollout.c (RolloutDice): fix bug in generated dice for
rollout as initial position.
Mon Jul 7 11:38 CET 2003 Olivier Baur <olivier.baur@noos.fr>
Fix bug: when playing against gnubg, you would sometimes
get several games in a row with identical dice sequences
(reported by Peter O Lura <polura@online.no>); the issue
actually arises when a new game is started after having
performed a rollout, which "resets" the RNG to the
"rollout seed".
* rollout.c (RolloutGeneral): add call to InitRNG at end of
rollout to make sure that next game played against gnubg
won't get dice rolls based on the seed of a rollout that
has just been performed.
Sun Jul 6 18:01:08 2003 Joern Thyssen <jth@gnubg.org>
* openurl.c (OpenURL): commit old fix.
Sun Jul 6 15:02 GMT 2003 Jim Segrave jes@jes-2.demon.nl
* rolloutc it helps to call fabs() when dealing with floats.
sigh - complete brain fade
Sun Jul 6 14:33:42 2003 Joern Thyssen <jth@gnubg.org>
* eval.c (EvalKey): do not include cubeful flags, match scores, etc.
in calculation of hash key for 0-ply evaluations unless called
from EvaluatePositionCubeful.
Sun Jul 6 13:48:46 2003 Joern Thyssen <jth@gnubg.org>
* gtkgame.c (StatcontextGetSelection): order lines before copying.
(bug #4160 reported by Holger Bochnig)
Sat Jul 5 20:53:42 2003 Joseph Heled <pepster@users.sourceforge.net>
* gnubg.c: replace 'const' with ICONV_CONST to get rid of compiler
warning.
Thu Jul 3 15:02 GMT 2003 Jim Segrave jes@jes-2.demon.nl
* openurl.c gtktheory.c gtkboard.c osr.c eval.c gnubg.c
htmlimages.c export.c lib/event.c
fixes for compiler warnings - unused variables removed,
cast added in gnubg.c, config.h included in event.c (and
fix of call to outputerr()), add explicit returns in eval.c
for reaching end of non-void function
Thu Jun 31 18:23:52 2003 Joern Thyssen <jth@gnubg.org>
* gtkprefs.c (toggle_display_type): gtk_notebook_get_n_pages does
exist in gtk+ 2???
|