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
|
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-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;"
|