ChangeLog 239 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
2011-10-12  Christian Beier <dontmind@freeshell.org>

	* CMakeLists.txt, NEWS, configure.ac: Update version number in
	autotools && cmake, NEWS entry.

2011-10-08  Johannes Schindelin <johannes.schindelin@gmx.de>

	* rfb/rfbclient.h: Hopefully fix the crash when updating from 0.9.7
	or earlier For backwards-compatibility reasons, we can only add struct members
	to the end. That way, existing callers still can use newer
	libraries, as the structs are always allocated by the library (and
	therefore guaranteed to have the correct size) and still rely on the
	same position of the parts the callers know about.  Reported by Luca Falavigna.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2011-03-30  Christian Beier <dontmind@freeshell.org>

	* ChangeLog: Update ChangeLog for 0.9.8.

19
2011-03-29  Christian Beier <dontmind@freeshell.org>
20

21
	* README: Remove RDP from the README description.  We do VNC but no RDP. Pointed out by Vic Lee, thanks!
22

23
2011-03-29  Christian Beier <dontmind@freeshell.org>
dscho's avatar
dscho committed
24

25 26
	* utils/git2cl.pl: Fix skipping of merge commits in log convert
	script.
27

28
2011-03-29  Christian Beier <dontmind@freeshell.org>
29

30 31 32
	* bdf2c.pl, consolefont2c.pl, utils/bdf2c.pl,
	utils/consolefont2c.pl, utils/git2cl.pl: Add a git-log to GNU-Style
	ChangeLog converter script.  Also put all helper scripts into a utils directory.
dscho's avatar
dscho committed
33

34
2011-03-28  Christian Beier <dontmind@freeshell.org>
35

36
	* NEWS: Mention the pkg-config stuff in NEWS.
37

38
2011-03-27  Vic Lee <llyzs@163.com>
39

40 41 42
	* .gitignore, Makefile.am, configure.ac, libvncclient.pc.in,
	libvncserver.pc.in: Add libvncserver.pc and libvncclient.pc files.  Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Christian
	Beier <dontmind@freeshell.org>
43

44
2011-03-17  Christian Beier <dontmind@freeshell.org>
dscho's avatar
dscho committed
45

46 47 48
	* libvncclient/ultra.c, libvncserver/ultra.c: Fix regression in
	Ultra encoding introduced by commit
	fe1ca16e9b75b5f38ab374c8dfff92d2c3ea4532.  My bad. There we see what the encodings test is good for ;-)
dscho's avatar
dscho committed
49

50
2011-03-17  Christian Beier <dontmind@freeshell.org>
51

52
	* test/encodingstest.c: Update encodingstest.  * Fixed segfault on shutdown.  * Updated to test all encodings.  * Fixed to operate with encodings that split up rects into   smaller rects.
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 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030
2011-03-17  Christian Beier <dontmind@freeshell.org>

	* libvncclient/rfbproto.c: Remove useless comparisons that always
	evaluate to false.  There can not be more than 255 security types and MSLogon is RFB 3.6
	only.

2011-03-17  Christian Beier <dontmind@freeshell.org>

	* examples/rotate.c, examples/rotatetemplate.c, examples/vncev.c,
	libvncclient/listen.c, libvncclient/rfbproto.c,
	libvncclient/ultra.c, libvncclient/zrle.c,
	libvncserver/rfbserver.c, libvncserver/ultra.c: Fix (most) MinGW32
	compiler warnings.

2011-03-17  Christian Beier <dontmind@freeshell.org>

	* examples/rotate.c, examples/zippy.c, libvncserver/zrle.c,
	libvncserver/zrleencodetemplate.c: Fix remaining compiler warnings.

2011-03-17  Christian Beier <dontmind@freeshell.org>

	* VisualNaCro/nacro.c, examples/backchannel.c, examples/camera.c,
	examples/colourmaptest.c, examples/example.c,
	examples/filetransfer.c, examples/fontsel.c, examples/mac.c,
	examples/pnmshow.c, examples/pnmshow24.c, examples/simple.c,
	examples/simple15.c, examples/vncev.c, examples/zippy.c,
	test/cargstest.c, test/copyrecttest.c, test/cursortest.c,
	test/encodingstest.c: Check rfbGetScreen() return value everywhere.  This fixes a segfault when a server is invoked with the '-help'
	commandline argument.

2011-03-12  Christian Beier <dontmind@freeshell.org>

	* CMakeLists.txt, rfb/rfbconfig.h.cmake: CMake: Check for libgcrypt
	availability.

2011-03-12  Christian Beier <dontmind@freeshell.org>

	* CMakeLists.txt: CMake: Threads can be available even if SDL is
	not.

2011-03-12  Christian Beier <dontmind@freeshell.org>

	* CMakeLists.txt: CMake: fix building SDLvncviewer.

2011-03-12  Christian Beier <dontmind@freeshell.org>

	* Makefile.am: Include cmake configure file templates in dist
	tarball.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2011-03-12  Christian Beier <dontmind@freeshell.org>

	* rfb/rfbconfig.h.in, rfb/stamp-h.in: Remove autogenerated files.

2011-03-12  Christian Beier <dontmind@freeshell.org>

	* NEWS: Update NEWS for 0.9.8 release.

2011-03-07  Christian Beier <dontmind@freeshell.org>

	* libvncclient/tls.c: Fix libvncclient TLS for Windows builds.  GnuTLS seems to expect proper errno values internally. So set them
	in our custom push/pull functions. Parts of the patch stolen from
	libcurl, thanks! Signed-off-by: Christian Beier <dontmind@freeshell.org>

2011-03-07  Christian Beier <dontmind@freeshell.org>

	* libvncclient/rfbproto.c: Let libvncclient build with gcrypt for
	MinGW32 builds.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2011-03-07  Vic Lee <llyzs@163.com>

	* libvncclient/sockets.c: Use WaitForMessage instead of sleep in
	socket reading to fix performance issue.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2011-03-10  Christian Beier <dontmind@freeshell.org>

	* common/d3des.c, common/d3des.h, libvncserver/auth.c,
	libvncserver/corre.c, libvncserver/cutpaste.c, libvncserver/draw.c,
	libvncserver/font.c, libvncserver/hextile.c, libvncserver/httpd.c,
	libvncserver/rfbregion.c, libvncserver/rre.c,
	libvncserver/selbox.c, libvncserver/sockets.c,
	libvncserver/stats.c, libvncserver/tableinit24.c,
	libvncserver/tableinitcmtemplate.c,
	libvncserver/tableinittctemplate.c,
	libvncserver/tabletrans24template.c,
	libvncserver/tabletranstemplate.c, libvncserver/translate.c,
	libvncserver/zrletypes.h, rfb/rfbregion.h, test/blooptest.c,
	test/cursortest.c: Set proper file permissions for source files.

2011-03-10  Christian Beier <dontmind@freeshell.org>

	* CMakeLists.txt, configure.ac: Next version will be 0.9.8.

2011-03-10  Christian Beier <dontmind@freeshell.org>

	* Makefile.am, configure.ac, contrib/Makefile.am, contrib/zippy.c,
	examples/Makefile.am, examples/zippy.c: Move zippy.c to examples.

2011-03-03  Christian Beier <dontmind@freeshell.org>

	* libvncclient/sockets.c, libvncclient/tls.c, libvncserver/httpd.c,
	libvncserver/rfbserver.c, libvncserver/sockets.c: Call
	WSAGetLastError() everywhere errno is read after a Winsock call.  Winsock does NOT update errno for us, we have fetch the last error
	manually using WSAGetLastError().

2011-01-29  Christian Beier <dontmind@freeshell.org>

	* common/lzoconf.h, common/lzodefs.h, common/minilzo.c,
	common/minilzo.h, libvncclient/Makefile.am,
	libvncserver/Makefile.am: Update minilzo library used for Ultra
	encoding to ver 2.04.  According to the minilzo README, this brings a significant speedup
	on 64-bit architechtures.  Changes compared to old version 1.08 can be found here:
	http://www.oberhumer.com/opensource/lzo/lzonews.php Signed-off-by: Christian Beier <dontmind@freeshell.org>

2011-01-24  Christian Beier <dontmind@freeshell.org>

	* libvncserver/corre.c, libvncserver/main.c,
	libvncserver/private.h, libvncserver/rfbserver.c,
	libvncserver/rre.c, libvncserver/ultra.c, rfb/rfb.h: libvncserver:
	Make RRE, CoRRE and Ultra encodings thread-safe.  This adds generic before/after encoding buffers to the rfbClient
	struct, so there is no need for thread local storage.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2011-02-02  Christian Beier <dontmind@freeshell.org>

	* Makefile.am: Include CMakeLists.txt file in dist tarball.

2011-01-29  Christian Beier <dontmind@freeshell.org>

	* .cvsignore, README.cvs, VisualNaCro/.cvsignore,
	classes/.cvsignore, client_examples/.cvsignore, contrib/.cvsignore,
	cvs_update_anonymously, examples/.cvsignore,
	libvncclient/.cvsignore, libvncserver/.cvsignore,
	libvncserver/tightvnc-filetransfer/.cvsignore, rfb/.cvsignore,
	test/.cvsignore, vncterm/.cvsignore: Remove unneeded files
	concerning CVS.  We have a git repo nowadays and I guess we won't go back to CVS.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2011-01-31  Johannes Schindelin <johannes.schindelin@gmx.de>

	* examples/example.dsp, libvncserver.dsp, libvncserver.dsw: Remove
	completely broken Visual Studio project files If people seriously consider building with Visual Studio, there is
	always CMake.  Pointed out by Christian Beier.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2011-01-31  Christian Beier <dontmind@freeshell.org>

	* client_examples/Makefile.am, client_examples/SDLvncviewer.c: 
	SDLvncviewer: fix compilation from dist tarball.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2011-01-21  Vic Lee <llyzs@163.com>

	* acinclude.m4, configure.ac, libvncclient/rfbproto.c,
	rfb/rfbproto.h: Add ARD (Apple Remote Desktop) security type support Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Christian
	Beier <dontmind@freeshell.org>

2011-01-25  Christian Beier <dontmind@freeshell.org>

	* CMakeLists.txt, common/d3des.c, common/d3des.h, common/lzoconf.h,
	common/minilzo.c, common/minilzo.h, common/vncauth.c,
	common/zywrletemplate.c, libvncclient/Makefile.am,
	libvncclient/lzoconf.h, libvncclient/minilzo.c,
	libvncclient/minilzo.h, libvncclient/rfbproto.c,
	libvncclient/zrle.c, libvncserver/Makefile.am,
	libvncserver/d3des.c, libvncserver/d3des.h, libvncserver/lzoconf.h,
	libvncserver/minilzo.c, libvncserver/minilzo.h,
	libvncserver/vncauth.c, libvncserver/zywrletemplate.c: Put files
	used by both libs into a 'common' dir.  No functional changes. All files used by _both_ libvncserver and
	libvncclient are put into a 'common' directory and references from
	other files as well as Autotools and CMake build systems are
	updated.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2011-01-20  ebola_rulez <ebola_rulez@users.sourceforge.net>

	* libvncserver/vncauth.c: Fix two errors found by cppcheck Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Christian
	Beier <dontmind@freeshell.org>

2011-01-01  runge <runge@karlrunge.com>

	* libvncserver/rfbserver.c: Remove never used protocol version name
	string.

2010-12-29  runge <runge@karlrunge.com>

	* configure.ac, x11vnc/ChangeLog, x11vnc/Makefile.am,
	x11vnc/README, x11vnc/avahi.c, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/connections.h, x11vnc/help.c,
	x11vnc/inet.c, x11vnc/inet.h, x11vnc/macosx.c, x11vnc/macosxCG.c,
	x11vnc/macosxCG.h, x11vnc/macosx_opengl.c, x11vnc/macosx_opengl.h,
	x11vnc/options.c, x11vnc/options.h, x11vnc/rates.c,
	x11vnc/screen.c, x11vnc/ssltools.h, x11vnc/util.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
	x11vnc/xwrappers.c: x11vnc: Use opengl to read screen on macosx.
	non-deprecated macosx interfaces for input injection.

2010-12-21  runge <runge@karlrunge.com>

	* configure.ac, prepare_x11vnc_dist.sh, x11vnc/README,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: x11vnc: force
	--with-system-libvncserver to use correct headers.

2010-12-21  runge <runge@karlrunge.com>

	* classes/ssl/ss_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-cursor-colors+no-tab
	-traversal.patch,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
	prepare_x11vnc_dist.sh, x11vnc/8to24.c, x11vnc/ChangeLog,
	x11vnc/Makefile.am, x11vnc/README, x11vnc/RELEASE-NOTES,
	x11vnc/appshare.c, x11vnc/cleanup.c, x11vnc/gui.c, x11vnc/help.c,
	x11vnc/keyboard.c, x11vnc/keyboard.h, x11vnc/linuxfb.c,
	x11vnc/macosx.c, x11vnc/macosxCG.c, x11vnc/misc/Makefile.am,
	x11vnc/misc/README, x11vnc/misc/qt_tslib_inject.pl,
	x11vnc/misc/uinput.pl, x11vnc/pointer.c, x11vnc/remote.c,
	x11vnc/scan.c, x11vnc/screen.c, x11vnc/sslhelper.c,
	x11vnc/ssltools.h, x11vnc/uinput.c, x11vnc/uinput.h,
	x11vnc/unixpw.c, x11vnc/user.c, x11vnc/util.h, x11vnc/v4l.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xevents.h,
	x11vnc/xrecord.c, x11vnc/xrecord.h, x11vnc/xwrappers.c: x11vnc:
	touchscreen uinput support and Java viewer mousewheel support.  See
	x11vnc/ChangeLog for rest.

2010-12-01  Tobias Doerffel <tobias.doerffel@gmail.com>

	* libvncserver/sockets.c: libvncserver sockets: check cl->screen
	before accessing it In commit 079394ca5b14d8067b95a9cf95a834828b4425a6 new code with
	insufficient checks was introduced causing a segfault when doing a
	HTTP server connection. Such connections have no screen set in the
	client data structure.  Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>

2010-11-30  Christian Beier <dontmind@freeshell.org>

	* Doxyfile: Doxygen documentation: actually add Doxyfile.

2010-11-29  Johannes Schindelin <johannes.schindelin@gmx.de>

	* index.html, success.html: The website is now maintained
	independently Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-11-18  Christian Beier <dontmind@freeshell.org>

	* client_examples/SDLvncviewer.c, client_examples/backchannel.c,
	client_examples/ppmtest.c, client_examples/vnc2mpg.c,
	examples/backchannel.c, examples/camera.c, examples/example.c,
	examples/filetransfer.c, examples/pnmshow.c, examples/pnmshow24.c,
	examples/vncev.c, rfb/rfb.h, rfb/rfbclient.h, rfb/rfbproto.h: Add
	doxygen documentation support.      Adds automagically generating libvncserver/libvncclient API     documentation using doxygen. This gives a nice overview on both
	    APIs, include dependencies and function call/caller
	dependencies.      TODO: Modify all the explaining comments in the .c files for use
	          with doxygen as well.      This patch only changes comments, no functional changes at all! Signed-off-by: Christian Beier <dontmind@freeshell.org>

2010-11-18  Christian Beier <dontmind@freeshell.org>

	* libvncserver/main.c: libvncserver: fix endless loop when server
	closed client in threaded mode.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2010-11-18  Christian Beier <dontmind@freeshell.org>

	* libvncserver/sockets.c: libvncserver sockets: favor per-screen
	maxclientwait over global one when set.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2010-11-11  Christian Beier <dontmind@freeshell.org>

	* libvncserver/rfbserver.c, libvncserver/stats.c, rfb/rfbproto.h: 
	libvncserver cleanup: remove rfbKeyFrame remnants.

2010-11-02  Christian Beier <dontmind@freeshell.org>

	* libvncclient/rfbproto.c, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/stats.c, rfb/rfb.h,
	rfb/rfbclient.h, rfb/rfbproto.h: libvnc[server|client]: implement
	xvp VNC extension.  This implements the xvp VNC extension, which is described in the
	community version of the RFB protocol:
	http://tigervnc.sourceforge.net/cgi-bin/rfbproto It is also
	mentioned in the official RFB protocol.

2010-10-28  Tobias Doerffel <tobias.doerffel@gmail.com>

	* libvncserver/main.c: Added missing initialization of extension
	mutex When not calling rfbRegisterProtocolExtension() the extension mutex
	is uninitialized but used upon calling rfbGetExtensionIterator() and
	rfbReleaseExtensionIterator() in rfbNewTCPOrUDPClient(). This causes
	libvncserver to crash on Win32 when building with thread support.  Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
	Signed-off-by: Christian Beier <dontmind@freeshell.org>

2010-10-21  Christian Beier <dontmind@freeshell.org>

	* libvncclient/rfbproto.c, rfb/rfbproto.h: Only define strncasecmp
	to _strnicmp when using MS compiler.  Redefining strncasecmp to _strnicmp makes libvncclient hang forever
	in SetFormatAndEncodings() on Windows when built with MinGW64.  Reported by Tobias Doerffel <tobias.doerffel@gmail.com>, thanks!

2010-10-20  Tobias Doerffel <tobias.doerffel@gmail.com>

	* libvncserver/rfbserver.c: In rfbSendDirContent() we have to make
	sure to call closedir() before returning. This did not happen if
	rfbSendFileTransferMessage() failed.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2010-10-20  Christian Beier <dontmind@freeshell.org>

	* libvncclient/sockets.c: Fix build failure wrt IP QoS support in
	libvncclient.  This is a small addendum to
	0797e42a4aaf8131ae71899faea2d682ed81cb59.  Seems that having IPv6
	support in the OS does not necessarily mean that IPV6_TCLASS is
	available. One such case seems to be Mac OS X 10.5.

2010-02-09  Vic Lee <llyzs@163.com>

	* libvncclient/sockets.c: Avoid 100% CPU usage when calling
	ReadFromRFBServer and no available bytes to read Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Christian
	Beier <dontmind@freeshell.org>

2010-10-08  Christian Beier <dontmind@freeshell.org>

	* rfb/rfbproto.h: rfb/rfbproto.h: Prefix WORDS_BIGENDIAN when it is
	defined.  Some (all?) autotool versions do not properly prefix WORDS_BIGENDIAN
	with LIBVNCSERVER_, so do that manually here.  Thanks to Lorenz Kolb for reporting.

2010-09-29  Christian Beier <dontmind@freeshell.org>

	* TODO, libvncclient/rfbproto.c, libvncclient/sockets.c,
	libvncclient/vncviewer.c, rfb/rfbclient.h: IP QoS support in
	libvncclient.  This enables setting the DSCP/Traffic Class field of IP/IPv6 packets
	sent by a client. For example starting a client with -qosdscp 184
	marks all outgoing traffic for expedited forwarding.  Implementation for Win32 is still a TODO, though. See

	http://betelco.blogspot.com/2009/03/dscp-marking-under-windows-at.htmlfor an overview of the Win32 QoS API mess...

2010-09-07  Christian Beier <dontmind@freeshell.org>

	* TODO, libvncclient/sockets.c, libvncserver/httpd.c,
	libvncserver/rfbserver.c, libvncserver/sockets.c, rfb/rfb.h: 
	Non-blocking sockets for Windows.  Expands the SetNonBlocking() function in libvncclient/sockets.c to
	also work under Windows and also changes it to honour maybe already
	present socket flags.  A similar function was introduced for libvncserver as well and all
	the #ifdef'ed fnctl calls replaced with calls to that one.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2010-09-06  Christian Beier <dontmind@freeshell.org>

	* libvncserver/main.c, libvncserver/rfbserver.c,
	libvncserver/scale.c: Cleanup: remove CORBA stuff.  The header file and most of the functions referred to do not exist
	in libvncserver.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2010-09-10  runge <runge@karlrunge.com>

	* classes/ssl/ss_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch: update
	classes/ssl jars, patches, and script

2010-09-10  runge <runge@karlrunge.com>

	* prepare_x11vnc_dist.sh, x11vnc/8to24.c, x11vnc/ChangeLog,
	x11vnc/Makefile.am, x11vnc/README, x11vnc/avahi.c, x11vnc/avahi.h,
	x11vnc/cleanup.c, x11vnc/connections.c, x11vnc/help.c,
	x11vnc/inet.c, x11vnc/keyboard.c, x11vnc/misc/ultravnc_repeater.pl,
	x11vnc/options.c, x11vnc/options.h, x11vnc/pointer.c,
	x11vnc/pointer.h, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xwrappers.c: update
	to x11vnc 0.9.12

2010-09-06  Christian Beier <dontmind@freeshell.org>

	* libvncclient/rfbproto.c, libvncserver/tight.c: Fix MinGW32
	compilation with libjpeg.  MinGW32 (or more exactly, a rpcndr.h file included by winsock2.h)
	typedefs a 'boolean' type that jmorecfg.h included by jpeglib.h also
	tries to typedef.  So, tell the jpeg headers.  Closes: 3007302

2010-07-11  Christian Beier <dontmind@freeshell.org>

	* configure.ac, libvncclient/sockets.c: Fix MinGW32 checking for
	IPv6.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-06-29  Vic Lee <llyzs@163.com>

	* configure.ac, libvncclient/rfbproto.c, libvncclient/sockets.c,
	rfb/rfbclient.h: libvncclient: add ipv6 support [jes: pulled the "host" declarations into the conditionally compiled
	blocks where that variable is used. Also fixed non-IPv6
	connections.] Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
	Schindelin <johannes.schindelin@gmx.de>

2010-05-31  Wouter Van Meir <wouter.vanmeir@pandora.be>

	* libvncclient/vncviewer.c: Call MallocFrameBuffer before
	SetFormatAndEncodings The hook is still called after InitialiseRFBConnection() so we can
	choose the color settings depending on the vnc server (or settings)
	in that hook.  This way one can use the "VNC server default format" pixelformat if
	the client supports it, or perform a workaround (Intel AMT KVM
	"classic vnc" server only works using 8bit colors in RFB3.8) Signed-off-by: Wouter Van Meir <wouter.vanmeir@pandora.be>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-05-19  Christian Beier <dontmind@freeshell.org>

	* libvncserver/main.c, libvncserver/rfbserver.c, rfb/rfb.h: 
	Implement a DisplayFinishedHook for libvncserver.  If set, this hook gets called just before rfbSendFrameBufferUpdate()
	returns.  Signed-off-by: Christian Beier <dontmind@freeshell.org>

2010-05-08  runge <runge@karlrunge.com>

	* ChangeLog, libvncclient/rfbproto.c: libvncclient:
	rfbResizeFrameBuffer should also set updateRect.

2010-05-08  runge <runge@karlrunge.com>

	* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/connections.c, x11vnc/screen.c, x11vnc/unixpw.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: x11vnc: tweaks to
	prepare_x11vnc_dist.sh. set cd->unixname in apply_opts().

2010-05-07  Johannes Schindelin <johannes.schindelin@gmx.de>

	* AUTHORS: Complete the AUTHORS file Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-05-07  Wouter Van Meir <wouter.vanmeir@pandora.be>

	* CMakeLists.txt: fix CMakeLists.txt: other way to find pthread
	library ... and fixed linking of the tests in the examples directory.  Signed-off-by: Wouter Van Meir <wouter.vanmeir@pandora.be>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-05-05  runge <runge@karlrunge.com>

	* classes/ssl/index.vnc, classes/ssl/proxy.vnc,
	classes/ssl/ultra.vnc, classes/ssl/ultraproxy.vnc,
	classes/ssl/ultrasigned.vnc, prepare_x11vnc_dist.sh, x11vnc/README,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: misc/etv sync.

2010-05-01  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/misc/ultravnc_repeater.pl,
	x11vnc/sslhelper.c, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c,
	x11vnc/xrecord.c: x11vnc: X11VNC_DISABLE_SSL_CLIENT_MODE option to
	          disable SSL client role in reverse connections.  Improvements to
	          logging in ultravnc_repeater, ULTRAVNC_REPEATER_NO_RFB option.
	          Increase SSL timeout and print message if 'repeater' mode is
	          detected for reverse SSL connection.  Fix RECORD scroll XCopyArea
	          detection with recent gtk/gdk library; set X11VNC_SCROLL_MUST_EQUAL           to disable.  Limit logging of RECORD error messages.

2010-04-28  Johannes Schindelin <johannes.schindelin@gmx.de>

	* client_examples/Makefile.am: Another try to fix the _SOURCES issue Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-04-28  Corentin Chary <corentin.chary@gmail.com>

	* CMakeLists.txt, rfb/rfbconfig.h.cmake: cmake: fix CMakeLists.txt - It's SDL_LIBRARY, not SDL_LIBRARIES - Detect GnuTLS and set the macro in rfbconfig.h - Add tls.c to libvncclient to avoid missing symbols Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-04-25  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/enc.h, x11vnc/help.c,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/sslhelper.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: incorporate new
	ultravnc_dsm_helper.c.

2010-04-18  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/stunnel-maxconn.pa
	tch,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: Sync ssvncviewer changes.

2010-04-18  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/appshare.c,
	x11vnc/connections.c, x11vnc/help.c, x11vnc/inet.c, x11vnc/inet.h,
	x11vnc/misc/connect_switch, x11vnc/misc/desktop.cgi,
	x11vnc/misc/ultravnc_repeater.pl, x11vnc/options.c,
	x11vnc/options.h, x11vnc/remote.c, x11vnc/screen.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/user.c,
	x11vnc/util.c, x11vnc/v4l.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xinerama.c: 
	Improvements to demo scripts. Alias -coe for -connect_or_exit.  Fix
	HAVE_V4L2. Warn no Xvfb, Xdummy, or Xvnc. Xinerama screens.

2010-04-09  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/connections.h, x11vnc/enc.h, x11vnc/help.c, x11vnc/inet.c,
	x11vnc/inet.h, x11vnc/options.c, x11vnc/options.h, x11vnc/remote.c,
	x11vnc/screen.c, x11vnc/sslcmds.c, x11vnc/sslhelper.c,
	x11vnc/sslhelper.h, x11vnc/ssltools.h, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/user.c, x11vnc/util.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c, x11vnc/xinerama.c: x11vnc: exit(1) for
	-connect_or_exit failure, quiet query mode for grab_state,
	pointer_pos, etc. ipv6 support. STUNNEL_LISTEN for particular
	interface. -input_eagerly in addition to -allinput.  quiet Xinerama
	message.

2010-04-09  runge <runge@karlrunge.com>

	* classes/ssl/ss_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch: Improvements to
	Java viewer: troubleshooting settings and workarounds, misc bug
	fixes.

2010-04-09  runge <runge@karlrunge.com>

	* x11vnc/misc/connect_switch, x11vnc/misc/desktop.cgi,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_getpatches,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch, x11vnc/misc/inet6to4: Synchronize ssvnc 1.0.26.
	Improvements to perl scripts desktop.cgi, connect_switch and
	inet6to4.

2010-03-21  runge <runge@karlrunge.com>

	* classes/ssl/README, classes/ssl/onetimekey,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/cursor.c, x11vnc/help.c,
	x11vnc/keyboard.c, x11vnc/misc/Makefile.am, x11vnc/misc/README,
	x11vnc/misc/connect_switch, x11vnc/misc/desktop.cgi,
	x11vnc/misc/inet6to4, x11vnc/misc/panner.pl,
	x11vnc/misc/ultravnc_repeater.pl, x11vnc/remote.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: classes/ssl:
	          Many improvements to Java SSL applet, onetimekey serverCert param,
	          debugging printout, user dialogs, catch socket exceptions,
	autodetect x11vnc for GET=1.  x11vnc: misc/scripts: desktop.cgi,
	          inet6to4, panner.pl.  X11VNC_HTTPS_DOWNLOAD_WAIT_TIME, -unixpw %xxx
	          documented, and can run user cmd in UNIXPW_CMD. FD_XDMCP_IF for
	          create script, autodetect dm on udp6 only.  Queries: pointer_x,
	          pointer_y, pointer_same, pointer_root.  Switch on -xkd if keysyms
	          per key > 4 in all cases.  daemon mode improvements for
	          connect_switch, inet6to4, ultravnc_repeater.pl.  Dynamic change of
	          -clip do not create new fb if WxH is unchanged.

2010-03-21  runge <runge@karlrunge.com>

	* configure.ac: I think two HAVE_X's were missed.

2010-03-13  Johannes Schindelin <johannes.schindelin@gmx.de>

	* libvncclient/rfbproto.c, libvncclient/vncviewer.c: Fix compilation
	without TLS Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-03-13  Johannes Schindelin <johannes.schindelin@gmx.de>

	* client_examples/Makefile.am, client_examples/SDLvncviewer.c: Fix
	compilation with newer automake For some reason, this developer's automake no longer understands
	_SOURCES lines anymore. Work around that.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-03-13  Johannes Schindelin <johannes.schindelin@gmx.de>

	* client_examples/Makefile.am, configure.ac: Rename HAVE_X ->
	HAVE_X11 This change is just for consistency reasons.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-02-22  runge <runge@karlrunge.com>

	* classes/ssl/README,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/scan.c,
	x11vnc/sslcmds.c, x11vnc/sslcmds.h, x11vnc/ssltools.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: classes/ssl:
	Java SSL applet viewer now works with certificate chains.  x11vnc:
	Printout option -sslScripts.  Suggest -auth guess in error message.
	Set fake_screen width and height.  Test for +kb in Xvfb.

2010-01-22  Christian Beier <dontmind@freeshell.org>

	* libvncclient/vncviewer.c: libvncclient/vncviewer.c: don't set
	serverPort in rfbInitClient().  The serverPort member is already set in rfbGetClient(), if we set it
	again in rfbInitClient(), this breaks playing of vncrec files (this
	relies on serverPort set to -1).  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-01-16  Johannes Schindelin <johannes.schindelin@gmx.de>

	* libvncclient/vncviewer.c: LibVNCClient: make sure that the port is
	initialized correctly.  While at it, adjust coding style.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-01-15  Vic Lee <llyzs@163.com>

	* libvncclient/rfbproto.c, libvncclient/vncviewer.c,
	rfb/rfbclient.h: Add UltraVNC Repeater support in libvncclient [jes: adjusted coding style, made sure port is initialized
	correctly] Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
	Schindelin <johannes.schindelin@gmx.de>

2010-01-07  runge <runge@karlrunge.com>

	* x11vnc/README, x11vnc/misc/Xdummy, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: x11vnc: add modeline creation to Xdummy.

2010-01-07  Christian Beier <dontmind@freeshell.org>

	* libvncserver/font.c: libvncserver/font.c: add some checks to
	rfbDrawChar().  In some cases (bad font data) the coordinates evaluate to <0,
	causing a segfault in the following memcpy().  [jes: keep the offset, but do not try to segfault] Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-01-07  Christian Beier <dontmind@freeshell.org>

	* vncterm/LinuxVNC.c: LinuxVNC: Fix for no input possible because of
	ctrl key being stuck.  Issue was reported as Debian bug ##555988,
	http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=555988 Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-01-04  Christian Beier <dontmind@freeshell.org>

	* vncterm/LinuxVNC.c, vncterm/VNConsole.c: LinuxVNC: fix segfault at
	"linuxvnc 1 -help".  This fixes Debian Bug #399501: Switch to tty1.  Run "linuxvnc 1
	-help".  You see help text, followed by "Segmentation fault".  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2010-01-02  runge <runge@karlrunge.com>

	* x11vnc/8to24.c, x11vnc/8to24.h, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/allowed_input_t.h, x11vnc/appshare.c, x11vnc/avahi.c,
	x11vnc/avahi.h, x11vnc/blackout_t.h, x11vnc/cleanup.c,
	x11vnc/cleanup.h, x11vnc/connections.c, x11vnc/connections.h,
	x11vnc/cursor.c, x11vnc/cursor.h, x11vnc/enc.h, x11vnc/enums.h,
	x11vnc/gui.c, x11vnc/gui.h, x11vnc/help.c, x11vnc/help.h,
	x11vnc/inet.c, x11vnc/inet.h, x11vnc/keyboard.c, x11vnc/keyboard.h,
	x11vnc/linuxfb.c, x11vnc/linuxfb.h, x11vnc/macosx.c,
	x11vnc/macosx.h, x11vnc/macosxCG.c, x11vnc/macosxCG.h,
	x11vnc/macosxCGP.c, x11vnc/macosxCGP.h, x11vnc/macosxCGS.c,
	x11vnc/macosxCGS.h, x11vnc/misc/README, x11vnc/misc/Xdummy,
	x11vnc/misc/rx11vnc, x11vnc/misc/rx11vnc.pl, x11vnc/options.c,
	x11vnc/options.h, x11vnc/params.h, x11vnc/pm.c, x11vnc/pm.h,
	x11vnc/pointer.c, x11vnc/pointer.h, x11vnc/rates.c, x11vnc/rates.h,
	x11vnc/remote.c, x11vnc/remote.h, x11vnc/scan.c, x11vnc/scan.h,
	x11vnc/screen.c, x11vnc/screen.h, x11vnc/scrollevent_t.h,
	x11vnc/selection.c, x11vnc/selection.h, x11vnc/solid.c,
	x11vnc/solid.h, x11vnc/sslcmds.c, x11vnc/sslcmds.h,
	x11vnc/sslhelper.c, x11vnc/sslhelper.h, x11vnc/ssltools.h,
	x11vnc/uinput.c, x11vnc/uinput.h, x11vnc/unixpw.c, x11vnc/unixpw.h,
	x11vnc/user.c, x11vnc/user.h, x11vnc/userinput.c,
	x11vnc/userinput.h, x11vnc/util.c, x11vnc/util.h, x11vnc/v4l.c,
	x11vnc/v4l.h, x11vnc/win_utils.c, x11vnc/win_utils.h,
	x11vnc/winattr_t.h, x11vnc/x11vnc.1, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xdamage.c, x11vnc/xdamage.h,
	x11vnc/xevents.c, x11vnc/xevents.h, x11vnc/xinerama.c,
	x11vnc/xinerama.h, x11vnc/xkb_bell.c, x11vnc/xkb_bell.h,
	x11vnc/xrandr.c, x11vnc/xrandr.h, x11vnc/xrecord.c,
	x11vnc/xrecord.h, x11vnc/xwrappers.c, x11vnc/xwrappers.h: x11vnc:
	small tweaks to Xdummy, rx11vnc*.  Apply SMALL_FOOTPRINT to
	-appshare text.  Copyright year change.

2010-01-02  runge <runge@karlrunge.com>

	* libvncserver/tightvnc-filetransfer/rfbtightserver.c: year++;

2010-01-02  runge <runge@karlrunge.com>

	* ChangeLog, libvncserver/tightvnc-filetransfer/rfbtightserver.c: 
	tightvnc-filetransfer/rfbtightserver.c: enabled fix for tight
	security type for RFB 3.8 (debian bug 517422.)

2010-01-01  Vic Lee <llyzs@163.com>

	* libvncclient/rfbproto.c, libvncclient/vncviewer.c,
	rfb/rfbclient.h: Add support for viewers to select security types on
	demand Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
	Schindelin <johannes.schindelin@gmx.de>

2009-12-29  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/misc/Xdummy, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: rename -create_x to -create_xsrv.
	Hopefully done fixing Xdummy.

2009-12-28  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/appshare.c,
	x11vnc/misc/Xdummy, x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch, x11vnc/remote.c, x11vnc/solid.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: Fix problems in
	--without-x builds.  Fix crash with -QD query for dbus info.  Adjust
	window size for small screens in -gui.  Improve F1 help for xdm,
	etc.  include ssvnc 1.0.25 source.

2009-12-24  runge <runge@karlrunge.com>

	* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/help.c, x11vnc/misc/Xdummy, x11vnc/ssltools.h,
	x11vnc/unixpw.c, x11vnc/user.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: prepare_x11vnc_dist.sh for 0.9.10.
	        -xdummy_xvfb, -svc_xdummy_xvfb and -create_x shorthand. lxde
	        session.  Xdummy improvements and root no longer required.

2009-12-20  Vic Lee <llyzs@163.com>

	* libvncclient/rfbproto.c: Fix version checking (>=3.8) for
	rfbVncAuthOK confirmation when no password required It seems that vino does not send AuthOK  when there is no password
	with anonymous TLS, and it seems that vino is the only <3.8 VNC
	server that handles anonymous TLS at all, so let's not wait for the
	packet that will never come.  Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
	Schindelin <johannes.schindelin@gmx.de>

2009-12-21  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/sslhelper.c,
	x11vnc/ssltools.h, x11vnc/unixpw.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: x11vnc: -DENC_HAVE_OPENSSL=0 to disable enc.h
	        but still have ssl. Tweak ps command in find_display. Try to handle         AIX su. Ignore an initial newline at login: for -unixpw.

2009-12-18  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog: ChangeLog typo

2009-12-18  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/unixpw.c,
	x11vnc/user.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: Add tag=... to unixpw opts to set FD_TAG.
	Prefer Xvfb over Xdummy.  Reduce wait time for https. Add 'Login
	succeeded' output to unixpw panel.

2009-12-18  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/remote.c, x11vnc/unixpw.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: fix keycode and other
	        remote control actions under DIRECT: with an extra XFlush and other
	        safety measures.  fflush(stderr) much in su_verify.  Make the
	        -unixpw env. vars UNIXPW_DISABLE_SSL and UNIXPW_DISABLE_LOCALHOST
	        work correctly.  Make -loopbg actually imply -bg.

2009-12-15  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/inet.c,
	x11vnc/misc/Makefile.am, x11vnc/misc/connect_switch,
	x11vnc/misc/ultravnc_repeater.pl, x11vnc/options.c,
	x11vnc/options.h, x11vnc/pointer.c, x11vnc/remote.c,
	x11vnc/screen.c, x11vnc/ssltools.h, x11vnc/unixpw.c, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xdamage.c, x11vnc/xevents.c: X props names via env var.
	fakebuttonevent action, connect_switch and ultravnc_repeater.pl
	scripts, find_display try FD_XDM on failure, -quiet and -storepasswd
	changes, better port 113 testing.

2009-12-07  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c, x11vnc/help.c,
	x11vnc/remote.c, x11vnc/screen.c, x11vnc/sslhelper.c,
	x11vnc/ssltools.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: X11VNC_EXTRA_HTTPS_PARAMS,
	X11VNC_HTTP_LISTEN_LOCALHOST, X11VNC_REOPEN_SLEEP_MAX,
	-findauth/-auth guess FD_XDM=1 for root, work around xhost
	SI:localuser:root.

2009-12-05  runge <runge@karlrunge.com>

	* classes/ssl/ss_vncviewer,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/appshare.c, x11vnc/gui.c,
	x11vnc/unixpw.c, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: Update java
	and scripts in classes/ssl.  x11vnc: declare crypt() on all
	platforms.  more wishes.

2009-12-02  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/Makefile.am, x11vnc/README,
	x11vnc/appshare.c, x11vnc/connections.c, x11vnc/cursor.c,
	x11vnc/help.c, x11vnc/keyboard.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/pm.c, x11vnc/pointer.c, x11vnc/remote.c,
	x11vnc/screen.c, x11vnc/sslhelper.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/util.c, x11vnc/util.h,
	x11vnc/win_utils.c, x11vnc/win_utils.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c, x11vnc/xevents.c,
	x11vnc/xinerama.c, x11vnc/xrandr.c: x11vnc: -appshare mode for
	sharing an application windows instead of the entire desktop. map
	port + 5500 in reverse connect.  Add id_cmd remote control functions
	for id (and other) windows.  Allow zero port in SSL reverse
	connections.  Adjust delays between multiple reverse connections;
	X11VNC_REVERSE_SLEEP_MAX env var.  Add some missing mutex locks; add
	INPUT_LOCK and threads_drop_input.  More safety in -threads mode for
	new framebuffer change.  Fix some stderr leaking in -inetd mode.

2009-12-01  runge <runge@karlrunge.com>

	* libvncserver/cursor.c, libvncserver/sockets.c,
	libvncserver/translate.c: Add locks of updateMutex in
	rfbRedrawAfterHideCursor() and rfbSetClientColourMap().  Up listen
	limit from 5 to 32.

2009-11-18  runge <runge@karlrunge.com>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: ssvnc/enhanced_tightvnc_viewer update.

2009-11-18  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/cursor.c, x11vnc/cursor.h,
	x11vnc/enc.h, x11vnc/help.c, x11vnc/remote.c, x11vnc/screen.c,
	x11vnc/selection.c, x11vnc/solid.c, x11vnc/ssltools.h,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xevents.h: x11vnc:
	-findauth, -auth guess, & etc.

2009-11-11  Christian Beier <dontmind@freeshell.org>

	* libvncclient/listen.c, rfb/rfbclient.h: libvncclient: better
	return value for non-forking listen.  The return value now better reflects what has happened: 1 on success
	(incoming connection on listen socket, we accepted it successfully),
	-1 on error, 0 on timeout.  Also change the select calls to not check _all_ possible file
	descriptors.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-11-05  Christian Beier <dontmind@freeshell.org>

	* libvncclient/listen.c, libvncclient/rfbproto.c,
	libvncclient/vncviewer.c, libvncserver/rfbserver.c: Fix checks for
	socket values, 0 is a legal value.  To make this work, we also have to initialize sockets to a default
	value of -1.  Also close a client listen socket if it's open.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-31  Christian Beier <dontmind@freeshell.org>

	* libvncclient/vncviewer.c: libvncclient: include winsock2.h in
	vncviewer.c.  fixes warning about closesocket being implicitly declared.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-11-05  Vic Lee <llyzs@163.com>

	* configure.ac: Change GnuTLS minimum requirement to 2.4.0 Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
	Schindelin <johannes.schindelin@gmx.de>

2009-11-04  Vic Lee <llyzs@163.com>

	* client_examples/ppmtest.c, examples/example.c,
	libvncclient/sockets.c, libvncclient/zrle.c, libvncserver/cursor.c,
	libvncserver/tightvnc-filetransfer/rfbtightserver.c,
	vncterm/VNConsole.c: Fix various compilation warnings Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
	Schindelin <johannes.schindelin@gmx.de>

2009-10-07  Vic Lee <llyzs@163.com>

	* libvncclient/rfbproto.c, libvncserver/vncauth.c, rfb/rfbclient.h,
	rfb/rfbproto.h: Add MSLogon security type Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
	Schindelin <johannes.schindelin@gmx.de>

2009-10-31  Johannes Schindelin <johannes.schindelin@gmx.de>

	* AUTHORS: Add Alexander to the authors Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-31  Christian Beier <dontmind@freeshell.org>

	* client_examples/SDLvncviewer.c: SDLvncviewer: don't call clean up
	the same client twice.  If rfbInitConnection fails, it cleans up the client, so protect
	against doing it ourselves again.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-30  Christian Beier <dontmind@freeshell.org>

	* client_examples/SDLvncviewer.c: SDLvncviewer: add SIGINT handler
	to be able to actually stop program.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-26  Christian Beier <dontmind@freeshell.org>

	* client_examples/SDLvncviewer.c: SDLvncviewer: use -listennofork
	when -listen specified.  As -listen mode isn't really working under UNIX and not at all under
	windows, use -listennofork and an outer listen loop instead.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-26  Christian Beier <dontmind@freeshell.org>

	* libvncclient/listen.c, libvncclient/vncviewer.c, rfb/rfbclient.h: 
	libvncclient: add a non-forking listen function.  Forking the whole process from deep within a library call does not
	really work at all with apps that use multiple threads, i.e. every
	reasonably modern GUI app. So, provide a non-forking listen function
	so that the caller can decide if to fork, start a thread, etc.  This implementation adds a timeout parameter to be able to call the
	listen function multiple times so that it's possible to do sth. else
	in between, e.g. abort listening.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-21  Christian Beier <dontmind@freeshell.org>

	* client_examples/SDLvncviewer.c: SDLvncviewer: make listen mode
	work _somewhat_.  set the port to listen on and really ensure that the window of the
	fork()ed instance is closed.  works somewhat: it's now actually possible to listen for an incoming
	connection and to close it again, but the second connection attempt
	fails with 'XIO:  fatal IO error 11 (Resource temporarily
	unavailable)'. this could relate to the fact that SDL uses threads
	internally and we're fork()ing here...  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-30  Christian Beier <dontmind@freeshell.org>

	* libvncclient/sockets.c: libvncclient: make listenAtTCPPort() work
	under windows.  Actually, initSockets() has to be called everywhere we possibly use
	sockets the first time.  Also fix return value of initSockets().  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-30  Alexander Dorokhine <arrenlex@gmail.com>

	* libvncclient/rfbproto.c, libvncclient/vncviewer.c,
	rfb/rfbclient.h: libvncclient: Add FinishedFrameBufferUpdate
	callback When working on a program which searches the display for some image,
	one does not want to search again without getting an FB update.  Add
	a callback to make this possible.

2009-10-30  Alexander Dorokhine <arrenlex@gmail.com>

	* libvncclient/sockets.c: Fix hostname resolution problems under
	Windows On Windows, the WSA system needs to be initialized to be able to
	look up host names.  This patch also changes *addr = 0 to use the constant
	INADDR_LOOPBACK instead, which seems to be required on Windows.

2009-10-17  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c, x11vnc/help.c,
	x11vnc/solid.c, x11vnc/sslhelper.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: Workaround for inane
	X_ShmAttach incompatibility in Xorg, -solid support in xfce,
	showrfbauth option.

2009-10-08  runge <runge@karlrunge.com>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: Synchronize ssvnc source, etc.   Nearly the 1.0.24
	release...

2009-10-08  runge <runge@karlrunge.com>

	* classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/connections.h, x11vnc/enc.h, x11vnc/help.c,
	x11vnc/keyboard.c, x11vnc/options.c, x11vnc/options.h,
	x11vnc/params.h, x11vnc/remote.c, x11vnc/remote.h, x11vnc/screen.c,
	x11vnc/selection.c, x11vnc/selection.h, x11vnc/solid.c,
	x11vnc/solid.h, x11vnc/sslcmds.c, x11vnc/sslcmds.h,
	x11vnc/sslhelper.c, x11vnc/sslhelper.h, x11vnc/ssltools.h,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/unixpw.c,
	x11vnc/unixpw.h, x11vnc/user.c, x11vnc/util.c, x11vnc/util.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xdamage.c, x11vnc/xdamage.h, x11vnc/xevents.c,
	x11vnc/xevents.h, x11vnc/xwrappers.c: Huge number of changes, see
	x11vnc/ChangeLog

2009-10-07  runge <runge@karlrunge.com>

	* libvncclient/rfbproto.c: Some broken build environments treat
	fprintf(fh, buf) as a fatal error...

2009-10-07  runge <runge@karlrunge.com>

	* libvncserver/main.c: Some broken build environments treat
	fprintf(fh, buf) as a fatal error...

2009-10-02  Vic Lee <llyzs@163.com>

	* libvncclient/rfbproto.c, libvncclient/tls.c, rfb/rfbclient.h,
	rfb/rfbproto.h: Add VeNCrypt support in libvncclient Signed-off-by: Vic Lee <llyzs@163.com>

2009-10-02  Christian Beier <dontmind@freeshell.org>

	* configure.ac, libvncclient/rfbproto.c, libvncclient/sockets.c,
	rfb/rfb.h, vncterm/Makefile.am: mingw32 crosscompile fixes.  SOCKET is redefined in winsock2.h so #undef it where winsock2.h is
	included. The changes in rfbproto.c circumvent crosscompiler errors
	like 'S_IFMT' undeclared ...', the Makefile.am changes avoid
	building linux specific stuff for a win32 host target.  Also added
	configure option to specify sdl-config.  Signed-off-by: Christian Beier <dontmind@freeshell.org>
	Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-02  Johannes Schindelin <johannes.schindelin@gmx.de>

	* configure.ac: Fallback to --without-client-tls if GNUTLS could not
	be found Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-01  Vic Lee <llyzs@163.com>

	* configure.ac, libvncclient/Makefile.am, libvncclient/rfbproto.c,
	libvncclient/sockets.c, libvncclient/tls.c, libvncclient/tls.h,
	libvncclient/vncviewer.c, rfb/rfbclient.h, rfb/rfbproto.h: Add
	anonymous TLS support in libvncclient Signed-off-by: Vic Lee <llyzs@163.com>

2009-10-02  Johannes Schindelin <johannes.schindelin@gmx.de>

	* test/encodingstest.c: encodingstest: fix multi-threading issue Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-02  Johannes Schindelin <johannes.schindelin@gmx.de>

	* test/encodingstest.c: encodingstest: fix whitespace Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-02  Johannes Schindelin <johannes.schindelin@gmx.de>

	* AUTHORS: Add Christian Beier to the AUTHORS Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-10-02  Christian Beier <dontmind@freeshell.org>

	* libvncclient/rfbproto.c: Fix IsUnixSocket() This is a pure functionality fix: according to its manpage, stat()
	returns 0 on success. Checking for a return value of zero fixes
	incorrect results of IsUnixSocket().  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-09-27  Johannes Schindelin <johannes.schindelin@gmx.de>

	* AUTHORS: Add Vic Lee to the author list Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-09-14  Vic Lee <llyzs@163.com>

	* libvncclient/rfbproto.c: Fix bug for logging unsupported security
	types Signed-off-by: Vic Lee <llyzs@163.com>

2009-09-14  Vic Lee <llyzs@163.com>

	* libvncclient/rfbproto.c: Fix bug for VNC Server version 4 Signed-off-by: Vic Lee <llyzs@163.com>

2009-08-10  runge <runge@karlrunge.com>

	* x11vnc/README, x11vnc/connections.c, x11vnc/enc.h, x11vnc/help.c,
	x11vnc/pointer.c, x11vnc/unixpw.c, x11vnc/unixpw.h, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: Improvements
	to -unixpw_cmd and -unixpw_nis.  Experimental X11VNC_WATCH_DX_DY=1
	for buggy theme menus, see:
	http://ubuntuforums.org/showthread.php?t=1223490

2009-07-11  runge <runge@karlrunge.com>

	* prepare_x11vnc_dist.sh, x11vnc/README, x11vnc/help.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: Setup for x11vnc version
	0.9.9

2009-06-19  runge <runge@karlrunge.com>

	* classes/ssl/README,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch, x11vnc/README: 
	Add proxyHost and proxyPort java applet params.

2009-06-18  runge <runge@karlrunge.com>

	* classes/ssl/ss_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
	x11vnc/ChangeLog, x11vnc/README,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: classes/ssl: java viewer now handles auth-basic proxy
	logins.  misc/enhanced_tightvnc_viewer: update ssvnc.

2009-06-16  Johannes Schindelin <johannes.schindelin@gmx.de>

	* libvncclient/vncviewer.c: Fix two issues in rfbGetClient() There was an unnecessary assignment, and an assignment of a string
	that was to be free()ed later, so it has to be strdup()ed.  Both issues spotted by Roman Held.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-06-14  runge <runge@karlrunge.com>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/screen.c, x11vnc/sslhelper.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: 
	X11VNC_REFLECT_PASSWORD env. var., warning about compiz, improve
	single-port.

2009-05-22  Stefan Becker <stefanb2@users.sourceforge.net>

	* libvncclient/vncviewer.c: Add close() to rfbClientCleanup() Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-05-21  runge <runge@karlrunge.com>

	* x11vnc/8to24.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/connections.c, x11vnc/connections.h, x11vnc/cursor.c,
	x11vnc/help.c, x11vnc/keyboard.c, x11vnc/misc/turbovnc/convert,
	x11vnc/options.c, x11vnc/options.h, x11vnc/rates.c,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/sslhelper.c, x11vnc/unixpw.c, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/util.c, x11vnc/util.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c, x11vnc/xevents.c,
	x11vnc/xrecord.c, x11vnc/xwrappers.c: Thread safety.  Fix -clip -in
	-rawfb.  Try to avoid Xorg stuck key bug.

2009-05-21  runge <runge@karlrunge.com>

	* ChangeLog, configure.ac, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/tight.c,
	libvncserver/tightvnc-filetransfer/rfbtightserver.c,
	libvncserver/zlib.c, libvncserver/zrle.c,
	libvncserver/zrleencodetemplate.c, rfb/rfb.h: Thread safety for
	zrle, zlib, tight.  Proposed tight security type fix for debian bug
	517422.

2009-05-20  llyzs <llyzs@163.com>

	* rfb/rfbclient.h: Export the functions SupportsClient2Server and
	SupportsServer2Client These are useful functions for VNC clients, so let's export them for
	everybody to use.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-05-12  Johannes Schindelin <johannes.schindelin@gmx.de>

	* AUTHORS: Add Ben to the authors Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-05-12  Johannes Schindelin <johannes.schindelin@gmx.de>

	* autogen.sh: Make autogen.sh executable Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-05-12  Ben Klopfenstein <benklop@gmail.com>

	* libvncclient/rfbproto.c, libvncclient/sockets.c, rfb/rfbclient.h: 
	libvncclient: Unix sockets support by Ben Klopfenstein Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-03-31  runge <runge@karlrunge.com>

	* x11vnc/README, x11vnc/connections.c, x11vnc/connections.h,
	x11vnc/screen.c, x11vnc/x11vnc.1, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c: rebuild for x11vnc dev 0.9.8

2009-03-31  runge <runge@karlrunge.com>

	* prepare_x11vnc_dist.sh: x11vnc 0.9.8 dev

2009-03-30  Johannes Schindelin <johannes.schindelin@gmx.de>

	* success.html: Add LCD4Linux to the success stories Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-03-16  runge <runge@karlrunge.com>

	* x11vnc/README, x11vnc/enc.h, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/util.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: Add some -remap tricks.  Limit rfbCFD message
	count.

2009-03-14  runge <runge@karlrunge.com>

	* x11vnc/8to24.c, x11vnc/8to24.h, x11vnc/README,
	x11vnc/allowed_input_t.h, x11vnc/avahi.c, x11vnc/avahi.h,
	x11vnc/blackout_t.h, x11vnc/cleanup.c, x11vnc/cleanup.h,
	x11vnc/connections.c, x11vnc/connections.h, x11vnc/cursor.c,
	x11vnc/cursor.h, x11vnc/enc.h, x11vnc/enums.h, x11vnc/gui.c,
	x11vnc/gui.h, x11vnc/help.c, x11vnc/help.h, x11vnc/inet.c,
	x11vnc/inet.h, x11vnc/keyboard.c, x11vnc/keyboard.h,
	x11vnc/linuxfb.c, x11vnc/linuxfb.h, x11vnc/macosx.c,
	x11vnc/macosx.h, x11vnc/macosxCG.c, x11vnc/macosxCG.h,
	x11vnc/macosxCGP.c, x11vnc/macosxCGP.h, x11vnc/macosxCGS.c,
	x11vnc/macosxCGS.h, x11vnc/misc/LICENSE,
	x11vnc/misc/turbovnc/Makefile.am, x11vnc/misc/turbovnc/README,
	x11vnc/misc/turbovnc/apply_turbovnc, x11vnc/misc/turbovnc/convert,
	x11vnc/misc/turbovnc/convert_rfbserver,
	x11vnc/misc/turbovnc/undo_turbovnc, x11vnc/options.c,
	x11vnc/options.h, x11vnc/params.h, x11vnc/pm.c, x11vnc/pm.h,
	x11vnc/pointer.c, x11vnc/pointer.h, x11vnc/rates.c, x11vnc/rates.h,
	x11vnc/remote.c, x11vnc/remote.h, x11vnc/scan.c, x11vnc/scan.h,
	x11vnc/screen.c, x11vnc/screen.h, x11vnc/scrollevent_t.h,
	x11vnc/selection.c, x11vnc/selection.h, x11vnc/solid.c,
	x11vnc/solid.h, x11vnc/sslcmds.c, x11vnc/sslcmds.h,
	x11vnc/sslhelper.c, x11vnc/sslhelper.h, x11vnc/ssltools.h,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/uinput.c,
	x11vnc/uinput.h, x11vnc/unixpw.c, x11vnc/unixpw.h, x11vnc/user.c,
	x11vnc/user.h, x11vnc/userinput.c, x11vnc/userinput.h,
	x11vnc/util.c, x11vnc/util.h, x11vnc/v4l.c, x11vnc/v4l.h,
	x11vnc/win_utils.c, x11vnc/win_utils.h, x11vnc/winattr_t.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xdamage.c, x11vnc/xdamage.h,
	x11vnc/xevents.c, x11vnc/xevents.h, x11vnc/xinerama.c,
	x11vnc/xinerama.h, x11vnc/xkb_bell.c, x11vnc/xkb_bell.h,
	x11vnc/xrandr.c, x11vnc/xrandr.h, x11vnc/xrecord.c,
	x11vnc/xrecord.h, x11vnc/xwrappers.c, x11vnc/xwrappers.h: Insert
	x11vnc copyright and license notices.

2009-03-14  runge <runge@karlrunge.com>

	* x11vnc/README: Test git commit setting username & etc.

2009-03-14  Karl J. Runge <runge@haystack.runge.home>

	* x11vnc/README, x11vnc/help.c, x11vnc/ssltools.h, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: Tweak settings and docs for
	create_display.  Add FD_EXTRA finishing cmd.

2009-03-13  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/screen.c,
	x11vnc/userinput.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: Fix off-screen bug for -ncache_cr
	copyrect.

2009-03-12  dscho <dscho>

	* ChangeLog, client_examples/SDLvncviewer.c: Teach SDLvncviewer
	about scroll wheel events Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-03-12  dscho <dscho>

	* client_examples/SDLvncviewer.c: SDLvncviewer: fix passing a wrong
	pointer type Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-03-08  dscho <dscho>

	* ChangeLog, client_examples/Makefile.am,
	client_examples/SDLvncviewer.c, client_examples/scrap.c,
	client_examples/scrap.h: Clipboard support for SDLvncviewer The clipboard support has only been tested on Linux so far.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-03-07  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/misc/turbovnc/Makefile.am,
	x11vnc/misc/turbovnc/README, x11vnc/misc/turbovnc/apply_turbovnc,
	x11vnc/misc/turbovnc/convert,
	x11vnc/misc/turbovnc/convert_rfbserver,
	x11vnc/misc/turbovnc/undo_turbovnc, x11vnc/scan.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/user.c,
	x11vnc/user.h, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: Allow range
	for X11VNC_SKIP_DISPLAY, document grab Xserver issue.  Add
	progress_client() to proceed more quickly thru handshake.
	Improvements to turbovnc hack.

2009-03-07  dscho <dscho>

	* ChangeLog, TODO, client_examples/SDLvncviewer.c: SDLvncviewer:
	upon focus loss, force releasing the Alt keys When switching windows using the Alt+Tab shortcut, SDLvncviewer
	would get the "down" event, but not the "up" event.  This patch
	provides a workaround.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-03-07  dscho <dscho>

	* client_examples/SDLvncviewer.c: SDLvncviewer: refactor event
	handling Instead of having deep indent levels, put the code to handle events
	into its own function.  That also helps readability.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-03-07  dscho <dscho>

	* TODO: Update SDLvncviewer TODOs Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-03-07  dscho <dscho>

	* ChangeLog, client_examples/SDLvncviewer.c: Teach SDLvncviewer to
	be resizable Using "SDLvncviewer -resizable", you make the window resizable.
	This means that you can shrink the window (e.g. when you are trying
	to access an x11vnc from your little netbook), or you can enlarge
	it.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-03-06  dscho <dscho>

	* ChangeLog, TODO, client_examples/SDLvncviewer.c: SDLvncviewer:
	enable key repeat Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-02-28  runge <runge>

	* configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/misc/Makefile.am, x11vnc/misc/turbovnc/Makefile.am,
	x11vnc/misc/turbovnc/README, x11vnc/misc/turbovnc/apply_turbovnc,
	x11vnc/misc/turbovnc/convert, x11vnc/misc/turbovnc/tight.c,
	x11vnc/misc/turbovnc/turbojpeg.h,
	x11vnc/misc/turbovnc/undo_turbovnc: x11vnc: add kludge to experiment
	with turbovnc.

2009-02-26  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/remote.c,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: x11vnc: fix some -QD cases for use in
	tkx11vnc.

2009-02-22  runge <runge>

	* x11vnc/README, x11vnc/avahi.c, x11vnc/enc.h, x11vnc/selection.c: 
	fix some compiler warnings.

2009-02-22  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: add -noskip_lockkeys option
	for future use.

2009-02-04  runge <runge>

	* classes/ssl/README,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/remote.c,
	x11vnc/screen.c, x11vnc/selection.c, x11vnc/sslhelper.c,
	x11vnc/ssltools.h, x11vnc/unixpw.c, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c, x11vnc/xwrappers.c: x11vnc: Add "sendbell"
	remote cmd.  Fix copyrect updates under -reflect.  Workaround that
	checks valid window of selection requestor.  Wait on some ssl helper
	pids earlier.  Workaround XAUTHLOCALHOSTNAME for some new usage
	modes.  Set fake fb to requested bpp with correct masks.  -padgeom
	once:... mode.  Set LIBXCB_ALLOW_SLOPPY_LOCK by default.
	rfbRandomBytes earlier.  classes/ssl: Update jars.  Add "TOP_"
	dropdown customization to ultravnc java viewer applet FTP panel.

2009-02-03  dscho <dscho>

	* test/Makefile.am: test/Makefile: use check_PROGRAMS Rather than use noinst_PROGRAMS, check_PROGRAMS will define programs
	that are only compiled when someone actually runs `make check`.  Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by:
	Johannes Schindelin <johannes.schindelin@gmx.de>

2009-02-03  dscho <dscho>

	* ChangeLog: Record Mike's automake cleanups Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2009-02-03  dscho <dscho>

	* Makefile.am, client_examples/Makefile.am, configure.ac,
	contrib/Makefile.am, examples/Makefile.am,
	libvncclient/Makefile.am, libvncserver/Makefile.am,
	test/Makefile.am, vncterm/Makefile.am, x11vnc/Makefile.am: clean up
	build flags The flag handling (both compiler options and include paths) are a
	mess at the moment.  There is no point in forcing "-O2 -g" when
	these are already the defaults, and if someone changes the defaults,
	chances are good they don't want you clobbering their choices.  The -Wall flag should be handled in configure and thrown into CFLAGS
	once rather than every Makefile.am.  Plus, this way we can control
	which compilers the flag actually gets used with.  Finally, the INCLUDES variable is for -I paths, not AM_CFLAGS.  Nor
	should it contain -I. as this is already in the default includes
	setup.  Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by:
	Johannes Schindelin <johannes.schindelin@gmx.de>

2009-02-03  dscho <dscho>

	* configure.ac: configure: use _cv_ in cache var name Newer autoconf fails if _cv_ is not in the cache var name.  Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by:
	Johannes Schindelin <johannes.schindelin@gmx.de>

2009-02-03  dscho <dscho>

	* configure.ac: configure: use AM_PROG_CC_C_O Newer automakes error out due to per-file CFLAGS being used unless
	the macro AM_PROG_CC_C_O is set in configure.ac.  [jes: The macro AM_PROG_CC_C_O has been around since 1999, so it
	 should be safe.] Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by:
	Johannes Schindelin <johannes.schindelin@gmx.de>

2009-02-03  dscho <dscho>

	* autogen.sh: autogen.sh: run with set -e If any autotool command fails, we want to abort, not keep running.
	Otherwise, errors in say a Makefile.am will be missed as the
	automake failure gets ignored and then lost in the noise.  Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by:
	Johannes Schindelin <johannes.schindelin@gmx.de>

2009-01-12  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: SSVNC 1.0.22 release (+ a little bit more).  crl lists,
	ssh pid finding improvements, and more.

2009-01-12  runge <runge>

	* CMakeLists.txt, ChangeLog, configure.ac: configure.ac,
	CMakeLists.txt: set LibVNCServer version to 0.9.7

2009-01-12  runge <runge>

	* classes/ssl/README, classes/ssl/ss_vncviewer,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: classes/ssl: Add configurable Ultra java
	applet Filexfer Drives drop down (e.g.
	ftpDropDown=Home.Desktop.bin).  Document all applet parameters in
	classes/ssl/README.

2009-01-11  runge <runge>

	* ChangeLog: Forgot ChangeLog

2009-01-11  runge <runge>

	* prepare_x11vnc_dist.sh: prepare_x11vnc_dist.sh: fix SUBDIRS and
	DIST_SUBDRIS when using --with-system-libvncserver

2009-01-10  runge <runge>

	* x11vnc/8to24.c, x11vnc/ChangeLog, x11vnc/README, x11vnc/screen.c,
	x11vnc/selection.c, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c,
	x11vnc/xrecord.c: x11vnc: fix failure of -8to24 on default depth 24
	due to nonstandard indexed color support changes.  Fix small window
	for failure after XSendEvent selection call; add env var.
	X11VNC_SENDEVENT_SYNC=1 to take even more care.

2009-01-04  runge <runge>

	* x11vnc/README, x11vnc/avahi.c, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/connections.h, x11vnc/enc.h,
	x11vnc/gui.c, x11vnc/scan.c, x11vnc/screen.c, x11vnc/solid.c,
	x11vnc/sslhelper.c, x11vnc/x11vnc.c, x11vnc/xwrappers.c: x11vnc: fix
	compiler warnings.

2009-01-04  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/help.c, x11vnc/linuxfb.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/pointer.c,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/sslhelper.c, x11vnc/v4l.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xwrappers.c: x11vnc:
	add -rmflag option, -rawfb vt support, bpp < 8 support for rawfb,
	find /dev/video better. Fix reverse SSL connection for DH.  Some
	improvements for CUPS TS helper, restart if needed.

2009-01-04  runge <runge>

	* configure.ac, prepare_x11vnc_dist.sh: configure.ac: add include
	file file for libXrandr on Solaris.  prepare_x11vnc_dist.sh: set
	version to 0.9.7

2008-12-10  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/options.c, x11vnc/options.h, x11vnc/params.h,
	x11vnc/remote.c, x11vnc/sslhelper.c, x11vnc/ssltools.h,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/util.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: 0.9.6 release.  Some
	strtok bugfixes. rename -tlsvnc to -anontls.  Disable ssl caching.
	No cert creation prompting in inetd or bg modes.  waitpid a bit more
	carefully on ssl helpers.  Tune ssl initial timeouts.  Let -create
	user specify starting X display.  fix -rfbport prompt gui for older
	tk.  -sslonly option. Error if no -ssl with related options. -rand
	option.  -ssl implies -ssl SAVE

2008-11-22  runge <runge>

	* classes/ssl/ss_vncviewer: Update ss_vncviewer...

2008-11-22  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/stunnel-maxconn.pa
	tch,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch, x11vnc/misc/enhanced_tightvnc_viewer/ssvnc.desktop: SSVNC
	  sync: stunnel upgrade and patch, change wish order, -anondh -ciphers
	  option VeNCrypt and TLSVNC support (in pproxy and unix vncviewer).
	  Help text tweaks -killstunnel, s_client fixes, No Encryption easier.
	  Zeroconf/avahi support.  tk font fixes. SSVNC_ULTRA_FTP_JAR finding
	  SSVNC_PREDIGESTED_HANDSHAKE SSVNC_SKIP_RFB_PROTOCOL_VERSION,
	SSVNC_SET_SECURITY_TYPE, etc hacks.

2008-11-22  runge <runge>

	* x11vnc/ChangeLog, x11vnc/Makefile.am, x11vnc/README,
	x11vnc/avahi.c, x11vnc/cleanup.c, x11vnc/connections.c,
	x11vnc/gui.c, x11vnc/help.c, x11vnc/options.c, x11vnc/options.h,
	x11vnc/params.h, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/sslcmds.c, x11vnc/sslhelper.c, x11vnc/sslhelper.h,
	x11vnc/ssltools.h, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/unixpw.c, x11vnc/unixpw.h, x11vnc/userinput.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.desktop,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xdamage.c,
	x11vnc/xdamage.h, x11vnc/xevents.c, x11vnc/xrecord.c,
	x11vnc/xrecord.h, x11vnc/xwrappers.c: x11vnc: x11vnc.desktop file.
	  -reopen, -dhparams, -sslCRL, -setdefer options. -rfbport PROMPT
	  VeNCrypt and TLSVNC SSL/TLS encryption support.  Tweaks to
	  choose_delay() algorithm.  -ssl ANON anonymouse Diffie-Hellman mode.
	  Fix bugs in certs management.  Additions to tray=setpass naive user
	mode.

2008-11-05  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/avahi.c,
	x11vnc/cleanup.c, x11vnc/cleanup.h, x11vnc/help.c,
	x11vnc/macosxCG.c, x11vnc/rates.c, x11vnc/remote.c,
	x11vnc/screen.c, x11vnc/solid.c, x11vnc/sslhelper.c,
	x11vnc/ssltools.h, x11vnc/userinput.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c: x11vnc: add zeroconf external helpers
	(avahi-publish and dns-sd).  Alias -zeroconf.  Close pipeinput_fh on
	exit.  Kludge to make -solid work on MacOSX console.  Attempt at cpp
	macros to disable newer libvncserver interfaces.

2008-11-05  runge <runge>

	* configure.ac: Tweak messages.  Add shmat for --without-x building.

2008-10-30  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: synchronize ssvnc

2008-10-29  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/help.c, x11vnc/nox11.h, x11vnc/remote.c, x11vnc/screen.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c, x11vnc/xevents.c: x11vnc:
	-http_oneport for single port HTTP and VNC. Improve find_display wrt
	lsof blocking with -b.

2008-10-19  runge <runge>

	*
	x11vnc/misc/enhanced_tightvnc_viewer/bin/Darwin.Power.Macintosh/vnc
	viewer.sh, x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: Sync SSVNC changes: fullscreen fixes, local scaling,
	-chatonly, iso-8859-1/utf8 etc., etc.

2008-10-19  runge <runge>

	* classes/ssl/ss_vncviewer,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch: Update ssl VNC
	viewer jars and patch file.

2008-10-19  runge <runge>

	* x11vnc/8to24.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/cleanup.c, x11vnc/connections.c, x11vnc/connections.h,
	x11vnc/cursor.c, x11vnc/enc.h, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/linuxfb.c, x11vnc/options.c, x11vnc/options.h,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/scan.h, x11vnc/screen.c,
	x11vnc/screen.h, x11vnc/selection.c, x11vnc/solid.c,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xevents.c,
	x11vnc/xinerama.c, x11vnc/xrandr.c, x11vnc/xrandr.h,
	x11vnc/xrecord.c, x11vnc/xwrappers.c, x11vnc/xwrappers.h: x11vnc:
	-chatwindow, -scale WxH, -enc changes.

2008-09-21  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/Makefile.am,
	x11vnc/README, x11vnc/enc.h, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/pointer.c,
	x11vnc/screen.c, x11vnc/sslhelper.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/util.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: Add symmetric key encryption -enc
	cipher:keyfile, works with SSVNC.  Make -remap work on MacOSX
	console.  update to 0.9.5 strings.  Add a couple menu items to
	tkx11vnc.

2008-09-17  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/sslhelper.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: x11vnc: make -allow work in -ssl mode.

2008-09-14  runge <runge>

	* classes/ssl/ss_vncviewer,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/gui.c, x11vnc/help.c,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch, x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/userinput.c, x11vnc/util.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc:
	-sleepin m-n for random sleep. More mktemp and mkstemp protections.
	SSL_INIT_TIMEOUT=n env. var.  Fix macosx console X call bug.
	Synchronize other projects sources.

2008-09-07  runge <runge>

	* classes/ssl/ss_vncviewer,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch, x11vnc/8to24.c,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/gui.c, x11vnc/gui.h, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/macosxCG.c, x11vnc/macosxCG.h,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/sshvnc.bat,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/tsvnc.bat,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/sshvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/tsvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
	x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_getpatches,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch, x11vnc/options.c, x11vnc/options.h, x11vnc/pointer.c,
	x11vnc/remote.c, x11vnc/solid.c, x11vnc/ssltools.h,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xevents.c,
	x11vnc/xevents.h, x11vnc/xinerama.c, x11vnc/xinerama.h: x11vnc: kill
	   gui_pid on exit in -connect/-connect_or_exit mode.  -grablocal n
	   experiment (not compiled by default).  -macuskbd option for macosx
	   for orig uskdb code. keycode=N remote contol cmd.  Find dpy look at
	   non-NFS cookies in /tmp.  Fix gui tray insertion on recent gnome dt.
	Fix connect_file bug. Sync SSVNC

2008-06-24  runge <runge>

	* libvncserver/rfbserver.c: We seem to need to guard against freeing
	iterator 'i' twice in rfbSendFramebufferUpdate()  (italc reported
	bug)

2008-06-07  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/unixpw.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xinerama.c: x11vnc: -clip xineramaN option, -DIGNORE_GETSPNAM
	          for HP-UX.  Print info on SSH_CONNECTION override.

2008-06-03  dscho <dscho>

	* ChangeLog, client_examples/SDLvncviewer.c: SDLvncviewer: update
	screen correctly after a resize Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-06-03  runge <runge>

	* configure.ac: Enable --with-ssl=DIR option.

2008-06-01  runge <runge>

	* x11vnc/README, x11vnc/options.c, x11vnc/options.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc:
	lower waitms and defer if framebuffer reads are fast (> 100MB/s)

2008-06-01  runge <runge>

	* x11vnc/8to24.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/connections.c, x11vnc/cursor.c, x11vnc/help.c,
	x11vnc/misc/Xdummy, x11vnc/options.c, x11vnc/options.h,
	x11vnc/scan.c, x11vnc/screen.c, x11vnc/userinput.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xinerama.c: x11vnc: support colormaps for depths other than
	8.  xinerama warppointer only if more than one subscreen.

2008-05-31  dscho <dscho>

	* .gitignore: .gitignore: ignore also temporary editor files Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-05-31  dscho <dscho>

	* VisualNaCro/.gitignore: VisualNaCro: add .gitignore file Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-05-31  dscho <dscho>

	* VisualNaCro/configure.ac: VisualNaCro: fix configure.ac There was a misunderstanding as to the workings of AC_CHECK_PROG().  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-05-31  dscho <dscho>

	* TODO: Update TODOs Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-05-31  dscho <dscho>

	* libvncserver-config.in: Fix libvncserver-config for in-place
	operation Since quite some time, the linkable libraries are stored in the
	.libs/ subdirectories.  Adjust libvncserver-config to account for
	that when running without installing.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-05-23  runge <runge>

	* libvncserver/rfbserver.c: Handle colormaps with more than 256
	colors.

2008-05-13  dscho <dscho>

	* examples/mac.c: examples/mac: disable the cursor We cannot write access the frame buffer, and we do not have a
	sensible cursor anyway, so better disable the cursor (which would
	have to be drawn for clients that do not support
	CursorShapeUpdates).  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-05-13  dscho <dscho>

	* client_examples/SDLvncviewer.c: SDLvncviewer: add -viewonly Just like its siblings from other projects, SDLvncviewer now
	supports viewonly connections.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-05-12  runge <runge>

	* x11vnc/README, x11vnc/help.c, x11vnc/selection.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: x11vnc: SSL fixes.  Increase cert lifetimes to
	2 years.  Print ssl err msg.

2008-05-12  runge <runge>

	* configure.ac: Add X509_print_ex_fp check for x11vnc.

2008-05-12  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: Many improvement to the frontend and unix viewer.
	UltraVNC proxy support, and other proxy improvements.

2008-05-08  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/gui.c, x11vnc/help.c, x11vnc/options.c, x11vnc/scan.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/user.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: add UltraVNC repeater proxy support.
	        fix to setp gui mode. -threads is now strongly discouraged.  Read
	        PORT= in url.  User can set nolisten for Xvfb in -create mode.
	        clean up wait_for_client() to some degree.

2008-05-08  runge <runge>

	* classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch: Add check for
	"https" to viewers.  update jars.

2008-04-28  dscho <dscho>

	* rfb/rfbclient.h: Fix compilation in the absence of libjpeg The JPEG library is not necessarily installed everywhere, and
	sometimes it is outright undesirable to compile with JPEG support,
	e.g. when the server is not very fast.  So fix the compilation for
	that case.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-03-21  dscho <dscho>

	* TODO: Update TODOs Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-02-18  dscho <dscho>

	* ChangeLog, libvncserver/rfbregion.c: Please MS Visual C++ a bit
	(Christian Ehrlicher) Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-02-18  runge <runge>

	* classes/ssl/ss_vncviewer, x11vnc/README: Update ssl jars.

2008-02-18  runge <runge>

	* x11vnc/README, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: changes for
	release

2008-02-18  runge <runge>

	* x11vnc/README, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: minor date changes.

2008-02-18  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: ssvnc sync with zywrle support and improvements to popup.

2008-02-04  dscho <dscho>

	* ChangeLog, libvncclient/rfbproto.c, libvncclient/zrle.c: ZYWRLE
	patch for libvncclient (thanks Noriaki Yamazaki) Highlite:  * use qualityLevel/zlib_buffer. No new variable is needed.   * Change coding style to recursive fashion.   * Change meaning of qualityLevel== 9 for easy calc zywrle_level:      old:zywrle_level== 1      new:disable ZYWRLE(same as ZRLE)    so, we should not use this value for compatible reason.   * Color mode handling isn't complete.     I provided and checked 16 bit colors(RGB555,RGB565) and    some color mode of 32 bit colors for little endian mode.     we must make and check 24 bit colors and big endian mode.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-02-04  dscho <dscho>

	* ChangeLog, libvncserver/zywrletemplate.c: Fix ZYWRLE en/decoding
	for width != scanline (thanks Noriaki Yamazaki) Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-02-03  runge <runge>

	* libvncserver/stats.c: Add ZYWRLE to server printout.

2008-02-02  dscho <dscho>

	* ChangeLog, TODO, client_examples/SDLvncviewer.c: SDLvncviewer: fix
	button handling For some reason, I swapped buttons 2 and 3 on Dec 7, 2005, in commit
	"translate keys based on unicode (much more reliable than sym)".  I
	do not remember why, nor what I smoked, but this was wrong.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-02-02  dscho <dscho>

	* TODO, client_examples/SDLvncviewer.c: SDLvncviewer: fix
	Ctrl+<letter> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-02-02  dscho <dscho>

	* TODO, client_examples/SDLvncviewer.c: SDLvncviewer: fix
	translation of the Tab key Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-02-02  dscho <dscho>

	* TODO: Updated TODOs Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-02-01  runge <runge>

	* libvncserver/Makefile.am: Need to include zywrletemplate.c in
	Makefile.am

2008-02-01  runge <runge>

	* classes/ssl/ss_vncviewer: sync java viewer.

2008-02-01  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch, x11vnc/rates.c, x11vnc/ssltools.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c: x11vnc: during speeds
	estimate, guard against client disconnecting.

2008-01-31  dscho <dscho>

	* libvncserver/rfbserver.c: Fix rfbSendSupportedEncodings There was a long standing TODO to make the counting of the supported
	encodings dynamic.  It never triggered, until ZYWRLE was added.  Noticed by Christian Ehrlicher.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-31  dscho <dscho>

	* Makefile.am, configure.ac: Recurse into subdirectory x11vnc/ when
	configuring with --with-x11vnc Since we separated the packages LibVNCServer and x11vnc, there is a
	configure switch --with-x11vnc, without which x11vnc is not built.  However, even _with_ this switch, it is not built, because the
	Makefile would not recurse into the x11vnc/ subdirectory.  Fix that.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-31  dscho <dscho>

	* libvncserver/rfbserver.c: Fix Swap16IfLE() on bytes When swapping the values for the colour table to little-endian
	(because they are 16-bit values), we need to cast "unsigned char" to
	"unsigned short"; otherwise, Microsoft's compiler would keep
	complaining.  Noticed by Christian Ehrlicher.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-31  dscho <dscho>

	* libvncserver/rfbserver.c, rfb/rfb.h: Move tightQualityLevel out of
	the JPEG specific part The variable tightQualityLevel is used for ZYWRLE compression, too,
	so if libjpeg is not present, but libz is, we still need to have
	that struct member.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-30  dscho <dscho>

	* libvncserver/zrle.c, libvncserver/zrleencodetemplate.c, rfb/rfb.h: 
	Make ZYWRLE thread-safe for multiple clients ZYWRLE used a static buffer, which does not work too well if you
	have more than one client in a threaded server.  Instead, we have
	the data in the client structure now.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-30  dscho <dscho>

	* libvncserver/zrle.c, libvncserver/zywrletemplate.c: ZYWRLE brown
	paper bag fix While adjusting the coding style, three stupid mistakes happened.
	The quality is _not_ just 1, 2, 3, but really 1, 3, 2.  And the
	macros ZYWRLE_PACK_COEFF() and ZYWRLE_UNPACK_COEFF() expand to more
	than one statement, which means that we need curly brackets around
	them when they are in an if clause.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-29  dscho <dscho>

	* TODO: Update TODOs Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-29  dscho <dscho>

	* .gitignore: Add a .gitignore file At least one developer (me) uses git to work on local branches, and
	this file does not hurt.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-29  dscho <dscho>

	* ChangeLog, libvncserver/rfbserver.c: Add missing #include <time.h>
	(thanks Christian Ehrlicher) Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-29  dscho <dscho>

	* AUTHORS, ChangeLog, libvncserver/rfbserver.c,
	libvncserver/scale.c, libvncserver/zrle.c,
	libvncserver/zrleencodetemplate.c, libvncserver/zywrletemplate.c,
	rfb/rfbproto.h: Add ZYWRLE server-side support (thanks Noriaki
	Yamazaki, Hitachi) Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-29  dscho <dscho>

	* AUTHORS, CMakeLists.txt, ChangeLog, configure.ac,
	rfb/rfbconfig.h.cmake, rfb/rfbint.h.cmake: Add CMake support (thanks
	to Christian Ehrlicher) Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2008-01-15  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/scan.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: -ping option, fix memory corruption in
	copy_tiles after xrandr resize.

2007-12-16  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c, x11vnc/gui.c,
	x11vnc/macosxCG.c, x11vnc/remote.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: setup remote-ctrl file by default on
	        macosx. improve tkx11vnc wrt attaching to existing server in
	icon/tray mode.

2007-12-16  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: Fixes for MacOSX 10.5.  Improve usage of x11 viewer on
	macosx.

2007-12-16  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/keyboard.c,
	x11vnc/macosxCG.c, x11vnc/macosxCGS.c, x11vnc/ssltools.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: fix
	find_display and usleep() prototype on macosx.  -display console and
	check DISPLAY /tmp/...:0 on macosx.  implement -noxinerama.

2007-11-13  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c, x11vnc/help.c,
	x11vnc/keyboard.c, x11vnc/keyboard.h, x11vnc/options.c,
	x11vnc/remote.c, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: add
	clear_locks (Caps_Lock, etc) action.

2007-10-27  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle: ssvnc
	sync: connect_br.tcl socks4/5 http proxies, ss_vncviewer socks5
	proxy. ssh 1st proxy. whatismyip.com fix. 127.0.0.1 on Darwin

2007-10-27  runge <runge>

	* classes/ssl/ss_vncviewer: ssl java and ss_vncviewer (socks5) sync.

2007-10-27  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/8to24.c, x11vnc/ChangeLog,
	x11vnc/README, x11vnc/cleanup.c, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/keyboard.c, x11vnc/macosxCGP.c,
	x11vnc/macosxCGS.c, x11vnc/options.c, x11vnc/options.h,
	x11vnc/remote.c, x11vnc/screen.c, x11vnc/selection.c,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/util.c, x11vnc/win_utils.c,
	x11vnc/winattr_t.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c, x11vnc/xrecord.c: x11vnc: -proxy, -ssh
	options. ncache bug in -8to24, Selection "targets" bugfix.

2007-10-04  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/ssltools.h, x11vnc/user.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: add xfce to createdisplay

2007-09-26  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/ssltools.h, x11vnc/user.c, x11vnc/util.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c: x11vnc: COLUMNS=256 and other fixes to
	find/create scripts. More ratecheck.

2007-09-17  dscho <dscho>

	* libvncserver/rfbserver.c: Avoid misaligned access on 64-bit
	machines We used to assume that a char[256] is properly aligned to be cast to
	an rfbServerInitMsg, but that was not the case.  So use a union
	instead.  Noticed by Flavio Leitner.  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

2007-09-11  runge <runge>

	* classes/ssl/ss_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch: update
	ss_vncviewer script, jars, and patch files.

2007-09-11  runge <runge>

	* x11vnc/ChangeLog, x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle: ssvnc:
	          sshvnc ssh-only, tsvnc Terminal Services modes.  Improvements to
	          ss_vncviewer.  Automatically find X dpy and X login.  Reorganize
	menus a bit.  ~/.ssvncrc file.

2007-09-11  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/cursor.c, x11vnc/help.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/screen.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c, x11vnc/xrecord.c, x11vnc/xwrappers.c: x11vnc:
	          fix wireframe crash under -clip.  Add -redirect for VNC redir.
	          -rawfb nullbig, randbig, solid, swirl, etc.  FD_XDM mode to
	          find_display.  -listdpy.  Add enlightenment.  Xvnc.redirect
	          FINDDISPLAY-vnc_redirect. -xvnc, -xvnc_redirect, -svc_xvnc.
	AUTO_PORT.

2007-09-05  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/keyboard.c, x11vnc/misc/Xdummy, x11vnc/options.c,
	x11vnc/options.h, x11vnc/remote.c, x11vnc/screen.c, x11vnc/solid.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xevents.c,
	x11vnc/xevents.h, x11vnc/xrandr.c, x11vnc/xwrappers.c: x11vnc:
	-autoport, -finddpy, -xdummy. watch xrandr events.
	check_redir_services() utilities for Terminal services.  Improve
	Xdummy.

2007-09-05  runge <runge>

	* ChangeLog, classes/ssl/Makefile.am, classes/ssl/proxy.vnc,
	classes/ssl/ss_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	classes/ssl/ultraproxy.vnc,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch: classes/ssl:
	improve timeouts, port fallback, and connection time.

2007-08-19  runge <runge>

	* x11vnc/README, x11vnc/help.c, x11vnc/keyboard.c, x11vnc/x11vnc.1: 
	malloc score_hint and make it shorts to save space.

2007-08-19  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/keyboard.c, x11vnc/ssltools.h, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: x11vnc: better -xkb
	tie-breaking for up keystrokes.  Add Xsrv/FD_XSRV custom server to
	FINDCREATEDISPLAY list.

2007-08-18  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/solid.c,
	x11vnc/ssltools.h, x11vnc/user.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: x11vnc: improve FINDCREATEDISPLAY (-create)
	script, FD_GEOM, FD_SESS, FD_OPTS, FD_PROG env vars, add Xvnc
	support

2007-08-16  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: x11vnc: add reverse -connect
	support to -display WAIT:, fix SSL Fetch cert only for -display
	WAIT:

2007-08-14  dscho <dscho>

	* AUTHORS, ChangeLog, libvncclient/rfbproto.c: LibVNCClient: if the
	GotRect hook is set, override default op.

2007-08-04  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/remote.c, x11vnc/solid.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c, x11vnc/xevents.c: x11vnc: -xrefresh,
	.DCOPserver bug, -unixpw_unsafe ignores SSH tunnel.

2007-08-04  runge <runge>

	* libvncclient/vncviewer.c: argv > 0 doesn't make sense for a
	pointer; assuming argv != NULL.

2007-07-05  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/remote.c, x11vnc/scan.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/userinput.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: -debug_ncache, fix
	big fonts in tkx11vnc.

2007-07-05  runge <runge>

	* configure.ac, prepare_x11vnc_dist.sh: configure.ac check for
	external system libvncserver version. set x11vnc version 0.9.3

2007-06-18  runge <runge>

	* x11vnc/README, x11vnc/options.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: x11vnc: set NCACHE -1 for release.

2007-06-15  runge <runge>

	* ChangeLog, classes/ssl/ultra.vnc, classes/ssl/ultrasigned.vnc,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch, configure.ac,
	x11vnc/ChangeLog, x11vnc/README,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/Darwin.Power.Macintosh/vnc
	viewer.sh, x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch, x11vnc/options.c, x11vnc/options.h, x11vnc/scan.c,
	x11vnc/sslhelper.c, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c: x11vnc: fix build error if libssl is missing or
	--without-ssl supplied.

2007-05-27  runge <runge>

	*
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: sync ssvnc unix viewer diffs; fix X cursor size.

2007-05-27  runge <runge>

	* classes/ssl/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: update java viewer and ssvnc.

2007-05-27  runge <runge>

	* configure.ac, x11vnc/README: configure.ac: fix x11vnc
	--with-system-libvncserver build and add -R link flag.

2007-05-27  runge <runge>

	* libvncserver-config.in: Fix --libs, echo -n doesn't work
	everywhere.  Question: why -R only for Solaris??

2007-05-27  runge <runge>

	* x11vnc/Makefile.am: clobbered x11vnc/Makefile.am by mistake.

2007-05-27  runge <runge>

	* ChangeLog, Makefile.am, configure.ac, prepare_x11vnc_dist.sh,
	x11vnc/README: configure: make more of a split between libvncserver
	and x11vnc pkgs.

2007-05-26  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/help.c, x11vnc/options.c, x11vnc/unixpw.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: x11vnc: in -unixpw, initial Escape means no
	echo username.

2007-05-22  runge <runge>

	* classes/ssl/ss_vncviewer: update regular SSL viewer jars; update
	ss_vncviewer script.

2007-05-22  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: update ssvnc (SSVNC_EXTRA_SLEEP), and unix viewer (1/n
	menu and chat windows)

2007-05-22  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/options.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: set
	things up (NCACHE = -1) to not have -ncache on by default.

2007-05-19  runge <runge>

	* classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
	libvncserver/rfbserver.c, x11vnc/README, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: More fixes to ultra java
	viewer, ultrafilexfer debugging output, fix -loop in .x11vncrc case.

2007-05-17  runge <runge>

	* libvncserver/tightvnc-filetransfer/rfbtightserver.c: Pre-C99
	declaration error.

2007-05-17  runge <runge>

	* libvncserver/rfbserver.c: In rfbSendFileTransferChunk() check
	permitFileTransfer 1st to avoid false alarms.

2007-05-16  runge <runge>

	* prepare_x11vnc_dist.sh: Add UltraViewerSSL.jar, etc. to dist list.

2007-05-16  runge <runge>

	* libvncserver/tightvnc-filetransfer/handlefiletransferrequest.c,
	libvncserver/tightvnc-filetransfer/rfbtightserver.c: Add logging
	output to know when inside tightvnc-filetransfer functions.

2007-05-16  runge <runge>

	* classes/ssl/Makefile.am, classes/ssl/README,
	classes/ssl/ss_vncviewer, classes/ssl/ultra.vnc,
	classes/ssl/ultrasigned.vnc,
	classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch: Add SSL support
	to UltraVNC Java Viewer (has filetransfer gui).  Fix UltraVNC bugs
	and improve FTP gui a bit.

2007-05-16  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/sslhelper.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: ssvnc: SOCKS support, PORT=, Verify all Certs
	and accepted certs logging. x11vnc SSL debugging output.

2007-05-16  runge <runge>

	* libvncserver/rfbserver.c: Drop client if UltraVNC filetransfer is
	not enabled.

2007-05-07  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle: ssvnc:
	Home dir changing, skip enc warning, memory stick doc.

2007-05-07  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/options.c,
	x11vnc/sslhelper.c, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c: x11vnc: lower -wait and -defer to 20ms. Drop
	client doing ultravnc stuff in -unixpw during login phase.

2007-05-05  runge <runge>

	* x11vnc/README, x11vnc/connections.c, x11vnc/help.c,
	x11vnc/remote.c, x11vnc/sslhelper.c, x11vnc/unixpw.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/xevents.c: filexfer
	warnings and messages.

2007-05-05  runge <runge>

	* configure.ac, x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/user.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c: x11vnc: add
	groups handling for -users mode.

2007-05-04  runge <runge>

	* x11vnc/README, x11vnc/help.c, x11vnc/ssltools.h, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: x11vnc: add WAITBG=1 env.
	var, add mwm to -create.

2007-05-01  runge <runge>

	* classes/ssl/Makefile.am, classes/ssl/onetimekey,
	classes/ssl/ss_vncviewer, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/connections.c, x11vnc/help.c, x11vnc/sslhelper.c,
	x11vnc/ssltools.h, x11vnc/user.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: ssl: java viewer patches, onetimekey; x11vnc
	setsid/setpgrp and -cc 4 for -create

2007-04-28  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch, x11vnc/options.c, x11vnc/options.h, x11vnc/sslhelper.c,
	x11vnc/sslhelper.h, x11vnc/ssltools.h, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc:
	-users sslpeer= option. RFB_SSL_CLIENT_CERT, -ncache 10 default

2007-04-19  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/README, x11vnc/x11vnc.1,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c: x11vnc: set to next release
	(0.9.1)

2007-04-19  runge <runge>

	*
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: Add latest vncviewer patch.

2007-04-19  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/stunnel-server.conf,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle: Sync with
	SSVNC 1.0.15

2007-04-18  runge <runge>

	* x11vnc/README, x11vnc/userinput.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c: x11vnc: small changes for 0.9
	release.

2007-04-08  runge <runge>

	* prepare_x11vnc_dist.sh: change x11vnc version to 0.9

2007-04-07  dscho <dscho>

	* configure.ac: prepare for release of LibVNCServer 0.9

2007-04-07  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/ssltools.h, x11vnc/user.c, x11vnc/userinput.c,
	x11vnc/x11vnc.1: x11vnc: add gnome, kde, etc. FINDCREATEDISPLAY
	tags.

2007-04-07  runge <runge>

	* classes/ssl/ss_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch: update
	viewer jars and ss script

2007-04-07  runge <runge>

	* x11vnc/README, x11vnc/connections.c, x11vnc/help.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/v4l.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: java
	ingoreProxy, fix old libssl free_func problem

2007-04-06  dscho <dscho>

	* AUTHORS, ChangeLog, rfb/rfbclient.h: rfbclient.h: use 'extern "C"'
	to make it convenient to include from C++

2007-04-06  dscho <dscho>

	* AUTHORS, ChangeLog, rfb/rfb.h: rfb.h: Do not misplace guards This buglet made it impossible to double include rfb.h from C++.

2007-03-30  dscho <dscho>

	* prepare_x11vnc_dist.sh: build x11vnc with static libraries (at
	least for now) Maybe at a later stage, we want x11vnc to pick up on existing
	libvncserver.so and libvncclient.so, but right now, x11vnc and the
	libraries progress together (and thus it is better to build static,
	necessarily up-to-date libraries for x11vnc).

2007-03-30  dscho <dscho>

	* AUTHORS, ChangeLog, acinclude.m4, client_examples/Makefile.am,
	configure.ac, contrib/Makefile.am, examples/Makefile.am,
	libvncclient/Makefile.am, libvncserver/Makefile.am, ltmain.sh,
	test/Makefile.am, vncterm/Makefile.am, x11vnc/Makefile.am: Build
	shared libraries per default Thanks to Guillaume Rousse, we now use libtool to build shared
	libraries.

2007-03-25  runge <runge>

	* x11vnc/README, x11vnc/pm.c, x11vnc/scan.c, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/xevents.c: x11vnc: remove build errors,
	get -ncache working on macosx again.

2007-03-24  runge <runge>

	* libvncserver/cursor.c: Fix short vs. char problem with X cursors.
	Have fg == bg == 0 imply interpolation to B&W.

2007-03-24  runge <runge>

	* classes/ssl/ss_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch: reverse
	connections for ss_vncviewer.  java one-time-keys.

2007-03-24  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/screen.c, x11vnc/sslhelper.c,
	x11vnc/sslhelper.h, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/user.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: reverse SSL connections. -sleepin
	option.

2007-03-24  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: reverse (listening) VNC connections.

2007-03-20  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: ssvnc: sync to 1.0.13 release.

2007-03-20  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cursor.c, x11vnc/help.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/remote.c,
	x11vnc/sslhelper.c, x11vnc/user.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: -httpsredir,
	x11cursor fix, nc=N login opt, no -ncache betatest for java viewer.

2007-03-20  runge <runge>

	* ChangeLog, libvncserver/httpd.c: Add "Connection: close" to HTTP
	replies.

2007-03-17  dscho <dscho>

	* AUTHORS, ChangeLog, libvncserver/main.c, libvncserver/rfbserver.c: 
	Fix a locking problem in libvncserver There seems to be a locking problem in libvncserver, with respect to
	how condition variables are used.  On certain machines in our lab, when using a vncviewer to view a
	display that has a very high rate of updates, we will occasionally
	see the VNC server process crash.  In one stack trace that was
	obtained, an assertion had tripped in glibc's pthread_cond_wait,
	which was called from clientOutput.  Inspection of clientOutput suggests that WAIT is being called
	incorrectly.  The mutex that protects a condition variable should
	always be locked when calling wait, and on return from the wait will
	still be locked.  The attached patch fixes the locking around this
	condition variable, and one other that I found by grepping the
	source for similar occurrences.  Signed-off-by: Charles Coffing <ccoffing@novell.com>

2007-03-13  runge <runge>

	*
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: ssvnc: sync src/patches/tight-vncviewer-full.patch

2007-03-13  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/scan.c,
	x11vnc/screen.c, x11vnc/solid.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: fix crash for kde dcop. limit ncache
	beta tester to 96MB viewers.

2007-02-19  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_getpatches,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: ssvnc: more fixes for painting problems.

2007-02-19  runge <runge>

	* x11vnc/README, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: fix -users bob= in -inetd mode.

2007-02-19  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: store 1.0.12 snapshot.

2007-02-19  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c, x11vnc/xevents.c: x11vnc: Get
	ultravnc textchat working with ssvnc.

2007-02-17  runge <runge>

	* x11vnc/README, x11vnc/help.c, x11vnc/sslhelper.c, x11vnc/x11vnc.1: 
	x11vnc: make https fetch in accept_openssl() work again.

2007-02-16  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/allowed_input_t.h,
	x11vnc/connections.c, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/keyboard.h, x11vnc/remote.c, x11vnc/screen.c,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c, x11vnc/xevents.c: x11vnc: add
	Files mode to user controlled input. more ultra/tight filexfer
	tweaks.  rfbversion remote control. noncache/nc unixpw user opt.

2007-02-16  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/avahi.c,
	x11vnc/connections.c, x11vnc/help.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/remote.c, x11vnc/screen.c,
	x11vnc/ssltools.h, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/unixpw.c, x11vnc/user.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xevents.c: x11vnc:
	tightvnc filetransfer off by default. FINDCREATEDISPLAY geometry.

2007-02-12  runge <runge>

	* configure.ac, x11vnc/ChangeLog, x11vnc/Makefile.am,
	x11vnc/README, x11vnc/avahi.c, x11vnc/avahi.h, x11vnc/cleanup.c,
	x11vnc/help.c, x11vnc/options.c, x11vnc/options.h, x11vnc/remote.c,
	x11vnc/screen.c, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/user.c,
	x11vnc/win_utils.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: add avahi (aka
	mDNS/Zeroconf/Bonjour...) support thanks to Diego Petteno. add -find
	-create

2007-02-12  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/options.c, x11vnc/options.h, x11vnc/pm.c,
	x11vnc/remote.c, x11vnc/sslhelper.c, x11vnc/ssltools.h,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xevents.h,
	x11vnc/xwrappers.c: x11vnc: -grabalways, -forcedpms, -clientdpms,
	-noserverdpms, -loopbg, -svc, -xdmsvc

2007-02-10  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/pm.c, x11vnc/pm.h, x11vnc/pointer.c, x11vnc/pointer.h,
	x11vnc/scan.c, x11vnc/screen.c, x11vnc/ssltools.h, x11vnc/unixpw.c,
	x11vnc/unixpw.h, x11vnc/user.c, x11vnc/user.h, x11vnc/userinput.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c, x11vnc/xevents.h: x11vnc: watch textchat, etc in
	unixpw, implement kbdReleaseAllKeys, setSingleWindow,
	setServerInput. watch for OpenGL apps breaking XDAMAGE.

2007-02-05  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	ll.patch: ssvnc 1.0.11 files.

2007-02-05  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/README, x11vnc/x11vnc.1,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c: Setup for x11vnc 0.8.5

2007-02-01  dscho <dscho>

	* ChangeLog, libvncclient/rfbproto.c, libvncclient/vncviewer.c,
	rfb/rfbclient.h: LibVNCClient: some users do not want to get
	whole-screen updates; introduce client->updateRect for that

2007-02-01  dscho <dscho>

	* libvncclient/zrle.c: sometimes zrle sends too many bytes; play
	safe

2007-01-31  runge <runge>

	* x11vnc/README, x11vnc/keyboard.c, x11vnc/pointer.c,
	x11vnc/screen.c, x11vnc/solid.c, x11vnc/userinput.c,
	x11vnc/xdamage.c, x11vnc/xevents.c: fix warnings.

2007-01-31  runge <runge>

	* ChangeLog: libvncclient changes.

2007-01-31  runge <runge>

	* x11vnc/ChangeLog, x11vnc/Makefile.am, x11vnc/README,
	x11vnc/cleanup.c, x11vnc/connections.c, x11vnc/cursor.c,
	x11vnc/help.c, x11vnc/keyboard.c, x11vnc/macosx.c,
	x11vnc/macosxCG.c, x11vnc/macosxCGS.c,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-ne
	wfbsize.patch, x11vnc/options.c, x11vnc/options.h, x11vnc/params.h,
	x11vnc/pointer.c, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/screen.h, x11vnc/solid.c, x11vnc/solid.h, x11vnc/ssltools.h,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/unixpw.c,
	x11vnc/unixpw.h, x11vnc/user.c, x11vnc/userinput.c, x11vnc/util.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xdamage.c, x11vnc/xdamage.h,
	x11vnc/xevents.c: x11vnc: -reflect, -N. -ncache, FINDDISPLAY,
	FINDCREATEDISPLAY, improvements.  MODTWEAK_LOWEST workaround.

2007-01-31  runge <runge>

	* Makefile.am, libvncclient/cursor.c, libvncclient/rfbproto.c,
	libvncclient/vncviewer.c, prepare_x11vnc_dist.sh, rfb/rfbclient.h: 
	libvncclient: add GotCursorShape() and GotCopyRect(); x11vnc dep on
	libvncclient

2007-01-25  dscho <dscho>

	* libvncserver/rfbserver.c: compile fix for MinGW

2007-01-25  dscho <dscho>

	* VisualNaCro/Makefile.am: complain when SWIG is not present, but
	needed

2007-01-25  dscho <dscho>

	* VisualNaCro/configure.ac: Complain if libvncserver-config was not
	found in PATH

2007-01-10  runge <runge>

	* x11vnc/README, x11vnc/help.c, x11vnc/options.c, x11vnc/options.h,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/userinput.c, x11vnc/userinput.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xdamage.c, x11vnc/xevents.c,
	x11vnc/xinerama.c, x11vnc/xrandr.h: some -ncache performance
	improvements, rootpixmap watching, gnome wm heuristics

2007-01-09  runge <runge>

	* x11vnc/README, x11vnc/userinput.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc_defs.c: Fix old compiler error; fix warnings.

2007-01-09  runge <runge>

	* x11vnc/README, x11vnc/help.c, x11vnc/options.c, x11vnc/options.h,
	x11vnc/remote.c, x11vnc/screen.c, x11vnc/solid.c, x11vnc/solid.h,
	x11vnc/userinput.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c, x11vnc/xdamage.c: more speed and accuracy
	improvements to -ncache mode.

2007-01-07  runge <runge>

	* x11vnc/README, x11vnc/options.c, x11vnc/userinput.c,
	x11vnc/winattr_t.h, x11vnc/x11vnc.1, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xdamage.c: changes to ncache cache
	aging and xdamage skipping

2007-01-04  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/userinput.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xdamage.c: x11vnc: more -ncache improvements.

2007-01-02  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/remote.c, x11vnc/scan.c,
	x11vnc/ssltools.h, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/user.c, x11vnc/userinput.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c, x11vnc/xevents.h: x11vnc: more -ncache
	improvements.

2006-12-29  runge <runge>

	* x11vnc/8to24.c, x11vnc/README, x11vnc/cursor.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/pointer.c, x11vnc/screen.c,
	x11vnc/selection.c, x11vnc/userinput.c, x11vnc/util.c,
	x11vnc/win_utils.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xwrappers.c: x11vnc
	-ncache on by default for beta test.  fix -nofb & -rawfb modes.

2006-12-28  runge <runge>

	* x11vnc/README, x11vnc/userinput.c, x11vnc/win_utils.c: a couple
	more warnings...

2006-12-28  runge <runge>

	* x11vnc/8to24.c, x11vnc/README, x11vnc/connections.c,
	x11vnc/cursor.c, x11vnc/gui.c, x11vnc/keyboard.c, x11vnc/macosx.c,
	x11vnc/macosx.h, x11vnc/macosxCG.c, x11vnc/macosxCGS.c,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/nox11_funcs.h, x11vnc/pointer.c, x11vnc/remote.c,
	x11vnc/scan.c, x11vnc/screen.c, x11vnc/selection.c, x11vnc/solid.c,
	x11vnc/userinput.c, x11vnc/util.c, x11vnc/win_utils.c,
	x11vnc/xevents.c, x11vnc/xrandr.c, x11vnc/xrecord.c,
	x11vnc/xwrappers.c: still more compiler warnings; ssvnc 1.0.9 sync.

2006-12-28  runge <runge>

	* x11vnc/8to24.c, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/cursor.c, x11vnc/macosx.c,
	x11vnc/macosx.h, x11vnc/macosxCG.c, x11vnc/macosxCG.h,
	x11vnc/macosxCGP.c, x11vnc/macosxCGS.c, x11vnc/macosxCGS.h,
	x11vnc/scan.c, x11vnc/screen.c, x11vnc/sslhelper.c,
	x11vnc/uinput.c, x11vnc/userinput.c, x11vnc/v4l.c,
	x11vnc/win_utils.c, x11vnc/xevents.c, x11vnc/xwrappers.c: more
	compiler warnings cleanup.

2006-12-28  runge <runge>

	* x11vnc/8to24.c, x11vnc/README, x11vnc/connections.c,
	x11vnc/cursor.c, x11vnc/gui.c, x11vnc/keyboard.c, x11vnc/macosx.c,
	x11vnc/macosxCG.c, x11vnc/pointer.c, x11vnc/scan.c,
	x11vnc/screen.c, x11vnc/solid.c, x11vnc/user.c, x11vnc/userinput.c,
	x11vnc/userinput.h, x11vnc/win_utils.c, x11vnc/xwrappers.c,
	x11vnc/xwrappers.h: x11vnc: clean up compiler warnings.

2006-12-28  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/cursor.c, x11vnc/cursor.h,
	x11vnc/help.c, x11vnc/keyboard.c, x11vnc/macosx.c, x11vnc/macosx.h,
	x11vnc/macosxCGS.c, x11vnc/macosxCGS.h, x11vnc/options.c,
	x11vnc/options.h, x11vnc/pointer.c, x11vnc/remote.c, x11vnc/scan.c,
	x11vnc/scan.h, x11vnc/screen.c, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/userinput.c, x11vnc/userinput.h, x11vnc/winattr_t.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c, x11vnc/xrecord.c, x11vnc/xwrappers.c,
	x11vnc/xwrappers.h: x11vnc: more work on -ncache.

2006-12-17  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/unixpw.c, x11vnc/unixpw.h, x11vnc/userinput.c,
	x11vnc/userinput.h, x11vnc/winattr_t.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c, x11vnc/xinerama.c: x11vnc: first pass at
	client-side caching, -ncache option.

2006-12-17  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c, x11vnc/xinerama.c: x11vnc: make -xwarppointer
	the default if xinerama is active.

2006-12-16  runge <runge>

	* rfb/rfbproto.h: Move our rfbEncodings numbers out of the TightVNC
	range.

2006-12-15  runge <runge>

	* libvncserver/auth.c: fix typo.

2006-12-13  runge <runge>

	* ChangeLog: Remove stray "-permitfiletransfer  permit file transfer
	support" output

2006-12-13  runge <runge>

	* libvncserver/cargs.c: Remove stray ""-permitfiletransfer    permit
	file transfer support" output.

2006-12-11  runge <runge>

	* x11vnc/README, x11vnc/macosxCG.c, x11vnc/macosxCGS.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: cleanup some
	comments.

2006-12-10  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd: sync etv 1.0.8

2006-12-10  runge <runge>

	* classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/cleanup.h, x11vnc/connections.c, x11vnc/gui.c,
	x11vnc/help.c, x11vnc/misc/Makefile.am, x11vnc/pointer.c,
	x11vnc/screen.c, x11vnc/screen.h, x11vnc/solid.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/user.c, x11vnc/v4l.c,
	x11vnc/win_utils.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c: x11vnc: FINDCREATEDISPLAY support to create X
	session if one cannot be found.  Fix bug in java viewer.

2006-11-24  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/help.c, x11vnc/remote.c, x11vnc/user.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: install ss_vncviewer 755,
	-prog option, HTTPONCE new socket for -inetd.

2006-11-23  runge <runge>

	* classes/ssl/Makefile.am, classes/ssl/README: rename to
	ss_vncviewer

2006-11-23  runge <runge>

	* classes/ssl/ss_vncviewer, classes/ssl/ssl_vncviewer: rename
	ssl_vncviewer to ss_vncviewer

2006-11-23  runge <runge>

	* classes/ssl/ss_vncviewer: rename ssl_vncviewer to ss_vncviewer

2006-11-22  runge <runge>

	* configure.ac: use AC_CHECK_LIB for fbpm and dpms

2006-11-21  runge <runge>

	* configure.ac: enable --without-fbpm and --without-dpms

2006-11-21  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/cleanup.c, x11vnc/connections.c, x11vnc/cursor.c,
	x11vnc/help.c, x11vnc/keyboard.c, x11vnc/macosx.c, x11vnc/macosx.h,
	x11vnc/macosxCG.c, x11vnc/macosxCGS.c, x11vnc/macosxCGS.h,
	x11vnc/options.c, x11vnc/options.h, x11vnc/pm.c, x11vnc/pointer.c,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c, x11vnc/unixpw.c,
	x11vnc/userinput.c, x11vnc/win_utils.c, x11vnc/win_utils.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xdamage.c, x11vnc/xevents.c,
	x11vnc/xwrappers.c: x11vnc: Mac OS X fb fixes and cuttext, -nodpms
	option, local user wireframing

2006-11-21  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/filelist.txt,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/zips/README: update to
	1.0.8 and renaming

2006-11-21  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/bin/ssl_tightvncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssl_vnc_gui,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/tightvncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_tightvncviewer.tc
	l, x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_vncviewer: 
	delete

2006-11-21  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl: rename

2006-11-13  runge <runge>

	* ChangeLog, configure.ac, prepare_x11vnc_dist.sh, x11vnc/8to24.c,
	x11vnc/ChangeLog, x11vnc/Makefile.am, x11vnc/README,
	x11vnc/cleanup.c, x11vnc/connections.c, x11vnc/cursor.c,
	x11vnc/cursor.h, x11vnc/gui.c, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/linuxfb.c, x11vnc/macosx.c, x11vnc/macosx.h,
	x11vnc/macosxCG.c, x11vnc/macosxCG.h, x11vnc/macosxCGP.c,
	x11vnc/macosxCGP.h, x11vnc/macosxCGS.c, x11vnc/macosxCGS.h,
	x11vnc/options.c, x11vnc/options.h, x11vnc/params.h,
	x11vnc/pointer.c, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/selection.c, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/userinput.c, x11vnc/win_utils.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
	x11vnc/xdamage.c, x11vnc/xdamage.h, x11vnc/xevents.c,
	x11vnc/xinerama.c, x11vnc/xrandr.c, x11vnc/xrecord.c,
	x11vnc/xwrappers.c, x11vnc/xwrappers.h: x11vnc: Native Mac OS X
	support.

2006-11-08  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/Darwin.Power.Macintosh/.cp
	over,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/Darwin.Power.Macintosh/vnc
	viewer.sh,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/Darwin.i386/.cpover,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssl_tightvncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssl_vnc_gui,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/tightvncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_tightvncviewer.tc
	l, x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle: Add Darwin
	stuff.  Sync to current 1.0.7

2006-11-08  runge <runge>

	* ChangeLog, classes/ssl/ssl_vncviewer, configure.ac,
	prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: configure.ac -R and macosx,
	prepare_x11vnc_dist.sh rpm fix

2006-10-30  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: Add tip about how to
	reenable RECORD extension.

2006-10-12  dscho <dscho>

	* VisualNaCro/nacro.c, VisualNaCro/nacro.h: VisualNaCro: add
	sendascii

2006-10-12  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cursor.c, x11vnc/help.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/remote.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c: x11vnc: -cursor_drag for DnD, etc.

2006-10-11  runge <runge>

	* libvncserver/tightvnc-filetransfer/rfbtightserver.c: N_ENC_CAPS
	check does not work if libz is not present.

2006-10-10  dscho <dscho>

	* VisualNaCro/ChangeLog, VisualNaCro/recorder.pl: VisualNaCro: add
	'i', 'c' and 'r' menu keys

2006-10-10  dscho <dscho>

	* VisualNaCro/ChangeLog, VisualNaCro/recorder.pl: VisualNaCro: add
	--compact and --compact-dragging

2006-10-07  runge <runge>

	* classes/ssl/ssl_vncviewer, x11vnc/README,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/stunnel/loca
	tion.url,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_tightvncviewer.tc
	l, x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/zips/README,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: Changes for ETV, double
	SSL/SSH.

2006-09-24  runge <runge>

	* classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/keyboard.c, x11vnc/pointer.c,
	x11vnc/sslhelper.c, x11vnc/unixpw.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: improve SSL Java
	viewer, cleanup -unixpw code.

2006-09-21  runge <runge>

	*
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_tightvncviewer.tc
	l, x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_vncviewer: sync
	etv. profile cleanup

2006-09-21  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/connections.h, x11vnc/help.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/sslhelper.c, x11vnc/unixpw.c,
	x11vnc/unixpw.h, x11vnc/user.c, x11vnc/user.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c: x11vnc:
	-unixpw_cmd, -passwfile cmd:/custom:, -sslnofail, -ultrafilexfer

2006-09-18  runge <runge>

	* x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_tightvncviewer.tc
	l: ETV release 1.0.4

2006-09-18  runge <runge>

	*
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_tightvncviewer.tc
	l, x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle: sync
	ETV 1.0.4

2006-09-18  runge <runge>

	* libvncserver/rfbserver.c, x11vnc/README, x11vnc/x11vnc.c: x11vnc:
	improve ultravnc filexfer rate by calling rfbCheckFD more often

2006-09-17  runge <runge>

	*
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_tightvncviewer.tc
	l: Sync ETV.

2006-09-17  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/cursor.c, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/pm.c, x11vnc/scan.c,
	x11vnc/screen.c, x11vnc/sslcmds.c, x11vnc/sslhelper.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xinerama.c, x11vnc/xwrappers.c: x11vnc: -verbose,
	-connect_or_exit, -rfbport 0, print out SSL cert.

2006-09-15  runge <runge>

	* x11vnc/README, x11vnc/help.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c: 
	small tweaks, -sig alias.

2006-09-15  runge <runge>

	* libvncserver/rfbserver.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/cleanup.c, x11vnc/help.c, x11vnc/screen.c, x11vnc/unixpw.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: x11vnc: clear DISPLAY for
	-unixpw su_verify, user supplied sig ignore.

2006-09-14  runge <runge>

	* classes/ssl/ssl_vncviewer, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/help.c, x11vnc/misc/enhanced_tightvnc_viewer/COPYING,
	x11vnc/misc/enhanced_tightvnc_viewer/README,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/esound/downl
	oad.url,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/openssl/down
	load.url,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/openssl/loca
	tion.url,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/plink/downlo
	ad.url,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/plink/licenc
	e.url,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/stunnel/down
	load.url,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/stunnel/loca
	tion.url,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/vncviewer/do
	wnload.url,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/info/vncviewer/lo
	cation.url,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/stunnel-client.co
	nf,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/stunnel-server.co
	nf,
	x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/w98/location.url,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssl_tightvncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/ssl_vnc_gui,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/tightvncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_tightvncviewer.tc
	l, x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssl_vncviewer,
	x11vnc/misc/enhanced_tightvnc_viewer/bin/util/stunnel-server.conf,
	x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
	x11vnc/misc/enhanced_tightvnc_viewer/filelist.txt,
	x11vnc/misc/enhanced_tightvnc_viewer/src/README,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/README,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_getpatches,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_vncpatchapplied,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/stunnel-maxconn.pa
	tch,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
	llscreen.patch,
	x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-ne
	wfbsize.patch,
	x11vnc/misc/enhanced_tightvnc_viewer/src/zips/README,
	x11vnc/remote.c, x11vnc/util.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c: x11vnc:
	enhanced_tightvnc_viewer files, ssh -t keystroke response
	improvement.

2006-09-12  dscho <dscho>

	* VisualNaCro/Makefile.am, libvncserver-config.in: fix in-place
	compilation of VisualNaCro

2006-09-12  dscho <dscho>

	* VisualNaCro/recorder.pl: fix call to alert()

2006-09-12  dscho <dscho>

	* VisualNaCro/NEWS, VisualNaCro/nacro.c, VisualNaCro/nacro.h,
	VisualNaCro/recorder.pl: VisualNaCro: add magic key 'd' to display
	the current reference image

2006-09-12  dscho <dscho>

	* VisualNaCro/nacro.h: forgot to check in nacro.h

2006-09-12  dscho <dscho>

	* VisualNaCro/nacro.c, VisualNaCro/recorder.pl: implement rubberband
	for rectangular selection

2006-09-12  dscho <dscho>

	* VisualNaCro/Makefile.am, VisualNaCro/configure.ac: fix compilation
	with cygwin

2006-09-12  dscho <dscho>

	* rfb/rfbproto.h, vncterm/LinuxVNC.c, vncterm/VNConsole.c: do not
	always include rfb/keysym.h

2006-09-12  dscho <dscho>

	* AUTHORS, VisualNaCro/NEWS, VisualNaCro/nacro.c,
	VisualNaCro/nacro.h, VisualNaCro/recorder.pl: VisualNaCro: support
	clipboard and symbolic key names with X11::Keysyms

2006-09-12  dscho <dscho>

	* VisualNaCro/nacro.c, VisualNaCro/nacro.h: support clipboard

2006-09-11  dscho <dscho>

	* libvncclient/rfbproto.c, rfb/rfbclient.h: make cut text handling
	using a hook

2006-09-10  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cursor.c, x11vnc/help.c,
	x11vnc/ssltools.h, x11vnc/uinput.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: REQ_ARGS,
	EV_SYN/SYN_REPORT check. restore -cursor most under -display WAIT

2006-09-05  runge <runge>

	* classes/ssl/proxy.vnc, classes/ssl/ssl_vncviewer: Update
	ssl_vncviewer.  Fix bug in proxy.vnc with multiple PORT= params.

2006-08-10  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/linuxfb.c,
	x11vnc/uinput.c, x11vnc/uinput.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c: x11vnc: first pass at
	touchscreens via uinput.

2006-08-02  runge <runge>

	* x11vnc/ChangeLog: add to changelog

2006-08-02  runge <runge>

	* classes/ssl/ssl_vncviewer, x11vnc/README, x11vnc/help.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/remote.c,
	x11vnc/sslhelper.c, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc:
	tweaks to ssl_xfer; -ssltimeout option.

2006-07-31  runge <runge>

	* classes/ssl/ssl_vncviewer, x11vnc/README, x11vnc/pointer.c,
	x11vnc/scan.c, x11vnc/scan.h, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: 
	x11vnc: more features to ssl_vncviewer for enhanced tightvnc viewer
	project

2006-07-29  runge <runge>

	* classes/ssl/ssl_vncviewer: one more tweak, start from disp 30

2006-07-29  runge <runge>

	* classes/ssl/ssl_vncviewer: add debug = 6 to stunnel config.

2006-07-28  runge <runge>

	* classes/ssl/ssl_vncviewer, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/cursor.c, x11vnc/help.c, x11vnc/params.h, x11vnc/pointer.c,
	x11vnc/rates.c, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/screen.h, x11vnc/solid.c, x11vnc/sslcmds.c,
	x11vnc/sslhelper.c, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/unixpw.c, x11vnc/user.c, x11vnc/userinput.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c: x11vnc: -rotate option

2006-07-18  runge <runge>

	* ChangeLog, configure.ac, x11vnc/8to24.c, x11vnc/ChangeLog,
	x11vnc/Makefile.am, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/cursor.c, x11vnc/gui.c,
	x11vnc/keyboard.c, x11vnc/linuxfb.c, x11vnc/nox11.h,
	x11vnc/nox11_funcs.h, x11vnc/pointer.c, x11vnc/remote.c,
	x11vnc/screen.c, x11vnc/selection.c, x11vnc/solid.c,
	x11vnc/sslhelper.c, x11vnc/uinput.c, x11vnc/userinput.c,
	x11vnc/util.c, x11vnc/v4l.c, x11vnc/win_utils.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c, x11vnc/xwrappers.c: x11vnc: enable --without-x
	builds for -rawfb only binaries.

2006-07-15  runge <runge>

	* configure.ac, prepare_x11vnc_dist.sh, x11vnc/README,
	x11vnc/help.c, x11vnc/user.c, x11vnc/x11vnc.1, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c: update versions for next rel.  add some more
	shortcuts to user:opts

2006-07-12  runge <runge>

	* ChangeLog, configure.ac: LibVNCServer 0.8.2 release.

2006-07-12  runge <runge>

	* x11vnc/README, x11vnc/x11vnc.1, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c: set REL8x

2006-07-12  runge <runge>

	* x11vnc/README, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/linuxfb.c, x11vnc/params.h, x11vnc/pointer.c,
	x11vnc/screen.c, x11vnc/user.c, x11vnc/x11vnc.1: x11vnc: wording
	changes; remove "-rawfb cons" in favor of "console"

2006-07-11  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/keyboard.c, x11vnc/remote.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/uinput.c, x11vnc/uinput.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: more
	UINPUT mode tweaks.

2006-07-10  runge <runge>

	* x11vnc/README, x11vnc/help.c, x11vnc/remote.c, x11vnc/sslcmds.c,
	x11vnc/sslhelper.c, x11vnc/uinput.c, x11vnc/unixpw.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c: x11vnc: improve uinput heuristics so button
	clicks work on qt-embedded.

2006-07-09  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/Makefile.am,
	x11vnc/README, x11vnc/help.c, x11vnc/keyboard.c, x11vnc/linuxfb.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/params.h,
	x11vnc/pointer.c, x11vnc/remote.c, x11vnc/screen.c,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/uinput.c,
	x11vnc/uinput.h, x11vnc/util.c, x11vnc/v4l.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: add uinput support
	for full input into linux fb device (e.g. qt-embed).

2006-07-05  runge <runge>

	* x11vnc/README, x11vnc/keyboard.c: x11vnc: whoops str decl in wrong
	place for old compilers.

2006-07-04  runge <runge>

	* x11vnc/README, x11vnc/keyboard.c, x11vnc/pointer.c,
	x11vnc/xwrappers.c: x11vnc: check all XKeysymToString() return
	values.

2006-07-04  runge <runge>

	* x11vnc/README, x11vnc/keyboard.c, x11vnc/unixpw.c,
	x11vnc/unixpw.h: x11vnc: plug a couple unixpw gaps.

2006-07-04  runge <runge>

	* configure.ac, x11vnc/README, x11vnc/inet.c, x11vnc/keyboard.c,
	x11vnc/sslhelper.c, x11vnc/unixpw.c, x11vnc/user.c, x11vnc/util.c,
	x11vnc/v4l.c, x11vnc/x11vnc.c, x11vnc/x11vnc.h: x11vnc: remove
	compiler warnings; HP-UX tweaks.

2006-07-04  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/connections.c, x11vnc/connections.h, x11vnc/cursor.c,
	x11vnc/cursor.h, x11vnc/help.c, x11vnc/help.h, x11vnc/inet.c,
	x11vnc/pointer.c, x11vnc/remote.c, x11vnc/scan.c,
	x11vnc/sslhelper.c, x11vnc/sslhelper.h, x11vnc/unixpw.c,
	x11vnc/unixpw.h, x11vnc/user.c, x11vnc/userinput.c, x11vnc/util.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c: x11vnc: more -unixpw work.  add -license, etc.
	options

2006-06-24  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/connections.h, x11vnc/gui.c,
	x11vnc/scan.c, x11vnc/solid.c, x11vnc/sslcmds.c, x11vnc/unixpw.c,
	x11vnc/user.c, x11vnc/util.c, x11vnc/v4l.c, x11vnc/win_utils.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xwrappers.c: x11vnc: misc cleanup.

2006-06-18  runge <runge>

	* x11vnc/8to24.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/cleanup.c, x11vnc/connections.c, x11vnc/connections.h,
	x11vnc/cursor.c, x11vnc/gui.c, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/pm.c, x11vnc/pointer.c,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c, x11vnc/solid.c,
	x11vnc/sslcmds.c, x11vnc/sslhelper.c, x11vnc/sslhelper.h,
	x11vnc/ssltools.h, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/unixpw.c, x11vnc/unixpw.h, x11vnc/user.c,
	x11vnc/userinput.c, x11vnc/util.c, x11vnc/v4l.c,
	x11vnc/win_utils.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xdamage.c,
	x11vnc/xevents.c, x11vnc/xevents.h, x11vnc/xrandr.h,
	x11vnc/xwrappers.c: x11vnc: --grabkbd, -grabptr, -env, -allowedcmds,
	unixpw+WAIT user fred:options

2006-06-15  dscho <dscho>

	* VisualNaCro/README: fix typo

2006-06-15  dscho <dscho>

	* VisualNaCro/ChangeLog, VisualNaCro/NEWS, VisualNaCro/recorder.pl: 
	no need for Time::HiRes to play back

2006-06-15  dscho <dscho>

	* VisualNaCro/recorder.pl: add timing

2006-06-13  runge <runge>

	* classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/remote.c, x11vnc/screen.c,
	x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/unixpw.c,
	x11vnc/unixpw.h, x11vnc/user.c, x11vnc/util.c, x11vnc/util.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c: x11vnc: -display WAIT:cmd=FINDDISPLAY,
	HTTPONCE, -http_ssl option, Java fixes.

2006-06-09  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/unixpw.c, x11vnc/user.c: 
	x11vnc: make -display WAIT + -unixpw work on Solaris.

2006-06-08  runge <runge>

	* ChangeLog, prepare_x11vnc_dist.sh, x11vnc/ChangeLog,
	x11vnc/README, x11vnc/cleanup.c, x11vnc/connections.c,
	x11vnc/gui.c, x11vnc/help.c, x11vnc/options.c, x11vnc/pointer.c,
	x11vnc/remote.c, x11vnc/screen.c, x11vnc/solid.c, x11vnc/sslcmds.c,
	x11vnc/sslhelper.c, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/unixpw.c, x11vnc/unixpw.h, x11vnc/user.c, x11vnc/user.h,
	x11vnc/v4l.c, x11vnc/win_utils.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xevents.c,
	x11vnc/xkb_bell.c, x11vnc/xrecord.c, x11vnc/xwrappers.c,
	x11vnc/xwrappers.h:   x11vnc: -display WAIT:..., -users unixpw=, su_verify dpy command.

2006-06-05  steven_carr <steven_carr>

	* libvncclient/rfbproto.c, libvncserver/auth.c,
	libvncserver/rfbserver.c: RFB 3.8 clients are well informed

2006-06-05  steven_carr <steven_carr>

	* libvncserver/auth.c: Better support for RFB >= 3.8 protocols

2006-06-05  steven_carr <steven_carr>

	* libvncserver/auth.c: All security types for RFB >= 3.7 *have* to
	respond with a Security Result (Even rfbSecTypeNone)

2006-06-03  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/linuxfb.c, x11vnc/options.c, x11vnc/options.h,
	x11vnc/rates.c, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/screen.h, x11vnc/sslcmds.c, x11vnc/sslhelper.c,
	x11vnc/sslhelper.h, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/unixpw.c, x11vnc/userinput.c, x11vnc/win_utils.c,
	x11vnc/win_utils.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xevents.c,
	x11vnc/xevents.h, x11vnc/xwrappers.c:  x11vnc: -capslock -skip_lockkeys; Alt keys under -rawfb cons.

2006-06-03  runge <runge>

	* libvncserver/auth.c: move all types into handler loop.

2006-05-29  steven_carr <steven_carr>

	* ChangeLog: Identified and removed some memory leaks associated
	with the Encodings RRE, CoRRE, ZLIB, and Ultra.  KeyboardLedState
	now has portable masks defined.  rfb >= 3.7 Security Type Handler
	list would grow 1 entry for each new client connection.

2006-05-29  steven_carr <steven_carr>

	* libvncserver/auth.c: Security Type memory leak plugged.  Leaks
	when rfb >= 3.7 clients connects.  The security list would grow 1
	entry when clients connect.

2006-05-28  steven_carr <steven_carr>

	* rfb/rfbproto.h: KeyboardLedState Encoding Masks are now defined
	for portability

2006-05-28  steven_carr <steven_carr>

	* libvncserver/corre.c, libvncserver/main.c,
	libvncserver/private.h, libvncserver/rfbserver.c,
	libvncserver/rre.c, libvncserver/ultra.c, libvncserver/zlib.c: 
	Plugged some memory leakage

2006-05-16  steven_carr <steven_carr>

	* libvncserver/rfbserver.c, rfb/rfb.h: Permit auth.c to test major
	version

2006-05-16  steven_carr <steven_carr>

	* libvncserver/auth.c: Specifically test for Major Version 3 added

2006-05-16  steven_carr <steven_carr>

	* ChangeLog, libvncserver/stats.c: Statistics now fit into 80-column
	output

2006-05-16  steven_carr <steven_carr>

	* libvncserver/stats.c: Statistics output now fits in 80-column
	output

2006-05-16  steven_carr <steven_carr>

	* libvncserver/cursor.c: Corrected Cursor Statistics reporting as
	messages

2006-05-15  dscho <dscho>

	* libvncserver/tightvnc-filetransfer/Makefile.am: remove unneeded
	file

2006-05-15  steven_carr <steven_carr>

	* libvncserver/rfbserver.c, rfb/rfb.h: Support sending TextChat
	messages back to the client

2006-05-15  steven_carr <steven_carr>

	* ChangeLog, libvncserver/cargs.c, libvncserver/main.c,
	libvncserver/rfbserver.c, rfb/rfb.h, rfb/rfbproto.h: Default to RFB
	3.8, add command line option to specify the RFB version.

2006-05-15  steven_carr <steven_carr>

	* ChangeLog, client_examples/SDLvncviewer.c,
	libvncclient/rfbproto.c, libvncclient/ultra.c, libvncclient/zrle.c,
	libvncserver/auth.c, libvncserver/corre.c, libvncserver/cursor.c,
	libvncserver/hextile.c, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/rre.c, libvncserver/scale.c,
	libvncserver/sockets.c, libvncserver/stats.c, libvncserver/tight.c,
	libvncserver/tightvnc-filetransfer/rfbtightproto.h,
	libvncserver/ultra.c, libvncserver/zlib.c, libvncserver/zrle.c,
	rfb/rfb.h, rfb/rfbclient.h, rfb/rfbproto.h, x11vnc/rates.c,
	x11vnc/userinput.c: The great UltraVNC Compatibility Commit

2006-05-13  runge <runge>

	* ChangeLog, libvncclient/Makefile.am, libvncclient/lzoconf.h,
	libvncclient/minilzo.c, libvncclient/minilzo.h,
	libvncserver/lzoconf.h, libvncserver/minilzo.c,
	libvncserver/minilzo.h, libvncserver/rfbserver.c,
	libvncserver/scale.c, vncterm/Makefile.am:  fix some build issues WRT ultravnc code.

2006-05-07  runge <runge>

	* ChangeLog, configure.ac, x11vnc/8to24.c, x11vnc/ChangeLog,
	x11vnc/Makefile.am, x11vnc/README, x11vnc/connections.c,
	x11vnc/cursor.c, x11vnc/gui.c, x11vnc/help.c, x11vnc/keyboard.c,
	x11vnc/linuxfb.c, x11vnc/linuxfb.h, x11vnc/options.c,
	x11vnc/options.h, x11vnc/params.h, x11vnc/pm.c, x11vnc/pointer.c,
	x11vnc/rates.c, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/screen.h, x11vnc/selection.c, x11vnc/solid.c,
	x11vnc/sslhelper.c, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/unixpw.c, x11vnc/user.c, x11vnc/userinput.c, x11vnc/v4l.c,
	x11vnc/v4l.h, x11vnc/win_utils.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xdamage.c,
	x11vnc/xevents.c, x11vnc/xinerama.c, x11vnc/xkb_bell.c,
	x11vnc/xrandr.c, x11vnc/xrecord.c, x11vnc/xwrappers.c,
	x11vnc/xwrappers.h:  x11vnc: support for video4linux webcams & tv-tuners, -24to32 bpp
	 option, -rawfb console.

2006-05-04  steven_carr <steven_carr>

	* ChangeLog, libvncclient/rfbproto.c, libvncserver/rfbserver.c,
	rfb/rfb.h, rfb/rfbproto.h, x11vnc/screen.c: Server Capability
	Encodings rfbEncodingSupportedEncodings - What encodings are
	supported? rfbEncodingSupportedMessages  - What message types are
	supported? rfbEncodingServerIdentity     - What is the servers
	version string? ie: "x11vnc: 0.8.1 lastmod: 2006-04-25 (LibVNCServer
	0.9pre)"

2006-05-04  steven_carr <steven_carr>

	* libvncclient/rfbproto.c: UltraVNC with scaling, will send
	rectangles with a zero W or H We need to process the rectangle
	(especially if it a type that contains subrectangles or any kind of
	compression).   UltraVNC should be fixed to prevent these useless
	rectangles from being sent.

2006-05-04  steven_carr <steven_carr>

	* libvncclient/rfbproto.c, libvncclient/vncviewer.c,
	rfb/rfbclient.h: Client side support for PalmVNC/UltraVNC 'Server
	Side Scaling'

2006-05-04  steven_carr <steven_carr>

	* rfb/rfbproto.h: KeyboardLedState should be placed in 'various
	protocol extensions'

2006-05-03  steven_carr <steven_carr>

	* ChangeLog, libvncserver/Makefile.am, libvncserver/corre.c,
	libvncserver/cursor.c, libvncserver/hextile.c, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/rre.c, libvncserver/scale.c,
	libvncserver/scale.h, libvncserver/stats.c, libvncserver/tight.c,
	libvncserver/ultra.c, libvncserver/zlib.c, libvncserver/zrle.c,
	rfb/rfb.h: Client Independent Server Side Scaling is now supported
	Both PalmVNC and UltraVNC SetScale messages are supported

2006-05-02  steven_carr <steven_carr>

	* ChangeLog, libvncclient/Makefile.am, libvncclient/lzoconf.h,
	libvncclient/minilzo.c, libvncclient/minilzo.h,
	libvncclient/rfbproto.c, libvncclient/ultra.c,
	libvncclient/vncviewer.c, libvncserver/Makefile.am,
	libvncserver/lzoconf.h, libvncserver/minilzo.c,
	libvncserver/minilzo.h, libvncserver/rfbserver.c,
	libvncserver/ultra.c, rfb/rfb.h, rfb/rfbclient.h: Ultra Encoding
	added.   Tested against UltraVNC V1.01

2006-05-02  steven_carr <steven_carr>

	* libvncclient/rfbproto.c: CopyRectangle() BPP!=8 bug fixed

2006-05-02  steven_carr <steven_carr>

	* libvncclient/vncviewer.c: Eliminate incompatible pointer
	assignment warning (gcc 4.0.1)

2006-05-02  steven_carr <steven_carr>

	* libvncclient/hextile.c, libvncclient/tight.c, libvncclient/zlib.c: 
	signed vs unsigned warnings eliminated (gcc 4.0.1)

2006-04-30  dscho <dscho>

	* examples/Makefile.am: include rotatetemplate.c in the tarball

2006-04-28  dscho <dscho>

	* client_examples/SDLvncviewer.c, libvncclient/rfbproto.c,
	rfb/rfbclient.h: libvncclient: support changing of framebuffer size;
	make SDLvncviewer use it

2006-04-28  dscho <dscho>

	* client_examples/SDLvncviewer.c: fix SDLvncviewer for widths which
	are not divisible by 8

2006-04-27  dscho <dscho>

	* ChangeLog, examples/.cvsignore, examples/Makefile.am,
	examples/pnmshow.c, examples/rotate.c, examples/rotatetemplate.c: 
	add rotate and flip example

2006-04-27  dscho <dscho>

	* examples/camera.c: malloc.h should not be needed (it is missing on
	quite a few platforms)

2006-04-26  runge <runge>

	* ChangeLog, classes/ssl/ssl_vncviewer,
	client_examples/Makefile.am, configure.ac, contrib/Makefile.am,
	examples/Makefile.am, libvncclient/Makefile.am,
	libvncserver/Makefile.am,
	libvncserver/tightvnc-filetransfer/Makefile.am, test/Makefile.am,
	x11vnc/ChangeLog, x11vnc/Makefile.am, x11vnc/README, x11vnc/help.c,
	x11vnc/sslhelper.c, x11vnc/x11vnc.1, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c:  Make VPATH building work with -I $(top_srcdir) for rfb/rfb.h

2006-04-17  steven_carr <steven_carr>

	* ChangeLog, examples/Makefile.am, examples/camera.c: Added an
	example camera application to demonstrate another way to write a
	server application.

2006-04-16  runge <runge>

	* classes/ssl/ssl_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c, x11vnc/help.c,
	x11vnc/sslcmds.c, x11vnc/sslhelper.c, x11vnc/ssltools.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c:  Apache SSL gateway. More web proxy cases for Java and
	 ssl_vncviewer.

2006-04-05  runge <runge>

	* ChangeLog, classes/ssl/Makefile.am, classes/ssl/README,
	classes/ssl/proxy.vnc, classes/ssl/ssl_vncviewer,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	configure.ac, prepare_x11vnc_dist.sh, x11vnc/ChangeLog,
	x11vnc/Makefile.am, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/cleanup.h, x11vnc/connections.c, x11vnc/help.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/pm.c, x11vnc/pm.h,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c, x11vnc/sslcmds.c,
	x11vnc/sslcmds.h, x11vnc/sslhelper.c, x11vnc/sslhelper.h,
	x11vnc/ssltools.h, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c:  SSL Java viewer work thru proxy.  -sslGenCA, etc key/cert
	 management utils for x11vnc.  FBPM "support".

2006-03-28  dscho <dscho>

	* ChangeLog, client_examples/SDLvncviewer.c,
	libvncclient/rfbproto.c, libvncclient/vncviewer.c,
	libvncserver/main.c, libvncserver/rfbserver.c, rfb/rfb.h,
	rfb/rfbclient.h, rfb/rfbproto.h: add KeyboardLedState extension

2006-03-28  runge <runge>

	* ChangeLog, classes/Makefile.am, classes/ssl/Makefile.am,
	classes/ssl/index.vnc,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-cursor-colors+no-tab
	-traversal.patch,
	classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
	configure.ac, libvncserver/httpd.c, prepare_x11vnc_dist.sh,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/connections.h, x11vnc/cursor.c,
	x11vnc/help.c, x11vnc/keyboard.c, x11vnc/options.c,
	x11vnc/options.h, x11vnc/pointer.c, x11vnc/rates.c,
	x11vnc/remote.c, x11vnc/screen.c, x11vnc/sslcmds.c,
	x11vnc/sslhelper.c, x11vnc/sslhelper.h, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
	x11vnc/xwrappers.c:  SSL patch for Java viewer.  https support for x11vnc.

2006-03-27  dscho <dscho>

	* AUTHORS, ChangeLog, libvncserver/rfbserver.c: ignore
	maxRectsPerUpdate when encoding is Zlib (thanks scarr)

2006-03-27  dscho <dscho>

	* libvncclient/vncviewer.c: libvncclient: take -compress <level> and
	-quality <level> command line arguments

2006-03-12  runge <runge>

	* configure.ac, x11vnc/ChangeLog, x11vnc/Makefile.am,
	x11vnc/README, x11vnc/cleanup.c, x11vnc/connections.c,
	x11vnc/gui.c, x11vnc/help.c, x11vnc/misc/Xdummy, x11vnc/options.c,
	x11vnc/options.h, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/screen.h, x11vnc/selection.c, x11vnc/sslcmds.c,
	x11vnc/sslhelper.c, x11vnc/sslhelper.h, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
	x11vnc/xevents.c:  x11vnc: add -ssl mode using libssl.  Include Xdummy in misc.

2006-03-08  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/help.c, x11vnc/options.c, x11vnc/options.h, x11vnc/remote.c,
	x11vnc/screen.c, x11vnc/selection.c, x11vnc/selection.h,
	x11vnc/sslcmds.c, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/unixpw.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xevents.h:  x11vnc: do CLIPBOARD, reverse conn require passwds, -usepw,
	 -debug_sel, -storepasswd homedir.

2006-03-06  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
	x11vnc/connections.h, x11vnc/gui.c, x11vnc/gui.h, x11vnc/help.c,
	x11vnc/params.h, x11vnc/remote.c, x11vnc/sslcmds.c,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/unixpw.c,
	x11vnc/unixpw.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xevents.h:  x11vnc: gui speedup and fixes. -unixpw and -inetd

2006-03-05  runge <runge>

	* configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/connections.c, x11vnc/gui.c, x11vnc/help.c, x11vnc/inet.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/remote.c,
	x11vnc/sslcmds.c, x11vnc/sslcmds.h, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/unixpw.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c:  x11vnc: -unixpw on *bsd, hpux and tru64. -unixpw_nis mode. stunnel
	 and gui tweaks.

2006-03-03  runge <runge>

	* configure.ac, x11vnc/8to24.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/connections.c, x11vnc/help.c, x11vnc/inet.c, x11vnc/inet.h,
	x11vnc/keyboard.c, x11vnc/remote.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/unixpw.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c:  x11vnc: more -unixpw mode. -gone popup mode. Change filexfer via
	 -R. Tune SMALL_FOOTPRINT.

2006-03-01  dscho <dscho>

	* examples/Makefile.am, examples/blooptest.c, examples/example.c: 
	Fix blooptest example

2006-03-01  dscho <dscho>

	* rfb/keysym.h: do not assume that KEYSYM_H guards X11's keysym.h

2006-03-01  dscho <dscho>

	* libvncserver/main.c: do not timeout on idle client input (with
	pthreads)

2006-03-01  dscho <dscho>

	* examples/Makefile.am: if compiling with pthreads, also compile
	blooptest

2006-02-28  dscho <dscho>

	* libvncserver/sockets.c: rfbCheckFds now returns the number of
	processed events

2006-02-28  dscho <dscho>

	* AUTHORS, ChangeLog, libvncserver/main.c, libvncserver/sockets.c,
	rfb/rfb.h: add handleEventsEagerly flag (Thanks, Donald)

2006-02-25  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/Makefile.am,
	x11vnc/README, x11vnc/allowed_input_t.h, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/cursor.c, x11vnc/help.c,
	x11vnc/inet.c, x11vnc/inet.h, x11vnc/keyboard.c, x11vnc/keyboard.h,
	x11vnc/options.c, x11vnc/options.h, x11vnc/pointer.c,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
	x11vnc/selection.c, x11vnc/sslcmds.c, x11vnc/sslcmds.h,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/unixpw.c,
	x11vnc/unixpw.h, x11vnc/user.c, x11vnc/userinput.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c, x11vnc/xdamage.c, x11vnc/xevents.c,
	x11vnc/xrecord.c:  x11vnc: -unixpw and -stunnel.  Add clipboard to input control.

2006-02-24  rohit_99129 <rohit_99129>

	* libvncserver/main.c, rfb/rfb.h: Added method to get extension
	specific client data

2006-02-24  rohit_99129 <rohit_99129>

	* ChangeLog, libvncserver/main.c,
	libvncserver/tightvnc-filetransfer/rfbtightserver.c, rfb/rfb.h: 
	Added method to get extension specific client data

2006-02-22  dscho <dscho>

	* ChangeLog, libvncserver/auth.c, libvncserver/main.c,
	libvncserver/tightvnc-filetransfer/rfbtightserver.c, rfb/rfb.h: add
	functions to unregister extensions/security types

2006-02-21  dscho <dscho>

	* configure.ac, x11vnc/Makefile.am: IRIX linker is very picky about
	order of libraries

2006-02-20  runge <runge>

	* ChangeLog, configure.ac, libvncserver/cursor.c,
	libvncserver/main.c,
	libvncserver/tightvnc-filetransfer/filelistinfo.c,
	libvncserver/tightvnc-filetransfer/filetransfermsg.c,
	libvncserver/tightvnc-filetransfer/handlefiletransferrequest.c,
	prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/connections.c, x11vnc/inet.c, x11vnc/user.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c, x11vnc/xevents.c:  fix some non-gcc compiler warnings and signals in x11vnc

2006-02-07  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.h: x11vnc: fix AIX build wrt h_errno.

2006-02-06  runge <runge>

	* x11vnc/8to24.c, x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/win_utils.c, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c:  x11vnc: -8to24 more speedups; tunables for very slow machines.

2006-02-05  runge <runge>

	* x11vnc/8to24.c, x11vnc/8to24.h, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/help.c, x11vnc/options.c, x11vnc/options.h, x11vnc/params.h,
	x11vnc/rates.c, x11vnc/scan.c, x11vnc/scan.h, x11vnc/userinput.c,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
	x11vnc/xinerama.c:  x11vnc: -8to24 speedups and improvements.

2006-01-22  runge <runge>

	* x11vnc/8to24.c, x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/options.c, x11vnc/options.h, x11vnc/pointer.c,
	x11vnc/rates.c, x11vnc/remote.c, x11vnc/screen.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/win_utils.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c:  x11vnc: -8to24 opts, use XGetSubImage. fix -threads deadlocks and
	 -rawfb crash

2006-01-19  runge <runge>

	* x11vnc/8to24.c, x11vnc/8to24.h, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/cursor.c, x11vnc/help.c, x11vnc/remote.c, x11vnc/scan.c,
	x11vnc/screen.c, x11vnc/userinput.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c:  x11vnc: -8to24 now works on default depth 8 displays.

2006-01-16  runge <runge>

	* x11vnc/8to24.c, x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
	x11vnc/util.c, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c:  x11vnc: more tweaks to -8to24 XGETIMAGE_8TO24

2006-01-15  runge <runge>

	* ChangeLog, x11vnc/8to24.c, x11vnc/8to24.h, x11vnc/ChangeLog,
	x11vnc/Makefile.am, x11vnc/README, x11vnc/connections.c,
	x11vnc/cursor.c, x11vnc/help.c, x11vnc/options.c, x11vnc/options.h,
	x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/userinput.c, x11vnc/util.c,
	x11vnc/util.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
	x11vnc/x11vnc_defs.c:  x11vnc: add -8to24 option for some multi-depth displays.

2006-01-12  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.h: configure.ac:
	add switches for most X extensions.

2006-01-11  runge <runge>

	* libvncserver/main.c, prepare_x11vnc_dist.sh, x11vnc/README,
	x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: logMutex needs to be
	initialized too; in rfbDefaultLog.

2006-01-11  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
	x11vnc/connections.c, x11vnc/cursor.c, x11vnc/keyboard.c,
	x11vnc/pointer.c, x11vnc/scan.c, x11vnc/screen.c, x11vnc/solid.c,
	x11vnc/userinput.c, x11vnc/win_utils.c, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c, x11vnc/xdamage.c,
	x11vnc/xrecord.c:  x11vnc: close fd > 2 in run_user_command(), -nocmds in crash_debug,
	 fix 64bit bug for -solid.

2006-01-10  dscho <dscho>

	* ChangeLog, libvncserver/main.c, libvncserver/rfbserver.c: 
	rfbProcessEvents() has to iterate also over clients with sock < 0 to
	close them

2006-01-09  runge <runge>

	* ChangeLog, examples/pnmshow24.c, x11vnc/ChangeLog,
	x11vnc/Makefile.am, x11vnc/README, x11vnc/allowed_input_t.h,
	x11vnc/blackout_t.h, x11vnc/cleanup.c, x11vnc/cleanup.h,
	x11vnc/connections.c, x11vnc/connections.h, x11vnc/cursor.c,
	x11vnc/cursor.h, x11vnc/enums.h, x11vnc/gui.c, x11vnc/gui.h,
	x11vnc/help.c, x11vnc/help.h, x11vnc/inet.c, x11vnc/inet.h,
	x11vnc/keyboard.c, x11vnc/keyboard.h, x11vnc/options.c,
	x11vnc/options.h, x11vnc/params.h, x11vnc/pointer.c,
	x11vnc/pointer.h, x11vnc/rates.c, x11vnc/rates.h, x11vnc/remote.c,
	x11vnc/remote.h, x11vnc/scan.c, x11vnc/scan.h, x11vnc/screen.c,
	x11vnc/screen.h, x11vnc/scrollevent_t.h, x11vnc/selection.c,
	x11vnc/selection.h, x11vnc/solid.c, x11vnc/solid.h,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/user.c, x11vnc/user.h,
	x11vnc/userinput.c, x11vnc/userinput.h, x11vnc/util.c,
	x11vnc/util.h, x11vnc/win_utils.c, x11vnc/win_utils.h,
	x11vnc/winattr_t.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
	x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xdamage.c,
	x11vnc/xdamage.h, x11vnc/xevents.c, x11vnc/xevents.h,
	x11vnc/xinerama.c, x11vnc/xinerama.h, x11vnc/xkb_bell.c,
	x11vnc/xkb_bell.h, x11vnc/xrandr.c, x11vnc/xrandr.h,
	x11vnc/xrecord.c, x11vnc/xrecord.h, x11vnc/xwrappers.c,
	x11vnc/xwrappers.h:  x11vnc: the big split.

2006-01-08  runge <runge>

	* ChangeLog, examples/pnmshow24.c, libvncclient/vncviewer.c,
	libvncserver/main.c:  fix client non-jpeg/libz builds

2006-01-06  runge <runge>

	* ChangeLog, libvncserver/main.c:  rfbRegisterProtocolExtension extMutex was never initialized.

2005-12-24  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: enhance -passwdfile features, filetransfer on by default.

2005-12-22  dscho <dscho>

	* libvncserver/rfbserver.c: make compile again with pthreads; fix
	off-by-one error

2005-12-19  dscho <dscho>

	* AUTHORS, ChangeLog, libvncserver/cargs.c, libvncserver/main.c,
	libvncserver/rfbserver.c, rfb/rfb.h: introduce -deferptrupdate
	(thanks Dave)

2005-12-19  dscho <dscho>

	* client_examples/SDLvncviewer.c, libvncclient/sockets.c,
	libvncclient/vncviewer.c, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/sockets.c: assorted fixes for
	MinGW32

2005-12-09  dscho <dscho>

	* ChangeLog, configure.ac, libvncclient/sockets.c,
	libvncserver/sockets.c: work around write() returning ENOENT on
	Solaris 2.7

2005-12-09  dscho <dscho>

	* examples/mac.c: previous patch turned compile warning in a compile
	error; fix that ;-)

2005-12-08  dscho <dscho>

	* examples/mac.c: fix compile warnings

2005-12-07  dscho <dscho>

	* libvncclient/vncviewer.c: one more memory leak

2005-12-07  dscho <dscho>

	* ChangeLog, libvncclient/vncviewer.c, rfb/rfbclient.h: plug memory
	leaks

2005-12-07  dscho <dscho>

	* client_examples/SDLvncviewer.c: translate keys based on unicode
	(much more reliable than sym)

2005-11-28  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: add -loop option.

2005-11-25  runge <runge>

	* ChangeLog, configure.ac, libvncclient/rfbproto.c,
	libvncclient/tight.c, libvncclient/vncviewer.c,
	libvncserver/Makefile.am, libvncserver/auth.c, libvncserver/main.c,
	libvncserver/private.h, libvncserver/rfbserver.c,
	libvncserver/tightvnc-filetransfer/filelistinfo.h,
	libvncserver/tightvnc-filetransfer/filetransfermsg.c,
	libvncserver/tightvnc-filetransfer/handlefiletransferrequest.c,
	libvncserver/tightvnc-filetransfer/rfbtightserver.c,
	rfb/rfbclient.h, rfb/rfbproto.h, x11vnc/ChangeLog,
	x11vnc/misc/x11vnc_pw, x11vnc/x11vnc.c:  fix deadlock from rfbReleaseExtensionIterator(), fix no
	 libz/libjpeg builds, disable tightvnc-filetransfer if no
	 libpthread, add --without-pthread option, rm // comments, set
	 NAME_MAX if not defined, x11vnc: throttle load if fb update
	 requests not taking place.

2005-10-23  runge <runge>

	* configure.ac, x11vnc/README:  configure.ac: test ... == ... not allowed on all unix.

2005-10-23  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: -filexfer, -slow_fb, -blackout noptr,...

2005-10-07  dscho <dscho>

	* TODO: update TODO

2005-10-07  dscho <dscho>

	* examples/backchannel.c, libvncserver/rfbserver.c, rfb/rfb.h: The
	PseudoEncoding extension code was getting silly: If the client asked for an encoding, and no enabled extension
	handled it, LibVNCServer would walk through all extensions, and if
	they promised to handle the encoding, execute the extension's
	newClient() if it was not NULL.  However, if newClient is not NULL, it will be called when a client
	connects, and if it returns TRUE, the extension will be enabled.
	Since all the state of the extension should be in the client data,
	there is no good reason why newClient should return FALSE the first
	time (thus not enabling the extension), but TRUE when called just
	before calling enablePseudoEncoding().  So in effect, the extension got enabled all the time, even if that
	was not necessary.  The resolution is to pass a void** to enablePseudoEncoding. This has
	the further advantage that enablePseudoEncoding can remalloc() or
	free() the data without problems. Though keep in mind that if
	enablePseudoEncoding() is called on a not-yet-enabled extension, the
	passed data points to NULL.

2005-10-06  dscho <dscho>

	* ChangeLog: update ChangeLog for today

2005-10-06  dscho <dscho>

	* client_examples/Makefile.am, client_examples/SDLvncviewer.c,
	client_examples/backchannel.c, libvncclient/rfbproto.c,
	rfb/rfbclient.h: add an extension mechanism for LibVNCClient, modify
	the client data handling so that more than one data structure can be
	attached, and add an example to speak the client part of the back
	channel.

2005-10-06  dscho <dscho>

	* examples/Makefile.am, examples/backchannel.c: add BackChannel
	extension example

2005-10-06  dscho <dscho>

	* libvncclient/zrle.c: fix warning

2005-10-06  dscho <dscho>

	* configure.ac, examples/mac.c, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/stats.c,
	libvncserver/tightvnc-filetransfer/filetransfermsg.c, rfb/rfb.h,
	rfb/rfbproto.h: kill BackChannel and CustomClientMessage: the new
	extension technique makes these hooks obsolete

2005-10-06  dscho <dscho>

	* libvncserver/rfbserver.c,
	libvncserver/tightvnc-filetransfer/rfbtightserver.c, rfb/rfb.h: 
	provide a list of the pseudo encodings understood by the extension

2005-10-06  dscho <dscho>

	* contrib/Makefile.am, x11vnc/Makefile.am: DEFINES -> AM_CFLAGS

2005-10-06  dscho <dscho>

	* client_examples/Makefile.am, examples/Makefile.am,
	libvncclient/Makefile.am,
	libvncserver/tightvnc-filetransfer/Makefile.am, test/Makefile.am: do
	it right: it is not DEFINES, but AM_CFLAGS

2005-10-03  dscho <dscho>

	* ChangeLog, libvncserver/rfbserver.c,
	libvncserver/tightvnc-filetransfer/rfbtightserver.c, rfb/rfb.h: add
	enablePseudoEncoding() to rfbProtocolExtension

2005-09-29  dscho <dscho>

	* TODO, index.html: more TODOs, and an update to the website

2005-09-28  dscho <dscho>

	* AUTHORS, ChangeLog, configure.ac, examples/.cvsignore,
	examples/Makefile.am, examples/filetransfer.c,
	libvncclient/.cvsignore, libvncserver/.cvsignore,
	libvncserver/Makefile.am, libvncserver/auth.c,
	libvncserver/cargs.c, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/sockets.c,
	libvncserver/tightvnc-filetransfer/.cvsignore,
	libvncserver/tightvnc-filetransfer/Makefile.am,
	libvncserver/tightvnc-filetransfer/filelistinfo.c,
	libvncserver/tightvnc-filetransfer/filelistinfo.h,
	libvncserver/tightvnc-filetransfer/filetransfermsg.c,
	libvncserver/tightvnc-filetransfer/filetransfermsg.h,
	libvncserver/tightvnc-filetransfer/handlefiletransferrequest.c,
	libvncserver/tightvnc-filetransfer/handlefiletransferrequest.h,
	libvncserver/tightvnc-filetransfer/rfbtightproto.h,
	libvncserver/tightvnc-filetransfer/rfbtightserver.c, rfb/rfb.h: This
	monster commit contains support for TightVNC's file transfer
	protocol.  Thank you very much, Rohit!

2005-09-27  dscho <dscho>

	* ChangeLog, libvncserver/cargs.c, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/sockets.c, rfb/rfb.h: 
	Introduce generic protocol extension method. Deprecate the
	processCustomClientMessage() method.

2005-09-27  dscho <dscho>

	* libvncserver/auth.c, libvncserver/main.c, rfb/rfb.h: Security is
	global. This was a misguided attempt to evade a global list.  I
	eventually saw the light and went with Rohits original approach.

2005-09-27  dscho <dscho>

	* client_examples/Makefile.am, client_examples/vnc2mpg.c: support
	new ffmpeg version

2005-09-26  dscho <dscho>

	* ChangeLog, libvncserver/auth.c, libvncserver/main.c,
	libvncserver/rfbserver.c, rfb/rfb.h, rfb/rfbproto.h: support VNC
	protocol version 3.7

2005-08-22  dscho <dscho>

	* prepare_x11vnc_dist.sh: for x11vnc standalone package, adaptions
	were needed after changing LibVNCServer.spec.in

2005-08-21  dscho <dscho>

	* AUTHORS, ChangeLog, LibVNCServer.spec.in: split rpm into three
	packages: the library, -devel (headers), and x11vnc

2005-07-18  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: more gui fixes, gui requests via client_sock,
	 PASSWD_REQUIRED build opt.

2005-07-13  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: setup for new release 0.7.3 while I remember how..

2005-07-13  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: tweaks for release, fix queue buildup under -viewonly.

2005-07-11  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: more improvements to gui, scary nopassword warning msg.

2005-07-09  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: -grab_buster for XGrabServer deadlock; fix scrolls and
	 copyrect for -clip and -id

2005-07-07  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: -gui tray now embeds in systray; more improvements to gui.

2005-07-02  runge <runge>

	* ChangeLog, libvncserver/httpd.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: -gui tray mode, httpd.c: check httpListenSock >= 0.

2005-06-28  dscho <dscho>

	* ChangeLog, TODO, libvncclient/zrle.c: fix annoying zrle decoding
	bug

2005-06-27  runge <runge>

	* ChangeLog, libvncserver/main.c:  main.c: fix screen->deferUpdateTime default.

2005-06-27  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: track keycode state for heuristics, -sloppy_keys, -wmdt,
	 add -nodbg as option

2005-06-21  dscho <dscho>

	* TODO: ZRLE has problems with RealVNC server. Look into it.

2005-06-21  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: long info and tips when XOpenDisplay fails, reinstate "bad
	 desktop" for wireframe

2005-06-18  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c:  configure.ac: HP-UX and OSF1 no -R, x11vnc: second round of
	 beta-testing fixes.

2005-06-14  runge <runge>

	* ChangeLog, configure.ac, libvncserver/cursor.c, x11vnc/ChangeLog,
	x11vnc/README, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  main.c: XReadScreen check, fix 64bit use of cursors, x11vnc: first
	 round of beta-testing fixes, RFE's.

2005-06-11  dscho <dscho>

	* ChangeLog, configure.ac: no longer complain on Solaris about
	missing ar, which was not really missing

2005-06-06  dscho <dscho>

	* rfb/rfbproto.h: add definitions from other VNC implementations

2005-06-06  dscho <dscho>

	* TODO: more TODOs

2005-06-06  dscho <dscho>

	* client_examples/Makefile.am, configure.ac: link to libmp3lame only
	if exists

2005-06-04  runge <runge>

	* ChangeLog, libvncserver/main.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  main.c: no sraRgnSubstract for copyRect, scrolls for x11vnc -scale;
	 add -fixscreen

2005-05-31  runge <runge>

	* ChangeLog, libvncserver/main.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c:  main.c: fix copyRect for non-cursor-shape-aware clients.

2005-05-25  dscho <dscho>

	* index.html: news

2005-05-25  runge <runge>

	* ChangeLog, prepare_x11vnc_dist.sh, x11vnc/ChangeLog,
	x11vnc/README, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: scrolling: grabserver, autorepeat throttling, mouse wheel,
	 fix onetile

2005-05-24  dscho <dscho>

	* examples/.cvsignore: mac works!

2005-05-24  dscho <dscho>

	* Makefile.am, configure.ac: make libvncserver-conf executable the
	autoconf way

2005-05-24  dscho <dscho>

	* Makefile.am: "make t" now executes the tests

2005-05-24  dscho <dscho>

	* libvncclient/Makefile.am: do distribute and depend on zrle.c

2005-05-24  dscho <dscho>

	* TODO, libvncclient/rfbproto.c, libvncclient/tight.c,
	libvncclient/vncviewer.c, libvncclient/zlib.c, libvncclient/zrle.c,
	test/encodingstest.c: implement ZRLE decoding

2005-05-24  dscho <dscho>

	* client_examples/SDLvncviewer.c: try 32 bit first

2005-05-24  dscho <dscho>

	* examples/example.c, libvncserver/font.c: fix off by one bug

2005-05-23  dscho <dscho>

	* libvncclient/tight.c, libvncclient/vncviewer.c: init a structure
	*before* using it...

2005-05-23  dscho <dscho>

	* libvncclient/tight.c: remove wrong comment

2005-05-23  dscho <dscho>

	* libvncclient/rfbproto.c, libvncclient/tight.c,
	libvncclient/vncviewer.c, libvncclient/zlib.c, rfb/rfbclient.h: make
	zlib and tight handling thread safe (static -> rfbClient)

2005-05-23  dscho <dscho>

	* client_examples/vnc2mpg.c: work around bug in ffmpeg

2005-05-23  dscho <dscho>

	* ChangeLog, configure.ac: simplify configure (do not check for
	malloc(0) bug)

2005-05-23  dscho <dscho>

	* client_examples/vnc2mpg.c: fix compilation for
	LIBAVCODEC_BUILD==4754

2005-05-20  dscho <dscho>

	* acinclude.m4: finally fix socklen_t problem

2005-05-18  dscho <dscho>

	* acinclude.m4: fix socklen_t also for defines

2005-05-18  dscho <dscho>

	* ChangeLog, acinclude.m4, rfb/rfb.h: fix compilation for systems
	without socklen_t

2005-05-18  dscho <dscho>

	* libvncserver/main.c: fix off by one bug

2005-05-18  dscho <dscho>

	* examples/vncev.c, libvncclient/listen.c, libvncclient/rfbproto.c,
	libvncclient/sockets.c, libvncclient/vncviewer.c,
	libvncserver/main.c, libvncserver/rfbserver.c,
	libvncserver/vncauth.c, rfb/rfb.h, test/copyrecttest.c,
	test/encodingstest.c, vncterm/VNCommand.c: hide strict ansi stuff if
	not explicitely turned on; actually use the socklen_t test from
	configure.ac

2005-05-18  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: more scrolling, -scr_term, -wait_ui, -nowait_bog

2005-05-17  dscho <dscho>

	* libvncserver/Makefile.am: also distribute private.h...

2005-05-17  dscho <dscho>

	* TODO: update TODOs

2005-05-16  dscho <dscho>

	* libvncserver/rfbserver.c: fix SIGSEGV when client has incompatible
	protocol; release mutex before freeing it

2005-05-15  dscho <dscho>

	* ChangeLog, VisualNaCro/configure.ac, VisualNaCro/default8x16.h,
	VisualNaCro/nacro.c, client_examples/SDLvncviewer.c,
	client_examples/ppmtest.c, contrib/zippy.c, examples/example.c,
	examples/fontsel.c, examples/pnmshow.c, examples/pnmshow24.c,
	examples/radon.h, examples/storepasswd.c, examples/vncev.c,
	libvncclient/listen.c, libvncclient/rfbproto.c,
	libvncclient/sockets.c, libvncclient/vncviewer.c,
	libvncserver/auth.c, libvncserver/cargs.c, libvncserver/corre.c,
	libvncserver/cursor.c, libvncserver/d3des.c, libvncserver/font.c,
	libvncserver/hextile.c, libvncserver/httpd.c, libvncserver/main.c,
	libvncserver/private.h, libvncserver/rfbregion.c,
	libvncserver/rfbserver.c, libvncserver/rre.c,
	libvncserver/selbox.c, libvncserver/sockets.c,
	libvncserver/tight.c, libvncserver/translate.c,
	libvncserver/vncauth.c, libvncserver/zlib.c, libvncserver/zrle.c,
	libvncserver/zrleencodetemplate.c, libvncserver/zrleoutstream.c,
	rfb/default8x16.h, rfb/rfb.h, rfb/rfbproto.h, test/copyrecttest.c,
	test/cursortest.c, test/encodingstest.c, vncterm/VNCommand.c,
	vncterm/VNConsole.c: ANSIfy, fix some warnings from Linus' sparse

2005-05-15  runge <runge>

	* libvncserver/main.c, libvncserver/rfbserver.c:  libvncserver/{main.c,rfbserver.c}: fix a couple more CopyRect
	 memory leaks

2005-05-14  dscho <dscho>

	* .cvsignore, examples/.cvsignore, test/.cvsignore,
	x11vnc/misc/.cvsignore: more files to ignore

2005-05-14  dscho <dscho>

	* ChangeLog, examples/example.c, libvncserver/main.c,
	libvncserver/rfbserver.c: fix memory leaks detected using valgrind

2005-05-14  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: more improvements to -scrollcopyrect and -xkb modes.

2005-05-07  dscho <dscho>

	* ChangeLog, VisualNaCro/nacro.c, VisualNaCro/nacro.h,
	examples/example.c, examples/fontsel.c, libvncserver/httpd.c,
	libvncserver/main.c, libvncserver/rfbserver.c,
	libvncserver/sockets.c, rfb/rfb.h, test/cursortest.c,
	vncterm/LinuxVNC.c, vncterm/VNConsole.c, x11vnc/x11vnc.c: 
	socketInitDone -> socketState

2005-05-03  runge <runge>

	* ChangeLog, configure.ac, libvncserver/main.c:  libvncserver/main.c: fix memory leak in
	 rfbDoCopyRect/rfbScheduleCopyRect; configure.ac tweaks.

2005-05-03  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: -scrollcopyrect/RECORD, etc. configure.ac: customizations
	 for x11vnc pkg

2005-04-27  dscho <dscho>

	* ChangeLog, libvncserver/rfbserver.c: clear requested region after
	handling it

2005-04-19  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/misc/README,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: -wireframe, -wirecopyrect, -privremote, -safer, -nocmd,
	 -unsafe, -noviewonly

2005-04-12  runge <runge>

	* x11vnc/ChangeLog, x11vnc/misc/Makefile.am, x11vnc/misc/ranfb.pl:  x11vnc: add rawfb setup example misc/ranfb.pl

2005-04-11  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/misc/slide.pl,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: fix some -rawfb bugs, add setup:cmd

2005-04-10  runge <runge>

	* ChangeLog, configure.ac, prepare_x11vnc_dist.sh,
	x11vnc/ChangeLog, x11vnc/Makefile.am, x11vnc/README,
	x11vnc/misc/Makefile.am, x11vnc/misc/README,
	x11vnc/misc/blockdpy.c, x11vnc/misc/dtVncPopup,
	x11vnc/misc/rx11vnc, x11vnc/misc/rx11vnc.pl, x11vnc/misc/shm_clear,
	x11vnc/misc/slide.pl, x11vnc/misc/vcinject.pl,
	x11vnc/misc/x11vnc_loop, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: -rawfb, -pipeinput, -xtrap, -flag, ...

2005-04-04  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: use DEC-XTRAP on legacy X11R5, -shiftcmap, -http

2005-03-29  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: fix event leaks, build-time customizations, -nolookup

2005-03-20  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: scale cursors, speed up some scaling, alt arrows, -norepeat
	 N

2005-03-12  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: X DAMAGE support, -clip WxH+X+Y, identd.

2005-03-09  dscho <dscho>

	* test/encodingstest.c: fix compilation when no libz is available

2005-03-07  dscho <dscho>

	* configure.ac, rfb/rfbproto.h: do the in_addr_t stuff correctly...

2005-03-07  dscho <dscho>

	* configure.ac: check for in_addr_t

2005-03-06  dscho <dscho>

	* client_examples/SDLvncviewer.c: fix for older SDL versions

2005-03-05  runge <runge>

	* ChangeLog, Makefile.am, configure.ac, libvncserver/Makefile.am:  autoconf: rpm -> rpmbuild and echo -n -> printf

2005-03-05  runge <runge>

	* ChangeLog, libvncclient/sockets.c, libvncserver/cargs.c,
	libvncserver/httpd.c, libvncserver/main.c, libvncserver/sockets.c,
	rfb/rfb.h, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  add '-listen ipaddr' option

2005-03-01  dscho <dscho>

	* client_examples/ppmtest.c: do not crash when /tmp is not writable

2005-02-23  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: final changes for 0.7.1 release.

2005-02-22  runge <runge>

	* x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: -nap is now the default, version str 0.7.1.

2005-02-14  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: -users lurk=, -solid for cde, -gui ez,.. beginner mode.

2005-02-11  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc -input to fine tune allow user input.  per-client settings
	 -R

2005-02-09  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc -users, fix -solid on gnome/kde, configure.ac pwd.h wait.h
	 and utmpx.h

2005-02-07  runge <runge>

	* ChangeLog, prepare_x11vnc_dist.sh:  prepare_x11vnc_dist.sh: few tweaks for next release

2005-02-07  runge <runge>

	* ChangeLog, configure.ac:  configure.ac: --with-jpeg=DIR --with-zlib=DIR, /usr/sfw

2005-02-05  runge <runge>

	* ChangeLog, tightvnc-1.3dev5-vncviewer-alpha-cursor.patch,
	x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc -solid color, -opts; tightvnc unix viewer alpha patch

2005-01-25  dscho <dscho>

	* TODO, libvncserver/rfbserver.c: 10l: really fix preferredEncoding
	set from outside

2005-01-24  runge <runge>

	* x11vnc/x11vnc.c:  whoops, test version of x11vnc.c leaked out...

2005-01-24  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  sync with new cursor mechanism, -timeout, -noalphablend, try :0 if
	 no other info

2005-01-23  dscho <dscho>

	* test/cursortest.c: test Floyd-Steinberg dither for alpha masks

2005-01-21  dscho <dscho>

	* TODO, libvncserver/cursor.c, rfb/rfb.h: implemented
	Floyd-Steinberg dither in order to rfbMakeMaskFromAlphaSource

2005-01-21  dscho <dscho>

	* VisualNaCro/recorder.pl: use Getopt

2005-01-21  dscho <dscho>

	* libvncclient/vncviewer.c: if no argc & argv are passed, honour the
	serverHost&serverPort which was set by the application

2005-01-20  dscho <dscho>

	* test/cursortest.c: no need to strdup for MakeXCursor

2005-01-20  dscho <dscho>

	* ChangeLog, libvncserver/cursor.c: disappearing cursor fixed &
	debug message purged

2005-01-20  dscho <dscho>

	* libvncserver/cursor.c, libvncserver/main.c,
	libvncserver/rfbserver.c: fix disappearing cursor

2005-01-19  dscho <dscho>

	* libvncserver/cursor.c: redraw region under old cursor even if the
	old cursor doesn't have to be freed.

2005-01-19  dscho <dscho>

	* TODO: a granted wish has several children ;-)

2005-01-19  dscho <dscho>

	* test/encodingstest.c: fix test (don't show cursor...); correctly
	set the encodings in the client; really test 20 seconds

2005-01-19  dscho <dscho>

	* libvncserver/cursor.c: oops, a debug message slipped through

2005-01-18  dscho <dscho>

	* ChangeLog, contrib/zippy.c, examples/example.c,
	libvncserver/cursor.c, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/selbox.c, rfb/rfb.h,
	vncterm/VNConsole.c, x11vnc/x11vnc.c: pointerClient was still
	static.  do not make requestedRegion empty without reason.  the cursor handling for clients which don't handle CursorShape
	updates was completely broken. It originally was very complicated
	for performance reasons, however, in most cases it made performance
	even worse, because at idle times there was way too much checking
	going on, and furthermore, sometimes unnecessary updates were
	inevitable.  The code now is much more elegant: the ClientRec structure knows
	exactly where it last painted the cursor, and the ScreenInfo
	structure knows where the cursor shall be.  As a consequence there is no more rfbDrawCursor()/rfbUndrawCursor(),
	no more dontSendFramebufferUpdate, and no more isCursorDrawn.  It is
	now possible to have clients which understand CursorShape updates
	and clients which don't at the same time.  rfbSetCursor no longer has the option freeOld; this is obsolete, as
	the cursor structure knows what to free and what not.

2005-01-18  dscho <dscho>

	* libvncserver/rfbregion.c, rfb/rfbregion.h: add convenience
	function to clip using x2,y2 instead of w,h

2005-01-18  dscho <dscho>

	* test/Makefile.am, test/cursortest.c: add a cursor test
	(interactive for now)

2005-01-18  dscho <dscho>

	* VisualNaCro/.cvsignore: more ignorance

2005-01-17  dscho <dscho>

	* index.html: LibVNCClient is included

2005-01-17  dscho <dscho>

	* index.html: alpha cursor and VisualNaCro news

2005-01-16  dscho <dscho>

	* VisualNaCro/.cvsignore: ignore generated files

2005-01-16  runge <runge>

	* ChangeLog, libvncserver/cursor.c, rfb/rfb.h, x11vnc/ChangeLog,
	x11vnc/README, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  add cursor alphablending to rfb.h cursor.c, x11vnc -alphablend
	 -snapfb etc..

2005-01-14  dscho <dscho>

	* VisualNaCro/Makefile.am, VisualNaCro/default8x16.h,
	VisualNaCro/nacro.c, VisualNaCro/nacro.h, VisualNaCro/recorder.pl: 
	fix most TODOs; recorder.pl now actually records something; add
	nacro.pm to package

2005-01-14  dscho <dscho>

	* examples/example.c: reverted segfault fix; use rfbDrawCharWithClip

2005-01-14  dscho <dscho>

	* libvncserver/font.c: add comment "if col=bcol, assume background
	is transparent"

2005-01-14  dscho <dscho>

	* libvncserver/main.c: fix comment

2005-01-14  dscho <dscho>

	* libvncserver/rfbserver.c: close socket in ClientConnectionGone

2005-01-14  dscho <dscho>

	* configure.ac: new version...

2005-01-14  dscho <dscho>

	* VisualNaCro/AUTHORS, VisualNaCro/ChangeLog,
	VisualNaCro/Makefile.am, VisualNaCro/NEWS, VisualNaCro/README,
	VisualNaCro/autogen.sh, VisualNaCro/configure.ac,
	VisualNaCro/nacro.c, VisualNaCro/nacro.h, VisualNaCro/recorder.pl: 
	VisualNacro, a visual macro recorder for VNC. Alpha version

2005-01-14  dscho <dscho>

	* libvncserver/main.c, rfb/rfb.h: return value of rfbProcessEvents
	tells if an update was pending

2005-01-14  dscho <dscho>

	* libvncserver/font.c: fix segfault when trying to write outside of
	frameBuffer

2005-01-14  dscho <dscho>

	* libvncclient/vncviewer.c: argc and argv may be zero (which means
	to ignore them)

2005-01-03  dscho <dscho>

	* libvncserver/main.c, libvncserver/rfbserver.c, rfb/rfb.h: add hook
	to allow for custom client messages

2004-12-27  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/tkx11vnc,
	x11vnc/tkx11vnc.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: improve XFIXES cursor transparency, more remote-control
	 cmds.

2004-12-23  runge <runge>

	* x11vnc/README, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: need tkx11vnc and tkx11vnc.h in x11vnc package

2004-12-23  runge <runge>

	* x11vnc/Makefile.am:  x11vnc: need tkx11vnc and tkx11vnc.h in x11vnc package

2004-12-23  runge <runge>

	* x11vnc/Makefile.am:  x11vnc: need tkx11vnc and tkx11vnc.h in x11vnc package

2004-12-23  runge <runge>

	* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: minor tweaks for x11vnc 0.7 file release

2004-12-20  dscho <dscho>

	* index.html: Ooh, I'm lazy. Some news were added retroactively.

2004-12-20  dscho <dscho>

	* ChangeLog, configure.ac, index.html: released 0.7

2004-12-20  dscho <dscho>

	* examples/mac.c: compile fix on mac; still untested...

2004-12-20  dscho <dscho>

	* test/Makefile.am: fix for MinGW

2004-12-20  runge <runge>

	* x11vnc/README, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: minor tweaks for 0.7 file release

2004-12-20  runge <runge>

	* ChangeLog, libvncserver/cursor.c, x11vnc/ChangeLog,
	x11vnc/README, x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: synchronous mode for -remote, string cleanup

2004-12-17  dscho <dscho>

	* libvncserver/cursor.c: don't mix up width & height!

2004-12-17  runge <runge>

	* ChangeLog, test/encodingstest.c, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: XFIXES cursorshape, XRANDR resize, remote control, gui

2004-12-01  dscho <dscho>

	* rfb/rfb.h: fix compilation on non MinGW32...

2004-12-01  dscho <dscho>

	* ChangeLog, TODO, client_examples/Makefile.am,
	client_examples/SDLvncviewer.c, configure.ac, contrib/Makefile.am,
	examples/Makefile.am, examples/vncev.c, libvncclient/listen.c,
	libvncclient/rfbproto.c, libvncclient/sockets.c,
	libvncclient/vncviewer.c, libvncserver-config.in,
	libvncserver/httpd.c, libvncserver/main.c, libvncserver/sockets.c,
	rfb/rfb.h, rfb/rfbproto.h, test/Makefile.am, vncterm/Makefile.am,
	x11vnc/Makefile.am: support MinGW32!

2004-12-01  dscho <dscho>

	* AUTHORS, libvncclient/listen.c, libvncclient/sockets.c,
	libvncclient/vncviewer.c: use rfbClientErr to log errors, check if
	calloc succeded (both hinted by Andre Leiradella)

2004-11-30  dscho <dscho>

	* ChangeLog, libvncclient/sockets.c: fix long reads (in some events
	of success, no TRUE was returned)

2004-11-30  dscho <dscho>

	* rfb/rfbproto.h: add EncodingUltra; it is not implemented in the
	libraries yet, so this is just a place holder

2004-10-16  dscho <dscho>

	* TODO: TODOs from encodingstest

2004-10-16  dscho <dscho>

	* test/.cvsignore: tight-1 -> encodingstest

2004-10-16  dscho <dscho>

	* test/Makefile.am, test/encodingstest.c, test/tight-1.c: rename
	tight-1.c into encodingstest.c, fixing it in the process. It now
	passes all encodings except corre (broken) and zrle (not yet
	implemented in libvncclient)

2004-10-16  dscho <dscho>

	* libvncclient/rfbproto.c, libvncclient/sockets.c,
	libvncclient/tight.c, libvncclient/vncviewer.c,
	libvncclient/zlib.c, rfb/rfbclient.h: move read buffer to rfbClient
	structure (thread safety); make rfbClientLog overrideable

2004-10-15  dscho <dscho>

	* test/tight-1.c: compiles, 1st run is okay, 2nd and subsequent give
	errors. Evidently, libvncclient is not yet reentrant (or
	threadsafe).

2004-10-15  dscho <dscho>

	* libvncclient/vncviewer.c: no need to modify argv

2004-10-15  dscho <dscho>

	* TODO: ideas

2004-10-15  dscho <dscho>

	* test/tight-1.c: compiling, non functional version of a unit test
	for encodings

2004-10-04  dscho <dscho>

	* TODO: cursor problem

2004-10-02  dscho <dscho>

	* libvncserver/rfbserver.c: release client list mutex earlier

2004-09-14  dscho <dscho>

	* index.html, success.html: added success stories and link to
	x11vnc's home

2004-09-14  dscho <dscho>

	* success.html: add success stories (only one at the moment)

2004-09-07  dscho <dscho>

	* index.html: new API

2004-09-03  dscho <dscho>

	* libvncserver/rfbregion.c: output only via rfbErr

2004-09-03  dscho <dscho>

	* libvncserver-config.in: libvncserver.a is in libvncserver/ now

2004-09-01  runge <runge>

	* ChangeLog, prepare_x11vnc_dist.sh, x11vnc/ChangeLog,
	x11vnc/README, x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: new pointer input handling algorithm; x11vnc pkg installs
	 java viewer

2004-08-30  dscho <dscho>

	* ChangeLog: API changes

2004-08-30  dscho <dscho>

	* contrib/zippy.c, examples/colourmaptest.c, examples/example.c,
	examples/pnmshow.c, examples/pnmshow24.c, examples/storepasswd.c,
	examples/vncev.c, libvncclient/rfbproto.c, libvncserver/auth.c,
	libvncserver/cargs.c, libvncserver/corre.c, libvncserver/cursor.c,
	libvncserver/d3des.c, libvncserver/d3des.h, libvncserver/font.c,
	libvncserver/hextile.c, libvncserver/httpd.c, libvncserver/main.c,
	libvncserver/rfbserver.c, libvncserver/rre.c,
	libvncserver/selbox.c, libvncserver/sockets.c,
	libvncserver/stats.c, libvncserver/tight.c,
	libvncserver/translate.c, libvncserver/vncauth.c,
	libvncserver/zlib.c, libvncserver/zrle.c, rfb/rfb.h,
	rfb/rfbproto.h, test/cargstest.c, test/copyrecttest.c,
	vncterm/LinuxVNC.c, vncterm/VNConsole.c, vncterm/VNConsole.h,
	x11vnc/x11vnc.c: global structures/functions should have "rfb",
	"sra" or "zrle" as prefix, while structure members should not

2004-08-30  dscho <dscho>

	* client_examples/Makefile.am: my ffmpeg was compiled with
	mp3lame...

2004-08-30  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/README,
	x11vnc/x11vnc.1, x11vnc/x11vnc.c:  x11vnc: -cursor change shape handling, configure.ac: add more
	 macros for X extensions

2004-08-17  dscho <dscho>

	* index.html: news: QEMU patch v6

2004-08-15  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/README, x11vnc/x11vnc.1,
	x11vnc/x11vnc.c:  x11vnc: -overlay to fix colors with Sun 8+24 overlay visuals. -sid
	 option.

2004-08-04  runge <runge>

	* x11vnc/README, x11vnc/x11vnc.1:  fix XKBlib.h detection on *BSD, x11vnc: manpage and README

2004-08-04  runge <runge>

	* ChangeLog, configure.ac, prepare_x11vnc_dist.sh,
	x11vnc/ChangeLog, x11vnc/Makefile.am, x11vnc/x11vnc.c:  fix XKBlib.h detection on *BSD, x11vnc: manpage and README

2004-07-31  runge <runge>

	* x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: adjust version number and output

2004-07-31  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: -cursorpos now the default, fix cursorpos + scaling bug.

2004-07-29  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: -add_keysyms dynamically add missing keysyms to X server

2004-07-27  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: -xkb (XKEYBOARD modtweak), -skip_keycodes, multi lines in
	 x11vncrc

2004-07-19  runge <runge>

	* x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: ignore keysyms >4 for a keycode, add lastmod to -help,
	 -version

2004-07-16  runge <runge>

	* ChangeLog, configure.ac, x11vnc/ChangeLog, x11vnc/x11vnc.c:  modtweak is now the default for x11vnc; check X11/XKBlib.h in
	 configure.ac

2004-07-11  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: -norepeat to turn off X server autorepeat when clients
	 exist.

2004-07-05  runge <runge>

	* x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: extend -allow to re-read a file with allowed IP addresses.

2004-07-02  runge <runge>

	* x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: improve scaled grid calc to regain text compression. add
	 :pad option

2004-06-30  dscho <dscho>

	* libvncclient/vncviewer.c: do not use GNU-only getline

2004-06-28  runge <runge>

	* x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: round scaled width to multiple of 4 to make vncviewer
	 happy.

2004-06-27  runge <runge>

	* x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: speed up scaling a bit, add no blending option to -scale

2004-06-26  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: add "-scale fraction" for global server-side scaling.

2004-06-18  dscho <dscho>

	* libvncserver/zrleencodetemplate.c, test/tight-1.c,
	vncterm/LinuxVNC.c, vncterm/VNCommand.c, vncterm/VNConsole.c,
	vncterm/example.c: convert c++ comments to c comments

2004-06-18  dscho <dscho>

	* libvncserver/sockets.c: debug

2004-06-18  dscho <dscho>

	* client_examples/SDLvncviewer.c: cleanups; libvncclient supports
	-encodings already

2004-06-18  dscho <dscho>

	* client_examples/vnc2mpg.c: cleanups; support vncrec'orded files as
	input

2004-06-18  dscho <dscho>

	* examples/example.c, examples/pnmshow.c, examples/pnmshow24.c: now
	that the examples reside in a subdirectory, the classes path has to
	be adapted

2004-06-18  dscho <dscho>

	* rfb/rfbclient.h: more comments; support playing vncrec'orded files

2004-06-18  dscho <dscho>

	* libvncclient/rfbproto.c, libvncclient/sockets.c,
	libvncclient/vncviewer.c: support password reading with getpass();
	support -play to play vncrec'orded files

2004-06-17  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: simple ~/.x11vncrc config file support, -rc, -norc

2004-06-15  dscho <dscho>

	* TODO: fixed

2004-06-15  dscho <dscho>

	* libvncclient/hextile.c: fix silly hextile bug

2004-06-15  dscho <dscho>

	* libvncclient/rfbproto.c: recognize more encodings

2004-06-15  dscho <dscho>

	* libvncclient/sockets.c: debug

2004-06-15  dscho <dscho>

	* libvncserver/rfbserver.c: fix CoRRE with maxRectsPerUpdate bug

2004-06-15  dscho <dscho>

	* libvncclient/rfbproto.c: fix silly update bug with raw encoding

2004-06-12  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: -clear_mods -clear_keys -storepasswd, add RFB_SERVER_IP
	 RFB_SERVER_PORT to -accept/-gone

2004-06-08  dscho <dscho>

	* client_examples/Makefile.am, configure.ac: fix compilation on IRIX

2004-06-08  dscho <dscho>

	* configure.ac: fix test for sdl

2004-06-08  dscho <dscho>

	* client_examples/SDLvncviewer.c: fix compilation on MacOSX

2004-06-07  dscho <dscho>

	* index.html: layout and wording fix

2004-06-07  dscho <dscho>

	* index.html: more news

2004-06-07  dscho <dscho>

	* .cvsignore, prepare_x11vnc_dist.sh: now that it is released,
	increment x11vnc's version

2004-06-07  dscho <dscho>

	* .cvsignore, client_examples/.cvsignore, libvncclient/.cvsignore,
	libvncserver/.cvsignore, test/.cvsignore, x11vnc/.cvsignore: all
	this moving and renaming needs changes in the cvsignores, too!

2004-06-07  dscho <dscho>

	* LibVNCServer.spec.in, Makefile.am, libvncserver.spec.in,
	prepare_x11vnc_dist.sh: fix bug 968264: make rpm did not work with
	x11vnc package

2004-06-07  dscho <dscho>

	* client_examples/Makefile.am, client_examples/vnc2mpg.c,
	configure.ac: add vnc2mpg, a program which makes a movie from a VNC
	desktop using FFMPEG

2004-06-07  dscho <dscho>

	* TODO, client_examples/SDLvncviewer.c: added -encodings

2004-06-07  dscho <dscho>

	* ChangeLog, TODO, libvncserver/cursor.c, rfb/rfb.h: fix cursor
	trails (when not using cursor encoding and moving the cursor, the
	redrawn part of the screen didn't get updated, and so left cursor
	trails).

2004-06-07  dscho <dscho>

	* client_examples/SDLvncviewer.c: add mouse button handling

2004-06-07  dscho <dscho>

	* ChangeLog, Makefile.am, TODO, client_examples/Makefile.am,
	client_examples/SDLvncviewer.c, client_examples/ppmtest.c,
	configure.ac, contrib/Makefile.am, examples/Makefile.am,
	examples/blooptest.c, examples/copyrecttest.c,
	libvncclient/Makefile.am, libvncclient/client_test.c,
	libvncclient/sockets.c, libvncclient/vncviewer.c,
	libvncserver/Makefile.am, prepare_x11vnc_dist.sh, rfb/rfbclient.h,
	test/Makefile.am, test/blooptest.c, test/copyrecttest.c,
	test/tight-1.c, x11vnc/Makefile.am: add client_examples/, add
	SDLvncviewer, libvncclient API changes, suppress automake CFLAGS
	nagging

2004-06-06  runge <runge>

	* ChangeLog, x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: rearrange file for easier maintenance, add RFB_CLIENT_COUNT
	 to -accept/-gone

2004-05-28  runge <runge>

	* x11vnc/x11vnc.c: [no log message]

2004-05-27  runge <runge>

	* ChangeLog, libvncserver/main.c, libvncserver/rfbserver.c,
	prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/x11vnc.c:  x11vnc: view-only plain passwd: -viewpasswd and 2nd line of
	 -passwdfile

2004-05-25  dscho <dscho>

	* prepare_x11vnc_dist.sh: a script which automatically converts a
	few files to make an x11vnc release

2004-05-25  dscho <dscho>

	* configure.ac: -lvncserver is not default now

2004-05-25  dscho <dscho>

	* ChangeLog, Makefile.am, auth.c, cargs.c, configure.ac,
	contrib/ChangeLog, contrib/Makefile.am, contrib/x11vnc.c, corre.c,
	cursor.c, cutpaste.c, d3des.c, d3des.h, draw.c,
	examples/Makefile.am, examples/regiontest.c, font.c, hextile.c,
	httpd.c, libvncclient/rfbproto.c, libvncserver/Makefile.am,
	libvncserver/auth.c, libvncserver/cargs.c, libvncserver/config.h,
	libvncserver/corre.c, libvncserver/cursor.c,
	libvncserver/cutpaste.c, libvncserver/d3des.c,
	libvncserver/d3des.h, libvncserver/draw.c, libvncserver/font.c,
	libvncserver/hextile.c, libvncserver/httpd.c, libvncserver/main.c,
	libvncserver/rfbconfig.h, libvncserver/rfbregion.c,
	libvncserver/rfbserver.c, libvncserver/rre.c,
	libvncserver/selbox.c, libvncserver/sockets.c,
	libvncserver/stats.c, libvncserver/tableinit24.c,
	libvncserver/tableinitcmtemplate.c,
	libvncserver/tableinittctemplate.c,
	libvncserver/tabletrans24template.c,
	libvncserver/tabletranstemplate.c, libvncserver/tight.c,
	libvncserver/translate.c, libvncserver/vncauth.c,
	libvncserver/zlib.c, libvncserver/zrle.c,
	libvncserver/zrleencodetemplate.c, libvncserver/zrleoutstream.c,
	libvncserver/zrleoutstream.h, libvncserver/zrlepalettehelper.c,
	libvncserver/zrlepalettehelper.h, libvncserver/zrletypes.h, main.c,
	rfbregion.c, rfbserver.c, rre.c, selbox.c, sockets.c, stats.c,
	tableinit24.c, tableinitcmtemplate.c, tableinittctemplate.c,
	tabletrans24template.c, tabletranstemplate.c, test/Makefile.am,
	tight.c, translate.c, vncauth.c, vncterm/Makefile.am,
	x11vnc/ChangeLog, x11vnc/Makefile.am, x11vnc/x11vnc.c, zlib.c,
	zrle.c, zrleencodetemplate.c, zrleoutstream.c, zrleoutstream.h,
	zrlepalettehelper.c, zrlepalettehelper.h, zrletypes.h: move the
	library into libvncserver/, x11vnc into x11vnc/

2004-05-22  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c, httpd.c:  x11vnc: -gone, -passwdfile, -o logfile; add view-only to -accept

2004-05-14  runge <runge>

	* contrib/x11vnc.c:  x11vnc: more -inetd fixes.

2004-05-14  runge <runge>

	* contrib/ChangeLog, contrib/x11vnc.c:  x11vnc: less fprintf under -q so '-q -inetd' has no stderr output.

2004-05-13  runge <runge>

	* contrib/ChangeLog, contrib/x11vnc.c:  x11vnc: improvements to -accept popup: yes/no buttons and timeout.

2004-05-08  runge <runge>

	* contrib/ChangeLog, contrib/x11vnc.c:  x11vnc: clean up -Wall warnings.

2004-05-08  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c:  x11vnc: add -accept some-command/xmessage/popup

2004-05-06  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c:  x11vnc: mouse -> keystroke and keystroke -> mouse remappings.

2004-05-05  dscho <dscho>

	* rfbserver.c, sockets.c: prevent segmentation fault when requested
	area is too big; if select is interrupted while WriteExact, just try
	again.

2004-04-28  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c:  x11vnc: add -auth, more -cursorpos and -nofb work

2004-04-20  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c:  x11vnc: add -cursorpos for Cursor Position Updates, and -sigpipe

2004-04-19  dscho <dscho>

	* main.c: ignore SIGPIPE the correct way

2004-04-13  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c:  x11vnc: do not send selection unless all clients are in RFB_NORMAL
	 state.  increase rfbMaxClientWait when threaded to avoid
	ReadExact() timeouts for some viewers.

2004-04-12  dscho <dscho>

	* configure.ac: fix compilation without jpeg and a certain autoconf
	version

2004-04-08  runge <runge>

	* ChangeLog, configure.ac, contrib/ChangeLog, contrib/x11vnc.c:  x11vnc options -blackout, -xinerama, -xwarppointer.  check cargs.   modify configure.ac to pick up -lXinerama

2004-03-24  dscho <dscho>

	* examples/pnmshow.c: add support for pgm and pbm (8-bit and 1-bit
	grayscale images)

2004-03-22  dscho <dscho>

	* ChangeLog, cargs.c, test/Makefile.am, test/cargstest.c: fix
	cargs.c: arguments were not correctly purged.

2004-03-15  dscho <dscho>

	* ChangeLog, libvncserver-config.in: fix --link for
	libvncserver-config

2004-03-11  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c:  x11vnc options -vncconnect, -connect, -remap,  -debug_pointer, and -debug_keyboard  add reverse connections, keysym remapping,  and debug output option

2004-02-29  dscho <dscho>

	* index.html: link to pre.tar.gz, mention valgrind

2004-02-29  dscho <dscho>

	* index.html: update on news

2004-02-29  dscho <dscho>

	* ChangeLog, rfbregion.c: fixed valgrind warning

2004-02-20  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c:  x11vnc options -nosel -noprimary -visual.   add clipboard/selection handling.   add visual option (mostly for testing and workarounds).   improve shm cleanup on failures.

2004-02-04  dscho <dscho>

	* AUTHORS, ChangeLog, examples/colourmaptest.c,
	examples/copyrecttest.c, examples/example.c, examples/simple.c,
	examples/simple15.c, examples/vncev.c: make examples g++
	compileable, thanks to Juan Jose Costello

2004-01-30  dscho <dscho>

	* ChangeLog, rfbserver.c: memory leaks fixed

2004-01-29  dscho <dscho>

	* ChangeLog, Makefile.am, configure.ac, tight.c, zlib.c, zrle.c,
	zrleencodetemplate.c, zrleoutstream.c, zrleoutstream.h,
	zrlepalettehelper.c, zrlepalettehelper.h: Honour the check for libz,
	libjpeg again

2004-01-21  dscho <dscho>

	* ChangeLog, cargs.c, main.c, rfb/rfb.h, rfbserver.c: add
	"-progressive height" option to make SendFramebufferUpdate
	"preemptive"

2004-01-21  dscho <dscho>

	* ChangeLog: update

2004-01-21  dscho <dscho>

	* examples/.cvsignore: ignore all test programs

2004-01-21  dscho <dscho>

	* examples/Makefile.am, examples/copyrecttest.c: add a simple
	example how to use rfbDoCopyRect

2004-01-21  dscho <dscho>

	* main.c, rfb/rfb.h: ignore SIGPIPE by default; it is handled via
	EPIPE

2004-01-21  dscho <dscho>

	* cursor.c: do not send unnecessary updated because of cursor
	drawing

2004-01-19  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c:  handle mouse button number mismatch  improved pointer input handling during drags, etc.   somewhat faster copy_tiles() -> copy_tiles()  x11vnc options -buttonmap -old_pointer -old_copytile

2004-01-19  dscho <dscho>

	* configure.ac: 0.6 is out... version is 0.7pre now

2004-01-19  dscho <dscho>

	* vncterm/Makefile.am: inherit CFLAGS

2004-01-19  dscho <dscho>

	* vncterm/VNConsole.c: fix usage of non-existent attribute buffer

2004-01-16  dscho <dscho>

	* ChangeLog, cargs.c, configure.ac, contrib/Makefile.am,
	rfbserver.c, vncauth.c: compile fix for cygwin

2004-01-10  runge <runge>

	* ChangeLog, contrib/ChangeLog, contrib/x11vnc.c:  x11vnc options -allow, -localhost, -nodragging, -input_skip  minimize memory usage under -nofb

2003-12-09  dscho <dscho>

	* libvncclient/hextile.c: fix compilation with Mac OSX: preprocessor
	can't do recursive macros

2003-12-09  runge <runge>

	* ChangeLog, configure.ac, contrib/ChangeLog, contrib/x11vnc.c: 
	x11vnc: XBell events, -nofb, -notruecolor, misc. cleaning

2003-11-27  dscho <dscho>

	* index.html: fixed link

2003-11-11  dscho <dscho>

	* ChangeLog, contrib/x11vnc.c: -inetd, -noshm and friends added

2003-11-07  dscho <dscho>

	* ChangeLog, README.cvs, configure.ac: release 0.6

2003-10-08  dscho <dscho>

	* zrle.c: fix gcc 2.x compilation: no C99

2003-09-11  markmc <markmc>

	* ChangeLog, Makefile.in, aclocal.m4, bootstrap.sh,
	classes/.cvsignore, classes/Makefile.in, config.h.in, configure,
	contrib/Makefile.in, depcomp, examples/Makefile.in, install-sh,
	libvncclient/Makefile.in, missing, mkinstalldirs, test/.cvsignore,
	test/Makefile.in, vncterm/Makefile.in: 2002-09-11  Mark McLoughlin
	<mark@skynet.ie>         * Makefile.in, */Makefile.in, aclocal.m4,           bootstrap.sh, config.h.in, configure,           depcomp, install-sh, missing, mkinstalldirs,         Removed auto-generated files from CVS.

2003-09-11  markmc <markmc>

	* ChangeLog, NEWS, rdr/Exception.h, rdr/FdInStream.cxx,
	rdr/FdInStream.h, rdr/FdOutStream.cxx, rdr/FdOutStream.h,
	rdr/FixedMemOutStream.h, rdr/InStream.cxx, rdr/InStream.h,
	rdr/MemInStream.h, rdr/MemOutStream.h, rdr/NullOutStream.cxx,
	rdr/NullOutStream.h, rdr/OutStream.h, rdr/ZlibInStream.cxx,
	rdr/ZlibInStream.h, rdr/ZlibOutStream.cxx, rdr/ZlibOutStream.h,
	rdr/types.h, zrle.cxx, zrleDecode.h, zrleEncode.h: 2003-09-11  Mark
	McLoughlin  <mark@skynet.ie>         * rdr/Exception.h, rdr/FdInStream.cxx, rdr/FdInStream.h,           rdr/FdOutStream.cxx, rdr/FdOutStream.h,
	          rdr/FixedMemOutStream.h, rdr/InStream.cxx, rdr/InStream.h,
	          rdr/MemInStream.h, rdr/MemOutStream.h, rdr/NullOutStream.cxx,
	          rdr/NullOutStream.h, rdr/OutStream.h, rdr/ZlibInStream.cxx,
	          rdr/ZlibInStream.h, rdr/ZlibOutStream.cxx, rdr/ZlibOutStream.h,
	          rdr/types.h, zrle.cxx, zrleDecode.h, zrleEncode.h: remove original         C++ ZRLE implementation. Its been ported to C.          * NEWS: copy the existing ChangeLog to here and make         this a more detailed ChangeLog.

2003-09-08  dscho <dscho>

	* AUTHORS, ChangeLog, Makefile.am, Makefile.in, autogen.sh,
	classes/Makefile.in, config.h.in, configure, configure.ac,
	contrib/Makefile.in, examples/Makefile.in,
	libvncclient/Makefile.in, rfb/rfb.h, rfb/rfbproto.h, rfbserver.c,
	test/Makefile.in, vncterm/Makefile.in, zrle.c,
	zrleencodetemplate.c, zrleoutstream.c, zrleoutstream.h,
	zrlepalettehelper.c, zrlepalettehelper.h, zrletypes.h: ZRLE no
	longer uses C++, but C

2003-08-29  dscho <dscho>

	* ChangeLog, Makefile.in, configure, configure.ac,
	libvncclient/Makefile.in, test/Makefile.in, vncterm/Makefile.in: 
	added --disable-cxx flag to configure

2003-08-18  dscho <dscho>

	* contrib/x11vnc.c: Karl Runge: 8bpp handling now much better,
	single window also, many improvements

2003-08-18  dscho <dscho>

	* httpd.c, main.c, rfbserver.c, sockets.c: socklen_t -> size_t

2003-08-18  dscho <dscho>

	* Makefile.in, aclocal.m4, classes/Makefile.in, config.h.in,
	contrib/Makefile.in, examples/Makefile.in, vncterm/Makefile.in: 
	using autoconf 1.6

2003-08-09  dscho <dscho>

	* README: added Projects section

2003-08-08  dscho <dscho>

	* .cvsignore, classes/.cvsignore, libvncclient/.cvsignore,
	test/.cvsignore: more files to ignore

2003-08-08  dscho <dscho>

	* libvncclient/rfbproto.c, libvncclient/tight.c,
	libvncclient/zlib.c, main.c, rfbserver.c: make --without-jpeg,
	--without-zlib work

2003-08-08  dscho <dscho>

	* AUTHORS, configure, configure.ac: add --without-jpeg,
	--without-zlib; repair --without-backchannel, --without-24bpp

2003-08-08  dscho <dscho>

	* httpd.c, sockets.c: handle EINTR after select()

2003-08-06  dscho <dscho>

	* ChangeLog, auth.c, contrib/x11vnc.c, examples/fontsel.c,
	examples/mac.c, httpd.c, main.c, rfb/rfb.h, rfbregion.c,
	rfbserver.c, rre.c, sockets.c, translate.c, vncterm/LinuxVNC.c,
	vncterm/VNCommand.c, zlib.c: rfbErr introduced

2003-08-03  dscho <dscho>

	* rfb/rfbproto.h: forgot to change WORDS_BIGENDIAN to
	LIBVNCSERVER_BIGENDIAN; #undef VERSION unneccessary...

2003-08-02  dscho <dscho>

	* config.h.in, configure, configure.ac: really check for setsid, not
	pgrp

2003-08-02  dscho <dscho>

	* main.c: overlooked endian config.h constant

2003-08-02  dscho <dscho>

	* config.h.in: required file

2003-08-01  dscho <dscho>

	* README, configure, configure.ac: mention NEWS in README, add
	checks for fork and setpgrp

2003-07-31  dscho <dscho>

	* ChangeLog: credit last two changes to Erik

2003-07-31  dscho <dscho>

	* main.c, rfb/rfb.h, sockets.c: rfbLog can be overridden; EINTR on
	read/write means just try again

2003-07-30  dscho <dscho>

	* Makefile.am, Makefile.in, rfb/rfb.h, rfb/rfbclient.h: add
	rfbclient.h to distribution; avoid C++ style comments

2003-07-30  dscho <dscho>

	* AUTHORS, ChangeLog, Makefile.in, NEWS, README, acinclude.m4,
	aclocal.m4, auth.c, cargs.c, classes/Makefile.in, configure,
	configure.ac, contrib/Makefile.in, contrib/x11vnc.c,
	contrib/zippy.c, corre.c, cursor.c, cutpaste.c, draw.c,
	examples/Makefile.in, examples/example.c, examples/mac.c,
	examples/pnmshow.c, examples/pnmshow24.c, examples/vncev.c, font.c,
	hextile.c, httpd.c, libvncclient/Makefile.in, libvncclient/corre.c,
	libvncclient/cursor.c, libvncclient/hextile.c,
	libvncclient/listen.c, libvncclient/rfbproto.c, libvncclient/rre.c,
	libvncclient/sockets.c, libvncclient/tight.c,
	libvncclient/vncviewer.c, libvncclient/zlib.c, main.c, rfb/rfb.h,
	rfb/rfbclient.h, rfb/rfbconfig.h.in, rfb/rfbproto.h,
	rfb/rfbregion.h, rfbregion.c, rfbserver.c, rre.c, selbox.c,
	sockets.c, stats.c, test/Makefile.in, tight.c, translate.c,
	vncauth.c, vncterm/LinuxVNC.c, vncterm/Makefile.in,
	vncterm/VNCommand.c, vncterm/VNConsole.c, vncterm/VNConsole.h,
	zlib.c, zrle.cxx: API change: Bool, KeySym, Pixel get prefix "rfb";
	constants in rfbconfig.h get prefix "LIBVNCSERVER_"

2003-07-29  dscho <dscho>

	* cursor.c, libvncclient/client_test.c, libvncclient/rfbproto.c,
	libvncclient/vncviewer.c, main.c, rfb/rfb.h, rfb/rfbclient.h,
	test/tight-1.c, tight.c: further valgrinding showed leaked mallocs

2003-07-28  dscho <dscho>

	* ChangeLog, README.cvs: adapted dox

2003-07-28  dscho <dscho>

	* libvncclient/Makefile: is autoconfed now

2003-07-28  dscho <dscho>

	* Makefile.am, Makefile.in, aclocal.m4, classes/Makefile.in,
	configure, configure.ac, contrib/Makefile.in, contrib/x11vnc.c,
	contrib/zippy.c, examples/1instance.c, examples/Makefile.in,
	examples/fontsel.c, examples/mac.c, examples/pnmshow.c,
	examples/pnmshow24.c, examples/vncev.c, libvncclient/Makefile,
	libvncclient/Makefile.am, libvncclient/Makefile.in,
	libvncclient/client_test.c, libvncclient/corre.c,
	libvncclient/listen.c, libvncclient/rfbproto.c, libvncclient/rre.c,
	libvncclient/sockets.c, libvncclient/tight.c,
	libvncclient/vncviewer.c, libvncclient/zlib.c, main.c,
	rdr/FdInStream.cxx, rdr/ZlibOutStream.cxx, rfb/rfb.h,
	rfb/rfbclient.h, rfb/rfbconfig.h.in, rfbregion.c, rfbserver.c,
	test/Makefile.am, test/Makefile.in, test/tight-1.c, tight.c,
	vncterm/LinuxVNC.c, vncterm/Makefile.in, vncterm/VNCommand.c,
	vncterm/VNConsole.c, vncterm/example.c: fixed maxRectsPerUpdate with
	Tight encoding bug; some autoconfing; stderr should not be used in a
	library (use rfbLog instead)

2003-07-28  dscho <dscho>

	* test/tight-1.c: first beginnings of automatic tests, thanks to
	libvncclient

2003-07-28  dscho <dscho>

	* ChangeLog, TODO, main.c, rfb/rfb.h, rfb/rfbregion.h, rfbregion.c,
	rfbserver.c, sockets.c, tight.c, vncauth.c: synced with TightVNC and
	RealVNC

2003-07-28  dscho <dscho>

	* Makefile.am, Makefile.in, examples/Makefile.am,
	examples/Makefile.in: debug flags

2003-07-27  dscho <dscho>

	* ChangeLog: libvncclient

2003-07-27  dscho <dscho>

	* libvncclient/Makefile, libvncclient/corre.c,
	libvncclient/cursor.c, libvncclient/hextile.c,
	libvncclient/listen.c, libvncclient/rfbproto.c, libvncclient/rre.c,
	libvncclient/sockets.c, libvncclient/tight.c,
	libvncclient/vncviewer.c, libvncclient/zlib.c, rfb/rfbclient.h,
	vncauth.c: first alpha version of libvncclient

2003-07-27  dscho <dscho>

	* rfb/rfb.h, rfb/rfbproto.h, vncauth.c: make vncauth usable also for
	upcoming libvncclient

2003-07-25  dscho <dscho>

	* ChangeLog, examples/.cvsignore, examples/Makefile.am,
	examples/Makefile.in, examples/simple.c, examples/simple15.c,
	index.html: Added simple examples

2003-07-11  dscho <dscho>

	* rfb/rfbconfig.h, rfb/rfbint.h: these files are generated by
	configure

2003-07-11  dscho <dscho>

	* ChangeLog, httpd.c: long standing bug in http; was sending .jar
	twice

2003-07-10  dscho <dscho>

	* INSTALL, Makefile.in, aclocal.m4, classes/Makefile.in, configure,
	contrib/Makefile.in, depcomp, examples/Makefile.in, install-sh,
	missing, mkinstalldirs, rfb/rfbconfig.h, rfb/rfbconfig.h.in,
	rfb/rfbint.h, rfb/stamp-h.in, vncterm/Makefile.in: another try to
	make CVS more helpful with configure

2003-07-10  dscho <dscho>

	* Makefile.am, classes/Makefile.am, configure.ac: also distribute
	classes/ directory

2003-07-10  dscho <dscho>

	* cargs.c: fix compile

2003-06-28  dscho <dscho>

	* ChangeLog, cargs.c: http options inserted

2003-05-05  dscho <dscho>

	* configure.ac: fix am__fastdepCXX for system not having ZLIB

2003-04-03  dscho <dscho>

	* contrib/ChangeLog: added ChangeLog for x11vnc

2003-04-03  dscho <dscho>

	* contrib/x11vnc.c: new version from Karl!

2003-02-28  dscho <dscho>

	* Makefile.am, configure.ac, libvncserver-config.in: let
	libvncserver-config behave as expected when called without
	installing

2003-02-27  dscho <dscho>

	* README.cvs: added some documentation how to compile from CVS
	sources

2003-02-21  dscho <dscho>

	* rfb/rfb.h: #include <rfb/rfbregion.h> instead of #include
	"rfbregion.h"

2003-02-20  dscho <dscho>

	* ChangeLog: update ChangeLog

2003-02-20  dscho <dscho>

	* index.html: #include <rfb/rfb.h> instead of "rfb.h"

2003-02-20  dscho <dscho>

	* contrib/Makefile.am, contrib/x11vnc.c, contrib/zippy.c,
	examples/Makefile.am, examples/colourmaptest.c, examples/example.c,
	examples/fontsel.c, examples/mac.c, examples/pnmshow.c,
	examples/pnmshow24.c, examples/storepasswd.c, examples/vncev.c,
	libvncserver-config.in, vncterm/Makefile.am, vncterm/VNConsole.h: 
	the correct way to include rfb.h is now "#include <rfb/rfb.h>"

2003-02-19  dscho <dscho>

	* index.html: webpage update

2003-02-19  dscho <dscho>

	* rfb/.cvsignore: forgotten .cvsignore

2003-02-19  dscho <dscho>

	* Makefile.am: fixed header installation into $(prefix)/include/rfb

2003-02-18  dscho <dscho>

	* Makefile.am, configure.ac, include/.cvsignore,
	include/default8x16.h, include/keysym.h, include/rfb.h,
	include/rfbproto.h, include/rfbregion.h, rfb/default8x16.h,
	rfb/keysym.h, rfb/rfb.h, rfb/rfbproto.h, rfb/rfbregion.h: moved
	include/ to rfb/

2003-02-18  dscho <dscho>

	* sockets.c: fixed a bug when closing a client if no longer
	listening for new clients.

2003-02-17  dscho <dscho>

	* cursor.c, include/rfb.h: export rfbReverseBytes; undefine VERSION,
	because it's too common

2003-02-17  dscho <dscho>

	* INSTALL: INSTALL is copied by automake

2003-02-17  dscho <dscho>

	* INSTALL: INSTALL was missing

2003-02-16  dscho <dscho>

	* configure.ac, libvncserver-config.in: fixed --link option to
	libvncserver-config

2003-02-10  dscho <dscho>

	* cvs_update_anonymously, include/rfbproto.h: cvs more flexible now;
	ZRLE encoding only when HAVE_ZRLE defined

2003-02-10  dscho <dscho>

	* ChangeLog, rfbserver.c: really fixed ClientConnectionGone problem

2003-02-10  dscho <dscho>

	* vncterm/LinuxVNC.c, vncterm/VNConsole.c: fixed LinuxVNC colours

2003-02-10  dscho <dscho>

	* main.c, rfbserver.c: fixed a bug that prevented the first
	connection to be closed

2003-02-10  dscho <dscho>

	* include/rfb.h: fixed pthread debugging (locks...)

2003-02-10  dscho <dscho>

	* contrib/Makefile.am, examples/Makefile.am, vncterm/Makefile.am: 
	fixed dependecy to libvncserver.a; if the lib is newer, the programs
	are relinked

2003-02-10  dscho <dscho>

	* go: removed superfluous file

2003-02-10  dscho <dscho>

	* examples/.cvsignore, examples/Makefile.am,
	examples/colourmaptest.c, vncterm/VNConsole.c: added
	colourmapexample; fixed LinuxVNC to show the right colours

2003-02-09  dscho <dscho>

	* ChangeLog: vncterm imported, porting issues solved (IRIX, OS X,
	Solaris)

2003-02-09  dscho <dscho>

	* configure.ac, examples/Makefile.am, examples/mac.c,
	vncterm/Makefile.am, vncterm/VNCommand.c: support for OS X is better
	now

2003-02-09  dscho <dscho>

	* configure.ac, examples/Makefile.am: trying again to support OS X

2003-02-09  dscho <dscho>

	* Makefile.am, configure.ac, examples/.cvsignore,
	vncterm/.cvsignore, vncterm/ChangeLog, vncterm/LinuxVNC.c,
	vncterm/Makefile.am, vncterm/README, vncterm/TODO,
	vncterm/VNCommand.c, vncterm/VNConsole.c, vncterm/VNConsole.h,
	vncterm/example.c, vncterm/vga.h: included vncterm

2003-02-09  dscho <dscho>

	* .cvsignore, configure.ac, examples/mac.c, mac.c: moved the
	OSXvnc-server to examples; IRIX fixes (not really IRIX, but shows
	there)

2003-02-09  dscho <dscho>

	* Makefile.am, examples/Makefile.am, examples/regiontest.c,
	examples/sratest.c, include/rfbregion.h, main.c, rfbregion.c,
	rfbserver.c, sraRegion.c, sraRegion.h, translate.c: renamed
	sraRegion to rfbregion and put it in include/; will be installed now

2003-02-09  dscho <dscho>

	* ChangeLog: portability changes

2003-02-09  dscho <dscho>

	* configure.ac: order of X libraries is not good for IRIX

2003-02-09  dscho <dscho>

	* configure.ac, main.c: include order was wrong

2003-02-09  dscho <dscho>

	* Makefile.in, configure, contrib/Makefile.in, examples/Makefile.in: 
	source from CVS always will need a current autoconf/automake

2003-02-09  dscho <dscho>

	* Makefile.in, acinclude.m4, configure, contrib/Makefile.in,
	examples/Makefile.in: I give up supporting old autoconf/automake;
	now require at least 2.52

2003-02-09  dscho <dscho>

	* acinclude.m4: more macros included for older autoconf/automake

2003-02-09  dscho <dscho>

	* Makefile.am, TODO, acinclude.m4, auth.c, configure.ac,
	contrib/x11vnc.c, corre.c, cursor.c, cutpaste.c, hextile.c,
	httpd.c, include/.cvsignore, include/rfb.h, include/rfbproto.h,
	main.c, rfbserver.c, rre.c, sockets.c, sraRegion.c, stats.c,
	tableinit24.c, tableinitcmtemplate.c, tableinittctemplate.c,
	tabletrans24template.c, tabletranstemplate.c, tight.c, translate.c,
	vncauth.c, zlib.c, zrle.cxx: converted CARD{8,16,32} to
	uint{8,16,32}_t and included support for stdint.h

2003-02-09  dscho <dscho>

	* .cvsignore: ignore libvncserver-config

2003-02-09  dscho <dscho>

	* configure.ac, include/rfb.h, main.c: bigendian is now determined
	at configure time

2003-02-09  dscho <dscho>

	* index.html: added website

2003-02-09  dscho <dscho>

	* Makefile.am, configure.ac: small adjustments for autoconf/automake
	compatibility

2003-02-09  dscho <dscho>

	* Makefile.am, configure.ac, contrib/Makefile.am,
	examples/Makefile.am, examples/vncev.c, libvncserver-config.in,
	libvncserver.spec.in: make dist fixed; make rpm introduced

2003-02-08  dscho <dscho>

	* .cvsignore, Makefile, bootstrap.sh, contrib/.cvsignore,
	contrib/Makefile, examples/.cvsignore, examples/Makefile: removed
	Makefiles; these are generated now

2003-02-08  dscho <dscho>

	* .cvsignore, contrib/.cvsignore, examples/.cvsignore,
	libvncserver.spec.in: ignore generated files

2003-02-08  dscho <dscho>

	* contrib/.cvsignore, examples/.cvsignore, examples/blooptest.c,
	examples/sratest.c, include/.cvsignore: missing files

2003-02-08  dscho <dscho>

	* AUTHORS, CHANGES, ChangeLog, NEWS, TODO: further autoconf'ing

2003-02-08  dscho <dscho>

	* Makefile, Makefile.am, TODO, bootstrap.sh, configure.ac,
	contrib/Makefile, contrib/Makefile.am, examples/Makefile,
	examples/Makefile.am, examples/example.c, include/rfb.h,
	include/rfbproto.h, main.c, rfbserver.c, sockets.c, tight.c,
	zlib.c, zrle.cc, zrle.cxx: autoconf'ed everything

2003-02-07  dscho <dscho>

	* examples/.cvsignore, examples/radon.h: added files

2003-02-07  dscho <dscho>

	* cvs_update_anonymously, examples/Makefile: added Makefile in
	examples; "export" in cvs_update_anonymously

2003-02-07  dscho <dscho>

	* 1instance.c, Makefile, contrib/Makefile, contrib/zippy.c,
	default8x16.h, examples/1instance.c, examples/pnmshow24.c,
	include/default8x16.h, include/keysym.h, include/rfb.h,
	include/rfbproto.h, keysym.h, main.c, radon.h, rfb.h, rfbproto.h: 
	moved files to include; moved a file to examples/

2003-02-07  dscho <dscho>

	* CHANGES, example.c, example.dsp, examples/example.c,
	examples/example.dsp, examples/fontsel.c, examples/pnmshow.c,
	examples/pnmshow24.c, examples/storepasswd.c, examples/vncev.c,
	fontsel.c, pnmshow.c, pnmshow24.c, storepasswd.c, vncev.c: moved
	files to contrib/ and examples/

2002-12-30  dscho <dscho>

	* CHANGES, cargs.c: fixed cargs (segmentation fault!)

2002-12-25  dscho <dscho>

	* contrib/x11vnc.c: strange, but standard X11 behaviour from Sun
	keymappings...

2002-12-20  dscho <dscho>

	* contrib/x11vnc.c: include commented debug functionality

2002-12-20  dscho <dscho>

	* contrib/x11vnc.c: AltGr fixes in x11vnc, renamed from altgr to
	modtweak

2002-12-20  dscho <dscho>

	* Makefile: fixed compilation for zippy

2002-12-20  dscho <dscho>

	* contrib/Makefile: Makefile for contrib

2002-12-19  dscho <dscho>

	* contrib/x11vnc.c, contrib/zippy.c: new version of x11vnc from Karl
	Runge

2002-12-15  dscho <dscho>

	* contrib/x11vnc.c: small fixes: in X11/Xlib.h Bool is int (Karl
	Runge); indexed colour support

2002-12-15  dscho <dscho>

	* Makefile, rfbserver.c: fix: if no CXX is defined, really don't use
	zrle (Karl Runge)

2002-12-06  dscho <dscho>

	* CHANGES, Makefile, contrib/x11vnc.c, contrib/zippy.c, httpd.c,
	main.c, rfb.h, x11vnc.c, zippy.c: compiler warnings, contrib
	directory, new x11vnc from Karl Runge

2002-10-29  dscho <dscho>

	* CHANGES, main.c, rfbserver.c: fixed severe bug with sending
	fbupdates

2002-10-29  dscho <dscho>

	* CHANGES, README, cursor.c, main.c, rfb.h, rfbproto.h,
	rfbserver.c, stats.c: patch from Const for CursorPosUpdate encoding

2002-10-22  dscho <dscho>
6031 6032

	* rdr/Exception.h, rdr/FdInStream.cxx, rdr/FdInStream.h,
6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690
	rdr/FdOutStream.cxx, rdr/FdOutStream.h, rdr/FixedMemOutStream.h,
	rdr/InStream.cxx, rdr/InStream.h, rdr/MemInStream.h,
	rdr/MemOutStream.h, rdr/NullOutStream.cxx, rdr/NullOutStream.h,
	rdr/OutStream.h, rdr/ZlibInStream.cxx, rdr/ZlibInStream.h,
	rdr/ZlibOutStream.cxx, rdr/ZlibOutStream.h, rdr/types.h: rdr

2002-10-22  dscho <dscho>

	* Makefile, corre.c, cvs_update_anonymously, httpd.c, main.c,
	rfb.h, rfbproto.h, rfbserver.c, stats.c, zrle.cc, zrleDecode.h,
	zrleEncode.h: updated to vnc-3.3.4 (ZRLE encoding)

2002-08-31  dscho <dscho>

	* x11vnc.c: patch for IRIX

2002-08-31  dscho <dscho>

	* cvs_update_anonymously, httpd.c, rfbserver.c, vncauth.c: socket
	via proxy gets options set, compiler warning fixes

2002-08-31  dscho <dscho>

	* Makefile, cvs_update_anonymously, httpd.c, mac.c, pnmshow24.c,
	vncev.c, x11vnc.c, zippy.c: compiler warnings and format
	vulnerabilities fixed

2002-08-27  dscho <dscho>

	* Makefile, httpd.c: IRIX changes

2002-08-22  dscho <dscho>

	* CHANGES: changes

2002-08-22  dscho <dscho>

	* classes/javaviewer.pseudo_proxy.patch, example.c, httpd.c,
	main.c, rfb.h: a pseudo HTTP request for tunnelling (also via strict
	Web Proxy) was added.

2002-08-22  dscho <dscho>

	* classes/index.vnc, httpd.c, vncauth.c: synchronized with tightVNC
	1.2.5

2002-08-19  dscho <dscho>

	* Makefile, auth.c, cursor.c, example.c, httpd.c, main.c,
	pnmshow.c, rfb.h, rfbserver.c, sraRegion.c, sraRegion.h, tight.c,
	vncauth.c: unwarn compilation

2002-07-28  dscho <dscho>

	* CHANGES, README: prepare for version 0.4

2002-07-28  dscho <dscho>

	* CHANGES, classes/index.vnc, example.c, httpd.c, main.c, rfb.h,
	rfbproto.h, rfbserver.c, stats.c: NewFB encoding added

2002-06-13  dscho <dscho>

	* main.c, rfbserver.c, sockets.c: pthread fix

2002-05-03  dscho <dscho>

	* Makefile, rfb.h: solaris fixes (INADDR_NONE)

2002-05-02  dscho <dscho>

	* selbox.c: index was shadowed

2002-05-02  dscho <dscho>

	* cursor.c, font.c, httpd.c, main.c, rfb.h, rfbserver.c, sockets.c,
	sraRegion.c, stats.c, tableinit24.c, tight.c, translate.c: Tim's
	Changes

2002-04-30  dscho <dscho>

	* cargs.c, rfb.h: command line handling

2002-04-30  dscho <dscho>

	* Makefile, mac.c: more mac

2002-04-30  dscho <dscho>

	* mac.c: dimming for mac

2002-04-30  dscho <dscho>

	* mac.c: Mac compile fix

2002-04-25  dscho <dscho>

	* Makefile, x11vnc.c: x11vnc memleaks patched

2002-04-25  dscho <dscho>

	* CHANGES, cursor.c, example.c, main.c, rfbserver.c: memleaks
	patched

2002-04-25  dscho <dscho>

	* mac.c: now colour handling should be correct

2002-04-24  dscho <dscho>

	* main.c: bug for 3 bpp planes (as Mac OSX)

2002-04-23  dscho <dscho>

	* CHANGES, classes/index.vnc, httpd.c, rfbserver.c, sockets.c: sync
	with TightVNC 1.2.3

2002-04-23  dscho <dscho>

	* Makefile, mac.c: OSXvnc-server compile fixes

2002-04-23  dscho <dscho>

	* CHANGES, Makefile, rfb.h: another solaris clean compile

2002-04-23  dscho <dscho>

	* x11vnc.c: KBDDEBUG

2002-04-23  dscho <dscho>

	* main.c, rfb.h: solaris endian changes

2002-03-04  dscho <dscho>

	* Makefile, rfbserver.c, sockets.c: reverted exception fds to NULL,
	because of unexpected behaviour

2002-02-19  dscho <dscho>

	* CHANGES: changes

2002-02-18  dscho <dscho>

	* sockets.c: select exceptfds

2002-02-18  dscho <dscho>

	* README, cursor.c, example.c, httpd.c, main.c, rfb.h, rfbserver.c,
	sockets.c, tight.c, translate.c: changes from Tim Jansen: threading
	issues, new client can be rejected, and more

2002-01-17  dscho <dscho>

	* 1instance.c, Makefile: compile warning fix, dependency on
	1instance.c

2002-01-17  dscho <dscho>

	* mac.c: compile warning fix

2002-01-17  dscho <dscho>

	* font.c, rfb.h, rfbproto.h, rfbserver.c, vncauth.c: correct
	BackChannel handling, compile cleanups

2002-01-16  dscho <dscho>

	* mac.c: compile fix

2002-01-16  dscho <dscho>

	* 1instance.c, Makefile, cargs.c, mac.c, rfb.h, rfbproto.h,
	rfbserver.c, x11vnc.c: clean ups and encoding "backchannel"

2002-01-14  dscho <dscho>

	* mac.c: fixed compile on MAC

2002-01-14  dscho <dscho>

	* mac.c: toggle view only with OSX

2002-01-14  dscho <dscho>

	* 1instance.c, x11vnc.c: view mode now toggleable

2001-12-21  dscho <dscho>

	* mac.c, x11vnc.c: shared mode added

2001-12-14  dscho <dscho>

	* cargs.c, main.c: *argc=0 in cargs allowed, when copying area,
	first undraw cursor ...

2001-12-11  dscho <dscho>

	* mac.c: fixed osx compiling

2001-12-09  dscho <dscho>

	* Makefile, mac.c: Makefile cleanup, some special options for OSX

2001-12-09  dscho <dscho>

	* x11vnc.c: tile modus now near perfect (shm's better though)

2001-12-08  dscho <dscho>

	* x11vnc.c: start to probe single pixels for updates

2001-11-27  dscho <dscho>

	* TODO, x11vnc.c: fixed dumb XTestFakeInput bug

2001-11-27  dscho <dscho>

	* TODO, x11vnc.c: removed XTestGrabControl. Doesn't really solve the
	problem of a bad param.

2001-11-27  dscho <dscho>

	* TODO, x11vnc.c: few changes

2001-11-27  dscho <dscho>

	* Makefile, x11vnc.c: input works on other X11 servers than XFree86

2001-11-26  dscho <dscho>

	* TODO, x11vnc.c: no crash when display was wrong

2001-11-26  dscho <dscho>

	* TODO: todo

2001-11-25  dscho <dscho>

	* x11vnc.c: init keyboard now takes correct display

2001-11-23  dscho <dscho>

	* x11vnc.c: keyboard handling now works.

2001-11-22  dscho <dscho>

	* x11vnc.c: added cmd line parameters

2001-11-21  dscho <dscho>

	* CHANGES: changes

2001-11-20  dscho <dscho>

	* x11vnc.c: shm works again

2001-11-20  dscho <dscho>

	* Makefile, x11vnc.c: missing include for XTest

2001-11-19  dscho <dscho>

	* x11vnc.c: x11vnc now works with colour maps

2001-11-19  dscho <dscho>

	* x11vnc.c: tmp

2001-11-19  dscho <dscho>

	* x11vnc.c: first support for colourmaps

2001-11-19  dscho <dscho>

	* Makefile, x11vnc.c: works, but loads high

2001-11-19  dscho <dscho>

	* cargs.c, main.c, rfb.h: cmdline arg -passwd added

2001-11-19  dscho <dscho>

	* Makefile, x11vnc.c: x11vnc now works view only and with SHM

2001-11-18  dscho <dscho>

	* Makefile, example.c, main.c, rfb.h, rfbserver.c, x11vnc.c: start
	x11vnc, an x0rfbserver clone

2001-11-15  dscho <dscho>

	* example.dsp, libvncserver.dsp, libvncserver.dsw, main.c, rfb.h,
	rfbserver.c, sockets.c: Visual C++ / win32 compatibility
	reestablished

2001-11-14  dscho <dscho>

	* Makefile, TODO, font.c: docu, warning fixed

2001-11-14  dscho <dscho>

	* CHANGES: changes

2001-11-14  dscho <dscho>

	* cargs.c: separated argument handling from main.c

2001-11-14  dscho <dscho>

	* Makefile, d3des.h, example.c, fontsel.c, keysym.h, mac.c, main.c,
	pnmshow.c, pnmshow24.c, rfb.h, rfbproto.h, sraRegion.h, vncev.c,
	zippy.c: changes from Justin, zippy added

2001-11-08  dscho <dscho>

	* main.c: gettimeofday for windows

2001-10-25  dscho <dscho>

	* Makefile, main.c, rfbserver.c, sraRegion.c, sraRegion.h: clean ups

2001-10-19  dscho <dscho>

	* CHANGES: changes

2001-10-18  dscho <dscho>

	* Makefile, TODO, draw.c, main.c, rfb.h, vncev.c: add rfbDrawLine,
	rfbDrawPixel and vncev, an xev "lookalike"

2001-10-16  dscho <dscho>

	* main.c: scheduleCopyRegion no longer sends frameBufferUpdates (no
	longer clobbers deferring)

2001-10-16  dscho <dscho>

	* CHANGES, TODO, main.c, rfb.h, rfbserver.c: deferUpdate

2001-10-16  dscho <dscho>

	* TODO, font.c, rfbserver.c: font errors, requestedRegion bug

2001-10-15  dscho <dscho>

	* .gdb_history: unneccessary file

2001-10-13  dscho <dscho>

	* font.c: INT_MAX maybe not defined

2001-10-13  dscho <dscho>

	* TODO: todo

2001-10-13  dscho <dscho>

	* CHANGES, Makefile, README, TODO, auth.c, bdf2c.pl,
	consolefont2c.pl, cursor.c, default8x16.h, draw.c, font.c,
	fontsel.c, keysym.h, main.c, radon.h, rfb.h, selbox.c: rfbSelectBox,
	consoleFonts, too many changes

2001-10-12  dscho <dscho>

	* Makefile: changes to Makefile

2001-10-12  dscho <dscho>

	* README, rfb.h, rfbserver.c: cleanups

2001-10-11  dscho <dscho>

	* auth.c, corre.c, httpd.c, main.c, rfb.h, rfbserver.c, rre.c,
	sockets.c, sraRegion.c, tableinit24.c, tableinittctemplate.c,
	tight.c, zlib.c: replaced xalloc with malloc functions, udp input
	support (untested), fixed http

2001-10-10  dscho <dscho>

	* CHANGES, TODO, main.c, rfb.h, rfbserver.c: copyrect corrections,
	fd_set in rfbNewClient, dox in rfb.h for pthreads problem

2001-10-10  dscho <dscho>

	* Makefile, cursor.c, main.c, rfb.h, rfbserver.c, sockets.c: 
	pthreads corrections

2001-10-09  dscho <dscho>

	* sockets.c: start udp

2001-10-08  dscho <dscho>

	* Makefile, region.h, rfbserver.c: removes region.h

2001-10-07  dscho <dscho>

	* Makefile, README, tabletrans24template.c: fixed 24bit (update was
	garbled)

2001-10-07  dscho <dscho>

	* bdf2c.pl, font.c, main.c, rfb.h, rfbserver.c: font corrections,
	displayHook

2001-10-06  dscho <dscho>

	* README, d3des.c, example.c, example.dsp, httpd.c, kbdptr.c,
	libvncserver.dsp, libvncserver.dsw, main.c, rfb.h, rfbserver.c,
	sockets.c, tableinitcmtemplate.c, tight.c, translate.c, vncauth.c: 
	WIN32 compatibility, removed kbdptr.c

2001-10-05  dscho <dscho>

	* CHANGES, TODO, cursor.c, example.c, main.c, rfb.h, rfbserver.c: 
	changed cursor functions to use screen info, not cursor fixed copy
	rect.

2001-10-05  dscho <dscho>

	* Makefile, bdf2c.pl, example.c, font.c, radon.h, rfb.h: extracted
	font routines from example

2001-10-04  dscho <dscho>

	* CHANGES, Makefile, TODO, main.c, rfb.h, rfbserver.c: 
	rfbDoCopyRect/Region and rfbScheduleCopyRect/Region.

2001-10-04  dscho <dscho>

	* rfb.h: tried to compile on Sparcs. Original cc has problems. ar
	isn't there.

2001-10-04  dscho <dscho>

	* CHANGES, TODO, cursor.c, main.c, rfb.h, rfbserver.c: fixed 2
	pthreads issues, added noXCursor option.

2001-10-03  dscho <dscho>

	* TODO, main.c: working on IRIX pthreads problem

2001-10-03  dscho <dscho>

	* TODO, rfbserver.c: java viewer bug fixed

2001-10-03  dscho <dscho>

	* CHANGES, Makefile, TODO, main.c, rfb.h, rfbserver.c, sockets.c,
	stats.c, tight.c: upgraded to TridiaVNC 1.2.1

2001-10-02  dscho <dscho>

	* Makefile, TODO, cursor.c, d3des.c, main.c, rfb.h, rfbserver.c,
	sockets.c, translate.c, vncauth.c: no more compile warnings, pthread
	final(?) fixes

2001-10-02  dscho <dscho>

	* TODO: some todo items

2001-10-02  dscho <dscho>

	* CHANGES, cursor.c, rfb.h: implemented rfbSetCursor

2001-10-02  dscho <dscho>

	* rfb.h: prototype for rfbSendBell

2001-10-02  dscho <dscho>

	* CHANGES: changes

2001-10-02  dscho <dscho>

	* pnmshow24.c, tableinit24.c, tabletrans24template.c: forgot files
	for 3 bpp

2001-10-02  dscho <dscho>

	* Makefile, README, TODO, example.c, main.c, rfb.h, rfbserver.c,
	sockets.c, tableinitcmtemplate.c, translate.c: support for server
	side colour maps, fix for non-pthread, support for 3bpp

2001-10-01  dscho <dscho>

	* TODO: have to upgrade to newest VNC sources

2001-09-29  dscho <dscho>

	* Makefile, README, TODO, example.c, main.c, rfb.h, rfbserver.c,
	sockets.c: finally fixed pthreads

2001-09-29  dscho <dscho>

	* TODO, cursor.c: nother try

2001-09-29  dscho <dscho>

	* Makefile, cursor.c, main.c, rfb.h, rfbserver.c, sockets.c: more
	pthread debugging

2001-09-29  dscho <dscho>

	* Makefile, main.c, rfb.h: cleaned up pthreads (now compiles) and
	rfb.h (first undefine TRUE)

2001-09-29  dscho <dscho>

	* Makefile, README, TODO, include/X11/X.h, include/X11/Xalloca.h,
	include/X11/Xfuncproto.h, include/X11/Xfuncs.h, include/X11/Xmd.h,
	include/X11/Xos.h, include/X11/Xosdefs.h, include/X11/Xproto.h,
	include/X11/Xprotostr.h, include/X11/keysym.h,
	include/X11/keysymdef.h, include/Xserver/colormap.h,
	include/Xserver/cursor.h, include/Xserver/dix.h,
	include/Xserver/gc.h, include/Xserver/input.h,
	include/Xserver/misc.h, include/Xserver/miscstruct.h,
	include/Xserver/opaque.h, include/Xserver/os.h,
	include/Xserver/pixmap.h, include/Xserver/region.h,
	include/Xserver/regionstr.h, include/Xserver/screenint.h,
	include/Xserver/scrnintstr.h, include/Xserver/validate.h,
	include/Xserver/window.h, main.c, miregion.c, region.h, rfb.h,
	rfbserver.c, sraRegion.c, sraRegion.h, translate.c, xalloc.c: 
	dropped miregion and all the X stuff in favour of Wez' sraRegion,
	added dox

2001-09-28  dscho <dscho>

	* cursor.c, rfb.h: exported rfbReverseByte

2001-09-28  dscho <dscho>

	* cursor.c: don't send a cursor update if there is no cursor

2001-09-28  dscho <dscho>

	* README, TODO: small changes to README (contact) and TODO
	(autoconf?)

2001-09-28  dscho <dscho>

	* Makefile: libvncserver.a is not deleted by make clean

2001-09-28  dscho <dscho>

	* example.c: unnecessary include

2001-09-28  dscho <dscho>

	* Makefile, example.c, rfb.h: now compiles on FreeBSD

2001-09-28  dscho <dscho>

	* Makefile: make clean now cleans mac.o pnmshow.o and example.o

2001-09-27  dscho <dscho>

	* README, cursor.c, main.c, rfb.h, rfbserver.c: added
	setTranslateFunction as member of rfbScreenInfo, cursor may be NULL
	(no cursor).

2001-09-27  dscho <dscho>

	* Makefile, mac.c, rfb.h: try to make OSXvnc run again.

2001-09-27  dscho <dscho>

	* README, TODO, example.c, main.c, rfb.h: docu and cursors in
	examples.

2001-09-26  dscho <dscho>

	* Makefile, README, TODO, example.c, httpd.c, main.c, pnmshow.c,
	rfb.h: API corrections

2001-09-26  dscho <dscho>

	* TODO, main.c, pnmshow.c: adapted pnmshow to aligned width

2001-09-25  dscho <dscho>

	* example.c, tabletranstemplate.c: look for align bug with odd
	width. Bug in vncviewer?

2001-09-25  dscho <dscho>

	* d3des.c, d3des.h, libvncauth/Imakefile, libvncauth/Makefile,
	libvncauth/d3des.c, libvncauth/d3des.h, libvncauth/vncauth.c,
	libvncauth/vncauth.h, vncauth.c: permanently moved authorization

2001-09-25  dscho <dscho>

	* Makefile, rfb.h, storepasswd.c: moved vncauth to libvncserver

2001-09-25  dscho <dscho>

	* .depend: rmoved unneccessary files

2001-09-25  dscho <dscho>

	* Makefile, TODO, cursor.c, example.c, keysym.h, main.c, pnmshow.c,
	region.h, rfb.h, rfbserver.c: fix cursor bug; missing keysym; fix
	align problem on SGI; clean up cursor.c clean up rfb.h a bit; endian
	issues

2001-09-24  dscho <dscho>

	* region.h: forgot file

2001-09-24  dscho <dscho>

	* Makefile, TODO, cursor.c, example.c, include/Xserver/os.h,
	main.c, miregion.c, pnmshow.c, rfb.h, rfbserver.c, sockets.c,
	xalloc.c: bugfix: cursor (works now without xcursor encoding)

2001-09-24  dscho <dscho>

	* cursor.c, example.c, main.c, rfb.h, rfbserver.c: cursor changes

2001-09-23  dscho <dscho>

	* Makefile, README, TODO, cursor.c, example.c, httpd.c, main.c,
	rfb.h, rfbserver.c, sockets.c, zlib.c: cleaned up warnings, cursor
	changes

2001-09-21  dscho <dscho>

	* Makefile, classes/index.vnc, cursor.c, example.c, httpd.c,
	main.c, rfb.h: http added, prepare for cursor

2001-09-20  dscho <dscho>

	* README: changed README at last

2001-09-13  dscho <dscho>

	* Makefile, bdf2c.pl, example.c, radon.h: Now you can write
	something in addition to mouse movements ...

2001-08-14  dscho <dscho>

	* Makefile, example.c, main.c, pnmshow.c: comments & new example:
	pnmshow

2001-08-14  dscho <dscho>

	* example.c, main.c, rfb.h: now lines are drawn for the example,
	first steps to make clients independent.

2001-08-14  dscho <dscho>

	* Makefile, example.c, main.c, rfb.h, rfbserver.c: hooks inserted

2001-08-01  dscho <dscho>

	* Initial revision