summaryrefslogtreecommitdiff
path: root/miranda/docs/changelog.txt
blob: c1dfd0cba92bec6a47096f5d8b1701069712256b (plain)
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
                   Miranda Instant Messenger Change Log
                   ------------------------------------
                           www.miranda-im.org


* New in 0.10.72
Bugfixes:
 - Update SQLite library

 
* New in 0.10.71
Bugfixes:
 - Update SQLite library
 - Fix database compression corruption


* New in 0.10.70
Bugfixes:
 - Update SQLite library
 - Fix url opening issues
 

* New in 0.10.69
Bugfixes:
 - Fix hang on exit
 
 
* New in 0.10.68
Enhancements:
 - Improved database optimization on exit
Bugfixes:
 - Update SQLite library


* New in 0.10.67
Bugfixes:
 - Update zlib library to 1.2.11
 - Update SQLite library
 - Improve CPU usage 


* New in 0.10.66
Bugfixes: 
 - Update SQLite library
 

* New in 0.10.65
Bugfixes: 
 - Fix CPU usage in SQLite driver
 - Update SQLite library
 - Update copyrights


* New in 0.10.64
Bugfixes: 
 - Fix x64 installer
 - Fix installer typos
 - Update installer system (NSIS)
 
 
* New in 0.10.63
Bugfixes: 
 - Update SQLite library
 - Fixed crash

 
* New in 0.10.62
Bugfixes: 
 - Update SQLite library
 - Fixed excessive memory use issue when exiting using SQLite database
 

* New in 0.10.61
Enhancements: 
 - Installer improvements (remove legacy UI)

Bugfixes: 
 - Minor bug fixes


* New in 0.10.60
Bugfixes: 
 - Update SQLite library
 - Prevent expanding SQLite database file size
 - Fix bug reports service location
 - Minor UI bugfixes
 

* New in 0.10.59
Improvements:
 - SQLite driver performance improvements
 - Improve database manager display
 - Custom button UI performance improvements

Bugfixes: 
 - Fix quick launch shortcuts on Windows 10
 

* New in 0.10.58
Bugfixes: 
 - SQLite driver version mismatch
 - Safer event storing in SQLite driver
 - Installer updates
 
 
* New in 0.10.57
Bugfixes: 
 - Update SQLite library
 
 
* New in 0.10.56
Bugfixes: 
 - Update SQLite library
 
 
* New in 0.10.55
Bugfixes: 
 - NSIS system update
 - Generate proper unicode installer
 

* New in 0.10.54
Bugfixes: 
 - NSIS system bug fixes
 

* New in 0.10.53
Bugfixes: 
 - Update NSIS
 - Minor installer changes


* New in 0.10.52
Bugfixes: 
 - Update SQLite library
 
 
* New in 0.10.51
Bugfixes: 
 - Installer bug fixes


* New in 0.10.50
Bugfixes: 
 - Fix incompatible database error
 

* New in 0.10.49
Bugfixes: 
 - Update SQLite library
 

* New in 0.10.48
Bugfixes: 
 - Minor bug fixes
 - Update SQLite library
 
 
* New in 0.10.47
Bugfixes: 
 - Update SQLite library


* New in 0.10.46
Bugfixes: 
 - Minor installer updates
 - Update installer package builder


* New in 0.10.45
Bugfixes: 
 - Update SQLite library


* New in 0.10.44
Bugfixes: 
 - Update SQLite library
 - NSIS installer update w/ bug fixes

 
* New in 0.10.43
Improvements:
 - Update copyrights (2016 edition)

Bugfixes: 
 - Yahoo: Package issue fix


* New in 0.10.42
Bugfixes: 
 - Improve SQLite efficiency
 
 
* New in 0.10.41
Bugfixes: 
 - SQLite driver returned the wrong name
 - SQLite driver is out of beta
 - Minor bug fixes
 
 
* New in 0.10.40
Bugfixes: 
 - Server configuration changes
 

* New in 0.10.39
Bugfixes: 
 - Update SQLite library


* New in 0.10.38
Bugfixes: 
 - Update SQLite library
 

* New in 0.10.37
Bugfixes: 
 - Update SQLite library
 - Minor bug fixes


* New in 0.10.36
Improvements:
 - Improved Windows 10 support in installer
 
Bugfixes:
 - Minor installer bug fixes
 

* New in 0.10.35
Bugfixes: 
 - Update SQLite library
 - Minor bug fixes
 
 
* New in 0.10.34
Bugfixes: 
 - Update SQLite library
 

* New in 0.10.33
Bugfixes: 
 - Update SQLite library


* New in 0.10.32
Enhancements:
 - Update sqlite library

Bugfixes: 
 - Improved memory management


* New in 0.10.31
Enhancements:
 - Add SQLite database driver beta to contrib package (Use at your own risk!)

 
* New in 0.10.30
Enhancements:
 - Updated country list and ISO codes
 - Improved SDK compatibility
 

* New in 0.10.29
Enhancements:
 - Include new installer for Miranda IM x64

Bugfixes:
 - Update redistributable on each installer to prevent misconfigurations


* New in 0.10.28
Bugfixes:
 - Minor bug fixes
 - Minor translation fixes


* New in 0.10.27
Enhancements:
 - Improved contact list SDK support


* New in 0.10.26
Bugfixes:
 - Fix redistributable language for x86

 
* New in 0.10.25
Bugfixes:
 - Fix DBTool profile identification
 - MSN: Fix MSN login identification

Enhancements:
 - Switch to newer compiler which requires an included redistributable package

 
* New in 0.10.24
Bugfixes:
 - Installer fixes (more internal NSIS updates)


* New in 0.10.23
Bugfixes:
 - Installer fixes (internal NSIS update)


* New in 0.10.22
Bugfixes:
 - Installer fixes/changes
 - Jabber: Fix issue with acknowledgement

 
* New in 0.10.21
Bugfixes:
 - Update copyrights
 - Update notification was shown before first setup


* New in 0.10.20
Bugfixes:
 - Fix possible crash with the file transfer dialog
 - Minor translation fix


* New in 0.10.19
Bugfixes:
 - Fix for SCRAM authorization (affects jabber.ru servers)


* New in 0.10.18
Bugfixes:
 - Change update server url (old style update server has been disabled on the server)


* New in 0.10.17
Bugfixes:
 - Fix NSIS installer resources issue


* New in 0.10.16
Bugfixes:
 - Updated zlib to 1.2.8


* New in 0.10.15
Bugfixes:
 - Fixed issue with uninstaller removing unwanted files

Enhancements:
 - Move download hosting to project website (Google Project Hosting is ending file download support)


* New in 0.10.14
Bugfixes:
 - Minor changes to installer format
 - Jabber: Show Android users with correct status

 
* New in 0.10.13
Bugfixes:
 - Add notification on account creation name duplication error
 - Updated installer to properly close Miranda during install process
 - Reduced installer size


* New in 0.10.12
Bugfixes:
 - Fixed memory leaks in options
 - ICQ: Fixed password update issue
 - ICQ: Fixed memory corruption issue during file transfers
 

* New in 0.10.11
Bugfixes:
 - ICQ: Fixed possible crash
 - Jabber: Fixed reading status message from mobile users


* New in 0.10.10
Bugfixes:
 - Copyright updates
 - Jabber: Fixed crash with mood message
 - Jabber: Fixed XStatus issue

 
* New in 0.10.9
Bugfixes:
 - Fix issue with plugin build process
 - Revert UAC installer changes

 
* New in 0.10.8
Bugfixes:
 - Jabber: Update default icon pack with all status modes

 
* New in 0.10.7
Bugfixes:
 - Jabber: Fix possible crash


* New in 0.10.6
Bugfixes:
 - Jabber: Fix Android Gtalk status mode


* New in 0.10.5
Bugfixes:
 - Fixed mirandaboot.ini file encoding
 - Jabber: Fixed GSSAPI authentication
 - Jabber: Gtalk Android users were not shown as On the Phone status


* New in 0.10.4
Bugfixes:
 - Installer fixes and improvements
 - Minor API issues
 - Minor documentation changes

 
 * New in 0.10.3
Enhancements:
 - Installer will launch Miranda IM with user permissions (no longer require admin)


* New in 0.10.2
Enhancements:
 - Added Last Name - First Name sorting option to the contact list
 - Installer improvements


* New in 0.10.1
Bugfixes:
 - Fixed icon pack packaging
 - AIM: Fixed HTML decoding
 - Jabber: Fixed disconnection issues on ping timeout
 
 
* New in 0.10.0
Bugfixes:
 - Fixed rare crash
 - AIM: Fixed memory leaks
 - AIM: Fixed chat invitation messages
 - Jabber: Fixed GTalk login to invisible
 - MSN: Improved P2P connectivity
 - MSN: Fixed crashes
 - Yahoo: Fixed searching for AT&T user accounts

Enhancements:
 - New language pack format support and per user language packs
 - AIM: Establishing listening connection only when needed not on startup
 - Jabber: Re-designed resource selection logic to comply with RFC
 - MSN: Added Windows Phone detection
 - Yahoo: Added conference support


* New in 0.9.52
Bugfixes:
 - Fixed minor avatar issues
 - Fixed issues with avatars in Clist Nicer


* New in 0.9.51
Bugfixes:
 - ICQ: Fixed display of avatars


* New in 0.9.50
Enhancements:
 - IPv6 support
 - Unicode avatar paths support
 - Per plugin language pack support
 - Gadu-Gadu: Added login notifications

Bugfixes:
 - Updated zlib library
 - Updated scriver with new search engines
 - Improved image handling services
 - Gadu-Gadu: Improved error notifications
 - Gadu-Gadu: Improved cancelling connection attempt 
 - Yahoo: Fixed contact authorization issues
 - Yahoo: Fixed client detection
 

* New in 0.9.49
Bugfixes:
 - Translation improvements
 - ICQ: Fixed issues transferring files with diretory structures
 - MSN: Fixed issues receiving offline messages


* New in 0.9.48
Bugfixes:
 - Fixed window state of URLs opened in IE
 - Minor updates to TabSRMM plugin
 - Fix minor issue with SDK language pack tool


* New in 0.9.47
Enhancements:
 - Added option to disable menu icons
 
Bugfixes:
 - Improved messaging window handling of avatars
 - Improved handling of missing image services
 - ICQ: Fixed possible crash
 - ICS: Minor translation fix
 - IRC: Improved connection speed
 - IRC: Fixed closing already closed port
 - Jabber: Changed ping stanza format to comply with XEP-0199


* New in 0.9.46
Bugfixes:
 - Updated zlib library
 - Fixed issue creating directories
 - Fixed messaging window hang
 - Gadu-Gadu: Updates to the image dialog window
 - MSN: Fixed buffer overrun when receiving malformed messages
 - MSN: Fixed file transfer issues


* New in 0.9.45
Bugfixes:
 - ICQ: More delivery confirmation fixes
 - MSN: Fixed connectivity issue
 - MSN: Fixed possible crashes


* New in 0.9.44
Bugfixes:
 - Updated messaging and contact list plugins
 - ICQ: Fix delivery notifications
 - ICQ: Renamed server acknowledgement for clarity
 - Gadu-Gadu: Fixed overwriting image files


* New in 0.9.43
Bugfixes:
 - Improved image services
 - Improved stability
 - Gadu-Gadu: Fixed reception of images without file extension
 - ICQ: Fixed issues sending messages
 - ICQ: Fixed possible crash
 - MSN: Fixed issues during file transfer cancellation


* New in 0.9.42
Bugfixes:
 - Fixed Shift-Enter new line behavior in messaging window
 - Improved UPnP port mapping behavior
 - MSN: Fixed login issues
 - MSN: Improved nick name display in chat rooms
 - MSN: Improved connection handling
 - MSN: Removed media sharing popup


* New in 0.9.41
Bugfixes:
 - Fix boot ini processing logic
 - Gadu-Gadu: Fixed ignoring rich text messages
 - Gadu-Gadu: Improved blocking/ignoring system
 - Jabber: Minor fix for the Jabber account item
 - MSN: Fixed connecting state issue

 
* New in 0.9.40
Bugfixes:
 - Jabber: Fixed ignore roster group option (fixes Facebook group issues)
 - MSN: Fixed connecting state issue
 - Gadu-Gadu: Improved client detection


* New in 0.9.39
Bugfixes:
 - UPnP failed on some routers


* New in 0.9.38
Bugfixes:
 - Profile manager doesn't react to changes in subfolders
 - Jabber: Fix rare crash
 - MSN: Do not transition to idle if you are away


* New in 0.9.37
Bugfixes:
 - Fixed tray balloon notifications
 - Jabber: Fixed GTalk status message


* New in 0.9.36
Bugfixes:
 - Fixed disabling hotkey issue
 - Fixed icon blinking
 - Jabber: Fixed inability login into Away with GTalk
 - MSN: Fixed contact jumping out of group
 - MSN: Fixed issues with multiple instances
 - MSN: Improved error notifications


* New in 0.9.35
Bugfixes:
 - Fixed message sending retry issues
 - AIM: Fixed memory leak
 - AIM: Improved error notifications
 - ICQ: Fixed user info update
 - MSN: Fixed avatar/file transfer with WLM 2011
 - MSN: Fixed url reset when transitioning from old version


* New in 0.9.34
Bugfixes:
 - AIM: Improved avatar support
 - MSN: Improved group chat entry UI
 - MSN: Fixed issue with one-to-one chats
 - Jabber: GTalk improvements with status modes


* New in 0.9.33
Bugfixes:
 - Jabber: Fixed disconnection issue with compressed connections
 - Yahoo: File transfer fixes
 

* New in 0.9.32
Bugfixes:
 - Fixed issue with file versions
 - AIM: Fixed problems with adding and moving contacts
 - AIM: Fixes for Blast groups
 - AIM: Better acknowledgments on message reception

 
* New in 0.9.31
Bugfixes:
 - Minor display issue
 - MSN: Fixes for file transfers
 - MSN: Fixed receiving messages from Yahoo contacts

 
* New in 0.9.30
Bugfixes:
 - Fixed search by name
 - Fixed UTF-8 language packs
 - Fixed issue with options ok/cancel buttons
 - Gadu-Gadu: Fixed setting and fetching avatar
 - Gadu-Gadu: Fixed setting and fetching user details
 - ICQ: Fixed client detection
 - Jabber: Fixed font settings
 - Jabber: Fixed XMPP server list retrieval
 - Jabber: Fixed roster group setup for Facebook accounts
 - Jabber: Privacy list UI was shown when not supported
 - MSN: Fixed user not online issue

 
* New in 0.9.29
Bugfixes:
 - Improved IE autoproxy connectivity
 - Fixed crash in image services
 - ICQ: Fix issues with XStatus
 - MSN: Fixed crash on custom smiley transfer
 - MSN: Fixed Disable Popups checkbox
 - MSN: Fixed crash when contact specifies avatar with improperly encoded hash
 - MSN: Fixed crash on direct transfer with older clients
 - MSN: Fixed nickname update
 - Yahoo: Fixed version display


* New in 0.9.28
Enhancements:
 - MSN: Update WLM protocol

Bugfixes:
 - Fixed XML parser causing issues with protocols
 - Fixed memory leaks
 

* New in 0.9.27
Bugfixes:
 - Fixed time display when Disable Automatic daylight correction checkbox in Windows is cleared
 - Fixed show time different from current time
 - Fixed pressing button with space
 - Fixed utf8 langpacks and ansi translations
 - Fixed error notifications when protocols are offline
 - MSN: Fixed connectivity issues
 

* New in 0.9.26
Enhancements:
 - Added support for SOCKS5 proxy from autoconfig script
 - Added the optional codepage parameter for langpacks to decode utf8-encoded files
 - Gadu-Gadu: Added ability to view and disconnect active concurrent login sessions
 - Gadu-Gadu: Added synchronization of sent messages between multiple concurrent logins
 
Bugfixes:
 - Fixed url encoding api
 - Fixed inability to connect when IE proxy settings are used and proxy autoconfig script returned 'no proxy needed'
 - Fixed proxy selection when proxy autoconfig script returns more then one proxy
 - Fixed reporting for improperly terminated threads
 - MSN: Fixed nudge sending


* New in 0.9.25
Enhancements:
 - Jabber: Added the special field for the alternative nick in Jabber groupchats

Bugfixes:
 - Minor crash issue under Wine
 - ICQ: Minor spelling mistake
 - Jabber: Translation issues
 

* New in 0.9.24
Enhancements:
 - Added installer option to install contrib (extra) plugins

Bugfixes:
 - Time zone improvements
 - Minor alignment issue in message window
 - Gadu-Gadu: Fixed bug that allowed invite your own contact to a conference
 - ICQ: Password dialog fixes
 - ICQ: X Status improvments
 - Jabber: Fixed moving to group

 
* New in 0.9.23
Bugfixes:
 - Minor display issues
 - Jabber: Added support for old style plain authentication for Google Apps accounts and pre 2.1 versions of ejabberd
 

* New in 0.9.22
Bugfixes:
 - Version displayed incorrectly
 - Jabber: Fixed XMPP roster editor export XML UTF-8 encoding

 
* New in 0.9.21
Bugfixes:
 - Check DNS SRV records in priority order (Fixes login server issues)
 - Fix incorrect status mesage display in chat window
 - Fix broken display in font options
 - Jabber: Keep alive option works with XMPP ping
 - Jabber: Fix memory leaks
 - Jabber: Fix possible crash


* New in 0.9.20
Bugfixes:
 - Fixed status message window title
 - Improved idle detection
 - Fixed rare crash in file transfers
 - Gadu-Gadu: Fixed disconnect and message duplication issue
 - Jabber: Fixed possible crash
 - Yahoo: Fixed avatar retrieval
 

* New in 0.9.19
Bugfixes:
 - Fixed connection with some broken proxies
 - Fixed link to bug tracker
 - Gadu-Gadu: Fixed SSL connection issue in x64 version
 - IRC: Fixed ansi build issues
 - Jabber: Fixed handling caps for clients with no cap node in presence
 
 
* New in 0.9.18
Bugfixes:
 - Fixed shutdown after resume hibernate
 - Fixed tab autocompletion in multi-user chats
 - Gadu-Gadu: Fixed showing correct status of your own contact
 - Jabber: Fixed status message notification in chat window
 - Jabber: Fix for proper extended status handling
 - Jabber: Fixed conference topic display
 - MSN: Fixed idle handling
 - MSN: Nickname wasn't displayed for added contact
 - Yahoo: Fixed adding contact to the list


* New in 0.9.17
Enhancements:
 - Gadu-Gadu: Use core SSL support

Bugfixes:
 - Fixed unneeded crypt32 loading
 - Fixed account disabling confirmation
 - Fixed crash on exit when the account manager window is opened
 - Gadu-Gadu: Fixed memory leaks
 - ICQ: Fixed sending unicode messages
 - Jabber: Fixed adding contacts
 - Jabber: Fixed chat room issues
 - MSN: Status change fixes
 - MSN: Fixed idle handling


* New in 0.9.16
Bugfixes:
 - Fixed minor UI issue in read status message dialog
 - Removed unused text from auth request dialog
 - Gadu-Gadu: Fixed file transfers with GG 8.x/10.x
 - Gadu-Gadu: Fixed cancelling outgoing file transfer while waiting for acceptance
 - ICQ: Fixed adding contacts to server list
 - Jabber: Fixed the caps calculation problems for the XMPP file sending 
 - Yahoo: Fixed inability to create avatar cache folder


* New in 0.9.15
Bugfixes:
 - ICQ: HTML decoding issues
 - MSN: Fixed possible crash


* New in 0.9.14
Enhancements:
 - Configurable timeout for http requests
 - ICQ: Improved client detection
 - IRC: Added support for extra variables
 - Jabber: Added option to disable version

Bugfixes:
 - AIM: Disabled SSL for mail connection
 - ICQ: Fixed password limitation issues
 - ICQ: Fixed message timeouts
 - IRC: Fixed memory leak
 - Jabber: Fixed Jabber GSSAPI authentication 
 - Jabber: Fixed transport not supporting Skype transport with icons
 - Jabber: Fixed when contact added on the root level nick is lost 
 - Jabber: Fixed the client's icon in Jabber user info
 - Jabber: Fixed age calculation in Jabber user info
 - MSN: Fixed invisibility issues
 - MSN: Fixed double status change


* New in 0.9.13
Bugfixes:
 - Closing Find/Add Contacts caused crash
 - Enter on options search closed options
 - ICQ: Added hints on password limiation to options


* New in 0.9.12
Bugfixes:
 - Fixed UPnP for some routers
 - Fixed UPnP port forwarding
 - Fixed possible crash in file transfers window
 - AIM: Fixed crash when server not available
 - Gadu-Gadu: Improvements to the image dialog window
 - Gadu-Gadu: Fixed fetching avatars
 - Gadu-Gadu: Fixed search results encoding
 - ICQ: Improved client detection
 - ICQ: Fixed bug in client detection of Qnext v4
 - IRC: Improved Ident implementation
 - Jabber: Fixed changing status in jabber group chat 
 - MSN: Fixes for bogus address book URL stuck in database


* New in 0.9.11
Bugfixes:
 - Fixed 401 HTTP authentication
 - Show Status Changes option is not maintained (srmm only)
 - ICQ: Added automatic server upgrade for server migration
 - ICQ: Fix rare crash
 - ICQ: Fixed authorization requests
 - IRC: DCC fixes
 - Jabber: Updated GTalk default server settings


* New in 0.9.10
Bugfixes:
 - Fixed memory leaks
 - ICQ: Fixed connection issues
 - Jabber: Fixed account manager dialog to not allow manually setting SSL/TLS flag for the GTalk accounts


* New in 0.9.9
Bugfixes:
 - Fixed scrolling issues with smilies (srmm only)
 - Fixed url processing (srmm only)
 - Fixed search logic with old protocols
 - Fixed crash with autocomplete in chat window
 - Fixed taskbar blinking when hiding contact list
 - Improved HTTP authentication support
 - AIM: Fixed error message on closing system buddy window
 - ICQ: SSL fixes
 - ICQ: Fixed status message unrequested change
 - Jabber: Improved support for Jabber services
 - MSN: Fixed QuotaLimitExceeded issue
 - MSN: Fixes for contact addition
 - MSN: Fixed avatar transfer
 - Yahoo: Fixed setting avatar


* New in 0.9.8
Bugfixes:
 - MSN: Fixed offline messaging


* New in 0.9.7
Enhancements:
 - Improved method selection for proxy authentication
 - Jabber: Added SMS service support

Bugfixes:
 - HTTP authentication fixes
 - Fixed SPN resolution for Kerberos authentication
 - Fixed auto scroll if log is focused (srmm only)
 - Fixed message window blinking even if focused (srmm only)
 - ICQ: Fixed retrieving user details deleting status message
 - ICQ: Fixed read status dialog
 - ICQ: Fixed default settings for SSL connection
 - Jabber: Hide custom search option if no interface is available


* New in 0.9.6
Bugfixes:
 - Fixed crash on failed http connection
 - ICQ: Prevent user from setting free for chat message


* New in 0.9.5
Enhancements:
 - Added ability to paste files into the message window
 - Improved UPnP performance

Bugfixes:
 - Fixed crashes with OS older than Windows 2000
 - Fixed log scrolling down on message reception
 - ICQ: Fixed large icon retrieval
 - ICQ: Fixed not setting all the contacts offline on connection failure
 - IRC: Removed warning when manually going offline
 - IRC: Fixed connect on start failure
 - IRC: Fixed status handling on disconnect
 - Jabber: Fixed icon in group chat invitation
 - Jabber: Full XEP-0118 "User tune" conformance
 - Yahoo: Fixed random crash


* New in 0.9.4
Enhancements:
 - Added skinnable sound for message sending error
 - Added display of current contact time in message status bar
 - AIM: Added support for strike-thru formatting

Bugfixes:
 - Fixed message window auto close
 - Fixed message window input area focus issue
 - Fixed typing notifications
 - Improved time zone estimation from GMT offset
 - HTTP gateway improvements
 - Fixed proxy authentication issues
 - AIM: Improved processing of XHTML
 - ICQ: Fixed ICQ statuses
 - ICQ: Fixed file transfer with UPnP router
 - ICQ: Fix for hang on exit
 - ICQ: Fixed crash in SSL mode
 - ICQ: Fixed HTTP gateway disconnect issues
 - ICQ: Fixed inability to connect when SSL and HTTP proxy selected
 - IRC: Fix for wrong IRC status
 - Jabber: Fixed memory leak
 - Jabber: Fixed profile manager UI issues
 - Jabber: Fix for groupchat's nick extraction
 - Jabber: Fixed password encryption
 - Jabber: Account registration does not abort on inability to establish TLS connection
 - Yahoo: Improved sound registration


* New in 0.9.3
Bugfixes:
 - Last message received text missing
 - Fixed message window popup
 - Fixed group chat message highlighting
 - Fixed opening directory in file transfer
 - Fixed Basic authentication
 - Fixed contact list off the screen adjustment
 - Fixed upgrading profile path
 - Fixed full screen window detection with Win-D key
 - Fixed display issues with 'You were added' dialog
 - HTTP proxy processing improvements
 - AIM: Fixed possible crash in file transfer
 - ICQ: Translation fixes
 - ICQ: Fixed crash during avatar retrieval
 - ICQ: Improved client detection
 - ICQ: Fixed issues with setting away message
 - ICQ: Fixed deadlocks
 - IRC: Fixed disconnect issues
 - IRC: Show private messages in ANSI build
 - Jabber: Fixed rare crash
 - MSN: Fixed possible crash on disconnect


* New in 0.9.2
Bugfixes:
 - Fixed database upgrade logic
 - IRC: Fixed possible crash
 - Jabber: Can't send messages on non-English language


* New in 0.9.1
Enhancements:
 - Improved profile upgrade path logic

Bugfixes:
 - Fixed plugin file names
 - AIM: Fixed possible crash
 - IRC: Fixed crash on nick change


* New in 0.9.0
Enhancements:
 - New improved protocols engine with full Unicode support
 - New high quality icon theme
 - Dynamic protocol's menu creation
 - New Unicode-aware profile manager
 - Added the first official 64-bit core version
 - Added 32x32 pixels icons support
 - Added Windows 7 taskbar icon support
 - Added full Unicode file transfers
 - Added the Unicode search capability
 - Added the Unicode status messages processing
 - Added menu option to move all protocol menus to the status bar
 - Added SSL certificate validation
 - Added ability to transfer files longer than 4 GB
 - Added support for HTTP 1.1 persistent connections including persistent HTTP proxy connections
 - Added support for HTTP SPINEGO (Negotiate) authentication
 - Added support for Internet Explorer proxy settings usage including proxy auto configuration scripts
 - Added transparent HTTP proxy/server authentication if possible (no user settings needed)
 - Jabber: Added GSSAPI authentication
 - Jabber: Added API for the second-level Jabber subplugins
 - Jabber: Added ability to transfer files longer than 4 GB
 - Gadu-Gadu: Brought back and improved SSL support (still requires OpenSSL)
 - Gadu-Gadu: The complete avatars support
 - Gadu-Gadu: Custom profile folders plugin support for avatars and images
 - Gadu-Gadu: Added support for changing status by the user simultaneously logged on using different Miranda account or IM client
 - Gadu-Gadu: Improved showing links from unknown contacts
 - Gadu-Gadu: Split the protocol menu into two popup menus when it's moved to the status bar
 - MSN: Added ability to transfer files longer than 4 GB
 - MSN: Added automatic connection method selection
 - YAHOO: Improved the login procedure

Bugfixes:
 - IRC: Fixed crash in file transfers
 - Jabber: Fixed group chat affiliation issue
 - Gadu-Gadu: Fixed setting status without status message
 - Gadu-Gadu: Fixed changing status while connecting
 - Gadu-Gadu: Fixed status mode/message change issue for yourself added to the contact list
 - Gadu-Gadu: Auto reconnect did not work in some cases
 - Gadu-Gadu: Improved thread safety
 - Gadu-Gadu: Fixed network logging
 - Gadu-Gadu: Fixed memory leaks


* New in 0.8.27
Bugfixes:
 - ICQ: Fixed status when AIM support enabled
 - MSN: Updated WLM 10 detection
 - MSN: Fix infinite loop
 - Yahoo: Fix empty "Nick" issues
 - Yahoo: Fixed client version detection
 - Yahoo: Fix issues with Yahoo! Japan


* New in 0.8.26
Bugfixes:
 - Minor translation fixes
 - AIM: Fixed specified port need to be used as a backup
 - ICQ: Removed version warning
 - ICQ: Fixed offline message timeout to AIM
 - MSN: Fixed file/avatar transfer issues for contacts with id that has upper case letters
 - Yahoo: Fixed issues setting Nick
 - Yahoo: Strip out username when email address is entered for the username


* New in 0.8.25
Bugfixes:
 - Fixed focus issues with file transfer minimize option
 - Fixed auth issues caused by deny reason dialog
 - Fixed dll dependancy issue with image processing library
 - Fixed account manager icon sizing issue
 - Fixed possible crash with IE 4 installed
 - AIM: Fixed ceritificate validation
 - ICQ: Fixed issue with ICQ not setting the status properly when AIM support is enabled
 - Jabber: Added SSL certificate validation for Google Apps accounts
 - MSN: Fixed possible crashes
 - MSN: Added workaround for file transfers with Pidgin
 - Yahoo: Minor translation fixes


* New in 0.8.24
Bugfixes:
 - Fixed processing of special characters in multi-user chat windows
 - AIM: Fixed reception of messages in ISO 8859-1 codepage
 - Jabber: XStatus icons were shown incorrectly
 - Jabber: Fixed possible crash sending non-existent file


* New in 0.8.23
Enhancements:
 - Updated icons by Angeli-Ka

Bugfixes:
 - Fixed drawing issues in Options and Find/Add
 - Fixed message duplication in the message log
 - Fixed message navigation in the message window
 - Jabber: Don't show error message on reconnect request
 - Yahoo: UTF-8 fixes


* New in 0.8.22
Enhancements:
 - Gadu-Gadu: Added typing notifications support
 - Yahoo: Enabled UTF-8 by default

Bugfixes:
 - Update zlib library to 1.2.5
 - ICQ: Added missing mobile icon to installer icon pack
 - Yahoo: Fixed issues with Yahoo Japan setting getting reset


* New in 0.8.21
Bugfixes:
 - Jabber: Fixed PLAIN authentication with Unicode usernames/passwords
 - Gadu-Gadu: Fixed memory leaks


* New in 0.8.20
Bugfixes:
 - Fixed menus in Windows 95
 - Moved default directory for receiving files into location not protected by UAC (My Documents\My Received Files)
 - Fixed focus issue in update notification dialog
 - AIM: Mask spurious mail notification
 - AIM: Fixed authorization request on moving contact from group to group
 - Gadu-Gadu: Fixed offlining all contacts when going offline
 - Gadu-Gadu: Fixed exporting group chats
 - Gadu-Gadu: Added 'Leave chat' support
 - Jabber: Fixed formatting of error notification message box
 - Jabber: Fixed memory leak in search


* New in 0.8.19
Bugfixes:
 - More docking issues fixed
 - Updated zlib to version 1.2.4
 - MSN: Converted chat invitation menu to Unicode


* New in 0.8.18
Enhancements:
 - MSN: Added ability to send authorization request message

Bugfixes:
 - Fixed docking with multiple monitors
 - Move to Group wasn't sorted correctly
 - Improved error handling in file exists dialog
 - AIM: Fixed storing custom nickname on server when adding contact
 - AIM: Fixed random "Service not available" popups
 - AIM: Mapped "Miranda Merged" server group into Miranda root group
 - AIM: Fixed adding contacts
 - Jabber: Fix authentication issues
 - Jabber: Disabled TLS option when SASL authentication disabled
 - MSN: Fix issues with setting long status message


* New in 0.8.17
Enhancements:
 - Installer now includes a portable mode option
 - Added auto rename button to file transfer file exists prompt

Bugfixes:
 - Minor fix for off screen positioning
 - Fixed docking issues with contact list
 - Gadu-Gadu: Improved message handling
 - Gadu-Gadu: Fixed memory leaks
 - Gadu-Gadu: Support contacts with large UINs
 - Gadu-Gadu: Fixed idle issues with empty status messages
 - MSN: Added handling of authentication failure due to incomplete profile
 - Jabber: Translation improvements


* New in 0.8.16
Enhancements:
 - Added options to clear completed file transfers on window close

Bugfixes:
 - Fix for deleting groups with contacts
 - Fix for moving contacts through groups
 - Fix main menu icon reference
 - Fix for main window off screen positioning
 - Fixed authorization dialog behaviors
 - AIM: Display nickname instead of screenname in chat
 - AIM: Fixed encrypted and formatted messages with Metacontacts
 - ICQ: Fix for long error messages
 - Yahoo: Added Yahoo 10.0 client detection


* New in 0.8.15
Bugfixes:
 - Jabber: Disable TLS in the Facebook Chat account type
 - Yahoo: Improved offline messaging support for Meta plugin


* New in 0.8.14
Enhancements:
 - Jabber: Added a "Facebook Chat" type to setup Facebook accounts easily

Bugfixes:
 - ICQ: Fixed ICQ7 client detection
 - Jabber: Fixed possible crash on reconnection attempt
 - Jabber: Fixed status menu


* New in 0.8.13
Enhancements:
 - ICQ: Improved AIM capabilities detection
 - ICQ: Added ICQ 7 client detection

Bugfixes:
 - Incompatible contact list plugins could load on startup
 - ICQ: Fixed possible memory leak
 - Jabber: Minor translation fixes
 - MSN: Fixed issue with SOAP requests
 - MSN: Fixed issue denying users
 - Yahoo: Fixed nudges
 - Yahoo: Support cancelling file transfer in progress


* New in 0.8.12
Bugfixes:
 - Fixed crash during NTLM authentication
 - Fixed possible crash in internal history viewer
 - Fixed "Move to Group" issue
 - AIM: Fixed crash issue
 - AIM: Contact lost custom name when moving to different group
 - Jabber: Fixed rare crashes
 - Jabber: Privacy lists were missing from the list editor
 - Jabber: Fixed options UI issues
 - Yahoo: Fix memory leaks


* New in 0.8.11
Enhancements:
 - Windows 7 Taskbar support for file transfer progress

Bugfixes:
 - ICQ: Possible crash loading avatar from cache
 - Yahoo: Improvements in comparing Yahoo ids
 - Yahoo: Display fix for email notifications
 - Yahoo: Fixed login issue


* New in 0.8.10
Bugfixes:
 - SSL improvements on Windows 9x
 - Jabber: Improve support for Jabber transports
 - Jabber: Fixed memory leak & crash in privacy lists
 - MSN: Fix for forward list
 - MSN: Added stripping new style of MSN color codes


* New in 0.8.9
Bugfixes:
 - Fix for entering cyrillic chars into the profile manager
 - Translation fixes
 - Fixed SSL connection failure handling
 - Fixed potential buffer overflow issue
 - ICQ: Fixed keep-alive option default value
 - Jabber: Fixed certificate validation for TLS connection
 - MSN: Fixed issue in MSN chats with unicode characters
 - Yahoo: Fix for Yahoo search


* New in 0.8.8
Enhancements:
 - Added new update notification options

Bugfixes:
 - Fixed possible crash in contact list menus
 - AIM: Fixed setting user preferences
 - Jabber: Fix for ANSI version of Jabber
 - Yahoo: Minor options text changes


* New in 0.8.7
Enhancements:
 - New update notification detection

Bugfixes:
 - Fixed memory leaks
 - Fixed possible crash on startup
 - Jabber: Fixed SASL authentication
 - MSN: Fixed MSN contact search
 - MSN: Disabled server list options when MSN not logged-in
 - MSN: Added removal of new style for MSN color codes in nicks and status messages
 - MSN: Fixed infinite loop on authorization failure


* New in 0.8.6
Enhancements:
 - Performance improvements with network logging disabled
 - AIM: Added send directory ability
 - MSN: Added ability to transfer all files in a directory
 - MSN: Use protocol username for chat names in contact list

Bugfixes:
 - Fixed possible crash in the file transfer window while scrolling
 - Fixed file transfer resume
 - AIM: AIM 7 is now detected
 - AIM: Improved file transfer support
 - Jabber: Ignored the "Manual host" setting during the account registration
 - MSN: Fixed chats with IM Control users
 - MSN: Auth request reason is now displayed
 - MSN: Fixed deletion of contact from Hotmail address book
 - MSN: Fixed avatar sending on chat session


* New in 0.8.5
Bugfixes:
 - Auto away did not respect locked protocols
 - Fixed possible file transfer crashes with Windows 9x
 - Fixed deleting accounts for not loaded protocols
 - Fixed minor selection issues with the profile manager
 - ICQ: Incorrect behavior of error messages when popups were unloaded
 - ICQ: Improved file transfer resume
 - ICQ: Improved status message handling
 - ICQ: Improved changeinfo module accessibility
 - MSN: Fixed address book migration from 0.7
 - MSN: Fixed phones in the contact list
 - MSN: Fixed removing IM contacts
 - MSN: Fixed blocking contacts not on contact list


* New in 0.8.4
Enhancements:
 - Gadu-Gadu: Added option: 'Show links from unknown contacts'
 - Yahoo: Improved login error detection

Bugfixes:
 - Installer uses safer method of previous installation choices detection
 - AIM: Fixed mail notifications
 - AIM: Filenames were not correct on file receive
 - AIM: Fixed setting status message to not supported status
 - Gadu-Gadu: Icons were not installed correctly
 - Gadu-Gadu: Fixed crash opening new conference
 - Gadu-Gadu: Removed 'Show contacts not on my list having me on their list' option due to the server changes
 - ICQ: Advanced search was not working in some cases
 - Jabber: Ignored Google Talk custom domains in account manager
 - Jabber: Receiving messages stops if <version> tag in response is incomplete
 - Jabber: Group chat invites didn't process non-legacy invites
 - Jabber: Fix for rare crash
 - Jabber: Handle realms correctly in Digest-MD5 SASL
 - MSN: Fixed setting status message to not supported status


* New in 0.8.3
Bugfixes:
 - Fixed contact list minimum row height determination
 - AIM: Chat message processing improvements
 - AIM: Fixed error messages during nickname upload
 - AIM: File transfer improvements
 - Jabber: Fix for saving the checkbox value in password dialog
 - MSN: Away message api compatibility improvement


* New in 0.8.2
Enhancements:
 - Improved account deletion support
 - MSN: Non IM contacts removed from the contact list and database
 - Yahoo: Removed "Show Profile" for non Yahoo contacts

Bugfixes:
 - Fix for ssl errors when client tries to send on closed connection
 - AIM: File transfer fixes
 - IRC: Own actions were not always shown
 - Jabber: Random disconnect issue caused by timeouts
 - Jabber: Fixed encrypted messages being empty (XEP-0027)


* New in 0.8.1
Enhancements:
 - Improve account renaming inside of the account manager
 - Notification if missing messaging plugin

Bugfixes:
 - Improved upgrade procedure when using older contact list and messaging plugins
 - Network list in options wasn’t sorted
 - Fixed missing icon/menu issues
 - Fixed crash in options on XP pre SP2
 - Fixed errors loading dlls on wrong OS
 - Fixed drawing background in options search
 - Fixed account removal handling
 - Fixed hotkey issue with some MS keyboards
 - Fixed possible crash with event data
 - AIM: Fixed issue with multiple connection requests
 - AIM: Fixed issue setting AIM profile
 - ICQ: Fixed AIM away message handling (caused online status to be seen as away in some clients)
 - IRC: Possible crash on specific alias
 - MSN: Fixed renaming nickname from options
 - MSN: Fixed Offline messaging reception from Beejive client
 - Yahoo: Show download progress properly
 - Yahoo: Cancel out in the middle of file receive.
 - Yahoo: Main menu fixes


* New in 0.8.0
Enhancements:
 - Support for multiple accounts (without dll renaming) for all protocols
 - SSL support has been added to the core
 - Support for compressed HTTP transactions
 - AIM: Unicode messaging, status messages, profiles
 - AIM: Offline messaging
 - AIM: Set/retrieve status message for any status
 - AIM: Ability to set your own avatar
 - AIM: Privacy settings & lists support
 - AIM: Server groups support
 - AIM: Group Chat support
 - AIM: SSL server connection support
 - ICQ: Fixed receiving of multi-part messages (only first part was received)
 - ICQ: Fixed processing of UTF-8 encoded status messages from QIP
 - ICQ: New offline messages protocol (supports unicode)
 - ICQ: New user details protocol support (fully unicode aware)
 - ICQ: Added support for status notes & moods
 - ICQ: URL events are now received as normal messages
 - ICQ: Ability to send/receive contacts to/from ICQ6 and AIM
 - ICQ: Server-list support now groups requests
 - IRC: IRC servers now stored in the database
 - IRC: Filter for IRC channel list
 - IRC: Enhanced identd processing
 - IRC: Added menu item for nickserv commands
 - IRC: Auto request client info on adding to contacts or private message
 - IRC: Enhanced WhoIs request
 - IRC: CTCP events are shown in the server window
 - IRC: Close windows with ESC button
 - IRC: Quick Connect now allows manual input of server parameters
 - Jabber: Bunch of new XMPP extensions implemented (XEPs: 70, 83, 108, 147, 184, 224, 232 and other)
 - Jabber: Massive improvements in filetransfers
 - Jabber: Improved GnuPG messages handling (using SecureIM/GPG plugins)
 - Jabber: Localized server messages support (xml:lang, RFC 3920 section 4.4)
 - Jabber: Server side notes (Miranda own extension)
 - Jabber: Ability to invite chat users to another rooms
 - Jabber: Directed presences, ability to change connection priority
 - Jabber: Display active resource of user in message window
 - Jabber: Jabber VCard moved integrated with user details
 - Jabber: Redesigned almost all dialogs (roster editor, bookmarks, privacy lists, groupchat join, user info and other)
 - Jabber: Redesigned menus (main menu in status bar, privacy lists menu, custom status, priority menu, groupchat menus and other)
 - Jabber: Added new and updated old icons, improvements in UI
 - Jabber: Added hotkeys and toolbar buttons
 - Jabber: Options to auto-accept authorization requests and auto-reject invites to conferences
 - Jabber: CTRL key shows disabled items in most menus
 - Jabber: Various improvements in groupchats (show online status, improved topic and nick change dialogs and other)
 - Jabber: Improved remote controlling (resources in forwarded messages, keep last options, leave groupchats)
 - Jabber: Added display of quit messages, ability to send quit and "slap" messages
 - Jabber: "Use hostname as resource" option
 - Jabber: Improvements in XML Console (filters, formatting)
 - Jabber: Ability to show jabber presence subscription states and errors
 - MSN: Rewritten to support WLM 8.5 protocol (and all it features)
 - MSN: Offline messaging
 - MSN: Added Hotmail Notifier functionality
 - Yahoo: Added Yahoo 9.x protocol support
 - Yahoo: File transfer overhauled with support for batches of files
 - Yahoo: Added user info dialog for Yahoo that shows more detailed information
 - Yahoo: Improved support for HTTP proxies
 - Yahoo: Yahoo Japan support
 - Yahoo: Yahoo now provides a Unicode version

Bugfixes:
 - ICQ: Fixed receiving of multi-part messages (only first part was received)
 - ICQ: Fixed processing of UTF-8 encoded status messages from QIP
 - Jabber: Fixed various serious bugs (accidental account unregister, message sender spoofing, roster access by remote users)
 - Jabber: Fixed wrong timestamps in offline and forwarded messages, fixed xmpp time answers
 - Jabber: Various connection stability fixes (XMPP ping, ZLib keepalive and other)
 - Jabber: Fixed chat issues with autojoin and unstable connection
 - Jabber: Fixed displaying of active resource (including software info) in contact list
 - Yahoo: Tons of bug fixes


* New in 0.7.19
Bugfixes:
 - ICQ: Fixed server connection thread issue


* New in 0.7.18
Bugfixes:
 - Windows compatibility improvements
 - ICQ: Improved server list processing
 - ICQ: New contacts sometimes showed as offline
 - ICQ: Fixed server warning on login
 - ICQ: Possible crash processing time


* New in 0.7.17
Bugfixes:
 - Windows compatibility improvements


* New in 0.7.16
Bugfixes:
 - Windows compatibility improvements


* New in 0.7.15
Bugfixes:
 - Windows compatibility improvements
 - Registry key no longer written on launch of Miranda IM
 - Improved keyboard support in import dialog
 - Improved hotkey support in delete contact dialog
 - Fixed issue with failed searches


* New in 0.7.14
Bugfixes:
 - AIM: Fixed timeout issue
 - ICQ: Minor packet issue
 - ICQ: Login enhancements
 - Fix typo in sound options


* New in 0.7.13
Enhancements:
 - Installer remembers install options for upgrades

Bugfixes:
 - Update Help/Support link
 - Jabber: Don't remove self contact from contact list if still in roster
 - Jabber: Fixed timezone conversion issue


* New in 0.7.12
Bugfixes:
 - MSN: File transfer was broken


* New in 0.7.11
Bugfixes:
 - Avatar refresh issue from "View/Change My details"
 - Updated anti-virus client list
 - Fixed display issue with authorization dialog
 - ICQ: Updated client detection
 - MSN: Improved search stability
 - MSN: Improved timeout handling with switchboard server
 - MSN: Fixed avatar transfer with certain clients


* New in 0.7.10
Bugfixes:
 - Gadu-Gadu: Fix issue adding contacts with empty list
 - MSN: Error 800 issue in last release


* New in 0.7.9
Bugfixes:
 - Fix possible crashes
 - Improve SSL connection timeout handling
 - ICQ: Minor encoding fix
 - MSN: Fixed file transfer with MSN Mobile
 - MSN: Connection failure fixes
 - MSN: Fix mail login


* New in 0.7.8
Enhancements:
 - SSL library included to provide ssl support
 - ICQ: Improved client detection
 - Jabber: Enable StartTLS by default

Bugfixes:
 - Safer port opening for incoming connections
 - Language pack translations did not always translate correctly
 - ICQ: Skinned protocol icon was sometimes incorrect
 - MSN: Improved BBCode processing


* New in 0.7.7
Bugfixes:
 - Some tooltips didn't properly support UNICODE
 - AIM: Improved client detection
 - ICQ: ICQ server sometimes repeated offline messages
 - MSN: Added stripping BBCode from nicknames

* New in 0.7.6
Enhancements:
 - Enabled dim idle contacts by default in classic contact list
 - Cleaned up the Icons options page
 - Yahoo: Improved status change consistency

Bugfixes:
 - Yahoo: Fixed avatar uploading


* New in 0.7.5
Enhancements:
 - Added a "Check for Updates" menu item
 - AIM: Added skinnable icons

Bugfixes:
 - Group chat options didn't use tabbed interface under "Group chats"
 - AIM: Fixed possible crashes
 - AIM: Fixed possible memory leaks
 - AIM: Profile editor shown incorrectly
 - ICQ: Fix problem with transfers through LAN
 - Jabber: Problem receiving '&' character
 - Yahoo: Global status change ignored status lock
 - Yahoo: Avatars were not enabled by default


* New in 0.7.4
Enhancements:
 - Ability to show unicode tooltips
 - Improved uPnP handling for various routers
 - Status menu width fix
 - ICQ: Use new offline messaging protocol (supports unicode)
 - ICQ: Ability to send/receive contacts to/from ICQ6 and AIM
 - ICQ: Ability to view/set ICQ6 compatible custom statuses (icons only)
 - ICQ: Reinvented known spam bot blocking
 - Jabber: Group chat jid list filters implemented
 - MSN: Added WLM 9 detection
 - MSN: Added ability to receive GIF avatars
 - MSN: Added custom smiley reception
 - MSN: Added avatar display for the contact that is yourself
 - MSN: Added error messages on failure to find / store avatar

Bugfixes:
 - Fixed HTTP processing
 - Fixed crashes in multiple conditions
 - ICQ: Fixed receiving of multi-part messages (only first part was received)
 - ICQ: Fixed connection problems with many contacts in the server-list
 - ICQ: Do not lose server-list contacts due to too long nicknames/comments
 - ICQ: Fixed possible crash during file transfer
 - Jabber: Crash on group chat join from service discovery
 - Jabber: Memory leak fixes in dialogs
 - Jabber: Client version was wrongly updated when sending message to an offline contact
 - MSN: Offline messaging for people with long nicknames
 - MSN: Disconnect when receive Hotmail notification
 - MSN: Inability to login with error 923
 - MSN: Fixed disconnect / inability to login due to sending corrupted messages
 - MSN: Fixed for nudge sending / receiving
 - MSN: Fixed moving contact to root


* New in 0.7.3
 - MSN: URL encoding of utf8 was broken
 - Jabber: Contact list vulnerability fixed


* New in 0.7.2
Enhancements:
 - Jabber: Added "Toggle Member" item
 - Jabber: Added items count in jid lists
 - Jabber: Added display of quit messages
 - Jabber: implemented XEP-0184 message delivery check
 - Jabber: Cleanup for the menu entries
 - Jabber: "Use hostname as resource" option
 - Jabber: redesigned groupchat join dialog
 - Jabber: redesigned privacy lists dialog, usability changes
 - Jabber: redesigned jabber user info dialog
 - Jabber: privacy lists menu
 - Jabber: Auto reject invites to conferences
 - Jabber: Auto accept authorization requests
 - Jabber: resource selection from contact context menu
 - Jabber: 'File Association Manager' Plugin support, URI handler
 - Jabber: xml:lang support, localized forms and other resources
 - Jabber: simple privacy list editor
 - Jabber: XEP-0083: Nested Roster Groups
 - Jabber: an admin can now view admin and owner lists

Bugfixes:
 - IRC: Handle on the phone and out to lunch events
 - MSN: Potential buffer overflow issue
 - MSN: Block MSN system alerts
 - Yahoo: Potential buffer overflow issue
 - Jabber: Wrong timestamp for message forwarded from another client
 - Jabber: Roster import/export create groups
 - Jabber: On-trasport context menu issues
 - Jabber: Custom status messages not propagated to Jabber
 - Jabber: Auto-join jabber conference don't work
 - Jabber: scrolling doesn't work well in jabber forms (MUC configuration, ad-hoc, etc)
 - Jabber: fixed closing internal form dialog by pressing ESC
 - Jabber: Broken avatar transparency
 - Jabber: fixed transport registration (transport was offline just after registration)
 - Jabber: check default typing setting, if contact setting is not available
 - Jabber: fixed jabber bookmarks error handling
 - Jabber: fixed message send timeout problem with 0.7.0.13 module versions
 - Jabber: remove user moods and privacy lists menus before going to offline
 - Jabber: cannot close privacy lists editor, if miranda is offline
 - Jabber: Data Forms eat some words
 - Jabber: proper jabber advanced options tree checkbox checking by space key
 - Jabber: removed 'from' attribute from muc invitations
 - Jabber: skip xml console tag text indentation, if tag has no children => proper copy/paste


* New in 0.7.1
Enhancements:
 - Improved icon skinning engine performance
 - ICQ: Enable ICQ 6 photo handling
 - Jabber: Improved avatar processing
 - MSN: Added per message nickname display
 - MSN: Improved status message processing

Bugfixes:
 - Image services plugin wasn't loaded correctly sometimes
 - Standard message dialog didn't draw user id button correctly
 - Network log issue creating log file name correctly
 - ICQ: Handle non-standard offline messages
 - ICQ: Buffer overflow vulnerability
 - IRC: Warning message was cut off
 - IRC: Buffer overflow vulnerability in IRC options
 - IRC: Russian nicks parsed incorrectly
 - IRC: Fixed clickable timestamps in group chats
 - Jabber: urn:xmpp:time returns month number off by 1
 - Jabber: Jabber displayed self in contact list
 - Jabber: Wrong timestamp for offline messages
 - Jabber: Crash in Jabber multi-user conference
 - Jabber: Buffer overflow vulnerability in Jabber forms
 - Jabber: Can't change icons to gadu gadu transport contacts
 - MSN: Changed gateway polling frequency
 - MSN: Fixed MSN alert url creation
 - MSN: Remove Yahoo alert
 - Yahoo: Buffer overflow vulnerability


* New in 0.7
Enhancements:
 - Added Gadu-Gadu protocol support
 - Improved Unicode support
 - Messages and other events are now stored as UTF-8
 - New icon manager allows more icon skinning possibilities
 - Centralized font manager added to the options to manage fonts for all services
 - New avatar and image handling core plugins to better manage avatars
 - Improved memory and threading support
 - Menus are now customizable
 - Improved contact list plugin support
 - Implemented a new memory mapped database driver
 - Improved uPnP support
 - New plugin identification API
 - ICQ: Oscar File Transfers - like ICQ 5
 - ICQ: Client detection improvements
 - ICQ: Level 1 Rate management (global)
 - ICQ: Ability to send long offline messages (up to 4096 characters)
 - ICQ: Support for AIM contacts enhanced
 - ICQ: Better support for Miranda Ignore module
 - ICQ: URL events are now received as normal messages
 - Import: Supports UTF-8 and improved import speed
 - IRC: True Unicode support for servers with UTF-8 channels
 - IRC: Ability to set a codepage for a server and to convert a text from ASCII to Unicode properly
 - Jabber: Ability to choose contacts's resource to send message
 - Jabber: Bookmarks storage support (XEP-0048)
 - Jabber: Last activity support (XEP-0012)
 - Jabber: Jabber search (XEP-0055)
 - Jabber: Proper data forms support (XEP-0004)
 - Jabber: Transport gateway recognition
 - Jabber: Vcard in jabber chatrooms
 - Jabber: Ability to revoke authorization from a contact
 - Jabber: Entity time support (XEP-0202)
 - Jabber: Ad-hoc commands implementation (XEP-0050)
 - Jabber: Traffic compression (XEP-0138)
 - Jabber: Full support for socks5-bytestreams filetransfers (XEP-0065)
 - Jabber: In band bytestreams filetransfers support (XEP-0047)
 - Jabber: Entity capabilities support (XEP-0115 v1.3)
 - Jabber: User moods (XEP-0107)
 - Jabber: User tunes (XEP-0118, via ListeningTo plugin)
 - Jabber: Personal eventing protocol support (XEP-0163)
 - Jabber: Proper priority support (inc. negative priority) and displaing, priority change without reconnect
 - Jabber: Combobox with most popular resources in options
 - Jabber: Redesigned options dialogs
 - Jabber: Chat state notifications support (XEP-0085)
 - Jabber: Self contact support in a contact list
 - Jabber: Show participants real jid, affiliation/role and status messages in group chat
 - Jabber: Privacy lists (XEP-0016)
 - Jabber: Brand new service discovery, transports discovery
 - Jabber: Remote controlling clients (XEP-0146)
 - Jabber: Roster editor + backup/restore feature
 - Jabber: Protocol status show in group chat
 - Jabber: Pre-filled text controls in change nickname + set topic dialogs in group chat
 - Jabber: Delayed delivery support (XEP-0203)
 - Jabber: XML Console
 - Jabber: Option to disable sharing OS version information
 - Jabber: Partial extended stanza addressing support (XEP-0033)
 - Jabber: Message receipts preliminary support (XEP-0184, experimental)
 - Jabber: XMPP ping support (XEP-0199)
 - Jabber: XMPP Basic Client 2008 (XEP-0211)
 - Jabber: XMPP Intermediate IM Client 2008 (XEP-0213)
 - Jabber: Redesigned group chat invitation dialog with ability to invite multiple users
 - Jabber: Show ban reason in group chat
 - Jabber: Folders plugin support
 - MSN: Offline messaging (send/receive)
 - MSN: SMS messaging (send/receive)
 - MSN: Passport 3.0 authentication
 - MSN: JPEG avatar reception
 - MSN: Any size avatar support
 - MSN: Robustness improvements to P2P connections
 - MSN: MSN Alerts
 - MSN: Unicode Hotmail Notifications
 - Yahoo: Yahoo Client 7.x protocol support (client identification, protocol version, supported services upgraded to support this)
 - Yahoo: Avatar code cleanup/rewrite.
 - Yahoo: Avatar improvements (new AVS Support, different file caching strategy)
 - Yahoo: Adding pingbacks to signal errors during login.
 - Yahoo: Using "First Name and Last Name" as the Nick when somebody adds us.
 - Yahoo: Adding E-mail count service support
 - Yahoo: New Icons from Angi
 - Yahoo: Use japan mail server for those who set options that they are using Japan servers

Bugfixes:
 - IRC: Special symbols and cyrillic/chinese/japanese characters were handled incorrectly
 - ICQ: Fixed disconnections on long messages
 - ICQ: Fixed peer-to-peer session cookie checking
 - ICQ: Fixed SMS message handling
 - ICQ: Applied fix for re-requesting authorization
 - ICQ: Fixed handling of message acks & status message replies from ICQ 6
 - ICQ: Fixed handling of malformed messages acks
 - ICQ: Minor fixes for Popup plugin support
 - ICQ: Minor protocol related tweaks
 - ICQ: Fixed possible lags caused by typing notifications (on slow connections)
 - ICQ: Fixed message handling (fixes bug used for stealth invisibility detection)
 - ICQ: Several fixes to Rate Level 2 handling - more propper handling of message responses
 - ICQ: Fixed possible crashes caused by malformed langpacks
 - Jabber: Proper message delivery verification support, no more timeouts
 - Jabber: Proper handling of conference nicknames, including storing nicks to a roster
 - Jabber: Fixed group chat deadlocks
 - Jabber: Fixed private messages in groupchats
 - Jabber: Fixed NTLM authentication
 - Jabber: Fixed owner and admin list handling in groupchats
 - Jabber: Fixed jabber status message reading
 - Jabber: Proper status and away message displaying in contact list if more then one JID's resource available
 - Jabber: Fixed freezing miranda in jabber search dialog
 - Jabber: Removed search validation via vcards
 - MSN: P2P file/avatar transfer issues
 - MSN: Message timeout issues
 - MSN: Fixed lost message issues
 - Yahoo: Buffer overflow in incoming IM
 - Yahoo: Lots of bug fixes


* New in 0.6.8
Bugfixes:
 - AIM: Fixed issue with outgoing messages with double quotes
 - AIM: Fixed issue with converting links in incoming messages
 - IRC: Fixed crash with "perform" command in IRC options tab
 - Jabber: Fixed auth error via SSL ("SSL negotiation failed")
 - Jabber: Fixed OS version detection under Windows Vista
 - MSN: Fixed idle mode support
 - MSN: Fixed typing notifications
 - MSN: Improved group handling
 - MSN: Improved file transfers


* New in 0.6.7
Bugfixes
 - Jabber: Fixed crash on exit when using Jabber
 - MSN: Uploading avatars was broken


* New in 0.6.6
Bugfixes
 - Fixed dragging/dropping file with non-locale characters into message window
 - Logging large chunks of data to disk could cause crash
 - Fetching events from the database sometimes failed
 - Sounds in message windows didn't play properly


* New in 0.6.5
Bugfixes
 - Update notification module not loaded correctly


* New in 0.6.4
Enhancements
 - Update notification added to notify of new Miranda IM releases
 - Improved dbTool and now supports language packs (translations)
 - Some cosmetic changes to the profile selection dialog

Bugfixes
 - "Read Message" hotkey opened contact list if no events were present
 - Translation fix in Find/Add error message
 - Improved UPnP support and disabled UPnP cleanup when no incoming connections available
 - Show file transfers correctly in message window
 - Improved UPnP router support
 - UPnP cleanup will not run if there are no incoming connections


* New in 0.6.3
Bugfixes
 - Pin to Desktop was broken
 - AIM: Auto response messages weren't shown as auto responses


* New in 0.6.2
Enhancements
 - Improved unicode support in path utilities
 - UPnP routers that use chunked encoding are now supported
 - Added ability to enable/disable sounds globally

Bugfixes
 - Tooltips on button controls displayed incorrectly in ANSI version
 - Enabling/disabling first group of sounds in options didn't enable apply button
 - Path in sound options was cut off for long paths
 - Some dialog backgrounds were not using system colors
 - Global hotkeys didn't work correctly
 - AIM: Messages were not received properly
 - AIM: Fixed formatting of outgoing unicode messages (AIM 5.9 was affected)
 - ICQ: Fixed compatibility issues with ICQ 6
 - ICQ: Fixed Meebo client detection


* New in 0.6.1
Enhancements
 - Added option to enable/disable UPnP support
 - Improved control/shift/enter behavior in chat windows

Bugfixes:
 - History button in chats didn't open history
 - Fixed network bind plugin compatibility issues with older plugins


* New in 0.6
Enhancements
 - Implemented UPnP support
 - Core support for memory operations, strings, utf8 support, threading
 - Tabbed options support
 - ICQ: GDI resources optimization for extended status icons
 - Jabber: Support for NTLM & MD5-DIGEST auth modes
 - MSN: Support for WLM8 direct transfers
 - MSN: File transfers added for the HTTP gateway mode
 - MSN: Improved keep-alive packets sending
 - Jabber: Ability to remove your account from the server
 - Jabber: Ability to resolve nick names for transports

Bugfixes:
 - AIM: Fix for file transfers
 - ICQ: Some fixes for avatars
 - IRC: Fix for nicknames which contain spaces
 - Jabber: Added language id to the login request ('en')
 - Jabber: Jabber crashes on very large images in vCards
 - Jabber: Fix for issues with backslashes in the transports names
 - Jabber: Fix for sending files to Pandion IM
 - MSN: Improved error 217 (contact already exists) processing.


* New in 0.5.1
Enhancements
 - ICQ: Added new session password API - allowing plugins like Secure Login to work better

Bugfixes:
 - Cannot create new profile through startup dialog (under NT4/95)
 - Crash reading language pack headers
 - Options dialog didn't activate if currently open when using the main menu item
 - Profile selector didn't show last modified time correctly
 - db3x driver text was cut off in profile selector dialog
 - AutoExec files were deleted after use instead of renaming
 - Allow use of '#' as the beginning character in a autoexec file
 - Typo in about dialog
 - AIM: Fixed login problems from previous login order change
 - AIM: Fixed utf8 sending for aim clients
 - AIM: Keepalive timer fixes
 - AIM: Changed the login order to force aol to send us a list on login
 - AIM: Changed group handling to not move manually added users to their actual group
 - AIM: Changed group handling to not lowercase all server-side group names
 - AIM: Added meebo client detection
 - AIM: Added adium client detection(beta adium only)
 - AIM: Modified the gaim/adium detection to show as only gaim detection
 - AIM: Fixed file transfer directory opening bug.
 - AIM: Apply button in options got enabled by default
 - ICQ: Fixed possible hang on exit
 - ICQ: Fixed avatars were not working when server port set to 0
 - ICQ: Made message parser more strict (fixes bug allowing stealth invisible client detection)
 - ICQ: Fixed Popup's unicode support cannot be used in ANSI mode even if available (caused empty Popups)
 - ICQ: Fixes possible buffer overflow with contact status change
 - ICQ: Fixed migration was not working at all (should not disconnect so often on server's upgrading)
 - ICQ: Fixed offline greeting cards were not processed properly
 - ICQ: Fixed small protocol glitch with reverse peer-to-peer connection
 - Yahoo: Fixed avatar upload bug


* New in 0.5
Enhancements:
 - Unicode support was introduced
 - Database can store the Unicode strings (in utf8 format), and save and return these strings as ANSI, UCS2 and UTF8 strings
 - Most core protocols can send, receive & process the information in Unicode
 - The contact lists can display nicks, names and statuses in Unicode (under NT)
 - Message editors can display any user information in Unicode, display and enter the Unicode messages;
 - User details can process names, addresses, etc in Unicode
 - Language packs can provide the valid translation for the Miranda's interface, even when the default codepage doesn't match the langpack codepage
 - Two Miranda distributions are available since 0.5: the ANSI (for Win95/98/ME) and the Unicode one (for NT4/Win2k/XP/Win2003)
 - The standard was designed for all contact list plugins, to simplify the support for sorting, storing, grouping contacts
 - png2dib plugin was inserted into the distribution to provide the core-level support for PNG files
 - Support for sending files with the Unicode names (not mappable into the current codepage)
 - AIM: AIM protocol now using Oscar
 - ICQ: Messaging support enhanced (P2P messaging supported)
 - ICQ: Direct Connection support rewritten (with P2P messaging and reverse file-transfers)
 - ICQ: Temporary Visible List support
 - ICQ: New Features page in options to configure extra features
 - ICQ: Custom statuses just like icq5 - needs clist_mw derivative (thx Big Muscle)
 - ICQ: New custom status icons (thx Angeli-ka)
 - ICQ: Enhanced Unicode & Ansi charsets support (each contact can have its own codepage)
 - ICQ: AIM cross-compatability (add/remove, search by mail, status, messaging, away messages)
 - ICQ: Secure MD5 login authentification
 - ICQ: Revoke authorization (Advanced Feature - see further) - removes you from contact's server-list
 - SRMM: RTL support for messages in Hebrew and some other languages.
 - Jabber: Avatars support (JEP-0008)
 - Jabber: Massive groupchat improvements, including private messages & invitations
 - MSN: Client version detection
 - MSN: Support for nudges
 - MSN: Support for some MSN Messenger 7.5 and Live Messenger 8.0 specifics
 - Yahoo: Ability to set your own avatar
 - Yahoo: Added new icons
 - Yahoo: Added address book and calendar links in the main menu
 - Yahoo: Added alerts support and link to the main menu
 - Yahoo: Added nick to Yahoo login information
 - Yahoo: Yahoo now uses new png2dib.dll services for avatar manipulation
 - Yahoo: Added Yahoo Japan support
 - Yahoo: Added buzz/nudge support
 - Yahoo: Offline IMs from blocked people get dropped
 - Yahoo: Added basic audible support
 - Yahoo: Yahoo File Transfer improvements

Bugfixes:
 - Clist classic: Right click on a tray icon results to the resource leak
 - ICQ: Our own contact in list now correctly handles events
 - ICQ: Proxy Gateway mode is working again
 - ICQ: File receiving from Trillian clients work again
 - ICQ: Message errors are now really displayed
 - ICQ: Fixed memory leak in avatar code
 - ICQ: File transfers with GnomeICU works now
 - ICQ: Fixed changing password in ICQ Details will not save it to DB if not there
 - ICQ: Fixed PING channel handling (caused connection drop)
 - ICQ: Fixed bug in changeinfo with translated listbox values
 - ICQ: Fixed error handling in avatar code for uploading avatar
 - ICQ: Fixed bug in Manage-Server list dialog, caused hang
 - ICQ: Fixed occasional losing of messages (message parsing was incomplete)
 - ICQ: Server-list management now stores all info - solves problems
 - ICQ: Fixed unknown errors during login were not reported sometimes
 - Jabber: resource names not UTF8 decoded
 - Jabber: people are trying to connect to jabber.org with empty usernames
 - MSN: Fix for the error 540 upon login, because of the invalid password hash calculation
 - MSN: Fixed the problem of locking the message sending queue by timeouts
 - MSN: Fixed disconnection issues for the HTTP gateway mode
 - MSN: Fixed some issues with the wrong Hotmail Inbox and Profile Editing URLs
 - MSN: Fix for error 911 inside switchboard threads
 - Yahoo: Fixed deletion of a buddy from your contact list
 - Yahoo: Made fixes to make more strings translatable
 - Yahoo: Fixed a bug that could crash srmm
 - Yahoo: Properly close the connections


* New in 0.4.0.3
Bugfixes:
 - ICQ: Fixed problem with sending and receiving messages.


* New in 0.4.0.2
Bugfixes:
 - AIM protocol uses TOC2 (TOC1 blocked by AOL)


* New in 0.4.0.1
Bugfixes:
 - Plugin options are not replaceable by a plugin
 - Sending files from the root directory added an extra '\'
 - Transparency focus issues in the contact list
 - Log didn't scroll to the bottom when showing avatar in message window
 - Trailing spaces removed from search by user id and email
 - Button control didn't always draw icons correctly
 - Sending files from the root folder used the incorrect path name
 - Contact list focus on mouse-over didn't work
 - Issues writing blobs to the database
 - AIM: aim: links didn't register correctly
 - ICQ: Renaming of server groups was not working properly - caused errors
 - ICQ: Avatar could not be deleted (the delete button did not work)
 - ICQ: File Transfers were not working properly in some cases (wrong cookie handling)
 - ICQ: Avatar formats were not recognized correctly
 - ICQ: Method of determining target dir in file receive was not solid enough
 - ICQ: Manage server-list dialog leaked memory
 - ICQ: Synchronize visibility items was not working properly
 - ICQ: Our avatar image was not linked to our ContactPhoto
 - ICQ: Fixed occasional crash on login (missing TLV validity checks)
 - ICQ: Fixed slow update of nicks when users imported from server-list
 - ICQ: Fixed auto info update mechanism, do not progress too fast, do not drop processing
 - ICQ: Fixed empty groups are always hidden in Manage Server List, cannot be used either
 - ICQ: Fixed occasional crash on avatar retrieval - limit size of image to the size of packet
 - ICQ: If our rate is high, ignore user requests for status msgs & user details (prevents disconnection)
 - ICQ: Added temporary solution for roughly translated ICQ 2003b russian
 - ICQ: Manage server-list dialog could display other contacts and could crash
 - ICQ: Basic search could search for bad uin - garbage can be in the string
 - Jabber: Miranda process do not die when shutdown
 - Jabber: XML specials in add contact
 - Jabber: Status-visibility for a contact not working correctly
 - Jabber: Cannot transfer File(s) between miranda/jabber to/from PSI or Exodus (or more)
 - MSN: No zero-termination after _snprintf (potential security issue)
 - MSN: Can't send messages to the MSN WebMessenger
 - MSN: Can't delete contact's directory for received files

Enhancements:
 - Prevent plugins from overriding the plugin options dialog
 - Prevent useless database writes
 - AIM: addbuddy link support
 - ICQ: If Update details from server is on, user group are also updated
 - ICQ: Changed System Uptime to Member since in my details
 - ICQ: Auth system recognizes & sends UTF-8 messages
 - ICQ: Miranda version signature improved (preparing for old signature removal in the future)
 - ICQ: Added better error detection for offline msgs receival process
 - ICQ: Made avatar handling more resilient to server errors
 - Jabber: Support for the chat plugin
 - Yahoo: Adding gaming status


* New in 0.4
Bugfixes:
 - Crashes after warning about unsuccessful search
 - ESC doesn't work in User Detail
 - Phrases with leading and trailing spaces not translateable
 - Incorrect Local time in Userinfo
 - CheckDlgButton didn't draw correctly if used after creation in button control
 - Offline users weren't always shown in Typing Notify Options
 - Ctrl+w closes message window
 - Moving a group outside the CLC causes a crash
 - Crash translating a menu
 - Scrollbar still appeared sometimes if XP skinning was enabled
 - Contact list control read-disk-on-paint bugs
 - Many database bug fixes (crashes, corruption)
 - Crash opening Find/Add dialog
 - No & sign in the Open File button on the File Transfer window
 - Visual defect in "Options\Contact List\Icons" when Expert options unchecked
 - AIM: Removing user from deny list didn't always update mode in Miranda
 - AIM: Fixed file transfers with Mac users
 - ICQ: Error alert blocked I/O
 - ICQ: Newly added contact with privacy setting is not hidden anymore
 - ICQ: Offline messages are no longer received older than existing ones
 - ICQ: Fixed authorisation reply
 - ICQ: Fixed contact transfer ack
 - ICQ: Now parses URL send ack correctly, no more timeout
 - ICQ: Now sending ack on contacts receive
 - ICQ: Fixed crash on receiving long message through P2P
 - MSN: Connection/login fixes
 - IRC: Many bug fixes
 - Yahoo: Much cleaner/better/stable code

Enhancements:
 - Database and contact list control moved to plugins
 - Relative paths for icons, sounds, and contact list background
 - Scroll through past messages with ctrl+up/dn in message window
 - New idle module to handle autoaway and protocol idleness
 - Pin to desktop option in Window options
 - Dim idle contacts option
 - Use windows colours option for contact list
 - New status bar options (hide bevel, hide gripper)
 - Database I/O improvements
 - Option to hide vertical scroll bar
 - Opening a URL blocked I/O
 - AIM: Show mobile users as 'on the phone'
 - MSN: Sending/receiving avatar support
 - MSN: Peer to peer support
 - ICQ: Added avatar tab to user-details dialog to show avatar
 - ICQ: My user-details now show more information & added idle since to ICQ tab
 - ICQ: Added full unicode message support (requires SRMM Unicode)
 - ICQ: Added support for sending and receiving Idle time
 - ICQ: Added reliable client identification
 - ICQ: Added support for avatar images (downloading & uploading).
 - ICQ: Added Grant authorisation option (send & recognize)
 - IRC: Support for secured connections using OpenSSL
 - IRC: Support for CTCP and DCC filetransfers and chats
 - IRC: New graphical user interface using Chat plugin
 - Jabber: Unicode support
 - Yahoo: Better Unicode support
 - Yahoo: New Buddy Search
 - Yahoo: File Transfer support
 - Yahoo: Stealth support (Yahoo v6 visibility list)
 - Yahoo: Idle support
 - Yahoo: Avatar support (retrieval only)


* New in 0.3.3
Bugfixes:
 - Fixed crash when closing history window with large history
 - IE was always used as the default browser if IE was open
 - Added option to set outgoing port range
 - Several memleak fixes
 - Improved proxy handling
 - Rare crash on opening options
 - AutoNA was not set correctly when Away was set
 - Visibilty list did not list all users
 - Icons in URL and message contact menus didn't update when icons changed
 - Reduce CPU usage in file trnasfer dialogs (less screen updates)
 - Many other bug fixes
 - AIM: Unable to save "Only reply to users in your contact list" option
 - ICQ: Failed to send or receive files from ICQ 2003b.
 - ICQ: Fixed a number of smaller memory leaks.
 - ICQ: Contact e-mail info was not displayed correctly.
 - ICQ: Failed to retrieve user details during certain circumstances.
 - ICQ: URL messages could disappear when sent through a Direct Connection.
 - ICQ: Nick name was not deleted from server list when local nick name was deleted.
 - ICQ: Server side contacts could reappear after being deleted if they were on the visible/invisible lists.
 - ICQ: Changing status while connecting had no effect.
 - ICQ: A bunch of other fixes the CVS changelog if you want the big list.
 - Jabber: Should offline all chatrooms when go invisible (because they are actually offline)
 - Jabber: Miranda won't exit if more than one groupchat windows are left open
 - Jabber: Wrong filename encoding in file sending (signed/unsigned problem)
 - Jabber: Crash on connect/disconnect caused by stale contacts associated with an unknown protocol
 - Jabber: Deleting groupchat temporary contact unintentionally closes the chatroom
 - Jabber: Presence is broadcast to chatroom that has denied our access
 - Jabber: Graceful exit while Miranda shutdown in the middle of file transfer
 - MSN: A port remained opened after the file trasnfer cancel
 - MSN: if a contact list is very long, all contacts could be shown in the Offline mode
 - MSN: When you set your own nickname with spaces, it appears in the options dialog URL-encoded (with %20 instead of a space char).
 - MSN: Opened switchboard sessions weren't closed when you go offline without closing Miranda.
 - MSN: File senging does not require to talk anymore
 - MSN: Contacts with leading digits in the e-mail were not processed properly
 - MSN: Many other bug fixes

Enhancements:
 - New user is typing API (supported by ICQ/MSN/Jabber/Yahoo)
 - Messaging module moved to a plugin with many UI changes (SRMM)
 - AutoAway can now set protocols away if the workstation becomes locked
 - Improved button control (bitmap support, flat button support)
 - Added options to disable systray icon flashing and adjusting blink time
 - Default icon packs are automatically loaded from disk if they exist
 - Added report bug menu item
 - Many other enhancements
 - AIM: Added user search capability
 - AIM: Send messages to groupchat users by double clicking name
 - AIM: Added file receive support
 - ICQ: Added support for sending and receiving Typing Notifications.
 - ICQ: Now accepts messages formatted in unicode (note: this wont solve the problem with displaying messages with multiple charsets).
 - IRC: Contacts on the contactlist
 - IRC: Hostmasks
 - IRC: Ignore system
 - IRC: Channelmanager
 - Jabber: Manual registration to Jabber services
 - Jabber: Can automatically remove contacts not in roster
 - Jabber: Invite and accept invitation to a groupchat
 - Jabber: Support composing message event (message typing notification)
 - Jabber: Send full JID (with resource name) with <message/> when appropriate
 - MSN: 'User is typing' support added
 - MSN: "Invite to chat" contact menu item is added.
 - MSN: 'block/unlock' feature is integrated with Options->Status->Visible
 - MSN: New gateway support


* New in 0.3.2
Bugfixes:
 - Buffer overrun in url dialogs
 - Options window was shown off screen if previously closed while minimized
 - Some button controls were not translatable
 - Fixed issues with duplicate protocols listed in the icons options
 - AIM: Login flood when creating new users
 - AIM: Automatically turn off server-side list support for list that are to large (AIM)
 - AIM: Crashed when truncating large packets
 - AIM: Crash parsing empty server-side list
 - AIM: Warn User menu in groupchat was always disabled
 - Jabber: Better disco/browse fallback scheme for groupchat browsing
 - Jabber: Undecoded room jid in groupchat log window title
 - Jabber: Connection thread can lingering around while in reconnect loop and Miranda exits
 - Jabber: Changing global statuses to an unsupported one shows correct icon now (a bug introduced again in 0.1.1.2)
 - Jabber: Initial status in chatroom not correct
 - Jabber: Crash when displaying x:data list-single that has no default selection
 - Jabber: Multi-line x:data field truncated to first line
 - Jabber: Adding contacts when already exist in clist with "Hidden" does not remove "Hidden"
 - Jabber: Won't send ASCII control chars that are invalid XML chars (replaced with spaces)
 - Jabber: Properly offline when set offline while connecting
 - Jabber: Initial data sometimes not shown on agent dialog
 - Jabber: Connection thread still not exit properly when Miranda exits
 - Jabber: Another change in setstatus/setawaymsg handling
 - Jabber: Password dialog change to modeless
 - Jabber: Discard whitespaces not enclosed by any  XML tags so that they won't waste buffer space
 - MSN: Cookies usage had been turned off, it means that you can logon automatically into MSN Messenger and simultaneously logon using Miranda under different account (thanks to Pixador).
 - MSN: WinInet.dll now gets unloaded from memory after login to use less memory.
 - MSN: Attemp to find/add a contact that already exists in your contact list resulted to strange error message.
 - MSN: Authorization problems when many MSN accounts are used in the same Miranda installation.
 - MSN: If a password contains non-alphabetical characters (like punctuation, ampersand, plus, etc) the MSNP8 login could return error 401 Unauthorized. MSNP7 login works Ok.
 - MSN: If a contact changes its status to Invisible, it's not possible to send messages to him/her anymore.
 - MSN: The popup displaying procedure was changed to avoid so called 'frozen popups'effect.
 - MSN: New MSN Menu item was added to edit user's MSN profile in a browser
 - MSN: Authorization problems when many MSN accounts are used in the same Miranda installation.
 - MSN: If a password contains non-alphabetical characters (like punctuation, ampersand, plus, etc) the MSNP8 login could return error 401 Unauthorized. MSNP7 login works Ok.
 - MSN: If a contact changes its status to Invisible, it's not possible to send messages to him/her anymore.
 - MSN: the popup displaying procedure was changed to avoid so called 'frozen popups'effect.
 - ICQ: Prevent your status messages being read when you are invisible.
 - ICQ: Small memory leak when sending an SMS.
 - ICQ: Fixed a dumb bug that caused random disconnections from the ICQ server.
 - ICQ: Cleaned up the code for searches and user info updates, should work better now.
 - ICQ: AIM users in your server contact list would get added locally with uin 0.

Enhancements
 - Docking to the left or right side of the screen only happens when CONTROL is held down.
 - Possible to prevent writing of single key to registry on startup.
 - Possible to specify ports for outgoing connections.
 - Loading large histories now shows window immediately.
 - AIM: Added option to edit display name.
 - Jabber: Groupchat admin functions.
 - MSN: The SSL autorization procedure was changed: now it uses Internet Explorer's proxy settings to log in. It also resolves problems with proxies that require authorization (previously you could see the error 407 in the network log when trying to logon). In this case MSN plugin tries automatically to apply the login and the password from the Options -> Network -> MSN.
 - MSN: Error diagnostic has been slightly enhanced.
 - MSN: New MSN Menu item was added to edit user's MSN profile in a browser.
 - MSN: MSNP7 support is deleted and this option is locked
 - MSN: Netmeeting support added
 - MSN: Option was added to launch a specific program when the new Hotmail arrives
 - ICQ: Added "missed message" notification.
 - ICQ: Added better error messages for message send failures.
 - ICQ: Messages now default to the most reliable delivery method available for a given contact.


* New in 0.3.1
Major changes:
 - IRC protocol plugin is now included in the installer

Bugfixes:
 - Fixed tooltips cutting off text in systray on newer shells
 - Removed some memory leaks
 - Many bug fixes relating to the away system
 - CPU went to 100% if resized to small
 - Possible XP theme corruption in toolbar image buttons
 - Find/Add dialog showed protocols that didn't support the find/add service
 - Rename contact menu item is only shown when menu is shown from the contact list
 - Netlib could cause 100% CPU usage during fast file transfers
 - Menu items could sometimes be placed in the wrong order

Enhancements:
 - Redesigned message dialog
 - Added a heap compactor to flush out memory every 5 minutes
 - All new default icons
 - You can now set a sound for outgoing message
 - Autoaway no longer pops up change status message dialog
 - Added a Global Status Icons setting under icons. This lets you
   set the default systray icon and global status menu icons.


* New in 0.3
 Major changes:
 - ICQ module has been moved to a separate plugin. You can now
   run Miranda IM without ICQ
 - Bundled support for ICQ, AIM, Jabber and MSN

 Bugfixes:
 - Reply quoted sometimes closed window
 - Much safer multithreading. This will help make Miranda IM more stable.
 - Several "crash on exit" bugs fixed
 - If only specific protocols are invisible don't show contact's as always
   visible if their protocol is not invisible
 - Strange behaviour in the Auto away feature
 - New add/authorization dialog
 - Always/Never visible settings is now mutually exclusive
 - If already away or in NA, don't try to resend away/NA, this fixes the
   problem with the NA dialog reshown every five seconds, also fixes flooding
   of NA status changes to other contacts
 - File Transfer Complete sound would play even if that never happened, added
   a few extra sounds for "failed" and "denied".
 - Smarter database: Miranda now checks your profile carefully before opening to ensure that it's in proper    working order
 - Since the database is so smart, it also checks to see if your disk drive has actually
   written out new information, if it hasn't it shuts down, protecting the profile from major
   corruption (total data loss of a profile infact)
 - At least 2 gazillion internal fixes too complicated to explain (we dont
   even know what we did ;))

 Enhancements:
 - UI improvements to the plugins options page
 - Search dialog now remembers last protocol used
 - Added possibility to delete user with Del key
 - Improved integration with XP themes
 - Added menu in URL receive dialog (open in new/current window/copy link)
 - Multi line tray tooltips
 - Netlib now creates log path if it doesn't exist
 - Several optimizations to make Miranda IM run even faster and more stable
 - Made it possible to close read status message dialog with escape
 - Improved some of the error messages to make them easier to understand


* New in 0.2.1
 - Sending messages to ICQ users who are in 'Invisible' mode does not work
   if 'Send messages slower, but with full acknowledgement' option is enabled.
 - Sending message to users with old ICQ versions sometimes does not work.


* New in 0.2
 - Support for SOCKS4, SOCKS5, HTTP and HTTPS proxies.
 - Improved stability.
 - Some general user interface changes.
 - New default icons.
 - Faster filetransfers.
 - Import contacts and history from other Miranda profiles.
 - Import contacts and history from Mirabilis ICQ 99a-2003a.
 - Support for more plugins (>120 plugins available for download!).
 - more than 160 other bug fixes and improvements!
 - Ability to store and download contacts from the ICQ servers.
 - Increased compatibility while communicating with other ICQ clients.
 - Many bug fixes related to file transfers.
 - Allow/don't allow direct connections.
 - Enable/disable 'Web aware'.
 - Don't allow unknown contacts to read your status message.
 - Optionally send requests for authorizations.
 - Optionally send 'You have been added' notifications.


* New in 0.1.2.1
 - Improved contact list with support for background images,
   nested groups and lots more
 - Nifty new context-sensitive help plugin
 - Send messages to many people at once
 - Drag-and-drop file sending
 - Improved search and icq whitepages search
 - HTTP proxy support for ICQ
 - Options dialog revamp. Shows Expert mode option
 - More bug fixes than you can shake giant redwood at


* New in 0.1.2
 - Connects to the new ICQ servers for much more reliable communication
 - Improved support for connecting to other instant messaging networks
 - New user details dialog box
 - File transfer that actually works
 - Supports an SMS messaging plugin
 - Supports a plugin to change your own details from within Miranda
 - URL Clicking Support in Split Message Dialog Plugin
 - More bug fixes than you can shake giant redwood at


* New in 0.1.1
 - Setting Status Messages. E.G. Away/Occupied/DND....
 - Visible/Invisible List. E.G. Be invisible to a specific user
 - Import Plugin can now import History in addition to Contacts
 - Language Pack Support
 - File Transfer Dialog Improved