1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704
|
2014-05-06 Henrik Sandklef <hesa@sandklef.com>
* cnee/src/cnee_printer.c
* cnee/src/parse.c
* libxnee/include/libxnee/xnee.h
* libxnee/include/libxnee/xnee_resource.h
* libxnee/include/libxnee/xnee_setget.h
* libxnee/include/libxnee/xnee_utils.h
* libxnee/src/xnee.c
* libxnee/src/xnee_error.c
* libxnee/src/xnee_record.c
* libxnee/src/xnee_resource.c
* libxnee/src/xnee_session.c
* libxnee/src/xnee_setget.c
* libxnee/src/xnee_utils.c
Added feature to manually set display to record from.
2014-05-05 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_fake.c
* libxnee/src/xnee_grab.c
* libxnee/src/xnee_km.c
Added support for pause/resume/quit when retyping file. Fixed unseen bug
when removing events twice from queue (prob always worked since
press was followed by release)
2013-06-05 Henrik Sandklef <hesa@sandklef.com>
* gnee/src/main.c:
* gnee/src/callbacks.c:
* gnee/src/recordables.c:
Adding support for pre defined event sets
* libxnee/include/libxnee/xnee_internal.h (_):
Added XNEE_PREDEF_EVENTS for pre defined event sets
* libxnee/include/libxnee/xnee_xinput.h
(xnee_xinput_unrequest_*): macro for unrequesting recording of XI events
2012-10-09 Henrik Sandklef <hesa@sandklef.com>
* pnee/Makefile.am:
* gnee/Makefile.am:
* Makefile.am:
* configure.in:
"Restructuerd incl/excl of builds, as a preparation for obsoleting gui and
applet."
2012-06-28 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_xinput.c:
* libxnee/src/xnee_record.c:
Don't record non XI events if XI is in use
* libxnee/src/xnee_resource.c:
correct handling of --all-events
2012-04-19 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_xinput.c (xnee_xinput_add_devices):
Not recording mouse event when wanting to record kbd only
2012-04-17 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_xinput.c:
Added (c) year 2012
Ok if minor differs when querying XI extension
2012-03-24 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Fixed faulty printout in xosd option (configure script)
2012-02-10 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
Corrected faulty print statement (too few arguments)
* configure.in:
Bumped version
* cnee/src/parse.c:
* cnee/include/parse.h:
* cnee/src/main.c:
* cnee/src/cnee_demo.c:
Added option: record-replay
* cnee/src/main.c (main):
Returning from main with the last return value
2012-01-05 Henrik Sandklef <hesa@bach.sandklef.com>
* configure.in (libgnomeui_LIBS):
Changed the printout when not finding gtk-config
2011-12-13 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_display.c (xnee_add_display_str):
Fixed mem error in realloc
Replaced alloc+realloc with only realloc
2011-12-12 Henrik Sandklef <hesa@sandklef.com>
* gnee/src/gnee_xnee.h:
Added inclusion of xnee_utils.h
* gnee/src/gnee_xnee.c:
Removed unused variables
* gnee/src/main.c:
Corrected faulty version printout
* gnee/src/recordables.c:
Removed unused variable
Added 2011 to (c) year
* gnee/src/callbacks.c (on_ok_button1_clicked):
Removed unused variable
* gnee/src/gnee_xnee.h:
Added proto for gnee_set_xosd_feedback
* cnee/src/cnee_printer.c:
Added 2011 to (c) year
Removed unused variable
(xnee_usage_printer):
Removed unused variable
* cnee/src/cnee_fake.c (xnee_type_help_sub):
Removed unused variable: option_descr
* libxnee/include/libxnee/xnee_setget.h:
Added proto for :
xnee_is_future_clients
xnee_set_new_window_pos_value
* libxnee/include/libxnee/xnee_xinput.h:
Added proto for xnee_xinput_add_devices
* libxnee/src/xnee_display.c:
* libxnee/src/xnee_expr.c:
* libxnee/src/xnee_grab.c:
Removed unused variables
* libxnee/src/xnee_plugin.c:
Removed unused handling of sync callback
* libxnee/src/xnee_record.c:
Removed new_window_pos
* libxnee/src/xnee_utils.c:
Removed unused printout code
* libxnee/src/xnee_time.c:
Added type (unsigned long) for stored_recordFirst_diff
* libxnee/src/xnee_xinput.c (xnee_xinput_add_devices):
Removed unused and/or obsolete code
Added inclusion of xnee_range.h
(xnee_init_xinput): return XNEE_OK
* libxnee/src/xnee_display.c:
Added inclusion of xnee_xinput.h
* libxnee/src/xnee_session.c (handle_xerr):
Removed unused and/or obsolete code
* libxnee/src/xnee_buffer.c:
Added inclusion of xnee_xinput.h
Added 2011 to (c) years
* libxnee/src/xnee_grab.c (xnee_save_or_print):
Removed obsolete and/or unused code
* libxnee/src/xnee_fake.c (xnee_fake_key_event_impl):
Moved declaration of XDevice*
* libxnee/src/xnee_replay.c:
Printout of replayable added
Added inclusion of xnee_xinput.h
* libxnee/include/libxnee/xnee_setget.h:
Added prototype for int xnee_is_forced_core_device_events
* libxnee/src/print.c (xnee_store_mouse_pos):
Bool bo removed, since not used
* configure.in:
Bumping version to 3.10.92
* gnee/src/gnee_xnee.c (gx_start_recording):
Removed printout (stderr)
* libxnee/src/xnee.c (xnee_start):
Returning (XNEE_NO_PROT_CHOOSEN) if nothing to record
* libxnee/src/xnee_range.c (xnee_get_nr_of_data):
Not counting reparentnotify among data to record
* libxnee/src/xnee.c (xnee_start):
Removing debug printouts
* configure.in:
Bumb version
* libxnee/src/xnee.c (xnee_start):
Init data counter to 0
2011-11-28 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_plugin.c:
Removed code already commented away
* libxnee/src/xnee_session.c:
Replacing remaining exit with setting interrupt flag
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Removed faulty printout
* gnee/src/callbacks.c:
Removed calls to set verbose mode
* gnee/src/main.c (main):
Forcing gnee to replay only core events
2011-11-21 Henrik Sandklef <hesa@bach.sandklef.com>
* libxnee/src/xnee_resource.c (]):
Type fixed
2011-11-17 Henrik Sandklef <hesa@sandklef.com>
* pnee/src/callbacks.c:
Added copyright notice (thanks ams)
* configure.in:
Bumping version
Debian => Debian based distros
2011-11-17 Henrik Sandklef <hesa@sandklef.com>
* build/ftp-upload.sh:
Fix for upload directive syntax
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
context display fix now works on Xorg <= 1.12
2011-09-10 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee.c (xnee_start):
* libxnee/src/xnee_display.c (xnee_add_display_str):
* libxnee/src/xnee_fake.c (xnee_type_file):
* libxnee/src/xnee_plugin.c (xnee_use_plugin):
* libxnee/src/xnee_setget.c:
Replaced exit with return
2011-08-25 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Replaced "can not" with "can't"
Removed duplicate entry of texi2html
Removed comment about missing programs when not needed
2011-08-08 Henrik Sandklef <hesa@sandklef.com>
* build/build-cvstag.sh (DATE):
Better error messages
* configure.in:
Bumping version to 3.10
* build/test-dist.sh (XNEE_DIR):
Fix for allowing dir path in dist to test
2011-07-12 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Bumping to 3.09.91
* doc/version.texi:
Bumped date
* libxnee/src/xnee_setget.c (xnee_set_unsync_mode):
Added verbose printout on synd mode set/unset
* doc/xnee_intern.texi:
Replaced "--no-sync" with -ns
* cnee/src/cnee_strings.c:
Replaced "--no-sync" with -ns
* libxnee/include/libxnee/xnee_utils.h:
Changed print format on 64 bit platform
* libxnee/src/xnee_expr.c:
Added xnee session line which caused the error to err printout
* libxnee/src/xnee_record.c:
Fixed format error
2011-07-10 Henrik Sandklef <hesa@sandklef.com>
* cnee/test/src/Makefile (X11_LIB):
Added missing -I and -L to include path
* libxnee/src/xnee_session.c (xnee_close_down):
Setting displays to NULL after closing them
* libxnee/src/xnee_fake.c (xnee_fake_motion_event_impl):
Slightly altered threshold for usleep wrapper (xnee_fake_sleep)
* libxnee/src/xnee_time.c (xnee_calc_sleep_amount_fast):
Rewrote time diff calculator
Removed printf statements
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Printing data from stored x event instead of frmo deviceevaluator
Replaced 100 as buf size with a macro (XI_BUF_SIZE)
spnrintf instead of sprintf
2011-05-05 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
Added support for X.org >= 7 to xnee_record_from_data_display()
bug #33237, Xnee fails to record on RedHat
(xnee_record_from_data_display):
Adding support for X.org > 1 10
2011-04-18 Henrik Sandklef <hesa@sandklef.com>
* cnee/test/src/Makefile (X11_INC):
Added -I/usr/local/include
to compile test code on freebsd
* cnee/test/test_all.sh:
* cnee/test/check_mem.sh:
Updated to use "env" to invoke bash script
2011-03-28 Henrik Sandklef <hesa@bach.sandklef.com>
* doc/xnee_copying:
Added 2011 to (c) year
2011-03-25 Henrik Sandklef <hesa@bruckner.sandklef.com>
* libxnee/src/xnee_xinput.c (xnee_xinput_add_devices):
Increased size of xinput device name (to 100)
2011-03-13 Henrik Sandklef <hesa@sandklef.com>
* doc/xnee_intro.texi:
Typos fixed
* AUTHORS (Authors):
Added Scott Kostyshak to contributors
* doc/xnee_intern.texi:
Typo fix (exists -> exist, doesn't -> don't)
* doc/xnee_prot.texi:
Typo
2011-03-12 Henrik Sandklef <hesa@sandklef.com>
* doc/xnee_intern.texi:
Language fixes
2011-03-01 Henrik Sandklef <hesa@sandklef.com>
* NEWS:
Boiler template for coming version 3.10
2011-02-26 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_range.c (xnee_device_as_delivered):
Not recording device as delivered if X.org > 1.9
2011-03-01 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_range.c (xnee_device_as_delivered):
Typo (<6 => <9) when checking X.org version
2011-02-23 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Prepared for 3.0.9
* NEWS:
Prepared for 3.0.9
2011-02-22 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_fake.c (xnee_fake_motion_event_impl):
Removed unused (and somewhat stupid) test code
* cnee/src/Makefile.am (cnee_SOURCES):
Adding LIBXI (possibly containing libxi) to ld flags
* libxnee/src/Makefile.am (LIB_XNEE_SOURCE_FILES):
Used "#" for commenting out stuff
* NEWS:
Added link to debian bug
2011-02-20 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Removed faulty extra call to AC_INIT
* gnee/src/Makefile.am (gnee_LDADD):
* pnee/src/Makefile.am (pnee_LDADD):
Added LIBXI to d flags (via LIBXI)
* configure.in:
Bumped version (to 3.08.90) to start preps for 3.09
Removed debug printout
Altered check for XI slightly
* libxnee/src/xnee_xinput.c:
Added (c) year
* libxnee/src/xnee_replay.c:
Removed call to xnee_init_xinput
* libxnee/src/xnee_fake.c (xnee_fake_key_event_impl):
Replaced warning print with verbose (was nothing to warn about)
* libxnee/include/libxnee/xnee_utils.h:
Updated (c) year
Added macros for print format
* libxnee/src/xnee_display.c:
Updated (c) year
Minor verbose statements changed
* libxnee/src/xnee_record.c:
Changed print format
Updated (c) year
* libxnee/src/xnee_replay.c (xnee_replay_synchronize):
Minor tweaks
Added init of XI devices
* libxnee/src/xnee_fake.c (xnee_replay_event_handler):
Fixes for XI
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Fixes for XI support (num_valuators reworked)
2011-02-19 Henrik Sandklef <hesa@sandklef.com>
* cnee/src/parse.c (xnee_parse_cnee_option):
Adding recording of XI keyboard events if XI support
* cnee/src/cnee_demo.c (cnee_demonstration):
Added XI support.
Savannah: bug #31231: Replay in demo mode malfunctions
* cnee/src/cnee_printer.c (xnee_usage_printer):
Removed "===" from help printout
2011-01-25 Henrik Sandklef <hesa@sandklef.com>
* xnee/configure.in:
Bumped version to 3.08
2011-01-23 Henrik Sandklef <hesa@sandklef.com>
* pnee/src/Makefile.am:
Adding libs (for Fedora)
2011-01-21 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Bumping to version 3.07.92
2011-01-13 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
Added support to handle X server from Fedora 13, 14 & NoMachine
* pnee/src/pnee_impl.c (pnee_start_replaying):
Removed unused variables
2010-10-27 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_expr.c:
#ifdef:ed away an unused var: tmp_time
* libxnee/include/libxnee/xnee_session.h:
Added prototype for:
xnee_set_x_server_version(xnee_data *xd);
* libxnee/include/libxnee/xnee_xinput.h:
Added prototype for:
xnee_handle_xinput_event_human
* libxnee/include/libxnee/xnee_utils.h:
Added prototype for:
xnee_is_screen_ok
2010-10-26 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee_setget.h:
Added prototypes for:
xnee_set_no_reparent_recording
xnee_unset_no_reparent_recording
xnee_is_no_reparent_recording
* libxnee/include/libxnee/xnee_xinput.h:
Added prototype for: xnee_set_x_server_version
* libxnee/src/xnee_alloc.c:
#ifdef:ed (the very odd) NULL pointer check
* libxnee/src/print.c:
fprintf pointers with "%p" instead of "%d" or "%u"
Added inclusion of xnee_xinput.h
* libxnee/src/xnee_xinput.c:
Added server_time to args when xinput2 disabled
* libxnee/src/xnee_utils.c:
Removed old crappy commented out code
* libxnee/src/xnee_setget.c:
* libxnee/src/xnee_session.c:
* libxnee/src/xnee_resource.c:
* libxnee/src/xnee_replay.c:
* libxnee/src/xnee_record.c:
* libxnee/src/xnee_range.c:
* libxnee/src/xnee_keysym.c:
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/xnee_window.c:
* libxnee/src/xnee_plugin.c:
* libxnee/src/xnee_grab.c:
* libxnee/src/xnee_fileop.c:
Added 2010 to (c) year
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/xnee_fake.c:
#ifdef:ed away code
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/xnee_expr.c:
#ifdef:ed away code
Removed unused variables
* libxnee/src/xnee_display.c:
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/xnee_buffer.c:
#ifdef:ed away code
Added 2010 to (c) year
* libxnee/src/xnee_xinput.c:
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/Makefile.am (PEDANTIC_FLAGS):
Added -fno-strict-aliasing -Wno-unused-parameter
2010-10-25 hesa <hesa@sandklef.com>
* libxnee/src/print.c (xnee_print_distr_list):
Printing display(s) as unsigned ints instead of ints
* libxnee/src/xnee_record.c:
Setting rContext to 0 (instead of NULL)
Fixed some fprintf arg type casts
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
Extending fix for RECORD to be valid for newer Xorg servers
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event_human):
Corrected faulty number of args to print function
Switched to using stored function (instead of fprintf directly)
* libxnee/include/libxnee/xnee.h:
Changed type of time variable (saved_xinput_event) to Time
2010-10-23 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Bumped version to 3.07.90 (preps for 3.08)
Fixes for dvi to pdf program
Check for XI stuff only when XI is enabled
* cnee/src/Makefile.am:
Cleaned up Makefile
* libxnee/include/libxnee/xnee.h:
* libxnee/src/xnee_session.c:
Removed disabling of xinput device by default
Added recording_enabled to xnee_data struct
* libxnee/src/xnee_xinput.c:
Fixes for --disable-xinput-events
2010-10-15 Henrik Sandklef <hesa@sandklef.com>
* gnee/src/Makefile.am:
* pnee/src/Makefile.am:
XNEE_XINPUT_SUPPORT_FLAGS is a flag for the compiler (not a linker),
changing accordingly
* configure.in:
Updated version number to 3.07
Minor fixes when looking for gtk-config, dvipdf
* gnee/src/Makefile.am (gnee_LDADD):
* pnee/src/Makefile.am (pnee_LDADD):
Added ${XNEE_XINPUT_SUPPORT_FLAGS} to linker args
* libxnee/src/print.c (xnee_version):
Added 2010 to (c) year
2010-10-02 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Adding "-ldl" to linker arg if needed
Adding check for XI functions
2010-09-26 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Bumping version to 3.06.96 (in preps for 3.07)
* libxnee/src/xnee_fake.c:
Removed printfs
* libxnee/src/xnee_xinput.c (xnee_get_xinput_event_base):
Preventing more than XQueryExtension call
caching value
* libxnee/src/xnee_buffer.c (xnee_replay_buffer_handler):
Fixed bug in sync buffer
* configure.in:
Bumping version to 3.06.95 (in preps for 3.07)
* doc/xnee_prot.texi:
Added notes on how XI events are stored in session file
* libxnee/src/xnee_utils.c (xnee_is_screen_ok):
Screen nr=0, should of course be an ok screen
* libxnee/src/xnee_expr.c (xnee_expression_handle_project):
Better support to handle strangely recorded screen nr
More fixes to ifdef away xi (N900)
* libxnee/src/xnee_fake.c:
More fixes to ifdef away xi (N900)
* libxnee/src/xnee_utils.c (xnee_is_screen_ok):
New fun to handle strangely recorded screen nr
* libxnee/src/xnee_xinput.c:
Added empty stub for xi human print, if xi disabled
2010-09-25 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_replay.c (xnee_replay_main_loop):
* libxnee/src/xnee_fake.c (xnee_replay_event_handler_sleep_amt):
Removed printf statements (used during devel)
2010-09-25 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_fake.c:
Removed set/unset of verbose mode
2010-09-24 Henrik Sandklef <hesa@sandklef.com>
* NEWS:
Notes from ChangeLog turned into (not yet properly) commented notes
* libxnee/include/libxnee/xnee_fake.h:
Changed fake key fun to macro
Added fun to fake xi key
* libxnee/src/xnee_fake.c:
Added support for replaying XI key event
* libxnee/src/xnee_expr.c (xnee_expression_handle_prim_sub):
Storing of time altered to work with xi and forced core replay
Discard xi events if forced core replay
* libxnee/src/xnee_fake.c (xnee_fake_button_event_impl):
Storing last motion event's X and Y coords for use in coming calls
to xi fake button
* libxnee/src/xnee_xinput.c (xnee_get_xinput_device):
Using fake display when listing and setting up xi devices
* libxnee/test/libtest.c:
Added (c) notice
* cnee/include/parse.h:
* cnee/src/parse.c:
Added options to handle:
forced core replay
replay backend
* libxnee/src/print.c:
Basic functionality of printing xi events for humans added
* libxnee/src/xnee_error.c:
Added: XNEE_XINPUT_EXTENSION_FAILURE, XNEE_REPLAY_BACKEND_FAILURE
* libxnee/src/xnee_fake.c:
Added support for xi buttton
Moved calc of time to sleep to separate fun
(xnee_replay_event_handler_sleep_amt)
Added code to find replay session's device id
(only rudimentary support, based on # instead of name)
* libxnee/src/xnee_record.c:
Removed "#" in front of core event printout
Temp. disabling check for screen
* libxnee/src/xnee_replay.c:
Restructured duplicate code (new static fun
xnee_replay_update_dev_ctr)
Added support for xi buttons
* libxnee/src/xnee_session.c:
Added call to xi init and to set replay backend
* libxnee/src/xnee_setget.c
(xnee_unset_forced_core_device_events):
Added funs to (un)set forced code device replay
* libxnee/src/xnee_xinput.c:
Human printout of xi events
New function to init Xnee's XInput stuff (no device init)
Added code to find replay session's device id
(only rudimentary support, based on # instead of name)
* libxnee/include/libxnee/xnee.h:
Added vars for replay to xi structs
* libxnee/include/libxnee/xnee_fake.h:
Changed fake button fun to macro
Added fun to fake xi buttons
* libxnee/include/libxnee/xnee_xinput.h:
Added funs to init Xnee's XInput stuff (no device init)
* libxnee/include/libxnee/xnee_setget.h:
Added funs to (un)set forced code device replay
2010-09-23 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_strings.c:
* libxnee/include/libxnee/xnee_strings.h:
Added string for replay backend
* libxnee/include/libxnee/xnee_setget.h:
Added funs to handle replay backend
* libxnee/include/libxnee/xnee.h:
Added enum and variable for replay backend
* libxnee/src/xnee_setget.c (xnee_set_replay_backend):
Removed faulty fprintf statement
* configure.in:
Bumping version to 3.06.91 (in preps for 3.07)
* libxnee/src/xnee_fake.c (xnee_fake_motion_event_impl):
Removed crappy printf statement
* libxnee/src/xnee_expr.c (xnee_expression_handle_replay):
Storing time for XI events
* libxnee/include/libxnee/xnee_xinput.h:
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Added server time as argument since we need the time source
* libxnee/src/xnee_fake.c:
Making sure XI motions events are faked as absolute
Improved handling of XI events
* libxnee/src/xnee_replay.c (xnee_replay_main_loop):
Changed to replaying/faking XInput Slave events instead of master
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
Printing a "#" in front of every "normal" motion event (devel fix) v
* doc/xnee_copying:
Updated (c) year
* doc/version.texi:
Updated (c) year
2010-09-22 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Changed exit to print a warning (stderr) and return with errorr code
* configure.in:
Updated version to 3.06.90 to prepare for 3.07
* libxnee/src/xnee_fake.c (xnee_replay_event_handler):
Indentation fix
* libxnee/src/xnee_range.c:
Changed "WARNING" to "NOTIFICATION" in warning text
* libxnee/src/xnee_session.c (xnee_rep_prepare):
Added extra call (for second call of fun :( ) to
xnee_setup_display
Continuing if XNEE_OK returned from xnee_replay_main_loop
* libxnee/src/xnee_record.c:
Enabled recording even if screen < 0
Added print of xnee_data and control dpy in fprintf statement
* libxnee/src/xnee_replay.c:
Removed printf statements
changed a printf into a fprintf(stderr,
* libxnee/src/xnee_session.c:
xnee_setup_display called earlier (N900 fix)
* libxnee/src/xnee_xinput.c:
Updated (c) year
changed a printf into a fprintf
2010-09-18 Henrik Sandklef <hesa@sandklef.com>
* xswine/main.c:
Major rewrite, fprintf and flush to swmouse devs
2010-09-14 Henrik Sandklef <hesa@sandklef.com>
* build/maemo.sh:
Removed unused old settings
Re-enabled clean target
2010-09-13 Henrik Sandklef <hesa@sandklef.com>
* build/maemo.sh:
New file to build Xnee for N900,
(very specific settings)
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
Added support for handling N900 X servers
2010-09-09 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee.h:
Removed hard coded #define of XNEE_XINPUT_SUPPORT
* libxnee/include/libxnee/xnee_xinput.h:
Modified (c) year (only 2010)
Include libxnee/xnee.h alwas done
2010-09-08 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee_xinput.h:
Moved function prototypes outside xinput ifdef
* libxnee/src/xnee_alloc.c (xnee_free_recordext_setup):
free code placed inside NULL checks instead of separate NULL checks
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
Discarding motion event if no screen presented
* libxnee/src/xnee_xinput.c:
Stub code for Xinput2 if xinput disabled
* libxnee/src/Makefile.am:
* cnee/src/Makefile.am:
Added xinput enable/disable support
* configure.in:
--disable-xinput2 (and enable) added
2010-09-07 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee_strings.h:
merge
* libxnee/src/xnee_alloc.c:
Updated (c) year
2010-09-07 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee_settings.h
(XNEE_NR_OF_XINPUT_DEVICES):
Adding XNEE_NR_OF_XINPUT_DEVICES as the max
number of xinput devices handled
2010-09-01 Henrik Sandklef <hesa@sandklef.com>
* libxnee/test/print.c (test_printfuns):
Typo fix: reurn => return
(main): printf typo and formatting
* libxnee/include/libxnee/xnee.h:
Including xnee_settings.h to get the nr of xinput devices
2010-08-31 Henrik Sandklef <hesa@sandklef.com>
* AUTHORS (Authors):
Added Tuukka Pasanen to contributors
* libxnee/test/print.c:
Added return 0 at the end of some function body
Added (c) and license notice
* libxnee/test/test_feedback.c (test_setfeedback):
Added return 0 at the end of the function body
* libxnee/test/test_all.c (test_all):
Added return 0 at the end of the function body
* libxnee/test/libtest.c (test_xnee_data):
Added return XNEE_OK at the end
Added (c) and license notice
* gnee/src/gnee_xnee.c (gnee_get_grab):
Added missing return values
* cnee/src/main.c (cnee_handle_err):
function now returns void
we will discard any errors in the function anyway
* devel-scripts/setup-xi2.sh:
Script to setup and unsetup (-d) xinput devices
* libxnee/src/Makefile.am:
Merged xinput-2 branch
* libxnee/src/xnee.c:
Removed funs: xnee_check_true, xnee_check_false
* libxnee/src/xnee_display.c:
Merged xinput-2 branch
* libxnee/src/xnee_error.c:
Updated (c) years to include 2010
New error code: XNEE_CLI_ERROR
* libxnee/src/xnee_expr.c:
Merged xinput-2 branch
* libxnee/src/xnee_fake.c:
Merged xinput-2 branch
* libxnee/src/xnee_range.c:
Merged xinput-2 branch
* libxnee/src/xnee_replay.c:
Merged xinput-2 branch
* libxnee/src/xnee_session.c:
Merged xinput-2 branch
* libxnee/src/xnee_utils.c (xnee_check_true):
New funs: xnee_check_true, xnee_check_false
* libxnee/src/xnee_strings.c:
Updated (c) years to include 2010
Added string containing name of xinput extension
* libxnee/src/xnee_record.c (xnee_unsetup_recording):
Merged xinput-2 branch
* libxnee/include/libxnee/xnee.h (struct):
Merged xinput-2 branch
2010-08-31 Henrik Sandklef <hesa@sandklef.com>
BRANCH: xinput-2 branch
* cnee/src/parse.c:
* cnee/include/parse.h:
Updated (c) years to include 2010
Added option "--disable-xinput-events"
* libxnee/src/Makefile.am:
Added files: src/xnee_xinput.c include/libxnee/xnee_xinput.c
* libxnee/src/xnee_expr.c:
Added support for managing xinput events
Updated (c) years to include 2010
* libxnee/src/xnee_fake.c:
Added support for faking xinput events
Updated (c) years to include 2010
* libxnee/src/xnee_range.c:
Add static to add_to_list2
Updated (c) years to include 2010
* libxnee/src/xnee_record.c:
Moved xinput funationality to file: xnee_xinput
* libxnee/src/xnee_replay.c:
Skeleton code for replaying XInput device events
* libxnee/src/xnee_session.c:
Using Xnee's Xinput API to disable Xinput by default
* libxnee/src/xnee_setget.c:
Moved xinput funationality to file: xnee_xinput
* libxnee/src/xnee_utils.c:
Moved xinput funationality to file: xnee_xinput
* libxnee/include/libxnee/xnee.h:
Added variables to keep info on whether to record xi mouse/kbd or not
* libxnee/include/libxnee/xnee_fake.h:
Added support for faking xinput events
* libxnee/src/xnee_xinput.c:
New file
* libxnee/include/libxnee/xnee_xinput.h:
New file
2010-08-30 Henrik Sandklef <hesa@sandklef.com>
* AUTHORS (Authors):
Added Fabian Keil to contributors (thanks!)
Made more explicit who of the AUTHORS made what
2010-08-26 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_session.c (xnee_rep_prepare):
After reading meta data, we're now looking at the ret variable and
make sure the called fun has finished with a return value that allows
us to continue
2010-08-25 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_expr.c (xnee_expression_handle_comment):
Removed unused variable len
Updated copyright year
* libxnee/src/xnee_session.c (xnee_rep_prepare):
Return from xnee_rep_prepare() if reading of meta data fails
* libxnee/src/print.c (xnee_human_print_event):
Removed useless assignment wasting "storage"
(xnee_human_print_request):
Removed useless assignment of request_name (wasting "storage")
* libxnee/src/xnee_range.c:
Updated copyright year
Removed unused variable "len"
* libxnee/src/xnee_setget.c:
Better null handling (xnee_set_project_file)
* libxnee/src/xnee.c:
Removed unhandled check of return value
Added copyright year
2010-07-30 Henrik Sandklef <hesa@sandklef.com>
* configure.in (libgnomeui_LIBS):
check for gtk-config
try our best to look for gnome.h file
* pnee/src/pnee_impl.h:
Removed inclusion of gnome.h
2010-06-17 Henrik Sandklef <hesa@haas.sandklef.com>
* doc/Makefile.am (install):
Installation of docs is now depending on BUILDOC
* configure.in:
Added new option: --enable-man
Checks for makeinfo once, uses result many times
Can build guis and manual without all doc stuff
2010-05-27 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_record.c:
Removed debug/printf printout when closing context
* libxnee/src/xnee_session.c:
Re-enabling closing of displays
* cnee/src/main.c (main):
Removing set_verbose in main (huah!!)
* libxnee/src/xnee_keysym.c (xnee_token_to_km):
Checking if keycode/modifier is valid before using it
2010-05-26 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Bumping version to 3.06
* libxnee/src/xnee_resource.c:
Replace "forced-reparent-recording" with
"no-reparent-recording"
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
Don't print reparent event if no-reparent
* libxnee/src/print.c (xnee_print_xnee_settings):
If no-reparent-recording used, print option to file
* libxnee/src/xnee_session.c (xnee_init):
no-reparent turned OFF default
* libxnee/src/xnee_setget.c (xnee_set_no_reparent_recording):
set, get and is functions for no-reparent functionality
* libxnee/include/libxnee/xnee_resource.h (enum XNEE_OPTION_KEYS):
Replace XNEE_FORCED_REPARENT_RECORD with
XNEE_NO_REPARENT_RECORD
* libxnee/include/libxnee/xnee.h (struct):
forced_reparent_recording turned into no_reparent_recording
2010-05-24 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee.h:
Adding structs: saved_xinput_event, xinput_device
Adding enum: XNEE_PROTO_XINPUT_EVENT_MASTER,
XNEE_PROTO_XINPUT_EVENT_SLAVE,
To handle XI2
* libxnee/include/libxnee/xnee_setget.h:
New function prototype: xnee_has_xinput2
* libxnee/include/libxnee/xnee_settings.h:
Macro XNEE_NR_OF_XINPUT_DEVICES to set the nu,ber of XI2 devies
Xnee can manage
* libxnee/src/xnee_utils.c (xnee_init_xinput_devices):
Function to retrieve and store XI2 info
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
Recording Button press/release (not working)
Motion implemented
* cnee/include/parse.h:
Adding enum member CNEE_GET_XINPUT_EVENT_BASE
* cnee/src/parse.c (]):
Adding option: --get-xinput-event-base / -gxbe
* libxnee/src/xnee.c:
Moved util funs to xnee_utils.c
* libxnee/src/xnee_error.c:
Adding generic error in CLI
2010-05-23 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_display.c (xnee_setup_display):
Setting event base for x input extension if XI is available
otherwise setting it to < 0
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
More structured xinput event handling
Filtering out the "incorrect events"
* libxnee/src/xnee_session.c (xnee_init):
X Input extension event base initialised to -1
* libxnee/src/xnee_utils.c:
Added new function: xnee_get_xinput_event_base
Moved two funs here: xnee_check_true, xnee_check_false
* libxnee/src/xnee_strings.c:
* libxnee/include/libxnee/xnee_strings.h:
New string: XNEE_XINPUT_EXTENSION_NAME
to store the name of the X Input Extension
* libxnee/include/libxnee/xnee.h:
Adding support for Xinput Event internally
Return value:
XNEE_XINPUT_EXTENSION_FAILURE ,
All protocol formatting numbers now have a enum value:
enum: xnee_protocol_data_numbers
Adding struct:
xnee_xinput_event
which is used in:
xnee_intercept_data;
xnee_data now has a member:
xinput_event_base;
xnee_script_s now has a member:
xinput_deviceid ;
* libxnee/include/libxnee/xnee_utils.h:
Added new function: xnee_get_xinput_event_base
Moved two funs here: xnee_check_true, xnee_check_false
2010-05-12 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_fileop.c (xnee_free_file):
Checking if file is null before printing (only debug print)
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
Adding code to prepare for new XLIB fixes
* libxnee/src/xnee_record.c:
* libxnee/src/xnee_replay.c:
Using functions in xnee_utils to find which display
to use for sending control data
Removed unused code
* libxnee/src/xnee_session.c (xnee_close_down):
Added some debug printouts
Removed clsoing of data display (don't know what's wrong :( )
* libxnee/include/libxnee/xnee_utils.h:
* libxnee/src/xnee_utils.c:
Added functions:
xnee_record_from_data_display(xnee_data *xd);
xnee_get_display_for_recordcontext(xnee_data *xd);
to handle workaround for Xorg server in 2009-2010
2010-05-11 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
Removed debug printout
Check if string is NULL before strcmp
* cnee/src/main.c:
Removed sleep workaround
* libxnee/src/xnee_record.c:
Removed debug printouts
* libxnee/src/print.c:
Added printing of forced reparent mode when
writing to sessions file
* libxnee/src/xnee_error.c:
Fixed typo (filure => failure)
* libxnee/src/xnee_record.c:
Only recording all ReparentNotify when forced reparent
mode
* libxnee/src/xnee_resource.c:
Added parser functions for new forced reparent
functionality
* libxnee/include/libxnee/xnee.h:
Added variable for new forced reparent
functionality
* libxnee/src/xnee_session.c:
Set forced reparent flag to 0 during init.
* libxnee/src/xnee_setget.c:
Added helper functions (is, set, get) for new forced reparent
functionality
* libxnee/include/libxnee/xnee_resource.h:
Added new enum (XNEE_FORCE_REPARENT_RECORD)
2010-02-06 Henrik Sandklef <hesa@sandklef.com>
* libxnee/test/callback.c (main):
Casting xd to XPointer to silent warning
2010-01-24 Henrik Sandklef <hesa@bach.sandklef.com>
* pixmap/512x512/xnee-new.png
New file (logo) from Luis Santander
2010-01-21 Henrik Sandklef <hesa@schnittke.sandklef.com>
* libxnee/src/xnee_resource.c:
* libxnee/src/xnee_record.c:
Updated (c) year
* libxnee/src/xnee_resource.c (xnee_key2string):
Not crashing due to options[-1] indexing
2010-01-02 Henrik Sandklef <hesa@schnittke.sandklef.com>
* libxnee/src/xnee_record.c (xnee_record_from_data_display):
Checking if x_vendor_name is NULL before use
2009-12-31 Henrik Sandklef <hesa@sandklef.com>
* Makefile.am (EXTRA_DIST):
Adding build/autobuild.sh to dist file
* configure.in:
Added AB_INIT
Preparing for 3.06
* build/autobuild.sh:
New file: Autobuild wrapper
2009-12-30 Henrik Sandklef <hesa@sandklef.com>
* libxnee/test/test-wrapper.sh:
exit instead of return
* libxnee/test/Makefile.am (TEST_WRAPPER):
Adding "./" to test-wrapper.sh since we don't want to add . to PATH
2009-12-29 Henrik Sandklef <hesa@sandklef.com>
* Makefile.am (check):
Cleaner calls to test targets in libxnee and cnee
target check will (soon) not rely on X
target xcheck will need X
* libxnee/test/Makefile.am:
Put test-wrapper in a var
Made separate test when requesting to test with X
* libxnee/test/test_setget.h:
Casts to int before print
* libxnee/test/Makefile.am:
Calling test programs through test-wrapper.sh
* cnee/test/test_all.sh:
No args is handled better
* cnee/test/etc/base_funs:
Added handling of no X up
Function decl./def now in bourne shell syntax
* cnee/test/scripts/options/print-error-name.sh:
* cnee/test/scripts/options/print-error-names.sh:
Redirect misleading (from negative tests) error messages
* cnee/test/scripts/options/print-event-name-human.sh:
Removed test of non existing event
2009-12-26 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
gtk/gnomeui cflags/ldflags fixes
* configure.in:
More fixes to get get rid of pkg-config deps, when not needing it
2009-12-22 Henrik Sandklef <hesa@sandklef.com>
* Makefile.cvs (generate):
Creating autotools dir before generating configure script
Works better with buildbot
2009-12-21 Henrik Sandklef <hesa@sandklef.com>
* Makefile.cvs (generate):
Telling user to run configure with --enable-doc option set
2009-12-20 Henrik Sandklef <hesa@sandklef.com>
* README.cvs:
New file: "Information on where to find info on building from CVS"
* README:
More info about GNU Xnee
Added info on building from CVS
* BUGS:
Better info on bug reporting
* configure.in:
Better support for finding libgnomeui, gtk+
Fixed bug: "Bug report: No package 'libgnomeui-2.0' found"
as reported on the bug-xnee
Fixed faulty usage of pkg-config and gtk and libgnomeui
Removed gnomedesktop from deps in pkg-config
Minor adjustments to search for panelapplet
Workaround for a strange pkg-config/autotools problem
2009-12-16 Henrik Sandklef <hesa@sandklef.com>
* cnee/src/cnee_strings.c (examples):
Added a blank to make example printout ok
2009-12-09 Henrik Sandklef <hesa@sandklef.com>
* Makefile.cvs (generate):
Fixing faulty comment after generating configure script
2009-12-08 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_record.c (xnee_record_from_data_display):
Removed debug printout
2009-12-08 Henrik Sandklef <hesa@bach.sandklef.com>
* libxnee/src/xnee_record.c (xnee_record_from_data_display):
Adding support for old Xorg (Debian):
vendor string: The X.Org Foundation
vendor release number: 10402000
2009-12-07 Henrik Sandklef <hesa@korngold.sandklef.com>
* libxnee/src/xnee_record.c (xnee_record_from_data_display):
Adding checks for X server checks (how to record) on Open Solaris
2009-12-07 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee.h (struct):
More fine grained storage of X version number
added: x_version_minor_sub
* libxnee/src/xnee_record.c (xnee_record_async):
Flushing and syncing displays after record contect creation
Checking if X > Xorg 1.6.0 to choose display to use in
EnableAsync call
Recording is now done with XRecordEnableContextAsync
* libxnee/src/xnee_session.c (xnee_set_x_server_version):
More fine grained storage of X version number
2009-11-23 Henrik Sandklef <hesa@sandklef.com>
* libxnee/test/print.c:
Removing adding of non default displays to distribution test
to let nightly test work better with Xvfb
* libxnee/test/Makefile.am
Removing shared lib for bins
(Xvfb): Adding sleep to make Xvfb starts up before proceeding
* configure.in:
Removing debug sleep
2009-11-22 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_session.c (xnee_set_x_server_version):
Added check for display
Needed for nightly builds without X server up
2009-11-01 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_resource.c (xnee_parse_option_impl):
Added check if NULL ptr when verbose printing
(xnee_key2string):
Added check if NULL ptr when verbose printing
* libxnee/src/xnee_record.c (xnee_has_record_extension):
Adding note that missing RECORD extension is not an Xnee error
2009-06-17 Henrik Sandklef <hesa@korngold.sandklef.com>
* libxnee/src/print.c (xnee_print_xnee_settings):
Fixed seg fault
2009-05-27 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_range.c:
call xnee_set_x_server_version if info not there
* libxnee/src/xnee_record.c:
Creating record context on control display
* libxnee/src/xnee_session.c:
Added some logic debugging code
* libxnee/test/libtest.c (test_xnee_data):
Test updates
* libxnee/include/libxnee/xnee.h:
Added variables (to xnee_data) to store
x server info from the display
Updated (c) year
* libxnee/src/xnee_range.c:
* libxnee/src/xnee_record.c:
* libxnee/src/xnee_alloc.c:
Added checks and work around for faults that appears
to happen only in Xorg 1.6
* libxnee/src/xnee_session.c:
Added fun (xnee_set_x_server_version) to get and store
x server info from the display
* doc/version.texi:
* configure.in:
Version set to 3.04 (and updated date)
Checking for ps2pdf14 as well as ps2pdf
* libxnee/src/print.c (xnee_print_xnee_settings):
Removed ugly merge leftover
2009-05-23 Henrik Sandklef <hesa@bach.sandklef.com>
* doc/Makefile.am (docdir):
Added @ before commands in Makefile (less verbose)
* configure.in:
Print out commands to build also when building gui+applet
* libxnee/src/print.c (xnee_human_print_request_verbose):
Not printing if NULL pointer. Removed seg fault crash on solaris
Updated (c) year
* libxnee/src/feedback.c:
Remove va_list init to NULL
2009-05-22 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_session.c (xnee_close_down):
Checking grab_keys is not NULL before free
* libxnee/src/xnee_grab.c (xnee_new_grab_keys):
Minor coding standard update (added {})
Free old grabs before setting new
* libxnee/src/xnee_alloc.c (xnee_new_xnee_data):
Setting grab_keys to NULL as init value
* configure.in:
* gnee/src/Makefile.am (INCLUDES):
* pnee/src/Makefile.am (INCLUDES):
Better depencency handling (libgnomeui, gtk)
* libxnee/test/Makefile.am (testcallback_SOURCES):
Moved defs before use
* libxnee/src/print.c (xnee_print_xnee_settings):
Fixed ugly typo
2009-05-20 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/print.c (xnee_print_xnee_settings):
Fixed seg fault on solaris, faulty if statement fixed
2009-05-09 Henrik Sandklef <hesa@sandklef.com>
* doc/xnee.texi (Top):
Moved Top node outside of ifinfo statment
* doc/Makefile.am:
Falling back to one rule for ps and pdf
2009-04-27 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_replay.c (xnee_setup_rep_recording):
(c) year updated
* configure.in:
Finally, Version set to 3.03
* src/xnee_plugin.c:
* include/libxnee/xnee_plugin.h:
(c) year updated
2009-04-22 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/print.c (xnee_version):
(c) years updated
* cnee/src/cnee_printer.c:
Minor indentation fixes
Removed unused variables
* libxnee/src/xnee_session.c:
Type casting to int (to remove compiler warnings)
(c) year updated
* libxnee/src/feedback.c:
(c) year updated
Fixed pedantic warnings (function pointer)
* libxnee/src/xnee_alloc.c:
obsoleted function: xnee_reset_retype_info
(c) year updated
* libxnee/src/xnee_callback.c:
(c) year updated
Fixed pedantic warnings
* libxnee/src/xnee_display.c:
Added missing return statement
(c) year updated
Type casting to int (to remove compiler warnings)
* libxnee/src/xnee_expr.c:
Removed unused vars
Chceking return value of system
Safer pointer arithmetics when using stat. buffers
(c) year updated
* libxnee/src/xnee_range.c:
Better check for X.org server
(c) year updated
* libxnee/src/xnee_record.c:
Better screen nr handling
Removed dangerious call to XRecordFreeData
* libxnee/src/xnee_resource.c:
Adding mode in call to xnee_set_plugin_name
* libxnee/src/xnee_strings.c:
Added strings to handle name of
external dl-loaded funs
* libxnee/src/xnee_utils.c:
Added verbose printout
Setting variable leave to 0 on decl.
* libxnee/src/xnee_window.c:
Setting variable win_name to NULL before use
* libxnee/include/libxnee/xnee_setget.h:
* libxnee/src/xnee_setget.c:
Added (c) years
Added prototype for xnee_set_project_file
* libxnee/src/xnee_plugin.c:
Added variable to know where to search
for (dl-loaded) functions
(c) year updated
* libxnee/include/libxnee/xnee_strings.h:
Added names for external callback functions
(c) year updated
* libxnee/include/libxnee/xnee_plugin.h:
Added variable to know where to search
for (dl-loaded) functions
(c) year updated
* libxnee/include/libxnee/xnee_expr.h:
Added missing xnee_is_script prototype
(c) year updated
* libxnee/include/libxnee/xnee_callback.h:
added name of arg (dest) as in c file
(c) year updated
2009-04-21 Henrik Sandklef <hesa@sandklef.com>
* libxnee/test/callback.c:
* libxnee/test/callback_so.c:
* libxnee/test/Makefile.am:
Added test file for dynamic lib (plugin)
* libxnee/src/xnee_plugin.c:
Removed (using macros) unnecassary code
* libxnee/src/xnee_callback.c:
Removed compilation warnings
* libxnee/src/xnee_record.c:
Checking for NULL args in correct order
* libxnee/src/xnee_resource.c:
Removed compilation warnings
* libxnee/include/libxnee/xnee_setget.h:
Removed compilation warnings
by adding some prototypes
2009-04-21 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_grab.c:
Added typedef for X error handlers
Removed compilation warnings
* libxnee/src/xnee_km.c:
Cleaned up code
Removed compilation warnings
Removed obsoleted code
Removed extra arg to get_modifier_from_mapping_sub
* libxnee/src/xnee_setget.c (xnee_set_xnee_data):
Added return XNEE_OK
* libxnee/include/libxnee/xnee_utils.h:
Added prototype for: str2int
* cnee/src/parse.c:
Removed unused variable (need_init)
* libxnee/include/libxnee/xnee_resource.h:
Added prototype for: xnee_find_option_entry_impl
* libxnee/include/libxnee/print.h:
Added prototype for: xnee_print_data_str
* libxnee/include/libxnee/xnee_setget.h:
Added prototype for xnee_set_project_file
* cnee/src/main.c (cnee_handle_err):
Removed unused argument
* cnee/src/main.c:
Cleaned up code from compiler warnings
* cnee/src/cnee_demo.c:
Removed compiler warnings
* cnee/src/Makefile.am (PEDANTIC_FLAGS):
Added -Wno-format to pedantic mode flags,
since we are using non static formats.
2009-04-20 Henrik Sandklef <hesa@gnu.org>
* cnee/src/cnee_fake.c (xnee_type_help_sub):
Removed compiler warnings
More modular printing (using opts as argument)
* libxnee/src/xnee_setget.c:
removed function: int xnee_set_first_list_str(xnee_data *xd, char *str);
Compiler warnings removed
* libxnee/src/xnee_replay.c:
* libxnee/src/xnee_record.c:
Compiler warnings removed
* libxnee/src/print.c (xnee_human_print_event_verbose):
Removed unused variable i
2009-04-19 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_resource.c:
Adjusted parsing type of the xns file
2009-02-23 Henrik Sandklef <hesa@sandklef.com>
* doc/xnee_exampl.texi:
Removing docs on obsoleted reqs
* share/xnee.sh.in1:
Obsoleting fif/file functionality
Using one cnee instance per bash function call
2009-02-17 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_display.c (xnee_add_display):
Better cleaning up
* libxnee/src/xnee_session.c (xnee_record_update_time_left):
New function to calculate time left to record
2009-01-06 Henrik Sandklef <hesa@sandklef.com>
* cnee/src/Makefile.am (cnee.txt):
Adding rules to build cnee manuals (html, text, pdf)
* configure.in:
Fixed uc/lc typo in dvipdf
Removed dvi2ps check (not used anymore)
2008-12-17 Henrik Sandklef <hesa@gnu.org>
* build/profile.sh (FMT):
Defaulting to ps format instead of pdf
* Makefile.am (check):
Test file to exec is testdisplay (not testdisp)
* libxnee/test/disp.c:
* libxnee/test/print.c:
Removing dependency to display :0
reading DISPLAY environmanet variable instead
* libxnee/src/xnee_range.c (is_dangerous_xserver):
Checking if display name string is of zero length, then using NULL
* libxnee/src/xnee_display.c (xnee_add_display):
Fixed faulty return of memory fault
2008-12-17 Henrik Sandklef <hesa@sandklef.com>
* build/coverage.sh:
XVFB display number adjustable
2008-12-11 Henrik Sandklef <hesa@gnu.org>
* build/profile.sh:
* build/coverage.sh:
Adding support for ppc
2008-12-10 Henrik Sandklef <hesa@gnu.org>
* libxnee/test/print.c:
More test code
* libxnee/test/test_setget.h:
Added XNEE_PRINT_ERROR to assert macro
* libxnee/test/print.c (test_rangefuns):
More test cases:
ranges, distribution lists, requests, replies
* libxnee/test/test_setget.h (XNEE_PRINT_ERROR):
Added macro (XNEE_PRINT_ERROR) for printing return values more
nicely in test programs
* libxnee/include/libxnee/print.h:
Commented out function: xnee_rec_print_sys_info
* libxnee/src/xnee_display.c:
Made buffer for display name bigger (now 256 bytes)
Added copyright year 2008
* libxnee/src/print.c:
Added return XNEE_OK when nothing to print
* libxnee/src/xnee_window.c:
Removed warnings in verbose print functions
Added copyright year 2008
* Makefile.am:
Removed old merge leftovers
* libxnee/include/libxnee/print.h:
Added (c) year 2008
* libxnee/src/print.c:
Checking for NULL when human printing requests
* libxnee/test/Makefile.am:
Added print test file to make targets
* libxnee/test/print.c:
More test cases for request/event human printing
2008-12-09 Henrik Sandklef <hesa@gnu.org>
* cnee/test/scripts/options/print-request-name-human.sh:
File for testing request name printing in human format
* cnee/test/scripts/options/print-even-name-human.sh:
File for testing event name printing in human format
* libxnee/test/print.c:
New file
Some print tests
* libxnee/test/test_feedback.c:
Change name of xnee app to feedbacker
* Makefile.am (check):
Adding testfeedback to test
* libxnee/src/feedback.c:
Feedback with no feedback set gives no error
Added some verbose printout
Fixed faulty feedback checks
* libxnee/test/test_setget.c:
Setting name correctly
* libxnee/test/Makefile.am:
Added testfeedback and simplified LD flags a bit
* libxnee/test/test_feedback.c:
New file for testing feedback funs
2008-12-08 Henrik Sandklef <hesa@gnu.org>
* build/profile.sh (DATE):
Stepping beck in dir tree doesn't now depend on successful command
* libxnee/test/Makefile.am:
Added statis ld flags to testsetget bin
2008-12-06 Henrik Sandklef <hesa@gnu.org>
* build/coverage.sh:
Fixed faulty directory (coverage instead of profile)
2008-12-04 Henrik Sandklef <hesa@gnu.org>
* build/profile.sh:
* build/coverage.sh:
exporting DISPLAY variable
* maint.mk:
Adding quoutes to C/CC flags
2008-12-03 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/print.c (xnee_print_xnee_data):
Fixed printf formating, casted pointers int
2008-11-29 Henrik Sandklef <hesa@gnu.org>
* build/coverage.sh:
* build/profile.sh:
Xvfb used to test
Work around for Xvfb (freecolormap) bug?
xterm, xwininfo, xdpyinfo, xset used to generate x11 data
2008-11-27 Henrik Sandklef <hesa@gnu.org>
* build/profile.sh:
* GNUmakefile:
* maint.mk:
* cfg.mk:
New files for GNU testing
2008-11-19 Henrik Sandklef <hesa@gnu.org>
* cnee/src/Makefile.am:
verify-cli: a small rule to test the binary
2008-11-09 Henrik Sandklef <hesa@sandklef.com>
* build/maint-test.sh:
Script to ease up cov testing etc
* doc/xnee_prot.texi:
Adding info on retype-[press|release]-delay option
* cnee/test/test_all.sh:
Adding option (--build) to build help program
* Makefile.am:
Adding test scripts to check rule
* maint.mk:
* GNUMakefile:
* cfg.mk
Files to enable coverage (and more) tests with gnulib
2008-11-06 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Using dvi->pdf and pdf->ps instead
* doc/Makefile.am:
Using eps->pdf rule again
Adjusting doc building rules to build machine
Using dvi->pdf and pdf->ps instead
2008-10-12 Henrik Sandklef <hesa@gnu.org>
* configure.in:
* doc/Makefile.am:
Using texito* tools
* libxnee/src/xnee_resource.c (xnee_options_impl):
Added info that we're dealing with milli seconds to help text
* cnee/src/cnee_printer.c:
Added code to print out retype options help
* cnee/src/cnee_demo.c (cnee_demonstration):
Added call to xnee_renew_xnee_data, to use the new API
* libxnee/xnee_setget.h:
* libxnee/xnee_resource.h:
* libxnee/xnee.h:
Added code the handle new retype delay struct
* libxnee/src/xnee_alloc.c:
Added code the handle new retype delay struct
Typecasted void* to int before comparions of mem pointers
* libxnee/src/xnee_setget.c:
* libxnee/src/xnee_session.c:
Adding function(s) to handle sleep period after faking
key press/release (--retype-press-delay --retype-release-delay)
* libxnee/src/xnee_resource.c (xnee_parse_option_impl):
Adding options to change sleep period after faking key
press/release (--retype-press-delay --retype-release-delay)
* libxnee/src/xnee_fake.c (xnee_type_file):
Changing sleep period after faking key press/release to
use user adjustable delays
2008-10-11 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_fake.c (xnee_type_file):
Added short delay after key release when faking,
since words have been reported to be typed too fast
2008-09-30 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_range.c (xnee_free_ranges):
Setting index to 0 when clearing the array
2008-09-26 Henrik Sandklef <hesa@gnu.org>
* cnee/test:
Switching to latest swinput
* libxnee/src/xnee_prot.texi:
Faulty protocol specs corrected
* configure.in
Building libxnee/test/Makefile
2008-08-07 Henrik Sandklef <hesa@sandklef.com>
* cnee/src/parse.c (xnee_parse_args):
Fixed bug #23965: Uninitialized variable in cnee
* libxnee/include/libxnee/print.h:
Added func headers for printout cases for X11 data
* libxnee/src/print.c (xnee_print_xnee_settings):
Added more printout cases for X11 data
2008-05-15 Henrik Sandklef <hesa@gnu.org>
* doc/Makefile.am:
Added DESTDIR to install target
2008-05-14 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/print.c (xnee_human_print_request_verbose):
Started work on verbnose human printout for requests
2008-05-09 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/print.c (xnee_human_print_event_verbose):
more human printout implementations
2008-05-05 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/print.c (xnee_human_print_event_verbose):
Added function to make human printout more informative
2008-04-14 Henrik Sandklef <hesa@gnu.org>
* doc/xnee_prot.texi:
Resuest printout info corrected.
2008-01-01 Henrik Sandklef <hesa@sandklef.com>
* cnee/src/cnee_printer.c (xnee_usage):
Added XNEE_GRAB_OPTION to the option printout
* libxnee/src/xnee_resource.c (xnee_parse_option_impl):
* libxnee/src/xnee_km.c (xnee_parse_option_impl):
Fixed a bug when reading/using exec-program
2008-01-15 Henrik Sandklef <hesa@gnu.org>
* include/libxnee/print.h
* include/libxnee/xnee.h
* include/libxnee/xnee_resource.h
* include/libxnee/xnee_setget.h
* src/xnee_expr.c
* src/xnee_replay.c
* src/xnee_resource.c
* src/xnee_session.c
* src/xnee_setget.c
Adding keep-autorepeat option
2007-11-05 Henrik Sandklef <hesa@sandklef.com>
* doc/xnee_faq.texi:
xnee-bug => bug-xnee
2007-10-31 Henrik Sandklef <hesa@sandklef.com>
* doc/xnee_install.texi:
Added note on how to configure after CVS checkout
xnee-3.02 used in examples instead of Xnee-1.0
* build/cvs_build.sh (LOG_FILE):
Added configure options to enable build form CVS
* cnee/src/Makefile.am (cnee.info):
Reintroduced rules for generating .texinfo, .1, .info
* configure.in:
Version set to 3.02.80
* Makefile.cvs (generate):
Added note on how to configure after CVS checkout
2007-10-30 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Not using libxnee/test anymore
* cnee/src/Makefile.am:
cnee.1, infopage, textinfo page not generated by default
* libxnee/Makefile.am:
Removing test dir from SUBDIRS
* libxnee/src/Makefile.am:
Removing .a lib, switch to libtool completed
* libxnee/Makefile.am (SUBDIRS):
excluding test dir temporarily
2007-10-29 Henrik Sandklef <hesa@sandklef.com>
* doc/Makefile.am (docdir):
DOC_DEP is used for dependency doc code
DOC_DEP and doc_DATA depends on build type (BUILDDOC)
install rule added to override default
* libxnee/src/xnee_replay.c (xnee_replay_main_loop):
insert break in replay loop if type in event is zero
* configure.in:
updated version to 3.02
DOC_DIR always set
add printout to show if dynamic or static linking will be made
* doc/xnee_faq.texi:
changed question email address to xnee-devel@gnu.org
2007-10-29 Henrik Sandklef <hesa@gnu.org>
* configure.in:
builddoc=false by default
2007-09-24 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/print.c (xnee_print_xnee_settings):
#-printing synchronised replay option in session file
2007-09-15 Henrik Sandklef <hesa@gnu.org>
* cnee/src/Makefile.am:
* libxnee/test/Makefile.am:
Removed dependency to static lib
2007-09-12 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Docs not built by default
Exluding AM_INIT_AUTOMAKE
* libxnee/src/xnee_buffer.c (xnee_replay_buffer_handler):
Removed faulty check
* libxnee/src/xnee_expr.c:
* libxnee/src/xnee_session.c:
Skipping refreshing of ranges since already done elsewhere
Corrected faulty strcnmp (added ==0)
* libxnee/src/xnee_record.c:
Added helper function: xnee_record_handle_event_printer
used in xnee_record_handle_event
* libxnee/src/xnee_replay.c:
Disabled parts of the recording setup
* libxnee/src/xnee_resource.c:
Updated copyrighted years
* libxnee/src/xnee_setget.c:
Disregards argument to first-last
* libxnee/src/xnee_window.c:
Raised move window tries limit to 10
2007-09-11 Henrik Sandklef <hesa@gnu.org>
* gnee/src/main.c (main):
Added new pixmap dir
* gnee/gnee.glade:
Changed icon name to xnee.xpm
* configure.in:
Rules for excluding library install,
libtool stuff added
* Makefile.cvs (generate):
Added libtool stuff
* libxnee/src/Makefile.am (install-exec-local):
Rules for excluding library install
* libxnee/src/xnee_buffer.c (xnee_replay_buffer_handler):
Changed the verbose printout information slightly
* libxnee/test/Makefile.am (libtest_LDADD):
* cnee/src/Makefile.am (libtest_LDADD):
* gnee/src/Makefile.am (libtest_LDADD):
* pnee/src/Makefile.am (libtest_LDADD):
Adding -static to linker to force static linking
* libxnee/src/xnee_error.c (xnee_free_err_name):
Changed name of fun:
xnee_free_err_string ==> xnee_free_err_name
* libxnee/src/print.c:
Printout of XNEE_NO_SYNC_MODE_KEY, XNEE_SYNC_MODE_KEY
XNEE_FIRST_LAST_KEY doesn't print value, uses # instead
2007-09-11 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_resource.c (xnee_parse_option_impl):
made parsing of XNEE_NO_SYNC_MODE_KEY, XNEE_SYNC_MODE_KEY
XNEE_FIRST_LAST_KEY disregard arguments
2007-08-13 Henrik Sandklef <hesa@gnu.org>
* pnee/Makefile.am (install-exec-local):
* pnee/src/Makefile.am (install-exec-local):
target now respects DESTDIR
2007-08-13 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_resource.c (xnee_parse_option_impl):
typo fixed
2007-08-07 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_resource.c (xnee_parse_option_impl):
xnee_replay_offset ==> replay-offset
2007-07-30 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_range.c (is_dangerous_xserver):
Fix for X.org releases, recording of deliv events
seem need a work around
2007-07-09 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/print.c:
Updated version printout according to
new GNU standards.
2007-07-03 Henrik Sandklef <hesa@gnu.org>
* pnee/src/callbacks.c (PNEE_CHECK_CHAR_PTR):
* gnee/src/gnee_xnee.c (GNEE_CHECK_CHAR_PTR):
Added (and used) macro to check mem size to alloc
2007-07-02 Henrik Sandklef <hesa@gnu.org>
* gnee/src/callbacks.h:
* gnee/src/callbacks.c:
* gnee/src/interface.c:
* pnee/src/callbacks.h:
* pnee/src/callbacks.c:
* pnee/src/interface.c:
GPLv3 fixes, About->close works
* configure.in:
Defines function check_doc_program
before usage
2007-06-30 Henrik Sandklef <hesa@gnu.org>
* :
Upgrade to GPLv3
2007-06-18 Henrik Sandklef <hesa@sandklef.com>
* Makefile.am (SUBDIRS):
Added man dir to SUBDIRS
* doc/Makefile.am:
Adding xnee.pdf|ps|gtml|txt to EXTRA_DIST
* configure.in:
Docs are not built by default
(Docs are shipped with the dist file instead)
* cnee/src/cnee_printer.c:
Updated copyright info printout
* libxnee/src/xnee_range.c:
Searching for X server verion fix
* gnee/src/interface.c:
* gnee/src/main.c:
* gnee/src/callbacks.c:
various picture fixes
* pnee/man/pnee.1.in:
* gnee/man/gnee.1.in:
Updated copyright info
* pnee/man/Makefile.am:
* gnee/man/Makefile.am:
Added CLEAN_FILES
* man/Makefile.am:
Building man page instead of static
* man/xnee.1:
Removed file
2007-06-15 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
* man/Makefile.am:
* man/xnee.1:
Added basic man page for GNU Xnee for Debian distr.
2007-05-11 Henrik Sandklef <hesa@gnu.org>
* doc/xnee_faq.texi:
Added more notes on xmodmap etc in FAQ
2007-05-05 Henrik Sandklef <hesa@gnu.org>
* configure.in:
Added note on which deb makeinfo is located in for Ubuntu users
2007-04-16 <hesa@gnu.org>
* src/xnee_session.c
Doing range adding later on, to include RECORD extension fix on correct display
* src/xnee_utils.c
Printing verbose printout to file instead of stderr"
* src/xnee_record.c
some debug stuff added and kept as non-in-use
* src/xnee_range.c
RECORD extension fix
* src/xnee_expr.c
* include/libxnee/xnee_utils.h
moved to debug check to correct place
* doc/xnee_faq.texi
Note about remote replaying to different keyboard mapping
2007-04-12 <hesa@gnu.org>
* libxnee/src/xnee_keysym.c
Fixes for strage Mode_switch ISO_Level3_Shift problem
* libxnee/src/xnee_km.c
Changed args to get_modifier_sub
* libxnee/src/xnee_expr.c
Added a memset
* libxnee/src/xnee_fake.c
added verbose printout
2006-11-25 <hesa@gnu.org>
* doc/xnee_intro.texi
Added note on Xnee as a sniffer tool
2006-11-24 <hesa@gnu.org>
* doc/xnee_progs.texi
Added info on intended users for the various programs
2006-11-24 <hesa@gnu.org>
* libxnee/src/xnee.c
* libxnee/src/xnee_record.c
Removed some debugging fprintf
* gnee/man/Makefile.am
* gnee/man/gnee.1.in
* pnee/man/Makefile.am
* pnee/man/gnee.1.in
New files
* pnee/Makefile.am
* gnee/Makefile.am
Including man dir in dist
* configure.in
Make Makefile in dir: pnee/man gnee/man
* Makefile.am
Added making of pnee and gnee man page when make man
2006-11-23 <hesa@gnu.org>
* doc/xnee.texi
Fixed bad nodes
* doc/Makefile.am
Added xnee_progs.texi for inclusion in dist
* libxnee/src/Makefile.am
Added x11_files.h for inclusion in dist
* libxnee/test/*
Corrected tests for unsigned char instead of int
* libxnee/include/libxnee/x11_files.h
New file (for including X11 headers)
* libxnee/include/libxnee/datastrings.h
* libxnee/include/libxnee/xnee.h
* libxnee/include/libxnee/xnee_buffer.h
* libxnee/include/libxnee/xnee_fake.h
* libxnee/include/libxnee/xnee_keysym.h
* libxnee/include/libxnee/xnee_range.h
* libxnee/include/libxnee/xnee_record.h
* libxnee/include/libxnee/xnee_replay.h
* libxnee/include/libxnee/xnee_resource.h
* libxnee/include/libxnee/xnee_setget.h
* libxnee/src/datastrings.c
* libxnee/src/xnee.c
* libxnee/src/xnee_buffer.c
* libxnee/src/xnee_callback.c
* libxnee/src/xnee_fake.c
* libxnee/src/xnee_grab.c
* libxnee/src/xnee_keysym.c
* libxnee/src/xnee_range.c
* libxnee/src/xnee_replay.c
* libxnee/src/xnee_resource.c
* libxnee/src/xnee_setget.c
* libxnee/src/xnee_threshold.c
* libxnee/src/xnee_time.c
* libxnee/src/xnee_window.c
Using 1 xnee file for X11 inclusion.
set/get mode uses unsigned char
2006-11-22 <hesa@gnu.org>
* libxnee/src/xnee_fileop.c:
* libxnee/include/libxnee/xnee_fileop.h:
Added function, xnee_open_err_file, to open verbose file
* doc/xnee_intro.texi:
* doc/xnee_faq.texi:
Added notes on gnee, pnee
* doc/xnee.texi:
Added chapter on Xnee programs
2006-11-21 <hesa@localhost.localdomain>
* pnee/src/pnee_impl.c
* pnee/src/pnee_impl.h:
* pnee/src/pnee_types.h:
Added code to handle reset on multiple stop presses
2006-11-21 <hesa@gnu.org>
* pnee/src/pnee_impl.[hc]
Various fixes to make recording work again
* libxnee/src/xnee.c
Checking for XNEE_OK_LEAVE in loop
* libxnee/src/xnee_record.c
Making sure ret is set to XNEE_OK
2006-11-20 <hesa@gnu.org>
* pnee/pics/Makefile.am:
Removed rules for files
* doc/xnee_general.texi
Note on stoping with Control-c added
* src/xnee_utils.c
* src/xnee_replay.c
Parser error fixed
* libxnee/src/print.c (xnee_store_mouse_pos):
Fixed fprintf arguments in wrong order
*libxnee/include/libxnee/datastrings.h
*libxnee/include/libxnee/xnee.h
*libxnee/include/libxnee/xnee_range.h
*libxnee/include/libxnee/xnee_record.h
*libxnee/include/libxnee/xnee_resource.h
*libxnee/src/datastrings.c
*libxnee/src/xnee.c
*libxnee/src/xnee_range.c
*libxnee/src/xnee_resource.c
Added define NEED_REPLIES NEED_EVENTS before inclusion of Xproto.h
2006-11-19 Henrik Sandkklef <hesa@gnu.org>
* src/xnee_setget.c
* src/xnee.c
* include/libxnee/xnee_setget.h
* include/libxnee/xnee.h
* include/libxnee/xnee_internal.h
Added code for syntax check
* src/xnee_utils.c
* src/xnee_resource.c
* src/xnee_replay.c
* src/xnee_range.c
* src/xnee_expr.c
Corrected fault when parsing files
* src/xnee_error.c
Corrected fault when parsing files
* src/print.c
Commented away things in recorded file that may break replay
* include/libxnee/xnee_resource.h
Corrected fault when parsing files
* src/parse.c
* src/cnee_demo.c
Corrected fault when parsing files
* include/parse.h
Added code for syntax check
2006-11-09 <hesa@gnu.org>
* doc/xnee_exampl.texi:
--out changed to --out-file
2006-11-08 <hesa@gnu.org>
* doc/gen_faq.sh:
New file to generate FAQ from Manual
* cnee/src/cnee_printer.c:
Changed Xnee to cnee in cnee man/info pages
* doc/xnee_start.texi:
Replaced "--loops" with "--events-to-record"
* libxnee/src/xnee_resource.c:
--time is now a general option (not a record)
minor text adjustment
* cnee/src/main.c
* cnee/src/parse.c
Better handling of failed parsing
2006-10-07 Henrik Sandkklef <hesa@gnu.org>
* doc/xnee_faq.texi
Minor change (better English)
2006-08-20 Henrik Sandkklef <hesa@gnu.org>
* src/print.c
Added printout of delayed start time
* src/interface.c
* gnee.glade
Added copyright notices, and temporary icon
* pixmap/xnee.xpm
Temp icon
* src/interface.c
* gnee.glade
New logo name
* pnee.glade
* src/interface.c
Copyright notices, logo added + various other stuff
* src/pnee_impl.c
* src/main.c
* src/callbacks.c
Copyright notices, logo added + various other stuff
2006-08-11 Henrik Sandkklef <hesa@gnu.org>
* src/xnee_expr.c
Better handling of NEW-WINDOW mark
* xnee_exampl.texi
* xnee_faq.texi
* xnee_install.texi
* xnee_intro.texi
* xnee_prot.texi
* xnee.texi
Adjusted faulty table layout.
Added: gnee info.
Updated FAQ. Replaced xkeymouse with xrebind
2006-06-29 Henrik Sandkklef <hesa@gnu.org>
* libxnee/src/xnee_setget.c
Added function to save one xnee_data ptr
* libxnee/src/xnee_setget.c
Removed faulty code in X err handler
* libxnee/src/xnee_session.c
Removed faulty code in X err handler
* libxnee/src/xnee_record.c
Added handling of interrupt var
* libxnee/src/xnee_grab.c
Added X err handler to handle failed grabs
* libxnee/src/xnee_error.c
Added fault when Xnee is confused over grabs
* libxnee/src/xnee_alloc.c
Remembers newly allocated xd. Used in new funs in
xnee_setget.c
* libxnee/include/libxnee/xnee_setget.h
Adjusted macros for handling interrupt var. Fun for
reading stored xnee_data ptr
* libxnee/include/libxnee/xnee_internal.h
Added macro for silently checking err, and exit if nec.
* libxnee/include/libxnee/xnee.h
Added error when Xnee is confused over grabs
* cnee/src/main.c
using cnee's X err handler
* pnee/*
"Grab and ungrab works. Thread doesn't deadlock :) "
2006-06-27 <hesa@gnu.org>
* libxnee/src/print.c
Adjusted printout
* libxnee/src/Makefile.am
Better installation handling
* cnee/src/Makefile.am
Better installation handling
* src/cnee_strings.c
Fixed help strings
* pnee/src/Makefile.am
Fixed sem lib while linking
* sessions/Makefile.am
* share/Makefile.am
* examples/Makefile.am
Adjusted install path
* doc/Makefile.am
Better installation handling
* configure.in
Better installation handling. Exits after failure....
2006-06-26 <hesa@gnu.org>
* README.debian
Build instructions for Debian
2006-06-25 <hesa@gnu.org>
* src/xnee_replay.c
Added support to stop action using a variable
* src/xnee_record.c
Added support to stop action using a variable
* include/libxnee/xnee_setget.h
Added support to stop action using a variable
* include/libxnee/xnee.h
Added support to stop action using a variable
* include/libxnee/xnee_grab.h
Changed macro XNEE_VERBOSE_MARK to take no arg
* pnee/
Splash before record/replay start
2006-06-21 <hesa@gnu.org>
* pnee/
A lot, still under heavy devel phase.....
* libxnee/src/xnee_expr.c
0 --> XNEE_OK, when returning from fun
* libxnee/include/libxnee/print.h
New macro for printf debugging: XNEE_VERBOSE_MARK
* libxnee/include/libxnee/xnee.h
variable (replayed_events) to set/get nr of recorded/replayed events
* libxnee/src/xnee_fake.c
Using new macros to set/get nr of recorded/replayed events
* libxnee/include/libxnee/xnee_setget.h
New macros to set/get nr of recorded/replayed events
* libxnee/src/xnee_grab.c
* libxnee/include/libxnee/xnee_grab.h
Added fun to read out grabbed keys
* libxnee/src/xnee_record.c
Preparing for reading of replayed events during replay
* libxnee/src/xnee_setget.c
* libxnee/src/xnee_session.c
"Setting replayed events to 0"
2006-06-17 <hesa@gnu.org>
* build/test-dist.sh
New file
* libxnee/src/xnee_expr.c
0 replaced with XNEE_OK
* configure.in:
Preventing multiple generation of Makefiles
Fixed errors in test exprs
Updated version number to 2.05.90
* libxnee/test/libtest.c
Recording more data
2006-06-17 Henrik Sandklef <hesa@gnu.org>
* pnee/*
* configure.in
Various changes to build pnee
2006-06-16 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_grab.c
Removed obsoleted code
* libxnee/src/print_varargs.c
Flush after verbose printout
* pnee/src/callbacks.c
* pnee/src/main.c
Setting err printout file
2006-06-14 Henrik Sandklef <hesa@gnu.org>
* configure.in
* Makefile.am
* Makefile.cvs
Support for Gnome Panel Applet
* gnee/src/support.h
* gnee/src/interface.h
* gnee/src/interface.c
* gnee/src/callbacks.c
* gnee/gnee.glade
Replace About window with new one
2006-05-30 Henrik Sandklef <hesa@gnu.org>
* README
Corrected build documentation
* gnee/src/callbacks.c
* src/xnee_utils.c
All decls after defs
* doc/xnee_proto.texi
* doc/xnee_example.texi
Added doc for recall window position
2006-05-04 Henrik Sandklef <hesa@gnu.org>
* configure.in
Added libxnee/test/Makefile for generation
* doc/Makefile.am
Better handling of various manual formats
* cnee/src/cnee_demo.c
Made printout look more nice
* libxnee/Makefile.am
Excluded libxnee.a from dist
* Makefile.am
Added libxnee/test to dist
Added ChangeLog to dist
Altered manual rule
* libxnee/src/xnee_resource.c
Deleted obsoleted code
* libxnee/src/print.c
Handles faulty input values
* libxnee/src/xnee_replay.c
Reintroduced calls to XSync
* cnee/src/main.c
Error handle handles correct error
* cnee/src/parse.c
Leaving cnee efter printed data (using --print-xxx)
* cnee/test
Various test script fixes
2006-04-07 Henrik Sandklef <hesa@gnu.org>
* cnee/src/cnee_printer.c
Removed strings
* pnee/Makefile.am
Not building po dir
* button share/xnee.sh.in1
Typo fix: buton ->
* libxnee/src/xnee_display.c
Copying returned str from getenv
* libxnee/src/xnee_fileop.c
Making sure not to close stdout/stderr
* libxnee/src/xnee_grab.c
Removed xnee_new_grab_keys(). Setting new grab keys in init
* libxnee/src/xnee_record.c
Removed call to XSynchronize
* libxnee/src/xnee_resolution.c
Moved funs to xnee_setget.c
* libxnee/src/xnee_session.c
Making sure not to close stdout/stderr
* libxnee/src/xnee_setget.c
some new funs. moved some funs to this file
* libxnee/test/libtest.c
Removed comments
* libxnee/test/test_setget.c
Restructured comments
* libxnee/src/xnee_alloc.c
Added checks when freeing mem
* libxnee/src/print.c:
Added null ptr check
* libxnee/src/feedback.c:
Minor updates
* libxnee/include/libxnee/xnee_setget.h:
Added new set/get funs
Moved some funs to this file.
* libxnee/include/libxnee/xnee_grab.h:
Added xnee_data to: xnee_new_grab_keys
* libxnee/include/libxnee/xnee_alloc.h:
Removed header for xnee_new_data from here
* libxnee/include/libxnee/xnee.h:
Added header for xnee_new_data
* cnee/src/parse.c:
Implemented last unimplemented options
with new xnee_option struct
* cnee/src/cnee_printer.c:
Removed strings : explain, examples description
* cnee/src/cnee_fake.c:
Added functions: xnee_type_help_sub, cnee_fake_string
* cnee/src/Makefile.am (bin_PROGRAMS):
Added cnee_demo.h
* cnee/include/parse.h:
Added option key contants (enum)
* cnee/include/cnee_strings.h:
* cnee/src/cnee_strings.c:
Added strings : explain, examples description
* Makefile.am:
Added test rule
2006-03-01 <hesa@gnu.org>
* libxnee/src/xnee_session.c
Removing verbose printouts
* libxnee/src/xnee_resource.c
Adding space in printout
* libxnee/src/xnee_fileop.c
Removing verbose printout
* libxnee/src/print_varargs.c
Make sure fd is OK before printing
* cnee/src/parse.c
Added body to cnee options: --texipage, --manpage
* cnee/src/main.c
Handling XNEE_OK_LEAVE after parse
* cnee/src/Makefile.a
texi_TEXINFOS
* libxnee/include/libxnee/xnee_range.h
Added xne_data as arg to xnee_rem_from_list
* libxnee/include/libxnee/xnee_utils.h
New funs: xnee_str2int xnee_boolstr2int xnee_free_strptr
xnee_print_strptr xnee_str2strptr
New macro: XNEE_ATOI_FUNCTION
* libxnee/include/libxnee/xnee_threshold.h
Moved set/get funs to xnee_setget.[hc]
* libxnee/include/libxnee/xnee_strings.h
New strings: XNEE_EMPTY_STRING XNEE_AUTHORS XNEE_XOSD_FONT
* libxnee/include/libxnee/xnee_setget.h
setget funs moved to this file
* libxnee/include/libxnee/xnee_resource.h
Removed obsoleted code. Rewrote code to fit new xnee_option_t
struct. Moved setget funs to xnee_setget files
* cnee/include/cnee_printer.h
Removed includes. Added: xnee_flags
* libxnee/src/xnee_utils.c
New funs: xnee_str2int xnee_boolstr2int xnee_free_strptr
xnee_print_strptr xnee_str2strptr
* libxnee/src/xnee_threshold.c
Minor indent fix
* libxnee/src/xnee_strings.c
Removed obsoleted strings. Minor adjustments
* libxnee/src/xnee_setget.c
setget funs moved to this file
* libxnee/src/xnee_session.c
Rewrote code to fit new xnee_option_t struct.
* libxnee/src/xnee_resource.c
* libxnee/src/xnee_replay.c
Removed obsoleted code. Rewrote code to fit new
xnee_option_t struct. Moved setget funs to
xnee_setget files
* libxnee/src/xnee_replay.c
Removed obsoleted code
* libxnee/src/xnee_record.c
Added more info on CreatNotify printout
* libxnee/src/xnee_range.c
Rewrote to code fit new xnee_option struct
* libxnee/src/xnee_expr.c
Rewrote expr handling code to fit new xnee_option struct
* libxnee/src/xnee_error.c
new error: XNEE_OK_LEAVE
* libxnee/src/xnee_display.c
Added null ptr check
* libxnee/src/xnee_alloc.c
Added error/signal handlers to init xnee_dtaa code
* libxnee/include/libxnee/xnee.h
new enum bool_string_values. Added new xnee_options code
* libxnee/src/feedback.c
new fun: xnee_get_xosd_font_impl xnee_set_xosd_font_impl
* libxnee/src/print.c
New fun: xnee_print_xnee_data. Adjusted code to new xnee_option struct
* libxnee/include/libxnee/print.h
New fun: xnee_print_xnee_data
* libxnee/include/libxnee/print.h
New fun: xnee_get_xosd_font_impl
* libxnee/include/libxnee/feedback.h
New fun: xnee_get_xosd_font_impl
* cnee/src/parse.h
Added keys for cnee options
* cnee/src/parse.c
Changed print functions to new xnee_options struct
* cnee/src/main.c
Removed signal/error handlers to libxnee.
* cnee/src/cnee_printer.c
Changed print functions to new xnee_options struct
* cnee/include/cnee_fake.h
Removed includes. Added fun xnee_flags
* cnee/include/cnee_strings.h
Removed string constants
2006-03-06 <hesa@gnu.org>
* examples/Makefile.am:
Bug fixes for handling generated example file
* share/Makefile.am:
Bug fixes for handling generated sample file
* cnee/src/Makefile.am:
Bug fixes for handling generated texinfo file
2006-03-02 Henrik Sandklef <hesa@gnu.org>
* gnee/src/callbacks.c:
Added timeout to make the gnee window
get iconified before replaying.
2006-02-28 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_range.c:
return XNEE_OK, instead of 0
* libxnee/src/xnee_alloc.c:
Memory leak fixed
* libxnee/src/xnee_fileop.c:
Add verbose printout
2006-02-28 Henrik Sandklef <hesa@gnu.org>
* xnee/gnee/gnee.glade
* xnee/gnee/src/callbacks.c
* xnee/gnee/src/callbacks.h
* xnee/gnee/src/gnee_xnee.c
* xnee/gnee/src/gnee_xnee.h
* xnee/gnee/src/interface.c
* xnee/gnee/src/support.h
Added support for 'window position adjustment' and 'x,y offset'
2006-02-27 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_session.c:
Reordered closing/freeing of file/mem due to mem leaks.
* libxnee/src/xnee_replay.c:
* libxnee/src/xnee_record.c:
Removed XRecordGetContext check
* libxnee/src/xnee_fileop.c (xnee_free_file):
Rewrote closing of file and freeing og char *
* libxnee/src/xnee_alloc.c:
Added xnee_data when calling xnee_free_ranges
* libxnee/src/xnee_range.c (xnee_free_ranges):
* libxnee/include/libxnee/xnee_range.h:
Added xnee_data as argument to xnee_free_ranges
2006-02-26 Henrik Sandklef <hesa@gnu.org>
* cnee/src/parse.c:
Added new option:
--recall-window-position, -rwp
Removed option:
--record-window-position, -rwp
* libxnee/src/xnee_window.c:
Rewrote parts of the new window pos code
* libxnee/src/xnee_setget.c (xnee_unset_recall_window_pos):
Added new functions:
xnee_set_recall_window_pos (xnee_data *xd)
xnee_unset_recall_window_pos (xnee_data *xd)
* libxnee/src/xnee_resource.c (xnee_get_creat_date):
Removed debug printouts
* libxnee/src/xnee_replay.c:
Added code to handle new window adjustment (or not).
* libxnee/src/xnee_record.c:
Removed faulty code, renamed get_screen_nr to xnee_get_screen_nr.
Handling of ReparentNotify rewritten to fit
this feature being moved to replay
* libxnee/src/xnee_range.c:
Handling of ReparentNotify rewritten to fit
this feature being moved to replay
* libxnee/src/xnee_expr.c:
Added handling of new variables in: xnee_win_pos
* libxnee/include/libxnee/xnee_window.h:
Added:
rel_y rel_x border_w border_h event parent name to xnee_win_pos
* libxnee/include/libxnee/xnee_setget.h:
Added functions:
xnee_unset_recall_window_pos
xnee_set_recall_window_pos (xnee_data *xd);
* libxnee/include/libxnee/xnee.h (struct):
Added variable recall_recorded_win_pos to xnee_data
2006-02-14 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_strings.c:
Added: XNEE_NEW_WINDOW_MARK, XNEE_NEW_WINDOW
* libxnee/src/xnee_session.c (xnee_init):
Store window pos (xd->xnee_info.store_window_pos) defaults to 0
* cnee/src/parse.c:
Added new option: --record-window-position (-rwp)
* libxnee/include/libxnee/xnee_window.h:
New file
* libxnee/include/libxnee/xnee_strings.h:
Added: XNEE_NEW_WINDOW_MARK, XNEE_NEW_WINDOW
* libxnee/include/libxnee/xnee_setget.h:
Added functions: xnee_set_new_window_pos,
xnee_unset_new_window_pos
* libxnee/include/libxnee/xnee_range.h:
Added function: xnee_is_type_nr_set
* libxnee/include/libxnee/xnee_internal.h
(XNEE_RETURN_VOID_IF_ERR):
Macro now prints out err description
* libxnee/include/libxnee/xnee.h:
Added store_window_pos to xnee_record_init_data
* libxnee/src/Makefile.am:
Added: xnee_window.c ../include/libxnee/xnee_window.h
* libxnee/src/xnee_window.c:
New file
* libxnee/src/xnee_resource.c:
* libxnee/src/xnee_setget.c:
* libxnee/src/xnee_replay.c:
* libxnee/src/xnee_record.c:
Added functions and code for new window pos.
* libxnee/src/xnee_range.c (xnee_add_range_str):
Added functions and code for new window pos.
* libxnee/src/xnee_km.c:
Corrected code for EXEC functionality.
* libxnee/src/xnee_grab.c:
Added inclusion of <X11/Xlib.h>
* libxnee/src/xnee_expr.c:
Added functions and code for new window pos.
Corrected code for EXEC functionality.
* libxnee/src/xnee_error.c:
Type fixed, Added error XNEE_WINDOW_POS_ADJ_ERROR
* libxnee/src/print.c:
Added window pos printout
Re-added printout of exec-str
2006-01-21 <hesa@gnu.org>
* libxnee/src/xnee_expr.c:
* libxnee/src/xnee_km.c (xnee_handle_rec_key):
Added nr of execution to program executed by Xnee
2006-01-19 <hesa@gnu.org>
* cnee/src/Makefile.am (cnee.texi):
Adding $(EXEEXT) to cnee (fix fow cygwin)
2006-01-17 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/print.c:
Prevent grabbing when replaying
* doc/xnee_prot.texi:
* doc/xnee_exampl.texi:
Added text for replay offset
* libxnee/include/libxnee/xnee.h:
Added return value: XNEE_BAD_OFFSET
* libxnee/src/xnee_error.c:
Added error text on replay offset (x,y)
* cnee/src/parse.c (xnee_parse_args):
Removed faulty help text on grabbing keys
Parsing of "--replay-offset"
* libxnee/src/print.c (xnee_print_sys_info):
Added program name (if any) printout to recorded file
* libxnee/include/libxnee/print.h:
New macros for verbose on function entry/inside/exit
* libxnee/src/xnee_fake.c (xnee_fake_motion_event):
Add support for X and Y offset during replay
* libxnee/src/xnee_setget.c:
New functions:
xnee_set_replay_offset_str
xnee_set_replay_offset_x
xnee_set_replay_offset_y
xnee_get_replay_offset_x
xnee_get_replay_offset_y
2006-01-09 <hesa@gnu.org>
* Makefile.am (SUBDIRS):
* configure.in:
Added building of examples/Makefile sessions/Makefile
* libxnee/src/Makefile.am:
Added note on noinst_LIBRARIES that does NOT work
* share/Makefile.am (XNEE_DATA_FILES):
Moved examples and sessions dir to seperate Makefiles
* examples/Makefile.am (simple_bash.sh):
Added default paths to simple_bash.sh
* session/Makefile.am:
All files installs in share
* examples/Makefile.am:
All files installs in share
* share/Makefile.am:
Autogenerating xnee.sh with correct
version number
* configure.in:
Adding finding of AWK and BASH
2006-01-08 Henrik Sandklef <hesa@gnu.org>
* doc/xnee_faq.texi:
Changed faulty email addresses
* cnee/src/Makefile.am :
* cnee/src/parse.c:
Added support for generating info page for cnee
2006-01-07 Henrik Sandklef <hesa@gnu.org>
* libxnee/include/libxnee/xnee.h:
Added in_use to xnee_data
* libxnee/src/xnee.c (xnee_start):
Using in_use variable
* libxnee/src/xnee_grab.c:
Grabbing on ->grab instead of ->control
Removed obsoleted code
Added some { }
* libxnee/src/xnee_record.c:
removed obsoleted code
* libxnee/src/xnee_record.c (xnee_record_dispatch):
Using in_use variable
2006-01-07 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_session.c (xnee_init):
Using in_use variable
* cnee/test/etc/base_funs:
Added press_key_from_string
* cnee/src/Makefile.am (cnee.1):
Added (built from cnee) man page to man1_MANS
2005-12-31 Henrik Sandklef <hesa@gnu.org>
* doc/xnee_example.texi:
Added info and example on how to use shell functions
* xneetest/src:
Added utils.c and utils.h
2005-12-30 Henrik Sandklef <hesa@gnu.org>
* share/xnee.sh:
Added shell functions for button press/release
2005-12-29 Henrik Sandklef <hesa@gnu.org>
* configure.in, Makefile.am, share/Makefile.am:
Added Examples and handy shell scripts added to dist
share/xnee.sh
examples/
* Makefile.xnee:
updated to build gnee (not only libxnee and cnee)
* libxnee/test/libtest.c:
Rewrote some test code... sorry no more comments.
* libxnee/test/Makefile:
Removed xosd, altered include path
* libxnee/include/libxnee/xnee_internal.h:
Removed cast to (void) from XNEE_FREE macro
* libxnee/Makefile.am :
Removed Makefile.libxnee Makefile.cvs
* include/libxnee/xnee_range.h:
Renamed xnee_free_lists to xnee_free_ranges
* libxnee/src/xnee_session.c:
Added closing of displays
* libxnee/src/xnee_range.c:
Renamed xnee_free_lists to xnee_free_ranges
Freed memory allocated for ranges
* libxnee/src/xnee_alloc.c:
Replaced xnee_free with XNEE_FREE_AND_NULL
* libxnee/src/xnee_grab.c:
Replaced xnee_free with XNEE_FREE_AND_NULL
* libxnee/src/xnee_plugin.c:
Replaced xnee_free with XNEE_FREE_AND_NULL
* libxnee/src/xnee_display.c:
Freed allocated modifier mapping
* libxnee/src/Makefile.am:
Added support for "-g" option to configure command
* gnee/src/Makefile.am:
Removed INTLLIBS
* gnee/src/gnee_xnee.c:
Added reading of grabbed key boxes and adding those keys to xnee_data
2005-12-08 Henrik Sandklef <hesa@gnu.org>
* gnee/src/interfaces.c
* gnee/gnee.glade
Changed info about gnee and Xnee in about box
libxnee/src/print.c
* Added year 2005 in printout
2005-12-06 Henrik Sandklef <hesa@gnu.org>
* gnee/src/main.c
* gnee/src/gnee_xnee.c
Added macro for program name (gnee)
2005-10-11 Henrik Sandklef <hesa@gnu.org>
* libxnee/src/xnee_buffer.c (xnee_replay_buffer_handler):
Excluding device events from buffer handling in synchronisation
* libxnee/src/xnee_fake.c (xnee_fake_motion_event):
removed recalculation of screen resolution when distributiing events
* libxnee/src/xnee_record.c (xnee_setup_recordext):
Calling set_ranges before recording...
* libxnee/src/xnee_display.c (xnee_add_display_list):
Changed == to <= in
if (disp_len <= 0)
* gnee/src/main.c (main):
program name set to XNEE_GUI
* gnee/src/gnee_xnee.h:
Added macro XNEE_GUI "gnee"
* doc/xnee_exampl.texi:
"--loops" replaced by "--events-to-record"
2005-09-15 Henrik Sandklef <>
* libxnee/src/xnee_fileop.c (xnee_open_files):
"Corrected parse error on "--err-file"
2005-09-14 Henrik Sandklef <>
* configure.in (DOC_TARGETS, DOC_TARGETS):
"Added checks for various binaries used when building manuals"
"Added X_LIBS to LIBS"
"Warns if progrs need by doc isn't found"
2005-09-13 Henrik Sandklef <>
* gnee/src/*.[hc]:
"Made sure copyright notice was present"
2005-08-18 Henrik Sandklef <hesa@localhost.localdomain>
* libxnee/src/xnee_replay.c (xnee_replay_synchronize):
"return;" replaced with "return ret;"
|