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
|
Changes from 1.3 to 1.3.1:
Konversation 1.3.1 is a maintenance release that improves program behavior
and fixes defects, the most serious of which is a regression that unfortu-
nately suck into v1.3, which causes data corruption or even loss of Watched
Nicknames Online lists on application quit. Behavioral improvements are
found in the handling of aborting automatic reconnection attempts after
connection failure and RFC 1459 PING/PONG exchanges. Further notable bug-
fixes have been made to the Edit Network dialog, the handling of system
color schemes and using the ignore list feature to ignore certain CTCP
events.
* In addition to the '/disconnect' command, the graphical 'Disconnect'
action and the '/quit' command can now be used to cancel an in-progress
automatic reconnect in the event of connection failure as well.
* The '/disconnect' and '/reconnect' commands now take optional quit message
parameters.
* Fixed crashes when pressing the "Edit" buttons below the server or
channel lists in the "New Network"/"Edit Network" dialogs after adding
a new server or channel and there was no item selected before in the re-
spective list.
* Fixed bugs causing the "Edit" buttons below the server or channel lists
in the "New Network"/"Edit Network" dialogs to edit the previously selec-
ted list items rather than the ones shown as selected after adding a new
server or channel.
* Fixed a bug that could cause outdated status information for nicks to be
displayed in channel nickname lists after a reconnect.
* Efficiency improvements for channel join.
* Don't send PING in response to PONG if another PING is already scheduled
to be sent in the future. This avoids getting kicked off a server for
flooding when multiple clients are connected to a bouncer that forwards
PONGs to all of them.
* Fixed numerous cases in which Konversation would incorrectly apply the
KDE system color scheme to input lines, nickname lists and the listview
version of the tab bar. This general overhaul of the relevant code also
brought about minor efficiency and memory usage improvements.
* Fixed nickname lists not respecting the "Alternate Background" setting
when set to use custom colors.
* Fixed the listview version of the tab bar not greying out disconnected
tabs when set to use custom colors.
* Fixed a bug causing the processing of incoming CTCP CLIENTINFO and CTCP
TIME requests not to take the ignore list into account.
* The "Insert IRC Color" dialog will now add a leading zero to colors which
have single-digit numbers in the '%C...' string it inserts into the input
line, to allow the text that follows to start with a digit rather than
such a digit getting interpreted as part of the color number.
* Fixed a bug causing the Watched Nicknames Online nickname list for a net-
work to be stored under the wrong network or lost entirely on application
quit.
* Fixed a bug causing the order of the Quick Buttons below the nickname
list in channel tabs to be flipped every time the config dialog was OK'd.
* Improved consistency of the filter fields in the URL Catcher and Channel
List tabs with other KDE applications.
* Correct use of singular or plural unit suffixes for several numeric pre-
ferences in the configuration dialog.
* It is no longer possible to set the auto-way time to the nonsensical
value of zero minutes. Rather, a minimum of one minute is now enforced.
Changes from 1.3-beta1 to 1.3:
Konversation 1.3 debuts a major new feature in the area of Direct-Client-
to-Client (DCC) support: An implementation of the DCC Whiteboard extension
that brings collaborative drawing - think two-player Kolourpaint - to IRC.
It also brings back the integration with KDE's SSL certificate store the
KDE 3 version enjoyed and expands support for auto-away to the Windows and
Mac OS X platforms thanks to both recent advances in the KDE 4 platform and
new code in Konversation. Interface tweaks, new keyboard shortcuts and many
bugfixes (including a number of new fixes since 1.3-beta1) round things out.
Finally, Konversation now depends on KDE 4.3 and Qt 4.5.
* Fixed build with KDE 4.3.
* When opening an "Edit Network" dialog and adding a new item to one of
the server or channel lists, provided they already contain at least one
item and no selection is made before clicking "Add...", the "Move Down"
button would be enabled afterwards despite no item being selected.
Clicking the button at this point would crash the application. This has
been fixed along with other potential problems in the code that updates
the state of the list control buttons.
* After adding a new item to one of the server or channel lists in "Edit
Network" dialogs, that item will now be selected.
* Fixed a bug causing the file dialog for selecting a new target directory
and file name for an incoming DCC file transfer in the event that the
default path is not writable to complain about being unable to find the
file after clicking "OK" when no file of the chosen name at the chosen
location exists already.
* Fixed a bug causing the file dialog for selecting a new target directory
and file name for an incoming DCC file transfer in the event that the
default path is not writable to lose the file name written in the "Lo-
cation" field (by default, the original file name) when changing the
current directory.
Changes from 1.2.3 to 1.3-beta1:
Konversation 1.3-beta1 debuts a major new feature in the area of Direct
Client-to-Client (DCC) support: An implementation of the DCC Whiteboard
extension that brings collaborative drawing - think two-player Kolour-
paint - to IRC. It also brings back the integration with KDE's SSL certi-
ficate store the KDE 3 version enjoyed and expands support for auto-away
to the Windows and Mac OS X platforms thanks to both recent advances in
the KDE 4 platform and new code in Konversation. Interface tweaks, new
keyboard shortcuts and many bugfixes round things out. Finally, Konversa-
tion now depends on KDE 4.3 and Qt 4.5.
* Konversation now depends on Qt 4.5 and KDE 4.3.
* Added support for DCC WHITEBOARD, bringing collaborative drawing to
IRC.
* When showing the dialog informing the user about the local target
file for an incoming DCC file transfer already existing that dialog
now includes the sizes of the local file and the file the sender is
offering up.
* Fixed a bug causing either an empty line or a few characters of gar-
bage to be placed in the clipboard in place of marker/remember lines
when copying chat text containing such lines.
* Fixed a bug causing quotation marks, ampersands and angle brackets
in chat messages to be displayed as HTML entities in the OSD.
* The "Clear All Windows" action will now also resets the notification
state of all tabs (i.e. removes active new message or highlight no-
tifications from the tab bar).
* Fixed a bug causing the server responses to background data gather-
ing via WHO (to keep the app's idea of its own hostmask up to date,
as well as optionally channel user info) to be displayed in tabs as
if the user had made the requests manually after sending a '/who'
command without parameters.
* Fixed a bug causing a crash when sending '/privmsg' without any pa-
rameters (did not apply to '/msg').
* In previous versions, channel tabs opened in the background (i.e.
while "Focus new tabs" is disabled, as it is by default) would con-
siderably increase the minimum width of the window due to particu-
larities of the Qt layout system. After raising every channel tab
at least once it would then be possible to make the window much
narrower. This unintuitive behavior resulted in confusion as to why
the minimum width of the Konversation window would sometimes vary
greatly. This has been fixed in this version, i.e. it is no longer
necessary to have raised every channel tab at least once to achieve
a reasonable minimum width of the window. This also means that
joining a new channel is now much less likely to resize the window.
* Fixed a bug causing the status bar to become multiple lines in
height when hovering an URL containing percent-encoded line breaks
in the chat text view.
* Fixed a bug making it impossible to scroll the Advanced Modes list
in the Channel Settings dialog when the user doesn't have operator
status in the channel.
* Fixed a crash when selecting more than one completed, failed or
aborted outbound transfer in the "DCC Status" tab and clicking "Re-
send" in their context menu.
* Fixed a bug causing the human-readable mode descriptions used by
default in channel chat text views as well as the Channel Settings
dialog's Advanced Modes list not to be translated.
* When the display of human-readable mode descriptions is enabled
(as it is by default), the Advanced Mode list in the Channel Set-
tings dialog will now show the respective mode characters along-
side them. Previously, only the description was shown. This makes
the list useful as a utility to look up the meaning of obscure
mode characters.
* Fixed a bug causing both the default email client and the default
web browser to be invoked when clicking an email address link in
the chat text view.
* Added a built-in '/sayversion' command that, as opposed to the
bundled '/kdeversion' script, can show the version of both the KDE
Konversation was built against and is running on. It also outputs
the information in a single message instead of several.
* Fixed a bug that would cause the second and following segments of a
text so long that it has to be split into multiple messages when it
is sent to be encoded incorrectly.
* The ASCII 0x1d character is now used to denote italic formatting of
text rather than 0x09, to avoid the conflict with the tab character
that is frequently pasted e.g. from websites with tables.
* Fixed a bug causing the server response to '/whois <nick> <nick>'
not to be displayed on many IRC servers when the nick in questions
is not online at that time (this variant of the WHOIS command is
also used by the GUI actions).
* Fixed a bug causing missing bans in the list in the Channel Settings
dialog on certain (mostly older) IRC servers.
* The text in notification messages used to be wrapped every 50 char-
acters, an old workaround for problems with KDE 3.x's bubble notifi-
cations. This has been removed now since it's no longer needed with
modern notification frontends such as Plasma's, and produces rather
ugly results there.
* Made it possible again to initate DCC file transfers to a query
partner by dragging files or URLs onto the chat text area of the
query.
* When building against the KDE Platform v4.4.3 libraries, the auto-
away functionality will now make use of the new KIdleTime library
to determine user activity and inactivity rather than use its own
code, the primary advantage being that KIdleTime is supported on
non-X11 platforms such as Windows and Mac OS X. In effect, this
means auto-away is now supported on those platforms, depending on
the implementation level in KIdleTime. (The use of KIdleTime can
be explicitly disabled by passing '-DUSE_KIDLETIME=false' to
'cmake', in which case Konversation will fall back to using the
original, X11-specific code and auto-away will only work decently
on an X11 platform.)
* SSL support now integrates with KDE's certificate handling again,
as it used to in the KDE 3 version, made possible by improvements
in the libraries of the KDE Platform v4.3 (the minimum version
supported in this release) and higher.
* Not reacting to an SSL certificat validation error dialog in a
timely manner should no longer result in Konversation locking up.
* In-progress automatic reconnect in the event of connection failure
can now be aborted by using the '/disconnect' command.
* Manually issueing a reconnect order to a connection currently in-
active after having exceeded its maximum number of reconnection
attempts used to result in a single connection attempt after
which it would be announced that the maximum number of reconnect-
ion attempts had been exceeded again. This has been fixed: It will
now make the number of attempts specified as the upper limit in
the application settings.
* Fixed a bug that could cause the selection in the transfer list of
the DCC Status tab to be lost when a new transfer was added to the
list.
* Fixed a bug causing the information panel in the DCC Status tab to
show information for a transfer other than the one selected in the
transfer list after sending a file to oneself for the first time
in a session.
* The frame that used to be around the main window's tab widget when
the tab bar was located either at the bottom or top position has
been removed.
* Improved compatibility with freedesktop.org-compliant notification
frontends other than KDE's. Other frontends could previously show
empty notification message contents due to non-standard content in
the messages.
* Added an action to switch to the last focused tab, making it possi-
ble to quickly switch forth and back between two tabs. The default
keyboard shortcut for this new action is Alt+Space.
* Added a "-local" parameter to the '/amsg' and '/ame' commands that
limits their scope to the channel and query tabs associated with
the same connection as the tab the command is issued in.
* Fixed a bug causing the order of networks in the server list dialog
not to be preserved across application restarts.
Changes from 1.2.2 to 1.2.3:
Konversation 1.2.3 is a hotfix release that improves upon an earlier
fix, originally included in Konversation 1.2.2, that increases the re-
liability of Konversation's interaction with the D-Bus inter-process
communication daemon.
* Increased reliability of interactions with the D-Bus inter-process
communication daemon.
Changes from 1.2.1 to 1.2.2:
Konversation 1.2.2 contains a number of new features, such as support
for passive DCC chat and amarok:// URLs, and a large amount of user
interface improvements to various tabs (e.g. Watched Nicknames Online
and the URL Catcher) and dialogs (e.g. Join Channel). When used with
KDE SC 4.4 it supports the new system tray icon API. A sizable list
of bug fixes round things out; of particular note is a change address-
ing the high CPU usage some users have experienced with Qt 4.6.
* Added support for passive DCC chat.
* Made it possible to accept/reject DCC chats like DCC file transfers.
* Added an option to auto-accept DCC chats (previously it would always
auto-accept).
* Added a confirmation dialog for closing DCC chats, consistent with
other conversation tabs.
* Improved the sanity-checking code for the validity of ports used in
DCC operations.
* Fixed connection attempts possibly stalling when there is a problem
with executing the associated identity's pre-shell command (provided
it has one set at all), and Konversation crashing when it is quit
while a connection attempt is stuck on trying to execute the pre-
shell command.
* Fixed /setkey, /delkey and /showkey treating their target arguments
(i.e. a channel or a query) case-sensitive.
* Fixed the encryption key for a query getting lost if the other end
changes their nickname.
* Added support for KStatusNotifierItem, the new system tray API in
KDE.
* Fixed a bug causing multiple auto-replacements in a single message
not to work.
* Made it possible to include syntax normally used to refer to a sub-
group of the matching pattern as normal text in the replacement pat-
tern of a regular expression auto-replace, by escaping it like this:
%%1.
* Fixed a bug causing an empty MODE message to be sent to the server
preceding the correct one when using /op, /deop and the like.
* Fixed a bug causing as many mode chars as target nicknames given to
commands like /op, /deop etc. to be sent as part of every single re-
sultant MODE messages sent to the server, despite one MODE message
being generated for every group of three target nicknames. I.e. "/op
foo foo foo foo" would result in "MODE +oooo foo foo foo" and "MODE
+oooo foo", when it should only be "+ooo" and "+o", respectively.
* Added support for amarok:// URLs in chat text views and channel to-
pics.
* Fixed a bug causing Konversation to treat "Page Up" and "Page Down"
key events with any modifier (e.g. Ctrl) the same as without any mo-
difier, making such combinations unavailable as shortcuts for other
actions.
* Fixed a bug causing the status bar to remain stuck displaying the
description of a menu action if subsequently hovering other actions
without a description set.
* The Watched Nicknames Online, URL Catcher and Channel List tabs now
use a toolbar at the top rather than a row of buttons at the bottom
for their various actions, consistent with the Log Viewer and the
(redesigned for 1.2) DCC Status tabs. Aside from a nicer UI this has
the side benefit of reducing the minimum window width with any of
these tabs open.
* Further work on reducing the use of the qt3support/kde3support lib-
raries throughout the codebase.
* The design of the search bar has been made more consistent with the
search bars found in other KDE applications (e.g. Konqueror, Konso-
le and KWrite).
* Added a "--noautoconnect" command line argument to disable auto-co-
nnecting to any IRC networks on application startup.
* The invite dialog now has a drop-down offering the options "Always
ask", "Always join" and "Always ignore" for future default behavior,
rather than just a "Don't ask again" checkbox that wasn't sufficient
to cover all scenarios.
* The "Hide Nicklist" action has been renamed "Show Nicklist" to com-
ply with the KDE 4 HIG.
* URLs are no longer decoded before being passed to the web browser,
fixing the opening of some links from the chat text view.
* Fixed a bug causing the application to crash when pressing the left
or right arrow keys after selecting an active file transfer in the
DCC Status tab's transfer list when using Qt 4.6.
* Improved performance of the DCC Status tab's transfer list.
* It's now possible to add nicknames to the Watched Nicknames Online
list, as well as remove them, right from the tab rather than having
to go to the config dialog.
* Fixed a bug that would cause the "Choose Association" KDE address
book integration action to create a new contact in the address book.
* It's now possible to add a nickname to the watch list of all net-
works in the Watched Nicknames Online tab at once.
* Fixed a bug causing the opening of all bookmarks in a bookmark fol-
der at once not to work.
* The ban list interface has seen a facelift. The new way of working
with the list makes it very easy to use an existing list entry as
a starting point, modify it and then decide between replacing the
original ban with the new version or adding it as an additional ban.
* The topic history list in the Channel Settings dialog has seen a
number of behavioral and reliability improvements.
* Updated various dialog layouts to better comply with the alignment
rules of the KDE 4 HIG.
* The URL list in the URL catcher tab now sports a new Date column
and can be sorted. The sorting settings are saved and restored
across sessions.
* Fixed a bug causing the vertical spacing inbetween the regular mode
checkboxen on the "Modes" tab of the Channel Settings dialog to
change when the display of the advanced mode list was toggled or
the dialog was resized.
* The Join Channel dialog now sports a combo box listing all open co-
nnections (and the nicknames used on them, to be able to tell mul-
tiple connections to the same network apart), with the connection
owning the active tab automatically pre-selected. This allows one
to pick the connection to join the channel on regardless of the
active tab at the time the dialog is invoked (e.g. via the keyboard
shortcut). Previously, the dialog would only operate on the connec-
tion owning the active tab (and display it in a static label),
possibly requiring one to switch to a suitable tab first.
* Fixed a bug causing the "Clear History" item in the context menu of
the channel combobox in the "Join Channel" dialog not to clear the
history correctly; while it would be gone for as long as the dialog
was open, it would be back when closing and reopening the dialog.
* Fixed a bug causing a crash on Windows when middle-clicking the chat
text view.
* Fixed a bug causing the pasting of clipboard contents using keyboard
shortcuts not to work when the chat text has keyboard focus.
* Fixed a bug causing the setting or removing of a 'q' channel mode to
be mistakenly announced as giving or taking channel owner privileges
on networks where it's actually a type of ban.
* Fixed a bug causing a crash when pressing the "Ok" button in the
"Join Channel" dialog without entering anything in the dialog's
"Channel:" input field beforehand.
* More robust Unicode handling to make interaction with the D-Bus dae-
mon more reliable.
Changes from 1.2 to 1.2.1:
This second release in the Konversation 1.2.x release series for KDE 4
adds a number of new features to the bookmarks system and support for
reacting to changes in network availability as signaled by KDE's Solid,
along with a number of fixes for bugs discovered since version 1.2 was
released last month.
* Fixed a crash when cancelling the warning dialog that is shown upon
receiving two incoming DCC file transfer requests using the same file
name.
* Fixed a crash when using the "Clear Completed" action in the DCC Sta-
tus tab after having previously used the "Clear" action to remove spe-
cific transfers from the transfer list.
* Fixed a crash when using the "Clear" or "Clear Completed" action in the
DCC Status tab after creating a mixed selection of removable (e.g. com-
pleted, or failed) and non-removable (e.g. sending) transfers and the
last addition to the selection was a removable transfer.
* Added a "Bookmark Tabs as Folder" feature.
* Added the ability to open the contents of an entire bookmark folder at
once (aka "Open Folder in Tabs").
* Made the default generated bookmark titles more verbose: The Format is
now "Channel (Network-or-Server)".
* Added support for reacting to changes in network availability as re-
ported by KDE's Solid subsystem. If the network goes down, Konversa-
tion will now no longer make futile attempts to reconnect the affect-
ed connections. Instead, it will reconnect once the network comes back
up.
* Variable expansion (%B, %C, %I, etc.) is no longer done in text seg-
ments recognized as URLs to avoid clashes with percent-encoded char-
acters in URLs copied from web browsers, such as German umlauts.
* Made tooltips for truncated labels in the listview version of the tab
bar work again with newer versions of Qt.
* Fixed a bug that caused the Watched Nicknames Online list to show the
wrong or no tooltip when hovering a list item with the mouse pointer.
* The default destination folder for incoming DCC file transfers is now
the "Downloads paths" configured in System Settings or the equivalent
in other desktop environments (under the hood, this is a shared XDG
setting).
* Making and then comitting unrelated changes in the Channel Settings
dialog could cause unintentionally setting the channel's topic to an
older version if someone else had changed the topic since the first
time the dialog was opened or while the dialog was open, due to a bug
in the code that avoids such external topic changes interfering with
concurrent local editing of the topic. This has been fixed.
* The contents of the topic edit field in the Channel Settings dialog
will now reflect the selected item in the topic history list until
the user starts editing.
* Fixed a bug that could cause user mode changes occurring directly af-
ter joining a channel not to be reflected by the channel's nickname
list.
* Fixed a bug causing the "Open File" context menu action for DCC file
transfer items in the transfer list in the DCC Status tab not to work
for incoming file transfers.
* Added support for RPL_HOSTHIDDEN.
Changes from 1.2-rc1 to 1.2:
Konversation 1.2 is the first release of Konversation for the KDE 4 app-
lication platform and desktop environment. In addition to preserving the
full functionality of the KDE 3 version, this release offers a signifi-
cant amount of new features and improvements to the user interface, per-
formance, memory usage, energy efficiency, correctness and stability.
Sum total, the changelog of all development releases since Konversation
1.1 and of this final release combined once again make for the longest
changelog in Konversation's release history.
Some of the highlights compared to Konversation 1.1 include support for
SOCKS v5 and HTTP proxies, a redesigned DCC file transfer user interface
(and much improved DCC code under the hood with several new features,
such as support for IPv6 and DCC REJECT), support for UPnP for NAT tra-
versal, rewritten and much improved support for Blowfish encryption (now
supporting DH1080 key exchange, for example), a significantly better per-
forming channel list, a rewrite of the channel nickname lists for better
performance and improved battery-friendlyness, a new channel join invita-
tion user interface, an improved auto-replace feature, expanded media
player support and many improvements to the IRC protocol implementation.
Enjoy!
* When dragging a link from the chat text view, the drag object will now
contain a plain text version in addition to the URL version. This allows
dragging a link to places that don't accept URL drops, such as Konsole,
the Konqueror address bar or Konversation's own input line.
Changes from 1.2-beta1 to 1.2-rc1:
After a pleasantly uneventful two weeks with beta1, this release candida-
te for our first KDE 4 stable release brings a handful of bugfixes that,
while definitely worth having, are fortunately none too scary. We thus ex-
pect the final Konversation 1.2 release to follow in the very near future.
* Fixed the scrollbar thumb not remaining at the bottom when the chat text
view is resized (such as when the window is resized or the input bar in-
creases in height after typing more than one line with auto-expand mode
enabled).
* Fixed a bug that could cause the progress bar for DCC file transfers not
to be updated when "Fast DCC send" was enabled.
* Fixed a bug that could cause a crash when resuming an incoming DCC file
transfer.
* Fixed characters that require the Alt Gr modifier to be typed (such as
the '@' symbol in German keyboard layouts, for example) not causing key-
board focus to move to the input line when typed while the chat text view
has keyboard focus and thus not showing up in the input line.
* Fixed a bug causing both the link and the marker or remember line to be
selected when a line is appended directly after a link that has just been
clicked.
* Fixed a bug causing the automatic scroll-down not to work when more back-
log is replayed than the viewport can show at once at channel join.
* The "Advanced Modes" listing in the "Modes" tab of the Channel Settings
dialog will now properly vertically expand as the dialog is resized even
to a very large height.
* Fixed a bug that could cause a crash while manipulating a channel's ban
list.
* Fixed a bug causing the moving of child tabs of a network tab in the
treelist version of the tab bar not to work using the keyboard shortcuts,
context menu actions or "Window" menu actions.
Changes from 1.2-alpha6 to 1.2-beta1:
Konversation 1.2-beta1 marks the departure from active feature development
for Konversation 1.2 and the entrance into the much-vaunted halls of bug-
fixing-until-the-final-release, which we expect to materialize in early
October. Until then, you can enjoy what this beta has to offer: HTTP and
SOCKS v5 proxy support, further redesign of the DCC Status tab (many of
you will be happy to find the minimum window size with the DCC Status tab
open much reduced now), the long-awaited return of marker and remember
lines and the resurrection of link dragging from the text display widget
are of particular note, but the changelog has the details on a variety of
other additions, plus the usual assortment of bugfixes, as well.
* Added a topic widget for Konsole windows and hooked it up to the KPart's
setWindowCaption signal
* Added tooltips to items in the new DCC transfer lists that describe the
transfer's status more verbosely.
* Fixed the OSD stealing focus when it appears on Windows.
* Running DCC file transfers are now properly aborted on application quit.
* Removed the 'ucs2' encoding from the encoding list, as it is is not sup-
ported on IRC. This also resolves a crash when sending messages after
selecting it (however the crashing codepath has been independently made
more robust as well).
* Fixed a crash when sending a message containing only spaces.
* Added a "Manage Profiles" button to the information area above the ter-
minal area in Konsole tabs.
* Added SOCKS v5 and HTTP proxy support. Proxy credentials are stored in
KWallet.
* Moved the buttons in the DCC Status tab to a toolbar, similar to how
things were already laid out in log viewer tabs.
* Redesigned the DCC transfer info panel in the DCC Status tab to have a
smaller minimum size. This should mean that less people will see their
window size increase when a DCC transfer is initiated, as it reduces
the minimum size of the window with the DCC Status tab open.
* Added a "Clear Completed" item to the DCC Status tab's toolbar.
* Fixed a crash on the processing of illegal lines sent by the server that
contain only spaces (as sent by the buggy lidegw lide.cz gateway script).
* Made DCC transfer speed reporting more reliable.
* Fixed sorting the transfer list in the DCC Status tab by its "Started At"
column. Previously, sorting by that column would sort alphabetically by
the string value of the fields rather than properly by date.
* Fixed the Channel Settings no longer disabling interface elements allow-
ing the manipulation of channel properties when the user lacks the ne-
cessary operator privileges in the channel.
* The position of the splitter handle determining the size of the info pa-
nel in the DCC Status tab is now saved across application restarts.
* Fixed a crash when changing settings after the "Insert Character" dialog
had been used.
* When an attempt to set up a port forward via UPnP fails, an error message
stating as much will now be shown in the currently active or last active
tab for the associated IRC server connection.
* Made the '/amsg' command work properly again.
* Fixed two close icons (one on the left, one on the right) being shown on
tabs when close buttons were enabled and the tabs were in top or bottom
position.
* Fixed incorrect colors in the listview version of the tab bar when ini-
tially switching to it within a session.
* Fixed a regression vs. the KDE 3 version that caused a failure to correct-
ly parse shortened IPv6 addresses except when using RFC 2732-style bracket
notation and explicitly stating a port to connect to.
* Made the display of server address and port number in various connection-
related chat view messages more consistent and IPv6-friendly (with the
'<ip>:<port>' forward previously used, it could be hard to tell where the
IP ended and the port began -- now it's '<ip> (port <port>)').
* Updated the scripting documentation to talk about D-Bus rather than DCOP.
* The initial width of the nickname lists in channel tabs is now more sen-
sible.
* Added back the ability to drag links out of the chat view.
* Resurrected the RTL text support in the chat view.
* Fixed a crash during UPnP discovery when the router doesn't respond in
the expected way.
* Various actions that operate on the active tab (e.g. those found in the
"Insert" menu) are now properly disabled when the last tab is closed.
* Fixed a bug with Qt 4.5 where after closing a tab a tab adjacent to it
would briefly be activated before subsequently activating the tab that
was active before the just closed one (i.e. only noticable when 'a tab
adjacent to the just closed tab' and 'the previously active tab' are not
the same).
* Marker lines and the remember line are back.
* Fixed a bug that could cause queue flushing rates to be entered into the
configuration that would prevent successfully connecting to Freenode and
potentially other IRC networks.
Changes from 1.2-alpha5 to 1.2-alpha6:
Konversation 1.2-alpha6 is primarily a hotfix release addressing a serious
DCC crash that we unfortunately only discovered after releasing alpha5. To
sweeten the offer, however, it also includes a nicer DCC tranfer list that
separates incoming and outgoing transfers into distinct categories, allows
you to enable/disable individual columns and saves the sort column and di-
rection across application restarts. Furthermore, Konsole tabs may now be
renamed and there's also a fix for the handling of certain rare mode cha-
racters.
* The transfer list in the DCC Status tab now separates items into "Inco-
ming Transfers" and "Outgoing Transfers" categories, using the same ca-
tegory headers employed in System Settings and other places throughout
KDE 4.
* It's now possible to enable/disable the display of individual columns of
the transfer list in the DCC Status tab. This is remembered across app-
lication restarts.
* The sort column and direction of the transfer list in the DCC Status tab
is now remembered across application restarts when using Qt 4.5 or higher.
* A "Rename Tab..." action has been added to the context menu of Konsole
tabs.
* Fixed a crash when the client observes channel modes being modified that
carry a parameter when used as user modes.
* Fixed a crash when an incoming active or outgoing passive DCC file trans-
fer either timed out or was manually aborted while in "Connecting" state."
Changes from 1.2-alpha4 to 1.2-alpha5:
Konversation 1.2-alpha5 features significant performance and memory usage
improvements in several areas of the application, such as channel nickname
lists, backlog loading, Channel List tabs and the URL Catcher - the latter
two have also seen a fair number of interface refinements, making them much
more enjoyable to use. The DCC subsystem has seen the addition of IPv6 sup-
port and a '/dcc get' command to accept an incoming file transfer from the
input line. Various smaller additions and improvements have been made as
well, including the usual share of bug fixes.
* Added back "Do not ask again" checkbox missing in the rewritten invita-
tion dialog that appeared in v1.2-alpha4. By implication, the dialog now
also observes the "Automatically join channel on invite" option from the
"Warning Dialogs" page in the configuration dialog again.
* Fixed problems reconnecting an SSL-enabled connection using a self-sign-
ed certificate.
* Fixed a build problem with KDE trunk (i.e. what will one day be KDE 4.4).
* Fixed loading and saving of the settings toggling the invitation and mul-
ti-line paste warning dialogs in the "Warning Dialogs" page of the con-
figuration dialog.
* Improved wording of the description of the invitation dialog setting in
the "Warning Dialogs" page of the configuration dialog to reflect that
the dialog being disabled doesn't imply that the channel the user was
invited to will be joined automatically, as the user might have rejec-
ted the invitation when he got the dialog along with checking "Don't
ask again".
* Decreased memory usage (the objects created for every IRC user encounter-
ed are lighter now).
* Initializing Phonon is now delayed until it is actually needed, resulting
in less memory usage for those not using highlight sound notifications
and less work being done during application startup.
* Fixed DCC file transfer problems with files larger than 4 GB on 32bit sys-
tems, along with some other correctness improvements to the file transfer
code.
* Backlog loading is now more efficient.
* Added IPv6 support for DCC file transfers.
* The fallback default file name for unnamed files received via DCC now con-
tains the date of when the file was received in ISO format.
* Fixed a crash when trying to perform a tab completion with an empty nick-
list (i.e. shortly after joining a big channel, before its nicklist has
been filled in).
* Channel nickname list updating is now more efficient and pleasant to look
at. Rather than resorting the entire list after the addition of a new nick-
name, the nickname is now inserted directly at the correct position (using
a binary search), avoiding a lot of CPU-intensive comparisons between nick-
names. The same optimization is also done for nickname and user status (as
relevant in case "Sort by status" is enabled) changes - rather than trigger-
ing full resorts, items are moved directly to new positions as necessary.
Resorting after both new additions and changes was previously done only
after a delay of one second (as part of a scheme to throttle the update rate
to a maximum of once per second given how CPU-intensive it was), which meant
that new nicknames would initially appear at the end of the list and move to
the correct position only after one second, and that nickname and status
changes were similarly reflected in the sorting only after one second - this
delay has now been eliminated, making the nickname list much snappier in re-
acting to what's going on.
Note however that when more than ten events requiring an update to sorting
occur within one second, a fallback to the old scheme of doing a full resort
at a maximum rate of once per second, after an initial delay of one second,
occurs, as this is believed to be more efficient in situations of very high
activity (such as merges after netsplits). Thus the new scheme described
above should be seen as an additional optimization for the common case.
* In addition to the broad strokes optimization described above, other minor
optimization work has been done on the nickname list updating code, impro-
ving the efficiency of updates further.
* Fixed topic label text color not reacting to system color scheme changes.
* Added a '/dcc get [nick [file]]' command to accept an incoming DCC file
transfer request.
* Fixed a crash when using the 'Insert -> IRC Color...' menu item without
there being any tabs.
* Nickname changes of the discussion partner are now announced in query tabs,
provided the information is available (i.e. when one shares a channel with
the discussion parther, so the server informs Konversation of the nickname
change).
* Fixed building on OpenSolaris.
* The channel item context menu in Channel List tabs now has a "Join Channel"
action, and the list of URLs extracted from the channel topic has been mo-
ved to a sub-menu.
* Increased use of the IRC icons found in recent versions of the Oxygen icon
set.
* Fixed a bug causing the time a user went online not to be displayed in
WHOIS information (provided the server reports it).
* Fixed close button icons not immediately appearing on newly-added tabs when
enabled (a preferences change would cause them to appear).
* A significant revamp of the Channel List code, especially around the way the
list data received from the server is being moved into the UI, has brought
about significantly improved behavior. The application should now no longer
be bogged down for extended periods of time while the list is being process-
ed - in extreme cases, this could even lead to disconnects by timeout.
* The "Apply Filter" button has been removed from the Channel List interface.
Instead, the filter is (re)applied automatically as its settings are chang-
ed, i.e. briefly after stopping to type into the "Filter pattern" field or
after changing one of the spin- or checkboxes.
* Fixed the display of human-readable mode descriptions in place of traditio-
nal mode characters (toggled by the "Show raw mode characters" preference
and only applicable when Konversation knows a description for a given mode
char) being inconsistent between '/mode <channel> and '/mode <channel>/<user>
+/-<mode>' - separate, unequal lists of mode descriptions were being used;
this has been unified now.
* Fixed the "Modes" tab of the Channel Settings dialog not using human-readable
mode descriptions in place of traditional mode characters when the "Show raw
mode characters" preference is disabled (as it is by default) and a descrip-
tion for a given mode char is available.
* Fixed the mode list shown by "Show Advanced Modes" in the "Modes" tab of the
Channel Settings dialog not showing all modes announced as supported by the
server.
* The Channel List, when hovering a list item with the mouse pointer, now shows
a tooltip with the entire topic of the channel when it doesn't fit the topic
column's width.
* Konversation will now display a warning dialog box when the user is trying
to send a character not supported by the chosen encoding.
* When a message containing characters not supported by the chosen encoding
is sent, the chat view will now display the '?' replacements for those cha-
racters that are sent to the IRC server and thus seen by other users. Pre-
viously, the chat view would display the version of the message before
this encoding step, and thus usually show the characters, as the Unicode
character set normally used by KDE/Qt is considerably broader than many
of the encodings that can be selected in Konversation. In other words, the
chat view now accurately portrays what is sent to other users when a mes-
sage contains characters not supported by the active encoding.
* The URL Catcher should now open considerably faster with long lists of
caught URLs and mail addresses.
* The list items in the URL Catcher now have the same context menu as links
in the chat view. Previously there was no context menu.
* Caught mails and mail addresses not coming from an IRC user (an example
would be links contained in a server's Message of the Day text) now have
their "From" field filled in with the tab name instead of it being left
blank in the URL Catcher.
* Fixed a bug causing the DCC Status tab to sometimes prematurely claim a
transfer status of 100%, as well as an unrealistic transfer speed, when
sending a file to another user. The transfer would go on until actually
finished; merely the information shown in the interface was defective.
* Fixed log viewer tabs not observing the chat window background image setting.
* Fixed log viewer tabs not reacting to changes to the chat window background
color or font settings.
* Fixed raw log tabs only applying the chat view background image setting on
configuration changes, not when initially being opened.
* The removal of the frame around the tab widget is now exclusive to KDE 4.3.
We do it by way of enabling document mode for the tab widget (which is new
in Qt 4.5), which renders badly in versions of the Oxygen style found in
KDE versions earlier than 4.3, and the workaround we previously applied to
make it work even with those older Oxygen versions had the unwelcome side-
effect of breaking the application of color preferences to the input bar
and nickname list.
Changes from 1.2-alpha3 to 1.2-alpha4:
Alpha 4 marks a significant milestone on the way to feature completeness
for the v1.2 release of Konversation. New features in this release inclu-
de UPnP NAT traversal support for DCC file transfers and chats, DH1080
key exchange support for Blowfish encryption and the ability to automati-
cally split very long actions (i.e. usage of the '/me' command) into mul-
tiple messages conforming to the maximum length of an IRC message (this
was already supported for regular messages for some time).
Many bugs have also been addressed, including an important fix for invita-
tion dialogs causing disconnects by timeout if they were not dealt with
quickly enough - and not only is the rewritten dialog non-blocking, it also
allows for handling multiple outstanding invitations in a single dialog,
rather than a new dialog being displayed for every additional invitation
received. Other fixes include further interface polish and robustness and
correctness improvements to Blowfish encryption, the Watched Nicks Online
system and the storage of per-tab encoding preferences in the configuration
file.
A closing note for packagers: In this release we have replaced our cus-
tom implementation of the Blowfish encryption algorithm with an optional
dependency on the Qt Cryptographic Architecture (QCA) library in version
2 or higher. By implication, Blowfish encryption support is now optional:
A QCA2-enabled build will have it; a build not using QCA2 will not.
* Changed links to KDE's (and hence our) bug tracker throughout the code-
base to use https://bugs.kde.org/ rather than http://bugs.kde.org/
* Fixed the "Show Menubar" item not getting removed from the chat view
context view after showing the menubar again. Also added a separator
after the item (only visible when it is present).
* Switched the timestamps in log files to use KDE's locale settings for
formatting the date and time, as the equivalent Qt API used previously
seems to look at the value of LC_NUMERIC to detemine the format in Qt
4, which doesn't meet user expectations.
* Fixed the "Date" column in the topic history of the Channel Options
Dialog not using KDE's locale settings to format the value.
* Fixed the "Date" column in the Channel Settings dialog's topic history
sorting alphabetically rather than by date.
* Improved Windows support in the bundled 'media' script.
* Fixed the vertical alignment of the topic label when using Qt 4.5 (it's
now top-aligned rather than vertically centered, i.e. making the topic
area bigger than the topic by dragging the splitter down won't cause
the topic to move down to stay in the vertical center anymore -- Qt 4.5
is needed because a method to retrieve the document margin from the chat
view to use as the top margin for the topic label is new in that version).
* Fixed various chat view messages containing date/time values (channel
created, topic set, online since, ban info) not using KDE's locale set-
tings for their display format.
* Added support for using UPnP for NAT traversal for DCC file transfers
(both active send and passive receive) and DCC chat. When UPnP is ena-
bled in both Konversation and your router, Konversation now knows how
to ask your router to set up the necessary port forward, and also how
to to ask it to remove it later.
* Added support for the KDE 4 version of JuK to the bundled 'media' script.
* Fixed '/msg <channel> <message>' not displaying the resulting message in
the target channel when the user is attending that channel.
* Made the appearance of the line informing about the message being sent
with '/msg <nick|channel> <message>' consistent between channel, query
and status tabs (it now looks like in the former in the latter two as
well).
* Fixed the visualization of '/msg <nick|channel> <message>' (i.e. the
'<-> target> message' line) being shown only after adding the resul-
ting message to the target chat view (if present), causing an odd-look-
ing order if the origin view and the target view are the same.
* Watched Nicknames Online now generally operates on networks by their
internal unique IDs rather than names, enabling it to handle multiple
configured networks with identical names properly.
* Konversation's custom implementation of Blowfish encryption has been
replaced with an optional dependency on the Qt Cryptographic Architec-
ture (QCA) library version 2.
* The '/setkey [nick|channel] <key>' command now recognizes 'cbc:' (ci-
pher-block chaining) and 'ecb:' (electronic codebook) prefixes in the
key field to set a particular Blowfish block cipher mode of operation,
defaulting to the value of a config dialog preference (Behavior -> Co-
nnection-> Encryption -> Default Encryption Type, the default is Elec-
tronic Codebook (ECB)) when no prefix is given.
* Fixed crash when opening links with ' in them when the "Custom Browser"
preference is enabled in Konversation's config dialog.
* Improved consistency of link opening behavior between the chat view, the
topic label and the URL catcher (all three now use the new-in-KDE-4 KTool-
Invocation API to invoke the KDE default browser, whereas the topic label
and the URL catcher were still using KRun until now).
* Fixed a bug that could cause the state of the spell-checking setting for
the input line to be lost across application restarts.
* Added support for considering square brackets ([]) part of URLs.
* Fixed the code producing multiple JOIN commands for auto-join as neces-
sary to stay under the 512 byte limit for a single command to take the
length of the commas in the commands into account when calculating the
distribution of the channels among the multiple lines, as well as not
to list channels falling at the boundary twice, once in the current and
once in the following line. In English: Fixed auto-join with a massive
amount of channels possibly not joining all channels correctly.
* Fixed a bug causing re-joining of password-protected channels to fail
on reconnects when those channels also had another mode with a parame-
ter set.
* Fixed a bug that caused query lines written by the user that are so long
that they need to be split up into multiple messages not to display in
the query text color.
* Fixed a bug causing query lines written by the user that are so long they
need to be split up into multiple messages for sending not to be displayed
in the configured query text color.
* Fixed the status bar showing HTML data when hovering the contents of the
info label area at the top of query tabs. The data was actually supposed
to be displayed as a tooltip (just like the nickname list item tooltips
in channel tabs), and is now.
* Fixed a bug causing the automatic away system to set the user away again
on the next periodic activity check when no further mouse/keyboard acti-
vity occurs after unlocking the screen/ending the screensaver.
* Implemented splitting up of overly long actions (i.e. usage of the the
'/me' command) into multiple messages to stay under the 512 byte message
length limit (in raw format) imposed by the IRC protocol. As with the
normal message splitting, this is aware of how multi-byte/variable-width
text encodings and sender hostmask length (which is part of the message on
the receiving end) factor into the matter. Note that only the first message
is actually sent as an action, the other messages are sent as normal messa-
ges - intentionally, as this seemed to make the most sense formatting-wise.
* Fixed the dialog box appearing upon receiving an invitation to join a chan-
nel causing a disconnect by timeout when not being dealt with by the user
swiftly enough.
* Multiple invitations to join channels are now being handled by a single
dialog box per connection, so that receiving many invitations in short
order no longer means getting flooded with dialog boxes.
* Implemented DH1080 key exchange support for Blowfish encryption. You can
use the '/keyx' command to initiate a key exchange.
* The raw log now shows encrypted incoming and outgoing messages in their
encrypted form. Previously, incoming messages were being decrypted before
being shown, and outgoing messages were being shown before encryption
took place, thus not capturing what was actually coming from or going to
the network socket as is the intent of the raw log.
* Fixed a bug causing unrecognized channel mode characters being shown as
their decimal value in the chat view messages announcing them having been
set or removed.
* Per-tab encoding settings for tabs belonging to a connection to a configu-
red network (i.e. one found in the Server List dialog) now reference the
unique ID rather than the name of the network in the config file, making
things work reliably across restarts even when there are multiple identi-
cally named networks. Encoding config file entries for tabs belonging to
connections to servers that are not part of a configured network continue
to reference the server hostnames.
* Fixed the "(away)" label in front of the input line, indicating away sta-
tus, not showing up in query tabs.
Changes from 1.2-alpha2 to 1.2-alpha3:
This third alpha fixes a fair amount of annoying bugs encountered in
day-to-day usage, as well as a serious bug in handling NAMES messages
from IRC servers. We've also made some UI changes that we'd like to
get your feedback on: We've changed the default tab completion mode
to "Cycle Nicklist", and we've removed the frame around the tab wid-
get when using the listview version of the tab bar.
* Worked around a Qt bug that has a text selection in the chat view that
includes the last line in the view grow to include the new text when
new text is appended to the view.
* Fixed Konversation exposing various signals on D-Bus that it shouldn't
have.
* Fixed a regression causing '/names #channel' to end up duplicating the
nickname list contents when already attending '#channel'.
* When using Qt 4.5, Konversation no longer paints a frame around the UI
elements of a view (e.g. a channel) when using the listview version of
the tab bar. Feedback on this change is appreciated!
* Fixed duplicated messages about DCC transfer failures in the chat view.
* When the menu bar is hidden, the top-most item in the chat view context
menu is now the option to unhide it again.
* Fixed the OSD disappearing also cancelling the system tray blinking no-
tification.
* Fixed a crash on quit by D-Bus / by KDE session logout.
* Fixed the tab completion nickname list sorting behavior for the "Shell-
like" completion modes. The behavior now matches the "Cycle Nicklist"
mode and the "Shell-like" modes of previous Konversation 1.x versions
again: The last active nick for the given prefix is at the top of the
list, with the rest of the list sorted alphabetically.
* The default tab completion mode has been changed to "Cycle Nicklist".
Feedback on this change is appreciated!
* Changed the bundled 'bug' script to perform a quick search with the
given parameter, rather than try to use it as a bug ID directly. The
resulting behavior is unchanged for a numerical parameter, but with
a string, much more useful.
* The 'mail' script, which was disabled in the build system up until now,
is now getting installed again.
* Fixed a bug causing the "Set Encoding" menu not to work.
* Fixed a bug causing the bundled 'media' script not to work when used
to retrieve song information from Amarok 2 for a song which has any
of the following meta data fields not set: title, artist or album.
* Fixed the 'Self' field of the DCC transfer details panel not showing
the port when available.
* Fixed DCC transfers showing an average speed of 1 TB/s in their first
second.
Changes from 1.2-alpha1 to 1.2-alpha2:
After just under a week's worth of adding back some missing functiona-
lity, polishing the interface and, of course, of fixing bugs, we've de-
cided to bring you Konversation 1.2-alpha2. While there were no major
defects discovered in alpha1, this one should yield an overall more re-
fined user experience, and brings us another good step closer to our
first stable release for KDE 4.
* Fixed nicknames in action messages using the message text color when
nick coloring is disabled rather than the correct action text color
as the rest of the message.
* Added back the context menus for nicknames and channel links in the
chat view.
* Fixed the topic/info area in channels, queries and DCC chats, the nick-
name list in channels and the listview variant of the tab bar not keep-
ing their sizes when the window is resized.
* Added missing actions ("Reconnect", "Disconnect", "Join channel ...")
back to the context menu for server status tabs.
* Improved the placement of the "Join on connect" channel tab context
menu item (back under "Enable Notifications" as in v1.1).
* Added the use of some of the new irc-* icons found in recent updates
to the Oxygen icon theme.
* Fixed crash when joining a channel after having been blocked from get-
ting the topic for the channel.
* Made the initial size of the "Edit Network" dialog more reasonable.
* Improved vertical size of and text alignment inside the input line.
* Added back support for drag and drop reordering of views to the list-
view version of the tab bar.
* Added back support for "surfing" in the listview version of the tab
bar by pressing and holding the left mouse button on a view and moving
the mouse up and down in the list view.
* Fixed mouse handling for close buttons in the listview version of the
tab bar.
* Added back support for showing tooltips for truncated view items in
the listview version of the tab bar.
* Fixed crash when receiving lines terminated by LFCRLF from buggy IRC
servers (such as the shroudBNC IRC proxy when it relays a private mes-
sage received while no user was connected to it).
* Worked around a Qt bug that has a text selection in the chat view that
includes the last character in the view grow to include the new text
when new text is appended to the view.
* Sound notifications for highlights now reuse a single Phonon MediaObject
by enqueuing notification sounds rather than instanciate a new one for
every notification, improving resource efficiency and hopefully taking
care of some high CPU usage reports that seemed to be linked to Konver-
sation's Phonon usage.
* Fixed the enabling/disabling of the "Find Previous" action.
* Fixed several bugs in the Server List dialog (sort indicator disappear-
ing while dragging items, stray pixel in the top-left corner of the list-
view, hover decoration while dragging not always showing).
* Improved handling in the Identity editor dialog: When Konversation com-
plains about one or more required fields not being filled in, the dialog
will now put focus on the field when it opens.
* Fixed the 'Self' IP field of the DCC transfer details panel not showing
a value when on the receiving end of a DCC file transfer.
* Handle DCC REJECTs. A DCC SEND is now automatically aborted when the
partner rejects it.
* Fixed a bug causing the ordering of views to be partially reversed when
switching from the listview version of the tab bar to the regular tab bar.
* Improved consistency of the context menu for links between the topic area
and the chat view.
* Fixed repeated searches for the same search pattern (i.e. "Find Next")
sometimes not working reliably with the chat view search bar.
* Minor code cleanups and performance improvements.
Changes from 1.1 to 1.2-alpha1:
We're happy to bring you this first public release of the KDE 4 version of
Konversation.
Despite the "alpha" moniker we've settled on for this one, mostly due to
not yet being feature-complete (see below), this port has already been
used productively by a fair number of people for some time and should be
stable enough for general usage. In fact, certain features, notably DCC
file transfers and auto-replace, are expected to be more robust than in
Konversation 1.1.
While this version largely achieves feature parity with Konversation 1.1
(and adds several new features on top), notable exceptions are the lack
of support for marker lines as well as nick and channel context menus in
the chat view. These are pending the merge of a rewritten chat view and
will make a return before the final Konversation 1.2 release. Other known
issues in this version include a lack of KDE 4 HIG compliance in the con-
figuration dialog and various minor interface polish problems; these will
be addressed as well.
Enjoy, and don't forget to report any bugs you encounter!
* Ported to KDE 4 (KDE 4.1 or higher is required).
* Enabled the (experimental, hackish) Amarok 2 support in the 'media' script.
* Fixed a bug that could cause channel notifications to be lost across recon-
nects.
* Removed the code to recreate hidden-to-tray state across application re-
starts. It was broken after the shutdown procedures were moved to a point
in time after after the main window is hidden to cover quit-by-DCOP, and
Konversation 1.1 features an explicit hidden startup option that fulfills
user demands more accurately anyhow. This fixes a bug that made Konversa-
tion always hide to tray on startup regardless of the aforementioned op-
tion when the system tray icon was enabled.
* Added a network settings lookup fallback to retrieving the key of a channel.
Previously, this relied solely on the channel's mode map. Closes the brief
gap between a channel join and the server's reply to MODE where possible,
so that e.g. reconnecting directly after auto-joining a channel with a key
doesn't result in a failed rejoin due to not having the key by way of the
MODE reply yet.
* Fixed opening URLs from the channel topic context menu in Channel List tabs.
* When connecting to multiple selected unexpanded network items from the Ser-
ver List, don't also try to connect to the hidden server sub-items selected
by implication, avoiding unwanted connection duplicates.
* Mask the password field in the Quick Connect dialog.
* Fixed a bug causing passive DCC file transfers to stall at 99%.
* Fixed "/leave" command in queries.
* Fixed auto-replace rules containing commas in the pattern not being loaded
correctly from the config file.
* Fixed non-regex mode auto-replace rules containing regex special characters
and character sequences not working correctly.
* Improved performance of non-regex mode auto-replace rules.
* Added option to open log files with the system text editor instead of the
built-in log viewer.
* Made the Oxygen nicklist icon theme the default nicklist icon theme.
* Removed the bundled 'weather' script (it relied on a KDE 3 service no lon-
ger present in KDE 4; a replacement will need to adopt a new approach).
* Fix sending and receiving of files with names containing spaces
* DCC Protocol adjustment to proper handle passive DCC resume/accept requests.
(this breaks passive-resume compatibly with <konversation-1.2)
* Send proper DCC reject commands when rejecting a queued receive.
* Improved error recovery during dcc send.
* Fix time left for transfers that finished in under 1 sec displaying infinite
time left.
* Increased default DCC buffer size to 16384 to reduce CPU load while sending
or receiving files.
* Added KNotify events for "Highlight triggered", "DCC transfer complete"
and "DCC transfer error".
* Fixed Automatic User Information Look Up not being started upon channel
join on some IRC servers (namely those that don't send RPL_CHANNELCREATED
after joining a channel, such at those used by IRCnet).
* Updated the server hostname for the pre-configured Freenode network to the
one given on their website these days, 'chat.freenode.net'.
* Added support for browsing the input line history by using the mouse wheel.
* Fixed problems the bundled 'tinyurl' script had with certain URLs by conver-
ting it to use the TinyURL API rather than screen scraping.
* Added initial support for the MODES parameter of RPL_ISUPPORT. When giving
or taking op, half-op or voice to/from multiple people at once, Konversa-
tion will now combine as many of them into a single MODE command as the
server advertises it supports (as long as it advertises an actual value;
the value-less unlimited MODES case is not supported yet as it requires
more work on limiting MODE commands to the 512 byte IRC message buffer
limit for extreme cases). If MODES is not given at all by the server, the
fallback is an RFC1459-compliant value of 3.
* Added support for formatting variable expansion in the replacement part of
auto-replace rules.
* Rewrote multi-line paste editor, improving handling and appearance.
* Added button to intelligently replace line breaks with spaces to the multi-
line paste editor.
Changes from 1.0.1 to 1.1:
We are extremely pleased to announce Konversation's newest major release, v1.1.
Konversation 1.1 is a special release for us in multiple ways: It's our farewell
to KDE 3, by way of being the last major release built upon that venerable
platform. It's also our biggest release yet, in terms of the number and
magnitude of the changes.
The additions and improvements in this release are both user-visible and under
the hood. Some of the highlights are rewritten connection handling (robustness
and correctness improvements, better support for IRC URLs, bookmarking and
more), redone DCC with better UI and Passive/Reverse DCC support, a redone away
system with the addition of auto-away support, redone and much more useful
remember / marker line support, a new outbound traffic scheduler that is capable
of aggressive throttling to avoid flooding while smartly reordering messages to
improve latencies, great convenience additions like a "Next Active Tab" shortcut,
and much, much more, along with a large number of bugfixes and tweaks to round
things out. Note: All fixes made since RC1 are marked with a "[New since RC1]"
label in the changelog.
We're confident that this release is the best and most robust version of
Konversation published so far, and upgrading comes highly recommended to all
users. Enjoy!
Text views
* Added an option to hide the scrollbar in chat windows.
* Don't scroll to bottom if the view was scrolled up before resizing.
* Fixed chat views occassionally not being scrolled to the bottom at their
inception with long backlog appends.
* Fixed an off-by-one error in scrollback culling.
* Fixed a bug that lead to single leading whitespace characters in lines being
omitted from display in chat windows.
* Now preserving trailing whitespace in raw log tabs.
* Fixed display of '<' and '>' in backlog lines.
* Fixed copy/paste with shortcuts other than the default Ctrl+C/V ones.
* Fixed onotice display.
* Fixed middle-click-to-open-in-new-tab on chat window URLs when Konqueror
wasn't running.
* Fixed superfluous closing parenthesis being inserted after links in lines
which contain multiple links followed by closing parenthesis.
* Fixed URLs with encoded hash mark %23 being incorrectly passed off to handler.
* Fixed variable expansion causing certain URLs to be corrupted when pasted.
* Added a "Save Link As" item to the context menu of links in the chat window.
* Have the "Save as..." dialog suggest a file name.
* Implemented Shift+Click to "Save as..." URLs..
* Made the channel links context menu work in server status views.
* Fixed nickname links in chat view messages created as a result of '/msg <nick>
<message>' commands erroneously prepending '->' to nicknames.
* Fixed operations on nicknames containing "\" characters from the nickname
context menu.
* Fixed query view context menus operating on the wrong nickname under certain
circumstances.
* Fixed a bug that caused the "Send File..." action in the generic query context
menu to pick the wrong recipient after hovering the user's own nick in the
chat display.
* Fixed date display not using the locale's date format.
* Fixed IRC color parsing so that the colors gets reset to default if no color
numbers were given.
* Fixed a bug that could cause the text selection in a chat window to be messed
up when new text was appended.
Marker/Remember Lines
* Konversation now distinguishes between manually and automatically inserted
marker lines, making the "show line in all chat windows" preference less
confusing.
* The automatically inserted remember lines when chat windows are hidden are now
"sliding", i.e. there is only one per chat window, and it moves.
* Automatically inserted remember lines will now optionally only be inserted
when there's actually new text being appended to the chat window (enabled by
default).
* The automatic remember line will now also be inserted when the window has lost
focus.
* Added an action to clear all marker lines in a chat window.
* Improved marker lines-related preferences and terminology.
* Improved the appearance of marker lines in the chat window.
* Made the (marker line-related and other) identity default settings consistent
between the initial identity and additional newly created identities.
* Fixed hidden join/part/quit events marking tabs as dirty, allowing multiple
consecutive remember lines to appear.
* Fixed crash when minimizing or closing the application window prior to any tab
switch when the auto-insertion of remember lines is enabled.
Input line
* Fixed input line contents rather than actual sent text being appended to the
input history upon a multi-line paste edit.
* Special characters and IRC color codes will now be inserted at the cursor
position rather than the end of the input line contents.
Nickname list
* Implemented an additional "Sort by activity" nicklist sorting mode.
* Added Oxygen nicklist icon theme by Nuno Pinheiro.
* The list of nickname list themes is now sorted alphabetically.
* Fixed race condition when removing a nicklist theme (listview would be
repopulated before deletion was complete).
* Fixed using the wrong palette for the disabled text color in the nickname
list.
* Fixed moving back from the custom alternate background color to system colors
in the channel nickname listviews when disabling the "Use custom colors for
lists, [...]" preference.
* Cleanups in the nicklist item code.
Tab bar / Tree list
* Added option to add and remove a channel from its network's auto-join list
from the tab context menu.
* Added option to close tabs using middle-mouse.
* Slightly sped up tab switching by eliminating some redundant UI action state
updates.
* Channel tabs will no longer close when kicked, but rather grey out on the tab
bar and offer context menu actions to rejoin.
* Channel and query tabs will now grey out on the tab bar when disconnected and
no higher priority notification is present. Channel tabs will only ungrey if
and when the channel is successfully rejoined after reconnect; query tabs
ungrey immediately once reconnected.
* Display tooltips for truncated treelist items.
* Fixed forwarding keyboard events received by the treelist to Konsole widgets
and focus adjustment thereafter as well as generally after switching to
Konsole tabs by other means.
* Fixed treelist scrollbar not picking up on new palette when the KDE color
scheme changes.
* Fixed a bug that could cause a crash when the view treelist would receive
keypress events during application shutdown.
* [New since RC1] Fixed a corner case where a server status item could become a
child item of another server status item when dragging it below an special
application pane item such as DCC Status or Watched Nicks Online.
* [New since RC1] Fixed a crash when using the mouse wheel on the list within
~150ms of a drag and drop operation.
System Tray icon
* Remember and recreate minimized-to-tray state across sessions.
* Added option for hidden-to-tray startup.
* Reload tray icons when the icon theme changes at runtime.
* Added option to not blink the systray icon, but just light it up.
Channel Settings Dialog
* Added a search line to the ban list.
* Fixed sorting the ban list by time set.
* Made the ban list's "Time Set" column use KDE locale settings for the date
format.
* Fixed OK'ing/Cancel'ing/closing the Channel Settings Dialog not dealing with
open ban list in-line edits correctly.
* Reset topic editbox when the channel options dialog has been dismissed with
cancel.
* Fixed incorrect time display in the topic history list in the Channel Settings
dialog.
Server List Dialogs
* Moved the "Show at application startup" option for the Server List dialog to
the dialog itself.
* Auto-correct hostnames and passwords entered with preceding or trailing spaces
in the Server List dialog.
* Don't allow impossible ports to be set for servers.
* Sensible default focus in the server list dialog.
* Fixed unresponsive, defective Server List dialog window appearing at
application startup using the Beryl or Compiz compositing window managers.
Interface Misc
* Added a "Next Active Tab" keyboard shortcut to jump to the next active tab with
the highest priority notification.
* Added a Find Previous standard action.
* Have the "Insert Character" dialog pick up on text view font changes.
* Show correct number of colors in the color chooser dialog.
* Made "Alternate Background" colorchooser disable when unneeded.
* Fixed crash when changing the KDE color scheme while a non-chat tab is open.
* The encoding selection now allows returning to the used identity's default
encoding setting.
* Update actions on charset changes.
* Added Notifications Toggle and Encoding sub-menu to the window menu.
* Moved "Hide Nicklist" menu action from Edit to Settings.
* Fixed the "Automatically join channel on invite" setting not to show an
inquiring dialog anyway.
* Fixed saving the state of the invitation dialog option in the Warning Dialogs
preferences.
* Added a warning dialog for quitting with active DCC file transfers.
* Return focus to the text display widget after closing the search bar in a log
reader view.
* Made pressing Return or Enter in the Log File Viewer's size spinbox apply the
setting, just as pressing the Return button.
* Fixed a bug where the SSL padlock icon would be shown on a non-SSL connection
(and clicking would cause a crash).
* Empty topic labels will no longer show empty tooltips, but rather none at all.
* Added a sample 12-hour clock format string to the timestamp format combobox.
* Timestamp format list is no longer localized.
* Robustness improvements and less UI quirks around channel password handling.
* Improved general layout and consistency of tab, chat view, query and topic
context menus. Added some missing icons.
* Fixed some bugs of UI actions not being appropriately as their context
changes.
* Fixed enabled state of "Close All Open Queries" action not being updated
correctly when queries are closed by way of closing a status view tab.
* The window caption is now properly being reset when the last tab is closed.
* Made units in spinboxen in the identity and app preferences UI more
consistent.
* Minor fixes to accelerators and tabbing order in various dialogs.
Commands
* Support command aliases in network connect commands.
* Turned parameter-less '/away' into a toggle: Sets away state with default
message initially, and unsets away state if already away.
* Added an '/aunaway' command to complement '/aaway' (previously, there was only
'/aback').
* Added support for '/kill'.
* A '/join' command for an already-joined channel will now focus it.
* Added an '/encoding' command as an alias to '/charset'.
* '/charset' and '/encoding' now accept 'latin-1' as an alias for 'iso-8859-1'.
* Improved messages for the '/charset' and '/encoding' commands.
* Rewrote /me parsing to be less hackish and display usage info with an empty
parameter.
* '/msg <nick>' is no longer treated as equivalent to '/query <nick>'.
* '/msg <nick>' will now error out when lacking a message parameter.
* '/query <recipient> [message]' will now error out when recipient is a channel.
* Added a '/queuetuner' command to bring up the outbound traffic scheduler's
tuning/debug pane.
Notifications
* Seperated query messages and messages containing the user's nickname into two
distinct KNotify events.
* Made the tab notification color of private messages configurable independently
from normal messages.
* Don't highlight own nick on topic created by messages.
* Fixed disabling notifications for a tab not cancelling highlight sounds.
* Fixed a race condition where a highlight's autotext reply would outrun the
original line's tab notification.
* Fixed actions in queries and DCC chats producing message notification events
(rather than the correct private message ones).
* Changed the OSD screensaver check logic to work in KDE 4.
* [New since RC1] Fixed on screen display occassionally reverting to the default
position when using the settings dialog to change unrelated settings.
Connection handling
* Improved behavior with regard to reusing existing connections in connection
attempts that provide an initial channel to join, such as command line
arguments, the DCOP interface, the bookmark system or irc:// links).
Previously, the application would have inconsistently either reused an
existing or created a new connection.
* Better dialog messages in the interactive variant of the decision to either
reuse or create a new connection (from the Server List dialog and the Quick
Connect dialog).
* Improved and more consistent display of connection names (i.e. network or
server host name) throughout the application.
* Much improved irc:// URL support for connection intanciation, with support
added for IPv6 host names and many of the features proposed by the Mirashi
specification.
* Eliminated redundant irc:// URL parsing codepaths in favor of a single one.
* Added support for irc:// URLs to the chat views.
* Removed "konversationircprotocolhandler" shell script. The Konversation
executable now understands irc:// URLs directly.
* Initiating connections from command line arguments and options now works also
when the application is already running.
* Fixed a bug that would cause a connection initiated from command line options
not to get past the identity validation stage when the configuration file was
unitialized and empty.
* The server list dialog will now always be closed when starting Konversation
with command line arguments to initiate a connection, consistent with the
configuration-based auto-connect behavior.
* Providing a channel in the creation of a new connection (i.e. via command line
arguments, the DCOP interface, the Quick Connect dialog, the bookmark system
or irc:// links) now consistently pre-empts the stored auto-join channel list
if the target of the connection is a network or the hostname is found to be
part of a configured network. Previously, this would only work for Quick
Connect and the bookmark system (which caused the infamous Sabayon user flood
in #kde due to their "Get Support" desktop link connecting to Freenode, which
in an unconfigured Konversation has #kde in its auto-join list).
* Connections now have globally unique IDs.
* The DCOP interface now understands connection IDs in addition to host names.
* The scripting systems now uses globally unique connection IDs rather than
server host names to refer to connections, fixing a bug where scripted
responses were being handed to all connections sharing a hostname (which was
actually intentional in the absence of connection IDs, but undesirable for
users).
* Improved iteration behavior over a network's server list on connection losses.
* The "Reconnect" action now works also when Konversation doesn't consider the
connection to be in a disconnected state.
* Improved the server status view messages related to reconnection attempts.
* Consistently apply the "Reconnect delay" setting (previously confusingly named
"Reconnect timeout"), which wasn't done before.
* Fixed a bug that could cause the connection process to claim that a DNS lookup
was successful when it actually wasn't.
* Fixed opening bookmarks with spaces in the target address name (which may be a
network name, and networks may have spaces in their name).
* Properly update the state of the "Add/Remove to Watched Nicknames" nickname
context menu actions when the connection isn't to a config-backed network, in
which case there's no way to store and make use of those list entries.
* Fixed a crash when quitting the application with a resident connection that
disconnected due to an SSL error.
* Fixed crashes in the DCOP interface if no connection was present.
* Make the "Reconnect" action available even while ostensibly in the process of
connecting.
* Fix possible crash when closing all views and subsequently creating a new
connection.
* Fixed crash upon auto-connect at application startup.
* Improved the naming of preferences related to automatic reconnection attempts
to be less confusing.
* Made it possible to set the number of automatic reconnection attempts to
unlimited.
* Provided better default values to the preferences related to automatic
reconnection attempts.
* Fixed crash when opening a Konsole tab and Konsole was not installed.
* Fixed allowing the user to create an infinite loop of showing the SSL
connection details dialog upon being presented with the invalid certificate
multiple choice dialog at connection time by checking "Do not ask again" and
then clicking "Details".
Identities
* Made it possible to set a Quit message independently from the Part message.
* Saving a newly-created identity is no longer allowed without entering a real
name.
* Apply switching the identity in the identity dialog as opened from the network
dialog to the network's settings.
* Have the Edit/Delete/Up/Down buttons for the nickname list of an Identity
correctly change state according to the selection
Away system
* Added per-identity support for automatic away on a configurable amount of user
desktop inactivity and/or screensaver activation, along with support for
automatic return on activity.
* Fixed the "Global Away" toggle to make sense and update its state properly.
* Turned parameter-less '/away' into a toggle: Sets away state with default
message initially, and unsets away state if already away.
* Added an '/aunaway' command to complement '/aaway' (previously, there was only
'/aback').
* Broadly rewrote away management related code for improved robustness and less
duplication and hacks (e.g. no more abuse of multiServerCommand for global
away).
DCC
* Massive DCC refactoring and improved reliability.
* Passive DCC support (Reverse DCC RECV, SEND).
* Replaced the DCC Transfer Details dialog with a retractable transfer details
pane directly in the DCC Status tab.
* Added DCC transfer average speed reading to the DCC transfer details panel.
* The DCC Status tab now remembers its column widths across sessions.
* Fixed duplicated quotation marks around file names in DCC transfer status
messages.
* Fixed "Open File" DCC dialog remembering the last viewed location incorrectly.
* Added an "Open Folder" button to the DCC transfer details panel.
* Added check for whether the URL is well-formed before initiating a DCC send.
Fixes a bug of dragging a nickname link in the chat view onto the query chat
view drop target starting a DCC transfer that cannot succeed.
* Ported the DCC code away from relying on server group IDs to refer to
connections, made it use connection IDs instead. Fixes potential bugs with
multiple concurrent connections to the same network.
* Fixed queued DCC transfer items not picking up on download destination
directory changes.
* Fixed bug leading to crash upon initiating DCC Chat when "Focus new tabs" was
enabled.
* [New since RC1] New transfer items added to the DCC panel's transfer list are no
longer automatically selected, meaning work on other items in the list occuring
at the same time no longer gets interrupted.
* [New since RC1] The "Filename:" line in the DCC panel's detailed info pane is
now using text squeezing to avoid an increase in minimum window width with long
file names.
* [New since RC1] Failed receives now longer show 833TB/s as their transfer
speed.
Blowfish support
* Fixed FiSH-style +p prefix to send clear text to channel despite an encryption
key being set.
* Text encoding is now being applied to the cleartext, rather than the
ciphertext. This fixes using characters outside the ASCII range with blowfish
encryption.
* Fixed CTCP (and thus DCC) requests to nicknames for whom an encryption key is
set.
* Added support for encrypted topics.
* If an encryption key is set, a lock icon will now be shown next to the input
box.
* Added a '/showkey <channel|query>' command to show the encryption key for the
target in a popup dialog.
Auto-replace
* Improved auto-replace behavior with multiple matches in one line (fixes
multiple Wikipedia links).
* Fixed bug that could cause auto-replace to replace the wrong group of the
matching string.
* Auto-replace is now case-sensitive in regular expression mode.
* Added regular expression editor button to auto-replace preferences.
* Fixed conditional enabling of the RegExpEditor button in the auto-replace
preferences page.
Ignore
* Fixed being asked twice whether to close a query upon ignoring the opponent.
* Fixed crash when opting to close a query upon chosing to ignore the opponent
from the context menu of his nickname.
Watched Nicknames
* Improved robustness of the Watched Nicknames Online system.
* The "Offline" branches in the "Watched Nicks Online" list will now be omitted
when there are no offline nicks for the respective network.
* Fixed display of WHOIS spam prompted by the Watch List's WHOIS activity.
* Connections to non-config-backed targets no longer show in Watched Nicks
Online.
* [New since RC1] Actually honor the preference to enable/disable the Watched
Nicknames Online system, and apply it at runtime.
* [New since RC1] Make sure the periodic Watched Nicknames Online check actually
starts running within the same session after adding the first nickname to the
list.
* [New since RC1] Fixed a crash on quit with the Watched Nicks Online tab open and
there being an open connection to a network that nicks are being watched for.
Channel List
* IRC markup is now removed from content in the Channel List view.
* Speed improvements in Channel List views.
* Fixed keyboard accelerator collisions in Channel List views.
* Allow higher values than 99 in the min/max users filter spin boxes in Channel
List views.
Under the Hood / Protocol
* Rewrote the outbound queue scheduling system to be smart enough to reorder
outbound traffic to reduce interactive latency while aggressively throttling
the rate to prevent flooding. Use '/queuetuner' to tweak.
* Rearranged when and how auto-who is triggered upon channel join a bit, to
avoid excessive flooding on multiple concurrent joins in some cases.
* Auto-Who reliability improvements.
* Fixed auto-join with very many channels (the auto-join command would exceed
the maximum buffer length; it is now split into multiple commands as needed).
* Fixed bugs around rejoining channels after reconnects related to the cause of
the disconnect, channel passwords and picking the actual list of joined
channels over the network's auto-join list.
* Improved behavioral consistency in situations where the auto-join list is
preempted by a transitory auto-join channel (bookmarks, etc.).
* Fixed bug that caused the topic state not to be cleared properly prior to
rejoining channels during reconnects.
* Fixed onotice payload being cut off after the first word.
* Changed RPL_WHOISOPERATOR handling to internationalize the common case ("is an
IRC Operator") and otherwise passthrough the string sent by the server.
* Fixed parsing of alternate invite format on Asuka ircds (QuakeNet).
* Added support for PRIVMSG from the server.
* Support RPL_UMODEIS.
* Announce 'k' channel mode (i.e. channel key) changes in non-raw mode as well.
* The command part of CTCP requests is now always converted to uppercase before
sending, as some clients don't like lower- or mixed-case commands as the user
may have entered them.
* Display mode for your nick and channels you're not in.
* Fixed per-channel encoding settings for the channels of a network being lost
when the network is renamed.
* Fixed crash when receiving actions for channels the client is not attending.
* Made newline handling in the DCOP interface more robust, fixing a potential
security problem (CVE-2007-4400).
* A few speed optimizations and memory leak fixes.
* [New since RC1] Fixed a crash on quit during KDE logout or when quitting by
DCOP.
Included scripts
* Support for KMPlayer in the 'media' script (based on the window caption, as
KMPlayer has no proper appropriate DCOP interface).
* Added KPlayer support to the 'media' script (also caption-based).
* Added support for Audacious to the 'media' script.
* Fixed problems in disk space calculation in the 'sysinfo' script caused by
wrapped df(1) output.
* Added KDE 4 support to the 'sysinfo' script.
* Removed some bashisms from the 'sysinfo' script.
* Rewrote 'weather' script for increased reliability in error handling and
better readability.
* Removed broken 'qurl' script in favor of new 'tinyurl' one.
* Fixed the 'fortune' script not working properly when variable expansion is
turned off in the preferences.
* [New since RC1] Fixed a bug in the 'media' script that caused it to break when
querying Audacious with audtool not being available.
Packaging
* [New since RC1] Standards compliancy fixes in the application .desktop file and
the nicklist icon theme .desktop files.
Build
* Fixed build with --enable-final.
-------------------------------------------------------------------------------
Changes from 1.0 to 1.0.1
We are pleased to announce the immediate availability of Konversation 1.0.1,
a maintenance release featuring notable improvements for users of right-to-
left languages (including new Arabic and Hebrew translations), further re-
finement of the user interface and application functionality, and fixes for
minor defects found in the previous release.
* A bug that caused left-to-right text contained in lines determined to be
right-to-left text to appear reversed has been fixed.
* Whether a line is treated as right-to-left vs. left-to-right text is now
determined by the amount of each type of character in the line, improving
the user experience in chats involving bi-directional text considerably.
* The "Edit Network" dialog has been refined for clarity and ease of use.
* A warning dialog to prevent accidentally quitting Konversation has been
added.
* The Auto Replace list can now be sorted.
* The '/media' script command now sports improved player recognition, enhan-
ced and easier configurability, the ability to distinguish between audio
and video media as well as newly added support for kdetv. New '/audio' and
'/video' command aliases have been added to expose these new abilities.
* The lower boundary of the default DCC port range has been raised from 1025
to 1026 to avoid conflicts with the commonly blocked Windows RPC port 1025.
* Dismissing an OSD notification by clicking on it will now also cancel the
systray notification flash.
* A new configuration file option [OSD]OSDCheckDesktopLock has been added,
allowing to manually disable the screensaver check in non-KDE environments
that do not support it, causing the OSD not to be displayed.
* A bug that could lead to the "Switch to" sub-menu in the context menus of
tabs not to be updated properly upon switching tabs has been fixed.
* A bug that caused the 'irc setBack' DCOP call not to function has been
fixed.
* A bug that caused ampersands in the names of tabs not to be displayed and
an immediately following character to be used as keyboard accelerator has
been fixed.
* A bug that caused ignoring nicknames with '[' or ']' characters in them to
fail has been fixed.
* Command aliases containing regular expression syntax can no longer cause
built-in commands not to function.
* A bug that caused the Konversation irc:// protocol handler not to function
has been fixed. Its compatibility with systems that do not use the GNU bash
shell as default shell has been improved.
* A notable number of code quality improvements suggested by KDEs automated
quality control service EBN have been implemented.
-------------------------------------------------------------------------------
Changes from 0.19 to 1.0
We are extremely pleased to announce the immediate availability of Konversation
1.0, a significant milestone in the lifetime of the Konversation project. This
release includes major new functionality as well as a large amount of
improvements to existing functionality, with an emphasis on user interface
polish and overall reliability. Notable new features include a vertical treelist
of tabs as an alternative to the traditional tab bar, auto-replacement of words
in incoming and outgoing messages, an improved Channel Settings dialog now
featuring a ban list, an optional expanding input box and many improvements to
both DCC file transfers and DCC chats. Enjoy!
User Interface
* It is now possible to place the tabs on the left side of the application
window.
This has been implemented as a treelist of tabs. The treelist supports all of
the cosmetic and interactive properties of the original horizontal tab bar,
including colored notifications, LED icons, (hover) close buttons with delayed
activation, reordering, drag'n'drop and mouse wheel cruising. And a few tricks
of its own.
* Connection status tabs now feature specific context menu entries to disconnect
and reconnect, as well as to join a channel on that connection.
* The automatic resizing of tabs in the tab bar first implemented in version
0.19 is now optional.
* The grouping behavior of Channel List and Raw Log tabs in the tab bar has been
improved.
* Disabling notification for a tab will now unset the active notification.
* The enabled/disabled state of the notifications for connection status tabs
will
now be remembered across sessions for configured networks.
* The speed of switching tabs in quick succession with the auto-spellchecking
preference enabled has been improved.
* Using custom fonts in the user interface is now optional. The font used by the
tab bar is now configurable.
* Events in the connection status tabs are now logged into separate logfiles.
* The Channel Settings dialog now includes a Ban List tab that allows viewing,
adding and removing bans in a channel. The dialog can now be opened from the
menu bar and chat window context menu in addition to the button in the topic
area.
* Mode and topic handling in the Channel Settings dialog and the channel mode
buttons have been overhauled to make them more robust and reliable.
* The number of Quick Buttons to show below the nickname list in channel tabs is
now configurable. Additional buttons may be added or existing buttons removed.
* Konversation now supports auto-replacing words in incoming and outgoing
messages. Regular expressions are supported. The auto-replace configuration
can
be found in the preferences dialog. The static Wiki link feature found in
older
versions has been retired in favor of an auto-replace rule.
* The search bar has been redesigned to provide a better user experience.
* The "Find Next" action will now open the search bar when there is no active
search, matching the behavior of Konqueror and other KDE applications.
* The sorting of the nick completion list has been improved to put the last
active user for a given completion prefix at the beginning of the list.
* The tab completion of the user's own nickname has been reenabled.
* The nick completion feature has been significantly cleaned up and made more
reliable. A bug that could lead to an application crash during nick completion
has been fixed.
* An option to expand the vertical size of the input box automatically when the
text entered grows beyond the length of a single line has been added.
* The behavior of the input box on pasting text including leading or trailing
newline characters has been improved never to cause lines being sent without
user acknowledgement.
* The input box of connection status, channel and query tabs will now be
disabled
and the nickname list of channel tabs cleared when the respective server
connection is closed.
* Konversation can now optionally insert a remember line whenever a tab is
hidden,
either by switching to a different tab or minimizing the window.
* Multiple consecutive remember lines will no longer be inserted.
* Remember lines can now also be inserted into the chat windows of connection
status and DCC Chat tabs.
* The Colored Nicknames feature will now always assign the same color to the
same
nickname.
* The number of backlog lines to show in the chat window is now configurable.
* The recognition of URLs in the chat window has been improved to cope better
with URLs containing or being surrounded by parenthesis and to exclude
trailing
dots and commas.
* Channel links following mode characters or surrounded by interpunctuation are
now properly recognized in the chat window.
* The context menus for URLs and channel links in the topic area now match the
context menus in the chat window.
* Multiple ignore or unignore actions ordered at the same time will no longer be
shown on separate lines in the chat window.
* The nickname context menus in the chat window, topic are and the nickname list
will now show "Ignore", "Unignore" and "Add to Watched Nicknames" entries as
applicable.
* A bug that could lead to the chat window nickname context menu actions ceasing
to function after the targeted user left the channel has been fixed.
* The Server List dialog now allows connecting to a specific server in a network
even when a connection to that network has been previously established. If
that
connection is active, a dialog box will verify whether to disconnect from the
current server and connect to the chosen one instead, otherwise the connection
will simply be reestablished using the newly chosen server.
* The Quick Connect feature will now properly warn when the identity to be used
in the connection attempt is not set up properly.
* The appearance and behavior of the warning about an incorrectly set-up
identity
have been improved. A prior connection attempt will now be automatically
resumed
after the identity settings have been corrected.
* Many of the pages in the Konversation preferences dialog have been redesigned
and rewritten for improved consistency, reliability and clarity. The general
layout of the dialog has been improved as well.
* The naming of certain actions in the Configure Shortcuts dialog has been
improved to make them easier to recognize outside of their normal context in
the application interface.
* Numerous improvements to keyboard navigation have been made.
* The nickname list now longer allows drag'n'drop of channel or user links from
the chat window onto list entries, as a DCC transfer of those data sources
cannot succeed.
* The preference to show or hide the real names of users in the nickname list
will
now be applied immediately.
* The columns of the nickname list will no longer resize erratically when the
preferences to show or hide real names and hostmasks are changed at runtime.
* A bug that could lead to nicknames being sent as messages when double-clicking
a selection of multiple nicknames in the nickname list has been fixed.
* The placement of actions in the application menus has been improved.
* The shown/hidden state of the application menubar will now be remembered
across
sessions. When the menubar is hidden, a menu action to show it again will now
be
added to the chat window context menu.
* The "Close All Open Queries" menu action is now be disabled properly when
there
are no open queries.
* A bug that could lead to the "Close All Open Queries" menu action failing to
properly close all open queries has been fixed.
* A bug that could lead to an application crash when closing the tab after
choosing
to ignore someone in a query has been fixed.
* The "Hide Nicklist" menu action will now be disabled properly when the tab
shown
does not have a nickname list has been fixed.
* The actions in the "Insert" menu will now be disabled properly when the
current
tab does not support them.
* The default double-click action in the "Watched Nicks Online" tab is now to
open
a query to the respective contact.
* The sorting in the Watched Nicks Online tab has been improved: Offline users
are
now always sorted at the bottom.
* Several bugs in the "Watched Nicknames Online" tab that could lead to
application
crashes have been fixed.
* Several errors in the chat window status messages produced by the Watched
Nicks
Online system have been corrected.
* A bug that could lead the the columns in the "Watched Nicks Online" list
resizing
erratically has been fixed.
* A bug that could lead to the status bar not being cleared properly when the
last
tab was closed or the application window lost focus after a link was
launched from the chat window has been fixed.
* The display of temporary and static info texts in the status bar has been
improved not to interfere with each other and provide more useful information.
Also, the status bar lag info section is now updated more consistently to
avoid
jumping around of the other status bar sections.
* A bug that could lead to a wrong nickname count being shown in the status bar
of channel tabs has been fixed.
* Repeated triggering of the "Open URL Catcher" menu action will now properly
show and hide the URL Catcher tab.
* The warning about pasting text with multiple lines can now be properly
disabled
and reenabled from the Warning Dialogs preferences page.
* A bug that could lead to IRC bookmarks showing up as actions in the Configure
Shortcuts dialog has been fixed.
* A bug that could lead to changes of the global KDE icon set not being applied
to the tab bar close buttons immediately has been fixed.
* A bug that caused the application window to change its horizontal size after
opening a Query to a user with a very long hostmask has been fixed. The DCC
Chat and query tabs now use the same heading style as channel tabs.
* A bug that could lead to the topic and nickname list areas not keeping their
size properly across tab switches has been fixed.
* A bug that could lead to certain types of KNotify event notifications not
being executed properly when the system tray icon was enabled has been fixed.
* A bug that could lead to ampersands in network names being shown as
underscores in the menu under certain circumstances has been fixed.
* A bug that could lead to an application crash when trying to access
non-existing tabs via the Alt+number keyboard shortcuts has been fixed.
* A bug that could lead to the toolbar being hidden after it was edited has been
fixed.
* A bug that could lead to the chat window context menu not being cancelled
properly when clicking outside of it has been fixed.
* A bug that could lead to heavy disk seeking when the splitters separating
the topic area and the nickname list from the chat window were moved has been
fixed.
* The option to only show the application in the system tray at all times has
been retired in favor of the standard KDE mechanic of minimizing into the
system tray.
Commands
* The 'Now Playing' script invoked via the /media command alias now features
support for XMMS and KSCD as well as improved support for untagged media files
playing in Amarok. Support for non-ASCII encodings in file names and meta tags
has been improved as well.
* New "/hop" and "/dehop" commands to grant or remove half-op status from a user
have been added.
* A new "/devoice" command has been added.
* A new "/kickban" command to ban and immediately kick a user has been added. It
supports the same parameters as the "/ban" command plus an additional "kickban
reason" parameter.
* Commands to grant or remove status for users will now be applied to the user's
own nickname when no nickname parameter is given.
* The "/unignore" command now supports the same simple nickname-only format as
the "/ignore" command.
* If given no parameter, the "/away" command will now set the away state with
the default away message. The "/back" and "/unaway" commands can be used to
unset the away state.
* You may now use "%nick" as a placeholder for your own nickname in the auto-
connect commands for a network.
* A bug that could lead to the auto-connect commands for a network not being
executed correctly has been fixed.
DCC
* DCC file transfers now support file names containing spaces on send, receive
and resume. The automatic replacement of spaces with underscores in file names
can now be optionally disabled in the DCC preferences.
* File names are no longer being needlessly lower-cased during DCC transfers.
* The DCC file transfer and DCC Chat info messages shown in the chat window have
been significantly improved to provide more useful information while being
less
excessively verbose.
* DCC Chats will now be logged properly.
* It is now possible to select multiple files in the DCC Status tab.
* The default size of the buffer used in DCC transfers has been increased to
8192kb for improved DCC performance.
* The DCC Status tab will no longer show a speed of '?' for completed, failed or
aborted transfers.
* Bugs that could lead to the IP used for DCC transfers not being retrieved from
the server correctly upon reconnect or in general on certain servers have been
fixed.
* A bug that could lead to the progress bar of a transfer in the DCC Status tab
being rendered at a wrong position has been fixed.
* A bug that could lead to Konversation's CPU usage spiking to 100% after a DCC
Chat was closed from the remote side has been fixed.
* Several bugs that could lead to application crashes in DCC Chat tabs after the
server connection from which the DCC Chat originated was closed have been
fixed.
Technology
* Konversation will now properly split up very long lines into multiple messages
by calculating the length of the message preamble and the number of bytes of
the
text payload. Encodings that use multiple or variable numbers of bytes per
character are accounted for.
* The Disconnect and Reconnect menu actions and the respective input box
commands
have been rewritten for increased reliability. Their state will now be updated
properly, and they will quit the IRC server in the correct manner.
* A previous away state will now be recreated upon reconnection to a server.
* The Quick Connect feature will now no longer join the auto-join channels of
the configured network that the quick connect server was recognized as being a
part of.
* The "Konversation" and "KonvDCOPIdentity" DCOP objects have been renamed to
"irc" and "identity", respectively. Several bugs in the DCOP API have been
fixed, and deprecated interfaces removed.
* Processing of the user lists of newly joined channels has been rewritten to
fix several bugs, including improved compatibility with the Bip IRC proxy and
other servers.
* The lag calculation and timeout handling code has been rewritten for improved
reliability and performance.
* Recognition of the half-op user status has been improved.
* The detection of text being typed into the input box to prevent focussing new
tabs at inconvenient times has been improved to work correctly with non-ASCII
characters.
* The handling of channel user limits in the Channel Settings dialog is now more
reliable.
* Support for mode flags encountered on UnrealIRCD servers has been improved.
* Support for RPL_DATASTR on UnrealIRCD servers has been improved.
* A bug that could lead to the mode flags displayed for users not being updated
properly after they were kicked from a channel has been fixed.
* A bug that could lead to iterating over a configured network's servers failing
after a connection failure has been fixed.
* A bug that could lead to Konversation connecting to the wrong server in a
network when choosing to connect to a specific server from the Server List
dialog
has been fixed.
* A dialog will now ask the user for an additional nickname when all nicknames
configured in the identity where tried unsuccessfully during a connection
attempt. This replaces the previous behavior of repeatedly appending
underscores
to the last nickname, which eventually ran into the nickname length limit on
the
server.
* A bug that could lead to unnecessary nick changes immediately after connecting
to a server has been fixed.
* A bug that could lead to Konversation trying to auto-identify multiple times
upon connect on certain servers has been fixed.
* A bug that could lead to Konversation not picking up on users leaving a
channel without providing a part or quit message on UnrealIRCD servers has
been
fixed.
* Changes to the list of auto-join channels for a network will now be applied
immediately.
* The auto-reconnect preference will now be properly applied at runtime.
* Konversation will no longer enable IDENTIFY-MSG mode on servers that support
it,
but continues to be able to process messages with IDENTIFY-MSG prefixes in
case
an involved IRC proxy chose to enable IDENTIFY-MSG mode.
* The broken default for the Custom Web Browser preference has been fixed.
* Konversation will no longer allow Konsole tabs to be opened in KDE
environments in which the use of terminals is prohibited by the KIOSK
framework.
* A bug that could lead to an application crash when a Konsole tab was closed
from the Konsole component's context menu has been fixed.
* A bug that could lead to an application crash when a channel was joined while
the application window was hidden has been fixed.
-------------------------------------------------------------------------------
Changes from 0.18 to 0.19
We are extremely pleased to announce the immediate release of Konversation 0.19.
The focus
of this release is on extending and improving upon established functionality.
Most notable
in this regard are significantly improved management of IRC networks and servers
all across
the application, a redesigned tab bar and better support for common IRC
commands. A long
list of further additions and improvements has us confident of this being the
best version
of Konversation yet. Enjoy!
User Interface
* The Server List dialog has been rewritten to allow direct manipulation of a
network's
servers and features more intelligent sorting behavior. Reordering networks
via drag
and drop is now possible. A behavioral audit of all actions in the dialog
resulted in
numerous improvements.
* A redesigned tab bar sports highly configurable text- and LED icon-based
notifications
as well as more intelligent scaling behavior under space-critical conditions.
* Tabs are now intelligently grouped around their respective connection status
tab.
* Status tab labels now display the user-configured network name where
appropriate.
* The Find Text dialog has been replaced by a search bar that no longer
interrupts your
workflow.
* Channel links in the chat area now feature a context menu for quick access to
common
actions.
* Usage of the status bar has been extended to show context-relevant information
as the
cursor passes over various interface elements. The lag information segment is
now
only shown where appropriate.
* A channel's topic can now be cleared by setting an empty text in the Channel
Options
dialog.
* The Channel Options dialog has been redesigned to allow editing the current
topic
while browsing a channel's topic history.
* The Watched Nicknames interface has been fully integrated with network
management.
* Pressing the Arrow Down key in the input line now preserves any input entered
by
adding it to the history.
* Commands may now be sent as regular messages by typing Ctrl+Enter.
* The multi-line paste editor window now highlights whitespace characters and
prepends
the existing content of the input line.
* The Colored Nicknames feature has been improved to better handle nickname
changes and
immediately apply any changes to the color palette.
* Some previously not configurable notification events have been made
configurable.
* Users leaving a server will now be announced in any query you have open with
them.
* Query tab labels will now update when a user you have a query open with
changes
his/her name.
* The DCC file transfer dialogs have seen a number of cosmetic improvements.
Among other
things, in the event of a file being renamed on save, the local file name is
now shown
across the application.
* Various status and error messages have been rewritten for improved consistency
and
clarity.
* The KDE standard text font will now be correctly set as initial default chat
font.
* It is now possible to skip displaying a server's MOTD on connect.
* If the application is set to display a server's MOTD in a fixed-width font and
the
previously configured default chat font is already a fixed-width font, the
chat font
will now be used rather than the global KDE default fixed-width font.
* The state of the automatic spell checking functionality is now remembered
across
sessions and set for all tabs.
* Networks no longer lose their channel history when their settings are changed.
* The Server List dialog will no longer close when a connection attempt fails
due to
the identity not being set up correctly.
* After changing your nickname using the optional drop-down menu to the left of
the
input line, focus will now be returned to the input line.
* The configuration dialog has been rewritten to correctly update the button
state of
its primary actions and improve consistency with the KDE style guide.
* The vertical and horizontal splitters in channel tabs now behave better when
the
application window is resized and correctly retain their positions across
sessions.
* The OSD preview in the OSD settings page is now always shown correctly.
* The OSD will no longer be shown when the desktop is locked.
* A bug that prevented copying text from the chat area under certain
circumstances has
been fixed.
* Keyboard search in the channel nickname list has been fixed.
* A number of issues affecting nickname context menus in the chat area have been
fixed.
* A bug leading to a wrong operator count in the status bar has been fixed.
* It is no longer possible to add nameless networks or hostless servers in the
respon-
sible management dialogs.
* Bugs that led to parts of the interface not reacting to KDE color scheme
changes have
been fixed.
* The status bar now correctly reacts to KDE font size changes.
* A bug that led to the application window resizing on overly long status bar
contents
has been fixed.
* A bug that led to multiple remember lines being inserted into the frontmost
tab when
away mode was activated has been fixed.
* A bug that led to wrong link addresses being opened from the chat area has
been fixed.
* Bugs that led to wrong URLs being produced by dragging a link from the chat
area to
the input line have been fixed.
* Channel names are now better recognized as such by the chat area.
Bookmarking
* Bookmark titles now default to the channel name.
* Bookmarks now store the network name rather than the server address where
available.
* Bookmarks now support IPv6 addresses.
Commands
* The '/server' command now recognizes a greater variety of address notations
including
network names.
* The '/names' command now always succeeds in returning the user list of a
channel.
* The '/topic' command now always succeeds in returning the topic of a channel.
* A '/dns' command has been added that facilitates resolving the host name of a
user on
the server as well as generic host names. Reverse resolve is supported on KDE
3.5.1+.
* An '/unignore' command has been added.
* A '/disconnect' command has been added.
* A '/reconnect' command has been added that disconnects and then reconnects the
respec-
tive server.
* A '/setkey' command has been added to set the Blowfish encryption/decryption
key for
the respective context.
* The '/list' command now correctly opens the Channel List tab.
* A bug in parsing the arguments of the '/join' command has been fixed.
* Usage information and error reporting for various commands has been rewritten
for
improved consistency and clarity.
* A bug that led to a 'clear' command being sent to the server when using the
'/clear'
command to clear the contents of a query tab has been fixed.
Miscellaneous
* The 'media' script has been rewritten and now features improved compatibility
with
common character sets, greatly enhanced support for the Kaffeine media player
and
newly added support for the Yammi media player.
* The 'sysinfo' script has been rewritten to produce more concise output and
better
handle a variety of storage scenarios.
* The convenience feature expanding [[term]] into a Wikipedia link is now
localizable
and generates a link that performs an intelligent lookup for the term in the
Wiki-
pedia rather than assume a correct direct link.
Technology
* Konversation now depends on KDE 3.4+.
* The preferences storage system has been rewritten to facilitate easier
maintenance
and faster development in future release cycles.
* Localized support for a long list of IRC protocol primitives has been added.
* The application will now correctly iterate over a network's servers on
successive
failed connection attempts.
* When the '/server' command or the Quick Connect dialog is used to connect to a
server that has previously been added to a network in the Server List dialog,
it
will be recognized as being part of the network and the respective identity
settings will be applied.
* The automated reply to a highlight event can now reference the groups of the
matched
pattern by the identifiers %1-%9 and the entire match by the identifier %0.
* The CABAP IDENTIFY-MSG technology is now supported.
* Compatibility with the Unreal IRC server has been improved.
* Initial support for Blowfish encryption (compatible with mIRCryption and FiSH)
has
been added. Note that Diffie-Hellman key exchange (DHX) is not yet supported.
* The Watched Nicknames reporting has been made more reliable.
* Socket handling in the DCC file transfer feature has been improved.
* Alpha-blending of icons in the channel nickname list has been fixed.
* Support for the iso-2022-jp encoding has been enhanced.
* The custom web browser feature will now automatically append the URL as a
parameter
to the specified command when the %u identifier is missing.
* Channel modes are now correctly cleared and updated in the internal
representation
on rejoin.
* A bug that led to an infinite loop during a connection attempt when all
nicknames
configured in the identity were in use has been fixed.
* A bug that could lead to a crash when opening the log file for a closed
connection has
been fixed.
-------------------------------------------------------------------------------
Changes from 0.17 to 0.18
- All nicks were blue when colored nicks are disabled with some setups
- /cycle now works as expected
- /gauge script was not working correctly when given a bigger than 100 argument
- /mail script has been added
- Button to invoke Regular Expression Editor (if installed) in Settings ->
Highlight.
- Complete command line argument system for connection
- An option to disable clickable nicks . Add ClickableNicks=false to
konversationrc to disable it.
- Fixed a big memory leak in message processing
- Nicklist slider now correctly resizes in all channels when its resized and
correctly restores on startup
- [[foo]] is now a link to http://en.wikipedia.org/wiki/foo . We will expand
this to local wikipedia's in a later release [Update: Now fixed in 0.19]
Changes from 0.16 to 0.17
- Add an option to hide realnames in nicklist
- Show away users as disabled ala Xchat
- Remove sort by away status
- Fix whois replies for normal users on safe channels ( IRCNet alike )
- Fix whois replies from ircd-hybrid ( Efnet alike )
- Better handling of quiet bans ( especially Freenode )
- KDE color scheme is now honered in topic widget
- Enable clickable nicks even if colored nicks are off
- Per identity pre-shell command support with a GUI
- Bookmarking support
- Detect Japanese encoding correctly while trying to auto-detect Unicode
Changes from 0.15 to 0.16
- Dropping URLs onto nick on nicklist or onto query initiates DCC send
- You can now do SSL connections from Quick Connect Dialog
- Nicklist Icon Themes
- New topic widget
- Added a channel dialog
- Made the nickname box optional
- Fix DCC resume when its set to auto-accept
- Calculate DCC CPS more accurately
- Colored nicks support
- Added dcop functions to set away and added alt+a shortcut to toggle away
- Clicking nicks in channel text will now open a query and similarly,
clicking #foo will now join channel #foo
- Nicks in channel view now have a context menu as in nicklistview
- Tab at begining of line inserts last completed nick
- A media script added to replace amarok,juk,noatun,kaffeine scripts.
Use /media instead of using /amarok,/juk etc.
- Links can now be dragged & dropped from channels
- Midde clicking urls now opens them in new tab in konqueror ( if konqueror is
used for links )
- Improved unicode detection
- Fix unicode detection for strings containing color markup
- /omsg,/onotice support
- Added an option to use an IPv4 interface for IPv6 dcc sends
- A new /google script added to search Google using Google SOAP api
- Redesigned settings page
- A new application icon
- Lots of optimizations all around
Changes from 0.14 to 0.15
- Ported socket code to KNetwork. Weird connection problems should be gone now
- Get default username/ident information from system
- Support for bouncer prefixes in nick completion
- Dcc port range support
- Scripts now works with /script or /exec script
- Improved bidi support.
- Cleaned up settings dialog
- Added an option how to get own IP for DCC send/chat
- "Open Watched Nicks Online panel on startup" option
- Support encoding settings per channel
- SSL Support
- KIO-fied local I/O on DCC send/receive
- OSD Positioning Support
- New network based server settings
- Added an option to stay in systray all the time
- Full irc:/ url support (channel name & password now supported in url)
- /charset support
- auto /WHO support
- display away status of nicks in nick list
Changes from 0.13 to 0.14
- Added irc "pseudo" command /prefs for changing settings without settings
dialog.
- Measure away time and make it available via placeholder (%t)
- (Very much) Improved OSD.
- New application icons by luciash d' being <luci@sh.ground.cz>. Thanks!
- Added /server command for connecting to a server.
- After the connection is lost and the old nickname is still in use,
the nickbutton in the channelwindows is updated to the new nick.
- Now you can read utf8 encoded messages even if your locale is not unicode
- "Do not show this dialog again" preferences now works correctly
- Added an "Insert Remember Line" feature.
The user can mark the position in the channel where he stopped
reading(because he is away for a short time).
When he comes back, he can scroll back to this mark and read
what he missed.
- Added the possibility to execute commands on server connection(for
authentication and such things). Can be configured in the "Edit Server"
dialog.
- Added further timestamps for am/pm (BR 79612)
- Added QuickConnect dialog by Michael Goettsche. (Thanks once again)
- Properly receive a logout/shutdown request and terminate konversation,
instead of minimizing to the systray.
- Make OSD switchable on/off via DCOP. Thanks to Michael Goettsche! (BR 75870)
- Dates can now be shown, next to the timestamp. Patch by Michael Goettsche
(BR 82785) (thanks!)
- Added DCC auto-resume feature by Michael Goettsche (BR 81740) (thanks!)
- Added systray notification
- Added shell like nick completion mode (aka uga mode)
- Implemented a cleaner way of handling tab shortcuts
- Implemented DCC Chat
- Hilight mailto: links
- Topic line can now be hidden
- Added an away nickname
- Added /aaway, /ame and /amsg
- Added "Open URL" context menu to channel list entries
- Implemented slower / faster blinking of tabs for more / less important events
- Less important events like Join, Part and Nickchanges can now be hidden
- Custom CTCP Version Reply Support
- Added a shortcut to close all open queries
- Added a patch by Thomas Nagy to cycle tabs with mouse scroll wheel (thanks!)
- Added logfile reader
- Added patch by Gary Cramblitt to enhance DCC panel (thanks!)
- Added patch by Gary Cramblitt to select custom web browser command (thanks!)
- When the server goes offline, now all associated tabs get crossed out
- Added a multi line pasting editor
- Nicks Online is now a tabbed panel, rather than separate window.
- Added sound support to the highlight list
- Added regular expression support to the highlight list^
- Follow the style guide when the tray icon is enabled by minimizing to tray
when
the close button is clicked.
- Auto text feature on highlight events
- DCC resume offers to rename a transfer now
- Added patch by Ruud Nabben to enable hiding of IRC colors (thanks!)
- Various small fixes and additions
Changes from 0.12 to 0.13
- Added an option to hide hostmasks in channel nick lists
- Autojoin on invite with user interaction implemented
- Added URL catcher interface
- Added user interface for "don't show again" dialogs
- Added slovenian translation by Barko (thanks!)
- Added korean translation by Hye-Shik Chang (thanks!)
- Added option to place tabs on top
- Color configuration is now in preferences dialog
- Quick buttons configuration is now in preferences dialog
- Notify list is now in preferences dialog
- Option for a background image added
- Added /quote command for raw server messages
- Added Copy URL into clipboard for URL catcher
- Added option for reconnect on too long lag
- Added "Server list" menu entry to "File" menu
- Applied a patch by Peter Simonsson (thanks!)
- Patch added Color picker, IRC colors and KNotify events
- Added support for command aliases
- Encodings are now on per-identity basis
- Added indicator to show own away state
- Added system tray icon patch by Frauke Oster (thanks!)
- Channel list update is now more CPU friendly
- Tell the user why the channel list could not be opened
- Channel list now sorts correctly when number column is clicked
- Applied a patch by Christian Muehlhaeuser to enable bigger mode changes
(thanks)
- Applied a patch by Christian Muehlhaeuser to right-align close widgets
(thanks)
- Info button on dcc panel now works
- Added /unban command
- Applied a patch by Christian Muehlhaeuser for OSD functions (thanks)
- Applied a patch by Sascha Cunz for extended user modes beyond @ and + (thanks)
- Applied a patch by Steve Wollkind to close visible tab via shortcut (thanks)
Changes from 0.11 to 0.12
- Now handles multi server mode in one single window
- Fixed the wrong Ops counter
- Added /notify command and respective dcop calls
- Added support for /oper command
- Implemented /ban command and menu items
- Added shortcut (F3) for search dialog
- History does not get cleared on cursor up/down anymore
- Added context menu to copy URLs immediately
- Added paragraph spacing
- Added hostmask column to nick list
- Implemented background hostmask scanning
- Recognises now who set the first topic
- Added nickname sorting options
- Sorting now has up/down arrows
- Added channel list panel
- Added russian translation by Stanislav Karchebny (thanks!)
- Applied some patches by Stanislav Karchebny
- Added PgUp/PgDown support to Channels, Queries and Status views
- Added rename button to identity page to overcome QComboBox limitations
- Tabs now blink in the last highlight color to indicate important text
- Tabs don't get to front anymore while the user is typing in an input line
- Added shortcut editor dialog
- Added konsole panel (thanks to Mickael Marchand)
Changes from 0.10 to 0.11
- Added a patch by Bart Verwilst to provide automatic service registration
(thanks!)
- Added "Hide Menu" function
- Improved server connection code to stop konversation freezes at startup
- Server lag calculation after reconnect fixed
- Implemented own async lookup class to throw out broken QDns
- Added prelimnary application icons
- Send File in dcc panel now works
- Added Send File context menu item in text views
- Added dialog for Resume / Overwrite DCC Get files
- Added large paste warning dialog
- Close Buttons on tabs are now an option
- Added context menu on tabs with close item
- Added ALT+1 - ALT+9 for switching tabs
- Applied a big patch by Alex Zepeda. Thanks!
- First working DCOP implementation
- Implemented a simple search dialog
- Added a raw log pane
Changes from 0.9 to 0.10
- Font encodings are now set via KCharsets
- Implemented different identities
- Added double click actions to nick list and notify list
- Added support for ASCII-BEL
- Added custom spacing and margin
- Added close buttons for the tabs
- Redesign of the color configuration dialog
- Switched to kapp->config() to properly remember dialog status
- Color code parsing now works with QRegExp
- CTCP-Ping now works
- Removed files that are no longer needed
- Updated German translation
Changes from 0.8 to 0.9
- Added strikeout support (untested yet)
- Added Swedish translation, done by Karolina Lindqvist (thanks!)
- Added optional timestamps to chat windows
- Quick Buttons and Channel Mode Buttons can now be hidden
- Added support for multi channel joins
- Added #include "sourcefile.moc" to all Q_OBJECTS to speed up compiles
- Added support for autoconnect to server
- Inserted a QSplitter between channel text and nick list
- Added support for background colors
- Reduced flickering on blinking tabs
- Added experimental support for foreign language characters
- Added ignore list functionality
- Added away / unaway messages
- DCC folder can now be selected vial GUI
- Applied a patch by Barak Bloch to fix foreign character set behaviour
(thanks!)
- Updated German translation
Changes from 0.7 to 0.8:
- DCCs can now be opened (started) using the 'open' button
- DCCs can now be aborted using the 'abort' button
- Added support for /users reply
- Added support for /invite and 341 reply
- Added support for 401 error reply
- Added /smsg for "silent messages"
- Text and Nicklist-Fonts can now be selected via GUI
- Changed server ping response again to make dalnet ircd happy
- Fixed nicklist sorting in channels
- Switched to kdevelop 2.1.4 to hopefully fix some compile problems
- Made Notices appear a bit different
- DCC recipient list now gets sorted
- Made text widget not scroll when scroll bar isn't completely down
- Parsed WHOIS messages into human readable form
- Pasting multiline text into input lines now behaves as expected
- Hilights now honor the sending nick, too (patch by Suran. Thanks!)
- You can now hilight all your own lines independently
- Fixed the problem in the appearance dialog with font names
- Added DCC error dialogs
- Quit/Nickchange/Kicks are now only reported in channels where the nick
actually is in
- Fixed bug with lockups on defective logfiles
- Added support for EUR currency symbol
- Added keyboard handling to navigate between pages
- Code cleanup in nick list
- Added first support for custom colors in nick list
- Added application dsescription for the 'About' dialog
- Major restructuring of the server status panel
|