1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257
|
2016-07-25 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.9.3 for changeset 19c9752958b7
[fb5cd006685f] [tip] <2.9-maint>
* NEWS:
Released as v2.9.3.
[19c9752958b7] [2.9.3] <2.9-maint>
2016-07-19 Phil Thompson <phil@riverbankcomputing.com>
* METADATA.in:
Updated METADATA.
[aa51b27d9baf] <2.9-maint>
2016-06-21 Phil Thompson <phil@riverbankcomputing.com>
* build.py, lib/qscintilla.dxy:
Simplify the generation of the doxygen documentation.
[12575460cd55] <2.9-maint>
* rb-product, rbproduct.py:
Replaced the product plugin with a product file.
[846ad54d791e] <2.9-maint>
2016-06-10 Phil Thompson <phil@riverbankcomputing.com>
* qt/ScintillaQt.cpp, qt/qscintilla.pro:
Fixed a flicker problem on OS X.
[c1482a759dc0] <2.9-maint>
2016-05-12 Phil Thompson <phil@riverbankcomputing.com>
* METADATA.in, rbproduct.py:
Try to prevent the GPL and commercial versions being installed at
the same time. (Although it doesn't seem to work.)
[826424d291a2] <2.9-maint>
* METADATA.in, rbproduct.py:
Configure the PKG-INFO meta-data according to the license.
[e3243207aa15] <2.9-maint>
2016-05-10 Phil Thompson <phil@riverbankcomputing.com>
* rbproduct.py:
More changes to the product plugin required by rbtools.
[437e6032e4df] <2.9-maint>
2016-05-09 Phil Thompson <phil@riverbankcomputing.com>
* rbproduct.py:
Updated the product plugin for the latest rbtools changes.
[393cae59af91] <2.9-maint>
2016-04-22 Phil Thompson <phil@riverbankcomputing.com>
* METADATA.in:
Updated the meta-data now that Linux wheels are available from PyPI.
[40f18e066c6f] <2.9-maint>
2016-04-18 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.9.2 for changeset 15888f3e91ce
[5cd132938309] <2.9-maint>
* NEWS:
Released as v2.9.2.
[15888f3e91ce] [2.9.2] <2.9-maint>
* Python/sip/qsciscintillabase.sip:
Remove all deprecated /DocType/ annotations.
[b9d570ab642a] <2.9-maint>
2016-04-17 Phil Thompson <phil@riverbankcomputing.com>
* rbproduct.py:
Locate the static library on Windows.
[dd8c14dace83] <2.9-maint>
* rbproduct.py:
Fixed a typo.
[baf5c942f528] <2.9-maint>
* rbproduct.py:
Add any pre-installed .api files to the wheel.
[cf7b6302ae83] <2.9-maint>
* rbproduct.py:
Exploit verbose mode in the product plugin.
[da743c037880] <2.9-maint>
* rbproduct.py:
Fixed permissions of the product plugin.
[6fac075e0b88] <2.9-maint>
2016-04-16 Phil Thompson <phil@riverbankcomputing.com>
* Makefile:
Updated the clean target.
[692b14f48ade] <2.9-maint>
* rbproduct.py:
The wheel now includes translations and API files.
[bf911094e537] <2.9-maint>
* METADATA.in, Makefile, Python/configure.py, build.py, rbproduct.py:
Added the initial support for creating wheels.
[da0a5d22e864] <2.9-maint>
* Makefile, build.py:
Added the --omit-license-tag option to build.py. Added the dist-
wheel-gpl target to the master Makefile.
[a63c245de735] <2.9-maint>
2016-04-15 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure-old.py, Python/configure.py, build.py,
qt/features/qscintilla2.prf, qt/features_staticlib/qscintilla2.prf,
qt/qsciglobal.h, qt/qscintilla.pro:
Symbols are now hidden if possible on all platforms. Improved the
handling of QSCINTILLA_DLL so it should be completely automatic.
Removed the --no-dll option to configure.py.
[e35caca29dd6] <2.9-maint>
2016-03-25 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure-old.py, build.py:
Use the new naming standards for development versions.
[21d2f882320a] <2.9-maint>
2016-03-14 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py, build.py:
The configure.py boilerplate code is applied automatically.
[848f3fca41c0] <2.9-maint>
2016-03-13 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Updated the configure.py boilerplate.
[b3fd404a1134] <2.9-maint>
2016-03-07 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Added support for PEP 484 stub files to configure.py.
[9316fed27503] <2.9-maint>
2015-12-15 Phil Thompson <phil@riverbankcomputing.com>
* Makefile:
Switched the internal build system to Python v3.5.
[5215e7f3116e] <2.9-maint>
2015-10-28 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Handle PATH components that are enclosed in quotes.
[d0f19b69ce26] <2.9-maint>
2015-10-24 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.9.1 for changeset 9bd39be91ef8
[c71bd22d6ccf] <2.9-maint>
* NEWS:
Released as v2.9.1.
[9bd39be91ef8] [2.9.1] <2.9-maint>
2015-10-17 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
Fixed the handling of the keypad modifier.
[e363cc2c347f] <2.9-maint>
2015-09-18 Phil Thompson <phil@riverbankcomputing.com>
* qsci/api/python/Python-3.5.api:
Added the .api file for Python v3.5.
[5b4e58de4663] <2.9-maint>
2015-09-10 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qsciabstractapis.sip, Python/sip/qsciapis.sip:
Fixed the Python binding for
QsciAbstractAPIs::updateAutoCompletionList().
[53f2939a3b29] <2.9-maint>
2015-09-08 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Use win32-msvc2015 for Python v3.5 and later.
[2f264662e2c7] <2.9-maint>
2015-09-01 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
Fixed the restyling of a document displayed in multiple editors.
[9309f264ab57] <2.9-maint>
2015-08-24 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla.pro, qt/qsciscintilla.cpp:
Fixed a problem starting a call tip when the auto-completion list is
displayed. Bumped the library version.
[2ec2115ea4d2] <2.9-maint>
2015-07-12 Phil Thompson <phil@riverbankcomputing.com>
* designer-Qt4Qt5/qscintillaplugin.h:
Fixed a warning message when compiling against Qt v5.5.0.
[3ff05a0ef88d] <2.9-maint>
2015-07-09 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Update QMAKE_RPATHDIR rather than set it.
[045c64a7e65c] <2.9-maint>
2015-06-24 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Set QMAKE_RPATHDIR for Qt v5.5 on OS X.
[b83394e4a676] <2.9-maint>
2015-05-26 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Fixed the backstop handling in the Python bindings configuration
script and bumped the version number.
[1ab1dd7ea495] <2.9-maint>
2015-05-02 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla.pro:
Use QT_HOST_DATA for the .prf destination with Qt v5. Removed all Qt
v3 support from the .pro file.
[63c0391624a8] <2.9-maint>
2015-04-20 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.9 for changeset 41ee8162fa81
[9817b0a7a4f7]
* NEWS:
Released as v2.9.
[41ee8162fa81] [2.9]
2015-04-14 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintillabase.cpp:
Fixed a problem notifying when focus is lost to another application
widget.
[41734678234e]
2015-04-06 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintillabase.cpp:
Fixed a crash when deleting an instance.
[eb936ad1f826]
2015-04-05 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
Fixed a problem applying a lexer's styles that manifested itself by
the wrong style being applied to line numbers when using a custom
lexer.
[c91009909b8e]
2015-04-04 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_es.qm, qt/qscintilla_es.ts:
Updated Spanish translations from Jaime.
[d94218e7d47d]
* qt/ScintillaQt.h:
Fixed some header file dependencies.
[f246e863957f]
* qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts,
qt/qscintilla_es.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm:
Updated German translations from Detlev.
[01f3be277e14]
2015-04-03 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts:
Updated the .ts translation files.
[659fb035d1c4]
2015-04-02 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciapis.cpp:
Fixed a problem displaying call-tips when auto-completion is
enabled.
[82ec45421a3d]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h,
qt/qsciscintillabase.h:
Exposed the remaining new features.
[6e84b61268c5]
2015-04-01 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Exposing new Scintilla functionality.
[e0965dc46693]
2015-03-31 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexerverilog.cpp, qt/qscilexerverilog.h:
Enabled the new styling features of QsciLexerVerilog.
[5be65189b15f]
* NEWS, Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp,
qt/qscilexercpp.h:
Completed the updates to QsciLexerCPP.
[a8e24b727d82]
* NEWS, Python/sip/qscilexercpp.sip, Python/sip/qscilexersql.sip,
Python/sip/qscilexerverilog.sip, Python/sip/qscilexervhdl.sip,
Python/sip/qsciscintillabase.sip, qt/qscilexercpp.cpp,
qt/qscilexercpp.h, qt/qscilexersql.cpp, qt/qscilexersql.h,
qt/qscilexerverilog.cpp, qt/qscilexerverilog.h,
qt/qscilexervhdl.cpp, qt/qscilexervhdl.h, qt/qsciscintillabase.h:
Updated existing lexers with new styles.
[768f8ff280e1]
2015-03-30 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciapis.cpp:
Make sure call tips don't include image types.
[d0830816cda4]
* qt/ScintillaQt.cpp, qt/ScintillaQt.h:
Fixed the horizontal scrollbar issues, particularly with long lines.
[db8501c0803f]
2015-03-29 Phil Thompson <phil@riverbankcomputing.com>
* qt/ScintillaQt.cpp:
Updated the paste support.
[42ad3657d52e]
* qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciscintillabase.cpp:
Added support for idle processing.
[ff277e910df7]
2015-03-27 Phil Thompson <phil@riverbankcomputing.com>
* NEWS:
Updated the NEWS file.
[64766fb4c800]
* qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Add support for fine tickers.
[3e9b89430dc0]
2015-03-26 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/sip/qsciabstractapis.sip, Python/sip/qsciapis.sip,
Python/sip/qscicommandset.sip, Python/sip/qscilexer.sip,
Python/sip/qscilexeravs.sip, Python/sip/qscilexerbash.sip,
Python/sip/qscilexerbatch.sip, Python/sip/qscilexercmake.sip,
Python/sip/qscilexercoffeescript.sip, Python/sip/qscilexercpp.sip,
Python/sip/qscilexercsharp.sip, Python/sip/qscilexercss.sip,
Python/sip/qscilexercustom.sip, Python/sip/qscilexerd.sip,
Python/sip/qscilexerdiff.sip, Python/sip/qscilexerfortran.sip,
Python/sip/qscilexerfortran77.sip, Python/sip/qscilexerhtml.sip,
Python/sip/qscilexeridl.sip, Python/sip/qscilexerjava.sip,
Python/sip/qscilexerjavascript.sip, Python/sip/qscilexerlua.sip,
Python/sip/qscilexermakefile.sip, Python/sip/qscilexermatlab.sip,
Python/sip/qscilexeroctave.sip, Python/sip/qscilexerpascal.sip,
Python/sip/qscilexerperl.sip, Python/sip/qscilexerpo.sip,
Python/sip/qscilexerpostscript.sip, Python/sip/qscilexerpov.sip,
Python/sip/qscilexerproperties.sip, Python/sip/qscilexerpython.sip,
Python/sip/qscilexerruby.sip, Python/sip/qscilexerspice.sip,
Python/sip/qscilexersql.sip, Python/sip/qscilexertcl.sip,
Python/sip/qscilexertex.sip, Python/sip/qscilexerverilog.sip,
Python/sip/qscilexervhdl.sip, Python/sip/qscilexerxml.sip,
Python/sip/qscilexeryaml.sip, Python/sip/qscimacro.sip,
Python/sip/qscimod3.sip, Python/sip/qscimod4.sip,
Python/sip/qscimod5.sip, Python/sip/qscimodcommon.sip,
Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip,
build.py, designer-Qt3/designer.pro, designer-
Qt3/qscintillaplugin.cpp, example-Qt3/application.cpp, example-
Qt3/application.h, example-Qt3/application.pro, example-
Qt3/fileopen.xpm, example-Qt3/fileprint.xpm, example-
Qt3/filesave.xpm, example-Qt3/main.cpp, lib/README, lib/README.doc,
lib/qscintilla.dxy, qt/InputMethod.cpp, qt/ListBoxQt.cpp,
qt/PlatQt.cpp, qt/SciClasses.cpp, qt/SciClasses.h,
qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciabstractapis.cpp,
qt/qsciabstractapis.h, qt/qsciapis.cpp, qt/qsciapis.h,
qt/qscicommandset.cpp, qt/qscicommandset.h, qt/qscilexer.cpp,
qt/qscilexer.h, qt/qscilexeravs.cpp, qt/qscilexeravs.h,
qt/qscilexerbash.cpp, qt/qscilexerbash.h, qt/qscilexerbatch.cpp,
qt/qscilexerbatch.h, qt/qscilexercmake.cpp, qt/qscilexercmake.h,
qt/qscilexercoffeescript.cpp, qt/qscilexercoffeescript.h,
qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qscilexercsharp.cpp,
qt/qscilexercsharp.h, qt/qscilexercss.cpp, qt/qscilexercss.h,
qt/qscilexercustom.cpp, qt/qscilexercustom.h, qt/qscilexerd.cpp,
qt/qscilexerd.h, qt/qscilexerdiff.cpp, qt/qscilexerdiff.h,
qt/qscilexerfortran.cpp, qt/qscilexerfortran.h,
qt/qscilexerfortran77.cpp, qt/qscilexerfortran77.h,
qt/qscilexerhtml.cpp, qt/qscilexerhtml.h, qt/qscilexeridl.cpp,
qt/qscilexeridl.h, qt/qscilexerjava.cpp, qt/qscilexerjava.h,
qt/qscilexerjavascript.cpp, qt/qscilexerjavascript.h,
qt/qscilexerlua.cpp, qt/qscilexerlua.h, qt/qscilexermakefile.cpp,
qt/qscilexermakefile.h, qt/qscilexermatlab.cpp,
qt/qscilexermatlab.h, qt/qscilexeroctave.cpp, qt/qscilexeroctave.h,
qt/qscilexerpascal.cpp, qt/qscilexerpascal.h, qt/qscilexerperl.cpp,
qt/qscilexerperl.h, qt/qscilexerpo.cpp, qt/qscilexerpo.h,
qt/qscilexerpostscript.cpp, qt/qscilexerpostscript.h,
qt/qscilexerpov.cpp, qt/qscilexerpov.h, qt/qscilexerproperties.cpp,
qt/qscilexerproperties.h, qt/qscilexerpython.cpp,
qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h,
qt/qscilexerspice.cpp, qt/qscilexerspice.h, qt/qscilexersql.cpp,
qt/qscilexersql.h, qt/qscilexertcl.cpp, qt/qscilexertcl.h,
qt/qscilexertex.cpp, qt/qscilexertex.h, qt/qscilexerverilog.cpp,
qt/qscilexerverilog.h, qt/qscilexervhdl.cpp, qt/qscilexervhdl.h,
qt/qscilexerxml.cpp, qt/qscilexerxml.h, qt/qscilexeryaml.cpp,
qt/qscilexeryaml.h, qt/qscimacro.cpp, qt/qscimacro.h,
qt/qsciprinter.cpp, qt/qsciscintilla.cpp, qt/qsciscintilla.h,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h, qt/qscistyle.cpp,
qt/qscistyledtext.h:
Removed all support for Qt3 and PyQt3.
[b33b2f06716e]
* Python/configure-old.py, Python/configure.py, designer-
Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro,
qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qscintilla.pro:
The updated code now compiles.
[35d05076c62f]
* cocoa/InfoBar.h, cocoa/InfoBar.mm, cocoa/InfoBarCommunicator.h,
cocoa/PlatCocoa.h, cocoa/PlatCocoa.mm, cocoa/QuartzTextLayout.h,
cocoa/QuartzTextStyle.h, cocoa/ScintillaCocoa.h,
cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework
.xcodeproj/project.pbxproj, cocoa/ScintillaTest/AppController.h,
cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj,
cocoa/ScintillaView.h, cocoa/ScintillaView.mm,
cocoa/checkbuildosx.sh, cppcheck.suppress, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/index.html, gtk/Converter.h, gtk/PlatGTK.cxx,
gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile,
include/Platform.h, include/SciLexer.h, include/Scintilla.h,
include/Scintilla.iface, lexers/LexAbaqus.cxx, lexers/LexAsm.cxx,
lexers/LexBash.cxx, lexers/LexBasic.cxx, lexers/LexBibTeX.cxx,
lexers/LexCPP.cxx, lexers/LexCmake.cxx, lexers/LexCoffeeScript.cxx,
lexers/LexDMAP.cxx, lexers/LexDMIS.cxx, lexers/LexECL.cxx,
lexers/LexEScript.cxx, lexers/LexForth.cxx, lexers/LexFortran.cxx,
lexers/LexGui4Cli.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx,
lexers/LexHex.cxx, lexers/LexKix.cxx, lexers/LexLua.cxx,
lexers/LexMarkdown.cxx, lexers/LexMatlab.cxx, lexers/LexModula.cxx,
lexers/LexMySQL.cxx, lexers/LexOthers.cxx, lexers/LexPS.cxx,
lexers/LexPerl.cxx, lexers/LexRegistry.cxx, lexers/LexRuby.cxx,
lexers/LexRust.cxx, lexers/LexSQL.cxx, lexers/LexScriptol.cxx,
lexers/LexSpecman.cxx, lexers/LexTCL.cxx, lexers/LexTCMD.cxx,
lexers/LexTxt2tags.cxx, lexers/LexVHDL.cxx, lexers/LexVerilog.cxx,
lexers/LexVisualProlog.cxx, lexlib/Accessor.cxx, lexlib/Accessor.h,
lexlib/CharacterCategory.cxx, lexlib/CharacterSet.cxx,
lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerModule.cxx,
lexlib/LexerModule.h, lexlib/LexerNoExceptions.cxx,
lexlib/LexerSimple.cxx, lexlib/LexerSimple.h,
lexlib/PropSetSimple.cxx, lexlib/SparseState.h, lexlib/StringCopy.h,
lexlib/StyleContext.cxx, lexlib/StyleContext.h, lexlib/SubStyles.h,
lexlib/WordList.cxx, lexlib/WordList.h, lib/README.doc,
qt/qscintilla.pro, scripts/GenerateCaseConvert.py,
scripts/GenerateCharacterCategory.py, scripts/HFacer.py,
scripts/HeaderOrder.txt, scripts/LexGen.py,
scripts/ScintillaData.py, src/AutoComplete.cxx, src/AutoComplete.h,
src/CallTip.cxx, src/CaseConvert.cxx, src/CaseFolder.cxx,
src/Catalogue.cxx, src/CellBuffer.cxx, src/CellBuffer.h,
src/CharClassify.cxx, src/ContractionState.cxx,
src/ContractionState.h, src/Decoration.cxx, src/Decoration.h,
src/Document.cxx, src/Document.h, src/EditModel.cxx,
src/EditModel.h, src/EditView.cxx, src/EditView.h, src/Editor.cxx,
src/Editor.h, src/ExternalLexer.cxx, src/ExternalLexer.h,
src/FontQuality.h, src/Indicator.cxx, src/Indicator.h,
src/KeyMap.cxx, src/KeyMap.h, src/LineMarker.cxx, src/LineMarker.h,
src/MarginView.cxx, src/MarginView.h, src/Partitioning.h,
src/PerLine.cxx, src/PerLine.h, src/PositionCache.cxx,
src/PositionCache.h, src/RESearch.cxx, src/RESearch.h,
src/ScintillaBase.cxx, src/ScintillaBase.h, src/Selection.cxx,
src/Selection.h, src/SplitVector.h, src/Style.cxx, src/Style.h,
src/UniConversion.cxx, src/UniConversion.h, src/ViewStyle.cxx,
src/ViewStyle.h, src/XPM.cxx, src/XPM.h, test/XiteQt.py,
test/XiteWin.py, test/lexTests.py, test/simpleTests.py,
test/unit/LICENSE_1_0.txt, test/unit/README,
test/unit/SciTE.properties, test/unit/catch.hpp, test/unit/makefile,
test/unit/test.mak, test/unit/testCellBuffer.cxx,
test/unit/testCharClassify.cxx, test/unit/testContractionState.cxx,
test/unit/testDecoration.cxx, test/unit/testPartitioning.cxx,
test/unit/testRunStyles.cxx, test/unit/testSparseState.cxx,
test/unit/testSplitVector.cxx, test/unit/testUnicodeFromUTF8.cxx,
test/unit/unitTest.cxx, version.txt, win32/HanjaDic.cxx,
win32/HanjaDic.h, win32/PlatWin.cxx, win32/PlatWin.h,
win32/SciLexer.vcxproj, win32/ScintRes.rc, win32/ScintillaWin.cxx,
win32/deps.mak, win32/makefile, win32/scintilla.mak:
Added the initial import of Scintilla v3.5.4.
[025db9484942]
* lib/GPL_EXCEPTION.TXT, lib/GPL_EXCEPTION_ADDENDUM.TXT,
lib/LICENSE.GPL2, lib/LICENSE.GPL3, lib/OPENSOURCE-NOTICE.TXT,
qt/qscintilla_ru.qm, qt/qscintilla_ru.ts:
Merged the 2.8-maint branch into the default.
[efe1067a091a]
2015-03-19 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
Fixed QsciScintilla::clearMarginText().
[885b972e38df] <2.8-maint>
2015-02-14 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/configure.py:
Installing into a virtual env should now work. The internal build
system supports sip5.
[62d128cc92de] <2.8-maint>
2015-02-08 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Use sip5 if available.
[6f5e4b0dae8f] <2.8-maint>
2015-01-02 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py, lib/LICENSE.commercial.short, lib/LICENSE.gpl,
lib/LICENSE.gpl.short, qt/InputMethod.cpp:
Updated the copyright notices.
[50b9b459dc48] <2.8-maint>
* Python/configure-old.py:
Fixed configure-old.py for previews.
[7ff9140391e4] <2.8-maint>
2014-12-22 Phil Thompson <phil@riverbankcomputing.com>
* build.py, lib/LICENSE.GPL3, lib/LICENSE.commercial.short,
lib/LICENSE.gpl, lib/LICENSE.gpl.short:
More license tweaks.
[f3e84d697877] <2.8-maint>
* build.py, lib/GPL_EXCEPTION.TXT, lib/GPL_EXCEPTION_ADDENDUM.TXT,
lib/LICENSE.GPL2, lib/LICENSE.gpl.short, lib/OPENSOURCE-NOTICE.TXT,
lib/README.doc:
Aligned the GPL licensing with Qt.
[aa58ba575cac] <2.8-maint>
2014-12-21 Phil Thompson <phil@riverbankcomputing.com>
* lib/LICENSE.commercial:
Updated the commercial license to v4.0.
[fd91beaa78dd] <2.8-maint>
2014-11-16 Phil Thompson <phil@riverbankcomputing.com>
* build.py:
A source package now includes a full ChangeLog.
[ba92c1d5c839] <2.8-maint>
2014-09-11 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.8.4 for changeset e18756e8cf86
[e7f7a594518d] <2.8-maint>
* .hgignore, NEWS:
Released as v2.8.4.
[e18756e8cf86] [2.8.4] <2.8-maint>
2014-09-04 Phil Thompson <phil@riverbankcomputing.com>
* NEWS:
Updated the NEWS file.
[e4e3562b54cb] <2.8-maint>
2014-09-03 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip,
qt/qscintilla.pro, qt/qsciscintilla.cpp, qt/qsciscintilla.h,
qt/qsciscintillabase.h:
Added the missing SCI_SETHOTSPOTSINGLELINE to QsciScintillaBase.
Added resetHotspotForegroundColor(), resetHotspotBackgroundColor(),
setHotspotForegroundColor(), setHotspotBackgroundColor(),
setHotspotUnderline() and setHotspotWrap() to QsciScintilla.
[2da018f7e48c] <2.8-maint>
2014-07-31 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
Attempted to improve the auto-indentation behaviour so that the
indentation of a line is maintained if a new line has been inserted
above by pressing enter at the start of the line.
[aafc4a7247fb] <2.8-maint>
2014-07-11 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Fixed the installation of the .api file.
[aae8494847ff] <2.8-maint>
2014-07-10 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py, designer-Qt4Qt5/designer.pro,
qt/qscintilla.pro:
Fixes to work around QTBUG-39300. Fix when building with a
configuration file.
[1051e8c260fd] <2.8-maint>
2014-07-03 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.8.3 for changeset e9cb8530f97f
[bb531051c8f3] <2.8-maint>
* NEWS:
Released as v2.8.3.
[e9cb8530f97f] [2.8.3] <2.8-maint>
2014-07-01 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Fixed a cut-and-paste bug in configure.py.
[5f7c4c6c9a29] <2.8-maint>
* Python/configure.py:
Updated to the latest build system boilerplate.
[ee0b9a647e7a] <2.8-maint>
2014-06-30 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/configure.py:
Updates to the build system and the latest boilerplate configure.py.
[8485111172c7] <2.8-maint>
2014-06-19 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexercoffeescript.cpp, qt/qscintilla.pro,
qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts,
qt/qscintilla_es.qm, qt/qscintilla_es.ts, qt/qscintilla_fr.qm,
qt/qscintilla_pt_br.qm, qt/qscintilla_ru.qm, qt/qscintilla_ru.ts:
Updated CoffeeScript keywords and German translations from Detlev.
Updated Spanish translations from Jaime. Removed the Russian
translations as none were current.
[978fe16935c4] <2.8-maint>
2014-06-15 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the translation source files.
[440ab56f1863] <2.8-maint>
2014-06-09 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qscilexercoffeescript.sip, Python/sip/qscimodcommon.sip,
Python/sip/qsciscintillabase.sip:
Added QsciLexerCoffeeScript to the Python bindings.
[36a6e2123a69] <2.8-maint>
* qt/qscilexercoffeescript.h:
QsciLexerCoffeeScript property setters are no longer virtual slots.
[eef97550eb16] <2.8-maint>
* qt/qscilexercoffeescript.cpp, qt/qscilexercoffeescript.h,
qt/qscintilla.pro:
Added the QsciLexerCoffeeScript class.
[0cf56e9cd32a] <2.8-maint>
2014-06-03 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Fixes for Python v2.6.
[9b7b5393f228] <2.8-maint>
2014-06-01 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Fixed a regression in configure.py when using the -n or -o options.
[f7b1c9821894] <2.8-maint>
2014-05-29 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp, qt/qsciscintillabase.cpp:
Fixes for Qt3.
[4d0a54024b52] <2.8-maint>
* qt/PlatQt.cpp, qt/qscilexer.cpp, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qscistyle.cpp:
Font sizes are now handled as floating point values rather than
integers.
[ea017cc2b198] <2.8-maint>
2014-05-26 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.8.2 for changeset 5aab3ae01e0e
[6cc6eec7c440] <2.8-maint>
* NEWS:
Released as v2.8.2.
[5aab3ae01e0e] [2.8.2] <2.8-maint>
* Python/sip/qsciscintillabase.sip:
Updated the sub-class converter code.
[9b276dae576d] <2.8-maint>
* Makefile:
Internal build system fixes.
[b29b24829b0b] <2.8-maint>
2014-05-24 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/configure.py:
Fixed some build regressions with PyQt4.
[175b657ad031] <2.8-maint>
2014-05-18 Phil Thompson <phil@riverbankcomputing.com>
* Makefile:
Updates to the top-level Makefile for the latest Android tools.
[405fb3eb5473] <2.8-maint>
2014-05-17 Phil Thompson <phil@riverbankcomputing.com>
* Makefile:
Added the PyQt4 against Qt5 on the iPhone simulator build target.
[c31ae5795eec] <2.8-maint>
2014-05-16 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/configure.py:
Use the PyQt .sip files in sysroot when cross-compiling.
[5d8e8b8ddfe5] <2.8-maint>
* Makefile, Python/configure.py:
Replaced pyqt_sip_flags with pyqt_disabled_features in the
configuration file.
[f209403c183b] <2.8-maint>
2014-05-15 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/sip/qscimod5.sip:
The PyQt5 bindings now run on the iOS simulator.
[056871b18335] <2.8-maint>
* Makefile, Python/configure.py:
Building the Python bindings for the iOS simulator now works.
[9dfcea4447b8] <2.8-maint>
* Makefile:
Updated the main Makefile for the Qt v5.2 iOS support.
[a619fd411878] <2.8-maint>
2014-05-14 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Don't create the .api file if it isn't going to be installed.
[79db1145e882] <2.8-maint>
2014-05-12 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Added the --sysroot, --no-sip-files and --no-qsci-api options to
configure.py.
[10642d7deba9] <2.8-maint>
2014-05-05 Phil Thompson <phil@riverbankcomputing.com>
* Makefile:
Updated the internal build system for the combined iOS/Android Qt
installation.
[9097d3096b70] <2.8-maint>
2014-05-04 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts:
Updated German translations from Detlev.
[d4f631ee3aaf] <2.8-maint>
* qt/qscintilla_es.qm, qt/qscintilla_es.ts:
Updated Spanish translations from Jaime Seuma.
[51350008c8a4] <2.8-maint>
2014-04-30 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the .ts files.
[4c5f88b22952] <2.8-maint>
2014-04-29 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qscilexerpo.sip, Python/sip/qscimodcommon.sip,
qt/qscilexerpo.cpp, qt/qscilexerpo.h, qt/qscintilla.pro:
Added the QsciLexerPO class.
[d42e44550d80] <2.8-maint>
* Python/sip/qscilexeravs.sip, Python/sip/qscimodcommon.sip,
qt/qscilexeravs.cpp, qt/qscilexeravs.h, qt/qscintilla.pro:
Added the QsciLexerAVS class.
[ed6edb6ec205] <2.8-maint>
2014-04-27 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Fixes for the refactored configure.py.
[21b9fa66338e] <2.8-maint>
* Python/configure.py:
Initial refactoring of configure.py so that it is implemented as
configurable (and reusable) boilerplate.
[615d75a88db9] <2.8-maint>
2014-04-24 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qsciscintilla.sip, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
setEnabled() now implements the expected visual effects.
[3e4254394b08] <2.8-maint>
2014-03-22 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Fixed the handling of the --pyqt-sip-flags option. Restored the
specification of the Python library directory for Windows.
[3ea496d62b9f] <2.8-maint>
* Python/configure.py, qt/features/qscintilla2.prf, qt/qscintilla.pro:
Added the --pyqt-sip-flags to configure.py to avoid having to
introspect PyQt. Fixed the .prf file for OS/X. Tweaks to
configure.py so that a configuration file will use the same names as
PyQt5.
[77ff3a21d00a] <2.8-maint>
2014-03-21 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, lib/README.doc, qt/qscintilla.pro:
Changes to the .pro file to build a static library without having to
edit it.
[f82637449276] <2.8-maint>
2014-03-17 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp, qt/qsciscintillabase.cpp:
Fixed building against Qt v5.0.x.
[d68e28068b67] <2.8-maint>
2014-03-14 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.8.1 for changeset 6bb7ab27c958
[dfd473e8336b] <2.8-maint>
* NEWS:
Released as v2.8.1.
[6bb7ab27c958] [2.8.1] <2.8-maint>
* qt/SciClasses.cpp:
Fixed the display of UTF-8 call tips.
[3f0ca7ba60a0] <2.8-maint>
2014-03-12 Phil Thompson <phil@riverbankcomputing.com>
* qsci/api/python/Python-3.4.api:
Added the .api file for Python v3.4.
[3db067b6dcec] <2.8-maint>
2014-03-05 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp:
Revised attempt at the outline of alpha rectangles in case Qt ignore
the alpha of the pen.
[86ab8898503e] <2.8-maint>
* qt/PlatQt.cpp:
Fixed the setting of the pen when drawing alpha rectangles.
[3f4ff2e8aca3] <2.8-maint>
2014-02-09 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
The Python module now has the correct install name on OS/X.
[eec8c704418a] <2.8-maint>
2014-02-04 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscicommand.cpp, qt/qscicommand.h, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Fixed a problem entering non-ASCII characters that clashed with
Scintilla's SCK_* values. Key_Enter, Key_Backtab, Key_Super_L,
Key_Super_R and Key_Menu are now valid QsciCommand keys.
[94aec4f075df] <2.8-maint>
2014-01-31 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
Make sure the editor is active after a selection of a user list
entry.
[e0f2106777d0] <2.8-maint>
2014-01-23 Phil Thompson <phil@riverbankcomputing.com>
* qt/SciClasses.cpp:
On Linux, single clicking on an item in an auto-completion list now
just selects the itemm (rather than inserting the item) to be
consistent with other platforms.
[d916bbbf6517] <2.8-maint>
* qt/qsciscintillabase.cpp:
Fix the handling of the auto-completion list when losing focus.
[a67b51ac8611] <2.8-maint>
2014-01-22 Phil Thompson <phil@riverbankcomputing.com>
* qt/InputMethod.cpp, qt/qsciscintillabase.cpp:
Fixed building against Qt4.
[bf0a5f984fc1] <2.8-maint>
2014-01-19 Phil Thompson <phil@riverbankcomputing.com>
* NEWS:
Updated the NEWS file.
[da2a76da712e] <2.8-maint>
2014-01-18 Phil Thompson <phil@riverbankcomputing.com>
* qt/InputMethod.cpp:
Another attempt to fix input events on losing focus.
[6de3ab62fade] <2.8-maint>
* lib/README.doc:
Added the qmake integration section to the docs.
[2918e4760c36] <2.8-maint>
2014-01-07 Phil Thompson <phil@riverbankcomputing.com>
* Makefile:
Added Android to the internal build system.
[3be74b3e89e9] <2.8-maint>
2014-01-06 Phil Thompson <phil@riverbankcomputing.com>
* qt/InputMethod.cpp, qt/qsciscintillabase.cpp:
Newlines can now be entered on iOS.
[8d23447dbd4d] <2.8-maint>
2014-01-05 Phil Thompson <phil@riverbankcomputing.com>
* qt/InputMethod.cpp:
See if we can detect a input methdo event generated when losing
focus and not to clear the selection.
[8e4216289efe] <2.8-maint>
2014-01-04 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qsciprinter.sip:
The Python bindings now respect the PyQt_Printer feature.
[c3106f715803] <2.8-maint>
2014-01-03 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Added support for software input panels with Qt v5.
[d4499b61ff04] <2.8-maint>
* qt/qsciscintilla.cpp:
Disable input methods when read-only (rather than non-UTF8) to be
consistent with Qt.
[f8817d4a47e3] <2.8-maint>
* qt/qscintilla.pro, qt/qsciprinter.h:
Fixed the .pro file so that QT_NO_PRINTER is set properly and
removed the workaround.
[b5a6709d814a] <2.8-maint>
2014-01-02 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp:
Finally fixed buffered drawing on retina displays.
[f8d23103df70] <2.8-maint>
* qt/PlatQt.cpp, qt/qsciscintillabase.cpp:
Fixes for buffered drawing on retina displays. (Not yet correct, but
close.)
[a3b36be44112] <2.8-maint>
* Makefile:
Changed the build system for the example on the iOS simulator so
that qmake is only used to generate the .xcodeproj file.
[179dbf5ba385] <2.8-maint>
* Makefile:
Added the building of the example to the main Makefile.
[aec2ac3ac591] <2.8-maint>
* Makefile:
Added iOS simulator targets to the build system.
[72af8241b261] <2.8-maint>
* Makefile, build.py, lib/LICENSE.GPL2, lib/LICENSE.GPL3,
lib/LICENSE.commercial.short, lib/LICENSE.gpl.short,
qt/InputMethod.cpp:
Updated copyright notices.
[f21e016499fe] <2.8-maint>
* qt/MacPasteboardMime.cpp, qt/qsciprinter.cpp, qt/qsciprinter.h,
qt/qsciscintillabase.cpp:
Fixes for building for iOS.
[46d25e648b4a] <2.8-maint>
2013-12-31 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py, build.py, designer-Qt4Qt5/designer.pro,
example-Qt4Qt5/application.pro, lib/README.doc,
qt/features/qscintilla2.prf, qt/qscintilla.pro:
Implemented the qscintilla2.prf feature file and updated everything
to use it.
[c3bfef1a55ad] <2.8-maint>
2013-12-29 Phil Thompson <phil@riverbankcomputing.com>
* qt/ScintillaQt.h:
Added some additional header file dependencies.
[7ec67eced9de] <2.8-maint>
2013-12-21 Phil Thompson <phil@riverbankcomputing.com>
* qt/MacPasteboardMime.cpp, qt/ScintillaQt.cpp:
Fixes for building against Qt3.
[f25cbda736fd] <2.8-maint>
2013-12-16 Phil Thompson <phil@riverbankcomputing.com>
* designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro:
Updated the plugin and example .pro files to work around the qmake
incompatibilities introduced in Qt v5.2.0.
[a14729b2702d] <2.8-maint>
2013-12-15 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintillabase.cpp:
Fixed the previous fix.
[6c322fa1b20f] <2.8-maint>
2013-12-14 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp, qt/qsciscintillabase.cpp:
Backed out the attempted fix for retina displays at it needs more
work. As a workaround buffered writes are disabled if a retina
display is detected.
[a1f648d1025e] <2.8-maint>
2013-12-13 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla.pro:
Enabled exceptions in the .pro file.
[6e07131f6741] <2.8-maint>
2013-12-12 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp:
Create pixmaps for buffered drawing using the same pixel ratio as
the actual device.
[f4f706006071] <2.8-maint>
2013-12-09 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexeroctave.cpp:
Updated the keywords defined for the Octave lexer.
[9ccf1c74f266] <2.8-maint>
2013-12-06 Phil Thompson <phil@riverbankcomputing.com>
* qt/ScintillaQt.cpp:
More scrollbar fixes.
[194a2142c9b6] <2.8-maint>
2013-12-05 Phil Thompson <phil@riverbankcomputing.com>
* qt/ScintillaQt.cpp, qt/qscintilla.pro:
Fixes to the scrollbar visibility handling.
[5e8a96258ab0] <2.8-maint>
2013-12-04 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp:
Fixed the implementation of SurfaceImpl::LogPixelsY() (even though
it is never called).
[9ef0387cfc08] <2.8-maint>
2013-11-08 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.8 for changeset 562785a5f685
[fc52bfaa75c4]
* NEWS:
Released as v2.8.
[562785a5f685] [2.8]
2013-11-05 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_es.qm, qt/qscintilla_es.ts:
Updated Spanish translations from Jaime Seuma.
[e7a128a28157]
2013-11-04 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qscilexerpascal.cpp, qt/qsciscintillabase.h:
Added support for the new v3.3.6 features to the low-level API.
[e553c1263387]
* Makefile, NEWS, cocoa/Framework.mk, cocoa/InfoBar.mm,
cocoa/PlatCocoa.mm, cocoa/SciTest.mk, cocoa/ScintillaCocoa.h,
cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework
.xcodeproj/project.pbxproj, cocoa/ScintillaView.h,
cocoa/ScintillaView.mm, cocoa/checkbuildosx.sh, cocoa/common.mk,
doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/index.html, gtk/PlatGTK.cxx,
gtk/ScintillaGTK.cxx, gtk/makefile, include/ILexer.h,
include/Platform.h, include/SciLexer.h, include/Scintilla.h,
include/Scintilla.iface, lexers/LexCPP.cxx,
lexers/LexCoffeeScript.cxx, lexers/LexOthers.cxx,
lexers/LexPascal.cxx, lexers/LexPerl.cxx, lexers/LexRust.cxx,
lexers/LexSQL.cxx, lexers/LexVisualProlog.cxx,
lexlib/StyleContext.h, lexlib/SubStyles.h, lexlib/WordList.cxx,
lib/README.doc, qt/qscintilla.pro, src/Catalogue.cxx,
src/Document.cxx, src/Editor.cxx, src/ScintillaBase.cxx,
src/ScintillaBase.h, src/ViewStyle.cxx, src/ViewStyle.h,
test/XiteQt.py, test/simpleTests.py, version.txt, win32/PlatWin.cxx,
win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/makefile,
win32/scintilla.mak:
Merged Scintilla v3.3.6.
[ada0941dec52]
2013-10-07 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts:
Updated German translations from Detlev.
[6c0af6af651c]
* Makefile, build.py, qt/MacPasteboardMime.cpp, qt/qscintilla.pro,
qt/qsciscintillabase.cpp:
Reinstated support for rectangular selections on OS/X for Qt v5.2
and later.
[dbfdf7be4793]
2013-10-04 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the translation source files.
[7ed4bf7ed4e7]
* qt/qscilexercpp.cpp:
Added missing descriptions to the C++ lexer settings.
[55d7627bb129]
2013-10-01 Phil Thompson <phil@riverbankcomputing.com>
* designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro:
Fixed the building of the Designer plugin and the example for OS/X.
[a67f71b06d3c]
* NEWS, Python/sip/qsciscintillabase.sip, qt/InputMethod.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added the remaining non-provisional Scintilla v3.3.5 features to the
low-level API.
[4e8d0b46ebc0]
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the translation source files.
[4beefc0d95ec]
* NEWS, Python/sip/qscilexercpp.sip, Python/sip/qsciscintillabase.sip,
qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qsciscintillabase.h:
Updated the lexers for Scintilla v3.3.5.
[fc901a2a491f]
2013-09-30 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure-old.py, Python/configure.py, README,
cocoa/InfoBar.mm, cocoa/PlatCocoa.mm, cocoa/ScintillaCocoa.h,
cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework
.xcodeproj/project.pbxproj, cocoa/ScintillaTest/AppController.mm,
cocoa/ScintillaTest/English.lproj/MainMenu.xib,
cocoa/ScintillaView.h, cocoa/ScintillaView.mm, cppcheck.suppress,
delbin.bat, designer-Qt4Qt5/designer.pro, doc/Lexer.txt,
doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/ScintillaRelated.html,
doc/ScintillaToDo.html, doc/index.html, example-
Qt4Qt5/application.pro, gtk/Converter.h, gtk/PlatGTK.cxx,
gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile, include/Face.py,
include/HFacer.py, include/ILexer.h, include/Platform.h,
include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface,
lexers/LexA68k.cxx, lexers/LexAU3.cxx, lexers/LexAVE.cxx,
lexers/LexAda.cxx, lexers/LexAsm.cxx, lexers/LexAsn1.cxx,
lexers/LexBash.cxx, lexers/LexBullant.cxx, lexers/LexCOBOL.cxx,
lexers/LexCPP.cxx, lexers/LexCoffeeScript.cxx, lexers/LexConf.cxx,
lexers/LexCrontab.cxx, lexers/LexCsound.cxx, lexers/LexD.cxx,
lexers/LexECL.cxx, lexers/LexForth.cxx, lexers/LexGAP.cxx,
lexers/LexGui4Cli.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx,
lexers/LexInno.cxx, lexers/LexKVIrc.cxx, lexers/LexLaTeX.cxx,
lexers/LexLisp.cxx, lexers/LexLout.cxx, lexers/LexLua.cxx,
lexers/LexMMIXAL.cxx, lexers/LexMPT.cxx, lexers/LexMSSQL.cxx,
lexers/LexMatlab.cxx, lexers/LexModula.cxx, lexers/LexMySQL.cxx,
lexers/LexNsis.cxx, lexers/LexOpal.cxx, lexers/LexOthers.cxx,
lexers/LexPO.cxx, lexers/LexPerl.cxx, lexers/LexPowerShell.cxx,
lexers/LexPython.cxx, lexers/LexR.cxx, lexers/LexRuby.cxx,
lexers/LexSTTXT.cxx, lexers/LexScriptol.cxx, lexers/LexSpice.cxx,
lexers/LexTCMD.cxx, lexers/LexYAML.cxx, lexlib/Accessor.cxx,
lexlib/Accessor.h, lexlib/CharacterCategory.cxx,
lexlib/CharacterCategory.h, lexlib/CharacterSet.cxx,
lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerModule.cxx,
lexlib/LexerNoExceptions.cxx, lexlib/LexerNoExceptions.h,
lexlib/LexerSimple.cxx, lexlib/OptionSet.h,
lexlib/PropSetSimple.cxx, lexlib/PropSetSimple.h,
lexlib/StyleContext.cxx, lexlib/StyleContext.h, lexlib/SubStyles.h,
lexlib/WordList.cxx, lexlib/WordList.h, lib/README.doc,
qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qscintilla.pro,
qt/qsciscintillabase.cpp, scripts/Face.py, scripts/FileGenerator.py,
scripts/GenerateCaseConvert.py,
scripts/GenerateCharacterCategory.py, scripts/HFacer.py,
scripts/LexGen.py, scripts/ScintillaData.py, src/AutoComplete.cxx,
src/AutoComplete.h, src/CallTip.cxx, src/CallTip.h,
src/CaseConvert.cxx, src/CaseConvert.h, src/CaseFolder.cxx,
src/CaseFolder.h, src/Catalogue.cxx, src/CellBuffer.cxx,
src/CellBuffer.h, src/ContractionState.cxx, src/Decoration.cxx,
src/Decoration.h, src/Document.cxx, src/Document.h, src/Editor.cxx,
src/Editor.h, src/ExternalLexer.cxx, src/FontQuality.h,
src/Indicator.cxx, src/KeyMap.cxx, src/KeyMap.h, src/LexGen.py,
src/LineMarker.cxx, src/LineMarker.h, src/Partitioning.h,
src/PerLine.cxx, src/PerLine.h, src/PositionCache.cxx,
src/PositionCache.h, src/RESearch.cxx, src/RESearch.h,
src/RunStyles.cxx, src/RunStyles.h, src/SVector.h,
src/ScintillaBase.cxx, src/ScintillaBase.h, src/Selection.cxx,
src/SplitVector.h, src/Style.cxx, src/Style.h,
src/UniConversion.cxx, src/UniConversion.h, src/UnicodeFromUTF8.h,
src/ViewStyle.cxx, src/ViewStyle.h, src/XPM.cxx, src/XPM.h,
test/README, test/ScintillaCallable.py, test/XiteQt.py,
test/XiteWin.py, test/examples/x.lua, test/examples/x.lua.styled,
test/examples/x.pl, test/examples/x.pl.styled, test/examples/x.rb,
test/examples/x.rb.styled, test/lexTests.py,
test/performanceTests.py, test/simpleTests.py,
test/unit/testCharClassify.cxx, test/unit/testContractionState.cxx,
test/unit/testPartitioning.cxx, test/unit/testRunStyles.cxx,
test/unit/testSplitVector.cxx, version.txt, win32/PlatWin.cxx,
win32/PlatWin.h, win32/ScintRes.rc, win32/ScintillaWin.cxx,
win32/deps.mak, win32/makefile, win32/scintilla.mak,
win32/scintilla_vc6.mak:
Initial merge of Scintilla v3.3.5.
[40933b62f5ed]
2013-09-14 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure-ng.py, Python/configure.py, designer-
Qt4/designer.pro, designer-Qt4/qscintillaplugin.cpp, designer-
Qt4/qscintillaplugin.h:
Merged the 2.7-maint branch with the trunk.
[7288d97c54b0]
2013-08-17 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qsciscintillabase.sip:
Fixed a missing const in the .sip files.
[8b0425b87953] <2.7-maint>
2013-06-27 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/configure-old.py, Python/configure.py,
Python/sip/qsciscintillabase.sip, designer-Qt4Qt5/designer.pro,
example-Qt4Qt5/application.pro, qt/InputMethod.cpp,
qt/qscintilla.pro, qt/qsciscintilla.cpp, qt/qsciscintilla.h,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Added support for input methods.
[b97af619044b] <2.7-maint>
2013-06-16 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.7.2 for changeset 9ecd14550589
[2b1f187f29c6] <2.7-maint>
* NEWS:
Released as v2.7.2.
[9ecd14550589] [2.7.2] <2.7-maint>
2013-06-12 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Fixed a configure.py bug.
[cb062c6f9189] <2.7-maint>
2013-05-07 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/configure.py:
Fixes for the PyQt5 support.
[0714ef531ead] <2.7-maint>
* Makefile, NEWS, Python/configure.py, Python/sip/qscimod5.sip,
lib/README.doc:
Added support for building against PyQt5.
[c982ff1b86f7] <2.7-maint>
2013-05-05 Phil Thompson <phil@riverbankcomputing.com>
* build.py:
Changed the format of the name of a snapshot to match other
packages.
[d1f87bbc8377] <2.7-maint>
2013-05-04 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp:
Significantly improved the performance of measuring the width of
text so that very long lines (100,000 characters) can be handled.
[5c88dc344f69] <2.7-maint>
2013-04-08 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
configure.py now issues a more explicit error message if QtCore
cannot be imported.
[4d0097b1ff05] <2.7-maint>
* Python/configure.py:
Fixed a qmake warning message from configure.py.
[2363c96edeb0] <2.7-maint>
2013-04-02 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp, qt/qsciscintilla.h:
The default EOL mode on OS/X is now EolUnix. Clarified the
documentation for EolMode.
[a436460d0300] <2.7-maint>
2013-03-15 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Further fixes for configure.py.
[78fa6fef2c76] <2.7-maint>
2013-03-13 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexer.h:
Clarified the description of QSciLexer::description().
[688b482379e3] <2.7-maint>
* Python/configure.py:
Fixed the last (trivial) change.
[0a3494ba669a] <2.7-maint>
2013-03-12 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
configure.py now gives the user more information about the copy of
sip being used.
[5c3be581d62b] <2.7-maint>
2013-03-07 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
On OS/X configure.py will explicitly set the qmake spec to macx-g++
(Qt4) or macx-clang (Qt5) if the default might be macx-xcode. Added
the --spec option to configure.py.
[36a9bf2fbebd] <2.7-maint>
2013-03-05 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Minor cosmetic tweaks to configure.py.
[296cd10747b7] <2.7-maint>
* qt/PlatQt.cpp, qt/SciClasses.cpp, qt/qscicommandset.cpp,
qt/qscintilla.pro, qt/qsciscintillabase.cpp:
Removed the remaining uses of Q_WS_* for Qt v5.
[7fafd5c09eea] <2.7-maint>
2013-03-01 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.7.1 for changeset 2583dc3dbc8d
[0674c291eab4] <2.7-maint>
* NEWS:
Released as v2.7.1.
[2583dc3dbc8d] [2.7.1] <2.7-maint>
2013-02-28 Phil Thompson <phil@riverbankcomputing.com>
* lexlib/CharacterSet.h:
Re-applied a fix to the underlying code thay got lost when Scintilla
v3.23 was merged.
[ee9eeec7d796] <2.7-maint>
2013-02-26 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciapis.cpp:
A fix for the regression introduced with the previous fix.
[154428cebb5e] <2.7-maint>
2013-02-19 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, qt/qsciapis.cpp, qt/qscintilla.pro:
Fixed an autocompletion bug where there are entries Foo.* and
FooBar.
[620d72d86980] <2.7-maint>
2013-02-06 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
configure.py fixes for Linux.
[031b5b767926] <2.7-maint>
* Python/configure.py:
Added the --sip-incdir and --pyqt-sipdir options to configure.py and
other fixes for building on Windows.
[517a3d0243fd] <2.7-maint>
* Makefile, NEWS:
Updated the NEWS file.
[eb00e08e1950] <2.7-maint>
* Makefile, Python/configure.py:
Fixed configure.py for Qt5.
[7ddb5bf2030c] <2.7-maint>
* Python/configure-ng.py, Python/configure-old.py,
Python/configure.py, build.py, lib/README.doc:
Completed configure-ng.py and renamed it configure.py. The old
configure.py is now called configure-old.py.
[8d58b2899080] <2.7-maint>
2013-02-05 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure-ng.py:
configure-ng.py now uses -fno-exceptions on Linux and OS/X.
configure-ng.py now hides unneeded symbols on Linux.
[391e4f56b009] <2.7-maint>
* Python/configure-ng.py:
configure-ng.py will now install the .sip and .api files.
[e228d58a670c] <2.7-maint>
* Python/configure-ng.py:
configure-ng.py will now create a Makefile that will build the
Python module.
[cb47ace62a70] <2.7-maint>
2013-02-02 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciglobal.h:
Use Q_OS_WIN for compatibility for Qt5.
[da752cf4510a] <2.7-maint>
2013-01-29 Phil Thompson <phil@riverbankcomputing.com>
* designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro:
Use macx rather than mac in the .pro files.
[ee818a367df7] <2.7-maint>
2012-12-21 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure-ng.py, Python/configure.py, designer-
Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro, lib/README.doc,
qt/qscintilla.pro:
Various OS/X fixes so that setting DYLD_LIBRARY_PATH isn't
necessary.
[e7854b8b01e3] <2.7-maint>
2012-12-19 Phil Thompson <phil@riverbankcomputing.com>
* build.py, designer-Qt4/designer.pro, designer-
Qt4/qscintillaplugin.cpp, designer-Qt4/qscintillaplugin.h, designer-
Qt4Qt5/designer.pro, designer-Qt4Qt5/qscintillaplugin.cpp, designer-
Qt4Qt5/qscintillaplugin.h, lib/README.doc:
Updated the Designer plugin for Qt5.
[77f575c87ebb] <2.7-maint>
2012-12-08 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.7 for changeset 9bab1e7b02e3
[5600138109ce]
* NEWS:
Released as v2.7.
[9bab1e7b02e3] [2.7]
2012-12-07 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_es.qm, qt/qscintilla_es.ts:
Updated Spanish translations from Jaime.
[b188c942422c]
* NEWS:
Updated the NEWS file regarding Qt v5-rc1.
[be9e6b928921]
2012-12-02 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
A final(?) fix for scroll bars and annotations.
[378f28e5b4b2]
* Python/configure-ng.py:
More build system changes.
[f53fc8743ff1]
2012-11-29 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure-ng.py:
More configure script changes.
[434c9b3185a5]
* Python/configure-ng.py:
More work on the new configure script.
[3a044732b799]
* qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts,
qt/qscintilla_es.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm,
qt/qscintilla_ru.qm:
Updated German translations from Detlev.
[9dab221845ca]
2012-11-28 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure-ng.py, build.py:
Added the start of the SIP v5 compatible build script.
[781d2af60cfc]
2012-11-27 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Fixed the handling of the 'linux' platform in the Python bindings.
[835d5e3be69e]
2012-11-26 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Worked around Scintilla bugs related to scroll bars and annotations.
[edc190ecc6fc]
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the translation files.
[ec754f87a735]
* NEWS, Python/sip/qscilexercss.sip, qt/qscilexercss.cpp,
qt/qscilexercss.h:
Updated the CSS lexer for Scintilla v3.23.
[011fba6d668d]
* qt/qscilexercpp.h:
Fixed a couple of documentation typos.
[7c2d04c76bd6]
* NEWS, Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp,
qt/qscilexercpp.h:
Updated the C++ lexer for Scintilla v3.23.
[ad93ee355639]
2012-11-24 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp, qt/qscilexercpp.h:
Updated the styles for the C++ lexer.
[153429503998]
2012-11-23 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintilla.sip, qt/PlatQt.cpp,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Added CallTipsPosition, callTipsPosition() and
setCallTipsPosition().
[7e5602869fee]
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.h:
Added SquigglePixmapIndicator to QsciScintilla::IndicatorStyle.
[ad98a5396151]
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added WrapFlagInMargin to QsciScintilla::WrapVisualFlag.
[a38c75c45fb3]
* NEWS, qt/PlatQt.cpp, qt/qsciscintilla.cpp, qt/qscistyle.cpp:
Created a back door to pass the Qt weight of a font avoiding lossy
conversions between Qt weights and Scintilla weights. The default
behaviour is now SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE which is a
change but reflects what people really expect.
[78ce86e97ad3]
2012-11-21 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Updated the constants from Scintilla v3.23.
[a3a0768af999]
* NEWS, Python/configure.py, include/Platform.h, lib/README.doc,
qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/PlatQt.cpp, qt/SciClasses.cpp,
qt/ScintillaQt.cpp, qt/qscintilla.pro, src/ExternalLexer.h,
src/XPM.cxx, src/XPM.h:
Updated the platform support so that it compiles (but untested).
[abae8e56a6ea]
2012-11-20 Phil Thompson <phil@riverbankcomputing.com>
* cocoa/InfoBar.h, cocoa/InfoBar.mm, cocoa/PlatCocoa.h,
cocoa/PlatCocoa.mm, cocoa/QuartzTextStyle.h,
cocoa/QuartzTextStyleAttribute.h, cocoa/ScintillaCocoa.h,
cocoa/ScintillaCocoa.mm,
cocoa/ScintillaFramework/English.lproj/InfoPlist.strings, cocoa/Scin
tillaFramework/ScintillaFramework.xcodeproj/project.pbxproj,
cocoa/ScintillaTest/AppController.mm,
cocoa/ScintillaTest/English.lproj/InfoPlist.strings,
cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj,
cocoa/ScintillaView.h, cocoa/ScintillaView.mm,
cocoa/checkbuildosx.sh, delbin.bat, delcvs.bat,
doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/ScintillaRelated.html,
doc/ScintillaToDo.html, doc/annotations.png, doc/index.html,
doc/styledmargin.png, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx,
gtk/makefile, include/Face.py, include/ILexer.h, include/Platform.h,
include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface,
include/ScintillaWidget.h, lexers/LexAVS.cxx, lexers/LexAda.cxx,
lexers/LexAsm.cxx, lexers/LexBash.cxx, lexers/LexBasic.cxx,
lexers/LexCPP.cxx, lexers/LexCSS.cxx, lexers/LexCoffeeScript.cxx,
lexers/LexD.cxx, lexers/LexECL.cxx, lexers/LexFortran.cxx,
lexers/LexHTML.cxx, lexers/LexLua.cxx, lexers/LexMMIXAL.cxx,
lexers/LexMPT.cxx, lexers/LexNsis.cxx, lexers/LexOScript.cxx,
lexers/LexOthers.cxx, lexers/LexPO.cxx, lexers/LexPascal.cxx,
lexers/LexPerl.cxx, lexers/LexRuby.cxx, lexers/LexSQL.cxx,
lexers/LexScriptol.cxx, lexers/LexSpice.cxx, lexers/LexTADS3.cxx,
lexers/LexTCL.cxx, lexers/LexTCMD.cxx, lexers/LexVHDL.cxx,
lexers/LexVisualProlog.cxx, lexers/LexYAML.cxx,
lexlib/CharacterSet.h, lexlib/LexAccessor.h,
lexlib/PropSetSimple.cxx, macosx/ExtInput.cxx, macosx/ExtInput.h,
macosx/PlatMacOSX.cxx, macosx/PlatMacOSX.h,
macosx/QuartzTextLayout.h, macosx/QuartzTextStyle.h,
macosx/QuartzTextStyleAttribute.h,
macosx/SciTest/English.lproj/InfoPlist.strings,
macosx/SciTest/English.lproj/main.xib, macosx/SciTest/Info.plist,
macosx/SciTest/SciTest.xcode/project.pbxproj,
macosx/SciTest/SciTest_Prefix.pch, macosx/SciTest/main.cpp,
macosx/SciTest/version.plist, macosx/ScintillaCallTip.cxx,
macosx/ScintillaCallTip.h, macosx/ScintillaListBox.cxx,
macosx/ScintillaListBox.h, macosx/ScintillaMacOSX.cxx,
macosx/ScintillaMacOSX.h, macosx/TCarbonEvent.cxx,
macosx/TCarbonEvent.h, macosx/TRect.h, macosx/TView.cxx,
macosx/TView.h, macosx/deps.mak, macosx/makefile,
src/AutoComplete.cxx, src/AutoComplete.h, src/CallTip.cxx,
src/CallTip.h, src/Catalogue.cxx, src/CellBuffer.cxx,
src/CellBuffer.h, src/CharClassify.cxx, src/CharClassify.h,
src/Decoration.cxx, src/Document.cxx, src/Document.h,
src/Editor.cxx, src/Editor.h, src/ExternalLexer.h,
src/FontQuality.h, src/Indicator.cxx, src/Indicator.h,
src/LexGen.py, src/LineMarker.cxx, src/LineMarker.h,
src/PerLine.cxx, src/PerLine.h, src/PositionCache.cxx,
src/PositionCache.h, src/RESearch.cxx, src/RunStyles.cxx,
src/SciTE.properties, src/ScintillaBase.cxx, src/ScintillaBase.h,
src/SplitVector.h, src/Style.cxx, src/Style.h,
src/UniConversion.cxx, src/UniConversion.h, src/ViewStyle.cxx,
src/ViewStyle.h, src/XPM.cxx, src/XPM.h, test/README,
test/examples/x.cxx, test/examples/x.cxx.styled, test/lexTests.py,
test/simpleTests.py, test/unit/makefile,
test/unit/testCharClassify.cxx, test/unit/testRunStyles.cxx, tgzsrc,
version.txt, win32/CheckD2D.cxx, win32/PlatWin.cxx, win32/PlatWin.h,
win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/makefile,
win32/scintilla.mak, win32/scintilla_vc6.mak, zipsrc.bat:
Initial merge of Scintilla v3.23.
[b116f361ac01]
* example-Qt4/application.pro, example-Qt4/application.qrc, example-
Qt4/images/copy.png, example-Qt4/images/cut.png, example-
Qt4/images/new.png, example-Qt4/images/open.png, example-
Qt4/images/paste.png, example-Qt4/images/save.png, example-
Qt4/main.cpp, example-Qt4/mainwindow.cpp, example-Qt4/mainwindow.h:
Merged the 2.6 maintenance branch with the trunk.
[0bf4f7453c68]
2012-11-14 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, example-Qt4Qt5/application.pro, qt/qsciscintillabase.cpp:
Fixed the linking of the example on OS/X.
[e1d1f43fae71] <2.6-maint>
2012-11-12 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, qt/PlatQt.cpp, qt/qscimacro.cpp, qt/qsciscintilla.cpp,
qt/qscistyle.cpp:
Removed all calls that are deprecated in Qt5. The build system now
supports cross-compilation to the Raspberry Pi.
[afef9d2b3ab1] <2.6-maint>
2012-11-02 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexersql.h:
Added comments to the QsciLexerSQL documentation stating that
additional keywords must be defined using lower case.
[79a9274b77c3] <2.6-maint>
2012-10-09 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, lib/ed.py, qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Added a replace option to the test editor's find commands. Finished
implementing findFirstInSelection().
[80df6cc89bae] <2.6-maint>
* lib/ed.py:
Added the Find, Find in Selection and Find Next actions to the test
editor.
[4aad56aedbea] <2.6-maint>
2012-10-03 Phil Thompson <phil@riverbankcomputing.com>
* lib/ed.py:
Added an internal copy of the hackable Python test editor.
[a67a6fe99937] <2.6-maint>
2012-09-27 Phil Thompson <phil@riverbankcomputing.com>
* lib/gen_python3_api.py, qsci/api/python/Python-3.3.api:
Fixed the gen_python3_api.py script to be able to exclude module
hierachies. Added the API file for Python v3.3.
[06bbb2d1c227] <2.6-maint>
2012-09-22 Phil Thompson <phil@riverbankcomputing.com>
* qt/ListBoxQt.cpp:
Fixed a problem building against versions of Qt4 prior to v4.7.
[7bf93d60a50b] <2.6-maint>
2012-09-18 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added setOverwriteMode() and overwriteMode() to QsciScintilla.
[1affc53d2d88] <2.6-maint>
2012-09-14 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintillabase.cpp:
Disable the use of QMacPasteboardMime for Qt v5-beta1.
[a6625d5928c6] <2.6-maint>
2012-08-24 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexerperl.cpp, qt/qscilexerperl.h:
Fixed auto-indentation for Perl.
[5eb1d97f95d6] <2.6-maint>
2012-08-13 Phil Thompson <phil@riverbankcomputing.com>
* lexlib/CharacterSet.h:
Removed an incorrect assert() in the main Scintilla code.
[1aaf5e09d4b2] <2.6-maint>
2012-08-09 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintilla.sip, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Added QsciScintilla::wordAtLineIndex().
[0c5d77aef4f7] <2.6-maint>
2012-07-19 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla.pro, qt/qsciscintillabase.cpp:
Fixed key handling on Linux with US international layout which
generates non-ASCII sequences for quote characters.
[061ab2c5bea3] <2.6-maint>
2012-06-20 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.6.2 for changeset f9d3d982c20f
[a5bb033cd9e0] <2.6-maint>
* NEWS:
Released as v2.6.2.
[f9d3d982c20f] [2.6.2] <2.6-maint>
2012-06-19 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintillabase.cpp:
Fixed pasting of text in UTF8 mode (and hopefully Latin1 mode as
well).
[6df653daef18] <2.6-maint>
* qt/qsciscintillabase.cpp:
Rectangular selections are now always encoded as plain/text with an
explicit, and separate, marker to indicate that it is rectangular.
[012a0b2ca89f] <2.6-maint>
2012-06-09 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintillabase.cpp:
Used the Mac method of marking rectangular selections as the '\0'
Scintilla hack just doesn't work with Qt.
[75020a35b5eb] <2.6-maint>
* qt/qscintilla.pro:
Bumped the library version number.
[12f21729e254] <2.6-maint>
2012-06-07 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintillabase.cpp:
Improved the support for rectangular selections and the
interoperability with other Scintilla based editors.
[a42942b57fb7] <2.6-maint>
* qt/qsciscintillabase.cpp:
Fixed the middle button pasting of rectangular selections.
[db58aa6c6d7d] <2.6-maint>
* qt/qscidocument.cpp:
Fixed a bug that seemed to mean the initial EOL mode was always
UNIX.
[88561cd29a60] <2.6-maint>
* qt/qsciscintillabase.cpp:
Line endings are properly translated when dropping text.
[d21994584e87] <2.6-maint>
2012-06-04 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, qt/qsciprinter.h:
The Python bindings now build against Qt5.
[ff2a74e5aec2] <2.6-maint>
2012-04-04 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, NEWS, build.py, example-Qt4/application.pro, example-
Qt4/application.qrc, example-Qt4/images/copy.png, example-
Qt4/images/cut.png, example-Qt4/images/new.png, example-
Qt4/images/open.png, example-Qt4/images/paste.png, example-
Qt4/images/save.png, example-Qt4/main.cpp, example-
Qt4/mainwindow.cpp, example-Qt4/mainwindow.h, example-
Qt4Qt5/application.pro, example-Qt4Qt5/application.qrc, example-
Qt4Qt5/images/copy.png, example-Qt4Qt5/images/cut.png, example-
Qt4Qt5/images/new.png, example-Qt4Qt5/images/open.png, example-
Qt4Qt5/images/paste.png, example-Qt4Qt5/images/save.png, example-
Qt4Qt5/main.cpp, example-Qt4Qt5/mainwindow.cpp, example-
Qt4Qt5/mainwindow.h, lib/LICENSE.GPL2, lib/LICENSE.GPL3,
lib/LICENSE.commercial.short, lib/LICENSE.gpl.short, lib/README,
lib/README.doc, lib/qscintilla.dxy, qt/PlatQt.cpp,
qt/qscintilla.pro:
Ported to Qt v5.
[ff3710487c3e] <2.6-maint>
2012-04-02 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciapis.cpp:
Worked around an obscure Qt (or compiler) bug when handling call
tips.
[e6c7edcfdfb9] <2.6-maint>
2012-03-04 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qscilexer.sip, Python/sip/qscilexerbash.sip,
Python/sip/qscilexerbatch.sip, Python/sip/qscilexercpp.sip,
Python/sip/qscilexercss.sip, Python/sip/qscilexerd.sip,
Python/sip/qscilexerdiff.sip, Python/sip/qscilexerhtml.sip,
Python/sip/qscilexermakefile.sip, Python/sip/qscilexerperl.sip,
Python/sip/qscilexerpov.sip, Python/sip/qscilexerproperties.sip,
Python/sip/qscilexertex.sip, Python/sip/qscilexerverilog.sip,
qt/qscilexer.h, qt/qscilexerbash.h, qt/qscilexerbatch.h,
qt/qscilexercpp.h, qt/qscilexercss.h, qt/qscilexerd.h,
qt/qscilexerdiff.h, qt/qscilexerhtml.h, qt/qscilexermakefile.h,
qt/qscilexerperl.h, qt/qscilexerpov.h, qt/qscilexerproperties.h,
qt/qscilexertex.h, qt/qscilexerverilog.h:
QSciLexer::wordCharacters() is now part of the public API.
[933ef6a11ee6] <2.6-maint>
2012-02-23 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexercpp.h:
Updated the documentation for QsciLexerCpp::keywords() so that it
describes which sets are supported.
[4e0cb0250dad] <2.6-maint>
2012-02-21 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla.pro, src/Document.cxx:
Some Scintilla fixes for the SCI_NAMESPACE support.
[611ffd016585] <2.6-maint>
2012-02-10 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.6.1 for changeset 47d8fdf44946
[aa843f471972] <2.6-maint>
* NEWS:
Updated the NEWS file. Released as v2.6.1.
[47d8fdf44946] [2.6.1] <2.6-maint>
2012-01-26 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
Don't implement shortcut overrides for the standard context menu
shortcuts. Instead leave it to the check against bound keys.
[e8ccaf398640] <2.6-maint>
2012-01-19 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciapis.cpp:
APIs now allow for whitespace between the end of a word and the
opening parenthesis of the argument list.
[b09b25f38411] <2.6-maint>
2012-01-11 Phil Thompson <phil@riverbankcomputing.com>
* qt/SciClasses.cpp:
Fixed the handling of auto-completion lists on Windows.
[131138b43c85] <2.6-maint>
2011-12-07 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qscicommandset.sip, qt/qscicommandset.cpp,
qt/qscicommandset.h, qt/qscintilla.pro:
Improved the Qt v3 port so that the signatures don't need to be
changed. Bumped the .so version number.
[3171bb05b1d8] <2.6-maint>
2011-12-06 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, NEWS, Python/sip/qscicommandset.sip, include/Platform.h,
qt/ListBoxQt.cpp, qt/qscicommandset.cpp, qt/qscicommandset.h,
qt/qsciscintilla.cpp, qt/qsciscintilla.h, src/XPM.cxx:
Fixed building against Qt v3.
[74df75a62f5c] <2.6-maint>
2011-11-21 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, include/Platform.h, qt/ListBoxQt.cpp, qt/ListBoxQt.h,
qt/PlatQt.cpp, qt/SciClasses.cpp, qt/SciClasses.h,
qt/SciNamespace.h, qt/ScintillaQt.cpp, qt/ScintillaQt.h,
qt/qscintilla.pro, qt/qsciscintilla.h, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Added support for SCI_NAMESPACE to allow all internal Scintilla
classes to be placed in the Scintilla namespace.
[ab7857131e35] <2.6-maint>
2011-11-11 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.6 for changeset 8b119c4f69d0
[1a5dd31e773e]
* NEWS, lib/README.doc:
Updated the NEWS file. Updated the introductory documentation.
Released as v2.6.
[8b119c4f69d0] [2.6]
2011-11-07 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qscicommandset.sip, Python/sip/qsciscintilla.sip,
qt/qscicommandset.cpp, qt/qscicommandset.h, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added QsciCommandSet::boundTo(). Ordinary keys and those bound to
commands now override any shortcuts.
[ba98bc555aca]
2011-10-28 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts:
More updated German translations from Detlev.
[9ff20df1997b]
2011-10-27 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts,
qt/qscintilla_es.qm, qt/qscintilla_es.ts, qt/qscintilla_fr.qm,
qt/qscintilla_pt_br.qm, qt/qscintilla_ru.qm:
Updated Spanish translations from Jaime. Updated German translations
from Detlev.
[4903315d96b1]
2011-10-23 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qscicommand.sip:
Fixed SelectAll in the Python bindings.
[b6f0a46e0eac]
* qt/ScintillaQt.cpp, qt/qsciscintillabase.cpp:
Fixed drag and drop (specifically so that copying works on OS/X
again).
[6ab90cb63b2b]
2011-10-22 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp:
Fixed a display bug with kerned fonts.
[a746e319d9cd]
* qt/qsciscintilla.cpp:
The foreground and background colours of selected text are now taken
from the application palette.
[7f6c34ad8d27]
* NEWS:
Updated the NEWS file.
[1717c6d59b12]
* Python/sip/qsciscintilla.sip, qt/qscicommand.h,
qt/qscicommandset.cpp, qt/qscintilla_cs.ts, qt/qscintilla_de.ts,
qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts,
qt/qscintilla_ru.ts, qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Renamed QsciCommand::SelectDocument to SelectAll. Added
QsciScintilla::createStandardContextMenu().
[c42fa7e83b07]
2011-10-21 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the .ts files.
[92d0b6ddf371]
* qt/qscicommandset.cpp:
Completed the OS/X specific key bindings.
[964fa889b807]
2011-10-20 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscicommandset.cpp, qt/qsciscintillabase.cpp:
Fixed the support for SCMOD_META. Started to add the correct OS/X
key bindings as the default.
[0073fa86a5a0]
* Python/sip/qscicommand.sip, qt/qscicommand.h, qt/qscicommandset.cpp:
All available commands are now defined in the standard command set.
[7c7b81b55f0e]
* Python/sip/qscicommand.sip, qt/qscicommand.h:
Completed the QsciCommand::Command documentation. Added the members
to QsciCommand.Command in the Python bindings.
[0ca6ff576c21]
2011-10-18 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qscicommandset.sip, qt/qscicommand.h,
qt/qscicommandset.cpp, qt/qscicommandset.h:
Added QsciCommandSet::find().
[e75565018b90]
* NEWS, Python/sip/qscicommand.sip, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qscicommand.cpp,
qt/qscicommand.h, qt/qscicommandset.cpp, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added Command, command() and execute() to QsciCommand. Backed out
the high level support for moving the selection up and down.
[4852ee57353e]
2011-10-17 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexersql.cpp:
Fix for the changed fold at else property in the SQL lexer.
[e65a458cd9d8]
* NEWS, Python/sip/qscilexerpython.sip, qt/qscilexerpython.cpp,
qt/qscilexerpython.h:
Added highlightSubidentifiers() and setHighlightSubidentifiers() to
the Python lexer.
[b397695bc2ab]
* NEWS, Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp,
qt/qscilexercpp.h:
Added support for triple quoted strings to the C++ lexer.
[687d04948c5d]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added low level support for identifiers, scrolling to the start and
end. Added low and hight level support for moving the selection up
and down.
[3ac1ccfad039]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added low and high level support for margin options.
[f3cd3244cecd]
2011-10-14 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Updated the brace matching support to handle indicators.
[7e4a4d3529a8]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added SCI_SETEMPTYSELECTION.
[879b97c676a4]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Updated the support for indicators.
[b3643569a827]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added SCI_MARKERSETBACKSELECTED and SCI_MARKERENABLEHIGHLIGHT.
[7127ee82d128]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Added low and high-level support for RGBA images (ie. QImage).
[7707052913ef]
2011-10-13 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qscilexerlua.sip, qt/qscilexerlua.cpp,
qt/qscilexerlua.h:
Updated the Lua lexer.
[710e50d5692c]
* NEWS, Python/sip/qscilexerperl.sip, qt/qscilexerperl.cpp,
qt/qscilexerperl.h:
Updated the Perl lexer.
[6d16e2e9354b]
2011-10-11 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py, cocoa/ScintillaCallTip.h,
cocoa/ScintillaCallTip.mm, cocoa/ScintillaListBox.h,
cocoa/ScintillaListBox.mm, cocoa/res/info_bar_bg.png,
cocoa/res/mac_cursor_busy.png, cocoa/res/mac_cursor_flipped.png,
macosx/SciTest/English.lproj/InfoPlist.strings,
macosx/SciTest/English.lproj/main.nib/classes.nib,
macosx/SciTest/English.lproj/main.nib/info.nib,
macosx/SciTest/English.lproj/main.nib/objects.xib,
macosx/SciTest/English.lproj/main.xib, qt/ListBoxQt.cpp,
qt/ListBoxQt.h, qt/PlatQt.cpp, qt/qscintilla.pro, src/XPM.cxx,
src/XPM.h:
Some fixes left over from the merge of v2.29. Added support for RGBA
images so that the merged version compiles.
[16c6831c337f]
* cocoa/InfoBar.mm, cocoa/PlatCocoa.h, cocoa/PlatCocoa.mm,
cocoa/QuartzTextLayout.h, cocoa/QuartzTextStyle.h,
cocoa/QuartzTextStyleAttribute.h, cocoa/ScintillaCocoa.h,
cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework
.xcodeproj/project.pbxproj, cocoa/ScintillaTest/AppController.mm,
cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj,
cocoa/ScintillaView.h, cocoa/ScintillaView.mm, doc/SciCoding.html,
doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/ScintillaRelated.html,
doc/ScintillaToDo.html, doc/index.html, gtk/PlatGTK.cxx,
gtk/ScintillaGTK.cxx, gtk/makefile, include/Platform.h,
include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface,
lexers/LexAU3.cxx, lexers/LexCOBOL.cxx, lexers/LexCPP.cxx,
lexers/LexConf.cxx, lexers/LexHTML.cxx, lexers/LexInno.cxx,
lexers/LexLua.cxx, lexers/LexMagik.cxx, lexers/LexMarkdown.cxx,
lexers/LexMatlab.cxx, lexers/LexModula.cxx, lexers/LexOthers.cxx,
lexers/LexPerl.cxx, lexers/LexPowerPro.cxx, lexers/LexPython.cxx,
lexers/LexSQL.cxx, lexers/LexTeX.cxx, lexers/LexVHDL.cxx,
lexers/LexVerilog.cxx, lexlib/Accessor.cxx, lexlib/CharacterSet.h,
lexlib/PropSetSimple.cxx, lexlib/SparseState.h,
lexlib/StyleContext.h, lexlib/WordList.cxx, macosx/PlatMacOSX.cxx,
macosx/PlatMacOSX.h, macosx/SciTest/SciTest.xcode/project.pbxproj,
macosx/ScintillaMacOSX.h, macosx/makefile, src/CallTip.cxx,
src/ContractionState.cxx, src/ContractionState.h,
src/Decoration.cxx, src/Document.cxx, src/Document.h,
src/Editor.cxx, src/Editor.h, src/Indicator.cxx, src/Indicator.h,
src/KeyMap.cxx, src/KeyMap.h, src/LexGen.py, src/LineMarker.cxx,
src/LineMarker.h, src/PerLine.cxx, src/PositionCache.cxx,
src/PositionCache.h, src/RESearch.cxx, src/RunStyles.cxx,
src/RunStyles.h, src/ScintillaBase.cxx, src/Style.cxx, src/Style.h,
src/ViewStyle.cxx, src/ViewStyle.h, src/XPM.cxx, src/XPM.h,
test/XiteMenu.py, test/XiteWin.py, test/examples/x.html,
test/examples/x.html.styled, test/performanceTests.py,
test/simpleTests.py, test/unit/testContractionState.cxx,
test/unit/testRunStyles.cxx, version.txt, win32/PlatWin.cxx,
win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/scintilla.mak:
Merged Scintilla v2.29.
[750c2c3cef72]
* Merged the v2.5 maintenance branch back into the trunk.
[eab39863675f]
2011-06-24 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexer.cpp, qt/qscilexerbash.cpp, qt/qscilexerbatch.cpp,
qt/qscilexercmake.cpp, qt/qscilexercpp.cpp, qt/qscilexercsharp.cpp,
qt/qscilexercss.cpp, qt/qscilexerd.cpp, qt/qscilexerfortran77.cpp,
qt/qscilexerhtml.cpp, qt/qscilexerjavascript.cpp,
qt/qscilexerlua.cpp, qt/qscilexermakefile.cpp,
qt/qscilexermatlab.cpp, qt/qscilexerpascal.cpp,
qt/qscilexerperl.cpp, qt/qscilexerpostscript.cpp,
qt/qscilexerpov.cpp, qt/qscilexerproperties.cpp,
qt/qscilexerpython.cpp, qt/qscilexerruby.cpp, qt/qscilexerspice.cpp,
qt/qscilexersql.cpp, qt/qscilexertcl.cpp, qt/qscilexerverilog.cpp,
qt/qscilexervhdl.cpp, qt/qscilexerxml.cpp, qt/qscilexeryaml.cpp:
Changed the default fonts for MacOS so that they are larger and
similar to the Windows defaults.
[9c37c180ba8d] <2.5-maint>
* build.py:
Fixed the build system for MacOS as the development platform.
[3352479980c5] <2.5-maint>
2011-05-13 Phil Thompson <phil@riverbankcomputing.com>
* lib/README.doc:
Updated the licensing information in the main documentation.
[d31c561e0b7c] <2.5-maint>
* lib/LICENSE.GPL2, lib/LICENSE.GPL3, lib/LICENSE.gpl.short:
Removed some out of date links from the license information. Updated
the dates of some copyright notices.
[a84451464396] <2.5-maint>
2011-05-10 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added the optional posix flag to QsciScintilla::findFirst().
[ad6064227d06] <2.5-maint>
2011-04-29 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py, qt/qscintilla.pro, qt/qsciscintilla.cpp,
qt/qscistyle.cpp, qt/qscistyle.h, qt/qscistyledtext.cpp,
qt/qscistyledtext.h:
Fixed problems with QsciStyle and QsciStyledText when used with more
than one QsciScintilla instance.
[8bac389fb7ae] <2.5-maint>
2011-04-22 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciglobal.h:
Changed the handling of QT_BEGIN_NAMESPACE etc. as it isn't defined
in early versions of Qt v4.
[595c8c6cdfd2] <2.5-maint>
2011-04-17 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.5.1 for changeset c8648c2c0c7f
[298153b3d40e] <2.5-maint>
* NEWS:
Released as v2.5.1.
[c8648c2c0c7f] [2.5.1] <2.5-maint>
2011-04-16 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_de.ts, qt/qscintilla_es.ts:
Updated translations from Detlev and Jaime.
[9436bea546c9] <2.5-maint>
2011-04-14 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_es.qm,
qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm, qt/qscintilla_ru.qm:
Updated the compiled translation files.
[c5d39aca8f51] <2.5-maint>
2011-04-13 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qscilexermatlab.sip, Python/sip/qscilexeroctave.sip,
Python/sip/qscimodcommon.sip:
Added Python bindings for QsciLexerMatlab abd QsciLexerOctave.
[22d0ed0fab2a] <2.5-maint>
* NEWS, qt/qscilexermatlab.cpp, qt/qscilexermatlab.h,
qt/qscilexeroctave.cpp, qt/qscilexeroctave.h, qt/qscintilla.pro,
qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Added QsciLexerMatlab and QsciLexerOctave.
[40d3053334de] <2.5-maint>
2011-04-09 Phil Thompson <phil@riverbankcomputing.com>
* Merged the font strategy fix from the trunk.
[d270e1b107d2] <2.5-maint>
* NEWS:
Updated the NEWS file.
[8f32ff4cdd1f] <2.5-maint>
2011-04-07 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp, qt/qscintilla.pro:
Fixed the handling of the font quality setting so that the default
behavior (particularly on Windows) is the same as earlier versions.
[87ae98d2674b]
2011-03-29 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.5 for changeset 9d94a76f783e
[e4807fd91f6c]
* NEWS:
Released as v2.5.
[9d94a76f783e] [2.5]
2011-03-28 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/configure.py:
Added support for the protected-is-public hack to configure.py.
[beee52b8e10a]
2011-03-27 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp:
Fixed an OS/X build problem.
[ac7f1d3c9abe]
2011-03-26 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added replaceSelectedText() to QsciScintilla.
[3c00a19d6571]
2011-03-25 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py, Python/sip/qsciapis.sip,
Python/sip/qscilexer.sip, Python/sip/qscilexercustom.sip,
Python/sip/qscimod4.sip, Python/sip/qsciprinter.sip,
Python/sip/qsciscintilla.sip, Python/sip/qscistyle.sip,
qt/qsciapis.cpp, qt/qsciapis.h, qt/qscilexercustom.cpp,
qt/qscilexercustom.h, qt/qsciscintilla.cpp, qt/qsciscintilla.h,
qt/qscistyle.cpp, qt/qscistyle.h:
Went through the API making sure all optional arguments had
consistent and meaningful names. Enabled keyword support in the
Python bindings.
[d60fa45e40b7]
2011-03-23 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts, qt/qscintilla_es.qm,
qt/qscintilla_es.ts:
Updated German translations from Detlev. Updated Spanish
translations from Jaime.
[f64c97749375]
2011-03-21 Phil Thompson <phil@riverbankcomputing.com>
* lexers/LexModula.cxx, lexlib/SparseState.h, qt/qscintilla_cs.ts,
qt/qscintilla_de.ts, qt/qscintilla_es.ts, qt/qscintilla_fr.ts,
qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts,
test/unit/testSparseState.cxx, vcbuild/SciLexer.dsp:
Updated the translation files. Updated the repository for the new
and removed Scintilla v2.25 files.
[6eb77ba7c57c]
* NEWS, Python/sip/qscilexercpp.sip, Python/sip/qsciscintillabase.sip,
qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qscintilla.pro,
qt/qsciscintillabase.h:
Added support for raw string to the C++ lexer.
[f83112ced877]
* NEWS, cocoa/Framework.mk, cocoa/PlatCocoa.mm,
cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework
.xcodeproj/project.pbxproj, cocoa/ScintillaTest/AppController.mm,
cocoa/ScintillaView.h, cocoa/ScintillaView.mm,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/ScintillaRelated.html, doc/index.html, gtk/PlatGTK.cxx,
gtk/makefile, include/Platform.h, include/SciLexer.h,
include/Scintilla.iface, lexers/LexAsm.cxx, lexers/LexBasic.cxx,
lexers/LexCPP.cxx, lexers/LexD.cxx, lexers/LexFortran.cxx,
lexers/LexOthers.cxx, lexlib/CharacterSet.h, lib/README.doc,
macosx/SciTest/main.cpp, src/AutoComplete.cxx, src/Catalogue.cxx,
src/Document.cxx, src/Editor.cxx, src/LexGen.py, test/unit/makefile,
version.txt, win32/PlatWin.cxx, win32/ScintRes.rc,
win32/scintilla.mak, win32/scintilla_vc6.mak:
Merged Scintilla v2.25.
[e01dec109182]
2011-03-14 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_es.qm, qt/qscintilla_es.ts:
Updated Spanish translations from Jaime Seuma.
[b83a3ca4f3e6]
2011-03-12 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts:
Updated German translations from Detlev.
[e5729134a47b]
2011-03-11 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the translation source files.
[51e8ee8b1ba9]
* NEWS, Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp,
qt/qscilexercpp.h:
Added support for the inactive styles of QsciLexerCPP.
[59b566d322af]
* qt/qscilexercpp.cpp, qt/qscilexercpp.h:
Inlined all existing property getters in QsciLexerCPP.
[1117e5105e5e]
2011-03-10 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
Fixed QsciScintilla::setContractedFolds() so that it actually
updates the display to show the new state.
[5079f59a0103]
* NEWS, Python/sip/qscilexerhtml.sip, qt/qscilexerhtml.cpp,
qt/qscilexerhtml.h:
Updated QsciLexerHTML.
[0707f4bc7855]
* NEWS, Python/sip/qscilexerproperties.sip,
qt/qscilexerproperties.cpp, qt/qscilexerproperties.h:
Updated QsciLexerProperties.
[1dfe5e2d4913]
* NEWS, Python/sip/qscilexerpython.sip, Python/sip/qscilexerruby.sip,
Python/sip/qscilexersql.sip, Python/sip/qscilexertcl.sip,
Python/sip/qscilexertex.sip, qt/qscilexerpython.cpp,
qt/qscilexerpython.h, qt/qscilexerruby.h, qt/qscilexersql.h,
qt/qscilexertcl.h, qt/qscilexertex.cpp, qt/qscilexertex.h:
Updated QsciLexerPython.
[bc96868a1a6f]
* NEWS, Python/sip/qscilexerruby.sip, Python/sip/qscilexersql.sip,
Python/sip/qscilexertcl.sip, Python/sip/qscilexertex.sip,
qt/qscilexerruby.cpp, qt/qscilexerruby.h, qt/qscilexersql.h,
qt/qscilexertcl.h, qt/qscilexertex.h:
The new lexer property setters are no longer virtual slots.
[c3e88383e8d3]
* qt/qscilexersql.cpp, qt/qscilexersql.h:
Restored the default behaviour of setFoldCompact() for QsciLexerSQL.
[c74aef0f7eb4]
* NEWS, Python/sip/qscilexertcl.sip, qt/qscilexersql.h,
qt/qscilexertcl.cpp, qt/qscilexertcl.h:
Updated QsciLexerTCL.
[43a150bb40d5]
* NEWS, Python/sip/qscilexertex.sip, qt/qscilexertex.cpp,
qt/qscilexertex.h:
Updated QsciLexerTeX.
[1457935cee44]
* qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts,
qt/qscintilla_es.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm,
qt/qscintilla_ru.qm:
Updated German translations from Detlev.
[ad4a4bd4855b]
2011-03-08 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the .ts translation files.
[8d70033d07e2]
* NEWS, Python/sip/qscilexersql.sip, qt/qscilexersql.cpp,
qt/qscilexersql.h:
Updated QsciLexerSQL.
[8bc79d109c88]
* NEWS, Python/sip/qscilexercss.sip, qt/qscilexercss.cpp,
qt/qscilexercss.h:
Updated QsciLexerCSS.
[f3adcb31b1a9]
* NEWS, Python/sip/qscilexerd.sip, qt/qscilexerd.cpp, qt/qscilexerd.h:
Updated QsciLexerD.
[82d8a6561943]
* Python/sip/qscilexerlua.sip, qt/qscilexerlua.cpp, qt/qscilexerlua.h:
Updated QsciLexerLua.
[103f5881c642]
* NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qsciscintillabase.h:
Added support for the QsciScintillaBase::SCN_HOTSPOTRELEASECLICK()
signal.
[1edd56e105cd]
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added low-level support for SCLEX_MARKDOWN, SCLEX_TXT2TAGS and
SCLEX_A68K.
[de92a613cea7]
* Python/sip/qsciscintillabase.sip, qt/qscicommand.cpp,
qt/qsciscintilla.cpp, qt/qsciscintillabase.h:
Added support for SCMOD_SUPER as the Qt Meta key modifier.
[24e745cddeea]
* NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.h:
Updated the QsciScintillaBase::SCN_UPDATEUI() signal. Added low-
level support for SC_MOD_LEXERSTATE.
[0a341fcb0545]
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added low-level support for the updated property functions.
[f33d9c271992]
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added low-level support for SCI_GETLEXERLANGUAGE and
SCI_PRIVATELEXERCALL.
[ac69f8c2ef3b]
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added low-level support for the new stick caret options.
[693ac6c68e6f]
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added low-level support for SCI_AUTOCGETCURRENTTEXT.
[2634827cdb4e]
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added low-level support for SC_SEL_THIN.
[4225a944dc14]
* qt/qsciscintilla.cpp:
Folding now works again.
[3972053c646e]
2011-03-07 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added low-level support for SCI_VERTICALCENTRECARET.
[92d5ecb154d1]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added setContractedFolds() and contractedFolds() to QsciScintilla.
[46eb254c6200]
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added low-level support for SCI_CHANGELEXERSTATE.
[edd899d77aa7]
* Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h,
qt/qsciscintillabase.h:
Added low-level support for SCI_CHARPOSITIONFROMPOINT and
SCI_CHARPOSITIONFROMPOINTCLOSE.
[5a000cf4bfba]
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added low-level support for multiple selections.
[dedda8cbf413]
* Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added SCI_GETTAG.
[775d0058f00e]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added QsciScintilla::setFirstVisibleLine().
[8b662ffe3fb6]
* Python/sip/qsciscintillabase.sip, qt/PlatQt.cpp,
qt/qsciscintillabase.h:
Added low-level support for setting the font quality.
[933e8b01eda6]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added high-level support for line wrap indentation modes.
[1faa3b2fa31e]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added high-level support for extra ascent and descent space. Added
high-level support for whitespace size, foreground and background.
[537c551a79ef]
* Python/sip/qsciscintillabase.sip, qt/PlatQt.cpp,
qt/qsciscintillabase.h:
Updated the low level support for cursors.
[2ce685a89697]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h,
qt/qsciscintillabase.h:
Updated the support for markers and added FullRectangle,
LeftRectangle and Underline to the MarkerSymbol enum.
[4c626f8189bf]
2011-03-06 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/ScintillaQt.h, qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Rectangular selections are now fully supported. The signatures of
toMimeData() and fromMimeData() have changed.
[397948f42b2e]
* NEWS:
Updated the NEWS file.
[bc75b98210f2]
* .hgignore:
Added the .hgignore file.
[77312a36220e]
* qt/qsciscintilla.cpp:
Removed the workaround for the broken annotations in Scintilla
v1.78.
[70ab4c4b7c66]
* qt/ListBoxQt.cpp:
Fixed a regression when displaying an auto-completion list.
[c38d4b97a1ca]
2011-03-04 Phil Thompson <phil@riverbankcomputing.com>
* qt/ListBoxQt.cpp, qt/PlatQt.cpp, qt/ScintillaQt.cpp,
qt/ScintillaQt.h, qt/qsciscintillabase.cpp:
Completed the merge of Scintilla v2.24.
[6890939e2da6]
* build.py, qt/qscintilla.pro:
More build system changes.
[3e9deec76c02]
* qt/qscintilla.pro, qt/qsciscintilla.cpp:
Updated the .pro file for the changed files and directory structure
in v2.24.
[274cb7017857]
* License.txt, README, bin/empty.txt, cocoa/Framework.mk,
cocoa/InfoBar.h, cocoa/InfoBar.mm, cocoa/InfoBarCommunicator.h,
cocoa/PlatCocoa.h, cocoa/PlatCocoa.mm, cocoa/QuartzTextLayout.h,
cocoa/QuartzTextStyle.h, cocoa/QuartzTextStyleAttribute.h,
cocoa/SciTest.mk, cocoa/ScintillaCallTip.h,
cocoa/ScintillaCallTip.mm, cocoa/ScintillaCocoa.h,
cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/Info.plist, cocoa/
ScintillaFramework/ScintillaFramework.xcodeproj/project.pbxproj,
cocoa/ScintillaFramework/Scintilla_Prefix.pch,
cocoa/ScintillaListBox.h, cocoa/ScintillaListBox.mm,
cocoa/ScintillaTest/AppController.h,
cocoa/ScintillaTest/AppController.mm,
cocoa/ScintillaTest/English.lproj/MainMenu.xib,
cocoa/ScintillaTest/Info.plist, cocoa/ScintillaTest/Scintilla-
Info.plist,
cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj,
cocoa/ScintillaTest/ScintillaTest_Prefix.pch,
cocoa/ScintillaTest/TestData.sql, cocoa/ScintillaTest/main.m,
cocoa/ScintillaView.h, cocoa/ScintillaView.mm, cocoa/common.mk,
delbin.bat, delcvs.bat, doc/Design.html, doc/Lexer.txt,
doc/SciBreak.jpg, doc/SciCoding.html, doc/SciRest.jpg,
doc/SciTEIco.png, doc/SciWord.jpg, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/ScintillaRelated.html, doc/ScintillaToDo.html,
doc/ScintillaUsage.html, doc/Steps.html, doc/index.html,
gtk/Converter.h, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx,
gtk/deps.mak, gtk/makefile, gtk/scintilla-marshal.c, gtk/scintilla-
marshal.h, gtk/scintilla-marshal.list, gtk/scintilla.mak,
include/Accessor.h, include/Face.py, include/HFacer.py,
include/ILexer.h, include/KeyWords.h, include/Platform.h,
include/PropSet.h, include/SString.h, include/SciLexer.h,
include/Scintilla.h, include/Scintilla.iface,
include/ScintillaWidget.h, include/WindowAccessor.h,
lexers/LexA68k.cxx, lexers/LexAPDL.cxx, lexers/LexASY.cxx,
lexers/LexAU3.cxx, lexers/LexAVE.cxx, lexers/LexAbaqus.cxx,
lexers/LexAda.cxx, lexers/LexAsm.cxx, lexers/LexAsn1.cxx,
lexers/LexBaan.cxx, lexers/LexBash.cxx, lexers/LexBasic.cxx,
lexers/LexBullant.cxx, lexers/LexCLW.cxx, lexers/LexCOBOL.cxx,
lexers/LexCPP.cxx, lexers/LexCSS.cxx, lexers/LexCaml.cxx,
lexers/LexCmake.cxx, lexers/LexConf.cxx, lexers/LexCrontab.cxx,
lexers/LexCsound.cxx, lexers/LexD.cxx, lexers/LexEScript.cxx,
lexers/LexEiffel.cxx, lexers/LexErlang.cxx, lexers/LexFlagship.cxx,
lexers/LexForth.cxx, lexers/LexFortran.cxx, lexers/LexGAP.cxx,
lexers/LexGui4Cli.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx,
lexers/LexInno.cxx, lexers/LexKix.cxx, lexers/LexLisp.cxx,
lexers/LexLout.cxx, lexers/LexLua.cxx, lexers/LexMMIXAL.cxx,
lexers/LexMPT.cxx, lexers/LexMSSQL.cxx, lexers/LexMagik.cxx,
lexers/LexMarkdown.cxx, lexers/LexMatlab.cxx,
lexers/LexMetapost.cxx, lexers/LexMySQL.cxx, lexers/LexNimrod.cxx,
lexers/LexNsis.cxx, lexers/LexOpal.cxx, lexers/LexOthers.cxx,
lexers/LexPB.cxx, lexers/LexPLM.cxx, lexers/LexPOV.cxx,
lexers/LexPS.cxx, lexers/LexPascal.cxx, lexers/LexPerl.cxx,
lexers/LexPowerPro.cxx, lexers/LexPowerShell.cxx,
lexers/LexProgress.cxx, lexers/LexPython.cxx, lexers/LexR.cxx,
lexers/LexRebol.cxx, lexers/LexRuby.cxx, lexers/LexSML.cxx,
lexers/LexSQL.cxx, lexers/LexScriptol.cxx, lexers/LexSmalltalk.cxx,
lexers/LexSorcus.cxx, lexers/LexSpecman.cxx, lexers/LexSpice.cxx,
lexers/LexTACL.cxx, lexers/LexTADS3.cxx, lexers/LexTAL.cxx,
lexers/LexTCL.cxx, lexers/LexTeX.cxx, lexers/LexTxt2tags.cxx,
lexers/LexVB.cxx, lexers/LexVHDL.cxx, lexers/LexVerilog.cxx,
lexers/LexYAML.cxx, lexlib/Accessor.cxx, lexlib/Accessor.h,
lexlib/CharacterSet.cxx, lexlib/CharacterSet.h,
lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerBase.h,
lexlib/LexerModule.cxx, lexlib/LexerModule.h,
lexlib/LexerNoExceptions.cxx, lexlib/LexerNoExceptions.h,
lexlib/LexerSimple.cxx, lexlib/LexerSimple.h, lexlib/OptionSet.h,
lexlib/PropSetSimple.cxx, lexlib/PropSetSimple.h,
lexlib/StyleContext.cxx, lexlib/StyleContext.h, lexlib/WordList.cxx,
lexlib/WordList.h, lib/README.doc, macosx/PlatMacOSX.cxx,
macosx/SciTest/SciTest.xcode/project.pbxproj,
macosx/ScintillaMacOSX.cxx, macosx/ScintillaMacOSX.h,
macosx/deps.mak, macosx/makefile, src/AutoComplete.cxx,
src/AutoComplete.h, src/CallTip.cxx, src/CallTip.h,
src/Catalogue.cxx, src/Catalogue.h, src/CellBuffer.cxx,
src/CellBuffer.h, src/CharClassify.cxx, src/CharClassify.h,
src/CharacterSet.h, src/ContractionState.cxx,
src/ContractionState.h, src/Decoration.h, src/Document.cxx,
src/Document.h, src/DocumentAccessor.cxx, src/DocumentAccessor.h,
src/Editor.cxx, src/Editor.h, src/ExternalLexer.cxx,
src/ExternalLexer.h, src/FontQuality.h, src/Indicator.cxx,
src/Indicator.h, src/KeyMap.cxx, src/KeyMap.h, src/KeyWords.cxx,
src/LexAPDL.cxx, src/LexASY.cxx, src/LexAU3.cxx, src/LexAVE.cxx,
src/LexAbaqus.cxx, src/LexAda.cxx, src/LexAsm.cxx, src/LexAsn1.cxx,
src/LexBaan.cxx, src/LexBash.cxx, src/LexBasic.cxx,
src/LexBullant.cxx, src/LexCLW.cxx, src/LexCOBOL.cxx,
src/LexCPP.cxx, src/LexCSS.cxx, src/LexCaml.cxx, src/LexCmake.cxx,
src/LexConf.cxx, src/LexCrontab.cxx, src/LexCsound.cxx,
src/LexD.cxx, src/LexEScript.cxx, src/LexEiffel.cxx,
src/LexErlang.cxx, src/LexFlagship.cxx, src/LexForth.cxx,
src/LexFortran.cxx, src/LexGAP.cxx, src/LexGen.py,
src/LexGui4Cli.cxx, src/LexHTML.cxx, src/LexHaskell.cxx,
src/LexInno.cxx, src/LexKix.cxx, src/LexLisp.cxx, src/LexLout.cxx,
src/LexLua.cxx, src/LexMMIXAL.cxx, src/LexMPT.cxx, src/LexMSSQL.cxx,
src/LexMagik.cxx, src/LexMatlab.cxx, src/LexMetapost.cxx,
src/LexMySQL.cxx, src/LexNimrod.cxx, src/LexNsis.cxx,
src/LexOpal.cxx, src/LexOthers.cxx, src/LexPB.cxx, src/LexPLM.cxx,
src/LexPOV.cxx, src/LexPS.cxx, src/LexPascal.cxx, src/LexPerl.cxx,
src/LexPowerPro.cxx, src/LexPowerShell.cxx, src/LexProgress.cxx,
src/LexPython.cxx, src/LexR.cxx, src/LexRebol.cxx, src/LexRuby.cxx,
src/LexSML.cxx, src/LexSQL.cxx, src/LexScriptol.cxx,
src/LexSmalltalk.cxx, src/LexSorcus.cxx, src/LexSpecman.cxx,
src/LexSpice.cxx, src/LexTACL.cxx, src/LexTADS3.cxx, src/LexTAL.cxx,
src/LexTCL.cxx, src/LexTeX.cxx, src/LexVB.cxx, src/LexVHDL.cxx,
src/LexVerilog.cxx, src/LexYAML.cxx, src/LineMarker.cxx,
src/LineMarker.h, src/Partitioning.h, src/PerLine.cxx,
src/PerLine.h, src/PositionCache.cxx, src/PositionCache.h,
src/PropSet.cxx, src/RESearch.cxx, src/RESearch.h,
src/RunStyles.cxx, src/SVector.h, src/SciTE.properties,
src/ScintillaBase.cxx, src/ScintillaBase.h, src/Selection.cxx,
src/Selection.h, src/SplitVector.h, src/Style.cxx, src/Style.h,
src/StyleContext.cxx, src/StyleContext.h, src/UniConversion.cxx,
src/UniConversion.h, src/ViewStyle.cxx, src/ViewStyle.h,
src/WindowAccessor.cxx, src/XPM.cxx, src/XPM.h,
test/MessageNumbers.py, test/README, test/XiteMenu.py,
test/XiteWin.py, test/examples/x.asp, test/examples/x.asp.styled,
test/examples/x.cxx, test/examples/x.cxx.styled, test/examples/x.d,
test/examples/x.d.styled, test/examples/x.html,
test/examples/x.html.styled, test/examples/x.php,
test/examples/x.php.styled, test/examples/x.py,
test/examples/x.py.styled, test/examples/x.vb,
test/examples/x.vb.styled, test/lexTests.py,
test/performanceTests.py, test/simpleTests.py, test/unit/README,
test/unit/SciTE.properties, test/unit/makefile,
test/unit/testContractionState.cxx, test/unit/testPartitioning.cxx,
test/unit/testRunStyles.cxx, test/unit/testSplitVector.cxx,
test/unit/unitTest.cxx, test/xite.py, vcbuild/SciLexer.dsp,
version.txt, win32/Margin.cur, win32/PlatWin.cxx,
win32/PlatformRes.h, win32/SciTE.properties, win32/ScintRes.rc,
win32/Scintilla.def, win32/ScintillaWin.cxx, win32/deps.mak,
win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak,
zipsrc.bat:
Merged Scintilla v2.24.
[59ca27407fd9]
2011-03-03 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py, qt/qscintilla.pro:
Updated the .so version number to 6.0.0.
[8ebe3f1fccd4]
* Makefile:
Switched the build system to Qt v4.7.2.
[47f653394ef0]
* .hgtags, lib/README.svn:
Merged the v2.4 maintenance branch.
[d00b7d9115d1]
* qsci/api/python/Python-3.2.api:
Added an API file for Python v3.2.
[8cc94408b710] <2.4-maint>
2011-02-23 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintillabase.cpp:
On X11 the control modifier is now used (instead of alt) to trigger
a rectangular selection.
[4bea3b8b8271] <2.4-maint>
2011-02-22 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscimacro.cpp:
Fixed a bug with Qt4 when loading a macro that meant that a macro
may not have a terminating '\0'.
[bbec6ef96cd2] <2.4-maint>
2011-02-06 Phil Thompson <phil@riverbankcomputing.com>
* lib/LICENSE.commercial.short, lib/LICENSE.gpl.short:
Updated the copyright notices.
[f386964f3853] <2.4-maint>
* Python/sip/qsciscintilla.sip, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Deprecated setAutoCompletionShowSingle(), added
setAutoCompletionUseSingle(). Deprecated autoCompletionShowSingle(),
added autoCompletionUseSingle().
[7dae1a33b74b] <2.4-maint>
* qt/qsciscintilla.cpp, qt/qsciscintilla.h:
QsciScintilla::setAutoCompletionCaseSensitivity() is no longer
ignored if a lexer has been set.
[92d3c5f7b825] <2.4-maint>
* qt/qscintilla.pro, qt/qsciscintillabase.cpp:
Translate Key_Backtab to Shift-Key_Tab before passing to Scintilla.
[fc2d75b26ef8] <2.4-maint>
2011-01-06 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_es.ts:
Updated Spanish translations from Jaime Seuma.
[8921e85723a1] <2.4-maint>
2010-12-24 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.h:
Fixed a documentation typo.
[1b951cf8838a] <2.4-maint>
2010-12-23 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.4.6 for changeset 1884d76f35b0
[696037b84e26] <2.4-maint>
* NEWS:
Released as v2.4.6.
[1884d76f35b0] [2.4.6] <2.4-maint>
2010-12-21 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp:
Auto-completion words from documents are now ignored if they are
already included from APIs.
[db48fbf19e7c] <2.4-maint>
* qt/SciClasses.cpp:
Make sure call tips are redrawn afer being clicked on.
[497ad4605ae3] <2.4-maint>
2010-11-23 Phil Thompson <phil@riverbankcomputing.com>
* NEWS, Python/sip/qsciscintilla.sip, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Added support for indicators to the high-level API. See the NEWS
file for the details.
[8673b7890874] <2.4-maint>
2010-11-15 Phil Thompson <phil@riverbankcomputing.com>
* Python/configure.py:
Added the --no-timestamp option to configure.py.
[61d1b5d28e21] <2.4-maint>
* qsci/api/python/Python-2.7.api:
Added the API file for Python v2.7.
[5b2c77e7150a] <2.4-maint>
2010-11-09 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, qt/PlatQt.cpp:
Applied a fix for calculating character widths under OS/X. Switched
the build system to Qt v4.7.1.
[47a4eff86efa] <2.4-maint>
2010-11-08 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexercpp.h:
Fixed a bug in the documentation of QsciLexerCPP.GlobalClass.
[3cada289b329] <2.4-maint>
2010-10-24 Phil Thompson <phil@riverbankcomputing.com>
* qt/SciClasses.h, qt/ScintillaQt.h, qt/qscicommandset.h,
qt/qsciglobal.h, qt/qscilexer.h, qt/qsciprinter.h,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added support for QT_BEGIN_NAMESPACE and QT_END_NAMESPACE.
[a80f0df49f6c] <2.4-maint>
2010-10-23 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts:
Updated German translations from Detlev.
[693d3adf3c3f] <2.4-maint>
2010-10-21 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/sip/qscilexerproperties.sip,
qt/qscilexerproperties.cpp, qt/qscilexerproperties.h,
qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Added support for the Key style to QsciLexerProperties.
[0b2e86015862] <2.4-maint>
2010-08-31 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.4.5 for changeset f3f3936e5b86
[84bb1b0d0674] <2.4-maint>
* NEWS:
Released as v2.4.5.
[f3f3936e5b86] [2.4.5] <2.4-maint>
2010-08-21 Phil Thompson <phil@riverbankcomputing.com>
* NEWS:
Updated the NEWS file.
[80afe6b1504a] <2.4-maint>
2010-08-20 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qsciscintillabase.sip:
With Python v3, the QsciScintillaBase.SendScintilla() overloads that
take char * arguments now require them to be bytes objects and no
longer allow them to be str objects.
[afa9ac3c487d] <2.4-maint>
2010-08-14 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qsciscintillabase.sip:
Reverted the addition of the /Encoding/ annotations to
SendScintilla() as it is (probably) not the right solution.
[4cb625284e4f] <2.4-maint>
* qt/qsciscintilla.cpp:
The entries in user and auto-completion lists should now support
UTF-8.
[112d71cec57a] <2.4-maint>
* Python/sip/qsciscintillabase.sip:
The QsciScintillaBase.SendScintilla() Python overloads will now
accept unicode strings that can be encoded to UTF-8.
[2f21b97985f2] <2.4-maint>
2010-07-22 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexerhtml.cpp, qt/qscilexerhtml.h:
Implemented QsciLexerHTML::autoCompletionFillups() to change the
fillups to "/>".
[8d9c1aad1349] <2.4-maint>
* qt/qsciscintilla.cpp:
Fixed a regression, and the original bug, in
QsciScintilla::clearAnnotations().
[fd8746ae2198] <2.4-maint>
* qt/qscistyle.cpp:
QsciStyle now auto-allocates style numbers from 63 rather than
STYLE_MAX because Scintilla only initially creates enough storage
for that number of styles.
[7c69b0a4ee5b] <2.4-maint>
2010-07-15 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscilexerverilog.cpp, qt/qscintilla.pro:
Fixed a bug in QsciLexerVerilog that meant that the Keyword style
was being completely ignored.
[09e28404476a] <2.4-maint>
2010-07-12 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.4.4 for changeset c61a49005995
[4c98368d9bea] <2.4-maint>
* NEWS:
Released as v2.4.4.
[c61a49005995] [2.4.4] <2.4-maint>
2010-06-08 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, qt/qsciscintillabase.cpp:
Pop-lists now get removed when the main widget loses focus.
[169fa07f52ab] <2.4-maint>
2010-06-05 Phil Thompson <phil@riverbankcomputing.com>
* qt/ScintillaQt.cpp:
Changed SCN_MODIFIED to deal with text being NULL.
[68148fa857ab] <2.4-maint>
2010-06-03 Phil Thompson <phil@riverbankcomputing.com>
* qt/ScintillaQt.cpp:
The SCN_MODIFIED signal now tries to make sure that the text passed
is valid.
[90e3461f410f] <2.4-maint>
2010-04-22 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp, qt/qsciscintilla.h:
QsciScintilla::markerDefine() now allows existing markers to be
redefined if an explicit marker number is given.
[63f1a7a1d8e2] <2.4-maint>
* qt/ScintillaQt.cpp, qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Fixed the drag and drop behaviour so that a move automatically turns
into a copy when the mouse leaves the widget.
[4dab09799716] <2.4-maint>
2010-04-21 Phil Thompson <phil@riverbankcomputing.com>
* qt/PlatQt.cpp, qt/ScintillaQt.cpp:
Fixed build problems against Qt v3.
[71168072ac9b] <2.4-maint>
* Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Added QsciScintillaBase::fromMimeData().
[b86a15672079] <2.4-maint>
* Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Renamed QsciScintillaBase::createMimeData() to toMimeData().
[6f5837334dde] <2.4-maint>
2010-04-20 Phil Thompson <phil@riverbankcomputing.com>
* Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Added QsciScintillaBase::canInsertFromMimeData().
[bbba2c1799ef] <2.4-maint>
* Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qscintilla.pro, qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Added QsciScintillaBase::createMimeData().
[b2c3e3a9b43d] <2.4-maint>
2010-03-17 Phil Thompson <phil@riverbankcomputing.com>
* .hgtags:
Added tag 2.4.3 for changeset 786429e0227d
[1931843aec48] <2.4-maint>
* NEWS, build.py:
Fixed the generation of the change log after tagging a release.
Updated the NEWS file. Released as v2.4.3.
[786429e0227d] [2.4.3] <2.4-maint>
2010-02-23 Phil Thompson <phil@riverbankcomputing.com>
* qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Reverted the setting of the alpha component in
setMarkerForegroundColor() (at least until SC_MARK_UNDERLINE is
supported).
[111da2e01c5e] <2.4-maint>
* qt/PlatQt.cpp, qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Fixed the very broken support for the alpha component with Qt4.
[b1d73c7f447b] <2.4-maint>
* Python/sip/qsciscintilla.sip, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Added QsciScintilla::clearFolds() to clear all current folds
(typically prior to disabling folding).
[4f4266da1962] <2.4-maint>
2010-02-15 Phil Thompson <phil@riverbankcomputing.com>
* Makefile:
Switched the build system to Qt v4.6.2.
[f023013b79e4] <2.4-maint>
2010-02-07 Phil Thompson <phil@riverbankcomputing.com>
* qt/qscidocument.cpp:
Fixed a bug in the handling of multiple views of a document.
[8b4aa000df1c] <2.4-maint>
2010-01-31 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, build.py:
Minor tidy ups for the internal build system.
[c3a41d195b8a] <2.4-maint>
2010-01-30 Phil Thompson <phil@riverbankcomputing.com>
* Makefile, Python/configure.py, build.py, lib/README.doc,
lib/README.svn, lib/qscintilla.dxy, qt/qsciglobal.h:
Changes to the internal build system required by the migration to
Mercurial.
[607e474dfd28] <2.4-maint>
2010-01-29 phil <phil>
* .hgtags:
Import from SVN.
[49d5a0d80211]
2008-08-31 phil <phil>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts:
Updated German translations from Detlev.
[d2a7db9cb3f6] <2.2-maint>
2008-08-17 phil <phil>
* Python/sip/qscilexeryaml.sip, Python/sip/qscimodcommon.sip,
qt/qscilexeryaml.cpp, qt/qscilexeryaml.h, qt/qscintilla.pro:
Added the QsciLexerYAML class.
[87f48847405d] <2.2-maint>
* Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
The fold margin can now be specified by an extra argument to
QsciScintilla::setFolding().
[ae43393149f0] <2.2-maint>
* qt/qscilexerlua.cpp, qt/qscilexerlua.h, qt/qscilexerperl.cpp,
qt/qscilexerperl.h:
Implemented autoCompletionWordSeparators() for QsciLexerPerl and
QsciLexerLua.
[1bfc2fc0fa36] <2.2-maint>
* qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/qscintilla_de.qm,
qt/qscintilla_de.ts, qt/qsciscintilla.cpp, qt/qsciscintilla.h:
User lists can now handle entries with embedded spaces. Updated
German translations from Detlev.
[b5e413c95aff] <2.2-maint>
2008-08-16 phil <phil>
* Python/sip/qscilexerxml.sip, Python/sip/qscimodcommon.sip,
qt/qscilexerhtml.cpp, qt/qscilexerxml.cpp, qt/qscilexerxml.h,
qt/qscintilla.pro:
Added the QsciLexerXML class.
[643a3e847646] <2.2-maint>
* Python/sip/qscilexerpostscript.sip, Python/sip/qscimodcommon.sip,
qt/qscilexerpostscript.cpp, qt/qscilexerpostscript.h,
qt/qscintilla.pro, qt/qscintilla_de.qm, qt/qscintilla_de.ts:
Added the QsciLexerPostScript class. Updated German translations
from Detlev.
[3e4695d615b0] <2.2-maint>
2008-08-10 phil <phil>
* Python/sip/qscilexerpascal.sip, Python/sip/qscimodcommon.sip,
qt/qscilexerpascal.cpp, qt/qscilexerpascal.h, qt/qscintilla.pro:
Added the QsciLexerPascal class.
[2712538aa17c] <2.2-maint>
* Makefile, Python/sip/qscilexerfortran.sip,
Python/sip/qscilexerfortran77.sip, Python/sip/qscimodcommon.sip,
qt/qscilexerfortran.cpp, qt/qscilexerfortran.h,
qt/qscilexerfortran77.cpp, qt/qscilexerfortran77.h,
qt/qscintilla.pro:
Added the QsciLexerFortran77 and QsciLexerFortran classes.
[e72f0ce049ab] <2.2-maint>
2008-07-03 phil <phil>
* lib/README.doc, qt/qscintilla.pro:
Updated the Windows installation instructions for Qt3. Backed out
the use of version numbers on Windows because it breaks
compatibility with Qt3. (It may go back for Qt4 if that proves not
to be a problem.)
[82b976c98cf9] <2.2-maint>
2008-06-19 phil <phil>
* build.py, qt/qscintilla.pro:
Added the DLL metadata for Windows.
[0f65670eeb66] <2.2-maint>
2008-06-16 phil <phil>
* Python/sip/qsciscintillabase.sip, qt/qscintilla.pro,
qt/qsciscintillabase.h:
Added support for the new Scintilla 1.76 features and lexers.
[fff8c7e1940e] <2.2-maint>
* doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/ScintillaRelated.html,
doc/index.html, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/makefile,
gtk/scintilla.mak, include/Platform.h, include/SciLexer.h,
include/Scintilla.h, include/Scintilla.iface, macosx/ExtInput.cxx,
macosx/ExtInput.h, macosx/PlatMacOSX.cxx, macosx/PlatMacOSX.h,
macosx/QuartzTextLayout.h, macosx/QuartzTextStyle.h,
macosx/QuartzTextStyleAttribute.h, macosx/ScintillaMacOSX.cxx,
macosx/ScintillaMacOSX.h, macosx/TView.cxx, macosx/makefile,
src/CellBuffer.cxx, src/Editor.cxx, src/Editor.h, src/KeyWords.cxx,
src/LexCPP.cxx, src/LexGen.py, src/LexMagik.cxx, src/LexMatlab.cxx,
src/LexPerl.cxx, src/LexPowerShell.cxx, src/LineMarker.cxx,
src/RunStyles.cxx, src/RunStyles.h, vcbuild/SciLexer.dsp,
version.txt, win32/PlatWin.cxx, win32/ScintRes.rc,
win32/ScintillaWin.cxx, win32/makefile, win32/scintilla.mak,
win32/scintilla_vc6.mak:
Merged Scintilla v1.76.
[a3a5181efbb0] <2.2-maint>
2008-06-10 phil <phil>
* Python/configure.py:
Fixed a configuration problem with the Python bindings when building
against a Windows DLL of QScintilla.
[7d9af6e97d2c] <2.2-maint>
2008-06-07 phil <phil>
* Makefile, lib/LICENSE.commercial, lib/README.doc, qt/qscimacro.cpp,
qt/qscimacro.h:
Fixed a regression in macro recording.
[3a2c8add1382] <2.2-maint>
2008-03-09 phil <phil>
* lib/qscintilla.dxy:
Fixed the doxygen configuration file for Qt4.
[2d3ab16b71cb] <2.2-maint>
2008-03-06 phil <phil>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts:
Updated German translations from Detlev.
[478c96e64584] <2.2-maint>
* include/Platform.h:
By default build with (possibly over-aggressive) assertions
disabled.
[a07535b643ef] <2.2-maint>
2008-03-05 phil <phil>
* lib/qscintilla.dxy:
Updated the doxygen configuration to remove some warnings.
[bf028c1824c3] <2.2-maint>
2008-03-04 phil <phil>
* Python/sip/qscilexertcl.sip, Python/sip/qscimodcommon.sip,
qt/qscilexertcl.cpp, qt/qscilexertcl.h, qt/qscintilla.pro:
Added the QsciLexerTCL class.
[a008135167cf] <2.2-maint>
2008-11-17 phil <phil>
* NEWS:
Released as v2.3.2.
[6ae4c306fcf1] [2.3.2] <2.3-maint>
2008-11-16 phil <phil>
* qt/qsciscintilla.cpp, qt/qsciscintillabase.h:
The default lexer is now SCLEX_CONTAINER rather than SCLEX_NULL.
[abffc574bda0] <2.3-maint>
2008-11-14 phil <phil>
* qt/qscilexerpython.cpp, qt/qscilexerxml.cpp, qt/qscintilla.pro:
The XML lexer now styles embedded scripts properly. (An API call to
disable this will be added in a future version.)
[be4308ba5fc9] <2.3-maint>
* UTF-8-demo.txt, qt/PlatQt.cpp:
Fixed a regression in measuring character widths introduced when
fixing the problem with kerned fonts.
[835cbce25ae2] <2.3-maint>
2008-11-08 phil <phil>
* NEWS:
Released as v2.3.1.
[91ec01d1c22c] [2.3.1] <2.3-maint>
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added QsciScintilla::wordAtPoint() based on a patch from Andrea
Battisti.
[072c84e5baa7] <2.3-maint>
2008-11-07 phil <phil>
* qt/qsciscintilla.cpp:
Changing the current lexer while text is displayed should now be
handled properly. (However the XML lexer seems buggy in this
regard.)
[ef0fcd30ff99] <2.3-maint>
* qt/PlatQt.cpp:
Fixed a bug in the calculation of character positions when kerning
was in effect. This cause the caret to be displayed too far to the
right.
[225bf588aeeb] <2.3-maint>
2008-11-01 phil <phil>
* NEWS:
Updated the NEWS file.
[3f777fbcaa87] <2.3-maint>
2008-10-21 phil <phil>
* qt/qscintilla_de.ts:
Updated German translations from Detlev.
[055862970575] <2.3-maint>
2008-10-20 phil <phil>
* Python/configure.py, Python/sip/qscilexercss.sip,
Python/sip/qscilexerdiff.sip, Python/sip/qsciscintillabase.sip,
qt/ScintillaQt.cpp, qt/qscilexercss.cpp, qt/qscilexercss.h,
qt/qscilexerdiff.cpp, qt/qscilexerdiff.h, qt/qscintilla.pro,
qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_fr.ts,
qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts, qt/qsciscintilla.cpp,
qt/qsciscintillabase.h:
Updated the QScintilla API to accomodate changes in Scintilla v1.77.
[9876dd8de8a4] <2.3-maint>
* README, doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/ScintillaRelated.html,
doc/ScintillaToDo.html, doc/index.html, gtk/PlatGTK.cxx,
gtk/ScintillaGTK.cxx, gtk/makefile, gtk/scintilla.mak,
include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface,
macosx/makefile, src/CellBuffer.cxx, src/CellBuffer.h,
src/Document.cxx, src/Document.h, src/Editor.cxx,
src/ExternalLexer.cxx, src/KeyWords.cxx, src/LexAbaqus.cxx,
src/LexAsm.cxx, src/LexBash.cxx, src/LexCPP.cxx, src/LexCSS.cxx,
src/LexFortran.cxx, src/LexGen.py, src/LexHTML.cxx,
src/LexHaskell.cxx, src/LexInno.cxx, src/LexLua.cxx,
src/LexMySQL.cxx, src/LexNsis.cxx, src/LexOthers.cxx,
src/LexPerl.cxx, src/LexProgress.cxx, src/LexRuby.cxx,
src/LexTeX.cxx, src/LexVerilog.cxx, src/LexYAML.cxx,
src/RESearch.cxx, src/RESearch.h, src/RunStyles.h,
src/ScintillaBase.cxx, src/SplitVector.h, vcbuild/SciLexer.dsp,
version.txt, win32/PlatWin.cxx, win32/ScintRes.rc,
win32/ScintillaWin.cxx, win32/makefile, win32/scintilla.mak,
win32/scintilla_vc6.mak:
Initial merge of Scintilla 1.77.
[39acb5c4e434] <2.3-maint>
2008-10-12 phil <phil>
* qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Applied a patch from Detlev that fixes issues with the document
modification notification and setting different fold margins.
[3af8eefae9f9] <2.3-maint>
* Python/sip/qscicommand.sip, Python/sip/qscicommandset.sip,
Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added the read() and write() methods to QsciScintilla in
anticipation of PyQt dropping support for QStrings. This will allow
file to be read and written while keeping the number of conversions
to the minimum.
[85e0d79e204f] <2.3-maint>
* Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
QsciScintilla::setSelection() is now implemented using SCI_SETSEL so
that the carat can be left at either the start or the end of the
selection. Exposed QsciScintilla::positionFromLineIndex() and
QsciScintilla::lineIndexFromPosition().
[acdba5c2e772] <2.3-maint>
2008-10-04 phil <phil>
* qt/qscidocument.cpp, qt/qscidocument.h, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
The modified status of a document is now maintained on a per
document basis rather than a per editor basis.
[744886134592] <2.3-maint>
2008-10-02 phil <phil>
* qt/qscilexerpython.cpp:
Added 'with' to the list of keywords in the Python lexer for Python
v2.6.
[e33bbbc426ab] <2.3-maint>
2010-01-20 phil <phil>
* Makefile, NEWS:
Updated the build system to Qt v4.6.1. Released as v2.4.2.
[73732e5bae08] [2.4.2] <2.4-maint>
2010-01-18 phil <phil>
* qt/qscintilla_es.qm, qt/qscintilla_es.ts:
Updated Spanish translations from Jaime Seuma.
[3b911e69696d] <2.4-maint>
2010-01-15 phil <phil>
* Python/configure.py:
The Python bindings now check for SIP v4.10.
[8d5f4957a07c] <2.4-maint>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the .ts files.
[15c647ac0c42] <2.4-maint>
* NEWS, build.py:
Fixed the build system for Qt v3 and v4 prior to v4.5.
[1b5bea85a3bf] <2.4-maint>
2010-01-14 phil <phil>
* NEWS, lib/LICENSE.commercial.short, lib/LICENSE.gpl.short:
Released as v2.4.1.
[a04b69746aa6] [2.4.1] <2.4-maint>
2009-12-22 phil <phil>
* lib/gen_python3_api.py, qsci/api/python/Python-3.1.api:
Added the API file for Python v3.1.
[116c24ab58b2] <2.4-maint>
* NEWS, Python/configure.py:
Added support for automatically generated docstrings.
[3d316b4f222b] <2.4-maint>
2009-12-11 phil <phil>
* Makefile, qt/PlatQt.cpp:
Fixed a performance problem when displaying very long lines.
[d3fe67ad2eb5] <2.4-maint>
2009-11-01 phil <phil>
* qt/qsciapis.cpp:
Fixed a possible crash in the handling of call tips.
[6248caa24fec] <2.4-maint>
* qt/SciClasses.cpp:
Applied the workaround for the autocomplete focus bug under Gnome's
window manager which (appears) to work with current versions of Qt
across all platforms.
[f709f1518e70] <2.4-maint>
* Makefile, qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Make sure a lexer is fully detached when a QScintilla instance is
destroyed.
[db47764231d2] <2.4-maint>
2009-08-19 phil <phil>
* lib/LICENSE.gpl.short, qt/qscintilla_de.qm, qt/qscintilla_de.ts:
Updated German translations from Detlev.
[458b60ec031e] <2.4-maint>
2009-08-09 phil <phil>
* Python/sip/qscilexerverilog.sip, Python/sip/qscimodcommon.sip,
qt/qscilexerverilog.cpp, qt/qscilexerverilog.h, qt/qscintilla.pro:
Added the QsciLexerVerilog class.
[86b2aceac88c] <2.4-maint>
* Makefile, Python/sip/qscilexerspice.sip,
Python/sip/qscimodcommon.sip, lib/LICENSE.commercial, lib
/OPENSOURCE-NOTICE.TXT, lib/README.doc, qt/qscilexerspice.cpp,
qt/qscilexerspice.h, qt/qscintilla.pro:
Added the QsciLexerSpice class.
[56532ec00839] <2.4-maint>
2009-06-05 phil <phil>
* NEWS, lib/LICENSE.commercial:
Released as v2.4.
[612b1bcb8223] [2.4]
2009-06-03 phil <phil>
* NEWS, qt/qscistyledtext.h:
Fixed a bug building on Qt v3.
[88ebc67fdff4]
2009-05-30 phil <phil>
* qt/ScintillaQt.cpp:
Applied a fix for copying UTF-8 text to the X clipboard from Lars
Reichelt.
[e59fa72c2e2d]
2009-05-27 phil <phil>
* qt/qscilexercustom.h:
Fixed a missing forward declaration in qscilexercustom.h.
[0018449ee6aa]
2009-05-25 phil <phil>
* qt/qscilexercustom.cpp:
Don't ask the custom lexer to style zero characters.
[6ae021232f4f]
2009-05-19 phil <phil>
* NEWS, qt/qscintilla.pro, qt/qscintilla_cs.qm, qt/qscintilla_es.qm,
qt/qscintilla_es.ts, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm,
qt/qscintilla_ru.qm:
Added Spanish translations from Jaime Seuma.
[0cdbee8db9af]
* qt/qsciscintilla.cpp:
A minor fix for ancient C++ compilers.
[0523c3a0e0aa]
2009-05-18 phil <phil>
* NEWS, Python/sip/qscilexer.sip, Python/sip/qscilexercustom.sip,
Python/sip/qscimodcommon.sip, Python/sip/qsciscintilla.sip,
qt/qscilexer.cpp, qt/qscilexer.h, qt/qscilexercustom.cpp,
qt/qscilexercustom.h, qt/qscintilla.pro, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added QsciScintilla::annotation(). Added QsciLexerCustom (completely
untested) and supporting changes to QsciLexer.
[382d5b86f600]
2009-05-17 phil <phil>
* qt/qscintilla_cs.ts, qt/qscintilla_de.qm, qt/qscintilla_de.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated translations from Detlev.
[0b8c8438e464]
2009-05-09 phil <phil>
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added support for text margins.
[be9db7d41b50]
* qt/PlatQt.cpp, qt/qsciscintilla.cpp, qt/qsciscintilla.h,
qt/qscistyledtext.cpp, qt/qscistyledtext.h:
Debugged the support for annotations. Tidied up the QString to
Scintilla string conversions.
[573199665222]
2009-05-08 phil <phil>
* NEWS, Python/sip/qscimodcommon.sip, Python/sip/qsciscintilla.sip,
Python/sip/qscistyle.sip, Python/sip/qscistyledtext.sip,
qt/qscicommand.h, qt/qscimacro.h, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qscistyle.cpp,
qt/qscistyle.h, qt/qscistyledtext.cpp, qt/qscistyledtext.h:
Implemented the rest of the annotation API - still needs debugging.
[7f23400d2416]
2009-05-07 phil <phil>
* NEWS, qt/qscintilla.pro, qt/qscistyle.cpp, qt/qscistyle.h:
Added the QsciStyle class.
[bf8e3e02071e]
2009-05-06 phil <phil>
* qt/qsciscintillabase.cpp:
Fixed the key event handling when the text() is empty and the key()
should be used - only seems to happen with OS/X.
[868a146b019f]
2009-05-03 phil <phil>
* Makefile, NEWS, Python/configure.py, Python/sip/qscicommand.sip,
Python/sip/qscicommandset.sip, Python/sip/qscilexer.sip,
Python/sip/qscilexercpp.sip, Python/sip/qscilexercss.sip,
Python/sip/qscilexerdiff.sip, Python/sip/qscilexerhtml.sip,
Python/sip/qscilexerpascal.sip, Python/sip/qscilexerperl.sip,
Python/sip/qscilexerpython.sip, Python/sip/qscilexerxml.sip,
Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip,
README, UTF-8-demo.txt, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/ScintillaRelated.html, doc/ScintillaToDo.html,
doc/annotations.png, doc/index.html, doc/styledmargin.png,
gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile,
gtk/scintilla.mak, include/Face.py, include/HFacer.py,
include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface,
include/ScintillaWidget.h, lib/LICENSE.commercial,
macosx/PlatMacOSX.cxx, macosx/makefile, qt/PlatQt.cpp,
qt/ScintillaQt.cpp, qt/qsciapis.cpp, qt/qscidocument.cpp,
qt/qscidocument.h, qt/qscilexer.cpp, qt/qscilexer.h,
qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qscilexercss.cpp,
qt/qscilexercss.h, qt/qscilexerdiff.cpp, qt/qscilexerdiff.h,
qt/qscilexerhtml.cpp, qt/qscilexerhtml.h, qt/qscilexerpascal.cpp,
qt/qscilexerpascal.h, qt/qscilexerperl.cpp, qt/qscilexerperl.h,
qt/qscilexerpython.cpp, qt/qscilexerpython.h, qt/qscilexerxml.cpp,
qt/qscilexerxml.h, qt/qscintilla.pro, qt/qscintilla_cs.ts,
qt/qscintilla_de.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts,
qt/qscintilla_ru.ts, qt/qsciscintilla.cpp, qt/qsciscintilla.h,
qt/qsciscintillabase.h, src/CellBuffer.cxx, src/CellBuffer.h,
src/Document.cxx, src/Document.h, src/Editor.cxx, src/Editor.h,
src/ExternalLexer.cxx, src/Indicator.cxx, src/Indicator.h,
src/KeyWords.cxx, src/LexAU3.cxx, src/LexAbaqus.cxx, src/LexAsm.cxx,
src/LexBash.cxx, src/LexCOBOL.cxx, src/LexCPP.cxx, src/LexCSS.cxx,
src/LexD.cxx, src/LexFortran.cxx, src/LexGen.py, src/LexHTML.cxx,
src/LexHaskell.cxx, src/LexInno.cxx, src/LexLua.cxx,
src/LexMySQL.cxx, src/LexNimrod.cxx, src/LexNsis.cxx,
src/LexOthers.cxx, src/LexPascal.cxx, src/LexPerl.cxx,
src/LexPowerPro.cxx, src/LexProgress.cxx, src/LexPython.cxx,
src/LexRuby.cxx, src/LexSML.cxx, src/LexSQL.cxx, src/LexSorcus.cxx,
src/LexTACL.cxx, src/LexTADS3.cxx, src/LexTAL.cxx, src/LexTeX.cxx,
src/LexVerilog.cxx, src/LexYAML.cxx, src/PerLine.cxx, src/PerLine.h,
src/PositionCache.cxx, src/RESearch.cxx, src/RESearch.h,
src/RunStyles.h, src/SciTE.properties, src/ScintillaBase.cxx,
src/SplitVector.h, src/UniConversion.cxx, src/ViewStyle.cxx,
src/ViewStyle.h, vcbuild/SciLexer.dsp, version.txt,
win32/PlatWin.cxx, win32/ScintRes.rc, win32/ScintillaWin.cxx,
win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak:
Merged the v2.3 branch onto the trunk.
[1bb3d2b01123]
2008-09-20 phil <phil>
* Makefile, NEWS, lib/README.doc:
Released as v2.3.
[8fd73a9a9d66] [2.3]
2008-09-17 phil <phil>
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added QsciScintilla::apiContext() for further open up the auto-
completion and call tips support.
[a6291ea6dd37]
2008-09-16 phil <phil>
* Python/configure.py, lib/gen_python_api.py,
qsci/api/python/Python-2.6.api, qt/qsciapis.h:
Added the API file for Python v2.6rc1. Fixed a typo in the help for
the Python bindings configure.py.
[ac10be3cc7fb]
2008-09-03 phil <phil>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_fr.ts,
qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the i18n .ts files.
[b73beac06e0f]
2008-09-01 phil <phil>
* lib/README.doc:
Updated the Windows installation notes to cover the need to manually
install the DLL when using Qt3.
[17019ebfab36]
* lib/README.doc, qt/qsciscintilla.cpp:
Fixed a regression in the highlighting of call tip arguments.
Updated the Windows installation notes to say that any header files
installed from a previous build should first be removed.
[cb3f27b93323]
2008-08-31 phil <phil>
* NEWS, Python/configure.py, Python/sip/qsciabstractapis.sip,
Python/sip/qsciapis.sip, Python/sip/qscilexer.sip,
Python/sip/qscimodcommon.sip, Python/sip/qsciscintillabase.sip,
qt/qsciabstractapis.cpp, qt/qsciabstractapis.h, qt/qsciapis.cpp,
qt/qsciapis.h, qt/qscilexer.cpp, qt/qscilexer.h, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Added the QsciAbstractAPIs class to allow applications to provide
their own implementation of APIs.
[eb5a8a602e5d]
* Makefile, Python/configure.py, Python/sip/qscilexerfortran.sip,
Python/sip/qscilexerfortran77.sip, Python/sip/qscilexerpascal.sip,
Python/sip/qscilexerpostscript.sip, Python/sip/qscilexertcl.sip,
Python/sip/qscilexerxml.sip, Python/sip/qscilexeryaml.sip,
Python/sip/qscimodcommon.sip, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, build.py, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/ScintillaRelated.html, doc/index.html, gtk/PlatGTK.cxx,
gtk/ScintillaGTK.cxx, gtk/makefile, gtk/scintilla.mak,
include/Platform.h, include/SciLexer.h, include/Scintilla.h,
include/Scintilla.iface, lib/LICENSE.commercial, lib/README.doc,
lib/qscintilla.dxy, macosx/ExtInput.cxx, macosx/ExtInput.h,
macosx/PlatMacOSX.cxx, macosx/PlatMacOSX.h,
macosx/QuartzTextLayout.h, macosx/QuartzTextStyle.h,
macosx/QuartzTextStyleAttribute.h, macosx/ScintillaMacOSX.cxx,
macosx/ScintillaMacOSX.h, macosx/TView.cxx, macosx/makefile,
qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/qscilexerfortran.cpp,
qt/qscilexerfortran.h, qt/qscilexerfortran77.cpp,
qt/qscilexerfortran77.h, qt/qscilexerhtml.cpp, qt/qscilexerlua.cpp,
qt/qscilexerlua.h, qt/qscilexerpascal.cpp, qt/qscilexerpascal.h,
qt/qscilexerperl.cpp, qt/qscilexerperl.h,
qt/qscilexerpostscript.cpp, qt/qscilexerpostscript.h,
qt/qscilexertcl.cpp, qt/qscilexertcl.h, qt/qscilexerxml.cpp,
qt/qscilexerxml.h, qt/qscilexeryaml.cpp, qt/qscilexeryaml.h,
qt/qscimacro.cpp, qt/qscimacro.h, qt/qscintilla.pro,
qt/qscintilla_de.qm, qt/qscintilla_de.ts, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h, src/CellBuffer.cxx,
src/Editor.cxx, src/Editor.h, src/KeyWords.cxx, src/LexCPP.cxx,
src/LexGen.py, src/LexMagik.cxx, src/LexMatlab.cxx, src/LexPerl.cxx,
src/LexPowerShell.cxx, src/LineMarker.cxx, src/RunStyles.cxx,
src/RunStyles.h, vcbuild/SciLexer.dsp, version.txt,
win32/PlatWin.cxx, win32/ScintRes.rc, win32/ScintillaWin.cxx,
win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak:
Merged the v2.2 maintenance branch.
[cd784c60bcc7]
2008-02-27 phil <phil>
* NEWS, build.py, lib/GPL_EXCEPTION.TXT, lib/LICENSE.GPL2,
lib/LICENSE.GPL3, lib/LICENSE.commercial,
lib/LICENSE.commercial.short, lib/LICENSE.gpl,
lib/LICENSE.gpl.short, lib/OPENSOURCE-NOTICE.TXT:
Updated the licenses to be in line with the the current Qt licenses,
including GPL v3. Released as v2.2.
[a039ca791129] [2.2]
2008-02-23 phil <phil>
* Makefile, qt/PlatQt.cpp:
Switched to Qt v4.3.4. Further tweaks for Windows64 support.
[3ae9686f38e6]
2008-02-22 phil <phil>
* Makefile, NEWS, Python/sip/qsciscintillabase.sip, qt/PlatQt.cpp,
qt/ScintillaQt.cpp, qt/qscidocument.cpp, qt/qscimacro.cpp,
qt/qscintilla.pro, qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Several fixes for Windows64 support based on a patch from Randall
Frank.
[2c753ee01c42]
2008-02-09 phil <phil>
* Python/configure.py, lib/README.doc, qt/qscintilla.pro:
It's no longer necessary to set DYLD_LIBRARY_PATH when using the
Python bindings.
[d1098424aed1]
2008-02-03 phil <phil>
* Python/sip/qscilexerruby.sip:
Added the missing QsciLexerRuby.Error to the Python bindings.
[0b4f06a30251]
2008-01-20 phil <phil>
* designer-Qt4/qscintillaplugin.cpp, designer-Qt4/qscintillaplugin.h:
Fixed a problem with the Qt4 Designer plugin on Leopard.
[5450a1bc62df]
2008-01-11 phil <phil>
* qt/SciClasses.cpp, qt/qsciscintillabase.cpp:
Hopefully fixed shortcuts and accelerators when the autocompletion
list is displayed.
[8304a1f4e36b]
2008-01-06 phil <phil>
* qt/SciClasses.cpp:
Hopefully fixed a bug stopping normal typing when the autocompletion
list is being displayed.
[2db0cc8fa158]
2008-01-03 phil <phil>
* lib/LICENSE.commercial.short, lib/LICENSE.gpl,
lib/LICENSE.gpl.short, lib/README.doc, qt/qsciscintillabase.cpp:
Fixed a Qt3 compilation bug. Updated the copyright notices.
[cf238f41fb54]
2007-12-30 phil <phil>
* qt/SciClasses.cpp, qt/SciClasses.h, qt/qsciscintillabase.cpp:
Hopefully fixed the problems with the auto-completion popup on all
platforms (not tested on Mac).
[585aa7e4e59f]
2007-12-29 phil <phil>
* qt/SciClasses.cpp:
Remove the use of the internal Tooltip widget flag so that the X11
auto-completion list now has the same problems as the Windows
version. (Prior to fixing the problem properly.)
[93d584d099db]
2007-12-23 phil <phil>
* qt/ScintillaQt.cpp:
Fixed DND problems with Qt4.
[23f8c1a7c4c7]
* qt/qsciscintilla.cpp:
Fix from Detlev for an infinite loop caused by calling
getCursorPosition() when Scintilla reports a position past the end
of the text.
[dd99ade93fa6]
2007-12-05 phil <phil>
* qt/qscilexerperl.cpp, qt/qscintilla_cs.ts, qt/qscintilla_de.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Fixed a silly typo in the updated Perl lexer.
[0e290eb71572]
* qt/qscintilla_de.qm:
Updated German translations from Detlev.
[e820d3c167f5]
* Makefile:
Switched the internal build system to Qt v4.3.3.
[df2d877e2422]
2007-12-04 phil <phil>
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_fr.ts,
qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the translation source files.
[1fb11f16d750]
* Python/sip/qscilexerperl.sip, Python/sip/qsciscintillabase.sip,
doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/ScintillaRelated.html,
doc/index.html, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/makefile,
gtk/scintilla.mak, include/Platform.h, include/PropSet.h,
include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface,
lib/README.svn, macosx/PlatMacOSX.cxx, macosx/ScintillaMacOSX.h,
macosx/makefile, qt/PlatQt.cpp, qt/qscilexer.cpp, qt/qscilexer.h,
qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpython.cpp,
qt/qscilexerpython.h, qt/qscintilla.pro, qt/qsciscintilla.cpp,
qt/qsciscintillabase.h, src/CellBuffer.cxx, src/CellBuffer.h,
src/ContractionState.cxx, src/ContractionState.h, src/Document.cxx,
src/Document.h, src/DocumentAccessor.cxx, src/Editor.cxx,
src/Editor.h, src/KeyWords.cxx, src/LexAPDL.cxx, src/LexASY.cxx,
src/LexAU3.cxx, src/LexAbaqus.cxx, src/LexBash.cxx, src/LexCPP.cxx,
src/LexGen.py, src/LexHTML.cxx, src/LexHaskell.cxx,
src/LexMetapost.cxx, src/LexOthers.cxx, src/LexPerl.cxx,
src/LexPython.cxx, src/LexR.cxx, src/LexSQL.cxx, src/LexTeX.cxx,
src/LexYAML.cxx, src/Partitioning.h, src/PositionCache.cxx,
src/PositionCache.h, src/PropSet.cxx, src/RunStyles.cxx,
src/RunStyles.h, src/ScintillaBase.cxx, src/SplitVector.h,
src/ViewStyle.cxx, src/ViewStyle.h, vcbuild/SciLexer.dsp,
version.txt, win32/PlatWin.cxx, win32/ScintRes.rc,
win32/ScintillaWin.cxx, win32/makefile, win32/scintilla.mak,
win32/scintilla_vc6.mak:
Merged Scintilla v1.75.
[8009a4d7275a]
2007-11-17 phil <phil>
* qt/SciClasses.cpp, qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Bug fixes for selectAll() and getCursorPosition() from Baz Walter.
[80eecca239b4]
2007-10-24 phil <phil>
* qt/qsciscintilla.cpp:
Fixed folding for HTML.
[bb6fb6065e30]
2007-10-14 phil <phil>
* build.py, lib/GPL_EXCEPTION.TXT, lib/GPL_EXCEPTION_ADDENDUM.TXT,
lib/LICENSE.gpl, lib/OPENSOURCE-NOTICE.TXT, qt/qscicommandset.cpp:
Control characters that are not bound to commands (or shortcuts) now
default to doing nothing (rather than inserting the character into
the text). Aligned the GPL license with Trolltech's exceptions.
[148432c68762]
2007-10-12 phil <phil>
* src/LexHTML.cxx:
Fixed the Scintilla HTML lexer's handling of characters >= 0x80.
[c4e271ce8e96]
2007-10-05 phil <phil>
* qt/qsciscintillabase.cpp:
Used NoSystemBackground rather than OpaquePaintEvent to eliminate
flicker.
[01a22c66304d]
2007-10-04 phil <phil>
* Makefile, qt/qsciscintillabase.cpp:
Fixed a flashing effect visible with a non-standard background.
Switched to Qt v4.3.2.
[781c58fcba96]
2007-09-23 phil <phil>
* qt/qsciapis.h, qt/qscicommand.h, qt/qscicommandset.h,
qt/qscidocument.h, qt/qsciglobal.h, qt/qscilexer.h,
qt/qscilexerbash.h, qt/qscilexerbatch.h, qt/qscilexercmake.h,
qt/qscilexercpp.h, qt/qscilexercsharp.h, qt/qscilexercss.h,
qt/qscilexerd.h, qt/qscilexerdiff.h, qt/qscilexerhtml.h,
qt/qscilexeridl.h, qt/qscilexerjava.h, qt/qscilexerjavascript.h,
qt/qscilexerlua.h, qt/qscilexermakefile.h, qt/qscilexerperl.h,
qt/qscilexerpov.h, qt/qscilexerproperties.h, qt/qscilexerpython.h,
qt/qscilexerruby.h, qt/qscilexersql.h, qt/qscilexertex.h,
qt/qscilexervhdl.h, qt/qscimacro.h, qt/qsciprinter.h,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Made the recent portabilty changes Mac specific as AIX has a problem
with them.
[0de605d4079f]
2007-09-16 phil <phil>
* qt/qscilexer.cpp:
A lexer's default colour, paper and font are now written to and read
from the settings.
[45277fc76ace]
2007-09-15 phil <phil>
* lib/README.doc, qt/qsciapis.h, qt/qscicommand.h,
qt/qscicommandset.h, qt/qscidocument.h, qt/qsciglobal.h,
qt/qscilexer.h, qt/qscilexerbash.h, qt/qscilexerbatch.h,
qt/qscilexercmake.h, qt/qscilexercpp.h, qt/qscilexercsharp.h,
qt/qscilexercss.h, qt/qscilexerd.h, qt/qscilexerdiff.h,
qt/qscilexerhtml.h, qt/qscilexeridl.h, qt/qscilexerjava.h,
qt/qscilexerjavascript.h, qt/qscilexerlua.h, qt/qscilexermakefile.h,
qt/qscilexerperl.h, qt/qscilexerpov.h, qt/qscilexerproperties.h,
qt/qscilexerpython.h, qt/qscilexerruby.h, qt/qscilexersql.h,
qt/qscilexertex.h, qt/qscilexervhdl.h, qt/qscimacro.h,
qt/qsciprinter.h, qt/qsciscintilla.h, qt/qsciscintillabase.h:
Fixed the MacOS build problems when using the binary installer
version of Qt.
[e059a923a447]
* lib/LICENSE.commercial.short, qt/PlatQt.cpp:
Added the missing WaitMouseMoved() implementation on MacOS.
[78d1c8fc37c0]
2007-09-10 phil <phil>
* qt/qsciscintilla.cpp, qt/qsciscintilla.h:
QsciScintilla::setFont() now calls QWidget::setFont() so that font()
returns the expected value.
[fd4f577c60ea]
2007-09-02 phil <phil>
* qt/qsciscintilla.cpp:
Fixed problems which the font size of STYLE_DEFAULT not being
updated when the font of style 0 was changed. Hopefully this fixes
the problems with edge columns and indentation guides.
[ddeccb6f64a0]
2007-08-12 phil <phil>
* Makefile, lib/LICENSE.commercial.short, lib/LICENSE.gpl.short,
qt/qscintilla.pro:
Applied .pro file fix from Dirk Mueller to add a proper install
rule.
[a3a2e49f1042]
2007-07-22 phil <phil>
* qt/qscilexer.cpp:
Made sure that the backgound colour of areas of the widget with no
text is updated when QsciLexer.setDefaultPaper() is called.
[065558d2430b]
2007-07-09 phil <phil>
* qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Explicitly set the style for STYLE_DEFAULT when setting a lexer.
[a95fc3357771]
2007-06-30 phil <phil>
* Python/sip/qsciscintillabase.sip, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/ScintillaRelated.html, doc/index.html, gtk/PlatGTK.cxx,
gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile, gtk/scintilla.mak,
include/Accessor.h, include/HFacer.py, include/KeyWords.h,
include/Platform.h, include/PropSet.h, include/SString.h,
include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface,
include/WindowAccessor.h, macosx/PlatMacOSX.cxx,
macosx/PlatMacOSX.h, macosx/QuartzTextLayout.h,
macosx/QuartzTextStyle.h, macosx/QuartzTextStyleAttribute.h,
macosx/SciTest/English.lproj/InfoPlist.strings,
macosx/SciTest/English.lproj/main.nib/classes.nib,
macosx/SciTest/English.lproj/main.nib/info.nib,
macosx/SciTest/English.lproj/main.nib/objects.xib,
macosx/SciTest/Info.plist,
macosx/SciTest/SciTest.xcode/project.pbxproj,
macosx/SciTest/SciTest_Prefix.pch, macosx/SciTest/main.cpp,
macosx/SciTest/version.plist, macosx/ScintillaCallTip.cxx,
macosx/ScintillaCallTip.h, macosx/ScintillaListBox.cxx,
macosx/ScintillaListBox.h, macosx/ScintillaMacOSX.cxx,
macosx/ScintillaMacOSX.h, macosx/TCarbonEvent.cxx,
macosx/TCarbonEvent.h, macosx/TRect.h, macosx/TView.cxx,
macosx/TView.h, macosx/deps.mak, macosx/makefile,
qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qscintilla.pro,
qt/qsciscintillabase.h, src/AutoComplete.cxx, src/AutoComplete.h,
src/CallTip.cxx, src/CallTip.h, src/CellBuffer.cxx,
src/CellBuffer.h, src/CharacterSet.h, src/ContractionState.cxx,
src/ContractionState.h, src/Decoration.cxx, src/Decoration.h,
src/Document.cxx, src/Document.h, src/DocumentAccessor.cxx,
src/DocumentAccessor.h, src/Editor.cxx, src/Editor.h,
src/ExternalLexer.cxx, src/ExternalLexer.h, src/Indicator.cxx,
src/Indicator.h, src/KeyMap.cxx, src/KeyMap.h, src/KeyWords.cxx,
src/LexAPDL.cxx, src/LexAU3.cxx, src/LexAVE.cxx, src/LexAda.cxx,
src/LexAsm.cxx, src/LexAsn1.cxx, src/LexBaan.cxx, src/LexBash.cxx,
src/LexBasic.cxx, src/LexBullant.cxx, src/LexCLW.cxx,
src/LexCPP.cxx, src/LexCSS.cxx, src/LexCaml.cxx, src/LexCmake.cxx,
src/LexConf.cxx, src/LexCrontab.cxx, src/LexCsound.cxx,
src/LexD.cxx, src/LexEScript.cxx, src/LexEiffel.cxx,
src/LexErlang.cxx, src/LexFlagship.cxx, src/LexForth.cxx,
src/LexFortran.cxx, src/LexGAP.cxx, src/LexGen.py,
src/LexGui4Cli.cxx, src/LexHTML.cxx, src/LexHaskell.cxx,
src/LexInno.cxx, src/LexKix.cxx, src/LexLisp.cxx, src/LexLout.cxx,
src/LexLua.cxx, src/LexMMIXAL.cxx, src/LexMPT.cxx, src/LexMSSQL.cxx,
src/LexMatlab.cxx, src/LexMetapost.cxx, src/LexNsis.cxx,
src/LexOpal.cxx, src/LexOthers.cxx, src/LexPB.cxx, src/LexPLM.cxx,
src/LexPOV.cxx, src/LexPS.cxx, src/LexPascal.cxx, src/LexPerl.cxx,
src/LexProgress.cxx, src/LexPython.cxx, src/LexRebol.cxx,
src/LexRuby.cxx, src/LexSQL.cxx, src/LexScriptol.cxx,
src/LexSmalltalk.cxx, src/LexSpecman.cxx, src/LexSpice.cxx,
src/LexTADS3.cxx, src/LexTCL.cxx, src/LexTeX.cxx, src/LexVB.cxx,
src/LexVHDL.cxx, src/LexVerilog.cxx, src/LexYAML.cxx,
src/LineMarker.cxx, src/LineMarker.h, src/Partitioning.h,
src/PositionCache.cxx, src/PositionCache.h, src/PropSet.cxx,
src/RESearch.cxx, src/RESearch.h, src/RunStyles.cxx,
src/RunStyles.h, src/SVector.h, src/ScintillaBase.cxx,
src/ScintillaBase.h, src/SplitVector.h, src/Style.cxx, src/Style.h,
src/StyleContext.cxx, src/StyleContext.h, src/UniConversion.cxx,
src/UniConversion.h, src/ViewStyle.cxx, src/ViewStyle.h,
src/WindowAccessor.cxx, src/XPM.cxx, src/XPM.h,
vcbuild/SciLexer.dsp, version.txt, win32/PlatWin.cxx,
win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/deps.mak,
win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak,
zipsrc.bat:
Merged Scintilla v1.74.
[04dee9c2424f]
* Python/sip/qscilexerpython.sip, build.py, qt/qscilexer.cpp,
qt/qscilexerbash.cpp, qt/qscilexerpython.cpp, qt/qscilexerpython.h,
qt/qscintilla.pro:
Fixed comment folding in the Bash lexer. A style is properly
restored when read from QSettings. Removed ./Qsci from the qmake
INCLUDEPATH. Removed the Scintilla version number from generated
filenames. Used fully qualified enum names in the Python lexer so
that the QMetaObject is correct.
[6b27a5b211e0]
2007-06-01 phil <phil>
* NEWS:
Released as v2.1.
[9976edafc5c1] [2.1]
2007-05-30 phil <phil>
* Makefile:
Switched the internal build system to Qt v4.3.0.
[49284aa376ef]
* NEWS, Python/configure.py, Python/sip/qscilexer.sip,
Python/sip/qscilexerbash.sip, Python/sip/qscilexerbatch.sip,
Python/sip/qscilexercmake.sip, Python/sip/qscilexercpp.sip,
Python/sip/qscilexercsharp.sip, Python/sip/qscilexercss.sip,
Python/sip/qscilexerd.sip, Python/sip/qscilexerdiff.sip,
Python/sip/qscilexerhtml.sip, Python/sip/qscilexeridl.sip,
Python/sip/qscilexerjavascript.sip, Python/sip/qscilexerlua.sip,
Python/sip/qscilexermakefile.sip, Python/sip/qscilexerperl.sip,
Python/sip/qscilexerpov.sip, Python/sip/qscilexerproperties.sip,
Python/sip/qscilexerpython.sip, Python/sip/qscilexerruby.sip,
Python/sip/qscilexersql.sip, Python/sip/qscilexertex.sip,
Python/sip/qscilexervhdl.sip, Python/sip/qscimodcommon.sip,
build.py, qt/qscilexer.cpp, qt/qscilexer.h, qt/qscilexerbash.cpp,
qt/qscilexerbash.h, qt/qscilexerbatch.cpp, qt/qscilexerbatch.h,
qt/qscilexercmake.cpp, qt/qscilexercmake.h, qt/qscilexercpp.cpp,
qt/qscilexercpp.h, qt/qscilexercsharp.cpp, qt/qscilexercsharp.h,
qt/qscilexercss.cpp, qt/qscilexercss.h, qt/qscilexerd.cpp,
qt/qscilexerd.h, qt/qscilexerdiff.cpp, qt/qscilexerdiff.h,
qt/qscilexerhtml.cpp, qt/qscilexerhtml.h, qt/qscilexeridl.cpp,
qt/qscilexeridl.h, qt/qscilexerjavascript.cpp,
qt/qscilexerjavascript.h, qt/qscilexerlua.cpp, qt/qscilexerlua.h,
qt/qscilexermakefile.cpp, qt/qscilexermakefile.h,
qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpov.cpp,
qt/qscilexerpov.h, qt/qscilexerproperties.cpp,
qt/qscilexerproperties.h, qt/qscilexerpython.cpp,
qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h,
qt/qscilexersql.cpp, qt/qscilexersql.h, qt/qscilexertex.cpp,
qt/qscilexertex.h, qt/qscilexervhdl.cpp, qt/qscilexervhdl.h,
qt/qscintilla.pro:
Lexers now remember their style settings. A lexer no longer has to
be the current lexer when changing a style's color, end-of-line
fill, font or paper. The color(), eolFill(), font() and paper()
methods of QsciLexer now return the current values for a style
rather than the default values. The setDefaultColor(),
setDefaultFont() and setDefaultPaper() methods of QsciLexer are no
longer slots and no longer virtual. The defaultColor(),
defaultFont() and defaultPaper() methods of QsciLexer are no longer
virtual. The color(), eolFill(), font() and paper() methods of all
QsciLexer derived classes (except for QsciLexer itself) have been
renamed defaultColor(), defaultEolFill(), defaultFont() and
defaultPaper() respectively.
[38aeee2a5a36]
2007-05-28 phil <phil>
* qt/qsciscintilla.cpp:
Set the number of style bits after we've set the lexer.
[84cda9af5b00]
* Python/configure.py:
Fixed the handling of the %Timeline in the Python bindings.
[4b3146d1a236]
2007-05-27 phil <phil>
* Python/sip/qsciscintillabase.sip:
Updated the sub-class convertor code in the Python bindings for the
Cmake and VHDL lexers.
[6ab6570728a2]
2007-05-26 phil <phil>
* NEWS:
Updated the NEWS file. Released as v2.0.
[eec9914d8211] [2.0]
2007-05-19 phil <phil>
* Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Added basic input method support for Qt4 so that accented characters
now work. (Although there is still a font problem - at least a text
colour problem.)
[6b41f3694999]
* qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintillabase.cpp:
Fixed building against Qt v3.
[9e9ba05de0fb]
2007-05-17 phil <phil>
* qt/qsciscintilla.cpp:
Fixed an autocompletion problem where an empty list was being
displayed.
[c7214274017c]
2007-05-16 phil <phil>
* qt/qsciscintilla.cpp:
Fixed a bug where autocompleting from the document was looking for
preceeding non-word characters as well.
[3ee6fd746d49]
* qt/qsciscintilla.cpp:
Fixed silly typo that broke call tips.
[05213a8933c2]
2007-05-09 phil <phil>
* qt/qsciscintilla.cpp:
Fiex an autocompletion bug for words that only had preceding
whitespace.
[a8f3339e02c6]
* Python/configure.py, lib/gen_python_api.py,
qsci/api/python/Python-2.4.api, qsci/api/python/Python-2.5.api,
qt/qsciapis.cpp, qt/qsciapis.h:
Call tips shouldn't now get confused with commas in the text after
the argument list. The included API files for Python should now be
complete and properly exclude anything beginning with an underscore.
The Python bindings configure.py can now install the API file in a
user supplied directory.
[c7e93dc918de]
* qt/qscintilla_cs.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm,
qt/qscintilla_ru.qm:
Ran lrelease on the project.
[c3ce60078221]
* Makefile, qt/qscintilla_cs.ts, qt/qscintilla_de.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts:
Updated the internal build system to Qt v4.3.0rc1. Ran lupdate on
the project.
[6a86e71a4e26]
2007-05-08 phil <phil>
* Python/sip/qsciscintilla.sip, qt/qsciapis.cpp, qt/qsciapis.h,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Call tips will now show all the tips for a function (in all scopes)
if the current context/scope isn't known.
[cbebccc205c7]
* Python/sip/qsciscintilla.sip, qt/qsciapis.cpp, qt/qsciapis.h,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Added callTipsStyle() and setCallTipsStyle() to QsciScintilla.
[59d453b5da8c]
2007-05-07 phil <phil>
* qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Autocompletion from documents should now work the same as QScintilla
v1. The only difference is that the list does not contain the
preceding context so it is consistent with autocompletion from APIs.
[46de719d325e]
* qt/qscintilla.pro, qt/qscintilla_cs.qm, qt/qscintilla_cs.ts:
Added the Czech translations from Zdenek Bohm.
[139fd9aee405]
2007-04-30 phil <phil>
* Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added QsciScintilla::wordCharacters().
[d6e56986a031]
2007-04-29 phil <phil>
* Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip,
qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Added lots of consts to QsciScintilla getter methods.
[4aaffa8611ba]
* Python/configure.py, Python/sip/qsciscintilla.sip,
qt/qscintilla_de.qm, qt/qscintilla_de.ts, qt/qscintilla_fr.ts,
qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added caseSensitive() and isWordCharacter() to QsciScintilla.
Updated translations from Detlev.
[64223bf97266]
2007-04-10 phil <phil>
* Python/sip/qscilexercmake.sip, Python/sip/qscilexervhdl.sip,
Python/sip/qscimodcommon.sip, qt/qscilexercmake.cpp,
qt/qscilexercmake.h, qt/qscilexervhdl.cpp, qt/qscilexervhdl.h,
qt/qscintilla.pro:
Added the QsciLexerVHDL class.
[10029339786f]
* Python/sip/qscilexercmake.sip, Python/sip/qscimodcommon.sip,
qt/qscilexercmake.cpp, qt/qscilexercmake.h, qt/qscintilla.pro:
Added the QsciLexerCmake class.
[c1c911246f75]
2007-04-09 phil <phil>
* qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Finished call tip support.
[b8c717297392]
2007-04-07 phil <phil>
* qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Some refactoring in preparation for getting call tips working.
[6cb925653a80]
2007-04-06 phil <phil>
* qt/qsciscintilla.cpp:
Fixed autoindenting.
[8d7b93ee4d9e]
2007-04-05 phil <phil>
* qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintilla.cpp:
Fixed autocompletion so that it works with lexers that don't define
word separators, and lexers that are case insensitive.
[66634cf13685]
2007-04-04 phil <phil>
* qt/ScintillaQt.cpp, qt/qsciscintilla.cpp:
Fixed the horizontal scrollbar when word wrapping.
[021ea1fe8468]
2007-04-03 phil <phil>
* Python/configure.py, Python/sip/qsciscintillabase.sip, delcvs.bat,
doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/ScintillaRelated.html,
doc/index.html, gtk/makefile, gtk/scintilla.mak, include/SciLexer.h,
include/Scintilla.h, include/Scintilla.iface, qt/ScintillaQt.cpp,
qt/qscintilla.pro, qt/qsciscintillabase.h, src/Document.cxx,
src/Document.h, src/DocumentAccessor.cxx, src/Editor.cxx,
src/Editor.h, src/ExternalLexer.h, src/KeyWords.cxx, src/LexAU3.cxx,
src/LexBash.cxx, src/LexCmake.cxx, src/LexHTML.cxx, src/LexLua.cxx,
src/LexMSSQL.cxx, src/LexOthers.cxx, src/LexTADS3.cxx,
src/PropSet.cxx, src/RESearch.cxx, src/RESearch.h,
src/SplitVector.h, vcbuild/SciLexer.dsp, version.txt,
win32/PlatWin.cxx, win32/ScintRes.rc, win32/ScintillaWin.cxx,
win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak:
Merged Scintilla v1.73.
[2936af6fc62d]
2007-03-18 phil <phil>
* Makefile, Python/sip/qscilexerd.sip, Python/sip/qscimodcommon.sip,
Python/sip/qsciscintillabase.sip, qt/qscilexerd.cpp,
qt/qscilexerd.h, qt/qscintilla.pro, qt/qscintilla_de.qm,
qt/qscintilla_de.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts,
qt/qscintilla_ru.ts:
Switched the internal build system to Qt v4.2.3. Added the D lexer
support from Detlev.
[667e9b81ab4f]
2007-03-04 phil <phil>
* Makefile, example-Qt4/mainwindow.cpp, qt/PlatQt.cpp,
qt/qsciscintilla.cpp:
Fixed a bug in default font handling. Removed use of QIODevice::Text
in the example as it is unnecessary and a performance hog. Moved the
internal Qt3 build system to Qt v3.3.8. Auto-indentation should now
work (as badly) as it did with QScintilla v1.
[4d3ad4d1f295]
2007-01-17 phil <phil>
* Python/sip/qsciapis.sip, qt/qsciapis.cpp, qt/qsciapis.h:
Added defaultPreparedName() to QsciAPIs.
[2a3c872122dd]
* designer-Qt4/qscintillaplugin.cpp:
Fixed the Qt4 Designer plugin include file value.
[ea7cb8634ad2]
2007-01-16 phil <phil>
* Python/sip/qsciapis.sip, qt/qsciapis.cpp, qt/qsciapis.h:
Added cancelPreparation() and apiPreparationCancelled() to QsciAPIs.
[2d7dd00e3bc0]
* Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip,
build.py, lib/LICENSE.commercial.short, lib/LICENSE.gpl.short,
qt/qscintilla.pro, qt/qsciscintilla.cpp, qt/qsciscintilla.h,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Updated the copyright notices. Added selectionToEol() and
setSelectionToEol() to QsciScintilla. Added the other 1.72 changes
to the low level API.
[ddcf2d43cf31]
* doc/SciBreak.jpg, doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/ScintillaRelated.html,
doc/index.html, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/makefile,
gtk/scintilla.mak, include/SciLexer.h, include/Scintilla.h,
include/Scintilla.iface, qt/ScintillaQt.h, src/CellBuffer.cxx,
src/CellBuffer.h, src/ContractionState.cxx, src/Document.cxx,
src/Document.h, src/DocumentAccessor.cxx, src/Editor.cxx,
src/Editor.h, src/KeyWords.cxx, src/LexCPP.cxx, src/LexD.cxx,
src/LexGen.py, src/LexHTML.cxx, src/LexInno.cxx, src/LexLua.cxx,
src/LexMatlab.cxx, src/LexNsis.cxx, src/LexOthers.cxx,
src/LexRuby.cxx, src/LexTADS3.cxx, src/Partitioning.h,
src/ScintillaBase.cxx, src/SplitVector.h, src/StyleContext.h,
src/ViewStyle.cxx, src/ViewStyle.h, vcbuild/SciLexer.dsp,
version.txt, win32/ScintRes.rc, win32/ScintillaWin.cxx,
win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak:
Merged Scintilla v1.72, but any new features are not yet exploited.
[dcdfde9050a2]
2007-01-09 phil <phil>
* Python/configure.py:
Fixed bug in configure.py when the -p flag wasn't specified.
[50dc69f2b20d]
2007-01-04 phil <phil>
* Python/configure.py, Python/sip/qscilexer.sip, qt/qsciapis.cpp,
qt/qsciapis.h, qt/qsciscintilla.cpp:
Backported to Qt v3. Note that this will probably break again in the
future when call tips are redone.
[3bcc4826fc73]
2007-01-02 phil <phil>
* Python/configure.py, lib/gen_python_api.py,
qsci/api/python/Python-2.4.api, qsci/api/python/Python-2.5.api,
qt/qsciapis.cpp:
Added the Python v2.4 and v2.5 API files. Added the generation of
the QScintilla2.api file.
[49beb92ca721]
2007-01-01 phil <phil>
* Python/sip/qsciscintilla.sip, qt/qscilexer.h, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added autoCompletionFillupsEnabled() and
setAutoCompletionFillupsEnabled() to QsciScintilla. Updated the
Python bindings.
[7aa946010e9d]
* Python/sip/qsciapis.sip, qt/qsciapis.cpp, qt/qsciapis.h:
Implemented loadPrepared() and savePrepared() in QsciAPIs. Added
isPrepared() to QsciAPIs. Updated the Python bindings.
[4c5e3d80fec7]
* Python/sip/qsciapis.sip, qt/qsciapis.cpp, qt/qsciapis.h:
Added installAPIFiles() and stubs for loadPrepared() and
savePrepared() to QsciAPIs.
[93f4dd7222a1]
* Python/sip/qsciapis.sip:
Added the missing qsciapis.sip file.
[064b524acc93]
* Python/sip/qscilexer.sip, Python/sip/qscimodcommon.sip,
lib/qscintilla.dxy, qt/qsciapis.cpp, qt/qsciapis.h,
qt/qscilexer.cpp, qt/qscilexer.h:
Fixed the generation of the API documentation. Added apis() and
setAPIs() to QsciLexer. Removed apiAdd(), apiClear(), apiLoad(),
apiRemove(), apiProcessingStarted() and apiProcessingFinished() from
QsciLexer. Added apiPreparationStarted() and
apiPreparationFinished() to QsciAPIs. Made QsciAPIs part of the API
again. Updated the Python bindings.
[851d133b12ff]
2006-12-20 phil <phil>
* Makefile, qt/qsciapis.cpp, qt/qsciapis.h:
Updated the internal build system to Qt v4.2.2. More work on auto-
completion.
[d4542220e7a2]
2006-11-26 phil <phil>
* qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/qsciapis.cpp, qt/qsciapis.h,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
More work on the auto-completion code.
[37b2d0d2b154]
2006-11-22 phil <phil>
* qt/qsciapis.cpp, qt/qsciapis.h, qt/qscilexer.cpp, qt/qscilexer.h,
qt/qscilexerbatch.cpp, qt/qscilexerbatch.h, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Changed the handling of case sensitivity in auto-completion lists.
Lexers now say if they are case sensitive.
[b1932fba61ec]
2006-11-17 phil <phil>
* Makefile, Python/configure.py, Python/sip/qscicommand.sip,
Python/sip/qscicommandset.sip, Python/sip/qscidocument.sip,
Python/sip/qscilexer.sip, Python/sip/qscilexerbash.sip,
Python/sip/qscilexerbatch.sip, Python/sip/qscilexercpp.sip,
Python/sip/qscilexercsharp.sip, Python/sip/qscilexercss.sip,
Python/sip/qscilexerdiff.sip, Python/sip/qscilexerhtml.sip,
Python/sip/qscilexeridl.sip, Python/sip/qscilexerjava.sip,
Python/sip/qscilexerjavascript.sip, Python/sip/qscilexerlua.sip,
Python/sip/qscilexermakefile.sip, Python/sip/qscilexerperl.sip,
Python/sip/qscilexerpov.sip, Python/sip/qscilexerproperties.sip,
Python/sip/qscilexerpython.sip, Python/sip/qscilexerruby.sip,
Python/sip/qscilexersql.sip, Python/sip/qscilexertex.sip,
Python/sip/qscimacro.sip, Python/sip/qsciprinter.sip,
Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip,
TODO, build.py, designer-Qt3/qscintillaplugin.cpp, designer-
Qt4/qscintillaplugin.cpp, example-Qt3/application.cpp, example-
Qt4/mainwindow.cpp, qt/PlatQt.cpp, qt/ScintillaQt.cpp,
qt/qsciapis.cpp, qt/qsciapis.h, qt/qscicommand.cpp,
qt/qscicommand.h, qt/qscicommandset.cpp, qt/qscicommandset.h,
qt/qscidocument.cpp, qt/qscidocument.h, qt/qscilexer.cpp,
qt/qscilexer.h, qt/qscilexerbash.cpp, qt/qscilexerbash.h,
qt/qscilexerbatch.cpp, qt/qscilexerbatch.h, qt/qscilexercpp.cpp,
qt/qscilexercpp.h, qt/qscilexercsharp.cpp, qt/qscilexercsharp.h,
qt/qscilexercss.cpp, qt/qscilexercss.h, qt/qscilexerdiff.cpp,
qt/qscilexerdiff.h, qt/qscilexerhtml.cpp, qt/qscilexerhtml.h,
qt/qscilexeridl.cpp, qt/qscilexeridl.h, qt/qscilexerjava.cpp,
qt/qscilexerjava.h, qt/qscilexerjavascript.cpp,
qt/qscilexerjavascript.h, qt/qscilexerlua.cpp, qt/qscilexerlua.h,
qt/qscilexermakefile.cpp, qt/qscilexermakefile.h,
qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpov.cpp,
qt/qscilexerpov.h, qt/qscilexerproperties.cpp,
qt/qscilexerproperties.h, qt/qscilexerpython.cpp,
qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h,
qt/qscilexersql.cpp, qt/qscilexersql.h, qt/qscilexertex.cpp,
qt/qscilexertex.h, qt/qscimacro.cpp, qt/qscimacro.h,
qt/qscintilla.pro, qt/qsciprinter.cpp, qt/qsciprinter.h,
qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Fixed the name of the generated source packages. Reorganised so that
the header files are in a separate sub-directory. Updated the
designer plugins and examples for the changing in header file
structure. More work on autocompletion. Basic functionality is
there, but no support for the "current context" yet.
[312e74140bb8]
2006-11-04 phil <phil>
* designer-Qt4/qscintillaplugin.cpp:
Designer plugin fixes for Qt4 from DavidB.
[920f7af8bec6]
2006-11-03 phil <phil>
* qt/qscilexer.cpp:
Fixed QsciLexer::setPaper() so that it also sets the background
colour of the default style.
[fcab00732d97]
2006-10-21 phil <phil>
* Makefile, qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintilla.cpp:
Switched the internal build system to Qt v3.3.7 and v4.2.1.
Portability fixes for Qt3.
[512b57958ea4]
2006-10-20 phil <phil>
* Makefile, build.py, include/Platform.h, lib/README.doc,
qt/PlatQt.cpp, qt/qscimacro.cpp, qt/qscintilla.pro,
qt/qsciscintilla.cpp:
Renamed the base package QScintilla2. Platform portability fixes
from Ulli. The qsci data directory is now installed (where API files
will be kept).
[2a61d65842fb]
2006-10-13 phil <phil>
* Python/sip/qsciscintilla.sip, qt/qscintilla.pro,
qt/qscintilla_pt_br.qm, qt/qscintilla_pt_br.ts,
qt/qscintilla_ptbr.qm, qt/qscintilla_ptbr.ts, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added QsciScintilla::linesChanged() from Detlev. Removed
QsciScintilla::markerChanged(). Renamed the Brazilian Portugese
translation files.
[5b23de72e063]
* Makefile, Python/sip/qscilexer.sip, qt/ListBoxQt.cpp,
qt/ListBoxQt.h, qt/ScintillaQt.cpp, qt/qsciapis.cpp, qt/qsciapis.h,
qt/qscilexer.cpp, qt/qscilexer.h, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added apiRemove(), apiProcessingStarted() and
apiProcessingFinished() to QsciLexer.
[ef2cb95b868a]
2006-10-08 phil <phil>
* qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Reset the text and paper colours and font when removing a lexer.
[08ac85b34d80]
* qt/qsciscintilla.cpp:
Fixed Qt3 specific problem with most recent changes.
[e4ba06e01a1e]
2006-10-06 phil <phil>
* Python/sip/qsciapis.sip, Python/sip/qscilexer.sip,
Python/sip/qscimodcommon.sip, Python/sip/qsciscintilla.sip,
qt/ListBoxQt.cpp, qt/SciClasses.cpp, qt/qsciapis.cpp, qt/qsciapis.h,
qt/qscilexer.cpp, qt/qscilexer.h, qt/qscilexerbash.cpp,
qt/qscilexerbash.h, qt/qscilexerbatch.cpp, qt/qscilexerbatch.h,
qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qscilexercsharp.h,
qt/qscilexercss.cpp, qt/qscilexercss.h, qt/qscilexerdiff.cpp,
qt/qscilexerdiff.h, qt/qscilexerhtml.cpp, qt/qscilexerhtml.h,
qt/qscilexeridl.h, qt/qscilexerjavascript.h, qt/qscilexerlua.cpp,
qt/qscilexerlua.h, qt/qscilexermakefile.cpp, qt/qscilexermakefile.h,
qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpov.cpp,
qt/qscilexerpov.h, qt/qscilexerproperties.cpp,
qt/qscilexerproperties.h, qt/qscilexerpython.cpp,
qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h,
qt/qscilexersql.cpp, qt/qscilexersql.h, qt/qscilexertex.cpp,
qt/qscilexertex.h, qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Made QsciAPIs an internal class and instead added apiAdd(),
apiClear() and apiLoad() to QsciLexer. Replaced
setAutoCompletionStartCharacters() with
setAutoCompletionWordSeparators() in QsciScintilla. Removed
autoCompletionFillupsEnabled(), setAutoCompletionFillupsEnabled(),
setAutoCompletionAPIs() and setCallTipsAPIs() from QsciScintilla.
Added AcsNone to QsciScintilla::AutoCompletionSource. Horizontal
scrollbars are displayed as needed in autocompletion lists. Added
QsciScintilla::lexer(). Fixed setFont(), setColor(), setEolFill()
and setPaper() in QsciLexer so that they handle all styles as
documented. Removed all occurences of QString::null. Fixed the
problem with indentation guides not changing when the size of a
space changed. Added the QsciScintilla::markerChanged() signal.
Updated the Python bindings.
[9ae22e152365]
2006-10-01 phil <phil>
* qt/PlatQt.cpp:
Fixed a silly line drawing bug.
[0f9f5c22421a]
2006-09-30 phil <phil>
* qt/qscintilla.pro:
Fixes for building on Windows and MacOS/X.
[c16bc6aeba20]
2006-09-29 phil <phil>
* example-Qt4/application.pro, qt/PlatQt.cpp, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.cpp:
Fixed the documentation bug in QsciScintilla::insert(). Fixed the
mouse shape changing properly. Fixed the drawing of fold markers.
[08af64d93094]
2006-09-23 phil <phil>
* lib/README:
Improved the README for the pedants amongst us.
[683bdb9a84fc]
* designer-Qt4/designer.pro, designer-Qt4/qscintillaplugin.cpp,
designer-Qt4/qscintillaplugin.h:
The Qt4 Designer plugin now loads - thanks to DavidB.
[feb5a3618df6]
2006-09-16 phil <phil>
* build.py, designer-Qt3/designer.pro, designer-
Qt3/qscintillaplugin.cpp, designer-Qt4/designer.pro, designer-
Qt4/qscintillaplugin.cpp, designer/designer.pro,
designer/qscintillaplugin.cpp, lib/README.doc, qt/qsciscintilla.h:
Fixed the Qt3 designer plugin. Added the Qt4 designer plugin based
on Andrius Ozelis's work. (But it doesn't load for me - does anybody
else have a problem?)
[3a0873ed5ff0]
2006-09-09 phil <phil>
* Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
QsciScintilla's setFont(), setColor() and setPaper() now work as
expected when there is no lexer (and have no effect if there is a
lexer).
[65cc713d9ecb]
2006-08-28 phil <phil>
* qt/ListBoxQt.cpp, qt/PlatQt.cpp:
Fixed a crash when double-clicking on an auto-completion list entry.
[d8eecfc59ca2]
2006-08-27 phil <phil>
* Python/sip/qsciscintillabase.sip, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/index.html, gtk/Converter.h, gtk/PlatGTK.cxx,
gtk/ScintillaGTK.cxx, qt/ScintillaQt.cpp, qt/qsciscintillabase.h,
src/Editor.cxx, src/LexCPP.cxx, src/LexPerl.cxx, src/LexVB.cxx,
src/StyleContext.h, version.txt, win32/ScintRes.rc,
win32/ScintillaWin.cxx:
Merged Scintilla v1.71. The SCN_DOUBLECLICK() signal now passes the
line and position of the click.
[81c852fed943]
2006-08-17 phil <phil>
* Python/sip/qsciscintilla.sip, qt/ScintillaQt.cpp:
Fixed pasting when Unicode mode is set.
[9d4a7ccef6f4]
* build.py:
Fixed the internal build system leaving SVN remnants around.
[96c36a0e94ac]
2006-07-30 phil <phil>
* NEWS, Python/sip/qsciscintilla.sip, qt/qscicommand.h,
qt/qscicommandset.h, qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Added autoCompletionFillupsEnabled() and
setAutoCompletionFillupsEnabled() to QsciScintilla. Don't auto-
complete numbers. Removed QsciCommandList.
[e9886e5da7c3]
2006-07-29 phil <phil>
* lib/README.doc, qt/PlatQt.cpp:
Debugged the Qt3 backport - all seems to work.
[1e743e050599]
* Python/configure.py, Python/sip/qscimod3.sip,
Python/sip/qsciscintillabase.sip, Python/sip/qsciscintillabase4.sip,
build.py, lib/README, lib/README.doc, lib/qscintilla.dxy,
qt/qsciscintillabase.h:
The PyQt3 bindings now work. Updated the documentation and build
system for both Qt3 and Qt4.
[f4fa8a9a35c0]
2006-07-28 phil <phil>
* Python/sip/qscimodcommon.sip, Python/sip/qsciscintillabase4.sip,
Python/sip/qscitypes.sip, example-Qt3/application.cpp, example-
Qt3/application.h, example-Qt3/application.pro, qt/qscicommand.cpp,
qt/qscicommandset.cpp, qt/qscidocument.cpp, qt/qscimacro.cpp,
qt/qscintilla.pro, qt/qsciprinter.cpp, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h, qt/qscitypes.h:
Backed out the QscoTypes namespace now that the Qt3/4 source code
has been consolidated.
[372c37fa8b9c]
* qt/qscintilla_de.ts, qt/qscintilla_fr.ts, qt/qscintilla_ptbr.ts,
qt/qscintilla_ru.ts, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h, qt/qsciscintillabase3.cpp,
qt/qsciscintillabase3.h, qt/qsciscintillabase4.cpp,
qt/qsciscintillabase4.h:
Integated the Qt3 and Qt4 source files.
[4ee1fcf04cd9]
* Makefile, build.py, lib/README.doc, lib/qscintilla.dxy,
qt/qscintilla.pro, qt/qsciscintillabase.h,
qt/qsciscintillabase3.cpp, qt/qsciscintillabase3.h,
qt/qsciscintillabase4.cpp, qt/qsciscintillabase4.h:
The Qt3 port now compiles, but otherwise untested.
[da227e07e729]
* Python/sip/qscimacro.sip, lib/README.doc, lib/qscintilla.dxy,
qt/PlatQt.cpp, qt/qscilexermakefile.cpp, qt/qscimacro.cpp,
qt/qscimacro.h, qt/qscintilla.pro, qt/qsciscintillabase.h,
qt/qsciscintillabase3.cpp, qt/qsciscintillabase3.h,
qt/qsciscintillabase4.cpp, qt/qsciscintillabase4.h:
Changes to QsciMacro so that it has a more consistent API across Qt3
and Qt4. Backported to Qt3 - doesn't yet build because Qt3 qmake
doesn't understand the preprocessor.
[910b415ec4a8]
2006-07-27 phil <phil>
* build.py, designer/qscintillaplugin.cpp, example-Qt3/README,
example-Qt4/README, lib/README, lib/README.doc, lib/qscintilla.dxy,
qt/qscintilla.pro:
Updated the documentation.
[7774f3e87003]
2006-07-26 phil <phil>
* Makefile, Python/configure.py, Python/qsciapis.sip,
Python/qscicommand.sip, Python/qscicommandset.sip,
Python/qscidocument.sip, Python/qscilexer.sip,
Python/qscilexerbash.sip, Python/qscilexerbatch.sip,
Python/qscilexercpp.sip, Python/qscilexercsharp.sip,
Python/qscilexercss.sip, Python/qscilexerdiff.sip,
Python/qscilexerhtml.sip, Python/qscilexeridl.sip,
Python/qscilexerjava.sip, Python/qscilexerjavascript.sip,
Python/qscilexerlua.sip, Python/qscilexermakefile.sip,
Python/qscilexerperl.sip, Python/qscilexerpov.sip,
Python/qscilexerproperties.sip, Python/qscilexerpython.sip,
Python/qscilexerruby.sip, Python/qscilexersql.sip,
Python/qscilexertex.sip, Python/qscimacro.sip, Python/qscimod4.sip,
Python/qscimodcommon.sip, Python/qsciprinter.sip,
Python/qsciscintilla.sip, Python/qsciscintillabase4.sip,
Python/qscitypes.sip, Python/sip/qsciapis.sip,
Python/sip/qscicommand.sip, Python/sip/qscicommandset.sip,
Python/sip/qscidocument.sip, Python/sip/qscilexer.sip,
Python/sip/qscilexerbash.sip, Python/sip/qscilexerbatch.sip,
Python/sip/qscilexercpp.sip, Python/sip/qscilexercsharp.sip,
Python/sip/qscilexercss.sip, Python/sip/qscilexerdiff.sip,
Python/sip/qscilexerhtml.sip, Python/sip/qscilexeridl.sip,
Python/sip/qscilexerjava.sip, Python/sip/qscilexerjavascript.sip,
Python/sip/qscilexerlua.sip, Python/sip/qscilexermakefile.sip,
Python/sip/qscilexerperl.sip, Python/sip/qscilexerpov.sip,
Python/sip/qscilexerproperties.sip, Python/sip/qscilexerpython.sip,
Python/sip/qscilexerruby.sip, Python/sip/qscilexersql.sip,
Python/sip/qscilexertex.sip, Python/sip/qscimacro.sip,
Python/sip/qscimod4.sip, Python/sip/qscimodcommon.sip,
Python/sip/qsciprinter.sip, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase4.sip, Python/sip/qscitypes.sip,
build.py, lib/LICENSE.edu, lib/LICENSE.edu.short, lib/README.MacOS:
Changed the build system to add the Python bindings.
[8a56c38c418b]
* Python/configure.py, Python/qscicommandset.sip,
Python/qscilexerruby.sip, Python/qscilexertex.sip,
Python/qscimod4.sip, Python/qsciscintilla.sip,
Python/qsciscintillabase4.sip, Python/qscitypes.sip:
Debugged the Python bindings - not yet part of the snapshots.
[8e348d9c7d38]
2006-07-25 phil <phil>
* Python/qsciapis.sip, Python/qscicommand.sip,
Python/qscicommandset.sip, Python/qscidocument.sip,
Python/qscilexer.sip, Python/qscilexerbash.sip,
Python/qscilexerbatch.sip, Python/qscilexercpp.sip,
Python/qscilexercsharp.sip, Python/qscilexercss.sip,
Python/qscilexerdiff.sip, Python/qscilexerhtml.sip,
Python/qscilexeridl.sip, Python/qscilexerjava.sip,
Python/qscilexerjavascript.sip, Python/qscilexerlua.sip,
Python/qscilexermakefile.sip, Python/qscilexerperl.sip,
Python/qscilexerpov.sip, Python/qscilexerproperties.sip,
Python/qscilexerpython.sip, Python/qscilexerruby.sip,
Python/qscilexersql.sip, Python/qscilexertex.sip,
Python/qscimacro.sip, Python/qscimod4.sip, Python/qscimodcommon.sip,
Python/qsciprinter.sip, Python/qsciscintilla.sip,
Python/qsciscintillabase4.sip, Python/qscitypes.sip, qt/qsciapis.h,
qt/qsciglobal.h, qt/qscilexer.h, qt/qscilexerbash.h,
qt/qscilexercpp.h, qt/qscilexerperl.h, qt/qscilexerpython.h,
qt/qscilexersql.h, qt/qsciprinter.h, qt/qsciscintilla.h:
Ported the .sip files from v1. (Not yet part of the snapshot.)
[c03807f9fbab]
* Makefile, qt/qscintilla-Qt4.pro, qt/qscintilla.pro:
The .pro file should now work with both Qt v3 and v4.
[c99aec4ce73d]
* Makefile, qt/qscintilla-Qt4.pro, qt/qscintilla.pro,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h,
qt/qsciscintillabase4.cpp, qt/qsciscintillabase4.h:
Some file reorganisation for when the backport to Qt3 is done.
[c97fb1bdc0e5]
* qt/qscicommand.cpp, qt/qscicommandset.cpp, qt/qscidocument.cpp,
qt/qscimacro.cpp, qt/qscintilla.pro, qt/qsciprinter.cpp,
qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h, qt/qscitypes.h:
Moved the Scintilla API enums out of QsciScintillaBase and into the
new QsciTypes namespace.
[6de0ac19e4df]
* qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Triple clicking now works.
[8ef632d89147]
2006-07-23 phil <phil>
* qt/qsciscintillabase.cpp:
Fixed incorrect selection after dropping text.
[4c62275c39f4]
* qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciscintillabase.cpp:
Dropping text seems (mostly) to work.
[7acc97948229]
2006-07-22 phil <phil>
* qt/PlatQt.cpp, qt/ScintillaQt.cpp, qt/ScintillaQt.h,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Scrollbars now work. The context menu now works. The clipboard and
mouse selection now works. Dragging to external windows now works
(but not dropping).
[73995ec258cd]
2006-07-18 phil <phil>
* example-Qt4/mainwindow.cpp, example-Qt4/mainwindow.h, qt/PlatQt.cpp,
qt/qextscintillalexerbash.cxx, qt/qextscintillalexerbash.h,
qt/qextscintillalexerbatch.cxx, qt/qextscintillalexerbatch.h,
qt/qextscintillalexercpp.cxx, qt/qextscintillalexercpp.h,
qt/qextscintillalexercsharp.cxx, qt/qextscintillalexercsharp.h,
qt/qextscintillalexercss.cxx, qt/qextscintillalexercss.h,
qt/qextscintillalexerdiff.cxx, qt/qextscintillalexerdiff.h,
qt/qextscintillalexerhtml.cxx, qt/qextscintillalexerhtml.h,
qt/qextscintillalexeridl.cxx, qt/qextscintillalexeridl.h,
qt/qextscintillalexerjava.cxx, qt/qextscintillalexerjava.h,
qt/qextscintillalexerjavascript.cxx,
qt/qextscintillalexerjavascript.h, qt/qextscintillalexerlua.cxx,
qt/qextscintillalexerlua.h, qt/qextscintillalexermakefile.cxx,
qt/qextscintillalexermakefile.h, qt/qextscintillalexerperl.cxx,
qt/qextscintillalexerperl.h, qt/qextscintillalexerpov.cxx,
qt/qextscintillalexerpov.h, qt/qextscintillalexerproperties.cxx,
qt/qextscintillalexerproperties.h, qt/qextscintillalexerpython.cxx,
qt/qextscintillalexerpython.h, qt/qextscintillalexerruby.cxx,
qt/qextscintillalexerruby.h, qt/qextscintillalexersql.cxx,
qt/qextscintillalexersql.h, qt/qextscintillalexertex.cxx,
qt/qextscintillalexertex.h, qt/qextscintillamacro.cxx,
qt/qextscintillamacro.h, qt/qextscintillaprinter.cxx,
qt/qextscintillaprinter.h, qt/qsciapis.h, qt/qscicommand.h,
qt/qscilexer.h, qt/qscilexerbash.cpp, qt/qscilexerbash.h,
qt/qscilexerbatch.cpp, qt/qscilexerbatch.h, qt/qscilexercpp.cpp,
qt/qscilexercpp.h, qt/qscilexercsharp.cpp, qt/qscilexercsharp.h,
qt/qscilexercss.cpp, qt/qscilexercss.h, qt/qscilexerdiff.cpp,
qt/qscilexerdiff.h, qt/qscilexerhtml.cpp, qt/qscilexerhtml.h,
qt/qscilexeridl.cpp, qt/qscilexeridl.h, qt/qscilexerjava.cpp,
qt/qscilexerjava.h, qt/qscilexerjavascript.cpp,
qt/qscilexerjavascript.h, qt/qscilexerlua.cpp, qt/qscilexerlua.h,
qt/qscilexermakefile.cpp, qt/qscilexermakefile.h,
qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpov.cpp,
qt/qscilexerpov.h, qt/qscilexerproperties.cpp,
qt/qscilexerproperties.h, qt/qscilexerpython.cpp,
qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h,
qt/qscilexersql.cpp, qt/qscilexersql.h, qt/qscilexertex.cpp,
qt/qscilexertex.h, qt/qscimacro.cpp, qt/qscimacro.h,
qt/qscintilla.pro, qt/qsciprinter.cpp, qt/qsciprinter.h,
qt/qsciscintilla.h:
Ported the rest of the API to Qt4. Finished porting the example to
Qt4.
[de0ede6bbcf5]
2006-07-17 phil <phil>
* qt/qextscintilla.cxx, qt/qextscintilla.h, qt/qextscintillaapis.cxx,
qt/qextscintillaapis.h, qt/qextscintillacommand.cxx,
qt/qextscintillacommand.h, qt/qextscintillacommandset.cxx,
qt/qextscintillacommandset.h, qt/qextscintilladocument.cxx,
qt/qextscintilladocument.h, qt/qextscintillalexer.cxx,
qt/qextscintillalexer.h, qt/qsciapis.cpp, qt/qsciapis.h,
qt/qscicommand.cpp, qt/qscicommand.h, qt/qscicommandset.cpp,
qt/qscicommandset.h, qt/qscidocument.cpp, qt/qscidocument.h,
qt/qscilexer.cpp, qt/qscilexer.h, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
More porting to Qt4 - just the lexers remaining.
[07158797bcf2]
* qt/ListBoxQt.cpp, qt/PlatQt.cpp, qt/SciClasses.cpp,
qt/ScintillaQt.cpp, qt/qscintilla.pro, qt/qsciscintillabase.cpp:
Further Qt4 changes so that Q3Support is no longer needed.
[cb3ca2aee49e]
* qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/PlatQt.cpp, qt/SciClasses.cpp,
qt/SciClasses.h, qt/SciListBox.cxx, qt/SciListBox.h,
qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qscintilla.pro,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Ported the auto-completion list implementation to Qt4.
[1d0d07f7ba3b]
2006-07-16 phil <phil>
* qt/PlatQt.cpp, qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Drawing now seems Ok. Keyboard support now seems Ok. Start of the
mouse support.
[20a223c3f57e]
2006-07-12 phil <phil>
* include/Platform.h, qt/PlatQt.cpp, qt/ScintillaQt.cpp:
Painting now seems to happen only within paint events - but
incorrectly.
[a60a10298391]
* qt/PlatQt.cpp, qt/PlatQt.cxx, qt/ScintillaQt.cpp,
qt/ScintillaQt.cxx, qt/ScintillaQt.h, qt/qscintilla.pro:
Recoded the implementation of surfaces so that painters are only
active during paint events. Not yet debugged.
[d0d91ae8e514]
* build.py, qt/PlatQt.cxx, qt/ScintillaQt.cxx, qt/ScintillaQt.h,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Recoded the handling of key presses so that it doesn't use any Qt3
specific features and should be backported to QScintilla v1. It also
should work better in Unicode mode.
[c2b96d686ee6]
2006-07-11 phil <phil>
* Makefile, build.py, example-Qt3/README, example-Qt3/application.cpp,
example-Qt3/application.h, example-Qt3/application.pro, example-
Qt3/fileopen.xpm, example-Qt3/fileprint.xpm, example-
Qt3/filesave.xpm, example-Qt3/main.cpp, example-Qt4/README, example-
Qt4/application.pro, example-Qt4/application.qrc, example-
Qt4/images/copy.png, example-Qt4/images/cut.png, example-
Qt4/images/new.png, example-Qt4/images/open.png, example-
Qt4/images/paste.png, example-Qt4/images/save.png, example-
Qt4/main.cpp, example-Qt4/mainwindow.cpp, example-Qt4/mainwindow.h,
example/README, example/application.cpp, example/application.h,
example/application.pro, example/fileopen.xpm,
example/fileprint.xpm, example/filesave.xpm, example/main.cpp,
qt/PlatQt.cxx, qt/SciListBox.cxx, qt/SciListBox.h,
qt/ScintillaQt.cxx, qt/ScintillaQt.h, qt/qextscintilla.cxx,
qt/qextscintillabase.cxx, qt/qextscintillabase.h,
qt/qextscintillaglobal.h, qt/qsciglobal.h, qt/qscintilla.pro,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Whole raft of changes starting QScintilla2.
[7f0bd20f2f83]
2006-07-09 phil <phil>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts, qt/qscintilla_fr.ts,
qt/qscintilla_ptbr.ts, qt/qscintilla_ru.ts:
Updated translations from Detlev.
[c04c167d802e]
2006-07-08 phil <phil>
* NEWS, qt/qextscintilla.cxx, qt/qextscintilla.h:
Added QextScintilla::isCallTipActive().
[1f7dcb40db25]
* lib/LICENSE.commercial.short, lib/LICENSE.edu.short,
lib/LICENSE.gpl.short, qt/qextscintilla.cxx:
Changed the autoindentation to be slightly cleverer when handling
Python. If a lexer does not define block end words then a block
start word is ignored unless it is the last significant word in a
line.
[d5813c13f5da]
2006-07-02 phil <phil>
* qt/PlatQt.cxx:
Possibly fixed a possible problem with double clicking under
Windows.
[271141bb2b43]
* NEWS, qt/ScintillaQt.cxx, qt/qextscintilla.cxx, qt/qextscintilla.h:
Added setWrapVisualFlags(), WrapMode::WrapCharacter, WrapVisualFlag
to QextScintilla. The layout cache is now set according to the wrap
mode. Setting a wrap mode now disables the horizontal scrollbar.
[a498b86e7999]
2006-07-01 phil <phil>
* NEWS, qt/qextscintilla.cxx, qt/qextscintilla.h:
Added cancelList(), firstVisibleLine(), isListActive(),
showUserList(), textHeight() and userListActivated() to
QextScintilla.
[058c7be4bdfe]
* qt/qextscintilla.cxx:
Auto-completion changed so that subsequent start characters cause
the list to be re-created (containing a subset of the previous one).
[5b534658e638]
2006-06-28 phil <phil>
* NEWS, qt/SciListBox.cxx, qt/qextscintilla.cxx, qt/qextscintilla.h,
qt/qextscintillaapis.cxx, qt/qextscintillaapis.h,
qt/qextscintillalexer.cxx, qt/qextscintillalexer.h,
qt/qextscintillalexerpython.cxx, qt/qextscintillalexerpython.h:
Handle Key_Enter the same as Key_Return. QextScintilla::foldAll()
can now optionally fold all child fold points. Added
autoCompleteFromAll() and setAutoCompletionStartCharacters() to
QextScintilla. Vastly improved the way auto-completion and call tips
work.
[8b0472aaed61]
2006-06-25 phil <phil>
* qt/qextscintilla.cxx, qt/qextscintillabase.cxx,
qt/qextscintillalexer.cxx:
The default fore and background colours now default to the
application palette rather than being hardcoded to black and white.
[6cb6b5bef5fc]
* NEWS, qt/qextscintilla.cxx, qt/qextscintilla.h,
qt/qextscintillalexer.cxx, qt/qextscintillalexer.h:
Added defaultColor() and setDefaultColor() to QextScintillaLexer.
Added color() and setColor() to QextScintilla. Renamed eraseColor()
and setEraseColor() to paper() and setPaper() in QextScintilla.
[c1fbfc192235]
* NEWS, qt/SciListBox.cxx, qt/qextscintilla.cxx, qt/qextscintilla.h,
qt/qextscintillaapis.cxx, qt/qextscintillaapis.h,
qt/qextscintillabase.h, qt/qextscintillalexer.cxx,
qt/qextscintillalexer.h:
Added a couple of extra SendScintilla overloads. One is needed for
PyQt because of the change in SIP's handling of unsigned values. The
other is needed to solve C++ problems caused by the first.
Autocompletion list entries from APIs may now contain spaces. Added
defaultPaper() and setDefaultPaper() to QextScintillaLexer. Added
eraseColor() and setEraseColor() to QextScintilla.
[34f527ca0f99]
2006-06-21 phil <phil>
* qt/qextscintilla.cxx, qt/qextscintillalexer.cxx,
qt/qextscintillalexer.h, qt/qextscintillalexerhtml.cxx,
qt/qextscintillalexerhtml.h:
Removed QextScintillaLexer::styleBits() now that
SCI_GETSTYLEBITSNEEDED is available.
[1c6837500560]
* NEWS, qt/PlatQt.cxx, qt/qextscintilla.cxx, qt/qextscintilla.h:
QextScintilla::setSelectionBackgroundColor(),
QextScintilla::setMarkerBackgroundColor() and
QextScintilla::setCaretLineBackgroundColor() now respect the alpha
component.
[48bae1fffe85]
2006-06-20 phil <phil>
* NEWS, doc/ScintillaDoc.html, doc/ScintillaDownload.html,
doc/ScintillaHistory.html, doc/index.html, gtk/Converter.h,
gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, include/Scintilla.h,
include/Scintilla.iface, qt/qextscintillabase.h,
qt/qextscintillalexerpython.h, src/Editor.cxx, src/Editor.h,
src/ViewStyle.cxx, src/ViewStyle.h, version.txt, win32/ScintRes.rc,
win32/ScintillaWin.cxx:
Merged Scintilla v1.70.
[03ac3edd5dd2]
2006-06-19 phil <phil>
* qt/qextscintillabase.h, qt/qextscintillalexerlua.h,
qt/qextscintillalexerruby.cxx, qt/qextscintillalexerruby.h,
qt/qextscintillalexersql.h:
Significant, and incompatible, updates to the QextScintillaLexerRuby
class.
[0484fe132d0c]
* src/PropSet.cxx:
Fix for qsort helpers linkage from Ulli. (Patch sent upstream.)
[2307adf67045]
2006-06-18 phil <phil>
* qt/qextscintillalexerpython.cxx, qt/qextscintillalexerpython.h:
Ctrl-D is now duplicate selection rather than duplicate line.
Updated the Python lexer to add support for hightlighted identifiers
and decorators.
[52ca24a722ac]
* qt/qextscintillabase.h, qt/qextscintillacommandset.cxx,
qt/qextscintillalexer.h, qt/qextscintillalexerbash.h,
qt/qextscintillalexerbatch.h, qt/qextscintillalexercpp.h,
qt/qextscintillalexercsharp.h, qt/qextscintillalexercss.h,
qt/qextscintillalexerhtml.h, qt/qextscintillalexeridl.h,
qt/qextscintillalexerjava.h, qt/qextscintillalexerjavascript.h,
qt/qextscintillalexerlua.h, qt/qextscintillalexerperl.h,
qt/qextscintillalexerpov.h, qt/qextscintillalexerpython.h,
qt/qextscintillalexerruby.h, qt/qextscintillalexersql.h,
qt/qextscintillalexertex.h, qt/qscintilla.pro:
Added the Scintilla 1.69 extensions to the low level API.
[e89b98aaaa33]
* .repoman, build.py, doc/Icons.html, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/ScintillaRelated.html, doc/ScintillaToDo.html, doc/index.html,
gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile,
gtk/scintilla.mak, include/HFacer.py, include/KeyWords.h,
include/Platform.h, include/PropSet.h, include/SciLexer.h,
include/Scintilla.h, include/Scintilla.iface,
include/ScintillaWidget.h, qt/PlatQt.cxx, qt/ScintillaQt.h,
qt/qscintilla.pro, src/CallTip.cxx, src/CallTip.h,
src/CellBuffer.cxx, src/CellBuffer.h, src/CharClassify.cxx,
src/CharClassify.h, src/ContractionState.cxx, src/Document.cxx,
src/Document.h, src/DocumentAccessor.cxx, src/Editor.cxx,
src/Editor.h, src/ExternalLexer.cxx, src/Indicator.cxx,
src/KeyMap.cxx, src/KeyWords.cxx, src/LexAU3.cxx, src/LexBash.cxx,
src/LexBasic.cxx, src/LexCPP.cxx, src/LexCaml.cxx,
src/LexCsound.cxx, src/LexEiffel.cxx, src/LexGen.py,
src/LexGui4Cli.cxx, src/LexHTML.cxx, src/LexInno.cxx,
src/LexLua.cxx, src/LexMSSQL.cxx, src/LexOpal.cxx,
src/LexOthers.cxx, src/LexPOV.cxx, src/LexPython.cxx,
src/LexRuby.cxx, src/LexSQL.cxx, src/LexSpice.cxx, src/LexTCL.cxx,
src/LexVB.cxx, src/LineMarker.h, src/PropSet.cxx, src/RESearch.cxx,
src/RESearch.h, src/ScintillaBase.cxx, src/StyleContext.h,
src/ViewStyle.cxx, src/ViewStyle.h, src/XPM.cxx,
vcbuild/SciLexer.dsp, version.txt, win32/PlatWin.cxx,
win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/deps.mak,
win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak:
Removed the redundant .repoman file. Synced with Scintilla v1.69
with only the minimal changes needed to compile it.
[6774f137c5a1]
2006-06-17 phil <phil>
* .repoman, License.txt, Makefile, NEWS, README, TODO, bin/empty.txt,
build.py, delbin.bat, delcvs.bat, designer/designer.pro,
designer/qscintillaplugin.cpp, doc/Design.html, doc/Lexer.txt,
doc/SciBreak.jpg, doc/SciCoding.html, doc/SciRest.jpg,
doc/SciTEIco.png, doc/SciWord.jpg, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/ScintillaRelated.html, doc/ScintillaToDo.html,
doc/ScintillaUsage.html, doc/Steps.html, doc/index.html,
example/README, example/application.cpp, example/application.h,
example/application.pro, example/fileopen.xpm,
example/fileprint.xpm, example/filesave.xpm, example/main.cpp,
gtk/Converter.h, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx,
gtk/deps.mak, gtk/makefile, gtk/scintilla-marshal.c, gtk/scintilla-
marshal.h, gtk/scintilla-marshal.list, gtk/scintilla.mak,
include/Accessor.h, include/Face.py, include/HFacer.py,
include/KeyWords.h, include/Platform.h, include/PropSet.h,
include/SString.h, include/SciLexer.h, include/Scintilla.h,
include/Scintilla.iface, include/ScintillaWidget.h,
include/WindowAccessor.h, lib/LICENSE.commercial,
lib/LICENSE.commercial.short, lib/LICENSE.edu,
lib/LICENSE.edu.short, lib/LICENSE.gpl, lib/LICENSE.gpl.short,
lib/README, lib/README.MacOS, lib/qscintilla.dxy, qt/PlatQt.cxx,
qt/SciListBox.cxx, qt/SciListBox.h, qt/ScintillaQt.cxx,
qt/ScintillaQt.h, qt/qextscintilla.cxx, qt/qextscintilla.h,
qt/qextscintillaapis.cxx, qt/qextscintillaapis.h,
qt/qextscintillabase.cxx, qt/qextscintillabase.h,
qt/qextscintillacommand.cxx, qt/qextscintillacommand.h,
qt/qextscintillacommandset.cxx, qt/qextscintillacommandset.h,
qt/qextscintilladocument.cxx, qt/qextscintilladocument.h,
qt/qextscintillaglobal.h, qt/qextscintillalexer.cxx,
qt/qextscintillalexer.h, qt/qextscintillalexerbash.cxx,
qt/qextscintillalexerbash.h, qt/qextscintillalexerbatch.cxx,
qt/qextscintillalexerbatch.h, qt/qextscintillalexercpp.cxx,
qt/qextscintillalexercpp.h, qt/qextscintillalexercsharp.cxx,
qt/qextscintillalexercsharp.h, qt/qextscintillalexercss.cxx,
qt/qextscintillalexercss.h, qt/qextscintillalexerdiff.cxx,
qt/qextscintillalexerdiff.h, qt/qextscintillalexerhtml.cxx,
qt/qextscintillalexerhtml.h, qt/qextscintillalexeridl.cxx,
qt/qextscintillalexeridl.h, qt/qextscintillalexerjava.cxx,
qt/qextscintillalexerjava.h, qt/qextscintillalexerjavascript.cxx,
qt/qextscintillalexerjavascript.h, qt/qextscintillalexerlua.cxx,
qt/qextscintillalexerlua.h, qt/qextscintillalexermakefile.cxx,
qt/qextscintillalexermakefile.h, qt/qextscintillalexerperl.cxx,
qt/qextscintillalexerperl.h, qt/qextscintillalexerpov.cxx,
qt/qextscintillalexerpov.h, qt/qextscintillalexerproperties.cxx,
qt/qextscintillalexerproperties.h, qt/qextscintillalexerpython.cxx,
qt/qextscintillalexerpython.h, qt/qextscintillalexerruby.cxx,
qt/qextscintillalexerruby.h, qt/qextscintillalexersql.cxx,
qt/qextscintillalexersql.h, qt/qextscintillalexertex.cxx,
qt/qextscintillalexertex.h, qt/qextscintillamacro.cxx,
qt/qextscintillamacro.h, qt/qextscintillaprinter.cxx,
qt/qextscintillaprinter.h, qt/qscintilla.pro, qt/qscintilla_de.qm,
qt/qscintilla_de.ts, qt/qscintilla_fr.qm, qt/qscintilla_fr.ts,
qt/qscintilla_ptbr.qm, qt/qscintilla_ptbr.ts, qt/qscintilla_ru.qm,
qt/qscintilla_ru.ts, src/AutoComplete.cxx, src/AutoComplete.h,
src/CallTip.cxx, src/CallTip.h, src/CellBuffer.cxx,
src/CellBuffer.h, src/ContractionState.cxx, src/ContractionState.h,
src/Document.cxx, src/Document.h, src/DocumentAccessor.cxx,
src/DocumentAccessor.h, src/Editor.cxx, src/Editor.h,
src/ExternalLexer.cxx, src/ExternalLexer.h, src/Indicator.cxx,
src/Indicator.h, src/KeyMap.cxx, src/KeyMap.h, src/KeyWords.cxx,
src/LexAPDL.cxx, src/LexAU3.cxx, src/LexAVE.cxx, src/LexAda.cxx,
src/LexAsm.cxx, src/LexAsn1.cxx, src/LexBaan.cxx, src/LexBash.cxx,
src/LexBasic.cxx, src/LexBullant.cxx, src/LexCLW.cxx,
src/LexCPP.cxx, src/LexCSS.cxx, src/LexCaml.cxx, src/LexConf.cxx,
src/LexCrontab.cxx, src/LexCsound.cxx, src/LexEScript.cxx,
src/LexEiffel.cxx, src/LexErlang.cxx, src/LexFlagship.cxx,
src/LexForth.cxx, src/LexFortran.cxx, src/LexGen.py,
src/LexGui4Cli.cxx, src/LexHTML.cxx, src/LexHaskell.cxx,
src/LexKix.cxx, src/LexLisp.cxx, src/LexLout.cxx, src/LexLua.cxx,
src/LexMMIXAL.cxx, src/LexMPT.cxx, src/LexMSSQL.cxx,
src/LexMatlab.cxx, src/LexMetapost.cxx, src/LexNsis.cxx,
src/LexOthers.cxx, src/LexPB.cxx, src/LexPOV.cxx, src/LexPS.cxx,
src/LexPascal.cxx, src/LexPerl.cxx, src/LexPython.cxx,
src/LexRebol.cxx, src/LexRuby.cxx, src/LexSQL.cxx,
src/LexScriptol.cxx, src/LexSmalltalk.cxx, src/LexSpecman.cxx,
src/LexTADS3.cxx, src/LexTeX.cxx, src/LexVB.cxx, src/LexVHDL.cxx,
src/LexVerilog.cxx, src/LexYAML.cxx, src/LineMarker.cxx,
src/LineMarker.h, src/PropSet.cxx, src/RESearch.cxx, src/RESearch.h,
src/SVector.h, src/SciTE.properties, src/ScintillaBase.cxx,
src/ScintillaBase.h, src/Style.cxx, src/Style.h,
src/StyleContext.cxx, src/StyleContext.h, src/UniConversion.cxx,
src/UniConversion.h, src/ViewStyle.cxx, src/ViewStyle.h,
src/WindowAccessor.cxx, src/XPM.cxx, src/XPM.h, tgzsrc,
vcbuild/SciLexer.dsp, version.txt, win32/Margin.cur,
win32/PlatWin.cxx, win32/PlatformRes.h, win32/SciTE.properties,
win32/ScintRes.rc, win32/Scintilla.def, win32/ScintillaWin.cxx,
win32/deps.mak, win32/makefile, win32/scintilla.mak,
win32/scintilla_vc6.mak, zipsrc.bat:
First import of QScintilla
[0521804cd44a]
|