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
|
2009-12-18 Philipp Kern <phil@0x539.de>
* configure.ac:
* NEWS: bump version to 0.4.12, document the changes
2009-12-18 Philipp Kern <phil@0x539.de>
* po/*.po: fix up the fuzzyness of some strings
2009-12-07 Armin Burgmeier <armin@arbur.net>
* src/docwindow.cpp: Don't leak the GError in case
gtkspell_new_attach() fails.
2009-12-03 Armin Burgmeier <armin@arbur.net>
* src/header.cpp:
* src/hostdialog.cpp:
* src/joindialog.cpp:
* src/joinprogressdialog.cpp:
* src/window.cpp: Changed strings from British to American English.
Based on a patch by Mackenzie Morgan at Launchpad bug #485408. Bug
#513.
* configure.ac: Added en_GB as a translation.
* po/en_GB.po: Added en_GB translation.
2009-11-23 Armin Burgmeier <armin@arbur.net>
* src/window.cpp: Changed "Do you want to close Gobby nevertheless?"
to "Do you want to close Gobby anyway?". Bug #505.
2009-11-09 Philipp Kern <phil@0x539.de>
* inc/header.hpp:
* inc/window.hpp:
* src/header.cpp:
* src/window.cpp: implement "Save all documents" (Debian bug #459613)
2009-11-09 Philipp Kern <phil@0x539.de>
* inc/joinprogressdialog.cpp:
* src/joinprogressdialog.cpp: set "Session password required" in the
title instead of "Wrong session password" on first try (Debian bug
#544728)
2009-10-10 Armin Burgmeier <armin@arbur.net>
* po/uk.po: Added Ukrainian translation by Yuri Chornoivan. Bug #478.
* configure.ac: Added uk to ALL_LINGUAS.
2009-09-30 Philipp Kern <phil@0x539.de>
* src/docwindow.cpp: use the Gtkmm API for the message dialog
2009-09-30 Philipp Kern <phil@0x539.de>
* configure.ac: add a --with-gtkspell option
* src/docwindow.cpp: wire up the gtksourceview widget with gtkspell
2009-09-23 Philipp Kern <phil@0x539.de>
* po/gobby.pot: refreshed
* po/{ca,el,it,ja,ko,nl,pl,pt,pt_BR,ru,sv,zh_CN}.po: reimported
from Launchpad
2009-09-23 Philipp Kern <phil@0x539.de>
* test/test_document.cpp:
* Makefile.am: remove document test, we are fairly confident that
this works now; causes make check to fail because of incomplete
include lookup paths
2009-09-23 Philipp Kern <phil@0x539.de>
* configure.ac:
* NEWS: bump version to 0.4.11, document the changes
2009-08-31 Philipp Kern <phil@0x539.de>
* src/finddialog.cpp: initialize replace (all) buttons with
mnemonic=true
2009-05-03 Sebastian Morr <blinry@tux-mail.de>
* po/de.po: Updated German translation.
2009-04-21 Benjamin Herr <ben@0x539.de>
* inc/config.hpp:
* src/config.cpp:
* src/main.cpp: Store config in Glib::get_user_config_dir() (Bug #437 by
Cristian Klein).
2009-04-12 Philipp Kern <phil@0x539.de>
* configure.ac:
* po/cs.po: add Czech translation, thanks to Petr Pulc
2009-03-03 Armin Burgmeier <armin@0x539.de>
* inc/header.hpp:
* src/header.cpp: Added a "Save Session As" menu option.
* inc/window.hpp:
* src/window.cpp: Added corresponding functionality. Now "Save
Session" saves to a known location, if any, and "Save Session As"
brings up a File Chooser. Patch by Nick <gentuu@gmail.com>.
2009-02-02 Armin Burgmeier <armin@0x539.de>
* pixmaps/: Removed.
* Makefile.am: Removed pixmaps from distribution.
* icons/hicolor/48x48/actions/chat.png:
* icons/hicolor/48x48/actions/document-list.png:
* icons/hicolor/48x48/actions/user-list.png:
* icons/hicolor/48x48/actions/Makefile.am:
* icons/hicolor/48x48/Makefile.am:
* icons/hicolor/scalable/actions/chat.svg:
* icons/hicolor/scalable/actions/document-list.svg:
* icons/hicolor/scalable/actions/user-list.svg:
* icons/hicolor/scalable/actions/Makefile.am:
* icons/hicolor/scalable/Makefile.am: Added previous pixmaps as icons,
so they are themeable.
* icons/HighContrastLargePrintInverse/48x48/actions/chat.png:
* icons/HighContrastLargePrintInverse/48x48/actions/document-list.png:
* icons/HighContrastLargePrintInverse/48x48/actions/user-list.png:
* icons/HighContrastLargePrintInverse/48x48/actions/Makefile.am:
* icons/HighContrastLargePrintInverse/48x48/apps/gobby.png:
* icons/HighContrastLargePrintInverse/48x48/Makefile.am:
* icons/HighContrastLargePrintInverse/scalable/actions/chat.svg:
* icons/HighContrastLargePrintInverse/scalable/actions/document-list.svg:
* icons/HighContrastLargePrintInverse/scalable/actions/user-list.svg:
* icons/HighContrastLargePrintInverse/scalable/actions/Makefile.am:
* icons/HighContrastLargePrintInverse/scalable/apps/gobby.svg:
* icons/HighContrastLargePrintInverse/scalable/Makefile.am: Added
corresponding HCLPI icons (thanks Tom).
* icons/HighContrastLargePrint/48x48/actions/chat.png:
* icons/HighContrastLargePrint/48x48/actions/document-list.png:
* icons/HighContrastLargePrint/48x48/actions/user-list.png:
* icons/HighContrastLargePrint/48x48/actions/Makefile.am:
* icons/HighContrastLargePrint/48x48/apps/gobby.png:
* icons/HighContrastLargePrint/48x48/apps/Makefile.am:
* icons/HighContrastLargePrint/48x48/Makefile.am:
* icons/HighContrastLargePrint/scalable/actions/chat.svg:
* icons/HighContrastLargePrint/scalable/actions/document-list.svg:
* icons/HighContrastLargePrint/scalable/actions/user-list.svg:
* icons/HighContrastLargePrint/scalable/actions/Makefile.am:
* icons/HighContrastLargePrint/scalable/apps/gobby.svg:
* icons/HighContrastLargePrint/scalable/apps/Makefile.am:
* icons/HighContrastLargePrint/scalable/Makefile.am:
* icons/HighContrastLargePrint/Makefile.am: Added corresponding HCLP
icons (again, thanks Tom).
* icons/Makefile.am: Descend into HigtContrastLargePrint subdirectory.
* inc/icon.hpp:
* src/icon.cpp: Load the custom stock item images from icon name
instead of loading the pixbufs directly, add package icons path to
icon theme search path.
2009-01-30 Armin Burgmeier <armin@0x539.de>
* icons/HighContrastLargePrintInverse/48x48/Makefile.am:
* icons/HighContrastLargePrintInverse/48x48/apps/Makefile.am:
* icons/HighContrastLargePrintInverse/48x48/apps/gobby.png:
* icons/HighContrastLargePrintInverse/scalable/Makefile.am:
* icons/HighContrastLargePrintInverse/scalable/apps/Makefile.am:
* icons/HighContrastLargePrintInverse/scalable/apps/gobby.svg:
* icons/hicolor/48x48/Makefile.am:
* icons/hicolor/48x48/apps/Makefile.am:
* icons/hicolor/48x48/apps/gobby.png:
* icons/hicolor/scalable/Makefile.am:
* icons/hicolor/scalable/apps/Makefile.am:
* icons/hicolor/scalable/apps/gobby.svg:
* configure.ac: Added context ("apps") to icons directory structure.
2009-01-23 Philipp Kern <phil@0x539.de>
* configure.ac:
* NEWS: bump version to 0.4.10, document the changes
2009-01-20 Armin Burgmeier <armin@0x539.de>
* src/encoding_selector.cpp: Fixed get_encoding() and set_encoding()
in case the automatic encoding detection field is not shown. Bug #423.
2009-01-01 Philipp Kern <phil@0x539.de>
* src/window.cpp: translator note that only the English version
of the license statement is actually legally binding
* po/gobby.pot:
* po/ca.po:
* po/de.po:
* po/el.po:
* po/es.po:
* po/fr.po:
* po/he.po:
* po/it.po:
* po/ja.po:
* po/ko.po:
* po/nl.po:
* po/pl.po:
* po/pt.po:
* po/pt_BR.po:
* po/ru.po:
* po/sv.po:
* po/zh_CN.po: template and translations refreshed
2009-01-01 Philipp Kern <phil@0x539.de>
* configure.ac:
* NEWS: bump version to 0.4.9, document the changes
2008-12-19 Armin Burgmeier <armin@0x539.de>
* po/fr.po: Changed application name to "Editeur collaboratif Gobby"
to meet French Gnome standard.
2008-12-19 Armin Burgmeier <armin@0x539.de>
* po/fr.po: Updated translation by Christian Perrier (Debian Bug
#507034).
2008-12-19 Armin Burgmeier <armin@0x539.de>
* po/fr.po: Added translation for the desktop file (Bug #415, Pascal
Kreyer).
2008-12-19 Armin Burgmeier <armin@0x539.de>
* po/de.po: Removed dash from application name, as other GNOME
programs do.
2008-12-18 Armin Burgmeier <armin@0x539.de>
* po/ja.po: Updated Japanese translation by Takao Fujiwara, Bug #397.
2008-12-18 Armin Burgmeier <armin@0x539.de>
* src/window.cpp: When opening a file, convert filename to UTF-8
for document title.
* src/logview.cpp: Convert the date as returned by strftime() from the
current locale to UTF-8.
Patch by Takao Fujiwara, Bug #403.
2008-12-17 Armin Burgmeier <armin@0x539.de>
* icons/hicolor/48x48/gobby.png:
* icons/hicolor/48x48/Makefile.am:
* icons/hicolor/Makefile.am:Added fixed-size version of gobby icon.
* icons/HighContrastLargePrintInverse/48x48/gobby.png:
* icons/HighContrastLargePrintInverse/48x48/Makefile.am:
* icons/hicolor/Makefile.am: Added fixed-size version of HCLPI gobby
icon.
* configure.ac: Generate the new Makefiles.
2008-12-17 Armin Burgmeier <armin@0x539.de>
* contrib/artwork/gobby.svg: Centered the gobby icon into the
document.
* inc/icon.hpp:
* src/icon.cpp: Removed the gobby icon pixbuf.
* src/main.cpp: Lookup the window icon by its icon name.
* src/window.cpp: Lookup the logo icon in the about dialog by icon
name.
* pixmaps/gobby.png: Deleted
* icons/hicolor/scalable/gobby.svg: Added scalable gobby icon.
* icons/hicolor/scalable/Makefile.am: Install it into a proper
location.
* icons/hicolor/Makefile.am: Run update-icon-cache on hicolor theme
after (un)intall.
* icons/HighContrastLargePrintInverse/scalable/gobby.svg: Added
scalable gobby icon for HCLPI theme (Thomas Glatt, Bug #413).
* icons/HighContrastLargePrintInverse/scalable/Makefile.am: Instal it.
* icons/HighContrastLargePrintInverse/Makefile.am: Run
update-icon-cache on HighContrastLargePrintInverse after (un)install.
* Makefile.am: Don't install gobby icon into share/pixmaps anymore.
* configure.ac: Generate the new Makefiles.
2008-12-05 Armin Burgmeier <armin@0x539.de>
* src/chat.cpp:
* src/logview.cpp: Don't force black as default chat color, but use
the theme's default text color (Bug #411).
2008-12-01 Armin Burgmeier <armin@0x539.de>
* src/encoding_selector.cpp:
* src/hostdialog.cpp:
* src/hostprogressdialog.cpp:
* src/statusbar.cpp:
* src/window.cpp: Marked a few more strings for translation. Bug #403,
patch from Takao Fujiwara.
2008-11-23 Armin Burgmeier <armin@0x539.de>
* inc/common.hpp: Added a define for N_.
* src/encoding.cpp: Mark available encodings for translation, and
always make the encoding of the current locale available. Bug #397,
based on a patch from Takao Fujiwara.
* po/*.po: Regenerated for the new translatable encoding string.
2008-11-23 Armin Burgmeier <armin@0x539.de>
* contrib/gobby.desktop: Removed.
* contrib/gobby.desktop.in: Added, with name and comment marked as
translatable.
* configure.ac: Require intltool.
* autogen.sh: Run intltoolize.
* po/POTFILES.in: Added contrib/gobby.desktop.in for translation.
* po/*.po: Updated for the new translation strings.
* Makefile.am: Use intltool to generate contrib/gobby.desktop from
contrib/gobby.desktop.in. Bug #396, based on a patch from
Takao Fujiwara.
2008-11-05 Philipp Kern <phil@0x539.de>
* configure.ac:
* NEWS: bump version to 0.4.8, document the changes
2008-09-23 Armin Burgmeier <armin@0x539.de>
* src/joindialog.cpp: Fixed a crash introduced in the last version
that occurs when using the dialog without the avahi daemon being
running (Bug #266, Yannick_LM)
2008-09-11 Philipp Kern <phil@0x539.de>
* configure.ac: require obby 0.4.6 in pkg-config checks
* NEWS: document the requirement
2008-09-09 Philipp Kern <phil@0x539.de>
* po/*.po: update string locations
2008-09-09 Philipp Kern <phil@0x539.de>
* src/window.cpp: update copyright range to 2008
2008-09-09 Philipp Kern <phil@0x539.de>
* configure.ac:
* NEWS: bump version to 0.4.7, document the changes
2008-09-08 Armin Burgmeier <armin@0x539.de>
* inc/joindialog.hpp:
* src/joindialog.cpp: Added address column to zeroconf session list,
return on get_address() if host and port matches the selection.
* inc/joinprogressdialog.hpp:
* src/joinprogressdialog.cpp: Take a net6::address* that is used for
connection establishment when set (otherwise hostname/port).
* inc/window.hpp:
* src/window.cpp: Set address of JoinProgressDialog from JoinDialog.
2008-09-08 Philipp Kern <phil@0x539.de>
* src/joindialog.cpp: add a note that the behaviour of the zeroconf
list needs to be changed wrt IPv4 and IPv6 address display
2008-08-28 Philipp Kern <phil@0x539.de>
* po/el.po: add Greek translation from Launchpad
* po/he.po: add Hebrew translation from Launchpad
* po/nl.po: add Dutch translation from Launchpad
* configure.ac: activate el, he and nl translations
2008-08-26 Armin Burgmeier <armin@arbur.net>
* configure.ac: Use GtkSourceView2 by default.
2008-08-26 Armin Burgmeier <armin@arbur.net>
* src/window.cpp: Removed the translator credits. They have not been
up-to-date anyway, and other programs don't show translator credits
either.
2008-08-26 Philipp Kern <phil@0x539.de>
* po/gobby.pot: refreshed the translation template
2008-08-26 Armin Burgmeier <armin@arbur.net>
* src/header.cpp: Only use the ige-mac-intergration if we are running
natively on Mac OS X.
* configure.ac: Define OSX_NATIVE if we do so.
2008-08-13 Armin Burgmeier <armin@arbur.net>
* src/preferences.cpp:
* src/preferencesdialog.cpp:
* src/header.cpp: Hide hidden languages from the user interface. These
are not meant to be shown to the user, and they could cause a crash
(bug #374).
2008-07-24 Armin Burgmeier <armin@0x539.de>
* src/joindialog.cpp:
* src/hostdialog.cpp: Added #ifdef GTKMM_ATKMM_ENABLED ... #endif
pairs around the atkmm includes and usages, so that gobby builds
when atkmm is not enabled in gtkmm.
2008-06-25 Yarek Tyshchenko <yarek@britishgraphics.co.uk>
* configure.ac: Require ige-mac-integration when Gobby is complied
natively on OS X.
* src/header.cpp: Integrate the menu bar into the main OS X menu bar.
2008-06-03 Philipp Kern <phil@0x539.de>
* src/logview.cpp: re-enable the cursor for accessibility
2008-06-03 Philipp Kern <phil@0x539.de>
* src/joindialog.cpp: implement accessibility
2008-06-03 Philipp Kern <phil@0x539.de>
* src/hostdialog.cpp: implement accessibility (except for the session
file) in HostDialog
2008-04-15 Philipp Kern <phil@0x539.de>
* po/ja.po: Japanese translation updated
2008-04-15 Philipp Kern <phil@0x539.de>
* po/ja.po:
* configure.ac: add Japanese translation, thanks to MASAMI Chikahiro
2008-01-31 Armin Burgmeier <armin@0x539.de>
* src/config.cpp: File test before loading XML file, this seems to
crash on Windows otherwise.
2008-01-24 Philipp Kern <phil@0x539.de>
* src/header.cpp:
* src/preferences.cpp:
* src/preferencesdialog.cpp:
* src/unix.cpp: Fix build failures with g++-4.3
(thanks to Matthias Klose)
2008-01-20 Armin Burgmeier <armin@0x539.de>
* src/preferences.cpp:
* src/preferencesdialog.cpp:
* src/header.cpp: Don't crash when no GtkSourceView languages are
installed.
2008-01-03 Philipp Kern <phil@0x539.de>
* contrib/gobby.desktop: adhere to the freedesktop.org Desktop
Entry Specification v1.0
2008-01-01 Armin Burgmeier <armin@0x539.de>
* src/preferencesdialog.cpp: Add some spacing to the document
management option group.
2008-01-01 Philipp Kern <phil@0x539.de>
* configure.ac: bump version to 0.4.6
* NEWS: documented the changes
2008-01-01 Philipp Kern <phil@0x539.de>
* po/pt_BR.po, po/pl.po, po/ko.po: added new translations
from Rosetta
* po/*.po: translation roundup fetched from Rosetta
* configure.ac: add pt_BR, pl and ko
2008-01-01 Philipp Kern <phil@0x539.de>
* configure.ac: bump obby dependency to 0.4.5 to get IPv6
autodiscovery
2007-12-16 Armin Burgmeier <armin@0x539.de>
* src/toolwindow.hpp:
* src/toolwindow.cpp: Hide on escape.
2007-11-27 Armin Burgmeier <armin@0x539.de>
* src/docwindow.cpp: Enable indentation-on-tab in gtksourceview1
* configure.in: Require gtksourceview >= 1.8.
2007-10-14 Armin Burgmeier <armin@0x539.de>
* inc/preferencesdialog.hpp:
* src/preferencesdialog.cpp: Don't use the tooltip for the smart
home/end option when gtkmm was built without deprecated API.
* src/logview.cpp: Replaced scroll_to_mark by scroll_to because the
former is deprecated.
* src/docwindow.cpp: Fix gtksourceview1 build.
2007-09-30 Benjamin Herr <ben@0x539.de>
* src/window.cpp: Make sure that the two buttons on the confirmation
dialog when exiting gobby with a session running do not have the same
mnemonics.
2007-09-20 Philipp Kern <phil@0x539.de>
* src/ipc.cpp: added unistd.h to the list of includes to ease porting
to OpenBSD
2007-09-17 Armin Burgmeier <armin@0x539.de>
* src/preferencesdialog.cpp:
* src/header.cpp:
* src/docwindow.cpp:
* src/preferences.cpp: Adapted to latest (and final) GtkSourceView2
API.
2007-08-27 Armin Burgmeier <armin@0x539.de>
* src/historyentry.cpp: Avoid Gtk::Entry::set_text() because it seems
to crash on Vista. Use Gtk::Editable::delete_text and
Gtk::Editable::insert_text instead.
2007-08-27 Armin Burgmeier <armin@0x539.de>
* src/window.cpp: Make sure not to try to send an unsubscription
request twice.
2007-08-18 Armin Burgmeier <armin@0x539.de>
* src/icon.cpp: Win32 build fix.
2007-08-18 Philipp Kern <phil@0x539.de>
* inc/window.hpp:
* src/window.cpp: do not close document if `save as' is cancelled
[fixes #288]
2007-08-18 Philipp Kern <phil@0x539.de>
* NEWS:
* configure.ac: bump version to 0.4.5 and document the changes
2007-08-12 Armin Burgmeier <armin@0x539.de>
* src/window.cpp: Set IO channel encoding to "" when saving files
because we do the necessary conversion ourselves before saving. This
fixes saving non-UTF-8 encoded files.
* src/icon.cpp: Convert pixmap paths to UTF-8 on windows, allowing
gobby to run inside paths containing non-ASCII characters.
* src/preferences.cpp: Include features.hpp for correct gtksourceview2
detection.
2007-08-05 Philipp Kern <phil@0x539.de>
* Place a `Save' button instead of a plain `OK' button in the
`Save file' dialog and set it as the default response.
2007-07-22 Philipp Kern <phil@0x539.de>
* Fix compilation with GtkSourceView 1
2007-07-22 Philipp Kern <phil@0x539.de>
* New Swedish translation by Daniel Nylander [fixes #282]
2007-07-09 Philipp Kern <phil@0x539.de>
* src/main.cpp: bugfix to use IPC by default
2007-07-09 Philipp Kern <phil@0x539.de>
* inc/joindialog.hpp:
* src/joindialog.cpp: add support for IPv6 autodiscovery
2007-07-09 Armin Burgmeier <armin@0x539.de>
* src/preferencesdialog.cpp:
* src/header.cpp:
* src/docwindow.cpp:
* src/preferences.cpp: Adjusted for gtksourceview2 API changes.
2007-06-16 Philipp Kern <phil@0x539.de>
* configure.ac: fixed POSIX compliance
2007-06-16 Philipp Kern <phil@0x539.de>
* po/POTFILES.in: add more source files to be scanned for strings
to be translated
* po/gobby.pot: update, mainly line numbers
* po/ca.po:
* po/pt.po:
* po/es.po:
* po/fr.po:
* po/de.po:
* po/sv.po:
* po/zh_CN.po: translation roundup: new line numbers, some strings
changed by Rosetta contributors
* configure.ac:
* po/it.po:
* po/ru.po: new translations imported from Rosetta
* NEWS: documented new translations
2007-06-15 Philipp Kern <phil@0x539.de>
* NEWS:
* configure.ac: bump version to 0.4.4 and document the changes
* mkinstalldirs: removed from the repository, is symlinked through
autogen.sh
2007-06-15 Philipp Kern <phil@0x539.de>
* src/finddialog.cpp:
* src/window.cpp:
* src/statusbar.cpp:
* src/folder.cpp:
* src/document.cpp:
* src/preferencesdialog.cpp:
* src/main.cpp:
* src/header.cpp:
* src/docwindow.cpp:
* src/preferences.cpp:
* inc/window.hpp:
* inc/document.hpp:
* inc/header.hpp:
* inc/docwindow.hpp:
* inc/preferences.hpp:
* inc/documentlist.hpp: fixed the indentation from two spaces to
one tab and removed some cruft
2007-06-13 Philipp Kern <phil@0x539.de>
* src/chat.cpp: use Gtk::Entry::delete_text(...) instead of
Gtk::Entry::set_text(""); the latter crashes on Windows Vista
2007-06-12 Armin Burgmeier <armin@0x539.de>
* src/documentlist.cpp: fixed a bug related to the document list's
selection (clear the selection in obby_start) [fixes #271]
2007-05-27 Armin Burgmeier <armin@0x539.de>
* inc/sourceview:
* src/sourceview:
* Makefile.am: Remove hand-coded GtkSourceView wrappers.
* configure.ac: Added --with-gtksourceview2 configure option.
* src/finddialog.cpp:
* src/window.cpp:
* src/statusbar.cpp:
* src/folder.cpp:
* src/document.cpp:
* src/preferencesdialog.cpp:
* src/main.cpp:
* src/header.cpp:
* src/docwindow.cpp:
* src/preferences.cpp:
* src/gotodialog.cpp:
* inc/window.hpp:
* inc/folder.hpp:
* inc/document.hpp:
* inc/preferencesdialog.hpp:
* inc/header.hpp:
* inc/docwindow.hpp:
* inc/preferences.hpp: Support GtkSourceview2, use GtkSourceView C API
directly.
2007-05-10 Benjamin Herr <ben@0x539.de>
* inc/documentlist.hpp:
* src/documentlist.cpp: sort document list alphabetically
2007-04-23 Philipp Kern <phil@0x539.de>
* src/togglewindow.cpp: ToggleWindow needs UTILITY hints in any
case
* src/toolwindow.cpp: use DIALOG unconditionally on every ToolWindow
2007-04-23 Philipp Kern <phil@0x539.de>
* src/toolwindow.cpp: use DIALOG hint on *nix, UTILITY on Win32
* src/window.cpp: copyright notice renewed
2007-04-16 Armin Burgmeier <armin@0x539.de>
* src/chat.cpp: Reintroduce user tags in chat which got accidentaly
lost in revision [1515].
2007-04-15 Armin Burgmeier <armin@0x539.de>
* src/joindialog.cpp: Don't allow selection in the error case, use a
single column for both icon and text. Make the dialog resizable.
2007-04-15 Philipp Kern <phil@0x539.de>
* src/joindialog.cpp: failure handling for exceptions thrown
by discover
2007-04-14 Armin Burgmeier <armin@0x539.de>
* src/joindialog.cpp: Only access the currently selected row to set
the content of the host and port entries when there actually is a
selected row.
2007-04-14 Armin Burgmeier <armin@0x539.de>
* inc/joindialog.hpp:
* src/joindialog.cpp: Take a obby::zeroconf_base instead of
obby::zeroconf, do not install timer when using avahi as zeroconf
backend.
* inc/window.hpp:
* src/window.cpp: Use Glib mainloop for avahi zeroconf backend,
otherwise poll it every 1500 milliseconds.
2007-04-14 Philipp Kern <phil@0x539.de>
* configure.ac, Makefile.am: check for Avahi in obby and link against
avahi-glib if Avahi proper is used for Zeroconf support; provide
an additional define WITH_AVAHI for usage within the code
2007-04-09 Armin Burgmeier <armin@0x539.de>
* inc/folder.hpp:
* src/folder.cpp: Added a select_document() function that selects the
page that shows the given document.
* src/userlist.cpp:
* src/documentlist.cpp: Make use of it.
2007-04-09 Philipp Kern <phil@0x539.de>
* src/window.cpp:
* inc/documentlist.hpp:
* src/documentlist.cpp: allow the same in the document list
2007-04-09 Philipp Kern <phil@0x539.de>
* inc/window.hpp:
* src/window.cpp: pass a folder object to the user list
* inc/userlist.hpp:
* src/userlist.cpp: doubleclicks on already subscribed documents now
cause the document to be selected
2007-04-09 Philipp Kern <phil@0x539.de>
* configure.ac: bump version to 0.4.3
* NEWS: note down usability improvements in 0.4.3
2007-04-09 Philipp Kern <phil@0x539.de>
* src/window.cpp: do not show tabs if only one document present
[fixes #220]
2007-04-08 Philipp Kern <phil@0x539.de>
* src/preferencesdialog.cpp: add toolbar setting for "text besides icon"
* src/header.cpp: set important flags of the actions according
to the sensitivity
2007-04-08 Philipp Kern <phil@0x539.de>
* src/window.cpp:
* src/chat.cpp: set urgency hint on window only when chat widget
is visible [fixes #256]
2007-04-07 Philipp Kern <phil@0x539.de>
* inc/userlist.hpp:
* src/userlist.hpp: allow doubleclicks on documents in the userlist
to subscribe to them [fixes #225]
2007-04-07 Philipp Kern <phil@0x539.de>
* inc/document_settings.hpp: signals now pass a non-const
LocalDocumentInfo reference
* inc/window.hpp:
* src/window.cpp: automatically opened tabs should not grab
the focus [finally fixes #232]
2007-04-07 Philipp Kern <phil@0x539.de>
* inc/document_settings.hpp:
* src/document_settings.cpp: add a flag whether the document was
opened automatically or not
2007-04-02 Philipp Kern <phil@0x539.de>
* src/window.cpp:
* inc/preferences.hpp:
* src/preferences.cpp:
* inc/preferencesdialog.hpp:
* src/preferencesdialog.cpp: add new configuration option to open
new remotely-created documents automatically [fixes #232]
2007-04-02 Philipp Kern <phil@0x539.de>
* src/window.cpp: Mention avahi-daemon in failure message.
2007-03-27 Philipp Kern <phil@0x539.de>
* src/window.cpp: Output an error to the console if the zeroconf
daemon is unavailable instead of displaying an annoying message
box.
2007-03-27 Philipp Kern <phil@0x539.de>
* src/preferences.cpp: Fix some mime types. It seems that they
are inconsistent over different distributions, at least the
fixed ones are commonly changed.
2007-03-24 Armin Burgmeier <armin@0x539.de>
* inc/window.hpp:
* src/window.cpp: Focus find and goto dialogs always when the
corresponding actions are triggered. Also do not load them at startup
but as soon as they are required, to improve startup time
[fixes #251].
2007-03-21 Armin Burgmeier <armin@0x539.de>
* src/chat.cpp: Do not print an incoming message as much times as its
number of lines, but only once.
2007-02-25 Armin Burgmeier <armin@0x539.de>
* src/window.cpp: Open output file to save a document with
Glib::IOChannel instead of std::ofstream to get correct conversion of
filename encoding from glib.
2007-02-25 Armin Burgmeier <armin@0x539.de>
* src/ipc.cpp: Define _WIN32_WINNT to get HWND_MESSAGE API.
2007-02-25 Philipp Kern <phil@0x539.de>
* NEWS, configure.in: Bump version to 0.4.2 and document important
changes.
2007-01-02 Philipp Kern <phil@0x539.de>
Moved GlobalUnlock further downwards
(The pointer is only guaranteed to point to the right place within
GlobalLock and GlobalUnlock, thus it might point to an invalid memory
block. [Michael Walter])
2006-12-31 Armin Burgmeier <armin@0x539.de>
Accept absolute file names for IPC [fixes #237]
2006-11-08 Armin Burgmeier <armin@0x539.de>
Keep viewport position on remote operations
2006-11-04 Armin Burgmeier <armin@0x539.de>
Allow subscribing by double click on document list
2006-11-04 Armin Burgmeier <armin@0x539.de>
Libtool stuff
2006-11-04 Armin Burgmeier <armin@0x539.de>
Do not set modified flag when opening a local file [fixes #214]
2006-10-26 Philipp Kern <phil@0x539.de>
Put the urgency hint into the preferences dialog
2006-09-05 Philipp Kern <phil@0x539.de>
MingW compilation fix: windres now detected by autoconf
2006-09-05 Philipp Kern <phil@0x539.de>
MingW compilation fix
2006-08-27 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-08-27 Philipp Kern <phil@0x539.de>
Bump version to 0.4.1
2006-08-21 Armin Burgmeier <armin@0x539.de>
Load pixmaps from pixmaps/ if not found in PIXMAPS_DIR
2006-08-21 Philipp Kern <phil@0x539.de>
Move the PNGs out of contrib/artwork into pixmaps
2006-08-21 Philipp Kern <phil@0x539.de>
Remove inline pixmaps and use the external graphics in any case
2006-08-17 Philipp Kern <phil@0x539.de>
Removed Gobby::Atomic, no longer needed
2006-08-17 Philipp Kern <phil@0x539.de>
Translation roundup
2006-08-17 Philipp Kern <phil@0x539.de>
Updated the manual page
2006-08-16 Philipp Kern <phil@0x539.de>
Bump version to 0.4.0rc4 and depend on obby-0.4.0rc4 or higher
2006-08-16 Armin Burgmeier <armin@0x539.de>
Preselect line in GotoDialog
2006-08-16 Armin Burgmeier <armin@0x539.de>
Do not allow self-highlighting
2006-08-15 Philipp Kern <phil@0x539.de>
Updated NEWS
2006-08-14 Philipp Kern <phil@0x539.de>
Moved the contents of the View menu to Edit
2006-08-14 Armin Burgmeier <armin@0x539.de>
Set type hint of tool windows to UTILITY
2006-08-11 Armin Burgmeier <armin@0x539.de>
Renamed disable-ipc to new-instance
2006-08-08 Armin Burgmeier <armin@0x539.de>
Made statusbar more standard-compliant
2006-08-08 Armin Burgmeier <armin@0x539.de>
Added --join and --disable-ipc command line options
2006-08-08 Armin Burgmeier <armin@0x539.de>
Set urgency hint when chat messages arrive
2006-08-08 Philipp Kern <phil@0x539.de>
Save user-modified palettes in the configuration [fixes #181]
2006-08-07 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-08-07 Philipp Kern <phil@0x539.de>
Bumped version to 0.4.0rc3
2006-08-07 Philipp Kern <phil@0x539.de>
Strictened the build-dependency on obby-0.4.0rc3
2006-06-16 Philipp Kern <phil@0x539.de>
GCC 3.3 compile fixes
2006-06-15 Philipp Kern <phil@0x539.de>
Do not crash when threads are already initialised
2006-06-07 Philipp Kern <phil@0x539.de>
Replace "Shows up" by "Displays"
2006-06-07 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-06-06 Philipp Kern <phil@0x539.de>
Depend on obby >= 0.4.0rc2; bump version to 0.4.0rc2
2006-06-07 Armin Burgmeier <armin@0x539.de>
Fix SEGV caused by wrong usage of Gtk::AccelKey [fixes #163]
2006-06-04 Philipp Kern <phil@0x539.de>
Translation roundup; new Catalan translation, thanks to Jordi Mallach
2006-06-04 Philipp Kern <phil@0x539.de>
Bumped gobby.pot to reflect the current source code locations
2006-05-07 Philipp Kern <phil@0x539.de>
Add document test to the `make check' testrunner
2006-05-07 Armin Burgmeier <armin@0x539.de>
Added append tests
2006-05-07 Armin Burgmeier <armin@0x539.de>
Added support for obby::text::npos to Document::erase and
Document::get_slice
2006-05-07 Armin Burgmeier <armin@0x539.de>
Added Document test
2006-05-07 Armin Burgmeier <armin@0x539.de>
Added Document::clear()
2006-05-06 Philipp Kern <phil@0x539.de>
Check for substrings in Win32 detection
2006-04-24 Armin Burgmeier <armin@0x539.de>
Added contrib/artwork/doclist.png to EXTRA_DIST [fixes #152]
2006-04-19 Philipp Kern <phil@0x539.de>
Add a man page for Gobby
2006-04-16 Philipp Kern <phil@0x539.de>
Do not depend on JoinDialog creation on invokation
2006-04-15 Philipp Kern <phil@0x539.de>
Check for a generic zeroconf target in obby
2006-04-15 Philipp Kern <phil@0x539.de>
Expand the artists' credits
2006-04-11 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2006-04-10 Armin Burgmeier <armin@0x539.de>
src/gselector.cpp: Added idle call in timout handler.
This is a workaround for a possible bug in glib: A connection to
Glib::signal_io is not triggered without waking up the main loop
once more.
2006-04-10 Philipp Kern <phil@0x539.de>
Enable URL support on Mac OS X
2006-04-10 Philipp Kern <phil@0x539.de>
Updates to INSTALL
2006-04-10 Philipp Kern <phil@0x539.de>
Little wrapping issue in translation
2006-04-10 Philipp Kern <phil@0x539.de>
Reorder the PKG_CHECK_MODULES calls
2006-04-09 Armin Burgmeier <armin@0x539.de>
Use Gobby's color selection palette in JoinProgressDialog color prompt
2006-04-09 Armin Burgmeier <armin@0x539.de>
Fixed a thread-related issue that could cause a SEGV on
connection loss
2006-04-01 Armin Burgmeier <armin@0x539.de>
Inherit Document from sigc::trackable
2006-03-31 Philipp Kern <phil@0x539.de>
gtk-connect does not work on buttons on Mac; reason unknown
2006-03-31 Philipp Kern <phil@0x539.de>
Update version to 0.4.0rc1
2006-03-31 Philipp Kern <phil@0x539.de>
Some kind of translation roundup, very limited
2006-03-30 Philipp Kern <phil@0x539.de>
Empty the TODO for now
2006-03-31 Philipp Kern <phil@0x539.de>
Updated README
2006-03-30 Armin Burgmeier <armin@0x539.de>
Align info labels in preferences dialog to the left
2006-03-30 Armin Burgmeier <armin@0x539.de>
Set priority of user tags lower than GtkSourceView's bracket
highlighting tag
2006-03-30 Armin Burgmeier <armin@0x539.de>
Initialize gnome-vfs correctly
2006-03-30 Armin Burgmeier <armin@0x539.de>
Link http URLs in LogView when compiled --with-gnome [fixes #80]
2006-03-30 Philipp Kern <phil@0x539.de>
Include the stat header
2006-03-30 Armin Burgmeier <armin@0x539.de>
Fixed config class
2006-03-29 Armin Burgmeier <armin@0x539.de>
Fixed Config::ParentEntry::supply_value
2006-03-29 Philipp Kern <phil@0x539.de>
Depend on gnome-vfs-2.0 when compiled with GNOME support
2006-03-29 Armin Burgmeier <armin@0x539.de>
Refactored Config class
2006-03-28 Armin Burgmeier <armin@0x539.de>
Print remove command errors to chat
2006-03-28 Armin Burgmeier <armin@0x539.de>
Use default context in ipc.cpp
2006-03-28 Armin Burgmeier <armin@0x539.de>
Avoid unnecessary compiler warnings
2006-03-27 Armin Burgmeier <armin@0x539.de>
Added timeout capability to GSelector, enable keepalives [fixes #131]
2006-03-25 Armin Burgmeier <armin@0x539.de>
Added document list item
2006-03-25 Armin Burgmeier <armin@0x539.de>
Remember position of tool windows
2006-03-25 Armin Burgmeier <armin@0x539.de>
set initially given font name in Font::set when font selector is
never realized
2006-03-25 Armin Burgmeier <armin@0x539.de>
Send command line parameters only to other gobbys owned by the
same user
2006-03-25 Armin Burgmeier <armin@0x539.de>
Win32 IPC using hidden windows
2006-03-25 Armin Burgmeier <armin@0x539.de>
Changed another occurence of obby-0.3 in configure script
2006-03-25 Philipp Kern <phil@0x539.de>
Depend on net6-1.3 and obby-0.4
2006-03-25 Armin Burgmeier <armin@0x539.de>
Pass command line parameters to remote Gobby instanc
2006-03-24 Philipp Kern <phil@0x539.de>
Bump version to 0.3.99 to avoid confusion with final versions
2006-03-24 Armin Burgmeier <armin@0x539.de>
Do not explictely request encryption, this is done by obby
2006-03-24 Armin Burgmeier <armin@0x539.de>
Pack statusbar frames without space
2006-03-24 Armin Burgmeier <armin@0x539.de>
Some fixes to JoinProgressDialog
2006-03-24 Philipp Kern <phil@0x539.de>
Cosmetic changes to remove the references to RSA
2006-02-08 Benjamin Herr <ben@0x539.de>
fixed possible out-of-bounds condition in convert2unix
2006-03-20 Armin Burgmeier <armin@0x539.de>
Protect GSelector by a mutex
2006-03-17 Philipp Kern <phil@0x539.de>
Initial NEWS section for 0.4.0
2006-03-19 Armin Burgmeier <armin@0x539.de>
Send chat messages beginning with '/' as command
2006-03-19 Armin Burgmeier <armin@0x539.de>
Activate goto button when pressing enter
2006-03-17 Philipp Kern <phil@0x539.de>
We're in 2006
2006-03-17 Armin Burgmeier <armin@0x539.de>
Reenabled user color change (has been dropped accidently)
2006-03-17 Armin Burgmeier <armin@0x539.de>
Replaced DefaultDialog by Gtk::Dialog::set_default_response
[fixes #117]
2006-03-15 Armin Burgmeier <armin@0x539.de>
Use Gtk::Statusbar instead of Gtk::Frame for status bar
2006-03-15 Armin Burgmeier <armin@0x539.de>
Added toggle button to hide chat [fixes #134]
2006-03-15 Armin Burgmeier <armin@0x539.de>
Added chat icon by Benjamin Herr
2006-03-15 Armin Burgmeier <armin@0x539.de>
Added font selection to preferences [fixes #123]
2006-03-14 Armin Burgmeier <armin@0x539.de>
Implemented EncodingSelector::remove_text for compatibility
with gtkmm < 2.8
2006-03-14 Armin Burgmeier <armin@0x539.de>
Reopen host/join dialog after hosting/joining failed [fixes #130]
2006-03-10 Armin Burgmeier <armin@0x539.de>
Show suffixed name in window title and document list [fixes #111]
2006-03-10 Armin Burgmeier <armin@0x539.de>
Removed "Connection is now encrypted" debug message
2006-03-10 Armin Burgmeier <armin@0x539.de>
Hide mime type column in file preferences page
2006-03-10 Armin Burgmeier <armin@0x539.de>
Added mnemonics to main menu bar
2006-03-10 Armin Burgmeier <armin@0x539.de>
Removed remaining references to mimemap
2006-03-09 Armin Burgmeier <armin@0x539.de>
Ctrl+Alt+PgDown/Up shifts document [fixes #112]
2006-03-09 Armin Burgmeier <armin@0x539.de>
Added filelist to preferences
2006-03-08 Armin Burgmeier <armin@0x539.de>
Replaced mime map by file list in preferences
2006-03-07 Armin Burgmeier <armin@0x539.de>
Disable OK button in password dialog when passwords do not match
2006-03-07 Armin Burgmeier <armin@0x539.de>
Added application state frags controlling header sensitivity
2006-03-06 Armin Burgmeier <armin@0x539.de>
Do not allow subscriptions to non-UTF-8-encoded documents
2006-03-06 Armin Burgmeier <armin@0x539.de>
Store original encoding in document settings [fixes #65]
2006-03-05 Armin Burgmeier <armin@0x539.de>
Added encoding selection in file chooser
2006-03-05 Armin Burgmeier <armin@0x539.de>
Do not delete buffer after session closure, allow saving of closed
sessions
2006-03-02 Philipp Kern <phil@0x539.de>
Transform the ok button into a host one in the host dialog
2006-03-02 Philipp Kern <phil@0x539.de>
Use a connect button instead of ok in the join dialog
2006-02-28 Armin Burgmeier <armin@0x539.de>
Introduced document settings to store document's original encoding
2006-02-28 Armin Burgmeier <armin@0x539.de>
Send UTF-8 as encoding
2006-02-26 Armin Burgmeier <armin@0x539.de>
Disable subscribe button when subscription request has been sent
[fixes #126]
2006-02-24 Armin Burgmeier <armin@0x539.de>
alt+n switches tabs
2006-02-23 Armin Burgmeier <armin@0x539.de>
Restored left gravity cursor on remote insert
2006-02-23 Armin Burgmeier <armin@0x539.de>
Gobby seems to work now, but still needs further testing
2006-02-22 Armin Burgmeier <armin@0x539.de>
Made Gobby compile again - does still not work
2006-02-19 Armin Burgmeier <armin@0x539.de>
Adjusted GSelector to new selector principle
2006-02-14 Philipp Kern <phil@0x539.de>
Experimental patch for client-initiated encryption
2006-02-06 Armin Burgmeier <armin@0x539.de>
Replaced buffer wrappers by GSelector
2006-02-03 Armin Burgmeier <armin@0x539.de>
Added obby/document.hpp include since it is heavily decoupled from
obby itself
2006-02-02 Armin Burgmeier <armin@0x539.de>
Changed buffer wrapper to match obby's new_net()
2006-01-30 Armin Burgmeier <armin@0x539.de>
Temporary adjustments for document template parameter in document info
2006-01-29 Armin Burgmeier <armin@0x539.de>
Temporary adjustments to document type template in obby::document_info
2006-01-26 Armin Burgmeier <armin@0x539.de>
Changes for new net6 IO conditions
2006-01-11 Trac <trac@darcs.0x539.de>
TODO updated
2006-01-07 Trac <trac@darcs.0x539.de>
TODO updated
2005-12-31 Trac <trac@darcs.0x539.de>
TODO updated
2005-12-13 Trac <trac@darcs.0x539.de>
TODO updated
2005-12-11 Trac <trac@darcs.0x539.de>
TODO updated
2005-12-10 Philipp Kern <phil@0x539.de>
Forgot to translate at least one string
2005-12-08 Philipp Kern <phil@0x539.de>
Translation roundup
2005-12-07 Philipp Kern <phil@0x539.de>
Armin spotted the problem with encodings in the chat window
2005-11-24 Philipp Kern <phil@0x539.de>
Translation roundup
2005-11-24 Philipp Kern <phil@0x539.de>
Require net6-1.2 >= 1.2.1
2005-11-23 Trac <trac@darcs.0x539.de>
TODO updated
2005-11-22 Armin Burgmeier <armin@0x539.de>
Removed covariant returns from buffer wrapper
2005-11-21 Armin Burgmeier <armin@0x539.de>
Do not crash if empty config is found
2005-11-20 Philipp Kern <phil@0x539.de>
Search for obby in the paths specified by pkg-config
2005-11-20 Armin Burgmeier <armin@0x539.de>
Give initial focus to close button in close confirmation dialog
2005-11-19 Armin Burgmeier <armin@0x539.de>
Updated README and AUTHORS
2005-11-19 Armin Burgmeier <armin@0x539.de>
Atomic write failed if the destination directory was not on the same
device as the temporary directory, use normal write
2005-11-19 Trac <trac@darcs.0x539.de>
TODO updated
2005-11-18 Armin Burgmeier <armin@0x539.de>
Added icon.cpp to POTFILES.in
2005-11-18 Armin Burgmeier <armin@0x539.de>
net6::gettext_package usage
2005-11-17 Armin Burgmeier <armin@0x539.de>
documentlist.cpp was missing in POTFILES.in
2005-11-17 Armin Burgmeier <armin@0x539.de>
Need to link against this for OLE Drag+Drop to work
2005-11-17 Armin Burgmeier <armin@0x539.de>
Fixed a bug in Win32 Drag+Drop
2005-11-17 Armin Burgmeier <armin@0x539.de>
Added find- and goto dialog to POTFILES.in
2005-11-17 Armin Burgmeier <armin@0x539.de>
Goto line Dialog [fixes #79]
2005-11-17 Philipp Kern <phil@0x539.de>
Protect the unpublish call
2005-11-17 Armin Burgmeier <armin@0x539.de>
Adjusted Automake.am
2005-11-17 Armin Burgmeier <armin@0x539.de>
Introduces ToggleWindow
2005-11-17 Armin Burgmeier <armin@0x539.de>
Win32 Drag+Drop support [fixes #71]
2005-11-17 Trac <trac@darcs.0x539.de>
TODO updated
2005-11-16 Armin Burgmeier <armin@0x539.de>
Use WINDOW_TYPE_HINT_UTILITY for FindDialog as well
2005-11-16 Armin Burgmeier <armin@0x539.de>
Set WINDOW_TYPE_HINT_UTILITY window_hint for tool windows
2005-11-16 Armin Burgmeier <armin@0x539.de>
Fixed last dependency on <regex.h>
2005-11-16 Armin Burgmeier <armin@0x539.de>
Format time string according to current locale
2005-11-15 Armin Burgmeier <armin@0x539.de>
Win32 build fixes
2005-11-15 Philipp Kern <phil@0x539.de>
Updated NEWS
2005-11-15 Philipp Kern <phil@0x539.de>
Translation roundup
2005-11-15 Armin Burgmeier <armin@0x539.de>
Win32 fixes in ProgressDialog's threading concept
2005-11-15 Armin Burgmeier <armin@0x539.de>
Prompt when the user wants to exit Gobby and a session is still open
[fixes #93]
2005-11-15 Armin Burgmeier <armin@0x539.de>
Some UI fixes
2005-11-15 Armin Burgmeier <armin@0x539.de>
Removed dependency on GNU regex library
2005-11-15 Armin Burgmeier <armin@0x539.de>
Working FindDialog, removed regex support
2005-11-14 Philipp Kern <phil@0x539.de>
String correction
2005-11-13 Armin Burgmeier <armin@0x539.de>
Find dialog works better, but some regex stuff still does not work
2005-11-13 Philipp Kern <phil@0x539.de>
Bugfix, transmit the value correctly
2005-11-13 Philipp Kern <phil@0x539.de>
Remember the window positions
2005-11-13 Armin Burgmeier <armin@0x539.de>
Non-working FindDialog
2005-11-13 Philipp Kern <phil@0x539.de>
Moved the config from window to main
2005-11-13 Philipp Kern <phil@0x539.de>
Expand online users by default
2005-11-13 Armin Burgmeier <armin@0x539.de>
Added missing documentlist files
2005-11-13 Trac <trac@darcs.0x539.de>
TODO updated
2005-11-13 Armin Burgmeier <armin@0x539.de>
Added document list, only subscribed document are shown in folder
2005-11-12 Philipp Kern <phil@0x539.de>
Added userlist image
2005-11-12 Armin Burgmeier <armin@0x539.de>
Precreate Gobby icon
2005-11-12 Armin Burgmeier <armin@0x539.de>
Removed empty paned from window
2005-11-12 Armin Burgmeier <armin@0x539.de>
Added user list as tool window
2005-11-11 Armin Burgmeier <armin@0x539.de>
Changed user list icons
2005-11-11 Armin Burgmeier <armin@0x539.de>
Fixed a synchronisation loss when resubscribing to a document
2005-11-11 Armin Burgmeier <armin@0x539.de>
Implemented tree-based userlist
2005-11-09 Trac <trac@darcs.0x539.de>
TODO updated
2005-11-07 Armin Burgmeier <armin@0x539.de>
Made folder scrollable, decreases minimum width if many tabs are open
2005-11-07 Armin Burgmeier <armin@0x539.de>
Initialise colour selection dialog with button's current colour in
Gobby::ColorButton
2005-11-07 Armin Burgmeier <armin@0x539.de>
Userlist using TreeView; currently disfunctional!
2005-11-07 Trac <trac@darcs.0x539.de>
TODO updated
2005-11-06 Armin Burgmeier <armin@0x539.de>
Update title bar correctly upon reconnection [fixes #92]
2005-11-06 Armin Burgmeier <armin@0x539.de>
Atomic write for documents, do not append newline on write [fixes #91]
2005-11-06 Armin Burgmeier <armin@0x539.de>
Use a left-gravity cursor on remote insert operations [fixes #84]
2005-11-06 Philipp Kern <phil@0x539.de>
Added translator credits and link to Rosetta
2005-11-05 Armin Burgmeier <armin@0x539.de>
pre-select the save button in close confirmation dialog
2005-11-05 Armin Burgmeier <armin@0x539.de>
Close document just unsubscribes from the document [fixes #83]
2005-11-05 Armin Burgmeier <armin@0x539.de>
Fixed a German translation error
2005-11-05 Armin Burgmeier <armin@0x539.de>
Show a close confirmation dialog according to GNOME HIG [fixes #105]
2005-11-05 Armin Burgmeier <armin@0x539.de>
Convert resulting filename to utf8 in FileEntry
2005-11-05 Armin Burgmeier <armin@0x539.de>
Added overwrite confirmation if gtkmm is >= 2.8
2005-11-05 Trac <trac@darcs.0x539.de>
TODO updated
2005-11-04 Armin Burgmeier <armin@0x539.de>
Set Gobby::Icon::gobby as default window icon
2005-11-04 Armin Burgmeier <armin@0x539.de>
Fixed a memleak in the GtkSourceView wrapper
2005-11-04 Armin Burgmeier <armin@0x539.de>
Adjustments for inc_flags/exc_flags
2005-11-04 Philipp Kern <phil@0x539.de>
Allow to join servers with port numbers < 1024
2005-11-03 Armin Burgmeier <armin@0x539.de>
Fixed another bug in configure.in
2005-11-03 Armin Burgmeier <armin@0x539.de>
Fixed GTKMM-2.8 check
2005-11-03 Armin Burgmeier <armin@0x539.de>
Allow to change name/colour directly if it is already in use
[Scott Baker]
2005-11-03 Philipp Kern <phil@0x539.de>
Added a check for Gtkmm's version (untested)
2005-11-03 Armin Burgmeier <armin@0x539.de>
Do not use IPv6 when hosting a session
2005-11-03 Armin Burgmeier <armin@0x539.de>
Patched Gobby for new obby::colour class
2005-11-03 Armin Burgmeier <armin@0x539.de>
LogView::log takes optionally timestamp
2005-11-03 Philipp Kern <phil@0x539.de>
Changed one translated string
2005-11-03 Philipp Kern <phil@0x539.de>
Added Swedish translation, thanks to Daniel Nylander
2005-11-02 Armin Burgmeier <armin@0x539.de>
Patched Gobby for new obby chat class
2005-11-02 Armin Burgmeier <armin@0x539.de>
Updated translation po/pot files
2005-10-28 Armin Burgmeier <armin@0x539.de>
Patched set_selection to take Gtk::TextIter and scroll to selected
position
2005-10-28 Benjamin Herr <ben@0x539.de>
Added GNU regex wrappers (not used yet because they suck at unicode)
2005-10-27 Armin Burgmeier <armin@0x539.de>
Added Gobby::Document::set_selection
2005-10-29 Trac <trac@darcs.0x539.de>
TODO updated
2005-10-21 Armin Burgmeier <armin@0x539.de>
Temporary menu entry for saving a session [fixes #20]
2005-10-15 Trac <trac@darcs.0x539.de>
TODO updated
2005-10-09 Armin Burgmeier <armin@0x539.de>
Session to restore may be given in HostDialog
2005-10-09 Armin Burgmeier <armin@0x539.de>
Introduces FileEntry
2005-10-09 Armin Burgmeier <armin@0x539.de>
Removed trailing semicolon after namespace
2005-10-09 Trac <trac@darcs.0x539.de>
TODO updated
2005-10-08 Trac <trac@darcs.0x539.de>
TODO updated
2005-10-08 Trac <trac@darcs.0x539.de>
TODO updated
2005-10-07 Philipp Kern <phil@0x539.de>
Wrap the lines in the chat window [fixes #99]
2005-10-07 Philipp Kern <phil@0x539.de>
Escape special characters in document title [fixes #101]
2005-10-07 Philipp Kern <phil@0x539.de>
Translation roundup
2005-10-07 Philipp Kern <phil@0x539.de>
Show current connection status in statusbar
2005-10-07 Trac <trac@darcs.0x539.de>
TODO updated
2005-10-05 Philipp Kern <phil@0x539.de>
Fixed thread creation issues
2005-10-05 Philipp Kern <phil@0x539.de>
Compile fix by const_casting for g_atomic_int_get
2005-10-05 Trac <trac@darcs.0x539.de>
TODO updated
2005-10-04 Armin Burgmeier <armin@0x539.de>
Do not block when connecting to a remote host
2005-10-04 Armin Burgmeier <armin@0x539.de>
Added Atomic class for Atomic boolean operations
2005-10-04 Armin Burgmeier <armin@0x539.de>
Adjusted buffer wrappers to buffer's reusability
2005-10-01 Philipp Kern <phil@0x539.de>
Do not show disconnected users as joined in chat
2005-10-01 Philipp Kern <phil@0x539.de>
Make connected flag in userlist dependend on the user's value
2005-09-29 Trac <trac@darcs.0x539.de>
TODO updated
2005-09-22 Michael Walter <cm@leetspeak.org>
Added #include to <winsock2.h> to avoid <winsock.h> being
included later.
2005-09-22 Michael Walter <cm@leetspeak.org>
Compile fix (m_client -> m_net.reset).
2005-09-22 Michael Walter <cm@leetspeak.org>
Added missing return statement.
2005-09-22 Michael Walter <cm@leetspeak.org>
Unicode fixes (was calling generic version with ASCII/ANSI strings).
2005-09-20 Armin Burgmeier <armin@0x539.de>
Fixed usages of user_table's iterator for non-templated user_table
2005-09-19 Trac <trac@darcs.0x539.de>
TODO updated
2005-09-17 Armin Burgmeier <armin@0x539.de>
Fixed a crash on client-side connection loss
2005-09-15 Philipp Kern <phil@0x539.de>
Removed pending changes and revision from the status bar
2005-09-15 Philipp Kern <phil@0x539.de>
Opened new 0.3.x tree
2005-09-15 Philipp Kern <phil@0x539.de>
Depend on net6-1.2 and obby-0.3
2005-09-15 Armin Burgmeier <armin@0x539.de>
Avoid useless thread in JoinProgressDialog
2005-09-15 Armin Burgmeier <armin@0x539.de>
Two additional checks concerning subscription
2005-09-15 Philipp Kern <phil@0x539.de>
Added 0.3.0 NEWS item
2005-09-05 Philipp Kern <phil@0x539.de>
Added a NEWS item to reflect the line encoding patch
2005-09-02 Philipp Kern <phil@0x539.de>
Updated NEWS to reflect more changes
2005-09-14 Armin Burgmeier <armin@0x539.de>
Adjustments to jupiter-using obby
2005-09-13 Trac <trac@darcs.0x539.de>
TODO updated
2005-09-07 Armin Burgmeier <armin@0x539.de>
Some more const-correctness
2005-09-06 Armin Burgmeier <armin@0x539.de>
Adjusted buffer wrapper because peer has been renamed to user in net6
2005-07-28 Armin Burgmeier <armin@0x539.de>
Fixed SEGV on win32 when creating/joining a session
2005-09-05 Philipp Kern <phil@0x539.de>
Removed obsolete TODO items
2005-09-05 Trac <trac@darcs.0x539.de>
TODO updated
2005-09-04 Philipp Kern <phil@0x539.de>
Convert all different line encodings to UNIX ones
2005-09-02 Philipp Kern <phil@0x539.de>
Added 0.2.1 and 0.2.2 to version history
2005-09-01 Armin Burgmeier <armin@0x539.de>
Disable Glib's implicit charset conversion to the current locale
2005-08-31 Philipp Kern <phil@0x539.de>
Fixed most unknown file extensions, added some more
2005-08-21 Philipp Kern <phil@0x539.de>
Made the JoinDialog vbox non-conditional
2005-08-27 Trac <trac@darcs.0x539.de>
TODO updated
2005-08-25 Armin Burgmeier <armin@0x539.de>
net6::client::conn is now auto_ptr<connection
2005-08-25 Trac <trac@darcs.0x539.de>
TODO updated
2005-08-23 Trac <trac@darcs.0x539.de>
TODO updated
2005-08-18 Philipp Kern <phil@0x539.de>
Updated AUTHORS to list contributors and translators
2005-08-18 Philipp Kern <phil@0x539.de>
Added Spanish translation, thanks to Mario Palomo
2005-08-15 Trac <trac@darcs.0x539.de>
TODO updated
2005-08-13 Trac <trac@darcs.0x539.de>
TODO updated
2005-08-07 Trac <trac@darcs.0x539.de>
TODO updated
2005-08-05 Philipp Kern <phil@0x539.de>
Allow to open documents as unowned text, thanks to Ben Levitt
[fixes #52]
2005-08-05 Trac <trac@darcs.0x539.de>
TODO updated
2005-08-03 Trac <trac@darcs.0x539.de>
TODO updated
2005-08-02 Philipp Kern <phil@0x539.de>
Non-empty documents are flagged modified [ref #72]
2005-07-31 Trac <trac@darcs.0x539.de>
TODO updated
2005-07-29 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2005-07-29 Trac <trac@darcs.0x539.de>
TODO updated
2005-07-28 Philipp Kern <phil@0x539.de>
Updated German translation
2005-07-28 Philipp Kern <phil@0x539.de>
Updates from `make update-po'
2005-07-28 Armin Burgmeier <armin@0x539.de>
Win32 build fix
2005-07-27 Armin Burgmeier <armin@0x539.de>
Some fixes for buffer_wrappers
2005-07-27 Armin Burgmeier <armin@0x539.de>
Fixed POTFILES.in for new io/ subdir
2005-07-27 Armin Burgmeier <armin@0x539.de>
Emit content_changed signal in insert/erase_after [fixes #64]
2005-07-27 Armin Burgmeier <armin@0x539.de>
Queried the cached subscribe value instead of requesting it from
obby::document_info [fixes #63]
2005-07-27 Armin Burgmeier <armin@0x539.de>
Moved buffer_wrapper to io/ subdir, enhanced portabaility
2005-07-27 Philipp Kern <phil@0x539.de>
The last missing French string
2005-07-27 Philipp Kern <phil@0x539.de>
Updated French translation by Peer Janssen
2005-07-27 Trac <trac@darcs.0x539.de>
TODO updated
2005-07-26 Philipp Kern <phil@0x539.de>
Better Win32 network handling announced
2005-07-26 Philipp Kern <phil@0x539.de>
Added a readme and an installation guide [fixes #51]
2005-07-26 Philipp Kern <phil@0x539.de>
Initialise the colour selection dialog with the current user colour
2005-07-26 Armin Burgmeier <armin@0x539.de>
Column returns the real column of the text not just the nth character
2005-07-26 Armin Burgmeier <armin@0x539.de>
User highlighting when name is mentioned in chat [fixes #6]
2005-07-26 Armin Burgmeier <armin@0x539.de>
Prompt before closing modified documents
2005-07-26 Armin Burgmeier <armin@0x539.de>
Save host/port settings into new config keys
2005-07-26 Armin Burgmeier <armin@0x539.de>
Switch to tabs newly opened [fixes #27]
2005-07-26 Armin Burgmeier <armin@0x539.de>
Connected/Subscribed flags in user list (fixes #12)
2005-07-25 Armin Burgmeier <armin@0x539.de>
Check for valid UTF-8 after converting
2005-07-25 Armin Burgmeier <armin@0x539.de>
Try to convert files with other encodings to UTF-8 [fixes #43]
2005-07-25 Philipp Kern <phil@0x539.de>
Colourised tab labels [fixes #59]
2005-07-25 Philipp Kern <phil@0x539.de>
Merged host and join dialog data just again, with separated ports
and hostnames
2005-07-25 Philipp Kern <phil@0x539.de>
Added more dots to the menu items
2005-07-25 Armin Burgmeier <armin@0x539.de>
Format string adjustments
2005-07-25 Trac <trac@darcs.0x539.de>
TODO updated
2005-07-24 Philipp Kern <phil@0x539.de>
Depend on obby's 0.2.x API
2005-07-24 Philipp Kern <phil@0x539.de>
Improved the Zeroconf handling
2005-07-24 Armin Burgmeier <armin@0x539.de>
Added Window::get_current_document
2005-07-24 Armin Burgmeier <armin@0x539.de>
Do not allow empty document names
2005-07-24 Armin Burgmeier <armin@0x539.de>
Removed useless preferences_changed delegate
2005-07-24 Armin Burgmeier <armin@0x539.de>
Update cursor position display in statusbar by remote changes
2005-07-24 Armin Burgmeier <armin@0x539.de>
Modified flag [fixes #25]
2005-07-24 Philipp Kern <phil@0x539.de>
Translation roundup
2005-07-24 Armin Burgmeier <armin@0x539.de>
Added PasswordDialog
2005-07-24 Armin Burgmeier <armin@0x539.de>
Corrections to file handling
2005-07-24 Armin Burgmeier <armin@0x539.de>
Added toolbar settings into preferences [fixes #32]
2005-07-23 Philipp Kern <phil@0x539.de>
Added some release notes directly to the sources
2005-07-23 Philipp Kern <phil@0x539.de>
Adjusted the Zeroconf usage
2005-07-23 Armin Burgmeier <armin@0x539.de>
First attempt to allow opening files by dropping them on a
document, doesn't work.
2005-07-23 Armin Burgmeier <armin@0x539.de>
Drag+Drop of files into open Gobby session
2005-07-23 Philipp Kern <phil@0x539.de>
Set colour implemented
2005-07-21 Armin Burgmeier <armin@0x539.de>
UNDO: Use 'session' config key for both client and host
2005-07-23 Armin Burgmeier <armin@0x539.de>
No fixed size for the send button
2005-07-23 Armin Burgmeier <armin@0x539.de>
Removed debug log
2005-07-23 Armin Burgmeier <armin@0x539.de>
Colour presets [fixes #36] Thanks tom! :D
2005-07-23 Philipp Kern <phil@0x539.de>
Use a tooltip instead of an expanded label
2005-07-23 Armin Burgmeier <armin@0x539.de>
Smart home/end preference
2005-07-23 Armin Burgmeier <armin@0x539.de>
Re-arranged status bar
2005-07-22 Armin Burgmeier <armin@0x539.de>
Some more preferences
2005-07-23 Trac <trac@darcs.0x539.de>
TODO updated
2005-07-22 Armin Burgmeier <armin@0x539.de>
typo in preferences dialog fixed
2005-07-22 Armin Burgmeier <armin@0x539.de>
Local preferences, syntax submenu
2005-07-22 Armin Burgmeier <armin@0x539.de>
Fixed some messup
2005-07-22 Philipp Kern <phil@0x539.de>
Fixed just another conflict
2005-07-22 Philipp Kern <phil@0x539.de>
A cleanup patch to fix hundreds of conflicts
2005-07-22 Philipp Kern <phil@0x539.de>
Changed the GtkSourceView dependency to a hard one
2005-07-22 Armin Burgmeier <armin@0x539.de>
Fixed conflict caused by phil's security page
2005-07-22 Armin Burgmeier <armin@0x539.de>
Introduced working preferences, some are missing
2005-07-22 Philipp Kern <phil@0x539.de>
Added a Security stub to the preferences dialog sources
2005-07-21 Philipp Kern <phil@0x539.de>
Changes to the About dialog
2005-07-21 Armin Burgmeier <armin@0x539.de>
Small UI fixes
2005-07-21 Armin Burgmeier <armin@0x539.de>
First preferences dialog approach
2005-07-21 Philipp Kern <phil@0x539.de>
Used ngettext one time, updated templates a bit
2005-07-21 Armin Burgmeier <armin@0x539.de>
Changes by libtool
2005-07-21 Armin Burgmeier <armin@0x539.de>
Use 'session' config key for both client and host
2005-07-21 Philipp Kern <phil@0x539.de>
Use the right directory to look for pixmaps
2005-07-21 Armin Burgmeier <armin@0x539.de>
Small adjustments to net6 API change
2005-07-21 Trac <trac@darcs.0x539.de>
TODO updated
2005-07-20 Armin Burgmeier <armin@0x539.de>
Connect synchoniously to the server, would cause too much
trouble otherwise
2005-07-20 Armin Burgmeier <armin@0x539.de>
Gtk::manage dynamically allocated widgets
2005-07-20 Armin Burgmeier <armin@0x539.de>
Fixed SEGV on connection error
2005-07-20 Armin Burgmeier <armin@0x539.de>
Initialize Threading system in main()
2005-07-20 Armin Burgmeier <armin@0x539.de>
Close icons in tab labels [ref #32]
2005-07-20 Armin Burgmeier <armin@0x539.de>
Display current document in title bar
2005-07-19 Armin Burgmeier <armin@0x539.de>
Progress dialogs
2005-07-18 Philipp Kern <phil@0x539.de>
Added dependency on gthread-2.0, versioned one on net6
2005-07-17 Armin Burgmeier <armin@0x539.de>
User authentication stuff
2005-07-15 Armin Burgmeier <armin@0x539.de>
Global password
2005-07-15 Trac <trac@darcs.0x539.de>
TODO updated
2005-07-03 Trac <trac@darcs.0x539.de>
TODO updated
2005-07-01 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-30 Philipp Kern <phil@0x539.de>
Highlight chat messages with the own nickname [fixes #6]
2005-06-30 Philipp Kern <phil@0x539.de>
Pass the current session buffer to all client widgets
2005-06-25 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-24 Philipp Kern <phil@0x539.de>
Removed two unnecessary includes from src/buffer_wrapper.cpp
2005-06-24 Philipp Kern <phil@0x539.de>
French translation reviewed by Mohammed Adnene Trojette <adn@diwi.org>
2005-06-24 Philipp Kern <phil@0x539.de>
Updated translation files
2005-06-24 Philipp Kern <phil@0x539.de>
Updated German translation, still not fully completed
2005-06-23 Philipp Kern <phil@0x539.de>
Catch-all update of the gettext stuff
2005-06-23 Philipp Kern <phil@0x539.de>
Added French translation of Peer Janssen <peer@baden-online.de>
[fixes #50]
2005-06-23 Armin Burgmeier <armin@0x539.de>
Fixes for changed obby record API
2005-06-17 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-16 Philipp Kern <phil@0x539.de>
Removed autogen.sh, it is superseded by autoreconf
2005-06-16 Philipp Kern <phil@0x539.de>
Return a const char pointer from gettext
2005-06-15 Philipp Kern <phil@0x539.de>
Added word wrapping
2005-06-15 Armin Burgmeier <armin@0x539.de>
Replace all non-ascii characters in UI XML [fixes #44]
2005-06-14 Philipp Kern <phil@0x539.de>
One new string to translate, updated debconf template
2005-06-14 Philipp Kern <phil@0x539.de>
Added missing conditionals related to GtkSourceView
2005-06-14 Philipp Kern <phil@0x539.de>
Gobby depends on obby 0.2.0 or higher
2005-06-14 Armin Burgmeier <armin@0x539.de>
Using obby::format_string instead of std::stringstream
2005-06-14 Armin Burgmeier <armin@0x539.de>
Enable highlighting when subscribed
2005-06-14 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-13 Armin Burgmeier <armin@0x539.de>
Adjustments for synchronisation on request.
The core feature seems to work. The user interface, however,
may be discussed and changed later on. This is just a first try
to test the feature and to make Gobby compile with it.
2005-06-13 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-12 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-10 Philipp Kern <phil@0x539.de>
Preliminary, but working Zeroconf support [ref #17]
2005-06-09 Philipp Kern <phil@0x539.de>
Revised the German translation
2005-06-09 Philipp Kern <phil@0x539.de>
Corrected AE color to BE colour
2005-06-09 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-08 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-07 Armin Burgmeier <armin@0x539.de>
Adjusted code for changes user flags in libobby
2005-06-07 Philipp Kern <phil@0x539.de>
Modified history by adding the missing 0.1.1 NEWS entry
2005-06-07 Philipp Kern <phil@0x539.de>
Added dependency on Automake 1.9; added missing NEWS check
2005-06-07 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-06 Philipp Kern <phil@0x539.de>
Ship gobby.desktop in the distribution
2005-06-06 Armin Burgmeier <armin@0x539.de>
Adjusted for net6's error code transmission (#16)
2005-06-06 Armin Burgmeier <armin@0x539.de>
Better win32 network implementation [fixes #2]
2005-06-05 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-04 Philipp Kern <phil@0x539.de>
Updated ChangeLog for release
2005-06-04 Armin Burgmeier <armin@0x539.de>
Fixed a segfault which occured sometimes when closing documents
2005-06-04 Armin Burgmeier <armin@0x539.de>
Introduced DefaultDialog to allow to press Enter in dialogs
2005-06-04 Armin Burgmeier <armin@0x539.de>
Show up user-colourising text immediately [fixes #22]
2005-06-04 Philipp Kern <phil@0x539.de>
Removed the useless ENABLE_NLS check as we hard-depend on gettext
2005-06-04 Philipp Kern <phil@0x539.de>
Translated missing strings into German
2005-06-04 Armin Burgmeier <armin@0x539.de>
Use another default color as black [fixes #34]
2005-06-04 Armin Burgmeier <armin@0x539.de>
Remove entities in on_folder_tab_switched
2005-06-04 Armin Burgmeier <armin@0x539.de>
A much better fix for #24
2005-06-04 Philipp Kern <phil@0x539.de>
Updated the gettext template and the German translation
2005-06-04 Armin Burgmeier <armin@0x539.de>
Removed Umlauts from Language file names to build valid XML,
renamed Document to View in menu
2005-06-04 Armin Burgmeier <armin@0x539.de>
Update user colour in key press event handler if possible [fixes #24]
If someone copied a part of the buffer, the tags applied to it
were copied, too. If he pasted it then, the insert-text signal
handler could not remove those tags because they were not yet
applied. So it ended up in having to user colour tags applied to
the new range of text: The one from the user who pasted the text and
the one from the user who wrote the original text. This is solved
by adding tags followed by a key press event not anymore in the
insert-text event handler but in the key press event handler,
which is called later, when the pasted tag already has been applied.
Then, it may be removed and the one and only user colour tag
can be set.
2005-06-03 Philipp Kern <phil@0x539.de>
Use "n unsynced change(s)" instead of "in sync"
2005-06-03 Benjamin Herr <ben@0x539.de>
Fixed my messup fixing the chat multiline handling
2005-06-03 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-02 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-02 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-02 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-02 Trac <trac@darcs.0x539.de>
TODO updated
2005-06-02 Philipp Kern <phil@0x539.de>
Merging the multi-line chat fixes
2005-05-31 Benjamin Herr <ben@0x539.de>
Splitting up received lines of chat by newlines, added todo items
2005-06-02 Armin Burgmeier <armin@0x539.de>
Menu to switch the syntax colouring scheme [fixes #4]
2005-06-01 Armin Burgmeier <armin@0x539.de>
Option to disable line numbers [fixes #7]
2005-06-01 Armin Burgmeier <armin@0x539.de>
Show revision and sync state in statusbar [fixes #13]
2005-06-01 Armin Burgmeier <armin@0x539.de>
Fixed some errors caused by recent libobby API changes
2005-05-30 Armin Burgmeier <armin@0x539.de>
Set correct notebook tab after startup
2005-05-29 Armin Burgmeier <armin@0x539.de>
Use of local_buffer instead of dynamic casts [ref #9]
2005-05-29 Armin Burgmeier <armin@0x539.de>
Initialise size of paned widgets [fixes #5]
2005-05-29 Armin Burgmeier <armin@0x539.de>
Allow the user to save documents after connection loss [fixes #1]
2005-05-29 Armin Burgmeier <armin@0x539.de>
Disable close and save buttons if no more documents are open
2005-05-28 Armin Burgmeier <armin@0x539.de>
Send lines separately in chat
2005-05-26 Philipp Kern <phil@0x539.de>
Changed the desktop item's name to be a bit more compilant
2005-05-26 Armin Burgmeier <armin@0x539.de>
Segfault fixed some time ago...
2005-05-22 Philipp Kern <phil@0x539.de>
Ebuild change: Depend on gtksourceview, use GNOME integration
2005-05-21 Philipp Kern <phil@0x539.de>
Load icon from file when compiled --with-gnome
2005-05-21 Philipp Kern <phil@0x539.de>
Resized the 128x128 XPM to 32x32
2005-05-20 Philipp Kern <pkern@debian.org>
Added missing assert include
2005-05-20 Philipp Kern <phil@0x539.de>
Added build-dependency on net6-1.0
2005-05-19 Philipp Kern <phil@0x539.de>
configure now detects the presence of GtkSourceView automatically
2005-05-19 Philipp Kern <phil@0x539.de>
Makefile.am had a wrong conditional statement
2005-05-15 Philipp Kern <phil@0x539.de>
Serious bug exploited, po/ permission-related build fix
2005-05-15 Philipp Kern <phil@0x539.de>
Added GNOME integration
2005-05-11 Philipp Kern <phil@0x539.de>
Added gzip'ed XPM version of the Gobby logo
2005-05-10 Armin Burgmeier <armin@0x539.de>
Fixed a segfault which occured sometimes on the exit
2005-05-08 Armin Burgmeier <armin@0x539.de>
Shuffled some files around, fixed non-gtksourceview build [phil]
2005-05-08 Armin Burgmeier <armin@0x539.de>
WIN32 build fix (resource files build correctly) [phil]
2005-05-08 Armin Burgmeier <armin@0x539.de>
gobby resource file until autotools are able to build it
2005-05-08 Armin Burgmeier <armin@0x539.de>
Sized gobby.ico to 48x48
Bigger icons just waste memory on windows, they will never be shown in
their full size.
2005-05-08 Philipp Kern <phil@0x539.de>
Try to build gobby.res from top-level Makefile.am
2005-05-08 Philipp Kern <phil@0x539.de>
Use Automake for win32/ subdirectory
2005-05-08 Philipp Kern <phil@0x539.de>
Fixed make dist
2005-05-08 Philipp Kern <phil@0x539.de>
Delocalised two error strings
2005-05-08 Philipp Kern <phil@0x539.de>
po reflect new line numbers within the source files
2005-05-08 Philipp Kern <phil@0x539.de>
Include contrib/ and win32/ in make dist
2005-05-08 Philipp Kern <phil@0x539.de>
Added more WIN32 build stuff
2005-05-07 Philipp Kern <phil@0x539.de>
Suppress the console window in favour of a real GUI application
2005-05-07 Armin Burgmeier <armin@0x539.de>
Win32 does not have localtime_r
We do not need thread safety anyway...
2005-05-07 Armin Burgmeier <armin@0x539.de>
make dist requires ChangeLog...
2005-05-07 Armin Burgmeier <armin@0x539.de>
win32 resource file for the gobby icon
2005-05-07 Armin Burgmeier <armin@0x539.de>
User colourising
2005-05-07 Armin Burgmeier <armin@0x539.de>
Added keyboard shortcuts
2005-05-07 Armin Burgmeier <armin@0x539.de>
Moved language manager to folder
2005-05-07 Armin Burgmeier <armin@0x539.de>
Replaced _ macro by an inline function
2005-05-07 Armin Burgmeier <armin@0x539.de>
Separate mime map
2005-05-06 Armin Burgmeier <armin@0x539.de>
StatusBar showing cursor position and current language
2005-05-06 Philipp Kern <phil@0x539.de>
Added more TODO items
2005-05-05 Philipp Kern <phil@0x539.de>
Made the TODO list more readable
2005-05-05 Philipp Kern <phil@0x539.de>
A missing shell call produced build errors
2005-05-05 Philipp Kern <phil@0x539.de>
Set scripts executable and use a partial checkout in the ebuild
2005-05-05 Philipp Kern <phil@0x539.de>
Added missing po/Makefile.in.in
2005-05-05 Philipp Kern <phil@0x539.de>
Gobby i18n, German translation added
2005-05-05 Philipp Kern <phil@0x539.de>
Ignore more intermediate files
2005-05-05 Philipp Kern <phil@0x539.de>
Added mkinstalldirs from Autotools
2005-05-05 Armin Burgmeier <armin@0x539.de>
auto* updated some auto-generated files...
2005-05-05 Armin Burgmeier <armin@0x539.de>
Gobby sends positions now in bytes and no longer in characters.
libobby takes all positions in bytes to having not to care about
different encodings.
2005-05-04 Philipp Kern <phil@0x539.de>
Display a Gtk::MessageDialog on an unhandled exception
2005-04-27 Philipp Kern <phil@0x539.de>
Fixed gobby to compile without gtksourceview
2005-04-26 Philipp Kern <phil@0x539.de>
Insert parameter placeholder corrected
2005-04-25 Philipp Kern <phil@0x539.de>
Ugly fix to get the times right
2005-04-25 Armin Burgmeier <armin@0x539.de>
Implemented timestamps in logview
2005-04-25 Philipp Kern <phil@0x539.de>
Some corrections to the file types
2005-04-24 Philipp Kern <phil@0x539.de>
Set current name in the Save FileChooser
2005-04-24 Philipp Kern <phil@0x539.de>
Added two new TODO items
2005-04-22 Armin Burgmeier <armin@0x539.de>
Code highlighting by file extension
2005-04-22 Armin Burgmeier <armin@0x539.de>
Some GtkSourceView wrapper fixes and extensions
2005-04-22 Armin Burgmeier <armin@0x539.de>
GtkSourceLanguagesManager wrapper
2005-04-21 Armin Burgmeier <armin@0x539.de>
Wrapped GtkSourceLanguage
2005-04-21 Armin Burgmeier <armin@0x539.de>
Use a monospaced font for the TextView
2005-04-20 Armin Burgmeier <armin@0x539.de>
GtkSourceBuffer wrapper
2005-04-18 Philipp Kern <phil@0x539.de>
Save document was missing in the source
2005-04-17 Philipp Kern <phil@0x539.de>
Check for howl in libobby
2005-04-17 Armin Burgmeier <armin@0x539.de>
sourceview/-subdir for sourceview wrappers, Gtk::SourceView
actually works
2005-04-17 Philipp Kern <phil@0x539.de>
Gather host information correctly
2005-04-17 Armin Burgmeier <armin@0x539.de>
Win32 buffer_wrappers using a timer
2005-04-15 Armin Burgmeier <armin@0x539.de>
Added tom as artist
2005-04-15 Armin Burgmeier <armin@0x539.de>
Added inline gobby icon
2005-04-15 Philipp Kern <phil@0x539.de>
Added artwork credits
2005-04-15 Thomas Glatt <tom@0x539.de>
Added Gobby artwork
2005-04-15 Armin Burgmeier <armin@0x539.de>
Call correct base_function in Gobby::Host::on_connect
2005-04-15 Armin Burgmeier <armin@0x539.de>
Adjusted buffer_wrapper for net6 API corrections
2005-04-15 Armin Burgmeier <armin@0x539.de>
Added some first wrapper code for GtkSourceView -- disfunctional
2005-04-15 Philipp Kern <phil@0x539.de>
Added framework to use SourceView instead of TextView
2005-04-14 Philipp Kern <phil@0x539.de>
Added boringfile
2005-04-14 Philipp Kern <phil@0x539.de>
Added save document hooks, but w/o real functionality
2005-04-14 Philipp Kern <phil@0x539.de>
Use the new include path of libobby
2005-04-14 Philipp Kern <phil@0x539.de>
Check for obby-1.0 instead of lobby-1.0
2005-04-14 Philipp Kern <phil@0x539.de>
Implemented open document
2005-04-14 Philipp Kern <phil@0x539.de>
Removed ui.xml from the ebuild
2005-04-14 Philipp Kern <phil@0x539.de>
XML UI descriptions are now present within src/header.cpp
2005-04-14 Philipp Kern <phil@0x539.de>
Compile the right buffer wrappers for their corresponding platform
2005-04-14 Philipp Kern <phil@0x539.de>
Fix buffer wrapper to use generic on !WIN32
2005-04-12 Armin Burgmeier <armin@0x539.de>
Splitted buffer_wrapper up to buffer_wrapper_generic and
buffer_wrapper. buffer_wrapper_win32 will follow.
2005-04-11 Philipp Kern <phil@0x539.de>
Implemented close a bit more correctly, updated TODO
2005-04-11 Philipp Kern <phil@0x539.de>
Remove current document, *hopefully* w/o memory leak
2005-04-10 Thomas Glatt <tom@0x539.de>
Ebuild for gobby
2005-04-10 Philipp Kern <phil@0x539.de>
Resolved conflict in Makefile.am related to WIN32 build
2005-04-10 Philipp Kern <phil@0x539.de>
Added WIN32 build support
2005-04-09 Armin Burgmeier <armin@0x539.de>
Win32 build fixes; buffer_wrappers still use a timer on win32
2005-04-09 Armin Burgmeier <armin@0x539.de>
Distribute header files with 'make dist'
2005-04-09 Armin Burgmeier <armin@0x539.de>
Replaced ERROR with IOERROR in buffer_wrappers according to
new net6 API
2005-04-09 Armin Burgmeier <armin@0x539.de>
Fixed missing <cassert> include in buffer_wrapper.cpp
2005-04-09 Armin Burgmeier <armin@0x539.de>
Use the file name of the file to open as document title
2005-04-09 Philipp Kern <phil@0x539.de>
Relicensed under the GPL
Reasoning: There was never the intention to license gobby under
the LGPL. COPYING included the GPL but all the license headers referred
to the LGPL. This is now fixed in accordance with all the
contributing authors.
ACK:
- Armin Burgmeier <armin@0x539.de>
- Philipp Kern <phil@0x539.de>
- Benjamin Herr <ben@0x539.de>
2005-04-09 Armin Burgmeier <armin@0x539.de>
Watching on Glib::signal_io() instead of using a timer
2005-04-08 Armin Burgmeier <armin@0x539.de>
Fixed a crash in gobby which occured if a connection has been lost
2005-04-08 Armin Burgmeier <armin@0x539.de>
Changed Menu-Action 'Help' to 'MenuHelp', for consistency with other
actions
2005-04-08 Armin Burgmeier <armin@0x539.de>
Resolved a conflict in inc/window.hpp and src/window.cpp
2005-04-08 Armin Burgmeier <armin@0x539.de>
Document creation
2005-04-08 Philipp Kern <phil@0x539.de>
Added about dialog
2005-04-08 Benjamin Herr <ben@0x539.de>
Added entrydialog to prompt for strings
2005-04-08 Armin Burgmeier <armin@0x539.de>
Fixed gobby synchronization
2005-04-08 Benjamin Herr <ben@0x539.de>
Added menu items for *Document, fixed typo
2005-04-08 Philipp Kern <phil@0x539.de>
Moved config_.hpp to config.hpp, introduced features.hpp
2005-04-07 Philipp Kern <phil@0x539.de>
Added initial NEWS content and Ben to AUTHORS
2005-04-07 Philipp Kern <phil@0x539.de>
Added document toolbar button stubs
2005-04-07 Philipp Kern <phil@0x539.de>
Receive document title from libobby
2005-04-07 Armin Burgmeier <armin@0x539.de>
h4ck
2005-04-07 Benjamin Herr <ben@0x539.de>
Todo: Exceptions?
2005-04-07 Benjamin Herr <ben@0x539.de>
Fixed window to also connect chat signals on join
2005-04-07 Benjamin Herr <ben@0x539.de>
Fixed indenting spaces to be tabs
2005-04-07 Armin Burgmeier <armin@0x539.de>
Document synchronisation thorugh libobby
2005-04-07 Benjamin Herr <ben@0x539.de>
Added handling of chat events from m_chat and m_buffer
2005-04-05 Armin Burgmeier <armin@0x539.de>
Initial TODO file
2005-04-04 Philipp Kern <phil@0x539.de>
Depend on gtkmm-2.4 >= 2.6.0
2005-04-03 Armin Burgmeier <armin@0x539.de>
Document class representing an obby::document
2005-04-03 Armin Burgmeier <armin@0x539.de>
Event delegations
2005-04-03 Armin Burgmeier <armin@0x539.de>
XML config file in home dir; requires libxml++
2005-04-02 Armin Burgmeier <armin@0x539.de>
Added create & join dialogs
2005-04-02 Armin Burgmeier <armin@0x539.de>
Skeleton of the UI
2005-04-02 Armin Burgmeier <armin@0x539.de>
Header, GTK naming scheme
2005-03-30 Philipp Kern <phil@0x539.de>
Autotoolised gobby
2005-03-30 Armin Burgmeier <armin@0x539.de>
Empty gobby window
|