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
|
2015-04-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, NEWS, website/presage_database_dump.sql.gz:
preparing for 0.9.1 release.
* bindings/csharp/presage_wcf_service_console_host/Program.cs,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.cs:
handle exception on service host open.
2015-04-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: add silent installation
mode to installer, terminate processes prior to uninstalling, add
flag to skip notepad++ plugin installation when /NoNpp flag is
passed to installer, install Notepad++ presage plugin only in
32-bit installer.
* apps/gtk/gprompter/scintilla/*: Revert to scintilla 3.50
release.
2015-03-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage_wcf_service/App.config,
bindings/csharp/presage_wcf_service/IPresageService.cs,
bindings/csharp/presage_wcf_service/PresageService.cs,
bindings/csharp/presage_wcf_service/presage_wcf_service.csproj,
bindings/csharp/presage_wcf_service_console_host/Program.cs,
bindings/csharp/presage_wcf_service_console_host/presage_wcf_service_console_host.csproj,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.cs:
Add service versioning to namespaces and endpoint addresses to
safeguard against future changes.
2015-03-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.54
release.
2015-03-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage_wcf_service_system_tray/AboutForm.cs:
add license and close buttons to about dialog, add action to open
link URL.
2015-03-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: remove missed files in
uninstaller.
* bindings/csharp/presage_wcf_service_system_tray/AboutForm.Designer.cs,
bindings/csharp/presage_wcf_service_system_tray/AboutForm.cs,
bindings/csharp/presage_wcf_service_system_tray/AboutForm.resx,
bindings/csharp/presage_wcf_service_system_tray/Makefile.am,
bindings/csharp/presage_wcf_service_system_tray/PresageSystemTray.cs,
bindings/csharp/presage_wcf_service_system_tray/presage_wcf_service_system_tray.csproj:
add about dialog.
2015-03-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/README,
packaging/windows/presage_installer.nsi: add WCF service tray app
to Windows installer.
2015-03-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage_wcf_service_console_host/Program.cs,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.cs:
check for existance of behaviour prior to setting it.
* configure.ac, bindings/csharp/Makefile.am,
bindings/csharp/presage_wcf_service_system_tray/Makefile.am:
package systray app in tarball.
2015-02-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage.net.sln,
bindings/csharp/presage_wcf_service/App.config,
bindings/csharp/presage_wcf_service/presage_wcf_service.csproj,
bindings/csharp/presage_wcf_service_console_host/Program.cs,
bindings/csharp/presage_wcf_service_system_tray/App.config,
bindings/csharp/presage_wcf_service_system_tray/ClassDiagram1.cd,
bindings/csharp/presage_wcf_service_system_tray/PresageSystemTray.cs,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.Designer.cs,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.cs,
bindings/csharp/presage_wcf_service_system_tray/Program.cs,
bindings/csharp/presage_wcf_service_system_tray/Properties/AssemblyInfo.cs,
bindings/csharp/presage_wcf_service_system_tray/Properties/Resources.Designer.cs,
bindings/csharp/presage_wcf_service_system_tray/Properties/Resources.resx,
bindings/csharp/presage_wcf_service_system_tray/Properties/Settings.Designer.cs,
bindings/csharp/presage_wcf_service_system_tray/Properties/Settings.settings,
bindings/csharp/presage_wcf_service_system_tray/Resources/presage.ico,
bindings/csharp/presage_wcf_service_system_tray/Resources/presage.png,
bindings/csharp/presage_wcf_service_system_tray/Resources/presage.svg,
bindings/csharp/presage_wcf_service_system_tray/presage_wcf_service_system_tray.csproj,
resources/presage.ico: Add initial implementation of presage WCF
service system tray hosting application, change mex Metadata
Exchance endpoint to use named pipe binding.
2015-02-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage_csharp_demo/presage_csharp_demo.csproj,
bindings/csharp/presage_wcf_service/App.config,
bindings/csharp/presage_wcf_service/PresageService.cs,
bindings/csharp/presage_wcf_service_console_host/Program.cs: use
NetNamedPipeBinding, "a secure, reliable, optimized binding that
is suitable for on-machine communication between WCF
applications".
2015-02-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi,
packaging/windows/README: add WCF service binaries to installer.
2015-02-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/*: first stab at implementing a WCF presage
service.
* src/lib/presage.cpp: fix problem with programmatically setting
new configuration variable.
2015-02-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/predictorRegistry.h,
src/lib/core/predictorRegistry.cpp: implement incremental
activation and deactivation of predictors.
* src/lib/core/predictorActivator.h: clean up stale code.
2015-02-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/smoothedNgramPredictor.cpp: enhance learning
performance.
2015-02-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: fix crash when prediction empty.
* src/lib/predictors/dbconnector/sqliteDatabaseConnector.cpp: add
support for in-memory SQLite databases :memory:
2015-02-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp: renamed from bindings/c# to appease autoconf.
* bindings/Makefile.am, bindings/csharp/Makefile.am,
bindings/csharp/presage.net/Makefile.am,
bindings/csharp/presage_csharp_demo/Makefile.am, configure.ac:
distribute .NET binding code in tarball.
2015-02-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c,
apps/notepad++/PluginDefinition.cpp,
apps/qt/qprompter/mainwindow.cpp, apps/qt/qprompter/mainwindow.h:
restrict the size of the context range returned by presage
callback object in the demo applications.
2015-02-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi,
packaging/windows/win-buildpackage.sh: fix issue with local
installation directory string replacement in Windows installer
NSIS script.
2015-02-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/context_tracker/contextTracker.h,
resources/profiles/presage.xml.template: implemented
ONLINE_LEARNING configuration variable to control when online
machine learning is enabled.
* test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/selectorTest.cpp,
test/lib/predictors/dejavuPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.h,
test/lib/predictors/recencyPredictorTest.cpp: updated tests and
added online and offline learning test for smoothed n-gram
predictor.
2015-02-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c#/presage.net/Presage.cs,
bindings/c#/presage_csharp_demo/presage_csharp_demo.cs: add
offline learn method to presage .NET binding.
2015-02-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp, src/lib/presage.h, src/lib/libpresage.map,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/context_tracker/contextTracker.h,
src/lib/predictors/smoothedNgramPredictor.cpp,
src/lib/predictors/smoothedNgramPredictor.h: add offline learn
method to presage C++ API.
* bindings/c/libpresage-1.def, bindings/c/presage_c_demo.c: add
offline learn method to presage C API.
2015-02-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c#/presage_csharp_demo/presage_csharp_demo.cs: make
demo a bit more verbose.
2015-02-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/presage.i: change to C-style comments in interface file
to fix problem with latest SWIG.
* bindings/python/Makefile.am: fix build issue on Windows 64-bit.
* doc/INSTALL_MinGW32_MSYS_dev_env.txt,
doc/INSTALL_MinGW64_MSYS_dev_env.txt, apps/qt/qprompter/README:
update READMEs.
2014-10-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: fix Windows uninstaller
so that all installed files are removed during uninstallation.
2014-09-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/Doxyfile.in, doc/Makefile.am: stop building LaTeX
documentation and only install documentation artefacts.
2014-09-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.9: released.
* packaging/windows/presage_installer.nsi,
packaging/windows/win-buildpackage.sh: Improve Windows packaging
scripts to handle 32-bit and 64-bit builds.
2014-09-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, NEWS, website/presage_database_dump.sql.gz:
preparing for 0.9 release.
2014-09-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/prompter/prompter.py: Fix key press event handling
with modifiers enabled using latest wxPython.
2014-09-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/pyprompter.desktop,
apps/gtk/gprompter/gprompter.desktop: Add categories.
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.50
release.
2014-08-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/Makefile.am,
test/lib/core/context_tracker/Makefile.am,
test/lib/predictors/dbconnector/Makefile.am,
test/lib/core/context_tracker/contextTrackerTestRunner.cpp: fix
problems caused by subdir-objects automake option.
2014-02-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped version up to 0.9~beta
* bindings/c#/presage.net/Presage.cs,
bindings/c#/presage.net/Properties/AssemblyInfo.cs,
bindings/c#/presage_csharp_demo/presage_csharp_demo.cs: fix
presage.net assembly name and version, add ability to find presage
installation using the Windows registry to presage.net assembly.
2014-01-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/PluginDefinition.cpp: fix bug in Notepad++
presage plugin help menu item.
* apps/notepad++/NppPresage.vcxproj: upgrade presage Notepad++
plugin project to VS2013.
* packaging/windows/README,
packaging/windows/presage_installer.nsi,
packaging/windows/win-buildpackage.sh: add C# artefacts to Windows
installer.
2014-01-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* c#/presage_csharp*: rename presage_csharp project to presage.net
2014-01-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* c#/presage_csharp/Presage.cs: add error checking and presage
exception in c#.
2014-01-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* c#/README.txt, c#/presage_csharp.sln,
c#/presage_csharp/Presage.cs,
c#/presage_csharp/Properties/AssemblyInfo.cs,
c#/presage_csharp/presage_csharp.csproj,
c#/presage_csharp_demo/App.config,
c#/presage_csharp_demo/presage_csharp_demo.cs,
c#/presage_csharp_demo/presage_csharp_demo.csproj: add
experimental C# binding.
2014-01-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.h: rearrange C++ and C APIs layout in header.
* doc/INSTALL_MinGW32_MSYS_dev_env.txt: add steps to generate
Python import library on Windows.
2013-11-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/INSTALL_MinGW64_MSYS_dev_env.txt,
doc/INSTALL_MinGW32_MSYS_dev_env.txt: add QT and QScintilla steps.
2013-11-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c/README_Visual_Studio.txt: update instructions to
build and link in 64-bit mode.
* doc/INSTALL_MinGW32_MSYS_dev_env.txt,
doc/INSTALL_MinGW64_MSYS_dev_env.txt: add build and install
instructions to build with mingw-w64 mingw-builds toolchain.
2013-11-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/Makefile.am, bindings/python/Makefile.am: fix build
issue in mingw-w64 mingw-buils toolchain.
2013-11-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_database_dump.sql.gz: update documentation and
development pages.
2013-08-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/PluginDefinition.cpp,
src/lib/core/prediction.cpp, src/lib/core/predictorRegistry.cpp,
src/lib/predictors/ARPAPredictor.cpp,
src/lib/predictors/dejavuPredictor.cpp: fix issues uncovered with
cppcheck and reported by Hugh Sasse.
2013-08-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: remove D-BUS files from
Windows packaging.
2013-08-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, NEWS, website/presage_database_dump.sql.gz:
preparing for 0.8.9 release.
2013-08-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/Scintilla.h: update to latest 3.3.4.
* apps/gtk/gprompter/gprompter.c,
apps/notepad++/PluginDefinition.cpp: set custom order in user
completion list.
2013-08-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/dbus/Makefile.am: fix automake dependency for dbus service.
* configure.ac: fix python autoconf checks.
2013-08-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/README, packaging/windows/ReplaceInFile.nsh,
packaging/windows/presage_installer.nsi: enhanced Windows
installer install and uninstall code to specify each file and
directory to install/uninstall (except lib/site-packages).
2013-07-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.34
release.
2013-07-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/Makefile.am: add missing -lm link dependency.
* test/integration/Makefile.am: fix test environment bug.
* test/lib/predictors/newSmoothedNgramPredictorTest.cpp: fix test
bug occuring when running parallel make check.
2013-07-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.33
release.
2013-04-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.31
release.
2013-02-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/PluginDefinition.cpp: Include build timestamp in
about box.
* packaging/windows/presage_installer.nsi: Windows installer
detects and offers choice to uninstall previous presage
installation.
* bindings/c/presage_c_demo.c: Use correct printf specifier for
size_t.
2013-01-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.24
release.
2013-01-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: Use AM_PROG_AR if automake understands it.
* apps/notepad++/PluginDefinition.cpp: Fix Notepad++ plugin learn
mode toggle.
2013-01-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: Use scintilla UTF8 codepage
encoding on all platforms (Win32 GTK included).
* src/lib/core/predictorRegistry.cpp: Make log message (slightly)
more informative.
2012-12-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/PluginDefinition.cpp: fix build failure with
Visual Studio 2010, remove debugging MessageBox() calls.
* src/lib/core/profileManager.cpp: fix build failure with g++ 4.6.
2012-12-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c,
apps/notepad++/PluginDefinition.cpp,
apps/qt/qprompter/mainwindow.cpp, src/lib/core/profileManager.cpp,
src/lib/presage.cpp: fix issues uncovered with cppcheck and
reported by Hugh Sasse.
2012-11-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.23
release.
2012-07-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/Makefile.am, apps/Makefile.am, configure.ac:
package notepad++ plugin sources.
2012-06-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/Makefile.am, configure.ac: link in gmodule
libs in gprompter.
2012-06-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: Fix pyprompter checks.
2012-06-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/Makefile.am, configure.ac: Add checks for python
modules required for pyprompter.
* test/lib/core/context_tracker/contextChangeDetectorTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/predictorRegistryTest.cpp,
test/lib/core/profileManagerTest.cpp,
test/lib/core/profileTest.cpp, test/lib/core/selectorTest.cpp,
test/lib/core/tokenizer/crossCheckTokenizerTest.cpp,
test/lib/core/tokenizer/reverseTokenizerTest.cpp,
test/lib/core/variableTest.cpp,
test/lib/predictors/abbreviationExpansionPredictorTest.cpp,
test/lib/predictors/dbconnector/databaseConnectorTest.cpp,
test/lib/predictors/dbconnector/databaseConnectorTest.h,
test/lib/predictors/dbconnector/sqliteDatabaseConnectorTest.cpp,
test/lib/predictors/dejavuPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.cpp,
test/lib/predictors/recencyPredictorTest.cpp,
test/lib/predictors/smoothedNgramPredictorTest.cpp: Make check
target quiet.
2012-06-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/Makefile.am, configure.ac: Add checks for python
modules required for pypresagemate.
2012-06-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.8: released.
2012-06-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: Fix compilation errors triggered
by hardening flags.
* test/lib/core/profileManagerTest.cpp,
test/lib/predictors/smoothedNgramPredictorTest.cpp: Fix
compilation error with GCC 4.7.
2012-06-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, NEWS, website/presage_database_dump.sql.gz:
preparing for 0.8.8 release.
2012-06-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/context_tracker/contextChangeDetector.cpp,
src/lib/core/context_tracker/contextTracker.*,
src/lib/predictors/smoothedNgramPredictor.cpp,
test/lib/predictors/predictorsTestMockObjects.cpp: Fix bug in
smoothed n-gram predictor where spurious text was learned when
change detected that entire past stream needed to be learnt, such
as when triggered by entering backspace in gprompter. Tokens from
past stream were incorrectly used to fill n-gram to be learned.
* apps/gtk/gprompter/gprompter.c: removed debugging printouts.
2012-06-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am, bindigs/python/setup.py.in: Pass
CPPFLAGS, CXXFLAGS, LDFLAGS to python extension build/link lines.
* configure.ac, INSTALL: autoupdated autoconf files.
* test/lib/common/Makefile.am: Build common test library for make
check target, not make all target.
* src/lib/core/defaultProfile.cpp,
resources/profiles/presage.xml.template: Fix spurious compilation
warning.
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.20
release.
2012-05-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profiles/presage.xml.template,
src/lib/core/defaultProfile.cpp: add comment to describe use of
$HOME variable in configuration.
2012-05-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: rewrote python dbus module autoconf check to use
python import statement.
2012-05-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/prompter/prompter.py: removed learning presage menu
toggle to accomodate user specific learning smoothed n-gram
predictor changes.
2012-05-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/smoothedNgramPredictor.cpp: Improve smoothed
n-gram predictor learning performance.
* src/lib/core/profileManager.*: hange user-specific default
presage.xml location to ~/.presage/
2012-05-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/utility.*,
src/lib/predictors/dbconnector/databaseConnector.cpp,
src/tools/Makefile.am,
test/lib/predictors/dbconnector/Makefile.am: Add ability to create
directory containing language model if it doesn't exist.
* src/lib/core/utility.cpp: Fix build issue on MinGW/MSYS.
2012-05-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/dbconnector/databaseConnector.cpp: Add
support for multiple vars in configuration. Add support for
special ${HOME} var, it expands to both content of HOME
environment variable or USERPROFILE if HOME is empty.
2012-05-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profile/presage.xml.template,
src/lib/core/context_tracker/contextChangeDetector.*,
src/lib/core/context_tracker/contextTracker.*,
src/lib/core/defaultProfile.cpp,
src/lib/predictors/smoothedNgramPredictor.cpp,
test/lib/core/context_tracker/contextChangeDetectorTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/selectorTest.cpp,
test/lib/predictors/dejavuPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.cpp,
test/lib/predictors/recencyPredictorTest.cpp: Add
Presage.ContextTracker.LOWERCASE_MODE configuration variable
2012-05-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/context_tracker/contextChangeDetector.cpp,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/predictors/smoothedNgramPredictor.cpp,
test/lib/core/context_tracker/contextChangeDetectorTest.*,
test/lib/predictors/smoothedNgramPredictor.cpp, TODO: Fix bug that
occurs when learning is enabled and spurious work is learnt. Bug
was discovered in gprompter and occurred when learning is enabled
and backspace is entered.
2012-05-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* TODO: Add TODO items, description of bug to be fixed.
* apps/gtk/gprompter/gprompter.c: tracing printouts.
2012-05-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/dbconnector/databaseConnector.cpp,
src/lib/predictors/dbconnector/databaseConnector.h,
src/lib/predictors/dbconnector/sqliteDatabaseConnector.cpp,
test/lib/predictors/dbconnector/sqliteDatabaseConnectorTest.cpp:
create language model database if it does not exist; initialise an
empty database of specified cardinality.
2012-04-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/smoothedNgramPredictor.*,
src/lib/predictors/dbconnector/databaseConnector.*,
src/lib/predictors/dbconnector/sqliteDatabaseConnector.*,
src/tools/text2ngram.cpp,
test/lib/predictors/dbconnector/databaseConnectorTest.*,
test/lib/predictors/dbconnector/sqliteDatabaseConnectorTest.*,
test/lib/predictors/newSmoothedNgramPredictorTest.*,
test/lib/predictors/smoothedNgramPredictorTest.*: Add n-gram
cardinality and read/write mode parameters to database connector.
2012-04-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/smoothedNgramPredictor.*: Refactor n-gram
cardinality.
* resources/profiles/presage.xml.template,
src/lib/predictors/dbconnector/databaseConnector.*,
src/lib/predictors/dbconnector/sqliteDatabaseConnector.*: Add user
specific learning smoothed ngram predictor. User specific smoothed
ngram predictor uses a user-specific language model stored in the
user's home directory. Learning mode is enabled.
2012-04-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/dejavuPredictor.cpp,
test/lib/predictors/dejavuPredictorTest.cpp: add filter support to
dejavu predictor.
2012-04-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profiles/presage.xml.template,
src/lib/core/predictorRegistry.cpp,
src/lib/predictors/dictionaryPredictor.cpp,
src/lib/predictors/dictionaryPredictor.h: add support for filters
to dictionary predictor.
2012-04-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/abbreviationExpansionPredictor.cpp,
src/lib/predictors/abbreviationExpansionPredictor.h,
src/lib/predictors/predictor.cpp, src/lib/predictors/predictor.h,
src/lib/predictors/recencyPredictor.cpp,
src/lib/predictors/recencyPredictor.h,
test/lib/predictors/recencyPredictorTest.cpp,
test/lib/predictors/recencyPredictorTest.h : add support for
filters to predictors.
* src/lib/presage.h: fixed comments.
2012-04-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/combiner.cpp: cleaned up combiner filter base class
implementation.
2012-04-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test\lib\predictors\dbconnector\sqliteDatabaseConnectorTest.cpp:
close database.dump file before attempting to unlink from
filesystem (failed on MinGW/MSYS).
2012-04-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/tinyxml/*: upgraded to TinyXML 2.6.2.
* test\lib\predictors\dbconnector\sqliteDatabaseConnectorTest.cpp:
fixed test failure on MinGW/MSYS.
2012-03-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/integration/integration.sh,
test/lib/core/predictorRegistryTest.cpp,
test/lib/predictors/dejavuPredictorTest.h,
test/lib/predictors/recencyPredictorTest.cpp,
test/lib/predictors/abbreviationExpansionPredictorTest.cpp,
test/lib/predictors/recencyPredictorTest.h,
test/lib/predictors/smoothedNgramPredictorTest.cpp,
test/lib/predictors/dejavuPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.cpp,
src/lib/core/defaultProfile.cpp,
src/lib/core/predictorRegistry.cpp, src/lib/core/defaultProfile.h,
src/lib/predictors/dejavuPredictor.h,
src/lib/predictors/ARPAPredictor.cpp,
src/lib/predictors/predictor.h,
src/lib/predictors/recencyPredictor.cpp,
src/lib/predictors/ARPAPredictor.h,
src/lib/predictors/abbreviationExpansionPredictor.cpp,
src/lib/predictors/dummyPredictor.cpp,
src/lib/predictors/recencyPredictor.h,
src/lib/predictors/abbreviationExpansionPredictor.h,
src/lib/predictors/dummyPredictor.h,
src/lib/predictors/dictionaryPredictor.cpp,
src/lib/predictors/smoothedNgramPredictor.cpp,
src/lib/predictors/dictionaryPredictor.h,
src/lib/predictors/smoothedNgramPredictor.h,
src/lib/predictors/dejavuPredictor.cpp,
src/lib/predictors/predictor.cpp,
resources/profiles/presage.xml.template: multiple instances of the
same predictor class can now be instantiated and enabled at
runtime through configuration.
Presage.PredictorRegistry.PREDICTORS controls which predictors are
enabled. Each predictor instance is defined as a child of
Presage.Predictors and has it own configuration. For example, the
additional flexibility allows one to enable several instances of a
SmoothedNgram predictors, each instance pointing at a different
language model.
2012-03-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.04
release.
2012-03-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/Makefile.am: fixed build issue following libsimulator
relocation.
2012-03-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src\lib\core\profileManager.cpp: fixed bug in accessing presage
registry key.
2012-03-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test\lib\simulator, test\lib\simulator\Makefile.am,
test\lib\Makefile.am, src\tools\simulator,
src\tools\simulator\simulator.cpp,
src\tools\simulator\simulator.h, src\tools\simulator\Makefile.am,
src\tools\Makefile.am, src\lib\simulator\simulator.cpp,
src\lib\simulator\simulator.h, src\lib\simulator\Makefile.am,
src\lib\Makefile.am, configure.ac: cleaned up and moved simulator
code.
2012-02-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src\lib\presage.cpp, src\lib\core\predictorActivator.h,
src\lib\core\predictorRegistry.cpp, src\lib\core\variable.cpp,
src\lib\core\pluginManager.h, src\lib\core\predictorActivator.cpp,
src\lib\core\selector.cpp, src\lib\core\Makefile.am,
src\lib\core\pluginManager.cpp,
src\lib\predictors\ARPAPredictor.cpp,
src\lib\predictors\predictor.h: cleaned up sources.
2012-02-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src\libcore\profileManager.cpp: fixed HKEY leak.
2012-02-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PluginDefinition.cpp,
apps\notepad++\PresageUplink.cpp, apps\notepad++\PresageUplink.h:
reindenting, changes to plugin unloading logic.
2012-02-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PluginDefinition.cpp, apps\notepad++\README:
added build instructions and additional debug messages.
2012-02-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\NppPresage.cpp,
apps\notepad++\PluginDefinition.cpp,
apps\notepad++\PresageUplink.cpp: fixes to Notepad++ plugin.
2012-02-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging\windows\win-buildpackage.sh,
packaging\windows\presage_installer.nsi, packaging\windows\README:
package qprompter in Windows installer.
2012-01-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.03
release.
2012-01-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging\windows\presage_installer.nsi: unchecked final page
checkboxes and added show getting started checkbox option.
* configure.ac, doc\Makefile.am: convert text files to DOS line
endings when installing on MINGW.
2012-01-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging\windows\win-buildpackage.sh, packaging\windows\README:
updated windows packaging scripts.
2011-12-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.02
release.
2011-12-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/INSTALL_MinGW_MSYS_dev_env.txt: updated build instructions.
2011-11-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.01
release.
2011-11-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.00
release.
2011-11-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/qt/qprompter/mainwindow.*: added undo, redo, selectall
items to edit menu.
2011-11-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/qt/qprompter/mainwindow.*: added and implemented view menu.
2011-11-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/qt/qprompter/mainwindow.*: fixed qprompter build issue on
slightly older qscintilla on Linux.
2011-11-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\qt\qprompter\mainwindow.*: show prediction on whenever
scintilla ui is updated, added autopunctuation feature.
2011-11-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\qt\qprompter\mainwindow.h,
apps\qt\qprompter\mainwindow.cpp: handle function key
autocompletion selection.
2011-11-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\qt\qprompter\application.qrc: added resource file.
* apps\qt\qprompter\mainwindow.cpp: added initial function key to
autocompletion prediction.
2011-10-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* qt, qt/qprompter, qt/qprompter/application.pro,
qt/qprompter/images, qt/qprompter/images/copy.png,
qt/qprompter/images/cut.png, qt/qprompter/images/new.png,
qt/qprompter/images/open.png, qt/qprompter/images/paste.png,
qt/qprompter/images/save.png, qt/qprompter/main.cpp,
qt/qprompter/mainwindow.cpp, qt/qprompter/mainwindow.h: initial
commit of qprompter.
2011-10-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c,
apps/notepad++/PluginDefinition.cpp: fixed memory allocation bug.
2011-10-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.7: released.
2011-10-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/dbus/Makefile.am, apps/dbus/setup.py.in, configure.ac:
added setup.py for dbus service.
2011-10-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/pyprompter.xpm, apps/python/Makefile.am: added
(ugly) xpm icon for pyprompter.
* apps/gtk/gprompter/gprompter.xpm,
apps/gtk/gprompter/Makefile.am: added (ugly) xpm icon for
gprompter.
2011-09-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_database_dump.sql.gz, configure.ac, NEWS:
preparing for 0.8.7 release.
* packaging/debian/presage/trunk/debian/changelog: updated release
information.
2011-09-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 2.29
release.
2011-09-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/debian/presage/trunk/debian/gprompter.install,
packaging/debian/presage/trunk/debian/pyprompter.install: install
pixmaps.
* apps/python/Makefile.am, apps/gtk/gprompter/Makefile.am: added
icons for pyprompter and gprompter apps.
2011-09-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: added welcome page and
finish page to installer.
2011-09-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/pyprompter.svg, apps/python/pyprompter.png,
apps/python/Makefile.am, apps/python/pyprompter.desktop,
apps/gtk/gprompter/gprompter.png, apps/gtk/gprompter/Makefile.am,
apps/gtk/gprompter/gprompter.svg: added (ugly) icons and .desktop
files for gprompter and pyprompter.
2011-09-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PluginDefinition.cpp: gray out notepad++ plugin
menu items when presage not found.
* packaging\windows\presage_installer.nsi: installer figures out
if notepad++ is installed or not and does the right thing.
2011-09-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PluginDefinition.*,
apps\notepad++\PresageUplink.cpp: improved presage DLL loading and
handling of missing installation.
* packaging/windows/presage_installer.nsi: added section to
install notepad++ presage plugin.
2011-09-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.desktop,
apps/gtk/gprompter/Makefile.am: added .desktop file for gprompter.
2011-09-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PluginDefinition.cpp,
apps\notepad++\PresageUplink.cpp, apps\notepad++\PresageUplink.h,
apps\notepad++\NppPluginTemplate.vcproj: loading DLL and
dependants now works.
2011-09-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PluginDefinition.cpp,
apps\notepad++\PresageUplink.cpp,
apps\notepad++\NppPresage.vcxproj: changes to implement dynamic
presage loading from notepad++ plugin.
2011-09-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PresageUplink.*, apps\notepad++\NppPresage.*:
began implementing dynamic loading of libpresage.
2011-09-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: updated Windows
installer.
2011-08-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/profileManager.*: read presage system etc directory
location from HKCU/Software/Presage registry key on Windows.
* apps/dbus/presage_dbus_service, apps/dbus/Makefile.am: generate
man pages for dbus service and demo program.
2011-08-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging\windows\win-buildpackage.sh, packaging\windows\README:
updates to Windows kit building script
2011-08-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/profileManager.cpp: get_home_dir() function reads
from USERPROFILE env var instead of HOME on Windows.
2011-08-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/selector.cpp: fixed bug in erasing element while
iterating vector.
* resources/presage.svg, resources/Makefile.am: install SVG logo.
2011-08-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: added invert colours feature to
view menu.
2011-08-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.6: released.
* website/presage_database_dump.sql.gz, configure.ac, NEWS:
preparing for 0.8.6 release.
* packaging/debian/presage/trunk/debian/changelog: updated release
information.
2011-08-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 2.28
release.
2011-07-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: added support for SWIG 2.
* bindings/c/libpresage-1.def, bindings/c/Makefile.am: fixed bug,
added libpresage-1.def to distribution.
2011-07-30 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging\windows\presage_installer.nsi: Added uninstall
information to Add/Remove Programs.
2011-07-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging\windows\presage_installer.nsi: improved the NSIS
windows installer script.
2011-07-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* PluginDefinition.cpp, PluginDefinition.h: added learn mode menu
checkbox.
2011-07-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* PluginDefinition.cpp, PluginDefinition.h: added autopunctuation
menu checkbox.
2011-07-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\NppPresage.vcxproj: use PRESAGE_ROOT env var for
include and lib.
* apps\notepad++\NppPresage_vc8.sln: added VC8 solution.
2011-07-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\NppPresage.sln,
apps\notepad++\NppPluginTemplate.sln: renamed VS2010 solution.
* apps\notepad++\NppPresage.cpp,
apps\notepad++\PluginDefinition.cpp: minor changes.
2011-07-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PluginDefinition.cpp: cleaned up code and
switched funtion keys mode off.
2011-07-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\NppPluginDemo.cpp,
apps\notepad++\PluginDefinition.cpp,
apps\notepad++\PluginDefinition.h: prediction displayed on update
ui notifications, added autopunctuation feature.
* NppPluginDemo.cpp, NppPresage.cpp: renamed notepad++ plugin main
file.
2011-07-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src\lib\presageCallback.h, src\lib\presageException.h,
src\lib\presage.h: compiled out C++ API for Visual Studio
compilers (when _MSC_VER is defined)
* notepad++\NppPluginDemo.cpp, notepad++\PluginDefinition.cpp,
notepad++\PluginDefinition.h: prediction now works, user list is
displayed, and selection is inserted when selected. Much left to
do and fix.
* gtk\gprompter\gprompter.c: fixed mismatched memory deallocation.
2011-07-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 2.27
release.
2011-06-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 2.26
release.
2011-04-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.5: released.
* website/presage_database_dump.sql.gz, configure.ac, NEWS:
preparing for 0.8.5 release.
* packaging/debian/presage/trunk/debian/changelog: updated release
information.
2011-03-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*, apps/gtk/gprompter/Makefile.am:
updated to latest scintilla 2.25 release.
2011-03-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, apps/gtk/gprompter/Makefile.am: fixed compilation
issue with GCC 4.5.
* packaging/debian/presage/trunk/debian/patches/series: removed
fix-hyphen-used-as-minus-sign-in-text2ngram-man-page.patch in
debian packaging.
2011-03-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/text2ngram.cpp: default to stdout when no --output
flag specified.
2011-03-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/Makefile.am, bindings/python/Makefile.am,
apps/python/Makefile.am, apps/gtk/gprompter/Makefile.am: fixed
distcheck target.
2011-03-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/Makefile.am, apps/gtk/gprompter/Makefile.am,
apps/gtk/gpresagemate/Makefile.am: fixed dependencies for help2man
rules.
2011-02-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: fixed some memory leaks
discovered with valgrind.
2011-02-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: fixed bug in prediction
stringification function.
* website/presage_database_dump.sql.gz, website/README: upgraded
to drupal-6.20.
2011-02-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*, apps/gtk/gprompter/Makefile.am:
updated to latest scintilla 2.24 release.
* apps/dbus/presage_dbus_service.py,
apps/dbus/presage_dbus_python_demo.in: modified dbus interface
method.
2011-02-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp: make C API a bit more robust.
2011-02-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/PluginDefinition.*: began implementing some
scaffolding around the presage plugin for Notepad++.
2011-01-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/integration/integration.sh: fixed dependency on bash and
bashisms in integration test script.
2011-01-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c/libpresage-1.def: fixed export definition file for
Visual Studio compiler.
2011-01-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/Doxyfile.in: fixed documentation generation problem caused
by preprocessor define.
2011-01-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: handle exception triggered when
learning is switched on and n-gram database is not writable.
2010-12-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp, src/lib/presage.h,
bindings/c/presage_c_demo.c, apps/gtk/gprompter/gprompter.c:
modified presage C API functions to return success or error code.
2010-12-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp, src/lib/libpresage.map,
src/lib/presageException.h, src/lib/presage.h,
bindings/c/presage_c_demo.c, apps/gtk/gprompter/gprompter.c:
modified presage C API functions to return success or error code.
2010-12-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c/presage_c_demo.c: fixed compilation warning.
2010-12-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp, src/lib/presageCallback.h,
src/lib/presageException.h, src/lib/presage.h: fixed up public
headers for C and C++ interface.
2010-12-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.*, src/lib/core/profile.*,
src/lib/core/configuration.*,
src/lib/core/context_tracker/contextTracker.*,
src/lib/core/predictorRegistry.*,
src/lib/core/presageException.cpp, src/lib/libpresage.map,
src/lib/presageException.h,
src/lib/predictors/dbconnector/databaseConnector.*,
src/lib/predictors/dbconnector/sqliteDatabaseConnector.*,
src/lib/predictors/smoothedNgramPredictor.cpp,
apps/python/prompter/prompter.py: improvements and refactoring of presage exceptions to allow propagation of exceptions between C++ and python layers.
2010-12-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/Makefile.am,
apps/gtk/gprompter/gprompter.cpp: rewrote gprompter app in C.
* bindings/python/Makefile.am, apps/python/Makefile.am: fixed
distcheck.
2010-12-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/setup.py.in, apps/python/setup.py.in: fixed
setup.py and python egg generation.
2010-12-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c/README_Visual_Studio.txt,
bindings/c/libpresage-1.def, bindings/c/Makefile.am,
bindings/c/presage_c_demo.c: added support for and documentation
to link libpresage with Visual Studio.
2010-11-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: fixed bug in
stringify_prediction() function when prediction is empty.
2010-11-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c, apps/gtk/gprompter/Makefile.am:
first stab at writing gprompter in pure C using the libpresage C
API.
2010-11-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/defaultProfile.cpp: fixed small memory leak.
2010-11-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp, src/lib/Makefile.am,
src/lib/libpresage.map, src/lib/presage.h, bindings/c/Makefile.am,
bindings/c/presage_c_demo.c: built C API into libpresage.
2010-11-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c/Makefile.am, bindings/c/presage_c.cxx,
bindings/c/presage_c_demo.c, bindings/c/presage_c.h: fixed bug in
c wrapper shared library.
2010-11-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c, bindings/c/Makefile.am, bindings/c/presage_c.cxx,
bindings/c/presage_c_demo.c, bindings/c/presage_c.h,
bindings/Makefile.am, configure.ac: added beta C presage library
wrapper.
2010-10-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*:
updated to latest scintilla 2.22 release.
2010-10-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/dbus/presage_dbus_service,
apps/dbus/presage_dbus_service.py,
apps/dbus/presage_dbus_python_demo.in: added help message to dbus
service script, made cosmetic code improvements and fixed
printouts.
2010-10-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/dbus/presage_dbus_service,
apps/dbus/presage_dbus_service.py,
apps/dbus/presage_dbus_python_demo.in: modified beta D-BUS service
interface, improved start and stop script, adapted D-BUS python
demo client.
2010-08-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/Makefile.am, apps/gtk/gprompter/scintilla/*:
updated to latest scintilla 2.20 release.
2010-07-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/presagemate/presagemate.py: handle backspace.
2010-07-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/dbus/Makefile.am, apps/dbus/presage_dbus_python_demo.in,
configure.ac: added dbus service demo python program.
2010-07-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/tools/Makefile.am, test/lib/simulator/Makefile.am,
test/lib/core/Makefile.am, test/lib/predictors/Makefile.am: avoid
rebuilding sources, link in convenience libs in tests.
2010-07-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.4: released.
* website/presage_database_dump.sql.gz, configure.ac, NEWS:
preparing for 0.8.4 release.
* website/download_presage.svg, website/presage_files.tar.gz:
added download presage image.
2010-07-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/dbus/Makefile.am: fixed distcheck target.
* src/lib/core/defaultProfile.cpp,
resources/profiles/presage.xml.template,
resources/profiles/Makefile.am,
resources/profiles/generate_presage_config.sh,
resources/Makefile.am: moved installation of language model data
files to share directory.
* configure.ac: updated m4 macro handling, removed unneeded
autoconf checks.
2010-07-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/dbus/org.gnome.presage.service,
apps/dbus/org.gnome.presage.service.in, apps/dbus/Makefile.am,
apps/dbus/presage_dbus_service.py: added generation of d-bus
service file, modified service name and object path until d-bus
interface API is finalized.
2010-07-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* AUTHORS, README: updated docs.
* configure.ac, apps/Makefile.am, apps/dbus/prediction_service,
apps/dbus/presage_dbus_service, apps/dbus/prediction_service.py,
apps/dbus/Makefile.am, apps/dbus/presage_dbus_service.py: renamed
dbus predictive service and added it to install and dist rules.
2010-07-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/tools/Makefile.am,
test/lib/core/context_tracker/Makefile.am,
test/lib/core/Makefile.am, test/lib/core/tokenizer/Makefile.am,
test/lib/predictors/dbconnector/Makefile.am, test/Makefile.am:
removed explicit link to -ldl in tests.
* src/tools/Makefile.am, src/lib/Makefile.am,
bindings/python/Makefile.am, apps/python/Makefile.am,
apps/gtk/gprompter/Makefile.am, apps/gtk/gpresagemate/Makefile.am:
do not generate reference to info documentation in man pages.
* THANKS, apps/dbus, apps/dbus/org.gnome.presage.service,
apps/dbus/prediction_service, apps/dbus/prediction_service.py:
added DBUS prediction service contributed by David Pellicer.
* resources/Makefile.am, resources/el_quijote.txt: added spanish
training text and spanish language model generation.
2010-07-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/predictorRegistry.cpp,
src/lib/predictors/smoothedCountPredictor.cpp,
src/lib/predictors/smoothedCountPredictor.h,
src/lib/predictors/Makefile.am: removed obsolete smoothed count
predictor, superseded by smoothed n-gram predictor.
* resources/presage.svg, website/presage_logo.svg,
resources/Makefile.am: renamed SVG presage logo source and added
it to dist tarball.
* test/lib/core/Makefile.am: fixed issue building unit tests with
system libtinyxml.
2010-07-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/Makefile.am, configure.ac: added conditional check for
version script linker support.
2010-06-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/context_tracker/Makefile.am,
test/lib/core/Makefile.am, test/lib/predictors/Makefile.am,
src/tools/Makefile.am, src/lib/Makefile.am,
src/lib/libpresage.map, src/lib/predictors/Makefile.am: added
support for controlling and versioning symbols exported by
libpresage.
2010-06-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/profileManager.h, src/lib/core/profile.h,
test/lib/core/context_tracker/Makefile.am,
test/lib/core/Makefile.am, src/lib/core/Makefile.am,
src/lib/Makefile.am: removed all dependencies on convenience
embedded tinyxml source code copy when system libtinyxml is
available.
2010-06-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/smoothedCountPredictor.cpp: removed call to
exit().
2010-06-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.3: released.
* website/presage_database_dump.sql.gz, configure.ac, NEWS:
preparing for 0.8.3 release.
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla
2.1.2 release.
* apps/gtk/gprompter/gprompter.cpp: removed debugging output.
* doc/Makefile.am: install docs.
* resources/la_coscienza_di_zeno.txt, resources/Makefile.am,
resources/l_innocente.txt: replaced training corpus text for
italian language.
* src/lib/predictors/recencyPredictor.h, doc/Doxyfile.in,
src/lib/core/profileManager.h, src/lib/core/pluginManager.cpp:
fixed doxygen warnings.
2010-06-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/debian/presage/trunk/debian/control,
src/lib/core/profile.h, src/lib/Makefile.am, configure.ac: added
ability to use system libtinyxml instead of embedded copy.
* packaging/debian/presage/trunk/debian/presage-gprompter.menu,
resources/Makefile.am, resources/presage.xpm: added menu entry
icon.
2010-06-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: fixed issue with parallel build of
python binding component.
2010-05-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/integration/Makefile.am, test/lib/core/dbconnector,
test/lib/core/dbconnector/databaseConnectorTest.cpp,
test/lib/core/dbconnector/sqliteDatabaseConnectorTest.cpp,
test/lib/core/dbconnector/databaseConnectorTest.h,
test/lib/core/dbconnector/sqliteDatabaseConnectorTest.h,
test/lib/core/dbconnector/Makefile.am,
test/lib/core/dbconnector/dbconnectorTestRunner.cpp,
test/lib/core/Makefile.am, test/lib/predictors/dbconnector,
test/lib/predictors/dbconnector/databaseConnectorTest.h,
test/lib/predictors/dbconnector/sqliteDatabaseConnectorTest.h,
test/lib/predictors/dbconnector/Makefile.am,
test/lib/predictors/Makefile.am, src/tools/Makefile.am,
src/tools/text2ngram.cpp, src/lib/core/predictorRegistry.cpp,
src/lib/core/dbconnector,
src/lib/core/dbconnector/databaseConnector.cpp,
src/lib/core/dbconnector/sqliteDatabaseConnector.cpp,
src/lib/core/dbconnector/databaseConnector.h,
src/lib/core/dbconnector/sqliteDatabaseConnector.h,
src/lib/core/dbconnector/Makefile.am, src/lib/core/Makefile.am,
src/lib/Makefile.am, src/lib/predictors/dbconnector,
src/lib/predictors/dbconnector/Makefile.am,
src/lib/predictors/smoothedNgramPredictor.h,
src/lib/predictors/Makefile.am, configure.ac,
resources/Makefile.am: added --disable-sqlite configure flag.
2010-05-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: fixed distcheck target.
2010-05-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.2: released.
* debian/changelog, website/presage_database_dump.sql.gz,
configure.ac, NEWS: preparing for 0.8.2 release.
2010-05-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control: fixed up package dependencies.
2010-05-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control, debian/presage-pyprompter.menu,
debian/python-presage.install, debian/presage-pyprompter.install:
created new pyprompter package.
2010-05-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_database_dump.sql.gz: updated main page and
features page.
2010-04-30 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/ARPAPredictor.cpp,
src/lib/predictors/ARPAPredictor.h: fixed bug in multimap code and
compilation problem on Solaris SPARC.
* apps/gtk/gprompter/Makefile.am, src/lib/presage.cpp: fixed
compilation issue on Solaris SPARC.
* debian/control: changed data package to arch all.
2010-04-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp: implemented autopunctuation.
2010-04-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp: fixed issue with
stringification of prediction for autocompletion list.
2010-04-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/presage-gprompter.menu, debian/README.Debian: added
debian menu entry for gprompter.
2010-04-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/profile.h, src/lib/core/defaultProfile.h: fixed
doxygen warnings.
* src/lib/presage.cpp: fixed bug with learning.
* setup.py.in: fixed python presage debian package build problem.
2010-04-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/Makefile.am, apps/python/pypresagemate.in,
apps/python/pypresagemate.py, apps/python/presagemate,
apps/python/presagemate/presagemate.py,
apps/python/presagemate/__init__.py, configure.ac: split
pypresagemate into a front end that supports standard command line
parameters and a presagemate package that contains the GUI and
main application.
2010-04-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control, debian/presage.install,
debian/presage-gprompter.install: split gprompter in its own
package.
2010-04-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/profileTest.cpp, test/lib/core/profileTest.xml,
apps/python/prompter/prompter.py: removed remaining references to
plugins instead of predictors.
2010-04-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control, debian/libpresage-data.dirs,
debian/libpresage-data.install, debian/presage-data.dirs,
debian/presage-data.install: renamed presage-data package to
libpresage-data package.
2010-04-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control, debian/source, debian/source/format,
Makefile.am: switching debian packaging to 3.0 quilt format.
2010-04-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins, test/lib/plugins/dejavuPredictorTest.h,
test/lib/plugins/predictorsTestMockObjects.cpp,
test/lib/plugins/newSmoothedNgramPredictorTest.h,
test/lib/plugins/recencyPredictorTest.cpp,
test/lib/plugins/abbreviationExpansionPredictorTest.cpp,
test/lib/plugins/predictorsTestMockObjects.h,
test/lib/plugins/predictorsTestRunner.cpp,
test/lib/plugins/recencyPredictorTest.h,
test/lib/plugins/abbreviationExpansionPredictorTest.h,
test/lib/plugins/smoothedNgramPredictorTest.cpp,
test/lib/plugins/predictorsTestFixture.cpp,
test/lib/plugins/smoothedNgramPredictorTest.h,
test/lib/plugins/Makefile.am,
test/lib/plugins/predictorsTestFixture.h,
test/lib/plugins/dejavuPredictorTest.cpp,
test/lib/plugins/newSmoothedNgramPredictorTest.cpp,
test/lib/Makefile.am, test/lib/predictors,
test/lib/predictors/dejavuPredictorTest.h,
test/lib/predictors/newSmoothedNgramPredictorTest.h,
test/lib/predictors/predictorsTestMockObjects.h,
test/lib/predictors/recencyPredictorTest.h,
test/lib/predictors/abbreviationExpansionPredictorTest.h,
test/lib/predictors/Makefile.am,
test/lib/predictors/smoothedNgramPredictorTest.h, src/lib/plugins,
src/lib/plugins/ARPAPredictor.cpp,
src/lib/plugins/dejavuPredictor.h, src/lib/plugins/predictor.h,
src/lib/plugins/ARPAPredictor.h,
src/lib/plugins/recencyPredictor.cpp,
src/lib/plugins/abbreviationExpansionPredictor.cpp,
src/lib/plugins/dummyPredictor.cpp,
src/lib/plugins/smoothedCountPredictor.cpp,
src/lib/plugins/recencyPredictor.h,
src/lib/plugins/abbreviationExpansionPredictor.h,
src/lib/plugins/smoothedCountPredictor.h,
src/lib/plugins/dummyPredictor.h,
src/lib/plugins/dictionaryPredictor.cpp,
src/lib/plugins/smoothedNgramPredictor.cpp,
src/lib/plugins/dictionaryPredictor.h,
src/lib/plugins/smoothedNgramPredictor.h,
src/lib/plugins/Makefile.am, src/lib/plugins/dejavuPredictor.cpp,
src/lib/plugins/predictor.cpp, src/lib/core/predictorActivator.h,
src/lib/core/predictorRegistry.cpp, src/lib/core/suggestion.h,
src/lib/core/prediction.h,
src/lib/core/dbconnector/databaseConnector.h,
src/lib/core/dbconnector/sqliteDatabaseConnector.h,
src/lib/core/suggestion.cpp, src/lib/core/predictorRegistry.h,
src/lib/Makefile.am, src/lib/predictors,
src/lib/predictors/dejavuPredictor.h,
src/lib/predictors/ARPAPredictor.cpp,
src/lib/predictors/ARPAPredictor.h,
src/lib/predictors/abbreviationExpansionPredictor.cpp,
src/lib/predictors/smoothedCountPredictor.cpp,
src/lib/predictors/dummyPredictor.cpp,
src/lib/predictors/recencyPredictor.h,
src/lib/predictors/abbreviationExpansionPredictor.h,
src/lib/predictors/dummyPredictor.h,
src/lib/predictors/smoothedCountPredictor.h,
src/lib/predictors/dictionaryPredictor.cpp,
src/lib/predictors/smoothedNgramPredictor.cpp,
src/lib/predictors/dictionaryPredictor.h,
src/lib/predictors/smoothedNgramPredictor.h,
src/lib/predictors/Makefile.am,
src/lib/predictors/dejavuPredictor.cpp, configure.ac: renamed
plugins directory to predictors.
2010-04-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/integration/integration.sh,
test/lib/plugins/dictionaryPluginDriver.cpp,
test/lib/plugins/newSmoothedNgramPluginTest.cpp,
test/lib/plugins/predictorsTestMockObjects.cpp,
test/lib/plugins/dejavuPluginTest.h,
test/lib/plugins/recencyPredictorTest.cpp,
test/lib/plugins/pluginsTestMockObjects.cpp,
test/lib/plugins/abbreviationExpansionPredictorTest.cpp,
test/lib/plugins/predictorsTestRunner.cpp,
test/lib/plugins/recencyPluginTest.h,
test/lib/plugins/abbreviationExpansionPluginTest.h,
test/lib/plugins/predictorsTestFixture.cpp,
test/lib/plugins/pluginsTestFixture.cpp,
test/lib/plugins/smoothedNgramPredictorTest.h,
test/lib/plugins/smoothedNgramPluginTest.h,
test/lib/plugins/dejavuPluginTest.cpp,
test/lib/plugins/dejavuPredictorTest.h,
test/lib/plugins/newSmoothedNgramPredictorTest.h,
test/lib/plugins/newSmoothedNgramPluginTest.h,
test/lib/plugins/predictorsTestMockObjects.h,
test/lib/plugins/recencyPluginTest.cpp,
test/lib/plugins/smoothedCountDriver.cpp,
test/lib/plugins/abbreviationExpansionPluginTest.cpp,
test/lib/plugins/recencyPredictorTest.h,
test/lib/plugins/pluginsTestMockObjects.h,
test/lib/plugins/pluginsTestRunner.cpp,
test/lib/plugins/abbreviationExpansionPredictorTest.h,
test/lib/plugins/smoothedNgramPredictorTest.cpp,
test/lib/plugins/dummyPluginDriver.cpp,
test/lib/plugins/smoothedNgramPluginTest.cpp,
test/lib/plugins/Makefile.am,
test/lib/plugins/predictorsTestFixture.h,
test/lib/plugins/dejavuPredictorTest.cpp,
test/lib/plugins/pluginsTestFixture.h,
test/lib/plugins/newSmoothedNgramPredictorTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.h,
test/lib/core/predictorRegistryTest.cpp,
test/lib/core/selectorTest.h,
test/lib/core/pluginRegistryTest.cpp,
test/lib/core/profileManagerTest.cpp,
test/lib/core/selectorTest.cpp, test/lib/core/Makefile.am,
test/lib/core/predictorRegistryTest.h,
test/lib/core/pluginRegistryTest.h, src/lib/plugins/plugin.cpp,
src/lib/plugins/dejavuPlugin.h, src/lib/plugins/ARPAPredictor.h,
src/lib/plugins/recencyPredictor.cpp,
src/lib/plugins/abbreviationExpansionPredictor.cpp,
src/lib/plugins/dummyPredictor.cpp, src/lib/plugins/ARPAPlugin.h,
src/lib/plugins/dummyPlugin.cpp, src/lib/plugins/recencyPlugin.h,
src/lib/plugins/smoothedCountPredictor.h,
src/lib/plugins/abbreviationExpansionPlugin.h,
src/lib/plugins/smoothedCountPlugin.h,
src/lib/plugins/dictionaryPredictor.cpp,
src/lib/plugins/dictionaryPlugin.cpp,
src/lib/plugins/smoothedNgramPredictor.h,
src/lib/plugins/smoothedNgramPlugin.h,
src/lib/plugins/dejavuPlugin.cpp,
src/lib/plugins/dejavuPredictor.h,
src/lib/plugins/ARPAPredictor.cpp, src/lib/plugins/predictor.h,
src/lib/plugins/ARPAPlugin.cpp, src/lib/plugins/plugin.h,
src/lib/plugins/smoothedCountPredictor.cpp,
src/lib/plugins/recencyPlugin.cpp,
src/lib/plugins/abbreviationExpansionPlugin.cpp,
src/lib/plugins/recencyPredictor.h,
src/lib/plugins/smoothedCountPlugin.cpp,
src/lib/plugins/abbreviationExpansionPredictor.h,
src/lib/plugins/dummyPredictor.h, src/lib/plugins/dummyPlugin.h,
src/lib/plugins/smoothedNgramPredictor.cpp,
src/lib/plugins/smoothedNgramPlugin.cpp,
src/lib/plugins/dictionaryPredictor.h,
src/lib/plugins/Makefile.am, src/lib/plugins/dictionaryPlugin.h,
src/lib/plugins/dejavuPredictor.cpp,
src/lib/plugins/predictor.cpp, src/lib/presage.cpp,
src/lib/core/defaultProfile.cpp,
src/lib/core/predictorActivator.h,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/context_tracker/contextTracker.h,
src/lib/core/predictorRegistry.cpp,
src/lib/core/pluginRegistry.cpp,
src/lib/core/predictorActivator.cpp,
src/lib/core/defaultProfile.h, src/lib/core/Makefile.am,
src/lib/core/predictorRegistry.h, src/lib/core/pluginRegistry.h,
src/lib/Makefile.am, src/lib/presage.h,
resources/profiles/presage.xml.template: refactored plugins
hierarchy, renamed base Plugin class to Predictor.
2010-04-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/Makefile.am, src/lib/plugins/plugin.cpp,
src/lib/plugins/ARPAPlugin.cpp, src/lib/plugins/plugin.h,
src/lib/plugins/ARPAPlugin.h, src/lib/plugins/recencyPlugin.cpp,
src/lib/plugins/smoothedCountPlugin.cpp,
src/lib/plugins/dictionaryPlugin.cpp,
src/lib/plugins/smoothedNgramPlugin.cpp,
src/lib/plugins/smoothedNgramPlugin.h,
src/lib/plugins/dejavuPlugin.cpp, src/lib/core/utility.cpp,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/profileManager.cpp,
src/lib/core/predictorActivator.cpp, src/lib/core/utility.h,
src/lib/core/selector.cpp: moved utility functions into Utility
class.
2010-04-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla
2.1.1 release.
2010-04-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control, debian/copyright: added dependency on GTK+ devel
and updated copyright file, other packaging fixes.
2010-04-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp: migrated to GtkUIManager to
build gprompter menus.
2010-04-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/tinyxml/*: updated to latest tinyxml 2.6.1 release.
2010-03-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.1: released.
* debian/changelog, website/presage_database_dump.sql.gz,
configure.ac, NEWS: preparing for 0.8.1 release.
2010-03-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configuration_observer: merged configuration_observer branch to
trunk.
* src/lib/presage.cpp, src/lib/Makefile.am, src/lib/presage.h:
added new API method to persist presage configuration to file.
2010-03-30 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/defaultProfile.cpp: enhanced default profile to
contain all available configuration variables.
* src/lib/core/profileManager.cpp: fixed memory leak, load default
profile before any other configuration profile.
* test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.h,
test/lib/core/selectorTest.cpp, test/lib/core/selectorTest.h,
test/lib/core/profileManagerTest.cpp,
src/lib/core/context_tracker/contextTracker.h,
src/lib/core/pluginRegistry.cpp, src/lib/core/pluginRegistry.h:
fixed bug in unit tests when no local installation is present.
2010-03-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/profileManagerTest.cpp,
src/lib/plugins/smoothedNgramPlugin.cpp,
src/lib/core/profileManager.h, src/lib/core/profile.h,
src/lib/core/defaultProfile.cpp, src/lib/core/configuration.cpp,
src/lib/core/profileManager.cpp, src/lib/core/profile.cpp,
src/lib/core/defaultProfile.h, src/lib/core/configuration.h,
resources/profiles/presage.xml.template: implemented method to
write configuration to xml profile, added variable to persist
current configuration.
2010-03-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/profileTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/profileManagerTest.cpp,
src/lib/core/profileManager.h, src/lib/core/profile.h,
src/lib/core/profileManager.cpp, src/lib/core/profile.cpp,
src/lib/core/Makefile.am, src/lib/core/defaultProfile.cpp,
src/lib/core/defaultProfile.h: encapsulated default profile into
DefaultProfile class, reworked ProfileManager handling of loading
configuration data from profile xml files, fixed distcheck.
2010-03-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/configurationTest.cpp,
test/lib/core/variableTest.cpp, src/lib/plugins/ARPAPlugin.cpp,
src/lib/plugins/recencyPlugin.cpp,
src/lib/plugins/abbreviationExpansionPlugin.cpp,
src/lib/plugins/smoothedCountPlugin.cpp,
src/lib/plugins/smoothedNgramPlugin.cpp, src/lib/presage.cpp,
src/lib/core/profile.h, src/lib/core/configuration.cpp,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/variable.cpp, src/lib/core/pluginRegistry.cpp,
src/lib/core/profileManager.cpp, src/lib/core/profile.cpp,
src/lib/core/predictorActivator.cpp, src/lib/core/selector.cpp,
src/lib/core/variable.h, src/lib/core/dispatcher.h: fixed bug in
configuration handling and restored profile manager cached logging
functionality.
2010-03-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/profileManagerTest.h,
test/lib/core/profileTest.cpp, test/lib/core/profileTest.h,
test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.h,
test/lib/core/selectorTest.cpp,
test/lib/core/profileManagerTest.cpp, src/lib/presage.cpp,
src/lib/core/profileManager.h, src/lib/core/profile.h,
src/lib/core/configuration.cpp, src/lib/core/profileManager.cpp,
src/lib/core/profile.cpp, src/lib/presage.h: modified profile
manager and related classes so that presage configuration is
read from the following XML files: /etc/presage.xml,
<sysconfdir>/presage.xml, ~/.presage.xml and optionally supplied
xml file.
2010-03-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla
2.0.3 release.
2010-03-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/Makefile.am: fixed incorrect removal of
pypresagemate.py bug
* apps/gtk/gprompter/gprompter.cpp,
apps/gtk/gpresagemate/gpresagemate.cpp: removed compilation
warnings.
2010-03-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/pluginsTestMockObjects.cpp,
test/lib/plugins/smoothedNgramPluginTest.cpp,
src/lib/plugins/plugin.*, src/lib/plugins/ARPAPlugin.*,
src/lib/plugins/dejavuPlugin.*, src/lib/plugins/recencyPlugin.*,
src/lib/plugins/abbreviationExpansionPlugin.*,
src/lib/plugins/smoothedCountPlugin.*,
src/lib/plugins/recencyPlugin.*,
src/lib/plugins/dictionaryPlugin.*,
src/lib/plugins/smoothedNgramPlugin.*,
src/lib/core/context_tracker/contextTracker.*,
src/lib/core/context_tracker/contextChangeDetector.*,
src/lib/core/context_tracker/contextTracker.*,
src/lib/core/context_tracker/Makefile.am, src/lib/core/selector.*,
src/lib/core/suggestion.h, src/lib/core/configuration.h,
src/lib/core/pluginRegistry.h, src/lib/presage.h,
src/lib/core/predictorActivator.*,
test/lib/core/profileManagerTest.cpp,
src/lib/core/profileManager.*: implemented dispatcher logic for
components.
* src/tools/presageDemoText.cpp, src/tools/presageDemo.cpp,
apps/gtk/gpresagemate/gpresagemate.cpp: minor fixes for
compilation warnings.
2010-03-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/dejavuPlugin.*, src/lib/plugins/recencyPlugin.*,
src/lib/core/dispatcher.*, src/lib/core/Makefile.am: created
dispatcher class to handle dispatching of notifications from
observable to member functions and attachment/detachment from
notifications.
2010-03-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/newSmoothedNgramPluginTest.cpp,
test/lib/plugins/recencyPluginTest.cpp,
test/lib/plugins/abbreviationExpansionPluginTest.cpp,
test/lib/plugins/smoothedNgramPluginTest.cpp,
test/lib/plugins/Makefile.am,
test/lib/plugins/dejavuPluginTest.cpp,
test/lib/core/profileTest.cpp, src/lib/plugins/recencyPlugin.*,
src/lib/core/configuration.cpp, src/lib/core/selector.*: fixed
test compilation problems and implemented some notification update
handling code.
2010-03-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/profileTest.cpp,
test/lib/core/configurationTest.cpp,
test/lib/core/selectorTest.cpp,
test/lib/core/pluginRegistryTest.cpp,
test/lib/core/profileManagerTest.cpp,
src/lib/core/profileManager.h, src/lib/core/variable.cpp,
src/lib/core/selector.*, src/lib/core/observable.cpp: fixed tests
and started implemented update method of observable classes.
* src/lib/plugins/ARPAPlugin.*, src/lib/plugins/dejavuPlugin.*,
src/lib/plugins/recencyPlugin.*,
src/lib/plugins/abbreviationExpansionPlugin.*,
src/lib/plugins/smoothedCountPlugin.*,
src/lib/plugins/smoothedNgramPlugin.*,
src/lib/plugins/dictionaryPlugin.*, src/lib/presage.cpp,
src/lib/core/profileManager.*, src/lib/core/predictorActivator.*,
src/lib/core/context_tracker/contextTracker.*,
src/lib/core/selector.*, src/lib/core/pluginRegistry.*,
src/lib/core/observer.h: more changes for configuration variable
notifications.
2010-03-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/configuration.*, src/lib/core/variable.*,
src/lib/core/selector.*, src/lib/core/profile.*: more changes for
configuration variable changes notifications.
2010-03-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/configuration.*, src/lib/core/predictorActivator.*,
src/lib/core/context_tracker/contextTracker.*,
src/lib/core/selector.*, test/lib/core/profileTest.cpp,
src/lib/core/profile.*, src/lib/core/variable.*,
src/lib/core/observable.*, src/lib/core/observer.*,
src/lib/core/profile.cpp, src/lib/core/Makefile.am: initial
changes to implement observer pattern for configuration variable
changes notifications.
2010-03-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/smoothedNgramPlugin.cpp: performance improvement
in smoothed n-gram predictor, moved expensive sqlite query outside
loop to speed up runtime execution by a factor greater than 5.
* src/lib/core/dbconnector/sqliteDatabaseConnector.cpp: fixed
logic error in sqlite query callback function.
2010-03-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/smoothedNgramPlugin.cpp: fixed leak and logic
bug reported by Joaquim Rocha.
2010-02-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp: fixed minor bug that triggered
a compilation problem.
2010-02-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8: released.
* debian/changelog, website/presage_database_dump.sql.gz,
website/presage_files.tar.gz, configure.ac, NEWS: preparing for
upcoming release.
2010-02-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_logo.svg: slight modification to presage logo.
2010-02-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_database_dump.sql.gz,
website/presage_files.tar.gz, website/README: created website
applications page with screenshots.
2010-02-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/Makefile.am: build scintilla GTK widget with
G_THREADS_IMPL_NONE define to work around bug on Windows XP.
* apps/python/pyprompter.in, apps/python/prompter/prompter.py:
fixed apps names, removed about dialog pop-up on start-up.
* apps/python/pypresagemate.py: committed patch submitted by John
Hills to add suggestions number config.
2010-02-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*, apps/gtk/gprompter/Makefile.am:
updated to latest scintilla 2.0.2 release.
2010-01-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* setup.py.in, apps/python/presage_prompter.in,
apps/python/pyprompter.in, apps/python/Makefile.am,
apps/python/setup.py.in, configure.ac: renamed presage_prompter to
pyprompter.
2010-01-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp: added -h and -v command line
options.
* apps/gtk/gprompter/Makefile.am: generate man page with help2man.
2010-01-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp, resources/Makefile.am,
resources/presage.png: added logo image to about dialog in
gprompter application.
2010-01-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/pypresagemate.py: committed patch submitted by John
Hills to add a right click menu with 'About', 'Preferences' and
'Close' entries. The preferences entry doesn't do anything
functional yet though.
2010-01-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/newSmoothedNgramPluginTest.cpp,
test/lib/plugins/dictionaryPluginDriver.cpp,
test/lib/plugins/dejavuPluginTest.h,
test/lib/plugins/pluginsTestMockObjects.cpp,
test/lib/plugins/newSmoothedNgramPluginTest.h,
test/lib/plugins/recencyPluginTest.cpp,
test/lib/plugins/smoothedCountDriver.cpp,
test/lib/plugins/recencyPluginTest.h,
test/lib/plugins/dummyPluginDriver.cpp,
test/lib/plugins/pluginsTestFixture.cpp,
test/lib/plugins/dejavuPluginTest.cpp,
test/lib/core/profileManagerTest.h,
test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/context_tracker/contextChangeDetectorTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.h,
test/lib/core/context_tracker/Makefile.am,
test/lib/core/context_tracker/contextChangeDetectorTest.h,
test/lib/core/selectorTest.cpp, test/lib/core/selectorTest.h,
test/lib/core/Makefile.am,
test/lib/core/tokenizer/testStringSuite.cpp,
test/lib/core/tokenizer/forwardTokenizerTest.h,
test/lib/core/tokenizer/testStringSuite.h,
test/lib/core/tokenizer/crossCheckTokenizerTest.h,
test/lib/core/tokenizer/Makefile.am,
test/lib/core/tokenizer/reverseTokenizerTest.h,
test/lib/core/tokenizer/stringForwardTokenizerTest.h,
test/lib/core/profileManagerTest.cpp, test/lib/common,
test/lib/common/testStringSuite.cpp,
test/lib/common/testStringSuite.h,
test/lib/common/stringstreamPresageCallback.cpp,
test/lib/common/Makefile.am,
test/lib/common/stringstreamPresageCallback.h,
test/lib/Makefile.am, debian/changelog, debian/presage.install,
AUTHORS, src/tools/presageDemoText.cpp,
src/tools/presageSimulator.cpp, src/tools/presageDemo.cpp,
src/lib/simulator/simulator.cpp, src/lib/simulator/simulator.h,
src/lib/plugins/dejavuPlugin.h, src/lib/plugins/ARPAPlugin.cpp,
src/lib/plugins/plugin.h, src/lib/plugins/recencyPlugin.cpp,
src/lib/plugins/ARPAPlugin.h,
src/lib/plugins/abbreviationExpansionPlugin.cpp,
src/lib/plugins/dummyPlugin.cpp,
src/lib/plugins/smoothedCountPlugin.cpp,
src/lib/plugins/recencyPlugin.h,
src/lib/plugins/abbreviationExpansionPlugin.h,
src/lib/plugins/dummyPlugin.h,
src/lib/plugins/smoothedCountPlugin.h,
src/lib/plugins/dictionaryPlugin.cpp,
src/lib/plugins/smoothedNgramPlugin.cpp,
src/lib/plugins/dictionaryPlugin.h,
src/lib/plugins/smoothedNgramPlugin.h,
src/lib/plugins/dejavuPlugin.cpp, src/lib/presage.cpp,
src/lib/core/profileManager.h,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/context_tracker/contextChangeDetector.cpp,
src/lib/core/context_tracker/contextTracker.h,
src/lib/core/context_tracker/Makefile.am,
src/lib/core/context_tracker/contextChangeDetector.h,
src/lib/core/tokenizer/tokenizer.h,
src/lib/core/profileManager.cpp, src/lib/core/selector.cpp,
src/lib/Makefile.am, src/lib/presageCallback.h,
src/lib/presageException.h, src/lib/presage.h, ChangeLog,
bindings/python/presage_python_demo.in,
bindings/python/presage_prompter.in, bindings/python/prompter,
bindings/python/prompter/prompter.py,
bindings/python/prompter/__init__.py, bindings/python/Makefile.am,
bindings/python/setup.py.in, bindings/presage.i, configure.ac,
apps/python/presage_prompter.in, apps/python/prompter,
apps/python/prompter/prompter.py,
apps/python/prompter/__init__.py, apps/python/Makefile.am,
apps/python/setup.py.in, apps/python/pypresagemate.py,
apps/gtk/gprompter, apps/gtk/gprompter/gprompter.cpp,
apps/gtk/gprompter/scintilla,
apps/gtk/gprompter/scintilla/zipsrc.bat,
apps/gtk/gprompter/scintilla/test,
apps/gtk/gprompter/scintilla/test/xite.py,
apps/gtk/gprompter/scintilla/test/lexTests.py,
apps/gtk/gprompter/scintilla/test/simpleTests.py,
apps/gtk/gprompter/scintilla/test/XiteMenu.py,
apps/gtk/gprompter/scintilla/test/MessageNumbers.py,
apps/gtk/gprompter/scintilla/test/CVS,
apps/gtk/gprompter/scintilla/test/CVS/Repository,
apps/gtk/gprompter/scintilla/test/CVS/Root,
apps/gtk/gprompter/scintilla/test/CVS/Entries,
apps/gtk/gprompter/scintilla/test/performanceTests.py,
apps/gtk/gprompter/scintilla/test/README,
apps/gtk/gprompter/scintilla/test/XiteWin.py,
apps/gtk/gprompter/scintilla/test/examples,
apps/gtk/gprompter/scintilla/test/examples/x.vb.styled,
apps/gtk/gprompter/scintilla/test/examples/x.asp,
apps/gtk/gprompter/scintilla/test/examples/x.d,
apps/gtk/gprompter/scintilla/test/examples/CVS,
apps/gtk/gprompter/scintilla/test/examples/CVS/Repository,
apps/gtk/gprompter/scintilla/test/examples/CVS/Root,
apps/gtk/gprompter/scintilla/test/examples/CVS/Entries,
apps/gtk/gprompter/scintilla/test/examples/x.asp.styled,
apps/gtk/gprompter/scintilla/test/examples/x.d.styled,
apps/gtk/gprompter/scintilla/test/examples/x.php,
apps/gtk/gprompter/scintilla/test/examples/x.py,
apps/gtk/gprompter/scintilla/test/examples/x.php.styled,
apps/gtk/gprompter/scintilla/test/examples/x.py.styled,
apps/gtk/gprompter/scintilla/test/examples/x.cxx,
apps/gtk/gprompter/scintilla/test/examples/x.html,
apps/gtk/gprompter/scintilla/test/examples/x.cxx.styled,
apps/gtk/gprompter/scintilla/test/examples/x.html.styled,
apps/gtk/gprompter/scintilla/test/examples/x.vb,
apps/gtk/gprompter/scintilla/include,
apps/gtk/gprompter/scintilla/include/HFacer.py,
apps/gtk/gprompter/scintilla/include/WindowAccessor.h,
apps/gtk/gprompter/scintilla/include/PropSet.h,
apps/gtk/gprompter/scintilla/include/SciLexer.h,
apps/gtk/gprompter/scintilla/include/Face.py,
apps/gtk/gprompter/scintilla/include/Accessor.h,
apps/gtk/gprompter/scintilla/include/Scintilla.h,
apps/gtk/gprompter/scintilla/include/Scintilla.iface,
apps/gtk/gprompter/scintilla/include/Platform.h,
apps/gtk/gprompter/scintilla/include/CVS,
apps/gtk/gprompter/scintilla/include/CVS/Repository,
apps/gtk/gprompter/scintilla/include/CVS/Root,
apps/gtk/gprompter/scintilla/include/CVS/Entries,
apps/gtk/gprompter/scintilla/include/ScintillaWidget.h,
apps/gtk/gprompter/scintilla/include/.cvsignore,
apps/gtk/gprompter/scintilla/include/KeyWords.h,
apps/gtk/gprompter/scintilla/cocoa,
apps/gtk/gprompter/scintilla/cocoa/QuartzTextLayout.h,
apps/gtk/gprompter/scintilla/cocoa/ScintillaCallTip.h,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/main.m,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/Info.plist,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/Scintilla-Info.plist,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/TestData.sql,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/ScintillaTest_Prefix.pch,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/AppController.h,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/CVS,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/CVS/Repository,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/CVS/Root,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/CVS/Entries,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/AppController.mm,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/English.lproj,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/English.lproj/InfoPlist.strings,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/English.lproj/MainMenu.xib,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/English.lproj/CVS,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/English.lproj/CVS/Repository,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/English.lproj/CVS/Root,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/English.lproj/CVS/Entries,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/CVS,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/CVS/Repository,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/CVS/Root,
apps/gtk/gprompter/scintilla/cocoa/ScintillaTest/ScintillaTest.xcodeproj/CVS/Entries,
apps/gtk/gprompter/scintilla/cocoa/ScintillaView.mm,
apps/gtk/gprompter/scintilla/cocoa/QuartzTextStyleAttribute.h,
apps/gtk/gprompter/scintilla/cocoa/InfoBarCommunicator.h,
apps/gtk/gprompter/scintilla/cocoa/InfoBar.mm,
apps/gtk/gprompter/scintilla/cocoa/res,
apps/gtk/gprompter/scintilla/cocoa/res/mac_cursor_busy.png,
apps/gtk/gprompter/scintilla/cocoa/res/mac_cursor_flipped.png,
apps/gtk/gprompter/scintilla/cocoa/res/info_bar_bg.png,
apps/gtk/gprompter/scintilla/cocoa/res/CVS,
apps/gtk/gprompter/scintilla/cocoa/res/CVS/Repository,
apps/gtk/gprompter/scintilla/cocoa/res/CVS/Root,
apps/gtk/gprompter/scintilla/cocoa/res/CVS/Entries,
apps/gtk/gprompter/scintilla/cocoa/CVS,
apps/gtk/gprompter/scintilla/cocoa/CVS/Repository,
apps/gtk/gprompter/scintilla/cocoa/CVS/Root,
apps/gtk/gprompter/scintilla/cocoa/CVS/Entries,
apps/gtk/gprompter/scintilla/cocoa/PlatCocoa.h,
apps/gtk/gprompter/scintilla/cocoa/ScintillaCocoa.mm,
apps/gtk/gprompter/scintilla/cocoa/ScintillaListBox.mm,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/Info.plist,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/Scintilla_Prefix.pch,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/CVS,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/CVS/Repository,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/CVS/Root,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/CVS/Entries,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/ScintillaFramework.xcodeproj,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/ScintillaFramework.xcodeproj/project.pbxproj,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/ScintillaFramework.xcodeproj/CVS,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/ScintillaFramework.xcodeproj/CVS/Repository,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/ScintillaFramework.xcodeproj/CVS/Root,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/ScintillaFramework.xcodeproj/CVS/Entries,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/English.lproj,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/English.lproj/InfoPlist.strings,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/English.lproj/CVS,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/English.lproj/CVS/Repository,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/English.lproj/CVS/Root,
apps/gtk/gprompter/scintilla/cocoa/ScintillaFramework/English.lproj/CVS/Entries,
apps/gtk/gprompter/scintilla/cocoa/QuartzTextStyle.h,
apps/gtk/gprompter/scintilla/cocoa/ScintillaView.h,
apps/gtk/gprompter/scintilla/cocoa/ScintillaCallTip.mm,
apps/gtk/gprompter/scintilla/cocoa/InfoBar.h,
apps/gtk/gprompter/scintilla/cocoa/ScintillaListBox.h,
apps/gtk/gprompter/scintilla/cocoa/ScintillaCocoa.h,
apps/gtk/gprompter/scintilla/cocoa/PlatCocoa.mm,
apps/gtk/gprompter/scintilla/delcvs.bat,
apps/gtk/gprompter/scintilla/gtk,
apps/gtk/gprompter/scintilla/gtk/scintilla-marshal.list,
apps/gtk/gprompter/scintilla/gtk/deps.mak,
apps/gtk/gprompter/scintilla/gtk/PlatGTK.cxx,
apps/gtk/gprompter/scintilla/gtk/scintilla-marshal.c,
apps/gtk/gprompter/scintilla/gtk/ScintillaGTK.cxx,
apps/gtk/gprompter/scintilla/gtk/scintilla.mak,
apps/gtk/gprompter/scintilla/gtk/CVS,
apps/gtk/gprompter/scintilla/gtk/CVS/Repository,
apps/gtk/gprompter/scintilla/gtk/CVS/Root,
apps/gtk/gprompter/scintilla/gtk/CVS/Entries,
apps/gtk/gprompter/scintilla/gtk/Converter.h,
apps/gtk/gprompter/scintilla/gtk/makefile,
apps/gtk/gprompter/scintilla/gtk/scintilla-marshal.h,
apps/gtk/gprompter/scintilla/src,
apps/gtk/gprompter/scintilla/src/LineMarker.h,
apps/gtk/gprompter/scintilla/src/LexLisp.cxx,
apps/gtk/gprompter/scintilla/src/LexErlang.cxx,
apps/gtk/gprompter/scintilla/src/LexAVE.cxx,
apps/gtk/gprompter/scintilla/src/AutoComplete.h,
apps/gtk/gprompter/scintilla/src/LexTADS3.cxx,
apps/gtk/gprompter/scintilla/src/LexSorcus.cxx,
apps/gtk/gprompter/scintilla/src/RESearch.cxx,
apps/gtk/gprompter/scintilla/src/Partitioning.h,
apps/gtk/gprompter/scintilla/src/RunStyles.h,
apps/gtk/gprompter/scintilla/src/LexPLM.cxx,
apps/gtk/gprompter/scintilla/src/Selection.h,
apps/gtk/gprompter/scintilla/src/SVector.h,
apps/gtk/gprompter/scintilla/src/Decoration.h,
apps/gtk/gprompter/scintilla/src/ContractionState.cxx,
apps/gtk/gprompter/scintilla/src/LexBash.cxx,
apps/gtk/gprompter/scintilla/src/LexPowerPro.cxx,
apps/gtk/gprompter/scintilla/src/CallTip.cxx,
apps/gtk/gprompter/scintilla/src/PositionCache.cxx,
apps/gtk/gprompter/scintilla/src/LexRuby.cxx,
apps/gtk/gprompter/scintilla/src/LexPS.cxx,
apps/gtk/gprompter/scintilla/src/LexD.cxx,
apps/gtk/gprompter/scintilla/src/LexSpecman.cxx,
apps/gtk/gprompter/scintilla/src/CharClassify.h,
apps/gtk/gprompter/scintilla/src/DocumentAccessor.cxx,
apps/gtk/gprompter/scintilla/src/LexKix.cxx,
apps/gtk/gprompter/scintilla/src/LexASY.cxx,
apps/gtk/gprompter/scintilla/src/LexVHDL.cxx,
apps/gtk/gprompter/scintilla/src/LexGui4Cli.cxx,
apps/gtk/gprompter/scintilla/src/LexR.cxx,
apps/gtk/gprompter/scintilla/src/LexYAML.cxx,
apps/gtk/gprompter/scintilla/src/Indicator.cxx,
apps/gtk/gprompter/scintilla/src/Document.cxx,
apps/gtk/gprompter/scintilla/src/LexAbaqus.cxx,
apps/gtk/gprompter/scintilla/src/LexCaml.cxx,
apps/gtk/gprompter/scintilla/src/Decoration.cxx,
apps/gtk/gprompter/scintilla/src/LexCPP.cxx,
apps/gtk/gprompter/scintilla/src/PerLine.cxx,
apps/gtk/gprompter/scintilla/src/LexCLW.cxx,
apps/gtk/gprompter/scintilla/src/LexAU3.cxx,
apps/gtk/gprompter/scintilla/src/LexCrontab.cxx,
apps/gtk/gprompter/scintilla/src/UniConversion.cxx,
apps/gtk/gprompter/scintilla/src/Document.h,
apps/gtk/gprompter/scintilla/src/LexEiffel.cxx,
apps/gtk/gprompter/scintilla/src/LexGen.py,
apps/gtk/gprompter/scintilla/src/LexTeX.cxx,
apps/gtk/gprompter/scintilla/src/CellBuffer.cxx,
apps/gtk/gprompter/scintilla/src/CharClassify.cxx,
apps/gtk/gprompter/scintilla/src/LexPascal.cxx,
apps/gtk/gprompter/scintilla/src/LexProgress.cxx,
apps/gtk/gprompter/scintilla/src/LexOthers.cxx,
apps/gtk/gprompter/scintilla/src/LexVerilog.cxx,
apps/gtk/gprompter/scintilla/src/LexVB.cxx,
apps/gtk/gprompter/scintilla/src/ExternalLexer.cxx,
apps/gtk/gprompter/scintilla/src/PerLine.h,
apps/gtk/gprompter/scintilla/src/Style.h,
apps/gtk/gprompter/scintilla/src/KeyMap.cxx,
apps/gtk/gprompter/scintilla/src/LexAsm.cxx,
apps/gtk/gprompter/scintilla/src/CVS,
apps/gtk/gprompter/scintilla/src/CVS/Repository,
apps/gtk/gprompter/scintilla/src/CVS/Root,
apps/gtk/gprompter/scintilla/src/CVS/Entries,
apps/gtk/gprompter/scintilla/src/LexHaskell.cxx,
apps/gtk/gprompter/scintilla/src/LexConf.cxx,
apps/gtk/gprompter/scintilla/src/LexMMIXAL.cxx,
apps/gtk/gprompter/scintilla/src/SplitVector.h,
apps/gtk/gprompter/scintilla/src/LexSML.cxx,
apps/gtk/gprompter/scintilla/src/StyleContext.cxx,
apps/gtk/gprompter/scintilla/src/ExternalLexer.h,
apps/gtk/gprompter/scintilla/src/LexMSSQL.cxx,
apps/gtk/gprompter/scintilla/src/RunStyles.cxx,
apps/gtk/gprompter/scintilla/src/KeyMap.h,
apps/gtk/gprompter/scintilla/src/LexInno.cxx,
apps/gtk/gprompter/scintilla/src/LexSpice.cxx,
apps/gtk/gprompter/scintilla/src/LexPOV.cxx,
apps/gtk/gprompter/scintilla/src/ScintillaBase.cxx,
apps/gtk/gprompter/scintilla/src/LexEScript.cxx,
apps/gtk/gprompter/scintilla/src/LexFortran.cxx,
apps/gtk/gprompter/scintilla/src/LexNsis.cxx,
apps/gtk/gprompter/scintilla/src/DocumentAccessor.h,
apps/gtk/gprompter/scintilla/src/XPM.h,
apps/gtk/gprompter/scintilla/src/LexBasic.cxx,
apps/gtk/gprompter/scintilla/src/LexForth.cxx,
apps/gtk/gprompter/scintilla/src/LexTACL.cxx,
apps/gtk/gprompter/scintilla/src/LexMagik.cxx,
apps/gtk/gprompter/scintilla/src/LexOpal.cxx,
apps/gtk/gprompter/scintilla/src/LexFlagship.cxx,
apps/gtk/gprompter/scintilla/src/LexScriptol.cxx,
apps/gtk/gprompter/scintilla/src/LexMatlab.cxx,
apps/gtk/gprompter/scintilla/src/LexBullant.cxx,
apps/gtk/gprompter/scintilla/src/LexPB.cxx,
apps/gtk/gprompter/scintilla/src/LexRebol.cxx,
apps/gtk/gprompter/scintilla/src/LexHTML.cxx,
apps/gtk/gprompter/scintilla/src/RESearch.h,
apps/gtk/gprompter/scintilla/src/UniConversion.h,
apps/gtk/gprompter/scintilla/src/LexTAL.cxx,
apps/gtk/gprompter/scintilla/src/LineMarker.cxx,
apps/gtk/gprompter/scintilla/src/CellBuffer.h,
apps/gtk/gprompter/scintilla/src/LexCSS.cxx,
apps/gtk/gprompter/scintilla/src/AutoComplete.cxx,
apps/gtk/gprompter/scintilla/src/SciTE.properties,
apps/gtk/gprompter/scintilla/src/ContractionState.h,
apps/gtk/gprompter/scintilla/src/CallTip.h,
apps/gtk/gprompter/scintilla/src/PositionCache.h,
apps/gtk/gprompter/scintilla/src/ViewStyle.h,
apps/gtk/gprompter/scintilla/src/Selection.cxx,
apps/gtk/gprompter/scintilla/src/Editor.cxx,
apps/gtk/gprompter/scintilla/src/LexCmake.cxx,
apps/gtk/gprompter/scintilla/src/LexAPDL.cxx,
apps/gtk/gprompter/scintilla/src/StyleContext.h,
apps/gtk/gprompter/scintilla/src/LexLout.cxx,
apps/gtk/gprompter/scintilla/src/CharacterSet.h,
apps/gtk/gprompter/scintilla/src/Style.cxx,
apps/gtk/gprompter/scintilla/src/Indicator.h,
apps/gtk/gprompter/scintilla/src/ScintillaBase.h,
apps/gtk/gprompter/scintilla/src/LexMetapost.cxx,
apps/gtk/gprompter/scintilla/src/LexCOBOL.cxx,
apps/gtk/gprompter/scintilla/src/KeyWords.cxx,
apps/gtk/gprompter/scintilla/src/LexMPT.cxx,
apps/gtk/gprompter/scintilla/src/LexBaan.cxx,
apps/gtk/gprompter/scintilla/src/Editor.h,
apps/gtk/gprompter/scintilla/src/LexPerl.cxx,
apps/gtk/gprompter/scintilla/src/LexMySQL.cxx,
apps/gtk/gprompter/scintilla/src/LexGAP.cxx,
apps/gtk/gprompter/scintilla/src/WindowAccessor.cxx,
apps/gtk/gprompter/scintilla/src/LexLua.cxx,
apps/gtk/gprompter/scintilla/src/LexPython.cxx,
apps/gtk/gprompter/scintilla/src/ViewStyle.cxx,
apps/gtk/gprompter/scintilla/src/LexTCL.cxx,
apps/gtk/gprompter/scintilla/src/PropSetSimple.h,
apps/gtk/gprompter/scintilla/src/PropSet.cxx,
apps/gtk/gprompter/scintilla/src/LexSmalltalk.cxx,
apps/gtk/gprompter/scintilla/src/LexPowerShell.cxx,
apps/gtk/gprompter/scintilla/src/LexAda.cxx,
apps/gtk/gprompter/scintilla/src/LexNimrod.cxx,
apps/gtk/gprompter/scintilla/src/LexCsound.cxx,
apps/gtk/gprompter/scintilla/src/XPM.cxx,
apps/gtk/gprompter/scintilla/src/LexSQL.cxx,
apps/gtk/gprompter/scintilla/src/LexAsn1.cxx,
apps/gtk/gprompter/scintilla/vcbuild,
apps/gtk/gprompter/scintilla/vcbuild/SciLexer.dsp,
apps/gtk/gprompter/scintilla/vcbuild/CVS,
apps/gtk/gprompter/scintilla/vcbuild/CVS/Repository,
apps/gtk/gprompter/scintilla/vcbuild/CVS/Root,
apps/gtk/gprompter/scintilla/vcbuild/CVS/Entries,
apps/gtk/gprompter/scintilla/vcbuild/.cvsignore,
apps/gtk/gprompter/scintilla/macosx,
apps/gtk/gprompter/scintilla/macosx/QuartzTextLayout.h,
apps/gtk/gprompter/scintilla/macosx/TCarbonEvent.h,
apps/gtk/gprompter/scintilla/macosx/ExtInput.cxx,
apps/gtk/gprompter/scintilla/macosx/ScintillaCallTip.h,
apps/gtk/gprompter/scintilla/macosx/ScintillaMacOSX.h,
apps/gtk/gprompter/scintilla/macosx/TView.h,
apps/gtk/gprompter/scintilla/macosx/QuartzTextStyleAttribute.h,
apps/gtk/gprompter/scintilla/macosx/ScintillaListBox.cxx,
apps/gtk/gprompter/scintilla/macosx/CVS,
apps/gtk/gprompter/scintilla/macosx/CVS/Repository,
apps/gtk/gprompter/scintilla/macosx/CVS/Root,
apps/gtk/gprompter/scintilla/macosx/CVS/Entries,
apps/gtk/gprompter/scintilla/macosx/TCarbonEvent.cxx,
apps/gtk/gprompter/scintilla/macosx/ScintillaCallTip.cxx,
apps/gtk/gprompter/scintilla/macosx/ScintillaMacOSX.cxx,
apps/gtk/gprompter/scintilla/macosx/TView.cxx,
apps/gtk/gprompter/scintilla/macosx/PlatMacOSX.h,
apps/gtk/gprompter/scintilla/macosx/deps.mak,
apps/gtk/gprompter/scintilla/macosx/QuartzTextStyle.h,
apps/gtk/gprompter/scintilla/macosx/ExtInput.h,
apps/gtk/gprompter/scintilla/macosx/TRect.h,
apps/gtk/gprompter/scintilla/macosx/PlatMacOSX.cxx,
apps/gtk/gprompter/scintilla/macosx/ScintillaListBox.h,
apps/gtk/gprompter/scintilla/macosx/makefile,
apps/gtk/gprompter/scintilla/macosx/SciTest,
apps/gtk/gprompter/scintilla/macosx/SciTest/SciTest.xcode,
apps/gtk/gprompter/scintilla/macosx/SciTest/SciTest.xcode/project.pbxproj,
apps/gtk/gprompter/scintilla/macosx/SciTest/SciTest.xcode/CVS,
apps/gtk/gprompter/scintilla/macosx/SciTest/SciTest.xcode/CVS/Repository,
apps/gtk/gprompter/scintilla/macosx/SciTest/SciTest.xcode/CVS/Root,
apps/gtk/gprompter/scintilla/macosx/SciTest/SciTest.xcode/CVS/Entries,
apps/gtk/gprompter/scintilla/macosx/SciTest/version.plist,
apps/gtk/gprompter/scintilla/macosx/SciTest/SciTest_Prefix.pch,
apps/gtk/gprompter/scintilla/macosx/SciTest/Info.plist,
apps/gtk/gprompter/scintilla/macosx/SciTest/main.cpp,
apps/gtk/gprompter/scintilla/macosx/SciTest/CVS,
apps/gtk/gprompter/scintilla/macosx/SciTest/CVS/Repository,
apps/gtk/gprompter/scintilla/macosx/SciTest/CVS/Root,
apps/gtk/gprompter/scintilla/macosx/SciTest/CVS/Entries,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/InfoPlist.strings,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/CVS,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/CVS/Repository,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/CVS/Root,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/CVS/Entries,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/main.nib,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/main.nib/info.nib,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/main.nib/classes.nib,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/main.nib/objects.xib,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/main.nib/CVS,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/main.nib/CVS/Repository,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/main.nib/CVS/Root,
apps/gtk/gprompter/scintilla/macosx/SciTest/English.lproj/main.nib/CVS/Entries,
apps/gtk/gprompter/scintilla/CVS,
apps/gtk/gprompter/scintilla/CVS/Repository,
apps/gtk/gprompter/scintilla/CVS/Root,
apps/gtk/gprompter/scintilla/CVS/Entries,
apps/gtk/gprompter/scintilla/README,
apps/gtk/gprompter/scintilla/License.txt,
apps/gtk/gprompter/scintilla/win32,
apps/gtk/gprompter/scintilla/win32/PlatWin.cxx,
apps/gtk/gprompter/scintilla/win32/Scintilla.def,
apps/gtk/gprompter/scintilla/win32/ScintillaWin.cxx,
apps/gtk/gprompter/scintilla/win32/SciTE.properties,
apps/gtk/gprompter/scintilla/win32/deps.mak,
apps/gtk/gprompter/scintilla/win32/PlatformRes.h,
apps/gtk/gprompter/scintilla/win32/Margin.cur,
apps/gtk/gprompter/scintilla/win32/scintilla_vc6.mak,
apps/gtk/gprompter/scintilla/win32/scintilla.mak,
apps/gtk/gprompter/scintilla/win32/CVS,
apps/gtk/gprompter/scintilla/win32/CVS/Repository,
apps/gtk/gprompter/scintilla/win32/CVS/Root,
apps/gtk/gprompter/scintilla/win32/CVS/Entries,
apps/gtk/gprompter/scintilla/win32/.cvsignore,
apps/gtk/gprompter/scintilla/win32/ScintRes.rc,
apps/gtk/gprompter/scintilla/win32/makefile,
apps/gtk/gprompter/scintilla/delbin.bat,
apps/gtk/gprompter/scintilla/version.txt,
apps/gtk/gprompter/scintilla/doc,
apps/gtk/gprompter/scintilla/doc/annotations.png,
apps/gtk/gprompter/scintilla/doc/styledmargin.png,
apps/gtk/gprompter/scintilla/doc/SciTEIco.png,
apps/gtk/gprompter/scintilla/doc/ScintillaRelated.html,
apps/gtk/gprompter/scintilla/doc/SciWord.jpg,
apps/gtk/gprompter/scintilla/doc/CVS,
apps/gtk/gprompter/scintilla/doc/CVS/Repository,
apps/gtk/gprompter/scintilla/doc/CVS/Root,
apps/gtk/gprompter/scintilla/doc/CVS/Entries,
apps/gtk/gprompter/scintilla/doc/SciRest.jpg,
apps/gtk/gprompter/scintilla/doc/Lexer.txt,
apps/gtk/gprompter/scintilla/doc/Steps.html,
apps/gtk/gprompter/scintilla/doc/SciBreak.jpg,
apps/gtk/gprompter/scintilla/doc/SciCoding.html,
apps/gtk/gprompter/scintilla/doc/ScintillaHistory.html,
apps/gtk/gprompter/scintilla/doc/index.html,
apps/gtk/gprompter/scintilla/doc/ScintillaUsage.html,
apps/gtk/gprompter/scintilla/doc/ScintillaDoc.html,
apps/gtk/gprompter/scintilla/doc/ScintillaToDo.html,
apps/gtk/gprompter/scintilla/doc/Design.html,
apps/gtk/gprompter/scintilla/doc/ScintillaDownload.html,
apps/gtk/gprompter/scintilla/doc/Icons.html,
apps/gtk/gprompter/scintilla/bin,
apps/gtk/gprompter/scintilla/bin/CVS,
apps/gtk/gprompter/scintilla/bin/CVS/Repository,
apps/gtk/gprompter/scintilla/bin/CVS/Root,
apps/gtk/gprompter/scintilla/bin/CVS/Entries,
apps/gtk/gprompter/scintilla/bin/empty.txt,
apps/gtk/gprompter/scintilla/bin/.cvsignore,
apps/gtk/gprompter/scintilla/tgzsrc,
apps/gtk/gprompter/Makefile.am, apps/gtk/gpresagemate,
apps/gtk/gpresagemate/gpresagemate.cpp,
apps/gtk/gpresagemate/Makefile.am, apps/gtk/Makefile.am,
apps/Makefile.am, doc/getting_started.txt, doc/Doxyfile.in, TODO,
resources/profiles/presage.xml.template: merged callback_refactor
branch into trunk.
2010-01-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp: fixed scintilla editing widget
resizing problem, fixed UTF8 scintilla problem on Win32/GTK,
removed widgets padding.
2010-01-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/newSmoothedNgramPluginTest.cpp,
test/lib/plugins/dictionaryPluginDriver.cpp,
test/lib/plugins/recencyPluginTest.cpp,
test/lib/plugins/smoothedCountDriver.cpp,
test/lib/plugins/dummyPluginDriver.cpp,
test/lib/plugins/dejavuPluginTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.h,
test/lib/core/context_tracker/Makefile.am,
test/lib/core/selectorTest.cpp, test/lib/core/selectorTest.h,
test/lib/core/Makefile.am,
test/lib/core/tokenizer/testStringSuite.cpp,
test/lib/core/tokenizer/forwardTokenizerTest.h,
test/lib/core/tokenizer/testStringSuite.h,
test/lib/core/tokenizer/crossCheckTokenizerTest.h,
test/lib/core/tokenizer/Makefile.am,
test/lib/core/tokenizer/reverseTokenizerTest.h,
test/lib/core/tokenizer/stringForwardTokenizerTest.h,
test/lib/core/profileManagerTest.cpp, test/lib/common,
test/lib/common/testStringSuite.cpp,
test/lib/common/testStringSuite.h, test/lib/Makefile.am,
configure.ac, test/lib/common/stringstreamPresageCallback.cpp,
test/lib/common/Makefile.am,
test/lib/common/stringstreamPresageCallback.h: fixed callback
memory leak in tests, created common lib for tests, added
stringstream callback, and moved test string suite to common lib.
* src/lib/presageCallback.h,
apps/gtk/gpresagemate/gpresagemate.cpp: removed stringstream
callback out of public API.
2010-01-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp,
apps/gtk/gprompter/Makefile.am: added stuff to about dialog.
2010-01-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/context_tracker/contextTracker.cpp: removed dead
code.
* doc/getting_started.txt: updated getting started guide with
example on how to use presage callback object.
* apps/python/pypresagemate.py: remap function keys keycode ->
keysym in pure python using Xlib module.
2010-01-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp: added some text to about
dialog.
2009-12-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/context_tracker/contextTracker.h, src/lib/presage.h:
fixed issue whereby context tracker took ownership of callback
object.
* apps/gtk/gpresagemate/gpresagemate.cpp: minor change.
2009-12-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/*, configure.ac, apps/python/*: moved
presage_prompter application from bindings/python to apps/python.
2009-12-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/dbconnector/sqliteDatabaseConnectorTest.cpp: fixed
tests on Windows with latest Cygwin release (1.7.1).
2009-12-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.cpp: added help menu item and about
dialog box, help still to be implemented.
2009-12-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/Makefile.am: incremented current interface library
revision.
2009-12-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/pypresagemate, apps/python/pypresagemate.py:
applying patch by John Hills, remapped function keys and auto
capitalize word "I"
2009-12-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/soothie_theme.tar.gz, website/presage_theme.tar.gz,
website/README, website/presage_database_dump.sql.gz: website
update and redesign.
2009-12-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/pypresagemate.py: fixed to work with callbacks.
2009-12-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/*: moved GTK applications from src/tools/gtk directory
to apps/gtk directory
* apps/python/pypresagemate*: added new pypresagemate application
contributed by John Hills.
* configure.ac, Makefile.am: trivial changes to reflect directory
layout changes.
2009-11-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.7.3: released.
2009-10-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* README: updated optional components list.
* configure.ac, resources/arpa/Makefile.am: fixed sample arpa
database generation on MinGW/MSYS.
2009-10-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/changelog, ChangeLog, configure.ac, NEWS: preparing for
upcoming release.
* doc/INSTALL_MinGW_MSYS_dev_env.txt: minor doc update.
* resources/profiles/Makefile.am,
resources/profiles/generate_presage_config.sh: added support for
MinGW/MSYS installing into packagedatadir.
2009-10-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_database_dump.sql.gz: updated website in
preparation for upcoming release.
* README: updated documentation.
2009-10-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, resources/profiles/presage.xml.template,
resources/profiles/Makefile.am,
resources/profiles/generate_presage_config.sh,
resources/arpa/createlm, resources/Makefile.am: integrated arpa
format ngram into package and automate build of arpa format ngram
database when CMU-SLM tools are available.
2009-10-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profiles/presage.xml.template,
resources/profiles/generate_presage_config.sh, resources/arpa,
resources/arpa/convcorpus, resources/arpa/xml2txt,
resources/arpa/bnc.arpa, resources/arpa/mergesubcorpus,
resources/arpa/subcorpus, resources/arpa/corpuscats,
resources/arpa/bnc.vocab, resources/arpa/createlm,
resources/arpa/README, resources/arpa/xml2cats: added statistical
language model generated from the British National Corpus with
CMU-SLM toolkit.
2009-09-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/progress.cpp, src/tools/progress.h,
src/lib/core/progress.h, src/lib/core/progress.cpp,
src/tools/Makefile.am, src/lib/core/Makefile.am,
src/tools/text2ngram.cpp: moved progress class to core lib.
* src/lib/plugins/ARPAPlugin.cpp, src/lib/plugins/ARPAPlugin.h,
src/lib/plugins/Makefile.am,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/context_tracker/contextTracker.h,
src/lib/core/logger.h, src/lib/core/pluginRegistry.cpp,
src/lib/Makefile.am, resources/profiles/presage.xml.template:
added new Katz backoff smoothed predictive plugin using ARPA
n-gram format.
* doc/python_binding.txt: minor update
2009-09-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/presageDemoText.cpp: fixed compilation problem on
maemo gregale SDK due to missing constructor/destructor.
* src/tools/gtk/gpresagemate,
src/tools/gtk/gpresagemate/gpresagemate.cpp
src/tools/gtk/gpresagemate/Makefile.am,
src/tools/gtk/gpresagemate.cpp: moved gpresagemate to subdir.
* src/tools/gtk/gprompter,
src/tools/gtk/gprompter/gprompter.cpp,
src/tools/gtk/gprompter/Makefile.am,
src/tools/gtk/Makefile.am :
gprompter GNOME application, initial commit.
* src/tools/gtk/gprompter/scintilla: import of scintilla 2.0.1.
* src/tools/gtk/Makefile.am, configure.ac: moved gpresagemate and
added gprompter.
2009-08-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/newSmoothedNgramPluginTest.*,
src/lib/plugins/smoothedNgramPlugin.cpp: added unit tests for
filter feature for smoothed n-gram predictive plugin.
2009-08-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.7.2: released.
2009-08-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/changelog, website/presage_database_dump.sql.gz,
configure.ac, NEWS: preparing for upcoming release.
2009-08-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/presageDemo.cpp: fixed initialization bug.
* src/lib/presage.cpp, src/lib/presage.h: changed predict()'s
signature to return a multimap instead of a map.
2009-05-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_database_dump.sql.gz: updated to drupal 5.18.
2009-05-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/website/presage_database_dump.sql.gz, src/website/README:
updated to drupal 5.17, updated sf.net logo link, and made direct
links to text files in svn repository.
2009-04-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/dictionaryPluginDriver.cpp,
test/lib/plugins/newSmoothedNgramPluginTest.cpp,
test/lib/plugins/smoothedCountDriver.cpp,
test/lib/plugins/recencyPluginTest.cpp,
test/lib/plugins/dummyPluginDriver.cpp,
test/lib/plugins/pluginsTestFixture.cpp,
test/lib/plugins/dejavuPluginTest.cpp,
test/lib/core/pluginRegistryTest.cpp,
src/lib/plugins/dejavuPlugin.h, src/lib/plugins/plugin.h,
src/lib/plugins/recencyPlugin.cpp,
src/lib/plugins/abbreviationExpansionPlugin.cpp,
src/lib/plugins/dummyPlugin.cpp,
src/lib/plugins/smoothedCountPlugin.cpp,
src/lib/plugins/recencyPlugin.h,
src/lib/plugins/abbreviationExpansionPlugin.h,
src/lib/plugins/dummyPlugin.h,
src/lib/plugins/smoothedCountPlugin.h,
src/lib/plugins/dictionaryPlugin.cpp,
src/lib/plugins/smoothedNgramPlugin.cpp,
src/lib/plugins/dictionaryPlugin.h,
src/lib/plugins/smoothedNgramPlugin.h,
src/lib/plugins/dejavuPlugin.cpp, src/lib/presage.cpp,
src/lib/core/prediction.cpp, src/lib/core/predictorActivator.h,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/context_tracker/contextTracker.h,
src/lib/core/prediction.h, src/lib/core/predictorActivator.cpp,
src/lib/core/dbconnector/databaseConnector.cpp,
src/lib/core/dbconnector/databaseConnector.h, src/lib/presage.h:
added support for predictive plugins filters, database connector
limit clause, and new predict() method that returns map of
<probability,token> pairs order by probability. Many thanks to
Tiziano D'Albis for contributing code for this.
2009-02-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, doc/Makefile.am: added --disable-documentation
configure switch to turn off doxygen documentation generation.
2009-02-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/gtk/gpresagemate.cpp: fixed includes.
* README: added information about optional build deps.
2009-01-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/changelog, configure.ac: changed to next beta revision.
* windows/presage_installer.nsi: added Start menu shortcut for
presage prompter.
2008-11-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* predictorActivator.*, selector.h, profileManager.cpp,
predictor.*: refactored Predictor class to PredictorActivator.
2008-11-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: added menu items to
increase or decrease text size.
2008-11-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/contextTracker.*: fixed handling of utf-8 encoded
text.
* resources/la_coscienza_di_zeno.txt: re-encoded text file in
UTF-8.
2008-11-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/Makefile.am: fixed problem with rebuilding n-gram
resources.
2008-11-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.7.1: released.
* debian/changelog, website/presage_database_dump.sql.gz,
configure.ac, NEWS: preparing for upcoming release.
* test/integration/integration.sh: fixed typo
* resources/la_coscienza_di_zeno.txt: restoring original text encoding.
2008-11-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/recencyPlugin.*,
src/lib/plugins/abbreviationExpansionPlugin.*,
src/lib/plugins/smoothedCountPlugin.*,
src/lib/plugins/smoothedCountPlugin.*,
src/lib/plugins/dictionaryPlugin.*,
src/lib/plugins/smoothedNgramPlugin.*,
src/lib/plugins/dejavuPlugin.*, src/lib/core/pluginRegistry.*:
refactored predictive plugins whereby on initialization plugin
throws exception and predictor just catches it and carries on,
changed behaviour so that missing required variables cause fatal
failure and optional variables generate warning.
2008-10-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/newSmoothedNgramPluginTest.cpp,
test/lib/plugins/pluginsTestMockObjects.cpp,
test/lib/plugins/recencyPluginTest.cpp,
test/lib/plugins/abbreviationExpansionPluginTest.cpp,
test/lib/plugins/smoothedNgramPluginTest.cpp,
test/lib/plugins/smoothedNgramPluginTest.h,
test/lib/core/predictionTest.cpp,
test/lib/core/configurationTest.cpp,
test/lib/core/pluginRegistryTest.cpp,
src/lib/plugins/smoothedCountPlugin.cpp,
src/lib/plugins/recencyPlugin.h,
src/lib/plugins/smoothedNgramPlugin.cpp,
src/lib/core/profileManager.h, src/lib/core/prediction.cpp,
src/lib/core/meritocracyCombiner.cpp, src/lib/core/selector.h,
src/lib/core/contextTracker.h, src/lib/core/prediction.h,
src/lib/core/selector.cpp: fixed GCC compiler warnings.
2008-09-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/smoothedNgramPlugin.*: fixed ngram count
consistency problem triggered by dynamic learning capability of
smoothed n-gram predictive plugin.
2008-09-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* windows/presage_installer.nsi: added finish page to installer.
2008-09-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/presage_prompter.in,
bindings/python/prompter/prompter.py: search for configuration
file in scriptdir/etc and scriptdir/../etc
* windows/setup.py: initial commit of py2exe setup.py.
* src/lib/presage.cpp, src/lib/core/contextTracker.*: completion
validation is no longer case sensitive.
* bindings/python/prompter/prompter.py: switched scintilla to UTF8
encoded text.
2008-09-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* windows/win-buildpackage.sh: created script to automate win
installer build.
* windows/presage_installer.nsi: include dynamically generated
defines file and proper GPL license text.
2008-09-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: preparing for next release iteration.
* windows/*: preliminary Windows NSIS installer files.
2008-09-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/contextTrackerTest.cpp: added test for backspace
handling.
* src/lib/core/predictor.cpp: removed unnecessary includes.
* src/lib/core/pluginRegistry.h: added documentation comments.
2008-09-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.7: released.
* src/lib/core/profileManager.cpp: fixed header inclusion bug on
Solaris.
* website/presage_database_dump.sql.gz, NEWS: preparing for
upcoming release.
* doc/python_binding.txt: fixed documentation bug.
* src/lib/plugins/Makefile.am: fixed implicit link to -lm.
* configure.ac: added disable gpresagemate configure switch.
2008-09-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: check wxPython version
before attempting to use about dialog box.
2008-09-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/presage_prompter.in: added version info.
* bindings/python/prompter/prompter.py: redirected debugging
output, added about dialog box.
2008-09-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: added ability to show/hide
toolbar, toggle autopunctuation functionality, cleaned up minor
quirks here and there, hid margins away.
2008-09-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: added function labels and
ability to select tokens with function keys, cleaned up presage
menu toggling implementation.
* src/tools/gtk/gpresagemate.cpp: added presage gtk application
contributed by John Hills.
* src/tools/gtk, src/tools/gtk/Makefile.am, src/tools/Makefile.am,
src/Makefile.am, configure.ac: integrated gpresagemate application
into build system.
* resources/profiles/presage.xml.template: switched off learning
by default to prevent write access exception when default n-gram
database is not writable.
2008-09-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: reduced size of toolbar
icons.
2008-09-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: removed fix_wrapper sed script to
workaround bug in swig, which is now fixed in latest stable
release.
2008-09-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profiles/presage.xml.template: disable dejavu plugin
by default.
* src/lib/presage.cpp, src/lib/core/selector.*: fixed problem
whereby presage updates were not trigger selector suggested tokens
cache cleaning operation.
2008-09-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/contextTracker.cpp: fixed bug whereby context
change was not updated when update string is empty.
* src/tools/presageDemoText.cpp, src/tools/presageDemo.cpp,
src/lib/presage.cpp, src/lib/presage.h: changed context change
method name.
* bindings/python/prompter/prompter.py: added context change
debugging printouts.
2008-08-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: added prompter toolbar.
* debian/changelog, configure.ac: moved version up to 0.6.4b, will
become 0.6.4 when ready to cut release.
* bindings/python/presage_prompter.in: fixed program name typo.
2008-08-30 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp, src/lib/core/predictor.h: incrementally
increase depth of prediction when prediction size does not match
desired value.
2008-08-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: added prompt me menu item
to presage menu.
2008-08-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: added presage menu and
toggle learn mode item.
2008-08-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: added select all to edit
menu.
2008-08-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: added undo/redo to edit
menu.
2008-08-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py: added edit menu with cut,
copy, paste operations.
2008-08-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/newSmoothedNgramPluginTest.*: added unit tests
for smoothed n-gram plugin learning functionality.
2008-08-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/smoothedNgramPlugin.*: implemented learning for
smoothed n-gram plugin, which is now able to learn "on the fly"
from the context, while it generate predictions.
* resources/profiles/presage.xml.template: added smoothed n-gram
plugin learn config var.
2008-08-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_database_dump.sql.gz: updated presage website.
* src/lib/plugins/dejavuPlugin.*, src/lib/core/configuration.h,
src/lib/core/pluginRegistry.h: added descriptive comments.
2008-08-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/contextTrackerTest.cpp,
src/lib/core/contextTracker.cpp: fixed bug in context change
detection routine whereby multiple separators trigger spurious
context changes.
2008-08-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/dejavuPluginTest.*,
src/lib/plugins/dejavuPlugin.cpp: fixed dejavu plugin test.
2008-08-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp, src/lib/core/contextTracker.*,
src/lib/core/pluginRegistry.*, src/lib/core/predictor.*,
src/lib/core/selector.*: integrated plugin registry into presage.
2008-08-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/contextTracker.*: refactored update() method and
introduced new private methods to facilitate learning in update()
method.
2008-07-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/dejavuPluginTest.*,
test/lib/plugins/pluginsTestMockObjects.*,
test/lib/plugins/recencyPluginTest.*,
test/lib/plugins/pluginsTestFixture.*,
test/lib/core/contextTrackerTest.*,
test/lib/core/profileManagerTest.*, test/lib/core/selectorTest.*:
updated tests for context tracker constructor change, now taking a
plugin registry parameter.
* resources/profiles/presage.xml.template: added new plugin
registry config variables to template xml config file.
2008-07-30 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/pluginRegistry, src/lib/presage,
src/lib/core/contextTracker, src/lib/core/Makefile.am: created
plugin registry class and began hooking it up into presage to
facilitate plugin learning.
* test/lib/core/pluginRegistryTest.*, test/lib/core/Makefile.am:
unit tests for new plugin registry class.
2008-07-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/plugins/dejavuPluginTest.*,
test/lib/plugins/Makefile.am: added dejavu plugin test, still to
fix learning mechanism.
2008-07-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/dejavuPlugin,
resources/profiles/presage.xml.template: dejavu plugin now talks
back.
2008-07-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control, debian/copyright: adding dependencies on
packages required for unit test suite.
2008-07-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/smoothedCountPlugin.cpp: use logger instead of
standard out.
* src/lib/plugins/dejavuPlugin.cpp: initial sketch of
implementation.
* src/lib/core/predictor.cpp: invoke learn() method.
* resources/profiles/presage.xml.template: added dejavu plugin
specific configuration.
2008-07-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/presage_python_demo.in,
bindings/python/prompter/prompter.py: removed references to
soothsayer.
2008-07-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* *.h, *.cpp, *.am, *: changed license notices to update project name to
presage, changed header include guard.
* src/lib/plugins/dejavuPlugin.h,
src/lib/plugins/dejavuPlugin.cpp: commited experimental deja-vu
plugin.
2008-07-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/integration/integration.sh, test/lib/simulator/Makefile.am,
test/lib/plugins/Makefile.am,
test/lib/core/dbconnector/Makefile.am, test/lib/core/Makefile.am,
src/tools/soothsayerSimulator.cpp, src/tools/presageDemoText.cpp,
src/tools/soothsayerDemo.cpp, src/tools/presageSimulator.cpp,
src/tools/Makefile.am, src/tools/soothsayerDemoText.cpp,
src/tools/presageDemo.cpp, src/lib/simulator/simulator.cpp,
src/lib/simulator/simulator.h, src/lib/soothsayer.cpp,
src/lib/soothsayerException.h, src/lib/soothsayer.h,
src/lib/presage.cpp, src/lib/core/profile.h,
src/lib/core/soothsayerException.cpp, src/lib/core/suggestion.h,
src/lib/core/presageException.cpp, src/lib/core/configuration.h,
src/lib/core/dbconnector/sqliteDatabaseConnector.h,
src/lib/core/Makefile.am, src/lib/Makefile.am,
src/lib/presageException.h, src/lib/presage.h,
bindings/python/presage_python_demo.in,
bindings/python/presage_prompter.in,
bindings/python/prompter/prompter.py, bindings/python/Makefile.am,
bindings/python/soothsayer_python_demo.in,
bindings/python/setup.py.in,
bindings/python/soothsayer_prompter.in, bindings/soothsayer.i,
bindings/presage.i, utils/modify_license_notice.pl, configure.ac,
Makefile.am: initial project name change from soothsayer to
presage.
2008-07-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/soothsayer_database_dump.sql.gz: more website updates.
2008-07-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/soothsayer_database_dump.sql.gz: preparing website
database for upcoming soothsayer project name change.
2008-07-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test\integration\integration.sh: fixed problem in distcheck
target.
2008-06-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test\integration\integration.sh: fix integration test failure on
Windows/MinGW/MSYS platform.
* bindings\python\fix_wrapper.sed: make workaround fix for SWIG
bug on Windows a bit more robust to changes in the generated
wrapper.
* resources\profiles\generate_soothsayer_config.sh: use cygpath
program to obtain properly formatted path instead of using mount |
grep | awk | tr hack.
2008-06-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/soothsayer_database_dump.sql.gz: minor update to home
page.
2008-06-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter/prompter.py,
bindings/python/soothsayer_python_demo.in,
bindings/python/soothsayer_prompter.in: handle module import
errors gracefully.
2008-06-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: fixed distcheck.
2008-06-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/lib/core/dbconnector/sqliteDatabaseConnectorTest.cpp,
src/tools/soothsayerSimulator.cpp, src/tools/soothsayerDemo.cpp,
src/tools/soothsayerDemoText.cpp, src/tools/text2ngram.cpp,
src/lib/plugins/plugin.cpp,
src/lib/plugins/smoothedCountPlugin.cpp,
src/lib/plugins/smoothedNgramPlugin.cpp, src/lib/core/utility.cpp,
src/lib/core/utility.h: ported soothsayer to GCC 4.3, which has
stricter and cleaner header dependencies, causing required headers
to be explicitly included.
* bindings/python/Makefile.am: changing man page generation
dependency from generated file to source file.
2008-06-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped release version up to 0.6.3.
* NEWS, website/soothsayer_database_dump.sql.gz: announcing 0.6.3
release.
2008-06-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/integration/integration.sh, src/tools/Makefile.am,
doc/getting_started.txt: changed binaries names from capitalized
style to underscore separated style (i.e. from soothsayerSimulator
to soothsayer_simulator).
2008-05-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: automatically generate
soothsayer_prompter demo man page.
* debian/python-soothsayer.install: included prompter man page in
debian package.
* bindings/python/setup.py.in, bindings/python/prompter.in,
bindings/python/prompter, bindings/python/prompter/prompter.py,
bindings/python/prompter/__init__.py: split prompter demo program
in a front-end script and a back-end package.
* bindings/python/soothsayer_prompter.in: renamed prompter
front-end to soothsayer_prompter. * configure.ac:
2008-05-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: generate man page from python
script.
* debian/python-soothsayer.install: added man page to debian
package.
* configure.ac, bindings/python/soothsayer_python_demo.in,
bindings/python/prompter.in: process python scripts with autoconf
to insert versioning and maintainer information.
* bindings/python/setup.py.in,
bindings/python/soothsayer_python_demo, bindings/python/prompter:
appended .in to python programs finenames to allow autoconf
processing.
2008-05-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/python-soothsayer.install, setup.py.in,
bindings/python/prompter.py, bindings/python/Makefile.am,
bindings/python/setup.py.in,
bindings/python/soothsayer_python_demo.py: removed .py suffix from
python demo programs.
2008-05-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/python-soothsayer.install: fixed script-not-executable
warnings for python scripts in python-soothsayer package.
2008-05-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* setup.py.in, bindings/python/Makefile.am,
bindings/python/setup.py.in: distributing
soothsayer_python_demo.py and prompter.py demo programs through
python distutils.
* bindings/python/Makefile.am,
bindings/python/soothsayer_python_demo.py,
bindings/python/runme.py: renamed runme.py.
2008-05-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control: added swig to build dependencies.
* configure.ac: print summary of predictive plugins to build.
2008-05-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control, debian/python-soothsayer.install: fixed few
python binding debian package problems, soothsayer python binding
package is now working and usable.
2008-05-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control, debian/rules: added soothsayer-python package.
* setup.py.in, configure.ac: added distutils distribution file.
* bindings/python/Makefile.am, bindings/python/setup.py.in:
cleaning using distutils, maintainer field.
2008-05-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: fixed bug, not honouring DESTDIR.
* debian/copyright: using new proposed machine-interpretable
copyright and license format.
* debian/soothsayer-doc.docs: updated location of Cygwin and
MinGW/MSYS installation instructions.
* resources/la_coscienza_di_zeno.txt: re-encoded text file in
UTF-8.
* resources/Makefile.am, resources/i_malavoglia.txt: removed text
file and switched to other italian text resources for sample
statistical database generation.
2008-05-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/soothsayer.cpp, src/lib/soothsayer.h: simplified
interface, removed redundant methods that take a char type. Now
using only methods taking std::string types. Removal of methods
taking char has downside of breaking ABI, but has the advantage of
making future unicode support more straightforward (plus there are
no third party applications currently depending on soothsayer that
I am aware of).
* src/lib/simulator/simulator.cpp, src/tools/soothsayerDemo.cpp:
adapted to interface change.
* doc/INSTALL_MinGW_MSYS_dev_env.txt: minor doc updates.
2008-05-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped release version up to 0.6.2.
* NEWS, website/soothsayer_database_dump.sql.gz: announcing 0.6.2
release.
* src/lib/core/contextTracker.cpp: fixed logging trace levels.
* bindings/python/prompter.py: added partial UTF-8 encoded unicode
text support, added start-up informational message.
* test/lib/plugins/smoothedNgramPluginTest.cpp: fixed test failure.
* bindings/python/Makefile.am: added distribution and byte-compilation
of prompter.py.
2008-05-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/i_malavoglia.txt: converted training text to utf-8
encoding.
* src/lib/plugins/smoothedNgramPlugin.cpp,
src/lib/core/dbconnector/sqliteDatabaseConnector.cpp: added log
traces.
* Makefile.am: fix for hardcoded unix style path problem affecting
MinGW/MSYS build, paths are now converted to native win32 style
thanks to some shell programming hackery.
* src/lib/core/profileManager.cpp: fixed core when attempting to
retrieve non-existant environment variable.
* bindings/python/fix_wrapper.sed: added swig wrapper fixes, line
numbers seems to change across versions.
2008-05-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* README, doc/INSTALL_MinGW_MSYS_dev_env.txt,
doc/INSTALL_Cygwin_dev_env.txt: updated documentation and
instructions.
* src/lib/plugins/recencyPlugin: added comments and description.
* website/soothsayer_database_dump.sql.gz: adding recency plugin
information to website.
2008-05-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/dictionaryPlugin: refactored and cleaned up
plugin.
* resources/profiles/soothsayer.xml.template: added dictionary
plugin config variable.
2008-05-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/recencyPlugin: added const configuration
variable keys.
2008-05-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/profile.h: made ProfileException inherit from
SoothsayerException.
2008-05-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/Makefile.am: distribute header soothsayerException.h
* bindings/python/Makefile.am, bindings/soothsayer.i: added
soothsayer exception to SWIG interface file.
* bindings/python/runme.py: wrapped soothsayer calls in try:
except: block.
2008-05-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: switched on building python binding by default
(can be turned off with --disable-python-binding option).
* src/lib/core/profileManager: fixed chicken and egg problem
whereby logging was being done before logger level could be read
from configuration profile. Solution caches logging statements and
flushes them out when configuration becomes available.
* resources/profiles/soothsayer.xml.template: added logger
configuration variable.
2008-05-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/soothsayerException.h,
src/lib/core/soothsayerException.cpp: refactored soothsayer
exception hierarchy, created new soothsayer exception base class.
* src/lib/soothsayer.h: added new SoothsayerException base
exception class to soothsayer interface.
* src/lib/core/configuration.h,
src/lib/core/dbconnector/sqliteDatabaseConnector.h: modified
existing exception classes to inherit from soothsayer base
exception class.
* src/lib/core/suggestion.cpp: added probability setting
validation, exception is raised for out-of-range probability
values.
* src/lib/core/Makefile.am, test/lib/plugins/Makefile.am,
test/lib/core/dbconnector/Makefile.am: hooked new soothsayer
exception class into build system.
2008-04-30 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter.py: implemented autopunctuation
feature, enabled by default. Show prediction list on startup.
2008-04-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/MinGW-MSYS_devenv.txt: updated instructions to build in
MinGW/MSYS.
* INSTALL_cygwin_dev_env.txt: fixed typo in CygWin build
instructions.
2008-04-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter.py: fixed problem showing prediction
list after user list selection event (thanks to Robin Dunn for
providing the solution).
2008-04-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/recencyPlugin: fixed bug in cutoff threshold.
* test/lib/plugins/recencyPluginTest: added more unit tests.
* test/lib/plugins/smoothedNgramPluginTest.cpp: turned off verbose
test output.
2008-04-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/recencyPlugin.cpp: added code to read values
from config variables.
* src/lib/plugins/smoothedNgramPlugin.cpp: fixed incorrect and
unnecessary initialization of data member.
* src/lib/core/variable: added constructor taking C style string
as parameter.
* resources/profiles/soothsayer.xml.template: added recency plugin
configuration.
* src/lib/core/profile.cpp: removed debug printout statement.
2008-04-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/combiner, src/lib/core/meritocracyCombiner,
src/lib/core/suggestion: added filter method to remove duplicate
suggestions from prediction and enabled it in meritocracy
combiner.
* test/lib/core/combinerTest, test/lib/core/Makefile.am: added
duplicate suggestions filter test.
2008-04-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/rules: enabled unit tests in debian package build.
* src/lib/plugins/recencyPlugin.cpp: fixed compilation warning.
2008-04-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/plugins/smoothedNgramPlugin.cpp: fixed plugin
description typo.
* src/lib/plugins/recencyPlugin.h,
src/lib/plugins/recencyPlugin.cpp, src/lib/core/predictor.cpp,
src/lib/Makefile.am, src/lib/plugins/Makefile.am: added new
recency statistical predictive plugin.
* test/lib/plugins/Makefile.am,
test/lib/plugins/recencyPluginTest.cpp,
test/lib/plugins/recencyPluginTest.h: added recency plugin tests.
2008-04-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter.py: minor refactor.
2008-04-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter.py: added more menu items, added grey
out of unavailable menu items.
2008-04-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter.py: added file open functionality.
2008-04-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am,
resources/profiles/generate_soothsayer_config.sh,
resources/profiles/Makefile.am: added a few escaped backslashes
and swithed to shell built-in case switches for pattern matching.
2008-04-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: fixed python binding installation
on MinGW/MSYS.
* resources/profiles/Makefile.am: fixed config file generation on
MinGW/MSYS.
2008-04-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: fixing python distutils install
target by using clever hack to get native Win32 path in MSYS.
* bindings/python/prompter.py: fixed problems with autocompletion,
which now almost works for simple cases.
2008-04-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am: added dependency on soothsayer.h
interface.
2008-04-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter.py: additional work to fix bugs with
autocompletion and keeping soothsayer in sync with autocompletion
updates.
2008-04-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/profileManager.cpp, bindings/python/Makefile.am,
resources/profiles/generate_soothsayer_config.sh: adding support
for MinGW/MSYS.
2008-04-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: added autoconf check for pwd.h.
* debian/changelog: update changelog to current soothsayer release.
2008-04-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter.py: improved autocompletion
functionality of prompter demo application (still very buggy).
* src/lib/soothsayer: added prefix() method to obtain current
prediction prefix.
2008-04-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/prompter.py: initial commit of prompter
graphical user interface demonstration program.
2008-04-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped release version up to 0.6.1.
* NEWS, website/soothsayer_database_dump.sql.gz: announcing 0.6.1
release.
* bindings/soothsayer.i: update copyright and license notice.
* bindings/Makefile.am: added soothsayer.i to distribution.
* bindings/python/fix_wrapper.sed: added to distribution.
2008-04-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: added configuration report for man pages.
* src/tools/Makefile.am: only distribute manpages if generated.
* debian/control: added build dependency on help2man.
2008-04-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/fix_wrapper.sed: fixed sed script to workaround
swig bug.
* INSTALL_cygwin_dev_env.txt: updated cygwin developer environment
installation instructions.
2008-04-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: fixed autoconf checks for python.
2008-03-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/Makefile.am: added -version-info to libsoothsayer.
* src/tools/Makefile.am: removed text2ngram unnecessary linking
with sqlite library.
2008-03-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website: added link to ChangeLog in news section.
2008-03-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* changes: restructured source and test directory layout to better
reflect logical structure.
2008-03-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/Makefile.am: fixed minor issue with automake install hook.
2008-03-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/soothsayerDemoText: documented -s flag.
* src/soothsayerDemo: added -s suggestions functionality.
* Makefile.am: removed linda check, linda is obsolete.
2008-03-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/soothsayer: added config() to API.
* src/soothsayerDemoText: added --suggestions flag to set number
of suggestions.
* debian/soothsayer-doc.doc-base: update doc-base section.
2008-03-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/utility: understand true and false too.
* src/core/selector: no longer cache selector variables, query
them from selector.
* src/core/selectorTest, src/core/profileManagerTest: changed
tests to use new selector api.
2008-03-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/sqliteDatabaseConnector: fixed bug when attempting to
free() error message string allocated by sqlite3_exec() call: use
sqlite3_free() instead.
2008-03-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/copyright: update copyright notice.
* debian/changelog: closes Intent To Package bug number.
* website: updated website to Drupal 5.7, updated instructions.
2008-03-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian/control: updated description fields.
2008-02-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tinyxml/Makefile.am: no longer bundle tinyxml/doc files in
distribution package.
* doc/Makefile.am, doc/options.txt: removed outdated file, removed
references to it from Makefile.am.
2008-02-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/plugins/Makefile.am: no longer build
SmoothedUniBiTrigramPlugin.
* src/Makefile.am, src/core/predictor: removed references to
SmoothedUniBiTrigramPlugin.
* test/plugins/Makefile.am, test/plugins/smoothedUniBiTrigramTest:
removed tests.
2008-02-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/plugins/dictionaryPluginDriver.cpp
test/plugins/pluginsTestMockObjects.cpp
test/plugins/smoothedCountDriver.cpp
test/plugins/abbreviationExpansionPluginTest.cpp
test/plugins/abbreviationExpansionPluginTest.h
test/plugins/smoothedUniBiTrigramPluginTest.cpp
test/plugins/smoothedUniBiTrigramPluginTest.h
test/plugins/dummyPluginDriver.cpp
test/plugins/smoothedNgramPluginTest.cpp
test/plugins/Makefile.am
test/plugins/pluginsTestFixture.cpp
test/plugins/smoothedNgramPluginTest.h
test/plugins/pluginsTestFixture.h
test/core/profileTest.cpp
test/core/profileManagerTest.h
test/core/contextTrackerTest.cpp
test/core/contextTrackerTest.h
test/core/profileTest.h
test/core/selectorTest.cpp
test/core/selectorTest.h
test/core/profileManagerTest.cpp
src/plugins/plugin.cpp
src/plugins/plugin.h
src/plugins/abbreviationExpansionPlugin.cpp
src/plugins/smoothedCountPlugin.cpp
src/plugins/dummyPlugin.cpp
src/plugins/smoothedUniBiTrigramPlugin.cpp
src/plugins/abbreviationExpansionPlugin.h
src/plugins/smoothedCountPlugin.h
src/plugins/dummyPlugin.h
src/plugins/smoothedUniBiTrigramPlugin.h
src/plugins/dictionaryPlugin.cpp
src/plugins/smoothedNgramPlugin.cpp
src/plugins/Makefile.am
src/plugins/dictionaryPlugin.h
src/plugins/smoothedNgramPlugin.h
src/soothsayer.cpp
src/soothsayer.h
src/core/contextTracker.cpp
src/core/profile.h
src/core/selector.h
src/core/profile.cpp
src/core/predictor.h
src/core/contextTracker.h
src/core/configuration.h
src/core/selector.cpp
src/core/predictor.cpp
src/Makefile.am : ported components to use Configuration class instead of Profile
class to query for variables' values and they should not cache
those values.
2008-02-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/setup.py.in, bindings/python/runme.py: updated
license notice.
2008-02-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: changed notice message when dot is not found.
* doc/Doxygen.in: enabled generation of caller graphs.
2008-02-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* sources: updated license notices in *.h and *.cpp source files.
* Makefile.am: updated license notices in Makefile.am files.
* configure.ac: updated license notice.
* utils/modify_license_notice.pl: perl script to replace multiline
license notices in source files.
* resources/profiles/generate_soothsayer_config.sh,
test/integration/integration.sh: updated license notices.
2008-02-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/configuration: config class is now a full featured
class instead of a typedef'ed map.
* src/core/Makefile.am: added new Configuration class to library.
* src/core/utility: added strtoupper function.
* src/core/profile: using new Configuration class.
* test/core/configurationTest: configuration unit tests.
* test/core/Makefile.am: enabled new unit tests.
2008-02-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/Doxygen.in, configure.ac: added configure check for
Graphviz's dot tool to control documentation diagram generation.
2008-02-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/variable: fixed bug causing addition of empty config
variable part when extracting variable from string.
* test/code/variableTest: added unit tests for Variable class.
* debian/watch: added watch file.
2008-02-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/contextTracker, src/core/selector, src/core/predictor:
changed to using new style of variable class.
* src/core/profile: using Variable class instead of vector of
strings.
* src/core/variable: removed debugging printouts.
* src/soothsayerDemoText: began implementing support for option to
specify number of desired suggestions with each prediction.
* src/soothsayer: update documentation comments.
2008-02-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/soothsayer: renamed history() method to context().
* src/soothsayerDemo, src/soothsayerDemoText: cleaned up, added
comments and documentation to demo programs.
2008-02-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/variable: added initial implementation of Variable
class to replace typedef'ed vector<string> variable definition.
* src/core/profile, src/core/Makefile.am: adapted profile object
to use new Variable class.
* test/core/profileTest,
test/plugins/pluginsTestMockObjects,
test/plugins/abbreviationExpansionPluginTest,
test/plugins/smoothedUniBiTrigramPluginTest,
test/plugins/smoothedNgramPluginTest,
test/plugins/Makefile.am: adapted tests to new Variable class.
2008-01-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/plugins/smoothedNgramPlugin: cleaned up debugging and
logging statements.
* src/core/logger: added method that returns whether logger will
log or not, useful to replace DEBUG #ifdef's.
2008-01-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/profile, test/core/profileTest: added tests reading
non-existing variables, border conditions.
* src/core/profileManager, doc/getting_started.txt: update
documentation on soothsayer configuration files used.
2008-01-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/profile: cache configuration inside Profile object.
2008-01-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian: added files for soothsayer-doc package and registered
documentation with doc-base.
* Makefile.am: added targets to build, check, and clean debian
packages.
* debian/control: changes to make package "unstable lintian
clean", edited descriptions.
2008-01-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/profileManager: look for default profile in user's home
directory first and then system config directory /etc/soothsayer.
* test/core/profileManagerTest: adapted test to take changes to
user specified profile into account.
* test/integration/integration.sh: make simulator use specified
configuration, since configuration file in current directory is no
longer used by default.
2008-01-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* compiler-warnings: fixed all compiler warning while building
`make all' and `make check'.
* debian: fixed warning caused by no newline at end of debian
packaging files.
* help2man: generated man pages were erroneously distclean'ed, and
not included in the dist tarball when help2man executable was not
found: fixed now.
2008-01-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/Makefile.am: install generated statistical database
resources in soothsayer specific var lib directory.
* resources/profiles/Makefile.am: generate config file with
updated resources location.
* debian: changed build depends to get package to build in
pbuilder chroot.
2008-01-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* man: added --name option to help2man man pages generation.
2007-12-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian: added configuration file soothsayer.xml to
libsoothsayer0 debian package.
* src/core/profileManager: changed default value for active
predictive plugins to null.
* man: added automatic generation of man pages using help2man for
text2ngram, soothsayerDemo, soothsayerDemoText, and
soothsayerSimulator executables.
2007-12-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian: changes to debian files to fix various lintian warnings
and errors, added soothsayer-data package, fixed dev package name.
2007-12-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian: switched to cdbs, cleaned up and fixed installations
into separate packages, removed unnecessary files from debian
directory.
2007-12-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* debian: initial stab at creating a soothsayer debian package.
2007-12-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* logger, soothsayer.xml.template: changed default logging level
to ERROR.
* abbreviationExpansionPlugin: added plugin logger initialization.
* smoothedNgramPlugin: fixed incorrect DatabaseConnector logger
level initialization.
* databaseConnector, sqliteDatabaseConnector: added constructor
taking logger level.
2007-12-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* databaseConnector, sqliteDatabaseConnector: now use new logger.
* smoothedNgramPlugin: read database connector logger level
configuration variable and init logger.
* contextTracker, predictor: have an instance of logger, instead
of pointer to logger.
2007-12-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* plugin.h, plugins: reverted to const predict method now
that logger has been fixed.
2007-12-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* logger.h: resolved problem whereby a const method of a class
using its own member logger would not compile due to disregarding
const qualifier.
2007-11-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* Moved DatabaseConnector to new dbconnector directory within core.
* Plugin base class uses new logger, started cleaning up
SmoothedNgramPlugin logging, fixed typo in abbreviations expansion
database.
2007-11-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* ProfileManager uses new logger.
2007-11-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* Fix tools tests, should now work with every sqlite/sqlite3
command line executable version.
* Selector now uses the new logger.
2007-11-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* Logger logs its name at beginning of each log line.
* ContextTracker uses new logger and endl line endings.
2007-11-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* More logger work. Getting to a stage where it is actually
providing some functionality.
2007-11-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* Minor doc update.
2007-11-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* Adding logger levels. More logger changes, still not
complete. Added logger test files.
2007-11-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* Initial implementation of Logger, more features to be added.
2007-09-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, doc/Doxyfile.in, Makefile.am: integrated Doxygen
documentation generation into autotools build system.
* configure.ac: added configuration information notification.
2007-09-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/integration.sh: modified integration test training corpus
and control corpus generation.
* configure.ac: warn if requested python binding build cannot be
carried out.
2007-09-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/plugins/plugins: modified Plugin::predict() method signature
to have parameter indicating desired prediction size.
* test/integration: added larval integration test suite.
2007-09-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/soothsayerDemo.cpp: display initial prediction before user
enter first character.
* src/core/profileManager.cpp: turn off debugging.
2007-09-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped version up to 0.6.
* Doxyfile: bumped version up to 0.6.
* NEWS, website/soothsayer_database_dump.sql.gz: added 0.6 release
news.
2007-09-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python, bindings/python/Makefile.am,
bindings/python/setup.py.in, bindings/Makefile.am, configure.ac:
added support for building and installing Python binding based on
Python distutils.
2007-09-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* Makefile.am: Ensure local m4 macros are included during
autoreconf and automatic aclocal.m4 remaking
2007-08-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/Makefile.am: added -no-undefined linker flag to ensure
that shared libraries are built on Windows targets.
* bindings/Makefile.am: added -no-undefined -avoid-version
linker flags to python dynamically loaded extension module.
2007-08-30 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: added --enable-python-binding configure flag.
* bindings/Makefile.am, bindings/runme.py, configure.ac,
Makefile.am: added support for building python binding module.
* m4, m4/swig_enable_cxx.m4, m4/ac_python_devel.m4,
m4/swig_multi_module_support.m4, m4/swig_python.m4,
m4/ac_pkg_swig.m4: added autoconf macros to support SWIG and
python binding builds.
* bootstrap: changed bootstrap to use SWIG macros.
2007-08-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, src/tools/Makefile.am: changed SQLite link flag.
2007-08-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings, bindings/soothsayer.i, bindings/Makefile.am,
bindings/runme.py, configure.ac, Makefile.am: added initial
support for generating a python binding for soothsayer. Not fully
integrated into build system yet.
2007-08-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/databaseConnector: minor fix to get soothsayer to
build on Solaris 10 with SUN Studio 10 and 11. Soothsayer builds
on Solaris!
* src/plugins/smoothedNgramPlugin,
src/plugins/smoothedCountPlugin,
src/plugins/smoothedUniBiTrigramPlugin: cleaned up header files
inclusions.
2007-08-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: checking for curses instead of ncurses header and
library to increase portability.
* src/Makefile.am: made compilation of soothsayerDemo conditional
on curses autoconf check.
2007-08-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/core/profileManagerTest: fixed compilation problem on
Windows+CygWin.
* src/tools/text2ngram: minor correction to --help output.
2007-08-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/soothsayerSimulator, src/soothsayerDemo,
src/soothsayerDemoText: implemented -c flag to specify custom XML
configuration file.
* src/soothsayer, src/simulator/simulator: added constructor
taking custom configuration file as a parameter.
* src/core/profileManager: extended profile loading from current
directory or absolute path.
* test/core/profileManagerTest: added unit tests for loading
profiles from current dir or using absolute filename.
2007-08-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/databaseConnector: fixed problem caused by SQLite
2.x. not supporting IF NOT EXISTS clause in a CREATE TABLE
statement.
2007-08-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped version up to 0.5.
* Doxyfile: bumped version up to 0.5.
* website/soothsayer_database_dump.sql.gz: added 0.5 release news.
2007-08-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/plugins/smoothedNgramPlugin: performance enhancement,
candidates generation no longer retrieves unnecessary n-gram like
counts from database.
* src/tools/databaseConnector: extended getNgramLikeTable to
produce a LIMIT clause in the SQL query.
* test/tools/dataConnectorTest: added test for new limit
functionality.
* src/simulator/simulator, src/soothsayerSimulator: added silent
flag to reduce simulation verbosity.
2007-08-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/plugins/smoothedNgram: use highest n-gram to generate
initial completion candidates, fall back on lower n-grams if
initial completion set is smaller than required.
* src/tools/text2ngram: implemented -a append flag for sqlite file
format output.
* src/tools/databaseConnector: creating table if table does not
exit only.
2007-08-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/simulator/simulator.cpp: fixed bug in simulator which caused
the reported keystroke reduction rate to be much lower than the
actual rate. The prediction success rate is actually much higher
than previously reported, which is great news.
* src/soothsayerSimulator.cpp: added flag to enable case
insensitive simulation.
2007-08-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/plugins/smoothedNgram: added initial implementation of
generalized smoothed n-gram probabilistic predictive plugin.
* src/plugins/Makefile.am: added support for smoothed n-gram
predictive plugin.
* src/core/predictor.cpp: added support for smoothed n-gram
predictive plugin.
* src/Makefile.am: added support for smoothed n-gram predictive
plugin.
* resources/profiles/soothsayer.xml.template: added configuration
section for smoothed n-gram predictive plugin.
2007-08-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped version up to 0.4.
* Doxyfile: bumped version up to 0.4.
* website/soothsayer_database_dump.sql.gz: added 0.4 release news.
2007-08-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/plugins/smoothedUniBiTrigramPluginTest: remove duplicate
code, test now inherits common code from PluginsTestFixture class
and reuses code from PluginsTestMockObjects.
* documentation: improved, fixed, added doxygen documentation to
various source files.
* src/soothsayer.h: documented soothsayer interface and added
mainpage to doxygen generated documentation.
2007-08-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/plugins/abbreviationExpansionPluginTest: fixed problem with
running test with distchek target (VPATH build).
* src/soothsayer.h: documented soothsayer interface for doxygen
documentation generator.
* Doxyfile: modified EXAMPLE_PATH to include getting started guide
2007-08-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/plugins/abbreviationExpansionPlugin: implemented
abbreviation expansion predictive plugin.
* src/plugins/Makefile.am: added abbreviation expansion plugin
rules.
* src/soothsayer: fixed complete() method to handle normal
completions as well as erasing completions (i.e. such as those
generated by abbreviation expansion predictive plugin).
* src/core/historyTracker: enabled backspace control character
handling, added logging printouts.
* src/core/charsets.h: fixed backspace character code.
* src/Makefile.am: added libAbbreviationExpansionPlugin to
libsoothsayer.
* test/plugins/smoothedUniBiTrigramPluginTest: moved mock objects
definition out.
* test/plugins/pluginsTestMockObjects: plugins tests mock objects.
* test/plugins/abbreviationExpansionPluginTest: implemented
abbreviation expansion predictive plugins tests.
* test/plugins/Makefile.am: added abbreviation expansion
predictive plugins tests.
* test/plugins/pluginsTestFixture: base class for plugins test
fixtures, provides some functionality useful to plugins tests.
* resources/abbreviations_it.txt: example abbreviation expansion
Italian resource file.
* resources/abbreviations_en.txt: example abbreviation expansion
English resource file.
* resources/profiles/soothsayer.xml.template: enabled abbreviation
expansion plugin by default.
* resources/Makefile.am: addding abbreviations resource files to
distribution.
* doc/getting_started.txt: minor header changes.
2007-08-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/historyTracker: conditionally use std::string or
std::stringstream to track past and future stream.
2007-08-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tinyxml/Makefile.am: prevented inclusion of .svn directory
and its contents in tinyxml/docs directory.
2007-07-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped version up to 0.3.
* Doxyfile: bumped version up to 0.3.
* website/soothsayer_database_dump.sql.gz: improved development
pages, added 0.3 release news.
* website/soothie_theme.tar.gz: minor style sheet updates.
2007-07-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/selector: removed context change detection from
Selector and moved it to HistoryTracker (should be called
ContextTracker).
* src/core/historyTracker: moved context change detection logic
from Selector to HistoryTracker and fixed bug.
* test/core/historyTrackerTest: added context change tests.
* src/soothsayer: added context change method.
* src/soothsayerDemo: added context change visual cues.
* src/soothsayerDemoText: added context change visual cues.
2007-07-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/Makefile.am: added HEADERS primary to install soothsayer.h
* src/soothsayer.h: made soohsayer.h independent from other
internal headers
* src/simulator/simulator.cpp, src/soothsayer.cpp,
src/soothsayerDemo.cpp, src/soothsayerDemoText.cpp:
added required headers to account for changes to soothsayer.h
2007-07-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/predictor.h, src/core/predictor.cpp: fixed memory leak.
* src/core/utility.cpp: fixed free memory mismatch.
2007-07-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/plugins/smoothedUniBiTrigramPlugin.cpp,
src/plugins/smoothedUniBiTrigramPlugin.h,
src/plugins/dummyPlugin.h, src/plugins/dummyPlugin.cpp,
src/plugins/smoothedCountPlugin.h,
src/plugins/smoothedCountPlugin.cpp,
src/plugins/dictionaryPlugin.h, src/plugins/dictionaryPlugin.cpp:
removed create() and destroy() extern "C" functions.
* src/Makefile.am, src/plugins/Makefile.am: rearranged
libplugin.la usage.
* src/core/profileManager.h, src/core/profileManager.cpp: added
PLUGINS configuration variable to Predictor section.
* src/core/predictor.h, src/core/predictor.cpp: added support for
controlling active predictive plugins through configuration.
* resources/profiles/soothsayer.xml.template: added PLUGINS
configuration variable to Predictor section.
2007-07-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/profileManager, test/core/profileManagerTest: changed
COMBINER_METHOD to COMBINER_POLICY.
* src/core/predictor: combiner policy change.
2007-07-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website: revamped website design, created new drupal theme based
on Zen drupal theme, created new soothsayer logo.
2007-07-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/profileManager.cpp: fixed memory leak in
ProfileManager, xml profile document was not being delete on
ProfileManager destructor.
* src/core/utility.cpp: fixed memory leaks in utility functions.
2007-07-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/plugins/smoothedUniBiTrigramPluginTest.cpp,
test/plugins/dictionaryPluginDriver.cpp,
test/plugins/smoothedUniBiTrigramPluginTest.h,
test/plugins/dummyPluginDriver.cpp,
test/plugins/smoothedCountDriver.cpp,
test/core/profileManagerTest.h, test/core/historyTrackerTest.cpp,
test/core/selectorTest.cpp, test/core/historyTrackerTest.h,
test/core/selectorTest.h, test/core/profileManagerTest.cpp,
ChangeLog, src/plugins/plugin.cpp,
src/plugins/smoothedUniBiTrigramPlugin.cpp,
src/plugins/dummyPlugin.h, src/plugins/smoothedCountPlugin.h,
src/plugins/plugin.h, src/plugins/smoothedUniBiTrigramPlugin.h,
src/plugins/dictionaryPlugin.cpp, src/plugins/dictionaryPlugin.h,
src/plugins/dummyPlugin.cpp, src/plugins/smoothedCountPlugin.cpp,
src/soothsayer.cpp, src/soothsayer.h src/core/profileManager.h,
src/core/predictor.h, src/core/profile.cpp src/core/utility.cpp,
src/core/combiner.h, src/core/utility.h
src/core/historyTracker.cpp, src/core/selector.cpp,
src/core/historyTracker.h, src/core/selector.h,
src/core/predictor.cpp, src/core/profileManager.cpp, TODO:
configuration pulling refactor. Plugins and components now query a
Profile object, created by ProfileManager, and pull the values of
the configuration variables they need from it, rather than having
ProfileManager push the configuration out towards plugins and
components.
2007-07-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/combiner: modified interface to take std::vector of
predictions to be combined.
* src/core/meritocracyCombiner: implemented meritocracy combiner.
* src/core/Makefile.am: added meritocracyCombiner object to
libcore convenience library.
* src/core/suggestion: added overloaded not equal to operator.
* src/core/prediction: added overloaded comparison operator.
* test/core/suggestion: added tests.
* test/core/meritocracyCombiner: created unit tests.
* test/core/Makefile.am: added meritocracyCombiner object to
test runner.
2007-07-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped version up to 0.2, updated website.
2007-07-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/soothsayerDemo: improved previous predictions drawing logic,
predictions windows are only drawn if they fit on screen.
2007-07-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/soothsayerSimulator: modified help and version option
handling.
* src/soothsayerDemo: modified help and version option handling.
* src/soothsayerDemoText: modified help and version option
handling.
* src/simulator/simulator: increase results verbosity.
2007-06-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* sqlite3: added support for sqlite3. sqlite3 will be used in
preference of sqlite2 is both are installed.
2007-06-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profiles/Makefile.am: fixed problem regenerating
configuration file from template. Configuration file was not
rebuilt after package reconfiguration.
2007-06-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/sqliteDatabaseConnector: fixed exceptions raised when
sqlite returns error conditions.
* test/tools/sqliteDatabaseConnector: added assertions to check
expected exceptions are thrown.
2007-06-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/plugins/smoothedUniBiTrigramPluginTest: added plugin unit
tests.
* src/plugins/smoothedUniBiTrigramPluginTest: fixed bug exposed by
new plugin unit tests.
2007-06-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/suggestion, src/core/prediction: minor change to
interface. Adapted unit tests accordingly.
2007-06-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* Makefile.am: minor changes and cleanups.
2007-06-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/databaseConnector: added method to compute the sum of
all unigrams counts.
* src/tools/smoothedUniBiTrigramPlugin: using DatabaseConnector
interface instead of derived SqliteDatabaseConnector interface.
2007-06-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/resources/profiles: added script to generate soothsayer.xml
config file from template and determine cygwin root directory,
when on cygwin, to work around sqlite problem with absolute
database paths on Windows+Cygwin
2007-06-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/Makefile.am, src/plugins/Makefile.am: cleaned up
dependencies of convenience libraries.
2007-06-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: added checks for ncurses.
2007-05-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profiles/soothsayer.xml: removed superflous bits and
added element descriptions.
2007-05-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/historyTracker: fixed bug in getToken(index), incorrect
token was returned when index pointed too far back into the
history.
* src/tools/databaseConnector: fixed bug in the query generation
code. A keyword in single quotes is interpreted as a literal
string if it occurs in a context where a string literal is
allowed, otherwise it is understood as an identifier, whereas a
keyword in double-quotes is interpreted as an identifier if it
matches a known identifier - otherwise it is interpreted as a
string literal. The following WHERE word = "word" is a no-op, the
correct clause is WHERE word = 'word'.
2007-05-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/soothsayerDemo: added function key sidebar.
2007-05-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/text2ngram: improved performance of sqlite database
creation by enclosing INSERTs in a transaction. The resulting
performance enhancement is quite dramatic.
BEFORE AFTER
real 40m51.569s real 0m8.107s
user 0m10.797s user 0m4.604s
sys 0m29.438s sys 0m3.148s
* src/tools/databaseConnector: added interface to begin and end
SQL transactions.
* src/plugins/Makefile.am: minor change to
SmoothedUniBiTrigramPlugin sources.
2007-05-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/text2ngram: added progress bar to result writing
phase.
* src/soothsayerDemoSimple: removed, obsoleted by soothsayerDemo.
* src/core/loadXml: removed as not needed.
* src/core/createXML: removed as not needed.
2007-05-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/text2ngram: corrected -f option flag to generate
tabbed separated values to 'tsv' instead of generic 'file'.
* license_headers: fixed typo in maintainer's email address line.
* resources/profiles/soothsayer.xml: templatized soothsayer.xml to
account for different installation targets.
* resources/profiles/Makefile.am: added install data hook to
replace tokens in templatized soothsayer.xml.
* resources/profile/defaultpassword.xml: no longer needed.
2007-05-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/core/profile: added Profile class to easy configuration
variable querying by plugins and other components.
* test/core/profileTest: added unit tests for new Profile class.
* test/core/selectorDriverInteractive: removed as no longer
needed, due to Selector unit tests in selectorTest.
* src/plugins/*Plugin: modified plugins to use new Profile
interface, discarded old Option classes.
* src/plugin/option: removed as superseded by Profile.
* src/core/predictor: cleaned up comments, modified instantiation
of plugins to pass profile object
* src/core/profileManager: added support for Profile class.
2007-05-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/soothsayerDemo: added disclaimer and copyright information,
added helpful comments, fixed bug in display refreshing, minor
embellishments.
* src/soothsayerDriver: added disclaimer and copyright information
and changed name to soothsayerDemoText
* src/soothsayerDriverNcurses: changed name to soothsayerDemoSimple
2007-05-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/utility: not needed, removed
* src/tools/bigram: not needed, removed
* src/tools/trigram: not needed, removed
* FAQ: added frequenly asked questions file
* src/core/iso8895_1.h: added required file to libcore sources
list.
* Doxyfile: added Doxygen configuration file to distribution.
2007-05-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: fixed check for CppUnit library.
* configure.ac: changed check for dirent.h header and changed
dirent.h inclusion directives
* Makefile.am: made building and running unit tests conditional on
whether CppUnit is found.
2007-04-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools: removed unneeded database.h, database.cpp,
sqlite.cpp, fileTokenizer.h, fileTokenizer.cpp
2007-04-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* updated_email_address: in all .h and .cpp files, courtesy of the
all powerful find and sed utils - i.e. `find . -name "*.h" -type f
-exec sed -i -e
's/matteo.vescovi@yahoo.co.uk/matteo.vescovi@yahoo.co.uk/' {} \;'
2007-04-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* tools: retired old text2unigram, text2bigram, text2trigram,
text2unigramdb, text2bigramdb, text2trigramdb tools, which are
superseded by text2ngram tool.
2007-04-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* logging: added LOG() macro to turn log messages on/off in
tools/dbConnectors. This is a temporary solution using
preprocessor macros, which should be replaced by an appropriate
logger implementation.
2007-04-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/plugins/smoothedUniBiTriGramPlugin: modified plugin to use new
databaseConnector classes
* src/tools/sqliteDatabaseConnector: added ORDER BY clause to
getNgramLikeTable() method
2007-04-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources: switched database creation to new text2ngram tool,
which uses the new table names in _N_gram form.
2007-04-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/sqliteDatabaseConnector: fixed callback() method by
return 0 to signal normal execution. Oddly, even the the method
signature specifies an integer return type, the gcc C++ compiler
does not generate any error or warning that no value is returned.
2007-03-30 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/tools/databaseConnectorTest: added tests for
...NgramLikeTable() methods family, fixed tests to account for
buildXClause changes
* test/tools/sqliteDatabaseConnectorTest: fixed tests to account
for buildXClause changes
2007-03-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/databaseConnector: fixed bugs affecting the
buildXClause family of functions
2007-03-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/databaseConnector: added getNgramLikeTable() method,
which returns a set of ngrams that are possible completions of the
supplied ngram
* src/tools/databaseConnector: changed executeSql() to return an
NgramTable instead of a string to ease subsequent manipulation and
information extraction
2007-03-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/tokenizer: renamed Tokenizer class to FileTokenizer,
taking us one step closer to fully removing code duplication with
src/core/tokenizer classes... :-)
* src/tools/utility: removed duplicate code from strtolower
functions family
* src/Makefile.am: linking libtools.la with libsoothsayer.la
2007-02-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* text2ngram: added -o option (set output file) and option -f (set
file format), text2ngram can output in text file or sqlite format
* progress.h: turned progress bar implementation into a class,
added progress bar completion on object destruction
2007-02-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* profileManager: when no profile is found, use default value for
configuration parameters
2007-02-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* headers: changed generation of multiple headers containing
directory value to single header
* profileManager: default profile is loaded from system-wide and
installation specific paths
* smoothedUniBiTrigramPlugin: database is found based on
installation location
2007-02-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* headers: added generation of headers with defines for
sysconfdir, datadir, pkgdatadir, and localstatedir using built
sources
2007-01-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* svn: moved soothsayer codebase to subversion
* plugins: plugins subsystem was temporarily disabled, now
smoothed uni/bi/trigram plugin is linked into soothsayer library
* birthday: born on this day a few years ago
* promise: I will start updating the changelog frequently
|