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
|
2016-10-11 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl, otr/trans/ru.msg, otr/trans/uk.msg: Do not include own
JID into the OTR request message.
2016-07-10 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Do not send the message if the OTR code returns an
error (this prevents leaking unencrypted material due to bugs in the
OTR plugin).
2016-02-04 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Fixed rendering OTR icons in chat windows.
2016-02-01 Sergei Golovan <sgolovan@nes.ru>
* ctcomp/msgs/ru.msg: Fixed typo.
2016-01-11 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl: Do not rename and replace various debug commands if
they don't exist in the first place.
2016-01-02 Sergei Golovan <sgolovan@nes.ru>
* receipts/receipts.tcl: Adjusted priority for the icon drawing
procedure.
* otr/otr.tcl: Use own procedures to store, discard and resend messages
after refreshing broken OTR conversation. Moved drawing OTR message
icon for outgoing messages to draw_message_hook where it is more
appropriate.
2015-12-27 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Display more appropriate error messages in case of
received OTR request but without any OTR key configured.
* otr/msgs/ru.msg, otr/msgs/uk.msg: Updated Russian and Ukrainian
translations.
2015-12-22 Sergei Golovan <sgolovan@nes.ru>
* custom-urls/custom-urls.tcl: Added custom URL for the Tkabber Fossil
repository artifacts, like [3cd34577a3]. Modified the custom URL
procedure to allow more flexible URL definitions. In particular,
regexps with more than one capture group are permitted.
2015-12-19 Sergei Golovan <sgolovan@nes.ru>
* ejabberd/msgs/uk.msg: Updated Ukrainian translations.
* cyrillize/cyrillize.tcl, cyrillize/engrus.tbl: Added the Ukrainian
keyboard layout support.
* cyrillize/msgs/ru.msg, bc/msgs/ru.msg: Updated Russian translations.
* cyrillize/msgs/uk.msg, aniemoticons/msgs/uk.msg, bc/msgs/uk.msg,
chess/msgs/uk.msg, ctcomp/msgs/uk.msg, custom-urls/msgs/uk.msg,
cyrillize/msgs/uk.msg, browser/msgs/uk.msg, battleship/msgs/uk.msg:
Updated Ukrainian translations.
2015-12-14 Sergei Golovan <sgolovan@nes.ru>
* floatingcontact/msgs/uk.msg, floatinglog/msgs/uk.msg: Updated
Ukrainian translations.
2015-12-13 Sergei Golovan <sgolovan@nes.ru>
* quotelastmsg/msgs/uk.msg, receipts/msgs/uk.msg, renju/msgs/uk.msg,
reversi/msgs/uk.msg, singularity/msgs/uk.msg, socials/msgs/uk.msg,
spy/msgs/uk.msg, stripes/msgs/uk.msg, tclchat/msgs/uk.msg,
tkabber-khim/msgs/uk.msg, traffic/msgs/uk.msg, unixkeys/msgs/uk.msg,
whiteboard/msgs/uk.msg: Updated Ukrainian translations.
* otr/msgs/ru.msg: Updated Russian translations.
* checkers/msgs/uk.msg, debug/msgs/uk.msg, otr/msgs/uk.msg,
otr/trans/uk.msg, poker/msgs/uk.msg, presencecmd/msgs/uk.msg,
quiz/msgs/uk.msg, whiteboard/msgs/uk.msg: Updated Ukrainian
translations.
* jidlink/msgs/uk.msg, jidlink/trans/uk.msg, latex/msgs/uk.msg,
mute/msgs/uk.msg, openurl/msgs/uk.msg, osd/msgs/uk.msg: Updated
Ukrainian translations.
* gmail/msgs/ru.msg: Updated Russian translations.
* georoster/msgs/uk.msg, gmail/msgs/uk.msg, iconsets/msgs/uk.msg:
Updated Ukrainian translations.
2015-12-10 Sergei Golovan <sgolovan@nes.ru>
* custom-urls/custom-urls.tcl: Added custom url for the Tkabber Wiki
page, for example wiki:index or wiki:en/Main_Page.
2015-11-20 Sergei Golovan <sgolovan@nes.ru>
* custom-urls/custom-urls.tcl: Fixed determining if a string consists
of digits only.
2015-08-28 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Do not try to add OTR icon for messages without any
type set.
2015-08-08 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Fixed typo (added missing line continuation backslash).
2015-07-10 Sergei Golovan <sgolovan@nes.ru>
* Makefile: Added 'fossil pull' call to the 'up' Makefile target for
those who use fossil in manual merge mode.
2015-06-11 Sergei Golovan <sgolovan@nes.ru>
* battleship/battleship.tcl, battleship/msgs/ru.msg: Fixed a message
and its translation.
2015-06-01 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Do not add an OTR icon to the chatlog window if the
message sending was aborted in rewrite_outgoing_message_hook.
2015-05-28 Sergei Golovan <sgolovan@nes.ru>
* otr/key.tcl: Prettified the progressbar appearance for Ttk based
interface.
2015-05-26 Sergei Golovan <sgolovan@nes.ru>
* otr/msgs/ru.msg, otr/otr.tcl, otr/trans/ru.msg: Clarified the error
message, fixed typo.
2015-05-25 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl: Added new gpg debug category which prints debug
logs for the gpg package.
2015-05-24 Sergei Golovan <sgolovan@nes.ru>
* COPYING, aniemoticons/msgs/de.msg, attline/msgs/de.msg,
attline/msgs/es.msg, attline/msgs/pl.msg, attline/msgs/ru.msg,
attline/msgs/uk.msg, battleship/msgs/ru.msg, bc/msgs/ru.msg,
checkers/README, checkers/proto, chess/proto, cyrillize/msgs/ru.msg,
floatinglog/ChangeLog, iconsets/amibulb/roster/icondef.xml,
tkabber-khim/INSTALL: Reformatted the code.
2015-05-10 Sergei Golovan <sgolovan@nes.ru>
* ChangeLog, aniemoticons/anigif.tcl, attline/README,
battleship/battleship.tcl, bc/bc.tcl, checkers/checkers.tcl,
checkers/proto, chess/chess.tcl, chess/proto,
custom-urls/custom-urls.tcl, filters/filters.tcl,
floatinglog/ChangeLog, floatinglog/floatinglog.tcl,
georoster/howto.txt, georoster/msgs/es.msg, georoster/msgs/nl.msg,
gmail/gmail.tcl, jidlink/plugins/filetransfer.tcl,
jidlink/plugins/ibb.tcl, latex/latex.tcl, mute/mute.tcl, osd/osd.tcl,
otr/auth.tcl, otr/otr.tcl, poker/poker.tcl, poker/proto,
quiz/quiz.tcl, renju/proto, renju/renju.tcl, reversi/proto,
reversi/reversi.tcl, singularity/README, socials/socials.en,
socials/socials.ru, tclchat/tclchat_messages.tcl,
tkabber-khim/khim/ROOT.msg, tkabber-khim/khim/cs.msg,
tkabber-khim/khim/da.msg, tkabber-khim/khim/en.msg,
tkabber-khim/khim/es.msg, tkabber-khim/khim/khim.tcl,
tkabber-khim/khim/pl.msg, tkabber-khim/tklib_licence.terms,
traffic/msgs/ru.msg, traffic/msgs/uk.msg, whiteboard/svgrender.tcl,
whiteboard/whiteboard.tcl: Removed the trailing whitespaces.
2015-05-09 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl: Adapted the Whiteboard plugin to the Ttk
based interface.
* whiteboard/ChangeLog, whiteboard/msgs/de.msg, whiteboard/msgs/es.msg,
whiteboard/msgs/nl.msg, whiteboard/msgs/pl.msg,
whiteboard/msgs/ro.msg, whiteboard/msgs/ru.msg,
whiteboard/msgs/uk.msg, whiteboard/svgrender.tcl,
whiteboard/whiteboard.tcl: Reformatted the code.
* unixkeys/INSTALL, unixkeys/README, unixkeys/TODO,
unixkeys/msgs/ru.msg, unixkeys/unixkeys.tcl: Reformatted the code.
Bind all events to TEntry also.
* traffic/traffic.tcl: Adapted the Traffic accounting plugin to the
Ttk based interface.
* traffic/msgs/de.msg, traffic/msgs/es.msg, traffic/msgs/pl.msg,
traffic/msgs/ru.msg, traffic/msgs/uk.msg, traffic/traffic.tcl:
Reformatted the code.
* tkabber-khim/ChangeLog, tkabber-khim/INSTALL,
tkabber-khim/msgs/es.msg, tkabber-khim/msgs/pl.msg,
tkabber-khim/msgs/ru.msg, tkabber-khim/tkabber-khim.tcl: Reformatted
the code. Adapted the Tkabber KHIM plugin to the Ttk based
interface.
* tkabber-khim/khim/ROOT.msg, tkabber-khim/khim/cs.msg,
tkabber-khim/khim/da.msg, tkabber-khim/khim/de.msg,
tkabber-khim/khim/en.msg, tkabber-khim/khim/es.msg,
tkabber-khim/khim/khim.tcl, tkabber-khim/khim/ru.msg: Updated the
KHIM package.
* tclchat/tclchat.tcl: Adapted the Tclchat plugin to the Ttk based
interface.
* tclchat/msgs/es.msg, tclchat/msgs/ru.msg, tclchat/tclchat.tcl,
tclchat/tclchat_commands.tcl, tclchat/tclchat_messages.tcl:
Reformatted the code.
* stripes/INSTALL, stripes/README, stripes/msgs/de.msg,
stripes/msgs/ru.msg, stripes/stripes.tcl: Reformatted the code.
* spy/spy.tcl: Adapted the Spy presence plugin to the Ttk based
interface. Cleaned up the code.
* spy/msgs/de.msg, spy/msgs/es.msg, spy/msgs/pl.msg, spy/msgs/ru.msg,
spy/msgs/uk.msg, spy/spy.tcl: Reformatted the code.
* socials/ChangeLog, socials/msgs/de.msg, socials/msgs/ru.msg,
socials/socials.tcl: Reformatted the code.
* singularity/INSTALL, singularity/README, singularity/msgs/pl.msg,
singularity/msgs/ru.msg, singularity/singularity.tcl: Reformatted
the code.
* reversi/reversi.tcl: Adapted the Reversi game plugin to the Ttk
based interface.
* reversi/msgs/es.msg, reversi/msgs/nl.msg, reversi/msgs/pl.msg,
reversi/msgs/ru.msg, reversi/msgs/uk.msg,
reversi/pixmaps/checkers/icondef.xml,
reversi/pixmaps/xboard/icondef.xml, reversi/proto,
reversi/reversi.tcl: Reformatted the code.
* renju/renju.tcl: Adapted the Renju/Gomoku game plugin to the Ttk
based interface.
* poker/poker.tcl: Fixed the dialog messages background.
* renju/msgs/es.msg, renju/msgs/ru.msg,
renju/pixmaps/black/icondef.xml, renju/pixmaps/stones/icondef.xml,
renju/proto, renju/renju.tcl: Reformatted the code.
* receipts/INSTALL, receipts/README, receipts/TODO,
receipts/msgs/de.msg, receipts/msgs/es.msg, receipts/msgs/pl.msg,
receipts/msgs/ru.msg, receipts/receipts.tcl: Reformatted the code.
* quotelastmsg/INSTALL, quotelastmsg/msgs/de.msg,
quotelastmsg/msgs/ru.msg, quotelastmsg/quotelastmsg.tcl: Reformatted
the code.
* quiz/msgs/ru.msg, quiz/quiz.tcl: Reformatted the code.
* presencecmd/INSTALL, presencecmd/TODO, presencecmd/msgs/de.msg,
presencecmd/msgs/es.msg, presencecmd/msgs/pl.msg,
presencecmd/msgs/ru.msg, presencecmd/presencecmd.tcl: Reformatted
the code.
* poker/poker.tcl: Adapted the Poker game plugin to the Ttk based
interface.
* poker/msgs/ru.msg, poker/pixmaps/classic/icondef.xml,
poker/pixmaps/doods/icondef.xml, poker/poker.tcl, poker/proto:
Reformatted the code. Fixed the crash with the newer Tk for the
case when a canvas tag doesn't exist.
* otr/auth.tcl, otr/key.tcl, otr/msgs/ru.msg, otr/otr.tcl,
otr/trans/ru.msg: Reformatted the code.
* osd/ChangeLog, osd/msgs/ru.msg, osd/osd.tcl: Reformatted the code,
added external requirement to the plugin description.
* openurl/msgs/de.msg, openurl/msgs/es.msg, openurl/msgs/pl.msg,
openurl/msgs/ru.msg, openurl/openurl.tcl: Reformatted the code.
Removed unnecessary [eval].
* mute/mute.tcl: Adapted the MUTE plugin to the Ttk based interface.
Added a list of external requirements for the MUTE to work.
* mute/msgs/ru.msg, mute/mute.tcl: Reformatted the code.
* latex/latex.tcl, latex/msgs/de.msg, latex/msgs/es.msg,
latex/msgs/ru.msg, latex/msgs/uk.msg: Reformatted the code. Removed
unnecessary [expr].
* jidlink/plugins/filetransfer.tcl, jidlink/plugins/ibb.tcl: Adapted
the Jidlink filetransfer plugin to the Ttk based interface. Fixed
namespace issues.
* jidlink/jidlink.tcl, jidlink/msgs/de.msg, jidlink/msgs/es.msg,
jidlink/msgs/pl.msg, jidlink/msgs/ru.msg, jidlink/plugins/dtcp.tcl,
jidlink/plugins/filetransfer.tcl, jidlink/plugins/ibb.tcl,
jidlink/trans/ru.msg: Reformatted the code.
* iconsets/amibulb/icondef.xml, iconsets/gabber/icondef.xml,
iconsets/gush/icondef.xml, iconsets/iconsets.tcl,
iconsets/icq/icondef.xml, iconsets/jajc/icondef.xml,
iconsets/jarl/icondef.xml, iconsets/kroc/icondef.xml,
iconsets/msgs/ru.msg, iconsets/psi/icondef.xml: Reformatted the code.
2015-05-08 Sergei Golovan <sgolovan@nes.ru>
* gmail/gmail.tcl: Adapted the Gmail notifications plugin to the Ttk
interface.
* gmail/gmail.tcl, gmail/msgs/de.msg, gmail/msgs/es.msg,
gmail/msgs/pl.msg, gmail/msgs/ru.msg: Reformatted the code.
* georoster/georoster.tcl: Adapted the Georoster plugin to the Ttk
based interface.
* georoster/ChangeLog, georoster/cities/earth,
georoster/cities/earth.ru, georoster/coords/de.coords,
georoster/coords/jm.coords, georoster/coords/nl.coords,
georoster/coords/ru.coords, georoster/coords/ua.coords,
georoster/coords/us.coords, georoster/georoster.tcl,
georoster/maps/bwmap2.gif, georoster/maps/bwmap4.gif,
georoster/maps/colormap.jpg, georoster/maps/darkmap.gif,
georoster/msgs/de.msg, georoster/msgs/es.msg, georoster/msgs/nl.msg,
georoster/msgs/pl.msg, georoster/msgs/ro.msg, georoster/msgs/ru.msg,
georoster/msgs/uk.msg: Reformatted the code, moved data files into
subdirectories.
* floatinglog/ChangeLog, floatinglog/floatinglog.tcl,
floatinglog/msgs/de.msg, floatinglog/msgs/es.msg,
floatinglog/msgs/pl.msg, floatinglog/msgs/ru.msg: Reformatted the
code.
* floatingcontact/README, floatingcontact/floatingcontact.tcl,
floatingcontact/msgs/de.msg, floatingcontact/msgs/ru.msg:
Reformatted the code. Douplicated the % sign in bindings.
* filters/filters.tcl, filters/msgs/ca.msg, filters/msgs/de.msg,
filters/msgs/eo.msg, filters/msgs/es.msg, filters/msgs/eu.msg,
filters/msgs/fr.msg, filters/msgs/it.msg, filters/msgs/nl.msg,
filters/msgs/pl.msg, filters/msgs/pt.msg, filters/msgs/ro.msg,
filters/msgs/ru.msg, filters/msgs/uk.msg: Reformatted the code.
Fixed work with the wrapped ttk::treeview as a listbox widget.
* ejabberd/ejabberd.tcl: Adapted the Ejabberd config plugin to the
Ttk based interface.
* ejabberd/ejabberd.tcl, ejabberd/msgs/ca.msg, ejabberd/msgs/de.msg,
ejabberd/msgs/es.msg, ejabberd/msgs/fr.msg, ejabberd/msgs/it.msg,
ejabberd/msgs/nl.msg, ejabberd/msgs/pl.msg, ejabberd/msgs/pt.msg,
ejabberd/msgs/ru.msg, ejabberd/msgs/uk.msg: Reformatted the code.
* debug/debug.tcl, debug/msgs/de.msg, debug/msgs/es.msg,
debug/msgs/pl.msg, debug/msgs/ru.msg, debug/msgs/uk.msg: Reformatted
the code, fixed posting menu for debug category with :: in it.
Adapted the debug window to the Ttk based interface.
* cyrillize/cyrillize.tcl, cyrillize/msgs/ru.msg: Reformatted the
code.
* custom-urls/custom-urls.tcl, custom-urls/msgs/pl.msg,
custom-urls/msgs/ru.msg: Reformatted code, updated the tclbug and
tkbug examples, fixed processing non-digital variable URL parts.
* ctcomp/ChangeLog, ctcomp/INSTALL, ctcomp/README, ctcomp/TODO,
ctcomp/ctcomp.tcl, ctcomp/msgs/de.msg, ctcomp/msgs/ru.msg:
Reformatted the code.
* README: Added a few words about enabling plugins.
* battleship/battleship.tcl, checkers/checkers.tcl: Fixed the board
canvas size, moved relief changing code into a separate procedure.
* chess/chess.tcl: Adapted the Chess plugin to the Ttk interface.
* chess/chess.tcl, chess/msgs/es.msg, chess/msgs/nl.msg,
chess/msgs/pl.msg, chess/msgs/ro.msg, chess/msgs/ru.msg,
chess/msgs/uk.msg, chess/pixmaps/classic/icondef.xml,
chess/pixmaps/wooden/icondef.xml, chess/pixmaps/xboard/icondef.xml,
chess/proto: Reformatted code.
* checkers/checkers.tcl: Adapted the Checkers plugin to the Ttk
interface.
* checkers/README, checkers/checkers.tcl, checkers/msgs/es.msg,
checkers/msgs/nl.msg, checkers/msgs/pl.msg, checkers/msgs/ru.msg,
checkers/msgs/uk.msg, checkers/pixmaps/checkers/icondef.xml,
checkers/pixmaps/xboard/icondef.xml, checkers/proto,
checkers/rules/brasilian.txt, checkers/rules/italian.txt,
checkers/rules/pool.txt, checkers/rules/russian.txt,
checkers/rules/spanish.txt, checkers/rules/straight.txt: Reformatted
code.
* browser/browser.tcl: Adapted the Jabber Browser plugin to the Ttk
interface.
2015-05-07 Sergei Golovan <sgolovan@nes.ru>
* bc.tcl, bc/msgs/ru.msg, browser/browser.tcl, browser/msgs/de.msg,
browser/msgs/es.msg, browser/msgs/pl.msg, browser/msgs/ru.msg:
Fit code into 80 column limit, replaced tabs by spaces, added the
corresponding Vim modeline.
* battleship/battleship.tcl: Adapted the Battleship game to Ttk.
* battleship/battleship.tcl: Fit the cone into 80 characters limit.
* aniemoticons/msgs/de.msg, aniemoticons/msgs/ru.msg,
attline/msgs/de.msg, attline/msgs/es.msg, attline/msgs/pl.msg,
attline/msgs/ru.msg, attline/msgs/uk.msg, battleship/battleship.tcl,
battleship/msgs/ru.msg, battleship/pixmaps/copybook/icondef.xml,
battleship/proto: Replaced tabs by spaces, added Vim modelines which
instruct the editor to expand tabs.
* aniemoticons/aniemoticons.tcl, aniemoticons/anigif.tcl,
attline/attline.tcl: Fit the code into 80 characters line limit.
Added Vim modeline which expands tabs into spaces. Actually replaced
tabs by spaces in the code.
* aniemoticons/aniemoticons.tcl: Extended the file description,
cleaned up the code.
2015-05-04 Sergei Golovan <sgolovan@nes.ru>
* ejabberd/ejabberd.tcl, ejabberd/msgs/ca.msg, ejabberd/msgs/de.msg,
ejabberd/msgs/es.msg, ejabberd/msgs/fr.msg, ejabberd/msgs/it.msg,
ejabberd/msgs/nl.msg, ejabberd/msgs/pl.msg, ejabberd/msgs/pt.msg,
ejabberd/msgs/ru.msg, ejabberd/msgs/uk.msg: Moved processing the
ejabberd:config disco feature to the Ejabberd admin plugin.
2015-04-29 Sergei Golovan <sgolovan@nes.ru>
* socials/socials.ru, socials/socials.tcl: Converted the socials
plugin from KOI8-R to UTF-8.
* quiz/quiz.tcl, quiz/quizdata.txt: Converted the quiz game plugin
from KOI8-R to UTF-8 encoding.
* georoster/earth: Fixed encoding for the fallback cities file.
* cyrillize/cyrillize.tcl, cyrillize/engrus.tbl: Converted cyrillize
plugin from KOI8-R to UTF-8.
* bc/bc.tcl, bc/ru.dic: Converted bulls&cows game plugin from KOI8-R
to UTF-8.
* attline/msgs/de.msg, browser/msgs/de.msg, ctcomp/msgs/de.msg,
debug/msgs/de.msg, ejabberd/msgs/de.msg, floatinglog/msgs/de.msg,
georoster/msgs/de.msg, gmail/msgs/de.msg, jidlink/msgs/de.msg,
latex/msgs/de.msg, openurl/msgs/de.msg, presencecmd/msgs/de.msg,
quotelastmsg/msgs/de.msg, receipts/msgs/de.msg, spy/msgs/de.msg,
stripes/msgs/de.msg, tkabber-khim/khim/da.msg, traffic/msgs/de.msg:
Fixed encoding in translated messages. Converted from latin1 to
UTF-8.
2015-04-17 Sergei Golovan <sgolovan@nes.ru>
* otr/auth.tcl, otr/key.tcl, otr/otr.tcl: Adapted OTR plugin dialog
windows to Ttk interface.
* otr/auth.tcl: Now the context menu works for both Tk and Ttk
mclistboxes.
* otr/auth.tcl: Use the improved mclistbox API.
2015-04-16 Sergei Golovan <sgolovan@nes.ru>
* browser/browser.tcl: Fixed the drop command arguments.
* Makefile: Added filters subdirectory to the installed directories
list.
2015-04-13 Sergei Golovan <sgolovan@nes.ru>
* README, filters/filters.tcl, filters/msgs/ca.msg,
filters/msgs/de.msg, filters/msgs/eo.msg, filters/msgs/es.msg,
filters/msgs/eu.msg, filters/msgs/fr.msg, filters/msgs/it.msg,
filters/msgs/nl.msg, filters/msgs/pl.msg, filters/msgs/pt.msg,
filters/msgs/ro.msg, filters/msgs/ru.msg, filters/msgs/uk.msg:
Split out Jabberd 1.4 mod_filter support into an external plugin.
2015-04-12 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Changed buttons a little bit to adapt them to Ttk.
2015-04-08 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl: Fixed plugin unloading for the case when
there was no whiteboards open during the current session.
* whiteboard/svgrender.tcl: Removed forgotten TODO leftover.
2015-04-07 Sergei Golovan <sgolovan@nes.ru>
* floatingcontact/README: Removed Subversion keyword placeholder.
2015-03-30 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl, debug/msgs/de.msg, debug/msgs/es.msg,
debug/msgs/pl.msg, debug/msgs/ru.msg, debug/msgs/uk.msg: Relocated
the profiling menu items from the main Tkabebr code to the Debug
plugin.
* battleship/battleship.tcl, browser/browser.tcl,
checkers/checkers.tcl, chess/chess.tcl, georoster/georoster.tcl,
gmail/gmail.tcl, jidlink/plugins/dtcp.tcl,
jidlink/plugins/filetransfer.tcl, mute/mute.tcl, osd/osd.tcl,
quiz/quiz.tcl, renju/renju.tcl, reversi/reversi.tcl,
socials/socials.tcl, tclchat/tclchat.tcl,
tclchat/tclchat_messages.tcl, traffic/traffic.tcl: Got rid of all
commands from TclX (namely, [cequal], [cindex], [crange],
[lcontain], [lempty], [lmatch], [lvarpush], [lrmdups], [random])
because the TclX requirement will be removed from Tkabber soon.
2015-03-29 Sergei Golovan <sgolovan@nes.ru>
* */*: Added headers with short description. Removed no longer
needed SVN keywords placeholders.
* otr/auth.tcl, otr/key.tcl, otr/msgs/ru.msg, otr/otr.tcl: Added
headers with short description.
* otr/tclotr/auth.tcl, otr/tclotr/crypto.tcl, otr/tclotr/data.tcl,
otr/tclotr/key.tcl, otr/tclotr/message.tcl, otr/tclotr/otr.tcl,
otr/tclotr/pkgIndex.tcl, otr/tclotr/smp.tcl, otr/trans/ru.msg:
Removed no longer needed SVN keywords placeholders.
* otr/tclotr/ChangeLog, otr/tclotr/README: Added separate ChangelLog
and README for the TclOTR package.
* whiteboard/svgrender.tcl: Fixed variable name.
* whiteboard/msgs/de.msg: Fixed encoding.
* whiteboard/msgs/de.msg, whiteboard/msgs/es.msg,
whiteboard/msgs/nl.msg, whiteboard/msgs/pl.msg,
whiteboard/msgs/ro.msg, whiteboard/msgs/ru.msg,
whiteboard/msgs/uk.msgwhiteboard/svgrender.tcl,
whiteboard/whiteboard.tcl: Added headers with short description.
* whiteboard/svgrender.tcl: Dropped Tcl/Tk 8.4 support.
2015-03-28 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl: Fixed image adding for private chats.
Added support for skewing transformations.
* whiteboard/msgs/ru.msg: Updated Russian translations.
2015-03-27 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl: Fixed moving and transforming whiteboard
items in private chats.
2015-03-25 Sergei Golovan <sgolovan@nes.ru>
* otr/tclotr/otr.tcl: Returned [eval] instead of [uplevel #0] for
calling back since [eval] allows to look up the call stack anf find
something useful there (see [otr::send] procedure).
Switch the OTR state to plaintext after an OTR error message is
received. Otherwise, if the other side disables OTR in the middle of
an encrypted conversation we cannot tell her anything at all - all
messages will be encrypted, and she'll never read them.
* ctcomp/msgs/ru.msg, spy/msgs/ru.msg: Updated Russian translations.
* otr/tclotr/license.terms: Fixed copyright year.
2015-03-24 Sergei Golovan <sgolovan@nes.ru>
* Makefile: Add 'up' target which updates Tkabber plugins from their
Fossil repository.
2014-12-13 Sergei Golovan <sgolovan@nes.ru>
* battleship/battleship.tcl: Fixed error with creating windows with
the same names. Fixed errors when flipping and/or dragging ships
with mouse pointer exactly between the edges of two adjacent cells.
2014-11-12 Sergei Golovan <sgolovan@nes.ru>
* otr/tclotr/otr.tcl: Evaluate external callback procedures at the top
stack level.
2014-11-02 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl, otr/auth.tcl: Got rid of avoidable [eval] calls,
deduplicated setting properties for chat and message OTR buttons.
2014-07-16 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Added scrollbar for the OTR userinfo page. It helps
when there are many user's resources using OTR.
2014-05-06 Sergei Golovan <sgolovan@nes.ru>
* otr/tclotr/auth.tcl: Fixed recreating the reveal signature message.
2014-04-28 Sergei Golovan <sgolovan@nes.ru>
* otr/msgs/ru.msg: Fixed typo.
2014-02-25 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Fixed reporting SMP progress when the SMP dialog window
is already destroyed.
2014-02-19 Sergei Golovan <sgolovan@nes.ru>
* otr/tclotr/smp.tcl: Added a debug print procedure instead of plain
puts calls.
* debug/debug.tcl: Use ::otr::smp::Debug for printing OTR
authentication debug info.
2014-02-15 Sergei Golovan <sgolovan@nes.ru>
* otr/README: Fixed the requirements list.
2014-02-14 Sergei Golovan <sgolovan@nes.ru>
* *: 1.1 is released.
2014-02-07 Sergei Golovan <sgolovan@nes.ru>
* battleship/*, Makefile, README: Added a new battleship game plugin.
2014-02-02 Sergei Golovan <sgolovan@nes.ru>
* otr/key.tcl, otr/tclotr/key.tcl: Moved key generation procedure to
the otr::key package.
* otr/otr.tcl, otr/auth.tcl, otr/key.otr: Copy keys fingerprints to
clipboard in authentication dialog, in manage key dialog, in
edit authentication dialog.
* otr/otr.tcl: Fixed bugs in switching OTR icons after authentication.
* otr/msgs/ru.msg: Updated Russian translation.
2014-01-31 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Fixed typo in creating OTR button for normal message
windows.
* README: Added short description for floatingcontact and otr plugins.
* otr/otr.tcl: Toggle the OTR message state on clicking OTR button in
a chat tab.
2014-01-30 Sergei Golovan <sgolovan@nes.ru>
* otr/key.tcl: Fixed typo in error message.
* otr/msgs/ru.msg: Updated Russian translation.
* otr/otr.tcl: Disable OTR contact menu if the contact is myself.
Don't add fake script to the list of scripts executed on message
state changes.
2014-01-29 Sergei Golovan <sgolovan@nes.ru>
* Makefile: Added otr subdirectory to the install list.
* otr/otr.tcl, otr/auth.tcl: Moved resetting auth icons to the otr.tcl.
2014-01-28 Sergei Golovan <sgolovan@nes.ru>
* otr/key.tcl, otr/otr.tcl: Drop existing OTR cnversations only if the
key is really is changed or deleted. Show an info message when this
happens.
* otr/auth.tcl: Change OTR icons on all existing windows acorrding to
the authentication changes.
* otr/otr.tcl: Added fingerprint and SSID to the roster and OTR button
help text. Do cleanup after the authentication dialog is closed.
* otr/auth.tcl: Fixed changing icons, renamed cancel button to close
for the case when there's nothing to cancel.
* otr/otr.tcl: Unset a few global variables when they aren't in use.
* otr/otr.tcl: Don't add not-private icon to incoming messages when
the message state is plaintext.
2014-01-27 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl: Fail to load OTR plugin if Tkabber doesn't support the
necessary features.
* otr/otr.tcl: Added heartbeat-interval option.
* otr/key.tcl: Fixed collecting jids from current connections to show
in key management dialog.
* otr/key.tcl: Show dialog if importing DSA key fails.
* otr/tclotr/key.tcl: Fixed typo.
* otr/tclotr/key.tcl: Use unix line endings when exporting the DSA
private key. Refuse to import keys which aren't 1024 bit long.
* otr/README: Fixed info on how to use private keys.
* otr/tclotr/message.tcl: Treat human readable message part as HTML
(strip tags for incoming messages, escape HTML entities for
outgoing ones).
* otr/otr.tcl, otr/trans/ru.msg: Removed repeated link.
2014-01-26 Sergei Golovan <sgolovan@nes.ru>
* otr/tclotr/otr.tcl: Fixed refreshing private connection if the
peer has changed his instance tag. Clear messages subject to resend
when the message state switches from encrypted.
* otr/tclotr/auth.tcl: Fixed recreating D-H commit message.
* otr/otr.tcl: Implemented disabling logs for encrypted OTR messages.
* otr/auth.tcl: Replaced combobox by option menu to match edit keys
dialog.
* otr/otr.tcl: Add the corresponding OTR icon to outgoing chat
messages.
* floatinglog/floatinglog.tcl, whiteboard/whiteboard.tcl,
browser/browser.tcl, gmail/gmail.tcl, georoster/georoster.tcl:
Replaced direct bindings to mouse buttons 2 and 3 by virtual
events <<PasteSelection>> and <<ContextMenu>>, because in MacOSX
and in Unix buttons 2 and 3 correspond to different mous buttons
(thanks to Vitaly Takmazov).
* spy/spy.tcl, spy/msgs/ru.msg: Added sound notification.
2014-01-25 Sergei Golovan <sgolovan@nes.ru>
* otr/key.tcl, otr/tclotr/crypto.tcl: Code cleanup, made DSA key
generation more clear.
* otr/*: Added short description to procedures definitions.
* otr/otr.tcl, otr/tclotr/otr.tcl: Use the sender's instance tag
included into the Diffie-Hellman commit message. Resend the last
data message if it was replied by an OTR error message (resend it
after a new successful AKE).
* otr/tclotr/otr.tcl: Fixed processing message state changes. Show
an info message when private conversation is started.
* otr/msgs/ru.msg: Updated Russian translations.
* otr/tclotr/otr.tcl: Show an info message when private conversation
is finished.
* otr/otr.tcl: Translate outgoing OTR error messages.
* otr/msgs/ru.msg, otr/trans/ru.msg: Update Russian translatinos.
* otr/otr.tcl, otr/tclotr/otr.tcl: Show SSID and fingerprint in the
userinfo dialog.
* otr/msgs/ru.msg: Updated Russian translations.
2014-01-24 Sergei Golovan <sgolovan@nes.ru>
* otr/key.tcl, otr/otr.tcl: Finish all existing OTR sessions for a
given connection if the associated private key is imported or
deleted.
* otr/key.tcl, otr/tclotr/crypto.tcl: Implemented generating new
DSA private key.
* otr/msgs/ru.msg, otr/otr.tcl, otr/trans/ru.msg: Added Russian
translation.
2014-01-23 Sergei Golovan <sgolovan@nes.ru>
* otr/otr.tcl, otr/tclotr/message.tcl, otr/tclotr/otr.tcl: Code
cleanup. Moved most of the interaction with the calling program to
callbacks. Fixed OTR labels for incoming chat messages. Disabled
some OTR menu items depending on the current message state.
* otr/auth.tcl: Remove profile with empty fingerprints list from the
stored authentications.
* otr/otr.tcl: Assign the message icon directly while rewriting its
body and not when drawing.
* otr/tclotr/otr.tcl: Fixed typos in callback invocations.
* otr/pixmaps/otr/notprivate.gif: Fixed the right edge.
* otr/key.tcl, otr/tclotr/key.tcl, otr/otr.tcl: Implemented simple GUI
for managing OTR private DSA keys (currently importing, exporting,
deleting keys are supported).
2014-01-22 Sergei Golovan <sgolovan@nes.ru>
* otr/auth.tcl, otr/otr.tcl, otr/tclotr/otr.tcl: Store the
authentication data after peer verification using question & answer,
shared secret or manual verification. Provisionally implemented
a dialog where user can edit auth info.
* otr/otr.tcl: Dont filter groupchat, error and headline stanzas.
2014-01-21 Sergei Golovan <sgolovan@nes.ru>
* otr/tclotr/key.tcl, otr/tclotr/pkgIndex.tcl: Added a new subpackage
which currently encodes and decodes DSA private keys in PEM format.
* otr/otr.tcl, otr/README: Use ~/.tkabber/otr.private.key.pem file for
DSA private key instead of ::OTRPrivateKey variable from the config.
* otr/otr.tcl: Fixed updating default OTR policy from GUI.
* otr/otr.tcl, otr/tclotr/otr.tcl: Tell the OTR plugin about state
changes and SMP progress using callbacks and only in case of actual
change.
* otr/tclotr/otr.tcl: Attach the OTR whitespace tag only if there
weren't received plaintext messages from the peer before.
* otr/auth.tcl: Implemented authentication storing and restoring
infrastructure for future use (untested yet).
2014-01-20 Sergei Golovan <sgolovan@nes.ru>
* otr/tclotr/otr.tcl: Do not send the OTR query message after an OTR
error if no ALLOW_V2 or ALLOW_V3 is in the policy flags.
* otr/tclotr/data.tcl: Removed already done todo item.
* otr/tclotr/otr.tcl, otr/tclotr/message.tcl: Implemented the old MAC
keys revelation, checking for the peer's counter monotonicity,
ignoring verification and decryption errors if IGNORE_UNREADABLE
message flag is set.
* otr/tclotr/data.tcl, otr/tclotr/otr.tcl: Implemented assembling
incoming messages from fragments.
* otr/tclotr/otr.tcl, otr/otr.tcl: Implemented sending heartbeat
messages (the OTR plugin doesn't use this yet).
* otr/tclotr/otr.tcl: Fixed typo in code which stores old MAC keys.
* otr/otr.tcl: Don't filter outgoing messages with empty body (or
without body at all). Don't allow the user to send messages in
finished OTR state.
* otr/otr.tcl, otr/tclotr/otr.tcl: Removed unnecessary field from
OTR procedures' result.
* otr/tclotr/otr.tcl: Fixed typo in ::otr::configure.
* otr/otr.tcl, otr/tclotr/otr.tcl: Warn user if plaintext message
is received while encryption is required.
2014-01-19 Sergei Golovan <sgolovan@nes.ru>
* otr/tclotr/otr.tcl: Fixed checking data message hash for protocol
version 3.
* otr/tclotr/message.tcl: Fixed typo in processing SMP message 4.
Fixed error reporting.
* otr/otr.tcl: Enabled starting SMP with shared secret.
* otr/*: Continue developing OTR plugin.
* otr/*: SMP protocol is now working, but its outcome isn't utilised
anywhere.
* otr/otr.tcl, otr/tclotr/message.tcl: Got rid of eval and uplevel
calls.
* otr/tclotr/otr.tcl: Don't attach the OTR whitespace tag if policy
doesn't allow using any protocol version.
* otr/otr.tcl, otr/tclotr/message.tcl, otr/tclotr/otr.tcl,
otr/tclotr/smp.tcl: Roughly finished SMP implementation. No peer
authentication status storing yet though.
2014-01-18 Sergei Golovan <sgolovan@nes.ru>
* otr/*: Better error reporting. Continue implementing peer
authentication.
2014-01-17 Sergei Golovan <sgolovan@nes.ru>
* otr/*: Added pre-alpha of the new OTR plugin. No key management,
peer authentication, SMP, proper error reporting, resending
messages yet. Not for regular usage yet.
* debug/debug.tcl: Added the otr debug category.
* otr/tclotr/crypto.tcl: Added procedure which computes binary
DSA public key fingerprint.
* otr/tclotr/otr.tcl: Don't compute DSA key fingerprint directly, but
convert the one computed in the otr::crypto package.
* otr/tclotr/smp.tcl: Initially implemented parsing, creating and
verifying OTR SMP messages.
2014-01-01 Sergei Golovan <sgolovan@nes.ru>
* *: 1.0 is released.
2013-12-31 Sergei Golovan <sgolovan@nes.ru>
* browser/browser.tcl, gmail/gmail.tcl: Use the default values for
-deltax and -deltay Tree options.
* Makefile: Changed mkdir and cp to install where it makes sense.
Don't mirror echo commands.
2013-12-30 Sergei Golovan <sgolovan@nes.ru>
* singularity/singularity.tcl: Fixed concatenation of histories.
2013-12-03 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl: Added xmpp::transport::bosh debug category.
2012-06-12 Konstantin Khomoutov <flatworm@users.sourceforge.net>
* attline/msgs/uk.msg: Added Ukrainian translation for
the attline plugin.
2012-05-05 Sergei Golovan <sgolovan@nes.ru>
* poker/msgs/ru.msg, poker/poker.tcl: Added Russian translation for
the poker plugin.
2012-05-04 Sergei Golovan <sgolovan@nes.ru>
* poker/poker.tcl, poker/proto: Fixed cryptographic weakness in
the shuffling cards procedure. Therefore the game type attribute
has been changed to 'poker:th:1'.
* Makefile, README: Added poker plugin to the plugins list.
2010-12-03 Konstantin Khomoutov <flatworm@users.sourceforge.net>
* receipts/receipts.tcl: Implement support for XEP-0184 v1.1.
2010-12-01 Sergei Golovan <sgolovan@nes.ru>
* latex/latex.tcl: Fixed processing blacklisted words.
2010-11-18 Sergei Golovan <sgolovan@nes.ru>
* stripes/msgs/de.msg: Added German translation (thanks to Roger
Sondermann).
* quotelastmsg/msgs/de.msg: Updated German translation (thanks to
Roger Sondermann).
2010-11-17 Sergei Golovan <sgolovan@nes.ru>
* ctcomp/ctcomp.tcl: Added message catalog support.
* ctcomp/msgs/de.msg, latex/msgs/de.msg, presencecmd/msgs/de.msg:
Updated German translation (thanks to Roger Sondermann)
2010-11-17 Konstantin Khomoutov <flatworm@users.sourceforge.net>
* unixkeys/unixkeys.tcl: Make unixkeys plugin dynamically loadable,
provide Russian message catalog.
* quotelastmsg/quotelastmsg.tcl: Explicitly require msgcat package.
2010-11-16 Konstantin Khomoutov <flatworm@users.sourceforge.net>
* stripes/stripes.tcl: Make stripes plugin dynamically loadable,
provide Russian message catalog.
2010-11-15 Konstantin Khomoutov <flatworm@users.sourceforge.net>
* quotelastmsg/quotelastmsg.tcl: Make quotelastmsg plugin
dynamically loadable.
2010-11-12 Konstantin Khomoutov <flatworm@users.sourceforge.net>
* presencecmd/presencecmd.tcl: Make presencecmd plugin dynamically
loadable (thanks to Serge Yudin).
* checkers/msgs/ru.msg: Fix typo (thanks to Serge Yudin).
2010-11-11 Sergei Golovan <sgolovan@nes.ru>
* openurl/openurl.tcl: Fixed typo and added Google Chrome browser.
2010-11-11 Konstantin Khomoutov <flatworm@users.sourceforge.net>
* singularity/singularity.tcl: Make singularity plugin dynamically
loadable.
2010-11-10 Konstantin Khomoutov <flatworm@users.sourceforge.net>
* latex/latex.tcl: Make latex plugin dynamically loadable.
* osd/osd.tcl: Make osd plugin dynamically loadable.
2010-11-09 Konstantin Khomoutov <flatworm@users.sourceforge.net>
* ctcomp/ctcomp.tcl: Make ctcomp plugin dynamically loadable,
remove dead code.
2010-04-21 Sergei Golovan <sgolovan@nes.ru>
* quotelastmsg/msgs/de.msg: Added German translation (thanks to Roger
Sondermann)
2010-03-08 Sergei Golovan <sgolovan@nes.ru>
* quotelastmsg/msgs/ru.msg: Fixed typo (thanks to Serge Yudin).
2010-02-14 Sergei Golovan <sgolovan@nes.ru>
* debug/msgs/pl.msg, gmail/msgs/pl.msg, floatinglog/msgs/pl.msg,
spy/msgs/pl.msg, receipts/msgs/pl.msg, reversi/msgs/pl.msg,
checkers/msgs/pl.msg, whiteboard/msgs/pl.msg,
custom-urls/msgs/pl.msg, ejabberd/msgs/pl.msg, attline/msgs/pl.msg,
chess/msgs/pl.msg, georoster/msgs/pl.msg, singularity/msgs/pl.msg,
traffic/msgs/pl.msg: Updated Polish translation (thanks to Irek
Chmielowiec).
2010-01-31 Sergei Golovan <sgolovan@nes.ru>
* tclchat/tclchat_messages.tcl: Fixed typo.
2010-01-30 Sergei Golovan <sgolovan@nes.ru>
* tclchat/tclchat_messages.tcl: Adapted to changes in Tkabber's MUC.
2010-01-24 Sergei Golovan <sgolovan@nes.ru>
* jidlink/jidlink.tcl, jidlink/trans/ru.msg: Added translations to
the text of outgoing error messages.
2010-01-23 Sergei Golovan <sgolovan@nes.ru>
* bc/msgs/ru.msg, browser/msgs/ru.msg, checkers/msgs/ru.msg,
chess/msgs/ru.msg, custom-urls/msgs/ru.msg, cyrillize/msgs/ru.msg,
ejabberd/msgs/ru.msg, floatingcontact/msgs/ru.msg,
floatinglog/msgs/ru.msg, georoster/msgs/ru.msg, gmail/msgs/ru.msg,
iconsets/msgs/ru.msg, jidlink/msgs/ru.msg, mute/msgs/ru.msg,
openurl/msgs/ru.msg, quiz/msgs/ru.msg, quotelastmsg/msgs/ru.msg,
receipts/msgs/ru.msg, renju/msgs/ru.msg, reversi/msgs/ru.msg,
singularity/msgs/ru.msg, spy/msgs/ru.msg, tclchat/msgs/ru.msg,
traffic/msgs/ru.msg, whiteboard/msgs/ru.msg: Updated Russian
translation.
* Makefile: Added floatingcontact plugin to plugins list.
* quotelastmsg/quotelastmsg.tcl: Fixed escaping % in bind scripts.
2010-01-16 Sergei Golovan <sgolovan@nes.ru>
* spy/spy.tcl: Fixed adding new spy watch if some of them were added
and removed already.
2010-01-14 Sergei Golovan <sgolovan@nes.ru>
* latex/latex.tcl: Use -output-directory latex option instead of
changing working directory. Use dvigif if available to produce an
image to insert into a chat window.
2009-12-29 Sergei Golovan <sgolovan@nes.ru>
* floatinglog/floatinglog.tcl: Check if the floatinglog window exists
before setting its geometry (thanks to Ruslan Rakhmanin).
2009-12-25 Sergei Golovan <sgolovan@nes.ru>
* gmail/gmail.tcl: Got rid of using global NS variable.
* floatinglog/floatinglog.tcl: Destroy floatinglog window if there's
no messages to show. Otherwise some earlier messages were displayed
and confuse a user on arriving a new message (thanks to Ruslan
Rakhmanin).
2009-10-27 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl: Moved menu to debug tools submenu.
2009-09-12 Sergei Golovan <sgolovan@nes.ru>
* attline/attline.tcl: Fixed removing expired attention line if it
isn't drawn (thanks to Jan Zachorowski).
2009-08-16 Sergei Golovan <sgolovan@nes.ru>
* attline/msgs/es.msg, browser/msgs/es.msg, checkers/msgs/es.msg,
chess/msgs/es.msg, debug/msgs/es.msg, ejabberd/msgs/es.msg,
floatinglog/msgs/es.msg, georoster/msgs/es.msg, gmail/msgs/es.msg,
jidlink/msgs/es.msg, openurl/msgs/es.msg, receipts/msgs/es.msg,
renju/msgs/es.msg, reversi/msgs/es.msg, spy/msgs/es.msg,
tclchat/msgs/es.msg, traffic/msgs/es.msg, whiteboard/msgs/es.msg:
Updated Spanish translation (thanks to Badlop).
* receipts/README: Fixed typos (thanks to Badlop).
2009-04-23 Sergei Golovan <sgolovan@nes.ru>
* receipts/receipts.tcl: Enabled receipts even if the confirmation
message is received from a resource different from the resource where
the initial message was sent to. It is useful if one sends a message
to an offline resource and server reroutes it to an available one.
2009-04-01 Sergei Golovan <sgolovan@nes.ru>
* jidlink/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2009-03-31 Sergei Golovan <sgolovan@nes.ru>
* jidlink/jidlink.tcl, jidlink/plugins/*: Made Jidlink plugin
unloadable.
2009-03-29 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl, tclchat/tclchat.tcl: Restored calls to
::http::geturl because it's finally fully wrapped and adopted for
work with proxies.
* tclchat/tclchat.tcl: Added version to http package requirement to
prevent version 1.0 loading.
2009-03-27 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Use new proxied HTTP query for downloading
US locations data.
* receipts/receipts.tcl: Made receipts plugin unloadable.
* tclchat/tclchat.tcl: Use new proxied HTTP query for downloading
Tclers' chat history.
* receipts/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2009-03-26 Sergei Golovan <sgolovan@nes.ru>
* spy/spy.tcl, tclchat/tclchat.tcl, tclchat/tclchat_commands.tcl,
tclchat/tclchat_messages.tcl, traffic/traffic.tcl: Made Tclchat,
Presence Spy and Traffic Counter plugins unloadable.
* traffic/traffic.tcl: Fixed closing brackets (thanks to Roger
Sondermann).
* gmail/msgs/de.msg, spy/msgs/de.msg, traffic/msgs/de.msg: Updated
German translation (thanks to Roger Sondermann).
2009-03-25 Sergei Golovan <sgolovan@nes.ru>
* gmail/gmail.tcl, iconsets/iconsets.tcl, mute/mute.tcl: Made Gmail,
iconsets and MUTE plugins unloadable.
* checkers/checkers.tcl, chess/chess.tcl, poker/poker.tcl,
renju/renju.tcl, reversi/reversi.tcl: Removed useless procedures from
postload and finload hooks.
2009-03-22 Sergei Golovan <sgolovan@nes.ru>
* aniemoticons/msgs/de.msg, floatingcontact/msgs/de.msg,
socials/msgs/de.msg, whiteboard/msgs/de.msg: Updated German
translation (thanks to Roger Sondermann).
2009-03-14 Sergei Golovan <sgolovan@nes.ru>
* floatingcontact/floatingcontact.tcl: Moved loading message catalog
to a root namespace because the plugin uses several namespaces.
* whiteboard/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
* openurl/openurl.tcl: Fixed popup menu in chat windows if it openes
not over a URL.
2009-03-13 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/svgrender.tcl, whiteboard/whiteboard.tcl: Fixed cid: URI
usage.
* openurl/openurl.tcl: Made plugin unloadable. Also, added a few
browsers and a custom browser (thanks to Serge Yudin).
* custom-urls/custom-urls.tcl, cyrillize/cyrillize.tcl,
ejabberd/ejabberd.tcl, floatingcontact/floatingcontact.tcl,
floatinglog/floatinglog.tcl, georoster/georoster.tcl: Made plugins
unloadable.
* georoster/georoster.tcl: Fixed reloading the plugin.
* cyrillize/cyrillize.tcl: Fixed reading recoding table on the package
loading.
* whiteboard/whiteboard.tcl: Made whiteboard plugin unloadable.
* ejabberd/msgs/de.msg, floatingcontact/msgs/de.msg,
floatinglog/msgs/de.msg, georoster/msgs/de.msg, openurl/msgs/de.msg:
Updated German translation (thanks to Roger Sondermann).
2009-03-12 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/svgrender.tcl, whiteboard/whiteboard.tcl: Switched to
Bits of Binary (Xep-0231) interface when sending bitmaps.
2009-03-10 Sergei Golovan <sgolovan@nes.ru>
* poker/poker.tcl: Fixed bug with pot splitting.
* poker/pixmaps/doods/*: Added another cards theme.
2009-03-09 Sergei Golovan <sgolovan@nes.ru>
* poker/*: Added new game plugin for playing heads up Poker (Texas
hold'em). It is unfinished yet, but mostly usable. It uses long
arithmetics, so requires Tcl/Tk 8.5 to work.
* checkers/checkers.tcl, chess/chess.tcl, poker/poker.tcl,
renju/renju.tcl, reversi/reversi.tcl: Adjusted priorities in games
popup menu.
2009-03-08 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl: Fixed bug with plugin unloading.
2009-03-07 Sergei Golovan <sgolovan@nes.ru>
* checkers/checkers.tcl, chess/chess.tcl, renju/renju.tcl,
reversi/reversi.tcl: Made Checkers, Chess, Renju and Reversi plugins
unloadable.
2009-03-02 Sergei Golovan <sgolovan@nes.ru>
* aniemoticons/aniemoticons.tcl: Reload emoticons theme after enabling
animated GIFs support.
2009-02-28 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl: Adapted to a change in output format in
::xmpp::delay::parse procedure.
2009-02-27 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl: Added calling procedure name to debug info. Also,
added caps debug category.
2009-02-23 Sergei Golovan <sgolovan@nes.ru>
* browser/browser.tcl: Made Jabber Browser plugin unloadable.
* attline/attline.tcl: Fixed typo.
* browser/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
* attline/attline.tcl: Removed reconfiguring attention line script from
<Configure> event in chatlog windows on plugin unload. Also, changed
attention line color definition to match dark themes as well, and
adapted the plugin to Tcl/Tk 8.3.
2009-02-20 Sergei Golovan <sgolovan@nes.ru>
* aniemoticons/aniemoticons.tcl, attline/attline.tcl,
debug/debug.tcl, socials/socials.tcl: Moved plugin preloading code
to the main plugin files.
* bc/bc.tcl, quiz/quiz.tcl: Made B&C and Quiz plugins unloadable.
2009-02-19 Sergei Golovan <sgolovan@nes.ru>
* attline/msgs/de.msg, debug/msgs/de.msg: Updated German translation
(thanks to Roger Sondermann).
2009-02-18 Sergei Golovan <sgolovan@nes.ru>
* socials/preload.tcl, socials/msgs/ru.msg: Added translation to
plugin description in plugins management group.
* debug/debug.tcl, debug/preload.tcl: Made debug plugin unloadable and
let it collect TclXMPP related debug information.
* debug/msgs/ru.msg: Update Russian translation.
* aniemoticons/aniemoticons.tcl, aniemoticons/preload.tcl,
aniemoticons/msgs/ru.msg: Made aniemoticons plugin unloadable.
* attline/attline.tcl, attline/preload.tcl, attline/msgs/ru.msg: Made
attention line plugin unloadable.
2009-02-17 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Fixed typo.
* georoster/georoster.tcl: Fixed retrieving stored georoster data.
* stripes/stripes.tcl: Lowered priority of tags which set background
color for odd and even messages. Otherwise they overlayed the
selection tag.
2009-02-16 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Deleted references to roster aliases as
they were removed from Tkabber.
2009-02-13 Sergei Golovan <sgolovan@nes.ru>
* floatingcontact/floatingcontact.tcl: Slightly optimized roster
rendering.
2009-02-11 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Use private XML storage interface from
TclXMPP.
2009-01-10 Sergei Golovan <sgolovan@nes.ru>
* socials/preload.tcl, socials/socials.tcl: Made socials plugin
unloadable without requiring Tkabber restart.
2008-11-15 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/svgrender.tcl, whiteboard/whiteboard.tcl: Added
preliminary bitmap support (though it doesn't conform SVG
specifications, so it's currently intended to polish interface part
and subsequently rewrite XML part).
* whiteboard/msgs/de.msg: Updated German translation (thanks to
Roger Sondermann).
2008-11-09 Sergei Golovan <sgolovan@nes.ru>
* traffic/traffic.tcl: Adapted traffic plugin to new log callback from
XMPP library.
2008-11-03 Sergei Golovan <sgolovan@nes.ru>
* jidlink/jidlink.tcl: Rewritten to use xmpp::negotiate package for
method negotiation.
* jidlink/plugins/filetransfer.tcl: A few bugfixes.
2008-10-26 Sergei Golovan <sgolovan@nes.ru>
* floatingcontact/msgs/de.msg: Updated German translation (thanks to
Roger Sondermann).
2008-10-25 Sergei Golovan <sgolovan@nes.ru>
* floatingcontact/msgs/de.msg, floatinglog/msgs/de.msg,
debug/msgs/de.msg, openurl/msgs/de.msg: Updated German translation
(thanks to Roger Sondermann).
* checkers/checkers.tcl, chess/chess.tcl, renju/renju.tcl,
reversi/reversi.tcl: Rewrote invitation dialog to remove unnecessary
vwait.
* receipts/receipts.tcl: Added packet ID to function for
chat_send_message_xlist_hook hook. Fixed packet ID processing for
receipts.
* tclchat/tclchat.tcl: Added packet ID to add_color function
arguments.
2008-10-24 Sergei Golovan <sgolovan@nes.ru>
* tkabber-khim/tkabber-khim.tcl: Fixed settind option type.
* floatingcontact/floatingcontact.tcl: Use normalized JID for storing
floating contacts properties.
2008-10-23 Sergei Golovan <sgolovan@nes.ru>
* floatingcontact/floatingcontact.tcl: Fixed saving floating windows
coordinates on disconnect and moved restoring them from loading
stage to connected stage.
2008-10-22 Sergei Golovan <sgolovan@nes.ru>
* floatingcontact/*: Added a new plugin which allows roster contacts
to float in separate small windows.
2008-10-20 Sergei Golovan <sgolovan@nes.ru>
* floatinglog/floatinglog.tcl: Added messages about following
reconnect to an ignored messages list (thanks to Ruslan Rakhmanin).
2008-10-19 Sergei Golovan <sgolovan@nes.ru>
* browser/browser.tcl, floatinglog/floatinglog.tcl,
georoster/georoster.tcl, receipts/receipts.tcl,
singularity/singularity.tcl, tclchat/tclchat_messages.tcl,
traffic/traffic.tcl: Replaced JID related procedures from utils.tcl
(node_from_jid, server_from_jid, resource_from_jid,
node_and_server_from_jid, tolower_node_and_domain) by procedures from
xmpp::jid package (::xmpp::jid::node, ::xmpp::jid::server,
::xmpp::jid::resource, ::xmpp::jid::stripResource,
::xmpp::jid::normalize).
* tclchat/tclchat_messages.tcl: Adapted client callback invocations to
the changed syntax.
2008-10-18 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Fixed balloon text setting.
* jidlink/jidlink.tcl: Fixed query namespace.
* checkers/checkers.tcl, chess/chess.tcl, ejabberd/ejabberd.tcl,
georoster/georoster.tcl, jidlink/jidlink.tcl,
jidlink/plugins/filetransfer.tcl, renju/renju.tcl,
reversi/reversi.tcl, spy/spy.tcl, whiteboard/whiteboard.tcl: Removed
unnecessary call to format command.
* georoster/georoster.tcl: Fixed typo.
* checkers/checkers.tcl, mute/mute.tcl, renju/renju.tcl,
reversi/reversi.tcl: Fixed XML elements creation and IQ query.
* openurl/openurl.tcl: Optionally use flat menu for all browsers.
* openurl/msgs/ru.msg: Updated Russian translation.
2008-10-17 Sergei Golovan <sgolovan@nes.ru>
* *: 0.11.1 is released.
* *: Massive update caused by moving to an external XMPP library
TclXMPP (http://code.google.com/p/tclxmpp/).
* bc/bc.tcl, browser/browser.tcl, presencecmd/presencecmd.tcl,
quiz/quiz.tcl, singularity/singularity.tcl, socials/socials.tcl,
spy/spy.tcl: Fixed connections notation.
* whiteboard/whiteboard.tcl: Fixed typo.
* whiteboard/svgrender.tcl: Fixed typo.
2008-10-15 Sergei Golovan <sgolovan@nes.ru>
* quotelastmsg/*, singularity/*, stripes/*: Added three new plugins
(thanks to Konstantin Khomoutov).
2008-08-26 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl: Converted draw actions back to radio
buttons (it's too inefficient to use popup menu for them). Transform
and remove actions are left in the popup menu.
* whiteboard/msgs/ru.msg: Updated Russian translation.
* README: Added description fo receipts and unixkeys plugins, cleared
description for ctcomp plugins (thanks to Konstantin Khomoutov).
* whiteboard/whiteboard.tcl: Fixed width of tools radiobuttons.
* whiteboard/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2008-08-08 Sergei Golovan <sgolovan@nes.ru>
* checkers/checkers.tcl, chess/chess.tcl, renju/renju.tcl,
reversi/reversi.tcl: Don't warn user about not received move replies
on disconnect.
* chess/chess.tcl: Added draw by repetition.
* chess/msgs/ru.msg: Updated Russian translation.
* chess/chess.tcl: Fixed bug with forbidden castling in case when
pieces has moved.
* chess/chess.tcl: Added possibility of castling and capture en passant
to position code when counting repetitions.
2008-07-12 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl: Fixed typo.
2008-07-09 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2008-07-08 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/svgrender.tcl: Fixed rotation transform. Changed id
canvas tags from id$id to [list id $id] form.
* whiteboard/whiteboard.tcl: Added several object transformations.
2008-07-07 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2008-07-06 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/svgrender.tcl: Reworked SVG rendering, made all existing
shapes transformable (except text), implemented all transformations,
added several new attributes (stroke-linecap, stroke-linejoin etc.).
Broken compatibility (the default outline color is empty now and not
black).
* whiteboard/whiteboard.tcl: Use svgrender for all elements rendering.
Added a new rectangular shape. Moved all actions to a popup menu
instead of radiobuttons. Added very preliminary (without user
interface yet) tranformation support.
2008-06-18 Sergei Golovan <sgolovan@nes.ru>
* cyrillize/cyrillize.tcl: Added cyrillize bindings to all text and
entry widgets.
2008-06-08 Sergei Golovan <sgolovan@nes.ru>
* unixkeys/README, unixkeys/TODO, unixkeys/unixkeys.tcl: Added
bindings to entry widgets also (thanks to Konstantin Khomoutov).
* Makefile: Added receipts and unixkeys to plugins list.
* *: 0.11.0 is released.
2008-06-04 Sergei Golovan <sgolovan@nes.ru>
* receipts/msgs/pl.msg: Updated Polish translation (thanks to Irek
Chmielowiec).
* tclchat/msgs/es.msg, browser/msgs/es.msg, renju/msgs/es.msg,
jidlink/msgs/es.msg, receipts/msgs/es.msg: Added Spanish translation
(thanks to Badlop).
* unixkeys/*: Added a small plugin which provides alternative bindings
in Text widget close to Emacs and readline bindings (thanks to
Konstantin Khomoutov).
2008-05-22 Sergei Golovan <sgolovan@nes.ru>
* floatinglog/msgs/ru.msg, receipts/msgs/ru.msg: Updated Russian
translation.
2008-05-20 Sergei Golovan <sgolovan@nes.ru>
* receipts/msgs/ru.msg: Added Russian translation (thanks to
Konstantin Khomoutov).
2008-05-18 Sergei Golovan <sgolovan@nes.ru>
* receipts/receipts.tcl: Allowed to return message receipts to private
chat partners in a conference room. Removed per-user receipts
customization (thanks to Konstantin Khomoutov).
* receipts/TODO, receipts/README: Clarified receipts
requesting/responding behavior (thanks to Konstantin Khomoutov).
* receipts/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2008-05-14 Sergei Golovan <sgolovan@nes.ru>
* receipts/receipts.tcl: Fixed a bug with cleanup for JIDs that
contain %.
2008-05-13 Sergei Golovan <sgolovan@nes.ru>
* receipts/receipts.tcl: Allowed to disable receipt queries and
answers. Don't send receipts to users which aren't subscribed to our
presence (thanks to Konstantin Khomoutov).
* receipts/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2008-05-12 Sergei Golovan <sgolovan@nes.ru>
* tkabber-khim/khim/es.msg: Added Spanish transpation (thanks to
Badlop).
* receipts/msgs/pl.msg: Added Polish translation (thanks to Irek
Chmielowiec).
2008-05-11 Sergei Golovan <sgolovan@nes.ru>
* receipts/*: Added new plugin which implements XEP-0184 (Message
Receipts). Thanks to Konstantin Khomoutov.
* debug/debug.tcl: Do not crash if debug messages are coming when main
window and mainnotebook aren't created yet.
* receipts/receipts.tcl: Added message catalogs support.
* receipts/msgs/de.msg: Added German translation (thanks to Roger
Sondermann).
2008-05-05 Sergei Golovan <sgolovan@nes.ru>
* openurl/openurl.tcl, openurl/msgs/*.msg: Open URL in a separate tab
in Opera, and moved menu items for different browsers to a submenu
(thanks to Alex Smirnov, closes
http://www.jabber.ru/bugzilla/show_bug.cgi?id=379).
2008-04-16 Sergei Golovan <sgolovan@nes.ru>
* renju/renju.tcl: Implemented Renju game (without openings).
2008-03-23 Sergei Golovan <sgolovan@nes.ru>
* attline/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
* traffic/traffic.tcl, osd/osd.tcl: Removed usage of global font
variable.
2008-01-28 Sergei Golovan <sgolovan@nes.ru>
* browser/browser.tcl, checkers/checkers.tcl, chess/chess.tcl,
ejabberd/ejabberd.tcl, georoster/georoster.tcl, gmail/gmail.tcl,
mute/mute.tcl, renju/renju.tcl, reversi/reversi.tcl, spy/spy.tcl,
tclchat/tclchat.tcl: Removed usage of global font variable.
2008-01-20 Sergei Golovan <sgolovan@nes.ru>
* attline/attline.tcl: Fixed bug with leaving chatlog window in normal
state if an attention doesn't need to be redrawn (thanks to
Konstantin Khomoutov).
2008-01-16 Sergei Golovan <sgolovan@nes.ru>
* attline/attline.tcl: Removed tags ATLINE, made the line more thin,
optimized line redrawing, state clearing moved to
chat_close_post_hook (thanks to Konstantin Khomoutov).
* attline/attline.tcl: Changed default line color from red to black.
* floatinglog/floatinglog.tcl: Fixed bug with displaying message with
empty body (thanks to Ruslan Rakhmanin).
2007-12-31 Sergei Golovan <sgolovan@nes.ru>
* gmail/gmail.tcl: Removed opening notifications window at Tkabber
start and added it to Tkabber state saving/restoring.
* browser/browser.tcl, checkers/checkers.tcl, chess/chess.tcl,
ejabberd/ejabberd.tcl, georoster/georoster.tcl, gmail/gmail.tcl,
renju/renju.tcl, reversi/reversi.tcl, spy/spy.tcl,
traffic/traffic.tcl, whiteboard/whiteboard.tcl: Do not raise new
tabs (when raise_new_tab is off) only if it isn't created by a
Tkabber user himself, but by some external event (incoming message
etc.).
2007-12-30 Sergei Golovan <sgolovan@nes.ru>
* ejabberd/msgs/de.msg: Added German translation (thanks to Roger
Sondermann).
2007-12-26 Sergei Golovan <sgolovan@nes.ru>
* attline/attline.tcl: Fixed bug with processing Configure events
which come before attention line is placed to its chat window.
2007-12-19 Sergei Golovan <sgolovan@nes.ru>
* floatinglog/floatinglog.tcl, latex/latex.tcl,
tkabber-khim/khim/khim.tcl: Added -- to all switch commands.
2007-12-15 Sergei Golovan <sgolovan@nes.ru>
* checkers/checkers.tcl, chess/chess.tcl, renju/renju.tcl,
reversi/reversi.tcl: Fixed invitation dialogs.
2007-12-06 Sergei Golovan <sgolovan@nes.ru>
* attline/attline.tcl: Fixed attention line width calculation
(thanks to Konstantin Khomoutov).
2007-11-30 Sergei Golovan <sgolovan@nes.ru>
* attline/attline.tcl: Fixed attline state cleanup after closing chat
window.
2007-11-29 Sergei Golovan <sgolovan@nes.ru>
* attline/attline.tcl: Fixed crash after closing chat tab/window
before attline is expired if option 'remove expired attline' is
turned on (thanks to Konstantin Khomoutov).
2007-11-25 Sergei Golovan <sgolovan@nes.ru>
* latex/latex.tcl: use [winfo rgb] to get RGB color instead of
creating temporary image.
* tclchat/tclchat.tcl: Fixed plugins::nickcolors::get_color call.
* tclchat/tclchat_messages.tcl: Fixed processing Tkchat colors.
2007-11-14 Sergei Golovan <sgolovan@nes.ru>
* ctcomp/README: Added info about keybindings (thanks to Konstantin
Khomoutov).
* attline/BUGS: Removed since bugs mentioned in it are fixed (thanks
to Konstantin Khomoutov).
* attline/TODO: Removed already done tasks (thanks to Konstantin
Khomoutov).
* attline/README, attline/INSTALL: Added info about plugin and
installation instructions (thanks to Konstantin Khomoutov).
* ctcomp/README: A small fix (thanks to Konstantin Khomoutov).
2007-11-13 Sergei Golovan <sgolovan@nes.ru>
* checkers/checkers.tcl, chess/chess.tcl, renju/renju.tcl,
reversi/reversi.tcl: Turned invitation dialogs to non-modal ones.
2007-11-08 Sergei Golovan <sgolovan@nes.ru>
* floatinglog/msgs/pl.msg, gmail/msgs/pl.msg, openurl/msgs/pl.msg,
presencecmd/msgs/pl.msg: Added Polish translation (thanks to Irek
Chmielowiec).
* gmail/msgs/de.msg: Added German translation (thanks to Roger
Sondermann).
* spy/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2007-10-31 Sergei Golovan <sgolovan@nes.ru>
* attline/msgs/es.msg, chess/msgs/es.msg, ejabberd/msgs/es.msg,
floatinglog/msgs/es.msg, georoster/msgs/es.msg, gmail/msgs/es.msg,
openurl/msgs/es.msg, presencecmd/msgs/es.msg,
tkabber-khim/msgs/es.msg: Added and updated Spanish translation
(thanks to Badlop).
2007-10-28 Sergei Golovan <sgolovan@nes.ru>
* *: Tagged 0.10.1-beta2 for release.
2007-10-27 Sergei Golovan <sgolovan@nes.ru>
* floatinglog/floatinglog.tcl: Added an option for the height of
floating log window, and made it ignore IBB file transfer requests
(thanks to Ruslan Rakhmanin).
* floatinglog/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2007-10-26 Sergei Golovan <sgolovan@nes.ru>
* ctcomp/ctcomp.tcl: Fixed definition of word edges (thanks to
Konstantin Khomoutov).
2007-10-23 Sergei Golovan <sgolovan@nes.ru>
* floatinglog/floatinglog.tcl: Raise floatinlog window. It helps to
keep it on top (thanks to Denis Shaposhnikov).
2007-10-14 Sergei Golovan <sgolovan@nes.ru>
* attline/attline.tcl: Changed atline namespace to attline, the same
for debug type. Switched to chat::winid_to_chatid. Bound cleanup
procedure to Chat window class instead of specific windows (thanks
to Konstantin Khomoutov).
* attline/msgs/ru.msg: Fixed Russian translation (thanks to
Konstantin Khomoutov).
* debug/debug.tcl: Added attline and tclchat debug types. Reorganized
debug types menu into two-level menu.
2007-10-10 Sergei Golovan <sgolovan@nes.ru>
* floatinglog/floatinglog.tcl: Added new options which allow to show
only personal messages (or MUC highlights) and allow not to show
status changes (thanks to Konstantin Khomoutov).
* floatinglog/floatinglog.tcl, floatinglog/msgs/ru.msg: Fixed
processing (ignoring) idle status messages (thanks to Konstantin
Khomoutov)
* floatinglog/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2007-10-07 Sergei Golovan <sgolovan@nes.ru>
* floatinglog/floatinglog.tcl: Fixed doubleclick bindings to JIDs
which contain %. Removed unused variables and useless message
options.
* floatinglog/TODO: Removed tasks which are already done or will never
be done.
* ctcomp/*: Added new plugin which allow to complete words from chat
log windows (thanks to Konstantin Khomoutov).
* Makefile, README: Added ctcomp plugin.
* *: Tagged 0.10.1-beta for release.
* floatinglog/floatinglog.tcl: Added extra geometry settings to fix
the behavior under control of some window managers (openbox, ion3).
2007-10-06 Sergei Golovan <sgolovan@nes.ru>
* browser/browser.tcl: Replaced ::jlib::route by the first connection
in cinnection list.
* floatinglog/*, README, Makefile: Added new plugin which reports
about incoming messages in a floating log window (thanks to Ruslan
Rakhmanin).
* openurl/openurl.tcl, openurl/msgs/ru.msg: Added support for
translations and Russian message file.
* floatinglog/floatinglog.tcl: Cleaned up messages. Changed time units
for hide delay from milliseconds to seconds.
* floatinglog/msgs/ru.msg: Added Russian translation.
* floatinglog/msgs/de.msg, openurl/msgs/de.msg: Added German
translation (thanks to Roger Sondermann).
* floatinglog/floatinglog.tcl: Removed explicit usage of background
and foreground resources.
2007-10-05 Sergei Golovan <sgolovan@nes.ru>
* README: Added missing descriptions.
* Makefile: Added custom-urls to a list of plugins to install.
2007-09-23 Sergei Golovan <sgolovan@nes.ru>
* aniemoticons/anigif.tcl: Fixed some GIF images processing (thanks
to Ruslan Rakhmanin).
2007-09-21 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Use separated public XML storage interface.
2007-09-10 Sergei Golovan <sgolovan@nes.ru>
* presencecmd/msgs/de.msg: Added German translation (thanks to Roger
Sondermann).
2007-09-08 Sergei Golovan <sgolovan@nes.ru>
* jidlink/msgs/de.msg: Added German translation (thanks to Roger
Sondermann).
2007-09-05 Sergei Golovan <sgolovan@nes.ru>
* attline/msgs/pl.msg, browser/msgs/pl.msg, ejabberd/msgs/pl.msg,
georoster/msgs/pl.msg, jidlink/msgs/pl.msg: Updated Polish
translation (thanks to Irek Chmielowiec).
* gmail/gmail.tcl, presencecmd/presencecmd.tcl: Made user messages
translateable.
* gmail/msgs/ru.msg, presencecmd/msgs/ru.msg: Added Russian
translation.
2007-09-03 Sergei Golovan <sgolovan@nes.ru>
* gmail/gmail.tcl: Fixed bug with empty disabledForeground option.
2007-09-02 Sergei Golovan <sgolovan@nes.ru>
* tkabber-khim/tkabber-khim.tcl: Removed unnecessary namespace level.
* gmail/gmail.tcl: Added new plugin which allows users of Google Talk
service to get Gmail notifications.
* openurl/openurl.tcl: Added new plugin which allows to open URLs in
any installed browser found in PATH environment variable.
2007-09-01 Sergei Golovan <sgolovan@nes.ru>
* browser/msgs/de.msg, browser/msgs/ru.msg: Added SVN Id attribute.
* jidlink/msgs/ru.msg: Fixed SVN Id attribute.
2007-08-31 Sergei Golovan <sgolovan@nes.ru>
* jidlink/*: New Jidlink support plugin. Jidlink support is removed
from main Tkabebr distribution because it is obsolete and
undocumented and superseeded by Stream Initiation.
* Makefile: Added browser and jidlink plugins to a plugin list.
2007-08-30 Sergei Golovan <sgolovan@nes.ru>
* browser/*: New Jabber Browser (XEP-0011) support plugin. It was
removed from main Tkabber distribution because it is deprecated.
* browser/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2007-08-18 Sergei Golovan <sgolovan@nes.ru>
* attline/attline.tcl: Code cleanup. Do not expire attention line if
it is already expired.
* presencecmd/presencecmd.tcl: Code cleanup.
* attline/attline.tcl: Added support for message catalogs.
* attline/msgs/ru.msg: Added Russian translation.
* attline/msgs/de.msg, debug/msgs/de.msg: Updated German translation
(thanks to Roger Sondermann).
2007-08-17 Sergei Golovan <sgolovan@nes.ru>
* attline/*: Added new plguin which draws an attention line in chat
windows (thanks to Konstantin Khomoutov).
* presencecmd/*: Added new plugin which introduces several chat
commands changing user's presence information (thanks to Konstantin
Khomoutov).
* README: Added short descriptions of attline and presencecmd plugins.
* Makefile: Added new plugins.
* attline/*, presencecmd/*: Changed eol style to native.
* attline/attline.tcl: Removed using control package to not force
adding it to a strapacks, and unconditionally use real priority value
in hook::add because it isn't necessary to use this plugin in
earlier Tkabber versions.
2007-08-11 Sergei Golovan <sgolovan@nes.ru>
* bc/bc.tcl, checkers/checkers.tcl, chess/chess.tcl, mute/mute.tcl,
quiz/quiz.tcl, renju/renju.tcl, reversi/reversi.tcl,
whiteboard/whiteboard.tcl: Renamed [random] procedure to [rand] to
prevent clash with one from Memchan package, which is loaded for
JISP support.
2007-08-09 Sergei Golovan <sgolovan@nes.ru>
* quiz/quiz.tcl: Fixed hinting and added displaying the correct answer
if nobody has found it (thanks to Alexander Kupcov).
2007-06-24 Sergei Golovan <sgolovan@nes.ru>
* tclchat/tclchat.tcl: Changed loginconf options according to changes
in login.tcl.
2007-06-12 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Fixed typo.
* custom-urls/custom-urls.tcl, README: Added new plugin, which allows
to specify custom URLs based on regular expressions.
* georoster/georoster.tcl: Fixed variable initialization.
* custom-urls/custom-urls.tcl: Added an example of custom URLs.
2007-06-11 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Fixed drag'n'drop of JIDs over Georoster
window. Store georoster contacts separately for each Tkabber
connection (while showing them in one window).
* georoster/msgs/ru.msg, georoster/msgs/uk.msg: Updated.
* georoster/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2007-06-10 Sergei Golovan <sgolovan@nes.ru>
* ejabberd/ejabberd.tcl: Added connection choice to a dialog of
selecting ejabberd server to administrate. Also, allowed opening
several windows to the same JID from different connections. Also,
clean up data variables on page close.
* ejabberd/msgs/ru.msg, ejabberd/msgs/uk.msg: Updated.
2007-06-09 Sergei Golovan <sgolovan@nes.ru>
* tkabber-khim/khim/khim.tcl: Added khim package forgetting command to
load really newest khim version.
2007-06-04 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/svgrender.tcl: Ignore surrounding spaces in point lists.
* ChangeLog: Fixed year in recent changelog entry dates.
2007-04-12 Sergei Golovan <sgolovan@nes.ru>
* *: 0.10.0 is released.
* README: Added description for renju and tclchat plugins.
2007-04-08 Sergei Golovan <sgolovan@nes.ru>
* tclchat/tclchat.tcl: Fixed init routine priority.
* renju/renju.tcl: Do not reply to game type 'renju' calls because
this type is not implemented yet.
2007-04-02 Sergei Golovan <sgolovan@nes.ru>
* georoster/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2007-03-28 Sergei Golovan <sgolovan@nes.ru>
* traffic/traffic.tcl: Added scrolling by mousewheel (thanks to Artem
Borodin).
2007-03-27 Sergei Golovan <sgolovan@nes.ru>
* mute/mute.tcl: Fixed bug with breaking messages into separate words
in message dialogs.
* tclchat/tclchat.tcl: Fixed restoring disabled state of Tclers' chat
window.
2007-03-22 Sergei Golovan <sgolovan@nes.ru>
* traffic/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2007-03-17 Sergei Golovan <sgolovan@nes.ru>
* debug/msgs/es.msg, spy/msgs/es.msg: Updated Spanish translation
(thanks to Badlop).
2007-03-14 Sergei Golovan <sgolovan@nes.ru>
* debug/msgs/pl.msg, spy/msgs/pl.msg: Updated Polish translation
(thanks to Irek Chmielowiec).
2007-03-11 Sergei Golovan <sgolovan@nes.ru>
* debug/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2007-03-10 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Added -connection argument to jlib::send_iq
call.
* debug/debug.tcl: Made jlib module debug messages more clear.
2007-03-08 Sergei Golovan <sgolovan@nes.ru>
* tclchat/tclchat.tcl: Load translated messages.
* tclchat/msgs/ru.msg, mute/msgs/ru.msg: Added Russian translation.
* debug/msgs/ru.msg, renju/msgs/ru.msg: Updated Russian translation.
2007-03-06 Sergei Golovan <sgolovan@nes.ru>
* latex/msgs.de.msg, spy/msgs/de.msg, traffic/msgs/de.msg: Updated
German translation (thanks to Roger Sondermann).
2007-03-04 Sergei Golovan <sgolovan@nes.ru>
* aniemoticons/aniemoticons.tcl, aniemoticons/anigif.tcl: Bugfix.
Fixed creating and destroying images.
* debug/debug.tcl, spy/spy.tcl: Use new unified search panel
interface.
* aniemoticons/anigif.tcl: Code cleanup. Fixed bugs with image names,
which contain semicolon.
* Makefile: Added installing of aniemoticons plugin.
* *: 0.10.0-beta2 is released.
* spy/msgs/de.msg, traffic/msgs/de.msg: Updated German translation
(thanks to Roger Sondermann).
2007-03-03 Sergei Golovan <sgolovan@nes.ru>
* aniemoticons/*: Added new external plugin (moved from the main
Tkabber tree). Also applied patch by Ruslan Rakhmanin, which fixes
some animated GIFs processing and improves performance.
* README: Added short description of aniemoticons plugin.
2007-02-26 Sergei Golovan <sgolovan@nes.ru>
* renju/pixmaps/black/*: Added high contrast Gomoku/Renju theme.
* whiteboard/msgs/de.msg: Added German translation (thanks to Roger
Sondermann).
2007-02-25 Sergei Golovan <sgolovan@nes.ru>
* debug/msgs/de.msg, georoster/msgs/de.msg, spy/msgs/de.msg,
traffic/msgs/de.msg: Added German translation (thanks to Roger
Sondermann).
* georoster/msgs/de.msg: Updated German translation (thanks to Roger
Sondermann).
2007-02-23 Sergei Golovan <sgolovan@nes.ru>
* Makefile: Added tclchat and renju plugins.
* *: 0.10.0-beta is released.
2007-02-17 Sergei Golovan <sgolovan@nes.ru>
* renju/renju.tcl: Added tournament Gomoku variant (with 5x5 forbidden
zone for black at the second turn).
2007-02-16 Sergei Golovan <sgolovan@nes.ru>
* checkers/checkers.tcl, chess/chess.tcl, renju/renju.tcl,
reversi/reversi.tcl: Fixed bug with sometimes undeleted cell border
on mouse leave.
* renju/renju.tcl: Added standard Gomoku variant (where overline
is not a win).
2007-02-15 Sergei Golovan <sgolovan@nes.ru>
* renju/*: New game plugin Gomoku/Renju (unfinished yet, only
free-style Gomoku is implemented).
2007-02-14 Sergei Golovan <sgolovan@nes.ru>
* tclchat/tclchat.tcl: Added customize group Tclchat.
* tclchat/tclchat_messages.tcl: Made bridge nick and JID, and Tclers'
chat room JID customizable. Added processing of nickname changes on
the IRC side.
* reversi/msgs/pl.msg, debug/msgs/pl.msg, whiteboard/msgs/pl.msg,
spy/msgs/pl.msg: Updated Polish translation (thanks to Irek
Chmielowiec).
2007-02-13 Sergei Golovan <sgolovan@nes.ru>
* debug/msgs/es.msg, spy/msgs/es.msg, whiteboard/msgs/es.msg: Updated
Spanish translation (thanks to Badlop).
* tclchat/tclchat.tcl, tclchat/tclchat_commands.tcl,
tclchat/tclchat_messages.tcl: Added modified tclchat plugin by Pat
Thoyts for more comfortable use of Tclers' chat (unfinished yet).
* tclchat/tclchat.tcl: Moved adding color to more suitable hook.
* tclchat/tclchat_messages.tcl: Added IRC users, connected to Tclers'
chat, to the conference roster.
2007-02-11 Sergei Golovan <sgolovan@nes.ru>
* iconsets/icq/icondef.xml, iconsets/icq/tkabber/tkabber-logo.gif:
Removed logo (it must be only one).
* iconsets/icq/tkabber/new-msg.gif: Removed unused icon.
* iconsets/kroc/tkabber/new-msg.gif,
iconsets/kroc/tkabber/search_bk.gif,
iconsets/kroc/tkabber/search_case.gif,
iconsets/kroc/tkabber/search_exact.gif,
iconsets/kroc/tkabber/search_fw.gif: Removed unused icons.
* whiteboard/whiteboard.tcl: Made using jlib::x_delay for computing
message time.
* georoster/georoster.tcl, spy/spy.tcl, traffic/traffic.tcl: Save
tabs on exit and restore on start.
* bc/bc.tcl, quiz/quiz.tcl, osd/osd.tcl, mute/mute.tcl: Made working
with current Tkabber version.
* quiz/quizdata.txt: Added short quiz data sample.
* COPYING, Makefile: Added license file and Makefile.
2007-02-10 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl, whiteboard/svgrender.tcl: Added
balloons, which show when the whiteboard item was created, and
who has drawn it. Also redone text input dialog.
* whiteboard/msgs/ru.msg: Updated.
* README, checkers/README, debug/debug.tcl, debug/msgs/pl.msg,
debug/msgs/ru.msg, socials/README, spy/spy.tcl,
tkabber-khim/INSTALL: Made more accurate references to Tkabber
config directory.
2007-02-09 Sergei Golovan <sgolovan@nes.ru>
* iconsets/iconsets.tcl, iconsets/*: Moved borrowed iconsets to
a separate plugin.
* README: Updated.
* whiteboard/whiteboard.tcl: Removed spacers from whiteboard toolbar
to make it fit 800x600 window.
2007-01-29 Sergei Golovan <sgolovan@nes.ru>
* spy/spy.tcl: Fixed a typo (thanks to Pavel Borzenkov).
2007-01-27 Sergei Golovan <sgolovan@nes.ru>
* spy/spy.tcl: Added search in spy presence window.
* debug/debug.tcl: Added search in debug window.
* quiz/quiz.tcl: Added check for existence of file 3hauka.txt.
2007-01-26 Sergei Golovan <sgolovan@nes.ru>
* checkers/checkers.tcl, chess/chess.tcl, debug/debug.tcl,
ejabberd/ejabberd.tcl, georoster/georoster.tcl, reversi/reversi.tcl,
whiteboard/whiteboard.tcl: Removed explicit tab updates on
raise.
* debug/debug.tcl: Added richtext and mucignore modules to debug
modules. Fixed bug with unknown debug module.
2007-01-11 Sergei Golovan <sgolovan@nes.ru>
* cyrillize/cyrillize.tcl: Added backward conversion from russian
to english (bound to <Control-quotedbl>).
Also, added bindings for cyrillic layout in Windows.
2007-01-06 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl, traffic/traffic.tcl: Changed config directory
references to $::configdir.
2007-01-05 Sergei Golovan <sgolovan@nes.ru>
* debug/msgs/pl.msg, tkabber-khim/khim/pl.msg,
whiteboard/msgs/pl.msg: Updated (thanks to Irek Chmielowiec).
2007-01-03 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl: Made plugin options customizeable via GUI.
* debug/msgs/ru.msg: Updated.
* debug/msgs/es.msg, debug/msgs/pl.msg, debug/msgs/uk.msg: Added
VIM modeline.
* tkabber-khim/tkabber-khim.tcl, tkabber-khim/khim/pl.msg,
tkabber-khim/khim/ru.msg, tkabber-khim/msgs/pl.msg,
tkabber-khim/msgs/ru.msg: Added newline to a message, which
is printed to the terminal when KHIM cannot be loaded, to fit
80 symbol width.
2007-01-01 Sergei Golovan <sgolovan@nes.ru>
* tkabber-khim/msgs/ru.msg, whiteboard/msgs/ru.msg: Updated.
2006-12-30 Sergei Golovan <sgolovan@nes.ru>
* checkers/msgs/es.msg, chess/msgs/es.msg, reversi/msgs/es.msg,
whiteboard/msgs/es.msg: Updated (thanks to Badlop).
* traffic/traffic.tcl, traffic/msgs/pl.msg, traffic/msgs/ru.msg,
traffic/msgs/uk.msg: Bugfix in translated string (thanks to
Badlop).
2006-12-29 Sergei Golovan <sgolovan@nes.ru>
* tkabber-khim/khim/pl.msg, tkabber-khim/msgs/pl.msg: Added
Polish translation (thanks to Irek Chmielowiec).
* whiteboard/msgs/pl.msg: Updated (thanks to Irek Chmielowiec).
* tkabber-khim/khim/uk.msg: Added Ukrainian translation (thanks
to Artem Bondarenko).
2006-12-28 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl: Added whiteboard saving option.
2006-12-24 Sergei Golovan <sgolovan@nes.ru>
* reversi/msgs/uk.msg, debug/msgs/uk.msg, checkers/msgs/uk.msg,
ejabberd/msgs/uk.msg, chess/msgs/uk.msg, georoster/msgs/uk.msg,
spy/msgs/uk.msg, latex/msgs/uk.msg, traffic/msgs/uk.msg:
Added Ukrainian translation (thanks to Artem Bondarenko).
2006-12-17 Sergei Golovan <sgolovan@nes.ru>
* tkabber-khim/khim/khim.tcl: Bumped khim version number to
ensure its loading.
2006-12-15 Sergei Golovan <sgolovan@nes.ru>
* tkabber-khim/khim/khim.tcl: Changed Unicode charmap colors.
2006-12-13 Sergei Golovan <sgolovan@nes.ru>
* tkabber-khim/*: Added tkabber-khim plugin by Konstantin
Khomoutov. It allows to input Unicode characters using KHIM
package by Kevin Kenny. KHIM package is included, but it can
be also obtained as part of tklib.
2006-12-05 Sergei Golovan <sgolovan@nes.ru>
* osd/osd.tcl: Don't notify on history messages read from the
log files.
2006-12-03 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/svgrender.tcl, whiteboard/whiteboard.tcl,
whiteboard/msgs/ru.msg: Added circle and polygon whiteboard
figures (thanks to Pavel Arajums).
2006-11-27 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl: Added loading translation messages.
* reversi/msgs/pl.msg, debug/msgs/pl.msg, checkers/msgs/pl.msg
whiteboard/msgs/pl.msg, ejabberd/msgs/pl.msg, chess/msgs/pl.msg,
georoster/msgs/pl.msg, spy/msgs/pl.msg, traffic/msgs/pl.msg:
Added Polish translation (thanks to Irek Chmielowiec).
2006-11-25 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Replaced erroneous user_from_jid by
node_and_server_from_jid.
2006-11-24 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/whiteboard.tcl: Use mousewheel to scroll whiteboard
window.
2006-11-04 Sergei Golovan <sgolovan@nes.ru>
* latex/latex.tcl: Updated to match current emoticons engine.
Changed LaTeX expression regexp to allow spaces in it.
2006-10-22 Sergei Golovan <sgolovan@nes.ru>
* whiteboard/svgrender.tcl: Check color existence before rendering
whiteboard item using this color.
2006-10-08 Sergei Golovan <sgolovan@nes.ru>
* checkers/msgs/ru.msg, chess/msgs/ru.msg, reversi/msgs/ru.msg:
Updated (thanks to Pavel Borzenkov).
* README: Added new plugins description. Replaced JEP abbreviation
by XEP.
2006-10-05 Sergei Golovan <sgolovan@nes.ru>
* checkers/checkers.tcl, chess/chess.tcl, ejabberd/ejabberd.tcl,
georoster/georoster.tcl, latex/latex.tcl, reversi/reversi.tcl,
traffic/traffic.tcl, whiteboard/whiteboard.tcl: Removed
changing of system encoding when loading translated messages
because msgcat itself uses UTF-8.
* osd/osd.tcl: Removed encoding configuring of osdcat pipe
because it is a system encoding by default.
* whiteboard/msgs/uk.msg: Added Ukrainian translation (thanks
to Mykola Dzham).
2006-10-02 Sergei Golovan <sgolovan@nes.ru>
* reversi/reversi.tcl: Fixed typo (thanks to Irek Chmielowiec).
2006-09-30 Sergei Golovan <sgolovan@nes.ru>
* georoster/georoster.tcl: Use options menu with nonfixed
border width.
2006-09-29 Sergei Golovan <sgolovan@nes.ru>
* checkers/checkers.tcl, chess/chess.tcl, georoster/georoster.tcl,
reversi/reversi.tcl: Replaced customizeable radio variables by
options variables.
2006-09-27 Sergei Golovan <sgolovan@nes.ru>
* checkers/checkers.tcl, chess/chess.tcl, reversi/reversi.tcl:
Added sound notification of opponent's move (thanks to
Pavel Borzenkov).
2006-09-25 Sergei Golovan <sgolovan@nes.ru>
* debug/debug.tcl: Added several debug categories.
* latex/msgs/es.msg, traffic/msgs/es.msg: Added Spanish
translation (thanks to Badlop).
* whiteboard/msgs/es.msg: Updated (thanks to Badlop).
2006-09-19 Sergei Golovan <sgolovan@nes.ru>
* traffic/traffic.tcl: Code cleanup.
* checkers/checkers.tcl, chess/chess.tcl, mute/mute.tcl,
reversi/reversi.tcl: Added lang parameter to procedures
registered via iq:register.
2006-09-16 Sergei Golovan <sgolovan@nes.ru>
* chess/chess.tcl, checkers/checkers.tcl, reversi/reversi.tcl:
Made games using hook::run with upvar instead of hook::foldl
(it looks more "ticklish"). Improved packing of game history
windows.
* traffic/*: Added new traffic accounting plugin. It counts
total length of unencrypted and/or uncompressed XML stanzas
only (thanks to Artem Borodin).
|