summaryrefslogtreecommitdiff
path: root/NEWS
blob: a1a4a532a7686acc3858758f5f718895cd75a58d (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
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
NEW in 2.33.1 (02/02/2011)
=============

This is the first release in the gnome-2.34 branch. As you probably know, there
is no GNOME 2.34 planned, the next major release being 3.0.
We decided to make a bunch of releases containing backports of some new
features and bug fixes from 3.0. This will allow distributions not shipping
GNOME 3 yet to still bring some of the recent Telepathy and Empathy improvements
to their users.
We are continuing, of course, to work hard on 3.0 which stays our main
development branch.

The biggest changes in this release, compared to 2.32, is the port to latest
Folks release and the ability to search for contacts on the server.

Empathy is now also able to prompt you for your password when it's needed, rather
than requiring you to save it when you create the account. This needs the very
latest versions of connection managers (in some cases, unreleased versions).
Older connection managers will continue to work but you'll still have to save
passwords when creating accounts.

Dependencies:
 • folks ≥ 0.3.4
 • telepathy-glib ≥ 0.13.11
 • libnotify ≥ 0.7.0

Bugs fixed:
 - Fixed #586257, In Empathy, "F2" key should rename contacts (Kushal Das)
 - Fixed #637847, Adjust for Folks avatar and presence interface renames (Travis Reitter)
 - Fixed #637097, Port to latest folks API changes (Philip Withnall)
 - Fixed #626507, Connection error message is not shown completely (Robert Sajdok)
 - Fixed #634853, Empathy does not allow Yahoo server to be added to account. (Guillaume Desmottes)
 - Fixed #640411, Crash when trying to create an ICQ account (Guillaume Desmottes)
 - Fixed #635513, Message displayed TWICE (in chat msg overlay) when opening a chat window for unread msg (Guillaume Desmottes)
 - Fixed #639352, Notifications for login and logout need love (Guillaume Desmottes)
 - Fixed #606947, support Contact Search API (Emilio Pozuelo Monfort)
 - Fixed #640751, Mark a non-user-visible string as untranslatable. (Will Thompson)
 - Fixed #636613, Become a server SASL handler (Jonny Lamb)

NEW in 2.32.2 (18/11/2010)
=============

This release adds a '--with-ca-file' option to configure.
The default is to use the normal location for either Red Hat
or Debian, or fail if neither exists. Use --with-ca-file to force a
particular location (e.g. if your build system doesn't guarantee to have
the CA certificate bundle installed), or use --without-ca-file if your system
doesn't have a standard CA certificate store.

Two memory leaks have also been fixed which should drastically reduce empathy's
memory consumption on longer runs.

Bugs fixed:
 - Fixed #634197, [Patch] Make CA cert paths configurable (Brian Pepple)

NEW in 2.32.1 (15/11/2010)
=============

This release fixes some minor issues and updates a few translations.

Bugs fixed:
 - Fixed #631657, Empathy doesn't build with gcr-3 (Guillaume Desmottes)
 - Fixed #632806, Empathy 2.32.x needs to require libnotify < 0.7 (Guillaume Desmottes)
 - Fixed #632807, Empathy 2.32.x shouldn't support GTK 3 (Guillaume Desmottes)
 - Fixed #631455, window resizes irreversibly when perfoming a contact search (Guillaume Desmottes)

Translations:
 - Updated ca Translation (Gil Forcada)
 - Updated ca@valencia Translation (Carles Ferrando)
 - Updated crh Translation (Reşat SABIQ)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Mattias Põldaru)
 - Updated fi Translation (Ville-Pekka Vainio)
 - Updated ja Translation (Takayuki KUSANO)
 - Updated ko Translation (Changwoo Ryu)

Documentation translations:
 - Updated hu Documentation translation (Gabor Kelemen)

NEW in 2.32.0.1 (04/10/2010)
===============

This release in the stable 2.32 branches fixes various bugs and brings some
small improvements. We suggest distributions shipping GNOME 2.32 to use this version.
If it's too late for you, we strongly recommend that you backport at least these
two patches:

http://git.gnome.org/browse/empathy/commit/?h=gnome-2-32&id=045d3c82deb7d6288c9026c98dc1b836370864ed
without it newly created GTalk accounts won't be able to connect.

http://git.gnome.org/browse/empathy/commit/?h=gnome-2-32&id=6c7d6ae27283e2a54b97198baedfe9c26b812b46
which fixes a crash when trying to connect to some XMPP servers.

Dependencies:

 • GTK+ ≥ 2.22.0

Bugs fixed:
 - Fixed #631095, auth client crashes when trying to connect (Cosimo Cecchi)
 - Fixed #558802, show the "new message" icon regardless of focus, active tab (Guillaume Desmottes)
 - Fixed #593437, Should leave fullscreen mode when call is disconnected (Guillaume Desmottes)
 - Fixed #629782, doesn't check unique result (Guillaume Desmottes)
 - Fixed #629912, Better heuristic to pick default individual (Guillaume Desmottes)
 - Fixed #629922, Contacts list window triggers _NET_ACTIVE_WINDOW timestamp error from Metacity (Guillaume Desmottes)
 - Fixed #630107, update Empathy to deprecation changes in GTK+ 2.22 (Diego Escalante Urrelo)
 - Fixed #630276, Hitting redial doesn't clear error messages (Guillaume Desmottes)
 - Fixed #630427, Empathy Loses ContactInfo data it doesn't support in the UI (Guillaume Desmottes)
 - Fixed #631098, Always show status icon in contact right-click menu (for meta-contacts)
 - Fixed #630544, Refers to a nonexistent UI item (Milo Casagrande)
 - Fixed #631049, Recommended SIP provider no longer available (Milo Casagrande)

Translations:
 - Updated el Translation (Simos Xenitellis, Giannis Katsampirhs)
 - Updated es Translation (Jorge González)
 - Updated lt Translation (Žygimantas Beručka)
 - Updated nl Translation (Hannie Dumoleyn)
 - Updated sv Translation (Daniel Nylander)

Documentation translations:
 - Updated el Documentation translation (Michael Kotsarinis)
 - Updated hu Documentation translation (Gabor Kelemen)
 - Updated it Documentation translation (Milo Casagrande)

NEW in 2.32.0 (27/09/2010)
=============

Not a lot of code changes since 2.31.92 as we were in hard code freeze but we
still fixed 2 crashes.
Most of the work has been done by the awesome GNOME Translation Team. Thanks
to them Empathy 2.32.0 is translated in more than 30 languages.
See http://l10n.gnome.org/module/empathy/

Bugs fixed:
 - Fixed #629380, Double contacts after adding new contact in group "Ungrouped" (Philip Withnall)
 - Fixed #629736, Blacklist Haze's sip protocol (Guillaume Desmottes)
 - Fixed #629957, Failed assertion in contact_widget_details_feature_prepared_cb() (Guillaume Desmottes)
 - Fixed #630168, empathy-accounts assert failure: *** glibc detected *** /usr/bin/empathy-accounts: free(): invalid pointer: 0x0809d5b6 *** (Guillaume Desmottes)
 - Fixed #630214, File missing from POTFILES.in (Gabor Kelemen)
 - Fixed #630400, Untranslatable strings (Gabor Kelemen)
 - Fixed #630476, Typo in user guide: witn (Gabor Kelemen)

Translations:
 - Updated an Translation (Daniel Martinez Cucalon)
 - Updated ar Translation (Khaled Hosny)
 - Updated bg Translation (Damyan Ivanov)
 - Updated cs Translation (Marek Černocký)
 - Updated da Translation (Kenneth Nielsen)
 - Updated de Translation (Christian Kirbach)
 - Updated en_GB Translation (Bruce Cowan)
 - Updated et Translation (Mattias Põldaru)
 - Updated eu Translation (Inaki Larranaga Murgoitio)
 - Updated fr Translation (Claude Paroz)
 - Updated gl Translation (Fran Diéguez)
 - Updated he Translation (Yaron Shahrabani)
 - Updated hu Translation (Gabor Kelemen)
 - Updated it Translation (Milo Casagrande)
 - Updated ja Translation (Takayuki KUSANO)
 - Updated lt Translation (Žygimantas Beručka)
 - Updated nb Translation (Kjartan Maraas)
 - Updated pa Translation (A S Alam)
 - Updated pl Translation (Piotr Drąg)
 - Updated pt_BR Translation (Djavan Fagundes)
 - Updated pt Translation (Duarte Loreto)
 - Updated ro Translation (Lucian Adrian Grijincu)
 - Updated ru Translation (Yuri Myasoedov)
 - Updated sl Translation (Matej Urbančič)
 - Updated zh_CN Translation (Xhacker Liu, Aron Xu)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann, Christian Kirbach)
 - Updated es Documentation translation (Jorge González)
 - Updated fr Documentation translation (Claude Paroz)
 - Updated gl Documentation translation (Fran Diéguez)
 - Updated hu Documentation translation (Gabor Kelemen)

NEW in 2.31.92 (14/09/2010)
==============

The "I'm on a horse" release.

This is the GNOME 2.32 release candidate. A bunch of meta-contacts related
bugs have been fixed and the audio/video client has been improved to
reduce the bandwith used by the video stream.

We also use the stable API of the Conference, ServerTLSConnection and
TLSCertificate interfaces so you should upgrade to telepathy-gabble 0.9.18
if you want to use these features.

Bugs fixed:
 - Fixed #598394, Use network name for IRC account name (Guillaume Desmottes)
 - Fixed #628993, crash in empathy-auth-client (Cosimo Cecchi)
 - Fixed #609484, Impossible to add Yahoo Japan account. (Guillaume Desmottes)
 - Fixed #611107, account window stretches when facebook account selected (Guillaume Desmottes)
 - Fixed #622376, EmpathyLiveSearch matching algorithm could be smarter with words (Xavier Claessens)
 - Fixed #625575, when setting up a new account, hitting enter in the password field should "apply" (Cyril Roelandt)
 - Fixed #627819, the linking ui misses some contacts (Philip Withnall)
 - Fixed #628133, Linking dialog's live search should copy the one from the roster (Philip Withnall)
 - Fixed #628156, crash on startup with empathy 2.31.90 (Philip Withnall)
 - Fixed #628338, Refactor code to choose the best Persona to perform an action on (Philip Withnall)
 - Fixed #628376, Unlinking/editing links for an Individual is complicated (Philip Withnall)
 - Fixed #628377, Context menu name "Link…" is ambiguous (Philip Withnall)
 - Fixed #628596, Crash in individual_view_expand_idle_cb (Philip Withnall)
 - Fixed #628601, Untranslated strings in IM account setting dialog (Guillaume Desmottes)
 - Fixed #628681, Behave correctly on Individual removals and persona changes (Philip Withnall)
 - Fixed #628786, Add video noise filter to videosrc pipe (Alexey Fisher)
 - Fixed #628789, Add videomaxrate filter to prevent hi cpu usage. (Alexey Fisher)
 - Fixed #629134, Typo in empathy-tls-dialog.c (Guillaume Desmottes)
 - Fixed #629565, use stable API for ServerTLSConnection, TLSCertificate and Conference (Simon McVittie)
 - Fixed #629594, paste pastes in the 'send' box when the 'find' box is selected (Guillaume Desmottes)
 - Fixed #627238, gtk_widget_event: assertion `WIDGET_REALIZED_FOR_EVENT (widget, event)' failed (Felix Kaser)
 - Fixed #628153, Crash in individual_store_contact_update() (Philip Withnall)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated cs Translation (Marek Černocký, Petr Kovar)
 - Updated da Translation (Kenneth Nielsen)
 - Updated de Translation (Christian Kirbach)
 - Updated en_GB Translation (Bruce Cowan, Philip Withnall)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Mattias Põldaru)
 - Updated fi Translation (Timo Jyrinki)
 - Updated fr Translation (Claude Paroz)
 - Updated gl Translation (Fran Diéguez)
 - Updated he Translation (Yaron Shahrabani)
 - Updated hu Translation (Gabor Kelemen)
 - Updated it Translation (Milo Casagrande)
 - Updated ja Translation (Takayuki KUSANO)
 - Updated nb Translation (Kjartan Maraas)
 - Updated pa Translation (A S Alam)
 - Updated pt_BR Translation (Henrique P. Machado)
 - Updated pt Translation (Duarte Loreto)
 - Updated sl Translation (Matej Urbančič)
 - Updated sv Translation (Daniel Nylander)
 - Updated ta Translation (Dr.Tirumurti Vasudevan, drtv)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

Documentation translations:
 - Updated es Documentation translation (Jorge González)
 - Updated fr Documentation translation (Bruno Brouard)
 - Updated gl Documentation translation (Fran Diéguez)

NEW in 2.31.91.1 (02/09/2010)
================

The "Huggy Hippo" release.

A small release so our Ubuntu friends will be able to test latest fixes during
their Empathy bug day. See [1] if you want to participate.

[1] https://wiki.ubuntu.com/UbuntuBugDay/20100902

Bugs fixed:
 - Fixed #627916, Can't build with GTK3 any more (Guillaume Desmottes)
 - Fixed #628106, Groups are not expanded when reconnecting (Philip Withnall)
 - Fixed #628315, Can't add video to a audio call (Guillaume Desmottes)
 - Fixed #628421, Wrong AV icon in the contact list (Philip Withnall)
 - Fixed #628433, Call menu accessible from linking dialogue (Philip Withnall)
 - Fixed #628464, Crash in log_manager_got_chats_cb
 - Fixed #628481, Double contact tooltips (Philip Withnall)

Translations:
 - Updated el Translation (Michael Kotsarinis)
 - Updated en_GB Translation (Philip Withnall)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Mattias Põldaru)
 - Updated gl Translation (Fran Diéguez)
 - Updated hu Translation (Gabor Kelemen)
 - Updated pa Translation (A S Alam)
 - Updated sl Translation (Matej Urbančič)
 - Updated sr@latin Translation (Branko Kokanović)
 - Updated sr Translation (Branko Kokanović)

Documentation translations:
 - Updated el Documentation translation (Simos Xenitellis, Michael Kotsarinis)

NEW in 2.31.91 (30/08/2010)
==============

Loads of meta-contacts related bugs have been fixed. There are still
issues but meta-contacts should be now more usable.

Thanks to Cosimo Cecchi, Empathy is now able to ask user to manually approve
untrusted TLS certificates. Note that you'll need telepathy-gabble 0.9.17 or
newer to use this feature.

The IRC account widget has been improved and it is now possible to create IRC
accounts using the assistant.

Dependencies:

 • folks ≥ 0.1.15
 • gnutls ≥ 2.8.5
 • gcr ≥ 2.26.0
 • nautilus-sendto ≥ 2.31.7 (optional)
 • champlain ≥ 0.7.1 (optional)

Bugs fixed:
 - Fixed #460647, Support metacontacts (Travis Treitter, Philip Treitter)
 - Fixed #588243, Pre-defined IRC channel list is way too long (Guillaume Desmottes)
 - Fixed #596086, initial empathy account wizard (Welcome Screen) does not offer IRC as an account (Guillaume Desmottes)
 - Fixed #608140, dragging and dropping a chat tab hides the original window (Guillaume Desmottes)
 - Fixed #611701, Should cope better with dialog loading (Guillaume Desmottes)
 - Fixed #623164, Accelerator clashes in account dialog (Guillaume Desmottes)
 - Fixed #624353, Clicking Add in the accounts dialog quickly populates the new account dialog with current details (Guillaume Desmottes)
 - Fixed #626031, Update nautilus-sendto dep (Guillaume Desmottes)
 - Fixed #626544, Add unlinking UI for Individuals (Philip Withnall)
 - Fixed #626715, Linking UI: should display more info about the persona (Philip Withnall)
 - Fixed #626728, Add EmpathyIndividualWidget (Philip Withnall)
 - Fixed #626848, Allow interactive TLS certificate verification (Cosimo Cecchi)
 - Fixed #627219, Link dialog search doesn't work (Philip Withnall)
 - Fixed #627228, Empathy completely ignores local-pending contacts without a valid 'actor' handle (Guillaume Desmottes)
 - Fixed #627242, Some contacts stay in the contact list once disconnected (Travis Treitter)
 - Fixed #627246, Crash in individual_store_add_individual at empathy-individual-store.c line 357 (Philip Withnall)
 - Fixed #627360, "Information" of a meta contact is too big for the screen (Philip Withnall)
 - Fixed #627500, Linking dialog is confused when selecting personas (Felix Kaser)
 - Fixed #627587, After upgrade to 2.31.90 (from 2.31.6) empathy does not list users of irc chat (Guillaume Desmottes)
 - Fixed #627706, Use the Individual.personas_changed signal (Philip Withnall)
 - Fixed #627715, Linking dialog: move personas using DnD (Philip Withnall)
 - Fixed #627728, EmpathyContact avatar cleanups (Philip Withnall)
 - Fixed #627786, [PATCH] Fix a reference and signal leak (Travis Treitter)
 - Fixed #627802, when hovering over a contact I get tons of criticals (Sjoerd Simons)
 - Fixed #627917, the information popup looks strange recently (Philip Withnall)
 - Fixed #627930, Disallow linking local-xmpp contacts in the UI (Philip Withnall)
 - Fixed #628011, Crash when trying to unlink contacts (Philip Withnall)
 - Fixed #628062, Add translator comments (Philip Withnall)
 - Fixed #628063, Remove markup from translatable strings (Guillaume Desmottes)
 - Fixed #628064, Miscellaneous string fixes (Philip Withnall)
 - Fixed #628078, Use libchamplain 0.7.1 or newer for the map plugin (Jiri Techet)
 - Fixed #628121, Should pick an online persona when starting a chat (Philip Withnall)
 - Fixed #628123, Linking UI checkbox update problem (Philip Withnall)
 - Fixed #628124, Disallow activating group rows in the linking dialogue (Philip Withnall)
 - Fixed #628320, Make the Link button in the linking dialogue only sensitive if changes have been made (Philip Withnall)
 - Fixed #614884, [PATCH] allow building empathy without eds (Saleem Abdulrasool)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated cs Translation (Petr Kovar)
 - Updated da Translation (Kenneth Nielsen)
 - Updated el Translation (Michael Kotsarinis)
 - Updated en_GB Translation (Philip Withnall)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Ivar Smolin, Mattias Põldaru)
 - Updated gl Translation (Fran Diéguez)
 - Updated he Translation (Yaron Shahrabani)
 - Updated hu Translation (Gabor Kelemen)
 - Updated ja Translation (GLSJPN_Etsuko)
 - Updated kk Translation (Baurzhan Muftakhidinov)
 - Updated nb Translation (Kjartan Maraas)
 - Updated sl Translation (Matej Urbančič)
 - Updated sr@latin Translation (Branko Kokanović)
 - Updated sr Translation (Branko Kokanović)
 - Updated sv Translation (Daniel Nylander)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

Documentation translations:
 - Updated fr Documentation translation (Bruno Brouard)

NEW in 2.31.90 (18/08/2010)
==============

The "Dissociative identity disorder" release.

Dependencies:

 • telepathy-glib ≥ 0.11.13
 • telepathy-logger ≥ 0.1.5
 • folks ≥ 0.1.13

Thanks to the hard work of Philip Withnall and Travis Treitter, Empathy
finally gained meta-contacts support! There is still lots of work to do but
most the pieces are now in place. You can use the linking dialogue to
merge similar contacts together.

This is still in very early stage so some regressions have to be expected. If you
experience any please check for existing bug reports before reporting.
Most of the them should be filed using the 'Meta Contacts' component [1].

But meta-contacts support is the not the only new feature in this release!
Empathy should now report more useful error messages when failing to connect.
The preferences window gained an option to disable logging of chats
and the 'Details' pane of the call UI now displays information about the
candidates used to stream the audio/video data.

[1] https://bugzilla.gnome.org/buglist.cgi?product=empathy&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&component=Meta%20Contacts

Bugs fixed:
 - Fixed #523895, Use ConnectionError for better error reporting (Guillaume Desmottes)
 - Fixed #567858, Logging should be optional (Guillaume Desmottes)
 - Fixed #621090, Live search does not show offline contacts (Felix Kaser)
 - Fixed #621642, live search should display "no match found" if thats the case (Felix Kaser)
 - Fixed #621643, the treeview should have the default focus (Felix Kaser)
 - Fixed #622714, 'previous conversations' on a contact brings up generic dialog (Guillaume Desmottes)
 - Fixed #623139, Should use TpSimpleHandler to handle FT channels (Guillaume Desmottes)
 - Fixed #623934, follow LC_TIME preferred time format when printing time and date (Nicolò Chieffo)
 - Fixed #624062, GPS data precision (Guillaume Desmottes)
 - Fixed #624344, details pane: display FsCandidate info (Guillaume Desmottes)
 - Fixed #625641, Crash in g_value_array_free, valuearray_simple_free at dbus-gvalue-utils.c line 790 (Philip Withnall)
 - Fixed #625675, freenode should be the default irc network when creating an irc account (Bilal Akhtar)
 - Fixed #625828, No custom presence message in tooltip (Philip Withnall)
 - Fixed #625950, Remove "Ubuntu servers" from irc channel list (Brian Curtis)
 - Fixed #626009, [PATCH] Allow selection of persona to chat to (Philip Withnall)
 - Fixed #626041, Fix an assertion failure in the filtering code due to show-offline changes (Philip Withnall)
 - Fixed #626114, gcc warning fixes (Philip Withnall)
 - Fixed #626130, Add linking UI for Individuals (Philip Withnall)
 - Fixed #626162, No audio/video icon in the contact list (Philip Withnall)
 - Fixed #626552, Sporadic tree model warnings upon initial fill in Empathy (Philip Withnall)
 - Fixed #626600, Make use of TpAccountChannelRequest (Guillaume Desmottes)
 - Fixed #626602, Add support for new errors (Guillaume Desmottes)
 - Fixed #626620, Log In button is not enabled after all details are entered while creating IRC account (Guillaume Desmottes)
 - Fixed #626630, Use TpAccountChannelRequest to request text channels (Guillaume Desmottes)
 - Fixed #626636, Should use TpCapabilities to get RCC (Guillaume Desmottes)
 - Fixed #626992, Back and Forward buttons in Previous conservations window are reversed (Guillaume Desmottes)
 - Fixed #626994, Rename Back and Forward buttons,in Previous Conservations > Search Tab, to Previous and Next (Guillaume Desmottes)
 - Fixed #627165, Use tp-glib's user action API (Guillaume Desmottes)

Translations:
 - Updated es Translation (Jorge González)
 - Updated gl Translation (Fran Diéguez)
 - Updated he Translation (Yaron Shahrabani)
 - Updated nb Translation (Kjartan Maraas)
 - Updated pa Translation (A S Alam)
 - Updated ru Translation (Leonid Kanter)
 - Updated sl Translation (Matej Urbančič)
 - Updated sv Translation (Daniel Nylander)
 - Updated zh_CN Translation (Funda Wang)

NEW in 2.31.6 (02/08/2010)
=============

The « Oh, and the toilets are free. Mind the gap please. » release.

Empathy now depends on libfolks ≥ 0.1.11. This doesn't introduce any
user-visible changes yet, but is the first step towards introducing
meta-contact support to Empathy.

The audio/video window now has a "details" pane containing some information
about the call.

Bugs fixed:
 - Fixed #599166, Add a "details" pane in the sidebar (Guillaume Desmottes)
 - Fixed #621629, live-search: should select first matching contact (Felix Kaser)
 - Fixed #623714, Rebase Empathy upon libfolks (Travis Treitter, Philip Withnall)
 - Fixed #624268, Empathy crash when opening a chat (Guillaume Desmottes)
 - Fixed #624462, Empathy segv in event_manager_add (Marc-Antoine Perennou)
 - Fixed #624599, show the date in messages coming from history (Nicolò Chieffo)
 - Fixed #624650, no more GtkNotebookPage in GTK+ 3.0 (Danielle Madeley)
 - Fixed #625826, EmpathyMapView should be a GtkWindow (Guillaume Desmottes)
 - Fixed #624412, control centre plugin no longer builds against recent gnome-c-c (Danielle Madeley)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated de Translation (Mario Blättermann)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Mattias Põldaru)
 - Updated gl Translation (Fran Diéguez)
 - Updated he Translation (Yaron Shahrabani)
 - Updated nn Translation (Torstein Adolf Winterseth)
 - Updated sl Translation (Andrej Žnidaršič)
 - Updated zh_CN Translation (Yunqiang Su, Aron Xu)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

Documentation translations:
 - Updated gl Documentation translation (Fran Diéguez)
 - Updated zh_CN Documentation translation (Aron Xu)

NEW in 2.31.5.1 (13/07/2010)
===============

A small release fixing detection of libnm-glib which was accidentally
broken in 2.31.5.

Bugs fixed:
 - Fixed #624202, empathy requires libnm_glib instead of libnm-glib (Laurent Bigonville)

Translations:
 - Updated gl Translation (Fran Diéguez)
 - Updated he Translation (Yaron Shahrabani)

NEW in 2.31.5 (12/07/2010)
=============

The "Please popup chats in my face!" release.

Empathy finally gained an option to automatically present incoming events
rather than making the status icon blink.

The notifications bubbles now contain more buttons (if your notify server
supports actions) allowing you to quickly accept or decline incoming events.

The audio/video client now lives in its own process: 'empathy-av'.

Empathy can now build with GTK+ 3. If GTK+ 3 is present during configure it
will be used and Empathy will requier updated versions of other dependencies:
  - libcanberra-gtk3 ≥ 0.25
  - libnotify ≥ 0.5.1
  - libunique ≥ 2.90.1
  - WebKitGTK+ ≥ 1.3.2 (optional)
  - nautilus-sendto ≥ 2.90.0 (optional)
If GTK+ 3 is not detected or if --enable-gtk3=no is passed to configure, then
GTK+ 2 is used and the other dependencies are unchanged.


Bugs fixed:
 - Fixed #585914, Notification icon must be clicked before user can see new messages (Guillaume Desmottes)
 - Fixed #597124, Should make better use of libnotify actions (Guillaume Desmottes)
 - Fixed #599161, Audio/Video client should be a separated process (Guillaume Desmottes)
 - Fixed #617405, Empathy's short (menu) description should focus on its use, not the technology (Guillaume Desmottes)
 - Fixed #621753, Should be able to build with GTK+3 (Guillaume Desmottes)
 - Fixed #622729, duplicated messages when opening chat (Guillaume Desmottes)
 - Fixed #623054, Should re-add data/org.gnome.Empathy.gschema.xml.in to POTFILES.in (Danielle Madeley)
 - Fixed #623112, Bip backlog are not displayed any more (Guillaume Desmottes)
 - Fixed #623117, Debug window should look for TP clients (Guillaume Desmottes)
 - Fixed #623358, Use TpSimpleHandler to handle text channels (Guillaume Desmottes)
 - Fixed #623396, Fixed some leaks (Guillaume Desmottes)
 - Fixed #623679, /join broken (Guillaume Desmottes)
 - Fixed #623756, empathy-CRITICAL **: empathy_chatroom_is_always_urgent: assertion `EMPATHY_IS_CHATROOM (chatroom)' failed (Sjoerd Simons)
 - Fixed #623817, Sync man pages with Debian (Laurent Bigonville, Guillaume Desmottes)
 - Fixed #623914, since tp-logger history is shown as normal messages in adium themes (Guillaume Desmottes)
 - Fixed #623937, empathy -h does not start hidden (Guillaume Desmottes)
 - Fixed #623972, Toggling [ ] Enabled in the accounts dialog with the keyboard doesn't work (Will Thompson)
 - Fixed #624054, Fix a memory leak in EmpathyAvatar (Philip Withnall)

Translations:
 - Updated es Translation (Jorge González)
 - Updated et Translation (Ivar Smolin)
 - Updated gl Translation (Fran Diéguez)
 - Updated he Translation (Yaron Shahrabani)
 - Updated nb Translation (Kjartan Maraas)
 - Updated sl Translation (Matej Urbančič)

NEW in 2.31.4 (28/06/2010)
=============

A lot of new things in this release!

Empathy now has an awesome contact live search feature.
See http://kaserf.blogspot.com/2010/06/empathy-live-search.html for details.

Empathy doesn't log messages any more but relies on a new component,
the telepathy-logger, to do so. As a result the feature allowing you to tag
contacts as favourites is now built-in.

The contact list and status icon are now a proper Telepathy Approver. That
means external applications can now approve channels as well and Empathy will
handle them nicely.

This release makes a few steps forward to the bright GNOME 3 future by removing
deprecated GTK+ symbols and switching from GConf to GSettings.

Dependencies:

* telepathy-logger ≥ 0.1.2 (0.1.3 recommended)
* telepathy-glib ≥ 0.11.7
* libunique ≥ 0.1.2
* GTK+ ≥ 2.21.2

Bugs fixed:
 - Fixed #586476, Use accessor functions instead direct access (Danielle Madeley)
 - Fixed #588922, Empathy should use ContactInfo (Xavier Claessens)
 - Fixed #589225, We should check if the contact supports vnc stream tube for Share my desktop (Guillaume Desmottes)
 - Fixed #599158, Contact list and status icon should be an Approver (Guillaume Desmottes)
 - Fixed #608166, Add contacts live search bar (Felix Kaser, Xavier Claessens)
 - Fixed #610956, Should depend on telepathy-logger (Guillaume Desmottes)
 - Fixed #616362, Port Empathy to GSettings (Danielle Madeley)
 - Fixed #619873, search-as-you-type should only match beginnings of words (Xavier Claessens)
 - Fixed #620903, some messages get dropped when using adium themes (Guillaume Desmottes)
 - Fixed #621023, empathy does not set geoclue requirements before asking for address/position (Laurent Bigonville)
 - Fixed #621089, The live search don't always have focus in main window (Xavier Claessens)
 - Fixed #621409, empathy-2.30.1.1: tests fail (Guillaume Desmottes)
 - Fixed #621545, Stable empathy passes GTK_DISABLE_SINGLE_INCLUDES and doesn't require libunique that is fine with that (Xavier Claessens)
 - Fixed #621703, Here come a couple of UI tweaks (Will Thompson)
 - Fixed #621789, crash when closing chat with still-open notification bubble (Guillaume Desmottes)
 - Fixed #621797, Doesn't display outgoing message (Guillaume Desmottes)
 - Fixed #621894, Should port to new tp-logger API (Guillaume Desmottes)
 - Fixed #621998, Should stop using ShareWithTube() (Guillaume Desmottes)
 - Fixed #622201, Can't connect chatroom if space after adress (Guillaume Desmottes)
 - Fixed #622266, Should decide which default font to use for chat view (Xavier Claessens)
 - Fixed #622273, Crash when closing the log viewer while searching (Guillaume Desmottes)
 - Fixed #622368, Audio/Video: Use TpSimpleHandler (Guillaume Desmottes)
 - Fixed #622370, Should bold dates having logs (Guillaume Desmottes)
 - Fixed #622381, Debug dialog: display Logger logs (Guillaume Desmottes)
 - Fixed #622491, port EmpathyMainWindow to GtkWindow subclass (Danielle Madeley)
 - Fixed #622557, port EmpathyPreferences to GtkDialog subclass (Danielle Madeley)
 - Fixed #622578, Remove MC4 import (Guillaume Desmottes)
 - Fixed #622714, 'previous conversations' on a contact brings up generic dialog (Guillaume Desmottes)

Translations:
 - Updated eo Translation (Kristjan Schmidt)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Mattias Põldaru)
 - Updated fr Translation (Claude Paroz)
 - Updated gl Translation (Fran Diéguez)
 - Updated he Translation (Yaron Shahrabani)
 - Updated lv Translation (Rudolfs Mazurs)
 - Updated nb Translation (Kjartan Maraas)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

NEW in 2.31.3 (07/06/2010)
=============

The "Curtain required call" release.

This new release brings significant improvements to the spell checker.
It should also fix connection issues with Facebook accounts. If you
experienced issues with previous versions you should recreate your account and
give it another try.

Empathy now depends on telepathy-glib 0.11.6.

Bugs fixed:
 - Fixed #520207, Edit favorite button doesn't work (Guillaume Desmottes)
 - Fixed #579812, Use avatar data/cache from TpContact (Xavier Claessens)
 - Fixed #604159, Spell checker breaks words incorrectly (on apostrophes, for example) (Mike Ruprecht)
 - Fixed #611466, "Applications->Internet->Empathy IM client" title is sub-optimal (Paul Sladen)
 - Fixed #611894, Add option to make chatroom "always urgent" (Jonas Bonn)
 - Fixed #612523, display protocol names for configured accounts in the debug window (Danielle Madeley)
 - Fixed #616603, Should use tp-glib API to get avatar requirements (Xavier Claessens)
 - Fixed #616616, Possible to open multiple accounts dialog (Danielle Madeley)
 - Fixed #617971, Empathy silently fails importing contacts from Pidgin (Guillaume Desmottes)
 - Fixed #618993, Fix various channel handling issues (Guillaume Desmottes)
 - Fixed #619378, Fix contact menu items' capitalization (Gabriel Burt)
 - Fixed #619488, EmpathyTpContactFactort should be killed (Xavier Claessens)
 - Fixed #619489, EmpathyContactMonitor should be killed (Xavier Claessens)
 - Fixed #619678, "Invite" button not marked for translation (Guillaume Desmottes)
 - Fixed #619701, Avatar chooser can enter infinite loop (Xavier Claessens)
 - Fixed #619702, configure script not compatible with dash as /bin/sh (Simons McVittie)
 - Fixed #619736, crash on 0-byte file in log search (Robert McQueen)
 - Fixed #619862, "Network error" on connecting to Facebook Chat (Guillaume Desmottes)
 - Fixed #619863, "Previous Conversations" Search entry is not activatable (Guillaume Desmottes)
 - Fixed #619980, empathy hangs with high cpu load when changing avatar (Xavier Claessens)
 - Fixed #620439, "Join favorites" should deal better with connecting accounts (Guillaume Desmottes)
 - Fixed #620474, Status reported by account dialog is wrong in connman mode (Rob Bradford)
 - Fixed #620476, accounts_dialog_update_status_infobar mixes const and allocated strings for message (Rob Bradford)
 - Fixed #620657, Empathy should not requires that geoclue providers support updates (Laurent Bigonville)
 - Fixed #620760, Switching from sending video to just preview makes my local preview jump out into its own window (Guillaume Desmottes)

Translations:
 - Updated es Translation (Jorge González)
 - Updated et Translation (Mattias Põldaru)
 - Updated gl Translation (Fran Diéguez)
 - Updated he Translation (Yaron Shahrabani)
 - Updated nb Translation (Kjartan Maraas)
 - Updated nl Translation (Wouter Bolsterlee, Hannie Dumoleyn)
 - Updated th Translation (Sira Nokyoongtong)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann)
 - Updated es Documentation translation (Jorge González)

NEW in 2.31.2 (24/05/2010)
=============

The "brand-new Telepathy store: http://is.gd/cjoQ8" release.

Empathy now uses icons from gnome-icon-theme 2.30. You should consider
to upgrade to this version if needed.

Bugs fixed:
 - Fixed #606738, empathy_dispatcher_join_muc: assertion failed: (connection_data != NULL) when joining favorites rooms while account is connecting (Guillaume Desmottes)
 - Fixed #617909, Should call gtk_builder_set_translation_domain on GtkBuilder UI components (Rob Bradford)
 - Fixed #618401, Empathy should use port 8001 to connect to freenode irc (Brian Curtis)
 - Fixed #618753, In the preference dialog, "Automatically _connect..." and  the "_Close" button conflict. (ekspiulo)
 - Fixed #618883, IRC account: don't allow to save changes when editing network details (Guillaume Desmottes)
 - Fixed #618969, Incomplete localisation of g-c-c module (Rob Bradford)

Translations:
 - Updated cs Translation (Petr Kovar)
 - Updated en@shaw Translation (Thomas Thurman)
 - Updated gl Translation (Fran Diéguez)
 - Updated id Translation (Andika Triwidada)
 - Updated nb Translation (Kjartan Maraas)
 - Updated si Translation (Danishka Navin)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

NEW in 2.31.1 (04/05/2010)
=============

The "This is not the calendar-based joke you're looking for" release.

This the first release in the new 2.31 cycle. You should continue to use
2.30.x releases for now if you don't feel adventurous.

Empathy now depends on telepathy-glib 0.11.3 and GTK+ 2.20.0.

This new releases now uses status icons from your icon theme.
The conversation window is now able to "undo" the closing of a tab.


Bugs fixed (since 2.30.1):
 - Fixed #539765, Jabber contacts in the jabber roster with subscription=none are not shown (Guillaume Desmottes)
 - Fixed #579813, Use capabilities from TpContact (Guillaume Desmottes)
 - Fixed #579936, Different icon for hidden status
 - Fixed #588955, Dont steal focus when join favourites clicked
 - Fixed #598446, Use GtkSpinner (Xavier Claessens)
 - Fixed #599162, Should use TpContact get Location (Guillaume Desmottes)
 - Fixed #602420, Should use status icons from the theme (Guillaume Desmottes)
 - Fixed #602937, Can't display video preview when there is no call (Guillaume Desmottes)
 - Fixed #603606, Can't stop sending video to the echo bot
 - Fixed #604475, new messages after a long time shouldnt be wrapped with the old ones (Felix Kaser)
 - Fixed #607446, Support the append hint for notifications (Nicolò Chieffo)
 - Fixed #608104, Use clear icon inside password entry (Guillaume Desmottes)
 - Fixed #609823, the text in the infobar should stick to the left (Felix Kaser)
 - Fixed #609832, “Undo close tab” would be nice. (Jonny Lamb)
 - Fixed #610477, should hang up calls gracefully rather than calling StreamHandler.Error() (Guillaume Desmottes)
 - Fixed #612020, Empathy fails to initiate a audio/video call over XMPP (Olivier Crête)
 - Fixed #612185, Remove check for GTK version once we hard dep on 2.20 (Xavier Claessens)
 - Fixed #612390, Add icon close to the People Nearby group
 - Fixed #612409, Should depend on GTK+ 2.20
 - Fixed #612864, Keep ordering of contacts consistent (Jonny Lamb)
 - Fixed #612949, contact list is empty for a jabber account with a lot of contacts (Guillaume Desmottes)
 - Fixed #613043, Should use Account.Interface.Avatar to set avatar (Guillaume Desmottes)
 - Fixed #613044, Should set Account.Nickname instead of calling SetAlias (Guillaume Desmottes)
 - Fixed #613243, Join room should be greyed out for AIM
 - Fixed #613382, Previous/Next Tab menu items aren't disabled if at the first/last tab and gtk-keynav-wrap-around is 0 (Aaron Brown)
 - Fixed #613558, make People Nearby a fake group like Favourites and Ungrouped
 - Fixed #613583, Should use tp_g_signal_connect_object instead of empathy_signal_connect_weak (Guillaume Desmottes)
 - Fixed #613603, [patch]Empathy should allow users to toggle auto-away mode on/off (Christian Kampka)
 - Fixed #613930, empathy incorrectly updates our own IRC nick for /me (Guillaume Desmottes)
 - Fixed #614002, Shouldn't request RoomList channel if not supported by connection (Guillaume Desmottes)
 - Fixed #614012, New contacts don't appear on the map (Guillaume Desmottes)
 - Fixed #614052, Show contacts' status messages in compact mode (Will Thompson)
 - Fixed #614162, use JID for contact list if the alias of a contact is empty (Felix Kaser)
 - Fixed #614236, Stop using NewChannel to get groups (Guillaume Desmottes)
 - Fixed #614375, People Nearby group is gone if I don't build with tpl (Guillaume Desmottes)
 - Fixed #614524, MUC contacts now appear as "Ungrouped"
 - Fixed #614562, Contacts with no status message (e.g. IRC MUCs) have "(null)" as their status (Guillaume Desmottes)
 - Fixed #614862, No need to create a model
 - Fixed #614874, account-chooser crashes when setting a filter and has-all-option to TRUE (Guillaume Desmottes)
 - Fixed #614944, GnomeGoal: Correct accounts .desktop file
 - Fixed #615052, debug window: better default directory and name (Guillaume Desmottes)
 - Fixed #615135, Crash IA__g_hash_table_unref, contact_finalize at empathy-contact.c line 311 (Guillaume Desmottes)
 - Fixed #615976, empathy_dispatcher_handle_channels ignores timestamp
 - Fixed #616439, URL should be highlighted in channel topics
 - Fixed #616859, build failure due to missing header (Jasper Lievisse Adriaanse)
 - Fixed #617262, Empathy accounts CC module calls textdomain
 - Fixed #533638, Topic by expander (Xavier Claessens)
 - Fixed #608103, Missing image icon shows up when contact has no avatar (Frédéric Péters)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated ast Translation (Xandru Armesto)
 - Updated bg Translation (Alexander Shopov)
 - Updated bn Translation (Jamil Ahmed)
 - Updated ca Translation (Jordi Serratosa, Gil Forcada)
 - Updated ca@valencia Translation (Carles Ferrando)
 - Updated crh Translation (Reşat SABIQ)
 - Updated cs Translation (Petr Kovar, Jiri Eischmann)
 - Updated da Translation (Ask H. Larsen)
 - Updated de Translation (Mario Blättermann, Christian Kirbach, Christian.Kirbach)
 - Updated el Translation (Simos Xenitellis, Kostas Papadimas)
 - Updated en_GB Translation (Bruce Cowan)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Ivar Smolin, Mattias Põldaru)
 - Updated eu Translation (Inaki Larranaga Murgoitio)
 - Updated fi Translation (Timo Jyrinki)
 - Updated fr Translation (Claude Paroz, Bruno Brouard)
 - Updated gl Translation (Francisco Diéguez, Fran Diéguez)
 - Updated hu Translation (Gabor Kelemen)
 - Updated it Translation (Milo Casagrande, Francesco Marlatta)
 - Updated ko Translation (Changwoo Ryu)
 - Updated ku Translation (Sîmurg56, simurg56)
 - Updated lt Translation (Žygimantas Beručka)
 - Updated lv Translation (Peteris Krisjanis)
 - Updated nb Translation (Kjartan Maraas)
 - Updated oc Translation (Yannig Marchegay)
 - Updated pa Translation (A S Alam)
 - Updated pl Translation (Piotr Drąg)
 - Updated pt_BR Translation (Vladimir Melo, Djavan Fagundes)
 - Updated pt Translation (Duarte Loreto)
 - Updated ro Translation (Adi Roiban)
 - Updated ru Translation (Leonid Kanter)
 - Updated sl Translation (Matej Urbančič)
 - Updated sr@latin Translation (Branko Kokanović)
 - Updated sr Translation (Branko Kokanović)
 - Updated sv Translation (Daniel Nylander)
 - Updated ta Translation (vasudeven)
 - Updated th Translation (Theppitak Karoonboonyanan)
 - Updated uk Translation (Maxim V. Dziumanenko)
 - Updated zh_CN Translation (Aron Xu)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann)
 - Updated el Documentation translation (Simos Xenitellis, Marios Zindilis, Μάριος Ζηντίλης)
 - Updated es Documentation translation (Jorge González)
 - Updated fr Documentation translation (Bruno Brouard)
 - Updated it Documentation translation (Milo Casagrande)

NEW in 2.30.0 (29/03/2010)
=============

The "The Petri net cake" release.

This is the first release in the new 2.30 stable branch. We strongly advise
distributions to ship this version.

Changes since 2.29.93 include a fix ensuring that the accounts dialog and
debug windows are properly translated. We also fixed the accounts dialog to
fit better on smaller screens.

This release includes loads of translation updates from the GNOME translation
team; many thanks to them!

Bugs fixed:
 - Fixed #613596, Account Assistant translations are not loaded (Guillaume Desmottes)
 - Fixed #601693, Shouldn't cycle tab if gtk-keynav-wrap-around is 0 (Aaron Brown)
 - Fixed #612557, empathy_sidebar_menu_position_under: assertion `gtk_widget_get_has_window (user_data)' failed (Guillaume Desmottes)
 - Fixed #613117, Please fix escaping of UTF-chars in ui file (Gabor Kelemen)
 - Fixed #613272, im settings capplet goes offscreen when advanced is expanded (Travis Reitter)
 - Fixed #613437, Empathy fails to build (Guillaume Desmottes)
 - Fixed #613793, remove non-standard notification capabilities (Nicolò Chieffo)
 - Fixed #613892, Should start hidden when activated (Guillaume Desmottes)
 - Fixed #614155, Move Tab Left/Right should have accelerator (Aaron Brown)
 - Fixed #613772, Minor typo in Empathy documentation (Marios Zindilis)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated bg Translation (Alexander Shopov)
 - Updated bn Translation (Jamil Ahmed)
 - Updated ca Translation (Gil Forcada)
 - Updated crh Translation (Reşat SABIQ)
 - Updated cs Translation (Petr Kovar, Jiri Eischmann)
 - Updated da Translation (Ask H. Larsen)
 - Updated de Translation (Christian Kirbach, Christian.Kirbach)
 - Updated el Translation (Simos Xenitellis, Kostas Papadimas)
 - Updated en_GB Translation (Bruce Cowan)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Ivar Smolin, Mattias Põldaru)
 - Updated eu Translation (Inaki Larranaga Murgoitio)
 - Updated fi Translation (Timo Jyrinki)
 - Updated fr Translation (Bruno Brouard, Claude Paroz)
 - Updated gl Translation (Fran Diéguez)
 - Updated hu Translation (Gabor Kelemen)
 - Updated it Translation (Milo Casagrande, Francesco Marlatta)
 - Updated ko Translation (Changwoo Ryu)
 - Updated ku Translation (Sîmurg56, simurg56)
 - Updated lt Translation (Žygimantas Beručka)
 - Updated nb Translation (Kjartan Maraas)
 - Updated pa Translation (A S Alam)
 - Updated pl Translation (Piotr Drąg)
 - Updated pt_BR Translation (Djavan Fagundes)
 - Updated pt Translation (Duarte Loreto)
 - Updated ro Translation (Adi Roiban)
 - Updated ru Translation (Leonid Kanter)
 - Updated sl Translation (Matej Urbančič)
 - Updated sr@latin Translation (Branko Kokanović)
 - Updated sr Translation (Branko Kokanović)
 - Updated sv Translation (Daniel Nylander)
 - Updated uk Translation (Maxim V. Dziumanenko)
 - Updated zh_CN Translation (Aron Xu)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann)
 - Updated el Documentation translation (Marios Zindilis, Μάριος Ζηντίλης)
 - Updated es Documentation translation (Jorge González)
 - Updated fr Documentation translation (Bruno Brouard)

NEW in 2.29.93
==============

The "6 amp limitation" release.

Empathy now supports marking contacts as favourite. This feature has to be
turned on by passing --enable-favourite-contacts during configure and depends
on the telepathy-logger. We discourage distributions shipping GNOME from
enabling this feature for now. It will be enabled by default in 2.31.x.

Empathy no longer removes a manually-set Away status when the screen is unlocked.
It is now able to invite contacts to MSN multi-user chats if you have
telepathy-butterfly 0.5.6 installed.

Bugs fixed:
 - Fixed #566832, Don't reset status to available unlocking the screen (Brian Curtis)
 - Fixed #609001, Clicking on the tray icon should close roster when open (Guillaume Desmottes)
 - Fixed #611525, Separate the debug window into its own process. (Mike Ruprecht)
 - Fixed #611972, Support marking contacts as favorites (Travis Reitter, Guillaume Desmottes)
 - Fixed #611998, Do not use constant in gettext expressions (Guillaume Desmottes)
 - Fixed #612381, accounts pane is still twiddleable underneath assistant (Danielle Madeley)
 - Fixed #612433, Window title for the accounts dialog should match the name in the launcher (Ken VanDine)
 - Fixed #612448, Display offline contacts and sort by status by default (Guillaume Desmottes)
 - Fixed #612450, Side bar should display the audio input page by default (Guillaume Desmottes)
 - Fixed #612461, Deal with new butterfly using the conference interface (Jonny Lamb)
 - Fixed #612519, Handle a butterfly network ID migration (Jonny Lamb)
 - Fixed #612672, Wrong folder used for saving received files (Guillaume Desmottes)
 - Fixed #612718, Invite participant dialog show contact on all network (Guillaume Desmottes)
 - Fixed #612946, Receive note path via DnD from tomboy (Olivier Le Thanh Duong)

Translations:
 - Updated br Translation (deniarnuad)
 - Updated es Translation (Jorge González)
 - Updated gl Translation (Fran Diéguez)
 - Updated it Translation (Luca Ferretti)
 - Updated ru Translation (Leonid Kanter)
 - Updated sl Translation (Matej Urbančič)
 - Updated uk Translation (Maxim V. Dziumanenko)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann)
 - Updated es Documentation translation (Jorge González)
 - Updated it Documentation translation (Milo Casagrande)

NEW in 2.29.92
==============

This release disables clickable links in status messages as they trigger a
nasty issue in GTK+.

Bugs fixed:
 - Fixed #330394, im-* icons broken (Guillaume Desmottes)
 - Fixed #607626, buddy info tooltip should be prevented from showing if a popup menu is shown in the contact list (Mike Ruprecht)

Translations:
 - Updated de Translation (Christian Kirbach)
 - Updated en_GB Translation (Philip Withnall)
 - Updated eu Translation (Inaki Larranaga Murgoitio)
 - Updated fr Translation (Claude Paroz)
 - Updated gl Translation (Fran Diéguez)
 - Updated lv Translation (Anita Reitere)
 - Updated pa Translation (A S Alam)
 - Updated pt_BR Translation (Jonh Wendell)
 - Updated ro Translation (Adi Roiban)
 - Updated sr@latin Translation (Branko Kokanović)
 - Updated sr Translation (Branko Kokanović)
 - Updated zh_HK Translation (Chao-Hsiung Liao)
 - Updated zh_TW Translation (Chao-Hsiung Liao)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann)

NEW in 2.29.91.2
================

The "No pony in this release" release.

Some issues regarding the account assistant have been fixed,
including a crash introduced in yesterday's release.

Empathy should now cope better with buggy routers that prevent connecting
to Google Talk. If you have experienced this issue, please see the Empathy FAQ
for details: http://live.gnome.org/Empathy/FAQ

Links in contacts status messages are now clickable.

Bugs fixed:
 - Fixed #525576, URL in contact's status are not clickable (Xavier Claessens)
 - Fixed #601089, "Network Error" on any new Google Talk account (Guillaume Desmottes)
 - Fixed #611753, "B)" and "B-)" both present the face-cool, not following the Icon Naming Spec (Guillaume Desmottes)
 - Fixed #611792, Crash through empathy-accounts wizard (Sjoerd Simons)
 - Fixed #611794, Empathy asserts if icon not available (Sjoerd Simons)
 - Fixed #611817, Remove salut_created gconf key (Guillaume Desmottes)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated de Translation (Mario Blättermann)

NEW in 2.29.91.1
================

The "No Chatroulette on your phone!" release.

This new version can optionally use the telepathy-logger for log
management when built with --enable-tpl.
We discourage distributions shipping GNOME from enabling this
feature for now.

This release also fixes lot of bugs in the accounts dialog and assistant.

Bugs fixed:
 - Fixed #598905, Should request channels via the channel dispatcher (Sjoerd Simons)
 - Fixed #518414, Conversation logger should be a separated process (Cosimo Alfarano)
 - Fixed #599189, Should fetch logs asynchronously (Cosimo Alfarano)
 - Fixed #603463, the name in accounts-dialog does not change after creation (Guillaume Desmottes)
 - Fixed #608111, If first-run wizard is cancelled, it is never seen again.
 - Fixed #610751, [PATCH] Add missing libm linking (Brian Pepple)
 - Fixed #610769, Add search support to the Debug window (Mike Ruprecht)
 - Fixed #610847, Infobar message is unclear when presence is offline (Guillaume Desmottes)
 - Fixed #610886, Remove inset framing from the main window (Sander Dijkhuis)
 - Fixed #610942, Crash when adding new account using control-center module (Guillaume Desmottes)
 - Fixed #611062, Map is not displayed if contact only publishes his lon/lat (Guillaume Desmottes)
 - Fixed #611071, Calls Close() three times on IM channels. (Will Thompson)
 - Fixed #611126, When the existing window is activated it is marked as skip task bar (Rob Bradford)
 - Fixed #611131, account assistant does not appear when accounts list is Empathy until you run Edit->Accounts (Danielle Madeley)
 - Fixed #611179, TPL 0.1.1 update: review needed (Cosimo Alfarano)
 - Fixed #611309, Use emblem-favorite icon (Guillaume Desmottes)
 - Fixed #611565, Doesn't set status to online when adding initial accounts (Guillaume Desmottes)
 - Fixed #611675, Assistant: set better display name (Guillaume Desmottes)
 - Fixed #611224, new account initially shows offline/disabled status (Sjoerd Simons)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated bg Translation (Alexander Shopov)
 - Updated de Translation (Mario Blättermann)
 - Updated el Translation (Jennie Petoumenou)
 - Updated en_GB Translation (Bruce Cowan)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Mattias Põldaru)
 - Updated he Translation (blueomega)
 - Updated it Translation (Milo Casagrande)
 - Updated sl Translation (Matej Urbančič)
 - Updated sv Translation (Daniel Nylander)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

NEW in 2.29.91
==============

The "A+++ would release again" release.

Empathy now has a widget to easily configure Facebook accounts.
The accounts dialog has been moved to its own application (empathy-accounts)
which can be started from the GNOME preferences menu.

Some crashes have been fixed, including the one when moving tabs between
chat windows.

Bugs fixed:
 - Fixed #609737, "All" entry in room list dialog's account chooser mis-sorted (Will Thompson)
 - Fixed #573194, FacebookChat (Guillaume Desmottes)
 - Fixed #585089, Criticals when dropping the last tab from one window into another (Sjoerd Simons)
 - Fixed #607330, Should use TpDebugSender (Jonny Lamb)
 - Fixed #608053, gtk_notebook_set_tab_label_packing has been deprecated in GTK+ 2.20 (Reimundo Heluani)
 - Fixed #608113, Strange behavior on account creation (Guillaume Desmottes)
 - Fixed #608690, Edit needs context (Guillaume Desmottes)
 - Fixed #608813, EmpathyIdle singleton can be referenced by async functions after being finalized (crasher) (Travis Reitter)
 - Fixed #608863, Separate the Empathy Accounts dialog into its own program (Travis Reitter)
 - Fixed #608974, decling subscription doesn't remove the user from publish/local-pending (Danielle Madeley)
 - Fixed #608975, Empathy calls SetAlias on a contact pending subscription (Danielle Madeley)
 - Fixed #608979, Once chat window is open Empathy acks messages immediately (Danielle Madeley)
 - Fixed #609030, uninitialised variable access (Danielle Madeley)
 - Fixed #609220, accounts are not created during initial setup (Guillaume Desmottes)
 - Fixed #609319, Disable Empathy's "Contact goes online" and "Contact goes offline" sound notifications by default (Frédéric Péters)
 - Fixed #609343, Zephyr protocol missing icon in create account dropdown menu (K.Vishnoo Charan Reddy)
 - Fixed #609352, Replacement for 16px blurry silc icon (K.Vishnoo Charan Reddy)
 - Fixed #609439, Importing accounts from the assistant seems broken (Guillaume Desmottes)
 - Fixed #609519, Mxit protocol missing icon in create account dropdown menu (K.Vishnoo Charan Reddy)
 - Fixed #609537, long avatar messages stretch account settings window out of screen (Guillaume Desmottes)
 - Fixed #609567, Fix leaked contact menu in contact list view. (Xavier Claessens)
 - Fixed #609574, Fix leaks, gtk_tree_model_get() returns a ref! (Xavier Claessens)
 - Fixed #609575, cannot delete two accounts without closing accounts window. (Guillaume Desmottes)
 - Fixed #609701, port nbtk widgets to mx (Danielle Madeley)
 - Fixed #609822, use the same color in infobar (Guillaume Desmottes)
 - Fixed #609843, Crashed when I closed one tab and hence switched to another tab for a disconnected account (Will Thompson)
 - Fixed #609995, Failed to create account using assistant from empathy-accounts (Guillaume Desmottes)
 - Fixed #610032, Do not show "respond" in "contact has gone offline" notification (Guillaume Desmottes)
 - Fixed #610380, In first run, Link-local accounts require some typing before 'apply' becomes available (Guillaume Desmottes)
 - Fixed #610461, Should call RemoveMembers when exiting room (Guillaume Desmottes)
 - Fixed #608882, Typo in salut-protocol.page (Łukasz Jernaś)
 - Fixed #609645, Typo in help/C/video-call.page (Łukasz Jernaś)
 - Fixed #607908, error window too wide (Guillaume Desmottes)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated es Translation (Jorge González)
 - Updated gl Translation (Fran Diéguez)
 - Updated nb Translation (Kjartan Maraas)
 - Updated pt_BR Translation (Djavan Fagundes)
 - Updated ro Translation (Lucian Adrian Grijincu)
 - Updated sl Translation (Matej Urbančič)
 - Updated ta Translation (vasudeven)
 - Updated th Translation (Theppitak Karoonboonyanan)
 - Updated zh_HK Translation (Chao-Hsiung Liao)
 - Updated zh_TW Translation (Chao-Hsiung Liao)

Documentation translations:
 - Updated es Documentation translation (Jorge González)
 - Updated it Documentation translation (Milo Casagrande)

NEW in 2.29.90
==============

The "Succulente lasagne aux truffes" release.

Bugs fixed:
 - Fixed #606329, Buttons in GtkInfoBar are too big.
 - Fixed #607868, Change Hidden to Invisible in docs
 - Fixed #608053, gtk_notebook_set_tab_label_packing has been deprecated in GTK+ 2.20 (Reimundo Heluani)
 - Fixed #608690, Edit needs context (Guillaume Desmottes)
 - Fixed #608813, EmpathyIdle singleton can be referenced by async functions after being finalized (crasher) (Travis Reitter)
 - Fixed #608974, decling subscription doesn't remove the user from publish/local-pending (Danielle Madeley)
 - Fixed #608975, Empathy calls SetAlias on a contact pending subscription (Danielle Madeley)
 - Fixed #608979, Once chat window is open Empathy acks messages immediately (Danielle Madeley)
 - Fixed #609030, uninitialised variable access (Danielle Madeley)
 - Fixed #608882, Typo in salut-protocol.page (Łukasz Jernaś)

Translations:
 - Updated bg Translation (Alexander Shopov)
 - Updated bn Translation (Jamil Ahmed)
 - Updated de Translation (Christian Kirbach)
 - Updated el Translation (Simos Xenitellis)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Mattias Põldaru)
 - Updated sl Translation (Matej Urbančič)
 - Updated sv Translation (Daniel Nylander)
 - Updated th Translation (Theppitak Karoonboonyanan)
 - Updated zh_HK Translation (Chao-Hsiung Liao)
 - Updated zh_TW Translation (Chao-Hsiung Liao)

Documentation translations:
 - Updated es Documentation translation (Jorge González)

NEW in 2.29.6
=============

The "Riding on lions" release.

The accounts dialog has been improved to display the status of all your
accounts in the treeview. A new page has been added to the new accounts
assistant to let users enter their personal details that are used to create
the XMPP link-local account.

Chat windows gained a very nice search bar allowing you to look for a specific
string as you do in your web browser.

Empathy now makes use of the new ContactCapabilities interface when available
to check if your contacts support file transfer and audio/video calls.

Finally, Empathy doesn't dispatch tube channels any more. All tubes applications
should now implement the Handler interface to interact properly with
mission-control 5.

Bugs fixed:
 - Fixed #603472, Rename "Hidden" to "Invisible" (G.Balaji)
 - Fixed #606329, Buttons in GtkInfoBar are too big. (Felix Kaser)
 - Fixed #573407, Empathy and telepathy-idle don't pass on server commands to server
 - Fixed #585168, Scrollback search and jump-to-highlight would be nice. (Thomas Meire)
 - Fixed #596575, Automatic salut account creation doesn't work (Guillaume Desmottes)
 - Fixed #599159, Stop to handle tube channels (Guillaume Desmottes)
 - Fixed #599163, Should use ContactCapability to get A/V caps (Guillaume Desmottes)
 - Fixed #599164, Should use ContactCapability to get FT caps (Guillaume Desmottes)
 - Fixed #600693, Empathy calls xmlCleanupParser() where it shouldn't (Guillaume Desmottes)
 - Fixed #600949, Deleting accounts from the treeview is weird
 - Fixed #603498, Escaped text displayed in notifications (Guillaume Desmottes)
 - Fixed #606642, IRC account: "Connect" button is not sensitive when changing the IRC network (Guillaume Desmottes)
 - Fixed #606753, Scrollback search is not case sensitive
 - Fixed #607207, show protocol icons in compact view (Guillaume Desmottes)
 - Fixed #607306, /join fails to work on the latest version of empathy (Thomas Meire)
 - Fixed #607436, Salut account should only automatically created when the wizard is run (Guillaume Desmottes)
 - Fixed #607455, Misc fixes regarding the accounts assistant (Guillaume Desmottes)
 - Fixed #607463, Edit Custom Messages window is too narrow (Ken VanDine)
 - Fixed #607868, Change Hidden to Invisible in docs
 - Fixed #607925, edit account from infobar does not open the right account (Guillaume Desmottes)
 - Fixed #608043, Should ellipsize text in connection error infobars (Will Thompson)
 - Fixed #604700, (null) status infobar with IRC account (Guillaume Desmottes)
 - Fixed #604706, infobar shows no icon if the presence is empty (Felix Kaser)
 - Fixed #605309, Show the status of accounts in the treeview (Guillaume Desmottes)
 - Fixed #605532, on account-creation some field should be persistent over a protocol change (Guillaume Desmottes)
 - Fixed #606510, Unclear string meaning (Guillaume Desmottes)
 - Fixed #585364, Get rid of shave with AM_SILENT_RULES automake option

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated es Translation (Jorge González)
 - Updated fr Translation (Claude Paroz)
 - Updated nb Translation (Kjartan Maraas)

Documentation translations:
 - Updated es Documentation translation (Jorge González)

NEW in 2.29.5.1
===============

The "Translator accidentally the entire file" release.

A translator accidentally removed the LINGUAS file so no translations have been
shipped in 2.29.5. This is fixed by this release.

Translations:
 - Updated pa Translation (A S Alam)

NEW in 2.29.5
=============

The « Alban, 28 affonds (of Nutella) ! » release.

The contact list has been improved to make it harder to accidentally call
a contact when you just intended to select a row. The accounts dialog has been
reworked to reduce the number of steps when adding a new account.
Thanks to Thomas Meire, a new contributor, the nick auto-completion has been
improved in rooms.
We also fixed a bunch of crashes and a regression when starting a video call.

Bugs fixed:
 - Fixed #554767, IRC tab completion only works with letters (Thomas Meire)
 - Fixed #576434, ellipsize long status messages in the status combobox
 - Fixed #590051, too easy to start a call (not wanting it) (Guillaume Desmottes)
 - Fixed #593268, Make Enable/Disable accounts easier again (Guillaume Desmottes)
 - Fixed #593483, L10n string split in two feilds
 - Fixed #599182, Remove useless screen when adding a new account (Guillaume Desmottes)
 - Fixed #599779, empathy doesn't auto finish IRC usernames when user hits tab (Thomas Meire)
 - Fixed #600030, EmpathyAccountsDialog should inherit from GtkWindow/GtkDialog
 - Fixed #603485, Crash when clicking the status icon just after a contact goes online/offline
 - Fixed #603976, Don't re-enable chat window once reconnected
 - Fixed #604347, /join command doesn't accept multi rooms (Thomas Meire)
 - Fixed #604481, StatusIcon no longer gets status message, only says 'available' (Guillaume Desmottes)
 - Fixed #604702, support creation of PMUCs using the Conference interface
 - Fixed #605213, Move register radio buttons to the account widget (Guillaume Desmottes)
 - Fixed #605529, accounts-dialog shows a box around some advanced settings (Felix Kaser)
 - Fixed #605549, Video call fails with "resource unavailable" (Guillaume Desmottes)
 - Fixed #605689, SIGSEGV crash when joining a IRC room (Guillaume Desmottes)
 - Fixed #605818, String fixes
 - Fixed #605822, protocols icons should be hidden by default (Guillaume Desmottes)
 - Fixed #605848, Use Pango markup attributes in GtkBuilder file
 - Fixed #606220, Stopping a transfer during hashing causes double free (Guillaume Desmottes)
 - Fixed #606513, Don't confuse translator comments and contextual specifier (Claude Paroz)
 - Fixed #601379, error notification should disappear when account is disabled
 - Fixed #604154, when discarding changes on create account the "new bla account" should be removed (Felix Kaser)
 - Fixed #604628, creating an account causes weird behavior (Felix Kaser)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated en_GB Translation (Philip Withnall)
 - Updated es Translation (Jorge González)
 - Updated nb Translation (Kjartan Maraas)
 - Updated si Translation (Danishka Navin)
 - Updated sl Translation (Matej Urbančič)
 - Updated sv Translation (Daniel Nylander)
 - Updated th Translation (Theppitak Karoonboonyanan)
 - Updated vi Translation (Nguyễn Thái Ngọc Duy)
 - Updated zh_HK Translation (Cheng-Chia Tseng)
 - Updated zh_TW Translation (Cheng-Chia Tseng)

Documentation translations:
 - Updated es Documentation translation (Jorge González)

NEW in 2.29.4
=============

The "The Snow of the Apocalypse" release.

Empathy is now able to start SIP video calls using the new "New Call" dialog.
It also indicates whether an incoming call contains video or is audio only.
The contact list can now display the protocol used by contacts, and the
accounts dialog shows the accounts' status (enabled/disabled,
available/busy/away/offline, etc.).
Thanks to K. Vishnoo Charan Reddy, Empathy gained icons for 4 protocols.

Bugs fixed:
 - Fixed #602821, accounts do not reconnect after toggling enable/disable (Felix Kaser)
 - Fixed #603490, SIGSEGV crash when cancelling accounts creation (Felix Kaser)
 - Fixed #570399, Call button should be disabled in "new conversation dialog" if CM doesn't support audio/video
 - Fixed #576434, ellipsize long status messages in the status combobox (Pascal Potvin)
 - Fixed #576542, tooltips for toolbar buttons in call window (Guillaume Desmottes)
 - Fixed #582596, Should tell if we are receiving an audio only or audio/video call (Guillaume Desmottes)
 - Fixed #582599, chat -> new conversation is not an obvious way to start an audio/video call (Guillaume Desmottes)
 - Fixed #586290, Remember contact pane's width (ranjiao)
 - Fixed #588812, Group 1-to-1 chats in one window and MUC's in another one (Abner Silva)
 - Fixed #598964, contact list disappears on reconnect for group chats (Guillaume Desmottes)
 - Fixed #602288, Shouldn't notify about scrollback messages (Guillaume Desmottes)
 - Fixed #603393, Crash when trying to join a rom while being offline (Guillaume Desmottes)
 - Fixed #603485, Crash when clicking the status icon just after a contact goes online/offline (Guillaume Desmottes)
 - Fixed #603502, Myspace missing icon in create account dropdown menu (Guillaume Desmottes)
 - Fixed #603508, Sametime missing icon in create account dropdown menu (Guillaume Desmottes)
 - Fixed #603545, [Patch] gtk-missing-icon shown in add contact dialog before status is queried (Brian Pepple)
 - Fixed #603593, assertion error when rejoining a chatroom because of reconnection (Guillaume Desmottes)
 - Fixed #603634, Groupwise icon missing in create account dropdown menu (Guillaume Desmottes)
 - Fixed #603877, [patch] add protocol icon to contact list (chantra)
 - Fixed #603976, Don't re-enable chat window once reconnected (Guillaume Desmottes)
 - Fixed #603980, new messages mixed with old in new conversation windows (Guillaume Desmottes)
 - Fixed #604003, Separate geometry of private and muc chat windows (Guillaume Desmottes)
 - Fixed #604097, EmpathyNewMessageDialog should inherit from GtkDialog (Guillaume Desmottes)
 - Fixed #604166, account-chooser: display connected accounts first (Guillaume Desmottes)
 - Fixed #604181, Should remove contact from 'stored' list when possible (Guillaume Desmottes)
 - Fixed #604254, Contact list channels should be requested via EnsureChannel
 - Fixed #604554, SILC missing icon in create account dropdown menu (Guillaume Desmottes)
 - Fixed #604567, Yahoo!Japan missing icon in create account dropdown menu (Guillaume Desmottes)
 - Fixed #599153, Accounts dialog should display the status of accounts (Felix Kaser)

Translations:
 - Updated es Translation (Jorge González)
 - Updated he Translation (Yaron Sharabani)
 - Updated nb Translation (Kjartan Maraas)
 - Updated sl Translation (Matej Urbančič)
 - Updated zh_CN Translation (Aron Xu)

Documentation translations:
 - Updated de Documentation translation (Christian Kirbach)

NEW in 2.29.3
==============

The « Guillaume, 25 affonds ! » release.

This release fixes a lot of regressions that have been introduced in 2.29.2 by
the port to TpAccount.
It also introduces a new widget to configure SIP accounts and adds the ability
to send files using Drag and Drop.

Bugs fixed:
 - Fixed #601235, calls to empathy_idle_get_status() before AM object is ready (Guillaume Desmottes)
 - Fixed #548701, improve chat window title with multi tabs (Guillaume Desmottes)
 - Fixed #571642, when an irc user changes nick, empathy doesn't indicate that the name changed (Jonathon Jongsma)
 - Fixed #581626, Semantics of empathy -a (Guillaume Desmottes)
 - Fixed #585582, Can't connect to google account "Network Error"
 - Fixed #586678, "Manage favorites" dialog don't display the Room column if showing all account (Guillaume Desmottes)
 - Fixed #590700, Wrong icon is used in notification for contacts without avatars (Guillaume Desmottes)
 - Fixed #598381, WebKit automatically converts <a> tags in links (Gustavo Noronha Silva)
 - Fixed #599315, confusing dependencies of NetworkManager ... libnm-glib v. libnm_glib (Brian Pepple)
 - Fixed #599640, Messages are not correctly escaped for adium themes
 - Fixed #600800, Crash when searching through logs (Guillaume Desmottes)
 - Fixed #601697, SIP account widget is incomplete (Guillaume Desmottes)
 - Fixed #601807, Previous conversations doesn't work any more
 - Fixed #602013, Maximized state of main window is not preserved, and size/position is sometimes forgotten after deiconify
 - Fixed #602066, Support /nick command
 - Fixed #602324, Fix nautilus-sendto plugin's linking
 - Fixed #602572, copy and paste not useful
 - Fixed #602649, Raising from the notification area doesn't bring it to the current workspace (Xavier Claessens)
 - Fixed #602852, Smileys are not displayed in /me messages
 - Fixed #603163, Render emails in format <email@example.com> to links
 - Fixed #603361, No contact appears when reconnecting (Guillaume Desmottes)
 - Fixed #603384, Crash in debug dialog (Guillaume Desmottes)
 - Fixed #595226, Send files using drag and drop (Shaun McCance)
 - Fixed #600946, Add more friendly strings for TpMediaStreamError
 - Fixed #601288, Video preview should always be displayed when we are sending video (Guillaume Desmottes)

Translations:
 - Updated es Translation (Jorge González)
 - Updated gl Translation (Antón Méixome)
 - Updated hu Translation (Gabor Kelemen)
 - Updated ro Translation (Adi Roiban)
 - Updated sl Translation (Matej Urbančič)

NEW in 2.29.2
=============

The "Nintendo or Zappa" release.

Empathy now uses the TpAccount API and so depends on telepathy-glib 0.9.0,
but we strongly advise you to use the latest telepathy-glib release.

This release brings support for a subset of IRC commands such as "/join".
Empathy is also now able to join password protected chat rooms; note that
this doesn't work with IRC channels at the moment because of a telepathy-idle
bug (fd.o #25039).

We also worked on improving error reporting to users. The contact list will now
display a new info bar when an account is disconnected and the audio/video UI
should give better feedback if an error occurs.

Bugs fixed:
 - Fixed #591360, Incoming message while menu is open freezes X
 - Fixed #599612, crash when typoing room name
 - Fixed #523918, Empathy sometimes loose messages
 - Fixed #573407, Empathy and telepathy-idle don't pass on server commands to server
 - Fixed #575763, Should display an error when RTP connection is impossible (Guillaume Desmottes)
 - Fixed #579341, Should be able to join password protected rooms (Guillaume Desmottes)
 - Fixed #580254, empathy_contact_hash() defined in header, but no such symbol (Guillaume Desmottes)
 - Fixed #581789, An error message should be shown when required codecs are not installed. (Guillaume Desmottes)
 - Fixed #583208, Status doesn't change on idle
 - Fixed #583919, New conversation should have autocomplete for offline contacts too (Justin Forest)
 - Fixed #585340, clean geoloc tooltip info
 - Fixed #586098, Ctrl+Up loses typed text (Jerzy Mansarliński)
 - Fixed #586287, the channel topic is missing the first time I open a channel
 - Fixed #587216, Retry option whenever account connecting fails
 - Fixed #589263, Empathy next tab or previous tab doesnt cycle. (Rômulo Fernandes Machado)
 - Fixed #595922, time display not readable in debug window
 - Fixed #597678, invert server and room forms in join room dialog (Guillaume Desmottes)
 - Fixed #597819, No tray icon when no valid account configured (Jonny Lamb)
 - Fixed #598550, Should warn user when he closes the accounts dialog with a not connected new account (Guillaume Desmottes)
 - Fixed #599169, Should use new TpAccount API
 - Fixed #599386, Empathy protocol chooser shouldn't cache TpConnectionManagerProtocol
 - Fixed #599431, Empty notifications with butterfly contact (Guillaume Desmottes)
 - Fixed #600023, Crash when trying to display the accounts dialog more than once (Guillaume Desmottes)
 - Fixed #600427, "Connect" button should be "Save" when we are offline (Guillaume Desmottes)
 - Fixed #600446, Crash when trying to add a new account (Guillaume Desmottes)
 - Fixed #600473, Show current chat tab name in title bar. (Guillaume Desmottes)
 - Fixed #600537, Crashed when opening Chat - New Conversation dialog (Jonny Lamb)
 - Fixed #600551, crash in Empathy: Was doing nothing.. (Guillaume Desmottes)
 - Fixed #600671, Debian#554325: fails to link when using binutils-gold (Guillaume Desmottes)
 - Fixed #600705, accounts created in the assistant don't get a nice display name (Guillaume Desmottes)
 - Fixed #600713, Connection is not ready when EmpathyDispatcher requests capabilities (Guillaume Desmottes)
 - Fixed #600732, Reorganize chat_window_update (Ryan LaBelle)
 - Fixed #600798, "Previous conversations" is always unsensitive (Guillaume Desmottes)
 - Fixed #600958, Disabling build of nautilus-sendto plugin does not work
 - Fixed #600961, nautilus-sendto plugin does not build (Jonny Lamb)
 - Fixed #600962, Review Moblin specific changes (Guillaume Desmottes)
 - Fixed #601150, Account spacing in the accounts dialog is not homogeneous (Guillaume Desmottes)
 - Fixed #601190, Empathy does not appear to save window size on close (Guillaume Desmottes)
 - Fixed #601233, Room menu is insensitive
 - Fixed #601336, Conflicting English keyboard accelerators in chat window (Guillaume Desmottes)
 - Fixed #601348, Duplicate English keyboard accelerators in "Edit" menu
 - Fixed #601691, Refactoring of libnotify code (Guillaume Desmottes)
 - Fixed #601796, Newly created account appears twice in the treeview (Guillaume Desmottes)
 - Fixed #601807, Previous conversations doesn't work any more (Guillaume Desmottes)
 - Fixed #602013, Maximized state of main window is not preserved, and size/position is sometimes forgotten after deiconify
 - Fixed #602066, Support /nick command
 - Fixed #599176, Should use GtkInfoBar to display connection errors
 - Fixed #600946, Add more friendly strings for TpMediaStreamError
 - Fixed #593327, Update the smiley list (Rodolphe)

Translations:
 - Updated crh Translation (Reşat SABIQ)
 - Updated en@shaw Translation (Thomas Thurman)
 - Updated es Translation (Jorge González)
 - Updated hu Translation (Gabor Kelemen)
 - Updated it Translation (Milo Casagrande)
 - Updated lv Translation (Rudolfs Mazurs)
 - Updated nb Translation (Kjartan Maraas)
 - Updated sl Translation (Matej Urbančič)
 - Updated ta Translation (vasudeven, drtvasudevan)
 - Updated zh_CN Translation (Aron Xu)

Documentation translations:
 - Updated it Documentation translation (Milo Casagrande)

NEW in 2.29.1
=============

The "Let's drop half of our code" release.

This is the first release in the 2.29.x development branch.
Most users should continue to use the 2.28.x stable branch for now.

In this release we removed the megaphone and nothere applets which were not
really maintained and were about to die with GNOME 3 anyway.
We also stopped pretending being a library and stopped to ship libempathy
and libempathy-gtk as shared libraries. We encourage projects to use
telepathy-glib instead and help us create a new telepathy-gtk library.

The Empathy plugin for nautilus-sendto has been moved in Empathy itself.
Distributions should add a build dependency on nautilus-sendto if they
want to build this plugin.


Bugs fixed:
 - Fixed #593318, Empathy theme doesn't work (and opens a folder in Nautilus!)
 - Fixed #591360, Incoming message while menu is open freezes X (Rob Bradford)
 - Fixed #594619, asserts in empathy_idle_set_presence() after suspend/resume (Jonny Lamb)
 - Fixed #594893, icq accounts import from pidgin not working
 - Fixed #595275, Invalid read when terminating an audio call
 - Fixed #598423, empathy crashed when dnding an avatar image (Cosimo Cecchi)
 - Fixed #598452, crashed with SIGSEGV in contact_list_store_iface_setup() (Guillaume Desmottes)
 - Fixed #599612, crash when typoing room name (Guillaume Desmottes)
 - Fixed #581488, copy/paste is broken
 - Fixed #520206, Room auto-connect doesn't work
 - Fixed #532737, using *_run_* calls prevents quitting Empathy (Will Thompson)
 - Fixed #550127, Chat windows don't show when we are reconnected
 - Fixed #571876, Get rid of deprecated Bonobo
 - Fixed #584034, The Map View doesn't have a "Best Fit" button (Olivier Le Thanh Duong)
 - Fixed #585957, Weird preferences (Pierre-Luc Beaudoin)
 - Fixed #589408, Add respond button to notifications (Rob Bradford)
 - Fixed #589409, the Event struct in EmpathyEventManager should contain an enum with the event type (Guillaume Desmottes)
 - Fixed #593334, Use GOptionContext to parse options
 - Fixed #593883, Empathy misbehaviour
 - Fixed #594160, Empathy forgets IRC bookmarks
 - Fixed #594308, Spelling mistake: "Criterion" not "Criterium" (Guillaume Desmottes)
 - Fixed #594569, Empathy 2.27.92 fails to build
 - Fixed #594653, empathy crashed with SIGSEGV in empathy_account_settings_get_uint32() (Guillaume Desmottes)
 - Fixed #594654, empathy crashed with SIGSEGV in empathy_account_settings_get_default()
 - Fixed #594776, cannot add yahoo account (Frédéric Péters)
 - Fixed #594890, Empathy crashing with CSW (Danielle Madeley)
 - Fixed #594906, empathy crashed with SIGSEGV in empathy_audio_sink_set_volume()
 - Fixed #594908, empathy crashed with SIGSEGV in tp_contact_list_got_added_members_cb()
 - Fixed #594997, Doesn't respawn existing channel when trying to reopen it
 - Fixed #595180, crash when dragging user from roster to MUC window
 - Fixed #595417, Pasting text into a disconnected chat window crashes (Cosimo Cecchi)
 - Fixed #595521, EmpathyIdle should wait for account manager to be ready
 - Fixed #595666, double click on a contact should raise the window
 - Fixed #595737, Where does default font size comes from?
 - Fixed #595921, "Missing" icon is used on protocols without specific icons (Cosimo Cecchi)
 - Fixed #595945, Crash when doing nothing (Cosimo Cecchi)
 - Fixed #595962, Criticals endlessly if you open and contract a group too fast. (Will Thompson)
 - Fixed #596044, --hide-contact-list doesn't work (Cosimo Cecchi)
 - Fixed #596075, Add nautilus-sendto plugin
 - Fixed #596101, Debug: gabble logs disappear 5 seconds after disconnection (Cosimo Cecchi)
 - Fixed #596303, Missing file fallback for Adium themes not implemented. (Xavier Claessens)
 - Fixed #596317, Adium themes always attempt to combine consecutive messages. (Xavier Claessens)
 - Fixed #596956, Empathy crash at startup
 - Fixed #597125, libnotify chat bubbles aren't displayed once the first bubble disappeared (Rob Bradford)
 - Fixed #597289, Info dialog says "Edit contact information"
 - Fixed #597293, libempathy header files are wrong
 - Fixed #597416, empathy crashed with SIGSEGV in empathy_account_settings_get_account() (Guillaume Desmottes)
 - Fixed #597680, contact status doesn't change after disconnection (Guillaume Desmottes)
 - Fixed #598332, Crash when CM crashes during a channel request. (Mike Ruprecht)
 - Fixed #598354, Presence chooser shouldn't be sensitive when there are no accounts (Sjoerd Simons)
 - Fixed #598355, Use pretty names for protocol in account display names (Sjoerd Simons)
 - Fixed #598408, Changing display name can crash empathy (Guillaume Desmottes)
 - Fixed #598432, empathy crashed with SIGSEGV in empathy_call_window_audio_input_level_changed_cb() (Guillaume Desmottes)
 - Fixed #598453, empathy crashed with SIGSEGV in empathy_call_window_got_self_contact_cb() (Guillaume Desmottes)
 - Fixed #598628, Empathy start isn't idempotent
 - Fixed #598954, Empathy crashes with SIGSEGV when trying spellcheck (Felix Kaser)
 - Fixed #599039, Should the python bindings be removed? (Jonny Lamb)
 - Fixed #599042, Remove applets (Jonny Lamb)
 - Fixed #599086, Remove libempathy and libempathy-gtk shared libraries (Jonny Lamb)
 - Fixed #599087, Stop building gtk-doc HTML (Jonny Lamb)
 - Fixed #599243, fails testsuite for a coding style problem in a comment ! (Guillaume Desmottes)
 - Fixed #599386, Empathy protocol chooser shouldn't cache TpConnectionManagerProtocol (Guillaume Desmottes)

Translations:
 - Updated as Translation (Amitakhya Phukan)
 - Updated ast Translation (Astur)
 - Updated bg Translation (Alexander Shopov, Yavor Doganov)
 - Updated bn_IN Translation (Runa Bhattacharjee)
 - Updated bn Translation (Jamil Ahmed)
 - Updated ca Translation (Gil Forcada)
 - Updated cs Translation (Petr Kovar)
 - Updated da Translation (Ask H. Larsen, Kenneth Nielsen)
 - Updated de Translation (Mario Blättermann)
 - Updated el Translation (Kostas Papadimas)
 - Updated en_GB Translation (Philip Withnall)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Mattias Põldaru)
 - Updated fi Translation (Ilkka Tuohela)
 - Updated fr Translation (Claude Paroz)
 - Updated gl Translation (Antón Méixome)
 - Updated he Translation (Yaron Shahrabani)
 - Updated hi Translation (Rajesh Ranjan)
 - Updated hu Translation (Gabor Kelemen)
 - Updated it Translation (Milo Casagrande)
 - Updated ja Translation (Kentaro Kazuhama)
 - Updated kn Translation (Shankar Prasad)
 - Updated lt Translation (Žygimantas Beručka)
 - Updated mai Translation (Rajesh Ranjan)
 - Updated ml Translation (Praveen Arimbrathodiyil)
 - Updated pl Translation (Tomasz Dominikowski, Piotr Drąg)
 - Updated pt_BR Translation (André Gondim)
 - Updated pt Translation (Duarte Loreto)
 - Updated ro Translation (Lucian Adrian Grijincu)
 - Updated ru Translation (Leonid Kanter)
 - Updated sl Translation (Matej Urbančič)
 - Updated sv Translation (Daniel Nylander)
 - Updated ta Translation (drtvasudevan)
 - Updated te Translation (krishnababu k)
 - Updated th Translation (Theppitak Karoonboonyanan)
 - Updated tr Translation (Baris Cicek)
 - Updated uk Translation (Maxim V. Dziumanenko)
 - Updated zh_HK Translation (Chao-Hsiung Liao)
 - Updated zh_TW Translation (Chao-Hsiung Liao)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann)
 - Updated el Documentation translation (Jennie Petoumenou)

NEW in 2.28.0
==============
Bugs fixed:
 - Fixed #593318, Empathy theme doesn't work (and opens a folder in Nautilus!)
 - Fixed #594893, icq accounts import from pidgin not working
 - Fixed #595275, Invalid read when terminating an audio call
 - Fixed #520206, Room auto-connect doesn't work
 - Fixed #532737, using *_run_* calls prevents quitting Empathy
 - Fixed #550127, Chat windows don't show when we are reconnected
 - Fixed #593334, Use GOptionContext to parse options
 - Fixed #593883, Empathy misbehaviour
 - Fixed #594160, Empathy forgets IRC bookmarks
 - Fixed #594569, Empathy 2.27.92 fails to build
 - Fixed #594619, asserts in empathy_idle_set_presence() after suspend/resume
 - Fixed #594653, empathy crashed with SIGSEGV in empathy_account_settings_get_uint32() (Guillaume Desmottes)
 - Fixed #594776, cannot add yahoo account (Frédéric Péters)
 - Fixed #594890, Empathy crashing with CSW (Danielle Madeley)
 - Fixed #594906, empathy crashed with SIGSEGV in empathy_audio_sink_set_volume()
 - Fixed #594908, empathy crashed with SIGSEGV in tp_contact_list_got_added_members_cb()
 - Fixed #594997, Doesn't respawn existing channel when trying to reopen it
 - Fixed #595180, crash when dragging user from roster to MUC window
 - Fixed #595417, Pasting text into a disconnected chat window crashes (Cosimo Cecchi)
 - Fixed #595521, EmpathyIdle should wait for account manager to be ready
 - Fixed #595666, double click on a contact should raise the window

Translations:
 - Updated as Translation (Amitakhya Phukan)
 - Updated ast Translation (Astur)
 - Updated bg Translation (Yavor Doganov)
 - Updated bn_IN Translation (Runa Bhattacharjee)
 - Updated bn Translation (Jamil Ahmed)
 - Updated da Translation (Ask H. Larsen, Kenneth Nielsen)
 - Updated el Translation (Kostas Papadimas)
 - Updated en_GB Translation (Philip Withnall)
 - Updated et Translation (Mattias Põldaru, Ivar Smolin)
 - Updated fi Translation (Ilkka Tuohela)
 - Updated gl Translation (Antón Méixome)
 - Updated hi Translation (Rajesh Ranjan)
 - Updated kn Translation (Shankar Prasad)
 - Updated lt Translation (Žygimantas Beručka)
 - Updated mai Translation (Rajesh Ranjan)
 - Updated ml Translation (Ani, Praveen Arimbrathodiyil)
 - Updated or Translation (Manoj Kumar Giri)
 - Updated pl Translation (Tomasz Dominikowski, Piotr Drąg)
 - Updated pt Translation (Duarte Loreto)
 - Updated ro Translation (Lucian Adrian Grijincu)
 - Updated sl Translation (Matej Urbančič)
 - Updated ta Translation (ifelix)
 - Updated te Translation (krishnababu k)
 - Updated tr Translation (Baris Cicek)
 - Updated uk Translation (Maxim V. Dziumanenko)
 - Updated zh_HK Translation (Chao-Hsiung Liao)
 - Updated zh_TW Translation (Chao-Hsiung Liao)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann)

NEW in 2.27.92
==============
Bugs fixed:
 - Fixed #593318, Empathy theme doesn't work (and opens a folder in Nautilus!)
 - Fixed #583897, Warnings and assertions when starting Empathy
 - Fixed #459014, we shouldn't be able to enable an incomplete account
 - Fixed #459546, Rename Salut to Bonjour/Zeroconf/Link Local/something else in the interface
 - Fixed #539142, Cannot go online manually if NM is not running
 - Fixed #547323, The account is not enabled when added
 - Fixed #585226, "make distcheck" is broken
 - Fixed #587117, tp-haze MSN has password entry before account
 - Fixed #587883, Empathy shouldn't use mc-profiles internally
 - Fixed #590118, Port pidgin account importer to mc5
 - Fixed #590165, Should use MC5
 - Fixed #592737, GnomeGoal: Correct Desktop Files (Frédéric Péters)
 - Fixed #592997, Confirmation needed when there are unapplied changes on an account
 - Fixed #592998, Disable and re-enable an account and it won't reconnect
 - Fixed #593009, No "Google Talk" profile/account any more
 - Fixed #593018, Should respawn MC5 if it crashed (Cosimo Cecchi)
 - Fixed #593041, Have Handler.Capabilities to remain callable with future Mission Control/Gabble (Sjoerd Simons)
 - Fixed #593054, By default, the display name of an account should be set to the username.
 - Fixed #593095, Send errors are printed as normal messages. (Will Thompson)
 - Fixed #593101, Empathy exits sending empty /me message (Will Thompson)
 - Fixed #593158, When we need to reconnect an account, instead of disconnecting and reconnecting it, tp_cli_account_call_reconnect should be used.
 - Fixed #593161, A disabled and invalid account is enabled automatically when fixed. (Cosimo Cecchi)
 - Fixed #593207, URL contains the rest of the line
 - Fixed #593209, [PATCH] Use valid desktop category.
 - Fixed #593224, .pc files still mark dep on libmissioncontrol
 - Fixed #593237, Cannot create IRC account until you type something
 - Fixed #593248, Cancel should always be sensitive for new account creation
 - Fixed #593257, Translatable strings not well constructed (Frédéric Péters)
 - Fixed #593285, Word 'wizard' should not be used (Milo Casagrande)
 - Fixed #593717, Build failure due compiler warning
 - Fixed #594139, importing msn account is broken since 2.27.91

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated be Translation (Alexander Nyakhaychyk)
 - Updated de Translation (Christian Kirbach, Michael Kanis)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Ivar Smolin)
 - Updated eu Translation (Inaki Larranaga Murgoitio)
 - Updated fr Translation (Claude Paroz)
 - Updated gu Translation (Sweta Kothari)
 - Updated he Translation (Mark Krapivner)
 - Updated hu Translation (Gabor Kelemen)
 - Updated it Translation (Milo Casagrande)
 - Updated kn Translation (Shankar Prasad)
 - Updated ko Translation (Changwoo Ryu)
 - Updated mr Translation (Sandeep Shedmake)
 - Updated nb Translation (Kjartan Maraas)
 - Updated pa Translation (A S Alam)
 - Updated pl Translation (Piotr Drąg)
 - Updated pt_BR Translation (Fábio Nogueira)
 - Updated sr@latin Translation (Branko Kokanović)
 - Updated sr Translation (Branko Kokanović)
 - Updated sv Translation (Daniel Nylander)
 - Updated ta Translation (ifelix)
 - Updated zh_HK Translation (Chao-Hsiung Liao)
 - Updated zh_TW Translation (Chao-Hsiung Liao)

NEW in 2.27.91.1
================

 - We require gnome-doc-utils 0.17.3 for Mallard.
 - Some fixes so distcheck passes.

NEW in 2.27.91
==============

 - This version needs mission-control-5 instead of the now deprecated
   mission-control-4. As result, libmission-control-client and libtelepathy are
   not required anymore.

 - Empathy can now optionally use ConnMan instead of NetworkManager.

 - libgnome-keyring is now required, it is used to migrate accounts created with
   MissionControl4, because password were saved in the keyring. Unfortunately
   the new MissionControl is not using the keyring yet, so your password will be
   written in plain text. Keyring support will soon be added in a future
   MissionControl-5 release.

 - Empathy now uses libunique to prevent running it twice.

Bugs fixed:
 - Fixed #588878, empathy crashes making voip call if it can't set up the pipeline
 - Fixed #494007, Empathy should conform to the XDG directory specification
 - Fixed #526360, easy screen sharing
 - Fixed #571989, "Video preview" menu item doesn't do anything
 - Fixed #576467, msn profile should use a butterfly icon (Guillaume Desmottes)
 - Fixed #580134, Displays empty bubbles for messages containing < (Will Thompson)
 - Fixed #582191, The call windows should have a "redial" button.
 - Fixed #582810, When we stop receiving video in a call, we should not see the last video frame.
 - Fixed #585322, Start chat/call from map view
 - Fixed #585443, drag & drop in contact list should be a move action (Louis-Francis Ratté-Boulianne)
 - Fixed #585843, Should use stable Geolocation API (Guillaume Desmottes)
 - Fixed #585844, Should use stable Debug API (Guillaume Desmottes)
 - Fixed #585867, "Minutes ago" is not updated with time in Map View
 - Fixed #585993, support global installed themes
 - Fixed #586401, Clicking URLs don't work in adium's themes
 - Fixed #586977, Reduced Accuracy mode is wrong
 - Fixed #587161, cannot reconnect to msn after setting a s̷̸̭͎̯͔̭͙̮͙̹͉̱͔̳̏ͪͧ̏̒̒̐̋͌̊̀ͩͣ́̈ͦͬ̀̚ͅtrange nickname
 - Fixed #587514, Werror breaks the build
 - Fixed #587634, Mailto: url mangled if :+letter forms a smiley
 - Fixed #587706, ALL yahoo contacts appear in contact list w/ no status icon or avatar
 - Fixed #587803, Invert the variable position for a proper translation (Guillaume Desmottes)
 - Fixed #588252, Set the codecs preferences/properties from a config file
 - Fixed #588840, Empathy Crashes when initiating dialog with a buddy (Will Thompson)
 - Fixed #589091, Feature Share My Desktop for Empathy
 - Fixed #589335, No way to send a message starting with a slash (Frédéric Péters)
 - Fixed #589846, wrap text in contact label status
 - Fixed #590029, IRC help window waiting for something when opened from conversation window (Guillaume Desmottes)
 - Fixed #590118, Port pidgin account importer to mc5
 - Fixed #590165, Should use MC5 (Sjoerd Simons)
 - Fixed #590756, VNC/Vinagre tube Service should a well-known TCP service name (Arnaud Maillet)
 - Fixed #590924, Set selectable status information
 - Fixed #590956, Shouldn't show old locations
 - Fixed #590962, empathy-contact-widget does not follow style guidelines
 - Fixed #590982, Changing the input volume makes the application crash if the call has been disconnected
 - Fixed #591058, Should be able to send files from network locations (Guillaume Desmottes)
 - Fixed #591199, [a11y] Attempting to get default text attributes crashes Empathy
 - Fixed #591247, Missing status icons (Frédéric Péters)
 - Fixed #591335, Merge new Mallard help files
 - Fixed #591468, Crashed when I opened a tab to an IRC contact. (Will Thompson)
 - Fixed #591543, Switch to clutter-gtk-0.10
 - Fixed #591582, make distcheck fails on codec-preference (Frédéric Péters)
 - Fixed #591602, Changed Empathy docs path (Milo Casagrande)
 - Fixed #591612, Segfault at strcmp opening preferences (Guillaume Desmottes)
 - Fixed #592005, Unmark for translation: 'gtk-add', 'gtk-remove' and 'gtk-leave-fullscreen'
 - Fixed #592052, "Call" misses translator comment (Guillaume Desmottes)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated bg Translation (Alexander Shopov)
 - Updated br Translation (Denis Arnaud)
 - Updated ca Translation (Gil Forcada)
 - Updated ca@valencia Translation (Carles Ferrando)
 - Updated cs Translation (Andre Klapper)
 - Updated de Translation (Michael Kanis)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Ivar Smolin, Mattias Põldaru)
 - Updated eu Translation (Inaki Larranaga Murgoitio)
 - Updated fi Translation (Tommi Vainikainen)
 - Updated ga Translation (Seán de Búrca)
 - Updated gl Translation (Antón Méixome)
 - Updated he Translation (Mark Krapivner)
 - Updated hr Translation (Sjoerd Simons)
 - Updated kn Translation (Shankar Prasad)
 - Updated nb Translation (Kjartan Maraas)
 - Updated or Translation (Manoj Kumar Giri)
 - Updated pt_BR Translation (Rodrigo L. M. Flores)
 - Updated sv Translation (Daniel Nylander)
 - Updated ta Translation (ifelix)
 - Updated te Translation (krishnababu k)
 - Updated tr Translation (Baris Cicek)
 - Updated uk Translation (Maxim V. Dziumanenko)
 - Updated zh_CN Translation (Aron Xu, lyper)
 - Updated zh_HK Translation (Chao-Hsiung Liao)
 - Updated zh_TW Translation (Chao-Hsiung Liao)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann)
 - Updated es Documentation translation (Jorge González)

NEW in 2.27.5
==============
Bugs fixed:
 - Fixed #459161, Remove should be insensitive for salut contact
 - Fixed #494007, Empathy should conform to the XDG directory specification (Frédéric Péters)
 - Fixed #545282, [accessibility] the names of items in friends list are not correct (Frédéric Péters)
 - Fixed #547327, Wrongly sized dialog
 - Fixed #579724, Enable building with shave
 - Fixed #579940, Show a notification when a buddy goes to offline or online
 - Fixed #584120, "Video call" button shouldn't be sensitive in Contact menu if contact supports only audio
 - Fixed #584122, "Send Video" should be disable if contact doesn't support video
 - Fixed #586967, Remeber chat window size and configuration (Nicolò Chieffo)
 - Fixed #588498, Mark muc tabs in which you are highlighted differently (Abner Silva)
 - Fixed #588662, Add gconf option to enable usage of the WebKit inspector, for adium themes.
 - Fixed #588810, respect the button-images setting (Matthias Clasen)
 - Fixed #588886, crash when selecting an image and clicking "open link" in adium (Gustavo Noronha Silva)
 - Fixed #589091, Feature Share My Desktop for Empathy
 - Fixed #589830, Online status combo box items are not correctly spoken with the Orca screen reader. (Frédéric Péters)
 - Fixed #589846, wrap text in contact label status (Nicolò Chieffo)

Translations:
 - Updated ar Translation (Khaled Hosny)
 - Updated be Translation (Alexander Nyakhaychyk)
 - Updated es Translation (Jorge González)
 - Updated et Translation (Priit Laes)
 - Updated gl Translation (Fran Diéguez)
 - Updated lt Translation (Žygimantas Beručka)
 - Updated sv Translation (Daniel Nylander)
 - Updated ta Translation (drtvasudevan)
 - Updated zh_CN Translation (Aron Xu)

Documentation translations:
 - Updated de Documentation translation (Mario Blättermann)

NEW in 2.27.4
==============
Bugs fixed:
 - Fixed #584703, Segfault when the contact selector dispose
 - Fixed #459161, Remove should be insensitive for salut contact
 - Fixed #494532, empathy should be able to take colours from the GTK theme
 - Fixed #520972, IRC widget is cut (Matthias Clasen)
 - Fixed #536383, Add option to hide muc roster
 - Fixed #556237, time banner is added at each sentence when the remote contact is offline
 - Fixed #560159, Should take a well-known bus name (Jonny Lamb)
 - Fixed #562468, Contact list view options are scattered over "Chat" menu and "General" Preferences
 - Fixed #563678, Doesn't poke block devices to figure out their file size. (Frédéric Péters)
 - Fixed #565494, Remove libgnomevfs include in megaphone-applet.c
 - Fixed #571989, "Video preview" menu item doesn't do anything
 - Fixed #574771, Use call-stop icon (Frédéric Péters)
 - Fixed #575008, Should play a sound when calling
 - Fixed #575667, Favourite Chat Room tickybox doesn't work. (Abner Silva)
 - Fixed #579151, Adds an Adium theme parsing to have a nicer theme selector
 - Fixed #579893, EmpathyProfileChooser should extend GtkComboBox
 - Fixed #579940, Show a notification when a buddy goes to offline or online
 - Fixed #580631, Implement o.fd.Tp.Debug to publish debug messages (Jonny Lamb)
 - Fixed #580777, Shouldn't be able to send video and enable preview if no webcam is plugged
 - Fixed #582598, Call window: "send video" widgets should be enabled according the state of the call
 - Fixed #582810, When we stop receiving video in a call, we should not see the last video frame.
 - Fixed #585031, Crash when starting if status-presets.xml contains an 'unset' presence (Guillaume Desmottes)
 - Fixed #585053, Crash when trying to add an 'unset' status as favorite (Guillaume Desmottes)
 - Fixed #585380, Contact list doesn't appear in windows list when respawned
 - Fixed #585475, %service% is not replaced in adium themes (Patryk Zawadzki)
 - Fixed #585522, Use libchamplain 0.3.3's API
 - Fixed #585601, Adium theme is not reloaded on /clear or Ctrl+L or clear menu item
 - Fixed #585777, Empathy does not import from Pidgin on start
 - Fixed #585788, Capitalisation incorrect
 - Fixed #585882, Can't easily copy URL's when using Adium themes
 - Fixed #585885, Lines are not smashed together when using Adium themes (Patryk Zawadzki)
 - Fixed #585887, "Publish my location" causes a crash
 - Fixed #586059, Remove markup from translatable strings
 - Fixed #586102, Remove "new message from" from notification message (Guillaume Desmottes)
 - Fixed #586133, don't autoscroll on new messages
 - Fixed #586249, Display part reasons and messages.
 - Fixed #586329, Imported Google account (from Pidgin) not connecting
 - Fixed #586352, Adium theme should only join messages if time delta is less than 5 minutes (Patryk Zawadzki)
 - Fixed #586368, Use themed avatar as fallback if provided
 - Fixed #586382, "history" messageClasses is not set for backlogs
 - Fixed #586387, We are not using Info.plist settings for adium themes (Patryk Zawadzki)
 - Fixed #586481, telepathy-idle IRC chat window has no users or chat content
 - Fixed #586645, Status icon not updated when going offline (Guillaume Desmottes)
 - Fixed #586734, Modules linking cleanup
 - Fixed #587365, empaty crashs whenever a file trasnfert request is received
 - Fixed #587446, NM integration doesn't work if NM is started after empathy (Sjoerd Simons)
 - Fixed #587508, Don't use McAccount (Sjoerd Simons)
 - Fixed #587817, Crash when trying to add a contact while connecting (Guillaume Desmottes)
 - Fixed #587953, Labels with RTL control code don't right-align
 - Fixed #587958, please add bug-database to doap (Guillaume Desmottes)
 - Fixed #588021, typo for enable_network_manager in configure.ac (Ken VanDine)
 - Fixed #586284, Crasher: click on the microphone once disconnected

Translations:
 - Updated bn_IN Translation (Runa Bhattacharjee)
 - Updated es Translation (Jorge Gonzalez)
 - Updated fr Translation (Claude Paroz)
 - Updated lt Translation (Žygimantas Beručka)
 - Updated or Translation (Manoj Kumar Giri)
 - Updated pa Translation (A S Alam)
 - Updated sv Translation (Daniel Nylander)
 - Updated ta Translation (drtvasudevan)

NEW in 2.27.3
==============
Bugs fixed:
 - Fixed #522069, Improve message styles with themes/plugins (ala Adium)
 - Fixed #548707, "New Account" title and "I already have an account" checkbox are contradictory (Guillaume Desmottes)
 - Fixed #548716, First text field when adding account (e.g. "Login ID") isn't focused by default (Dimitris Zenios)
 - Fixed #560787, Should support IPv4 file transfer
 - Fixed #562981, make sametime support official (Guillaume Desmottes)
 - Fixed #563675, Does not show any error messages when FT channel request fails
 - Fixed #563896, "Conditional jump or move depends on uninitialised value" when sending a file
 - Fixed #564259, Tooltips in the MUC user list
 - Fixed #574478, Conversation not showing up in taskbar
 - Fixed #574878, can't rename account while the account is connecting
 - Fixed #574980, Audio/Video Chat windows don't show contact name
 - Fixed #575415, Should switch from libglade to GtkBuilder
 - Fixed #576405, Crash when a FT was cancelled
 - Fixed #578497, failure to cancel file transfer
 - Fixed #579725, Implement debug dialog using o.fd.Tp.Debug
 - Fixed #579992, Import of XMPP accounts sets port (Jonny Lamb)
 - Fixed #580921, Weird behaviour with MUC members in current master
 - Fixed #582191, The call windows should have a "redial" button.
 - Fixed #582736, Merge ft_rework branch
 - Fixed #582773, Empathy puts cheesy strings in my subscription requests
 - Fixed #582774, When no video is being sent, the video output and preview should show an icon instead of being black.
 - Fixed #583548, Python exemple is broken
 - Fixed #583785, Display a summary at the end of configure
 - Fixed #584061, IRC server for FreeNode is out of date (Guillaume Desmottes)
 - Fixed #584102, New tube API is now stable
 - Fixed #584147, The Map View doesn't have a loading throbber
 - Fixed #584206, Add the method empathy_contact_can_stream_tubes in the empathy-tp-contact-factory
 - Fixed #584462, user list stays empty
 - Fixed #584463, Contact menu is empty
 - Fixed #584518, Critical error in publish_to_all_connections
 - Fixed #584635, Sorting contacts by State doesn't place Available as top
 - Fixed #584639, Remove "View"/"Show" prefixes from View menu items
 - Fixed #584672, Add a right-click menu to conversation window tabs
 - Fixed #584755, Empathy doesn't show buddy list in IRC
 - Fixed #584807, EmpathyTpTube must die
 - Fixed #584830, Invalid read in new_connection_cb
 - Fixed #584924, GObjectify EmpathyProfileChooser
 - Fixed #584989, Asserts if a new group appears with the same name as an old one.
 - Fixed #585055, make distcheck is broken
 - Fixed #585078, Doesn't use address from Hostip
 - Fixed #585080, Lot of contacts are missing avatars
 - Fixed #585092, Tab tooltips show "(null)" for contacts without presence
 - Fixed #585201, Crashed when I disconnected
 - Fixed #585231, Asserts in dispatcher_start_dispatching when I reconnect to IRC (Will Thompson)
 - Fixed #585279, Crashed when accepting a FT failed
 - Fixed #585640, Only English should be used for i18n
 - Fixed #585669, GNOME Goal: Clean up GLib and GTK+ includes in empathy (Luis Menina)
 - Fixed #585788, Capitalisation incorrect (Guillaume Desmottes)
 - Fixed #571666, [2/3] Empathy should publish my geolocation
 - Fixed #571667, [3/3] Empathy should display my location

Translations:
 - Updated es Translation (Jorge Gonzalez)
 - Updated he Translation (Mark Krapivner)
 - Updated hu Translation (Gabor Kelemen)
 - Updated nb Translation (Kjartan Maraas)
 - Updated pa Translation (A S Alam)

NEW in 2.27.2
==============
Bugs fixed:
 - Fixed #569578, Lockdown patch
 - Fixed #580922, Conversation menu is dead to me
 - Fixed #582773, Empathy puts cheesy strings in my subscription requests
 - Fixed #583391, Python binding for pyempathygtk are broken
 - Fixed #583430, new editable status doesn't behave properly
 - Fixed #583558, Rename OfferStreamTube and AcceptStreamTube to Offer and Accept
 - Fixed #583566, Add View top level menu
 - Fixed #583785, Display a summary at the end of configure
 - Fixed #581871, "join chatroom" dialog doesn't report errors

Translations:
 - Updated es Translation (Jorge Gonzalez)
 - Updated ta Translation (drtvasudevan)

NEW in 2.27.1.1
===============
 - Fix ABI version to not conflict with 2.26 branch
 - Fix various coding style

Bugs fixed:
 - Fixed #582589, Should allow users to initially have either audio or audio/video calls

Translations:
 - Updated es Translation (Jorge Gonzalez)

Documentation translations:
 - Updated el Documentation translation (Γιάννης Κατσαμπίρης)

NEW in 2.27.1
==============
Bugs fixed:
 - Fixed #582641, crash in Empathy Instant Messenger: Making a call to a googl...
 - Fixed #501519, Empathy API need documentation
 - Fixed #504277, Empathy won't use 2nd and further protocols a connection manager provides
 - Fixed #530119, display remote caller in the call window
 - Fixed #539506, First message in conversation has no timestamp
 - Fixed #544678, Can't change account photo/avatar
 - Fixed #548704, "Add" button requires further action but lacks an ellipsis
 - Fixed #549366, Should use SimplePresence
 - Fixed #549641, Should use Contacts
 - Fixed #561033, Work on the documentation
 - Fixed #566905, avatar button is too tiny
 - Fixed #568403, Add header file in documentation
 - Fixed #568562, ghelp link broken in documentation
 - Fixed #570346, EmpathyTpChat should use the Group SelfHandle if present
 - Fixed #570545, Huge memory leak after opening some contacts discussion windows
 - Fixed #574626, No obvious way to display FT manager
 - Fixed #575090, Notifications of new messages stop working after closing the chat window
 - Fixed #575415, Should switch from libglade to GtkBuilder
 - Fixed #575442, "Call" string needs context for translation
 - Fixed #575817, empathy_tp_tube_new_stream_tube should allow NULL as parameters
 - Fixed #576384, "accept incoming call" dialog brings roster to current workspace
 - Fixed #576394, "Send Video" button and "Call -> Send video" menu entry are not synced
 - Fixed #577026, Sending slash-prefixed messages on IRC is a security risk.
 - Fixed #577427, Port to latest tp-glib API
 - Fixed #578356, Asserts when reconnecting to a chat room.
 - Fixed #578399, Change to supplying spelling suggestions in submenu
 - Fixed #579139, memleak in log_store_empathy_get_messages_for_file
 - Fixed #579148, Improves the Join New room UI by adding columns, changing the UI
 - Fixed #579553, Serveral memory leaks in empathy.
 - Fixed #579735, add empathy_tp_tube_call_when_ready ()
 - Fixed #579780, Several functions should be _dup_foo instead of _get_foo
 - Fixed #579800, adding or removing an IRC account causes a dialog to pop up
 - Fixed #579971, Try to access to a NULL GtkEntry when adding a new contact
 - Fixed #580097, Dispaly transfer speed, and make remaining time more dynamic
 - Fixed #580203, Theoretical race connecting to Received.
 - Fixed #580771, Video playback should have a fullscreen mode
 - Fixed #582751, No menu icon = no smiley
 - Fixed #563222, Wrong "time remaining" estimation when sending a file
 - Fixed #579484, New "join chatroom" dialog doesn't get list of rooms when room list is expanded
 - Fixed #579485, "Join Room" dialog should allow sorting the list of rooms
 - Fixed #571664, [1/3] Empathy should support Geolocation

Translations:
Updated ar Translation (Khaled Hosny)
Updated be Translation (Ihar Hrachyshka)
Updated bg Translation (Alexander Shopov)
Updated de Translation (Mario Blättermann)
Updated es Translation (Jorge Gonzalez, Jorge Gonzalez Gonzalez)
Updated gl Translation (Frco. Javier Rial, Ignacio Casal Quinteiro)
Updated it Translation (Milo Casagrande)
Updated kn Translation (Shankar Prasad)
Updated nl Translation (Wouter Bolsterlee)
Updated th Translation (Theppitak Karoonboonyanan)
Updated zh_CN Translation (Aron Xu)

NEW in 2.26.0
==============
 - Fix various VoIP bugs
 - Hook up audio mute button (Sjoerd Simons).
 - Set the camera button sensitive while connected and there is a video input (Sjoerd Simons).
 - Set empathy's media role to phone for so pulse can do policy on it.
   For more information see:
   http://pulseaudio.org/wiki/ApplicationProperties (Sjoerd Simons).
 - Updated Greek tramslation by Jennie Petoumenou (pkst).
 - Refactor log backend, it now make possible to implement other backends to
   read logs from other clients, and it logs messages sooner to avoid losing
   messages if empathy crash at any time (Jonny Lamb)

Translations:
 - Updated British English manual translation (pwithnall).
 - Updated Spanish translation (jorgegonz).
 - Updated Czech translation (Martin Picek).
 - Updated Marathi Translations (sandeeps).
 - Updated Lithuanian translation (Gintautas Miliauskas).
 - Updated French translation (Frédéric Peters, Bruno Brouard).
 - Updated Portuguese translation (Duarte Loreto).
 - Updated Russian translation (Nickolay V. Shmyrev).
 - Updated Danish translation (kennethn).
 - Updated assamese translations (amitakhya).
 - Updated Bulgarian translation (Alexander Shopov).
 - Updated Norwegian bokmål translation (Kjartan Maraas).
 - Updated Oriya Translation (mgiri).
 - Updated tamil translation (ifelix).
 - Updated German translation (Mario Blättermann).
 - Updated Telugu Translation (kkrothap).
 - Updated Italian translation (miloc).
 - Updated Slovenian translation (mateju).

NEW in 2.25.92
==============
 - Hardcode some a default codec preferences
 - Hook up the video input sidebar item (Sjoerd Simons).
 - Hook up audio input panel (Sjoerd Simons).
 - Use undrafted file transfer spec. (Jonny Lamb).

Bugs fixed:
 - Fixed #572875, Missing translator comments (fpeters)

Translations:
 - Added British English documentation. (Philip Withnall).
 - Updated Czech translation (Lucas Lommer).
 - Updated Slovenian translation (mateju).
 - Updated Kannada translations (sprasad).
 - Updated Polish translation (Tomasz Dominikowski).
 - Updated German translation (joskulj).
 - Updated Italian translation (Milo Casagrande).
 - Updated Spanish translation (jorgegonz).
 - Updated British English translation. (Philip Withnall).
 - Updated th translation. (tkaroonb).
 - Updated Malayalam translation (apravi).
 - Updated German documentation (mariobl).
 - Updated ja translation  (Takeshi AIHANA).
 - Updated Swedish translation (dnylande).
 - Updated Catalan translation (gforcada).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - updated latvian translation (Raivis Dejus).
 - Updated sv translation  (Daniel Nylander).
 - Updated Basque translation. (Inaki Larranaga Murgoitio).
 - Updated Finnish translation (ituohela).
 - Updated ko translation. (cwryu).
 - Updated French translation (Laurent Coudeur, Claude Paroz).
 - Updated ro translation  (Adi Roiban).
 - Updated Hungarian translation (kelemeng).
 - Updated ca translation  (Gil Forcada).

NEW in 2.25.91
==============
 - Set the intial volume button level to a more correct one (Sjoerd Simons).
 - Set the camera button insensitive after a call (Sjoerd Simons).
 - Hook up the volume button (Sjoerd Simons).
 - Hook up DTFM support (Sjoerd Simons).
 - Notify when receiving an invitation to join a MUC (Guillaume Desmottes).
 - Save status message on NetworkManager disconnect and restore on reconnect (Davyd Madeley).

Bugs fixed:
 - Fixed #525559, Ignore muc invitations (Guillaume Desmottes)
 - Fixed #562109, Spacing in contact information dialog (Frédéric Peters)
 - Fixed #570357, make install fails on master (tkaroonb)
 - Fixed #570397, Menu icon for 'Hang Up' is too large in call UI window (Jonathon Jongsma)
 - Fixed #571184, Event toolip displayes (null) if no message was provided (Guillaume Desmottes)
 - Fixed #571635, Minor string fixes (Bruce Cowan)

Translations:
 - Updated Bulgarian translation (Alexander Shopov)
 - Updated ro translation (Alexandru Szasz, Mișu Moldovan).
 - Updated ja translation  (Takeshi AIHANA).
 - Updated Danish translation (Knneth Nielsen).
 - Updated Polish translation (Tomasz Dominikowski).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - Updated Vietnamese translation (Clytie Siddall).
 - Updated Hungarian translation (kelemeng).
 - Updated Basque translation  (Inaki Larranaga Murgoitio).
 - Updated Swedish translation  (Daniel Nylander).
 - Updated pt_BR translation  (Andre Gondim).
 - Updated Norwegian bokmål translation. (kmaraas).

NEW in 2.25.90
==============
 - Rewrite Voice/Video call UI, and use farsight2 instead of stream-engine. (Sjoerd Simons).
 - Add libnotify support (Jonny Lamb, Elliot Fairweather).
 - Add EmpathyContactSelector (Jonny Lamb, Elliot Fairweather).
 - Renamed G_STR_EMPTY to EMP_STR_EMPTY (Jonny Lamb).
 - Update the user documentation  (Milo Casagrande).
 - Rename _new -> _dup_singleton. (Cosimo Cecchi).
 - Remove usage of EmpathyTpGroup from EmpathyTpCall. (Xavier Claessens).
 - Remove some usage of EmpathyTpGroup from EmpathyTpChat (Xavier Claessens).
 - Rework internal dispatcher (Sjoerd Simons).

Bugs fixed:
 - Fixed #548768, You can open several avatar file pickers for the same account (Frederic Peters)
 - Fixed #562554, "Chat -> View Previous Conversations" should be disabled if no account (fpeters)
 - Fixed #566549, Please remove trailing space (Leonardo Ferreira Fontenelle)
 - Fixed #566676, There should not be any "gtk-ok", "gtk-cancel" etc. string in .pot (Lucas Lommer)
 - Fixed #569884, no --version command-line option (Bruce Cowan)
 - Fixed #569901, i18n problems in main() (Cosimo Cecchi)
 - Fixed #570066, Missing file from POTFILES.in (Gabor Kelemen )
 - Fixed #570080, empathy fails to build outside source tree (Theppitak Karoonboonyanan)

Translations:
 - Updated pt_BR translation  (Michel Recondo).
 - Updated Hungarian translation (kelemeng).
 - Updated es translation  (Jorge Gonzalez).
 - Updated ca translation  (Gil Forcada).
 - Updated Greek translation  (Marios Zindilis).
 - Updated Spanish translation (jorgegonz).
 - Updated ko translation. (cwryu).
 - updated hebrew translation (yairhr).
 - Updated gr translation  (Marios Zindilis).
 - Updated Slovenian translation (mateju).
 - Updated Norwegian bokmål translation. (kmaraas).
 - Updated th translation  (Theppitak Karoonboonyanan).
 - Updated sv translation  (Daniel Nylander).

NEW in 2.25.4
==============
 - Add sound notifications using libcanberra-gtk (Cosimo Cecchi)

Bugs fixed:

Translations:
 - Updated Norwegian bokmål translation. (kmaraas).
 - Updated pt_BR translation  (Taylon Silmer).

NEW in 2.25.3
==============
 - Refactor EmpathyChatView to make possible to use other backends than
   GtkTextView. Required to use Webkit and adium themes.
 - Use gi18n-lib.h instead of gi18n.h for libraries. (Xavier Claessens).
 - Add empathy_init(), empathy_gtk_init(). They have to be called by any process
   using libempathy and libempathy-gtk. (Xavier Claessens).
 - Do not make allow to add a contact to accounts that do not have contact list,
   like IRC or SIP. (Guillaume Desmottes)
 - Improve URI regex. (Xavier Claessens).
 - Drop libgnomeui dependency  (Cosimo Cecchi).
 - Use GTK+ 2.14.0 and gtk_show_uri  (Cosimo Cecchi).

Bugs fixed:
 - Fixed #552296, Autocompletion on contact names for "new message" dialog box (Emmanuel Bretelle, Xavier Claessens)
 - Fixed #562873, doesn't build with werror on x86_64 (Xavier Claessens)
 - Fixed #563713, linkifies "@name", and captures the next word (Xavier Claessens)

Translations:
 - Updated it translation  (Milo Casagrande).
 - Updated ca translation  (Joan Duran).
 - Added Catalan translation (Joan Duran).

NEW in 2.25.2
==============
 - Use GRegex instead of custom code and use a new regex to detect URIs (Xavier Claessens).
 - Replace Q_() with C_() for translation context. (Xavier Claessens).
 - Add file transfer support (Xavier Claessens, Guillaume Desmottes, Jonny Lamb, Marco Barisione).
 - Use markup for chat-window tooltips (hasselmm).
 - Convert avatar to fit the resolution and size requirements (Xavier Claessens, Will Thompson).

Bugs fixed:
 - Fixed #554938, Misspelled word in docs, help/C/empathy.xml:114 (fpeters)
 - Fixed #496100, Invites to Chat Rooms unimplemented (Guillaume Desmottes)
 - Fixed #541060, import accounts from Pidgin when first run (Xavier Claessens, Jonny Lamb)
 - Fixed #542176, EmpathyChatroomManager doesn't contain active chat rooms (Guillaume Desmottes)
 - Fixed #544029, empathy's configure.ac doesn't detect python 2.6 (fpeters)
 - Fixed #553066, Some strings are not translatable in megaphone-applet (kelemeng)
 - Fixed #554284, Bad email link (fpeters)
 - Fixed #558370, empathy do not link on os x 10.5 (Michael Scherer)
 - Fixed #560387, Crash when joining a chatroom (Guillaume Desmottes)
 - Fixed #560611, Cannot distinguish IRC chats: They all have the label "Conversation". (Xavier Claessens)
 - Fixed #560622, Show account name in conversation label. (hasselmm)
 - Fixed #562071, Empathy logview crashes if no accout exitsts. (Xavier Claessens)
 - Fixed #562588, Bugfix for the compile time libempathy/empathy-dispatcher.c (Stephane Wirtel)

Translations:
 - Updated Turkish translation  (Baris Cicek).
 - Updated es translation  (Jorge Gonzalez).
 - Updated ps translation  (Zabeeh Khan).
 - Updated German translation. (Hendrik Richter).
 - Updated Lithuanian translation  (Gintautas Miliauskas).
 - Updated ku translation (eronahi).
 - Added Russian translation (Nikita Belobrov, aprokoudine).
 - Updated Greek translation  (Nick Agianniotis).
 - Updated th translation  (Theppitak Karoonboonyanan).
 - Updated el translation (frolix68).
 - Updated Danish translation  (Kenneth Nielsen).
 - Updated sv translation  (Daniel Nylander).
 - Updated cs translation (Martin Picek and Lucas Lommer).
 - Updated Hungarian translation (kelemeng).
 - Updated Galician Translation. (icq).
 - Updated Finnish translation (ituohela).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated Bulgarian translation (Alexander Shopov).
 - Updated zh_CN translation. (fwang, zyang).
 - Updated Arabic Translation (Anas Afif Emad).
 - Updated sr translation (grakic).

NEW in 2.23.92
==============

Bugs fixed:
 - Fixed #550556, IRC Network combo sometimes has wrong network selected (Guillaume Desmottes)
 - Fixed #551096, Chat window has two close buttons (fpeters)
 - Fixed #551113, windows lack WM_WINDOW_ROLE property (fpeters)
 - Fixed #504154, Cleanup in *.pc files (Dafydd Harries)

Translations:
 - Updated pt translation (Duarte Loreto).
 - Updated nl translation (Vincent van Adrighem).
 - Updated en_GB translation  (Philip Withnall).
 - Updated cs translation  (Adrian Gunis).
 - Updated Polish translation (Tomasz Dominikowski).
 - Updated Bulgarian translation (Alexander Shopov).
 - Updated sv translation (dnylande).
 - Updated Vietnamese translation (Nguyễn Thái Ngọc Duy).
 - Added th translation  (Theppitak Karoonboonyanan).

NEW in 2.23.91
==============
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).

Bugs fixed:
 - Fixed #546568, Account name in contact tootlip is shown as selected (fpeters)
 - Fixed #548578, all protocols are listed twice in the accounts creation list (fpeters)
 - Fixed #548632, don't use italic for status text in contact list (fpeters)
 - Fixed #548693, Use Yahoo ID as label (fpeters)
 - Fixed #548709, "Undo" button in Accounts window doesn't undo anything (fpeters)
 - Fixed #549002, pygtk-codegen-2.0 got replaced by pygobject-codegen-2.0 (fpeters)
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation (Vladimir Melo, Fábio Nogueira).
 - Updated Finnish translation (ituohela).
 - Updated cs translation (Adrian Gunis).
 - Updated mk translation (Jovan Naumovski).
 - Updated Basque translation (Larranaga Murgoitio).
 - Updated Arabic Translation (Youssef Chahibi).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - Updated Polish translation (Tomasz Dominikowski).
 - Updated Galician translation (icq).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated French translation (bobmauchin).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).

NEW in 2.23.91
==============
 - Do not create a new EmpathyChatroom is it already exists. (Xavier Claessens).
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Reorder files in alphabetical order. (Xavier Claessens).
 - Correct the xml indentation (Xavier Claessens).
 - Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
 - Make sure to not unref tooltop_widget more than once (Xavier Claessens).
 - Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
 - Update translation (kmaraas).
 - Conversion from sr@Latn to sr@latin (grakic).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
 - EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
 - Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
 - Added Bengali India (bn_IN) to the list of languages (runab).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).
 - 2.23.91 (chliao).
 - 2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Fixed two minor errors. (leonardof).
 - check there is an account before accessing it; prevents a segfault when calling
up the 'previous conversations' dialog and there is no account configured. (fpeters).
 - Bump version to 2.23.91 (Xavier Claessens).

Bugs fixed:
 - Fixed #546568, Account name in contact tootlip is shown as selected (fpeters)
 - Fixed #548578, all protocols are listed twice in the accounts creation list (fpeters)
 - Fixed #548632, don't use italic for status text in contact list (fpeters)
 - Fixed #548693, Use Yahoo ID as label (fpeters)
 - Fixed #548709, "Undo" button in Accounts window doesn't undo anything (fpeters)
 - Fixed #549002, pygtk-codegen-2.0 got replaced by pygobject-codegen-2.0 (fpeters)
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation  (Vladimir Melo).
 - Updated Finnish translation (ituohela).
 - Updated cs translation  (Adrian Gunis).
 - Updated mk translation  (Jovan Naumovski).
 - Updated mk translation  (Jovan Naumovski).
 - 2008-08-26  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - * Updated Arabic Translation by Youssef Chahibi. (djihed).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - 2008-08-25  Tomasz Dominikowski  <tdominikowski@aviary.pl>
* pl.po: Updated Polish translation (tomaszd).
 - Updated Galician translation (icq).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated French translation (bobmauchin).
 - Updated Spanish translation (jorgegonz).
 - Updated Galician translation (icq).
 - 2008-08-20  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - Updated Translation (laurenti).
 - 2008-08-19  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Brazilian Portuguese translation updated by Fábio Nogueira
and Leonardo Ferreira Fontenelle. (leonardof).
 - Updated Galician translation (icq).
 - Updated Spanish translation (jorgegonz).

NEW in 2.23.91
==============
 - Do not create a new EmpathyChatroom is it already exists. (Xavier Claessens).
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Reorder files in alphabetical order. (Xavier Claessens).
 - Correct the xml indentation (Xavier Claessens).
 - Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
 - Make sure to not unref tooltop_widget more than once (Xavier Claessens).
 - Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
 - Update translation (kmaraas).
 - Conversion from sr@Latn to sr@latin (grakic).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
 - EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
 - Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
 - Added Bengali India (bn_IN) to the list of languages (runab).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).
 - 2.23.91 (chliao).
 - 2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Fixed two minor errors. (leonardof).
 - check there is an account before accessing it; prevents a segfault when calling
up the 'previous conversations' dialog and there is no account configured. (fpeters).
 - Bump version to 2.23.91 (Xavier Claessens).

Bugs fixed:
 - Fixed #546568, Account name in contact tootlip is shown as selected (fpeters)
 - Fixed #548578, all protocols are listed twice in the accounts creation list (fpeters)
 - Fixed #548632, don't use italic for status text in contact list (fpeters)
 - Fixed #548693, Use Yahoo ID as label (fpeters)
 - Fixed #548709, "Undo" button in Accounts window doesn't undo anything (fpeters)
 - Fixed #549002, pygtk-codegen-2.0 got replaced by pygobject-codegen-2.0 (fpeters)
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation  (Vladimir Melo).
 - Updated Finnish translation (ituohela).
 - Updated cs translation  (Adrian Gunis).
 - Updated mk translation  (Jovan Naumovski).
 - Updated mk translation  (Jovan Naumovski).
 - 2008-08-26  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - * Updated Arabic Translation by Youssef Chahibi. (djihed).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - 2008-08-25  Tomasz Dominikowski  <tdominikowski@aviary.pl>
* pl.po: Updated Polish translation (tomaszd).
 - Updated Galician translation (icq).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated French translation (bobmauchin).
 - Updated Spanish translation (jorgegonz).
 - Updated Galician translation (icq).
 - 2008-08-20  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - Updated Translation (laurenti).
 - 2008-08-19  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Brazilian Portuguese translation updated by Fábio Nogueira
and Leonardo Ferreira Fontenelle. (leonardof).
 - Updated Galician translation (icq).
 - Updated Spanish translation (jorgegonz).

NEW in 2.23.91
==============
 - Do not create a new EmpathyChatroom is it already exists. (Xavier Claessens).
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Reorder files in alphabetical order. (Xavier Claessens).
 - Correct the xml indentation (Xavier Claessens).
 - Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
 - Make sure to not unref tooltop_widget more than once (Xavier Claessens).
 - Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
 - Update translation (kmaraas).
 - don't use italic for status text in contact list  (closes: #548632).
 - Conversion from sr@Latn to sr@latin (grakic).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
 - EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
 - added check for pygtk-codegen-2.0 and pygobject-codegen-2.0 as the latter
replaced the former in pygobject/pygtk trunk.   (closes: #549002).
 - Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
 - Added Bengali India (bn_IN) to the list of languages (runab).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).
 - 2.23.91 (chliao).
 - Change label in Accounts window from Undo to Cancel.   (closes: #548709).
 - 2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Fixed two minor errors. (leonardof).
 - don't list profiles twice.   (closes: #548578).
 - Use "Yahoo ID" instead of "Login ID" for Yahoo accounts.   (closes: #548693).
 - don't let label text be selected in contact tooltip   (closes: #546568).
 - check there is an account before accessing it; prevents a segfault when calling
up the 'previous conversations' dialog and there is no account configured. (fpeters).
 - Bump version to 2.23.91 (Xavier Claessens).

Bugs fixed:
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation  (Vladimir Melo).
 - Updated Finnish translation (ituohela).
 - Updated cs translation  (Adrian Gunis).
 - Updated mk translation  (Jovan Naumovski).
 - Updated mk translation  (Jovan Naumovski).
 - 2008-08-26  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - * Updated Arabic Translation by Youssef Chahibi. (djihed).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - 2008-08-25  Tomasz Dominikowski  <tdominikowski@aviary.pl>
* pl.po: Updated Polish translation (tomaszd).
 - Updated Galician translation (icq).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated French translation (bobmauchin).
 - Updated Spanish translation (jorgegonz).
 - Updated Galician translation (icq).
 - 2008-08-20  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - Updated Translation (laurenti).
 - 2008-08-19  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Brazilian Portuguese translation updated by Fábio Nogueira
and Leonardo Ferreira Fontenelle. (leonardof).
 - Updated Galician translation (icq).
 - Updated Spanish translation (jorgegonz).

NEW in 2.23.91
==============
 - Do not create a new EmpathyChatroom is it already exists. (Xavier Claessens).
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Reorder files in alphabetical order. (Xavier Claessens).
 - Correct the xml indentation (Xavier Claessens).
 - Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
 - Make sure to not unref tooltop_widget more than once (Xavier Claessens).
 - Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
 - Update translation (kmaraas).
 - don't use italic for status text in contact list  (closes: #548632).
 - Conversion from sr@Latn to sr@latin (grakic).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
 - EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
 - added check for pygtk-codegen-2.0 and pygobject-codegen-2.0 as the latter
replaced the former in pygobject/pygtk trunk.   (closes: #549002).
 - Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
 - Added Bengali India (bn_IN) to the list of languages (runab).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).
 - 2.23.91 (chliao).
 - Change label in Accounts window from Undo to Cancel.   (closes: #548709).
 - 2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Fixed two minor errors. (leonardof).
 - don't list profiles twice.   (closes: #548578).
 - Use "Yahoo ID" instead of "Login ID" for Yahoo accounts.   (closes: #548693).
 - don't let label text be selected in contact tooltip   (closes: #546568).
 - check there is an account before accessing it; prevents a segfault when calling
up the 'previous conversations' dialog and there is no account configured. (fpeters).
 - Bump version to 2.23.91 (Xavier Claessens).

Bugs fixed:
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation  (Vladimir Melo).
 - Updated Finnish translation (ituohela).
 - Updated cs translation  (Adrian Gunis).
 - Updated mk translation  (Jovan Naumovski).
 - Updated mk translation  (Jovan Naumovski).
 - 2008-08-26  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - * Updated Arabic Translation by Youssef Chahibi. (djihed).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - 2008-08-25  Tomasz Dominikowski  <tdominikowski@aviary.pl>
* pl.po: Updated Polish translation (tomaszd).
 - Updated Galician translation (icq).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated French translation (bobmauchin).
 - Updated Spanish translation (jorgegonz).
 - Updated Galician translation (icq).
 - 2008-08-20  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - Updated Translation (laurenti).
 - 2008-08-19  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Brazilian Portuguese translation updated by Fábio Nogueira
and Leonardo Ferreira Fontenelle. (leonardof).
 - Updated Galician translation (icq).
 - Updated Spanish translation (jorgegonz).

NEW in 2.23.91
==============
 - Do not create a new EmpathyChatroom is it already exists. (Xavier Claessens).
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Reorder files in alphabetical order. (Xavier Claessens).
 - Correct the xml indentation (Xavier Claessens).
 - Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
 - Make sure to not unref tooltop_widget more than once (Xavier Claessens).
 - Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
 - Update translation (kmaraas).
 - don't use italic for status text in contact list  (closes: #548632).
 - Conversion from sr@Latn to sr@latin (grakic).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
 - EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
 - added check for pygtk-codegen-2.0 and pygobject-codegen-2.0 as the latter
replaced the former in pygobject/pygtk trunk.   (closes: #549002).
 - Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
 - Added Bengali India (bn_IN) to the list of languages (runab).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).
 - 2.23.91 (chliao).
 - Change label in Accounts window from Undo to Cancel.   (closes: #548709).
 - 2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Fixed two minor errors. (leonardof).
 - don't list profiles twice.   (closes: #548578).
 - Use "Yahoo ID" instead of "Login ID" for Yahoo accounts.   (closes: #548693).
 - don't let label text be selected in contact tooltip   (closes: #546568).
 - check there is an account before accessing it; prevents a segfault when calling
up the 'previous conversations' dialog and there is no account configured. (fpeters).
 - Bump version to 2.23.91 (Xavier Claessens).

Bugs fixed:
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation  (Vladimir Melo).
 - Updated Finnish translation (ituohela).
 - Updated cs translation  (Adrian Gunis).
 - Updated mk translation  (Jovan Naumovski).
 - Updated mk translation  (Jovan Naumovski).
 - 2008-08-26  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - * Updated Arabic Translation by Youssef Chahibi. (djihed).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - 2008-08-25  Tomasz Dominikowski  <tdominikowski@aviary.pl>
* pl.po: Updated Polish translation (tomaszd).
 - Updated Galician translation (icq).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated French translation (bobmauchin).
 - Updated Spanish translation (jorgegonz).
 - Updated Galician translation (icq).
 - 2008-08-20  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - Updated Translation (laurenti).
 - 2008-08-19  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Brazilian Portuguese translation updated by Fábio Nogueira
and Leonardo Ferreira Fontenelle. (leonardof).
 - Updated Galician translation (icq).
 - Updated Spanish translation (jorgegonz).

NEW in 2.23.91
==============
 - Do not create a new EmpathyChatroom is it already exists. (Xavier Claessens).
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Reorder files in alphabetical order. (Xavier Claessens).
 - Correct the xml indentation (Xavier Claessens).
 - Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
 - Make sure to not unref tooltop_widget more than once (Xavier Claessens).
 - Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
 - Update translation (kmaraas).
 - don't use italic for status text in contact list  (closes: #548632).
 - Conversion from sr@Latn to sr@latin (grakic).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
 - EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
 - added check for pygtk-codegen-2.0 and pygobject-codegen-2.0 as the latter
replaced the former in pygobject/pygtk trunk.   (closes: #549002).
 - Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
 - Added Bengali India (bn_IN) to the list of languages (runab).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).
 - 2.23.91 (chliao).
 - Change label in Accounts window from Undo to Cancel.   (closes: #548709).
 - 2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Fixed two minor errors. (leonardof).
 - don't list profiles twice.   (closes: #548578).
 - Use "Yahoo ID" instead of "Login ID" for Yahoo accounts.   (closes: #548693).
 - don't let label text be selected in contact tooltip   (closes: #546568).
 - check there is an account before accessing it; prevents a segfault when calling
up the 'previous conversations' dialog and there is no account configured. (fpeters).
 - Bump version to 2.23.91 (Xavier Claessens).

Bugs fixed:
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation  (Vladimir Melo).
 - Updated Finnish translation (ituohela).
 - Updated cs translation  (Adrian Gunis).
 - Updated mk translation  (Jovan Naumovski).
 - Updated mk translation  (Jovan Naumovski).
 - 2008-08-26  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - * Updated Arabic Translation by Youssef Chahibi. (djihed).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - 2008-08-25  Tomasz Dominikowski  <tdominikowski@aviary.pl>
* pl.po: Updated Polish translation (tomaszd).
 - Updated Galician translation (icq).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated French translation (bobmauchin).
 - Updated Spanish translation (jorgegonz).
 - Updated Galician translation (icq).
 - 2008-08-20  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - Updated Translation (laurenti).
 - 2008-08-19  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Brazilian Portuguese translation updated by Fábio Nogueira
and Leonardo Ferreira Fontenelle. (leonardof).
 - Updated Galician translation (icq).
 - Updated Spanish translation (jorgegonz).

NEW in 2.23.91
==============
 - Do not create a new EmpathyChatroom is it already exists. (Xavier Claessens).
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Reorder files in alphabetical order. (Xavier Claessens).
 - Correct the xml indentation (Xavier Claessens).
 - Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
 - Make sure to not unref tooltop_widget more than once (Xavier Claessens).
 - Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
 - Update translation (kmaraas).
 - don't use italic for status text in contact list  (closes: #548632).
 - Conversion from sr@Latn to sr@latin (grakic).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
 - EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
 - added check for pygtk-codegen-2.0 and pygobject-codegen-2.0 as the latter
replaced the former in pygobject/pygtk trunk.   (closes: #549002).
 - Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
 - Added Bengali India (bn_IN) to the list of languages (runab).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).
 - 2.23.91 (chliao).
 - Change label in Accounts window from Undo to Cancel.   (closes: #548709).
 - 2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Fixed two minor errors. (leonardof).
 - don't list profiles twice.   (closes: #548578).
 - Use "Yahoo ID" instead of "Login ID" for Yahoo accounts.   (closes: #548693).
 - don't let label text be selected in contact tooltip   (closes: #546568).
 - check there is an account before accessing it; prevents a segfault when calling
up the 'previous conversations' dialog and there is no account configured. (fpeters).
 - Bump version to 2.23.91 (Xavier Claessens).

Bugs fixed:
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation  (Vladimir Melo).
 - Updated Finnish translation (ituohela).
 - Updated cs translation  (Adrian Gunis).
 - Updated mk translation  (Jovan Naumovski).
 - Updated mk translation  (Jovan Naumovski).
 - 2008-08-26  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - * Updated Arabic Translation by Youssef Chahibi. (djihed).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - 2008-08-25  Tomasz Dominikowski  <tdominikowski@aviary.pl>
* pl.po: Updated Polish translation (tomaszd).
 - Updated Galician translation (icq).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated French translation (bobmauchin).
 - Updated Spanish translation (jorgegonz).
 - Updated Galician translation (icq).
 - 2008-08-20  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - Updated Translation (laurenti).
 - 2008-08-19  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Brazilian Portuguese translation updated by Fábio Nogueira
and Leonardo Ferreira Fontenelle. (leonardof).
 - Updated Galician translation (icq).
 - Updated Spanish translation (jorgegonz).

NEW in 2.23.91
==============
 - Do not create a new EmpathyChatroom is it already exists. (Xavier Claessens).
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Reorder files in alphabetical order. (Xavier Claessens).
 - Correct the xml indentation (Xavier Claessens).
 - Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
 - Make sure to not unref tooltop_widget more than once (Xavier Claessens).
 - Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
 - Update translation (kmaraas).
 - don't use italic for status text in contact list  (closes: #548632).
 - Conversion from sr@Latn to sr@latin (grakic).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
 - EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
 - added check for pygtk-codegen-2.0 and pygobject-codegen-2.0 as the latter
replaced the former in pygobject/pygtk trunk.   (closes: #549002).
 - Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
 - Added Bengali India (bn_IN) to the list of languages (runab).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).
 - 2.23.91 (chliao).
 - Change label in Accounts window from Undo to Cancel.   (closes: #548709).
 - 2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Fixed two minor errors. (leonardof).
 - don't list profiles twice.   (closes: #548578).
 - Use "Yahoo ID" instead of "Login ID" for Yahoo accounts.   (closes: #548693).
 - don't let label text be selected in contact tooltip   (closes: #546568).
 - check there is an account before accessing it; prevents a segfault when calling
up the 'previous conversations' dialog and there is no account configured. (fpeters).
 - Bump version to 2.23.91 (Xavier Claessens).

Bugs fixed:
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation  (Vladimir Melo).
 - Updated Finnish translation (ituohela).
 - Updated cs translation  (Adrian Gunis).
 - Updated mk translation  (Jovan Naumovski).
 - Updated mk translation  (Jovan Naumovski).
 - 2008-08-26  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - * Updated Arabic Translation by Youssef Chahibi. (djihed).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - 2008-08-25  Tomasz Dominikowski  <tdominikowski@aviary.pl>
* pl.po: Updated Polish translation (tomaszd).
 - Updated Galician translation (icq).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated French translation (bobmauchin).
 - Updated Spanish translation (jorgegonz).
 - Updated Galician translation (icq).
 - 2008-08-20  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation. (dooteo).
 - Updated Translation (laurenti).
 - 2008-08-19  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Brazilian Portuguese translation updated by Fábio Nogueira
and Leonardo Ferreira Fontenelle. (leonardof).
 - Updated Galician translation (icq).
 - Updated Spanish translation (jorgegonz).

NEW in 2.23.91
==============
 - Add a menu item in chat window to set the room as favorite (Xavier Claessens).
 - Reorder files in alphabetical order. (Xavier Claessens).
 - Correct the xml indentation (Xavier Claessens).
 - Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
 - Make sure to not unref tooltop_widget more than once (Xavier Claessens).
 - Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
 - Update translation (kmaraas).
 - don't use italic for status text in contact list  (closes: #548632).
 - Conversion from sr@Latn to sr@latin (grakic).
 - Make Chat the default in New Conversation… dialog (Xavier Claessens).
 - Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
 - EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
 - added check for pygtk-codegen-2.0 and pygobject-codegen-2.0 as the latter
replaced the former in pygobject/pygtk trunk.   (closes: #549002).
 - Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
 - Added Bengali India (bn_IN) to the list of languages (runab).
 - Added Bengali India Translation (runab).
 - Added gujarati translation (swkothar).
 - 2.23.91 (chliao).
 - Change label in Accounts window from Undo to Cancel.   (closes: #548709).
 - 2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
* pt_BR.po: Fixed two minor errors. (leonardof).
 - don't list profiles twice.   (closes: #548578).
 - Use "Yahoo ID" instead of "Login ID" for Yahoo accounts.   (closes: #548693).
 - don't let label text be selected in contact tooltip   (closes: #546568).
 - check there is an account before accessing it; prevents a segfault when calling
up the 'previous conversations' dialog and there is no account configured. (fpeters).
 - Bump version to 2.23.91 (Xavier Claessens).

Bugs fixed:
 - Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
 - Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)

Translations:
 - Updated Brazilian Portuguese translation  (Vladimir Melo, Fábio Nogueira).
 - Updated Finnish translation (ituohela).
 - Updated cs translation  (Adrian Gunis).
 - Updated mk translation  (Jovan Naumovski).
 - Updated Basque translation. (dooteo).
 - Updated Arabic Translation (Youssef Chahibi).
 - Updated sv translation  (Daniel Nylander).
 - Updated es translation  (Jorge Gonzalez).
 - Updated Polish translation (tomaszd).
 - Updated Galician translation (icq).
 - Updated French translation (bobmauchin).
 - Updated Spanish translation (jorgegonz).

NEW in 2.23.90
==============
 - Do not display MSN Haze if butterfly is installed (Xavier Claessens).
 - If display name of the selected account changes, update the label. (Xavier Claessens).
 - If there is no account configured, accounts dialog directly propose to add an account (Xavier Claessens).
 - Add QQ profile and icons (Xavier Claessens).
 - Add gadugadu profile and icons (Xavier Claessens).
 - Show the main window by default on first run. (Xavier Claessens).
 - Use a GtkMessageDialog instead of GtkDialog for remove confirmation diaog of contact/group. (Xavier Claessens).

Bugs fixed:
 - Fixed #529084, going offline then coming back leaves chat text input unsensitive (Xavier Claessens)
 - Fixed #540356, Problem with NetworkManager interaction (Xavier Claessens)
 - Fixed #547326, A sentence is too big without pauses (fpeters)

Translations:
 - Updated the kn translations (sprasad).
 - Updated Norwegian bokmål translation. (kmaraas).
 - Updated pl translation  (Tomasz Dominikowski).
 - Updated pt_BR translation  (Djavan Fagundes).
 - Updated Finnish translation (ituohela).
 - Updated Spanish translation (jorgegonz).
 - Updated Galician translation (icq).
 - Updated Marathi Translations (sandeeps).
 - Updated pt translation  (Duarte Loreto).
 - Updated fr translation  (Claude Paroz).
 - updated he translation (yairhr).
 - Updated Arabic Translation by Youssef Chahibi. (djihed).
 - Updated sv translation  (Daniel Nylander).

NEW in 2.23.6
==============
 - Remove empathy-accounts binary, it is replaced by empathy --accounts (Xavier Claessens).
 - Added empathy-properties desktop file to configure MC accounts from the GNOME panel -> System -> Preferences. (Jonny Lamb)
 - Replace the preview button by a cancel button when creating a new account (Xavier Claessens).
 - Move event code from EmpathyStatusIcon to EmpathyEventManager (Xavier Claessens).
 - Make the icon blink in the contact list when a contact has an event like new message, incoming call, etc. (Xavier Claessens)

Bugs fixed:
 - Fixed #462880, Can't register a new account on Jabber servers (Xavier Claessens)
 - Fixed #486801, Unable to rename the account (change the account name) (Xavier Claessens)
 - Fixed #544964, Button "Add Gruop" not translatable (Milo Casagrande)
 - Fixed #546154, translation issues (Xavier Claessens)
 - Fixed #546218, Bad message when a call is refused (Xavier Claessens)

Translations:
 - Updated es translation  (Jorge Gonzalez).
 - Updated Arabic Translation (Youssef Chahibi).
 - Updated de translation  (Andre Klapper).
 - Updated Galician translation (icq).
 - Updated Norwegian bokmål translation. (kmaraas).
 - Updated sv translation  (Daniel Nylander).
 - Updated Bulgarian translation (Alexander Shopov).
 - Updated ja translation  (Takeshi AIHANA).
 - Updated Polish translation (Tomasz Dominikowski).

NEW in 0.23.4
==============
 - Save avatar to file when right click on the avatar image (Guillaume Desmottes).
 - Made the Close button the default widget in the contact edit dialog. (Jonny Lamb)
 - Made account removal confirmation dialog modal. (Jonny Lamb)
 - Set an smiley icon for the "Insert smiley" menu item. (Xavier Claessens).
 - Set an icon for the spellcheck menu item (Xavier Claessens).
 - Fix the bug "Incoming call from (null)" (Alban Crequy)
 - Do not show the keypad when the media channel does not have the DTMF interface  (Alban Crequy).
 - Better dialog message when a call is rejected (Alban Crequy)
 - Use empathy.foo() instead of empathy_foo() for functions binding (Xavier Claessens).
 - EmpathyCallWindow: Get a new video preview when pushing a new call into the window.  (Sjoerd Simons).
 - Fix chatroom listing with salut accounts. (Xavier Claessens).

Bugs fixed:
 - Fixed #537690, crash in Empathy Instant Messenger: Adding new SIP contact t... (Xavier Claessens)
 - Fixed #540360, crash in Empathy Instant Messenger: starting empathy (Xavier Claessens)
 - Fixed #526892, Should set the buddy icon as window icon (Xavier Claessens)
 - Fixed #532622, No way to send a message with the mouse. (Xavier Claessens)
 - Fixed #534425, Username is full ID (should it detect missing @ekiga.net?) (Xavier Claessens)
 - Fixed #535080, Add a --silent option (Marco Pesenti Gritti)
 - Fixed #536391, Existing chat window moves when a new chat window is opened (Ross Burton)
 - Fixed #536628, Close contact list when Escape is pressed (Ross Burton)
 - Fixed #536984, Should select the right account when reconfigure a bugged account (Xavier Claessens)
 - Fixed #537129, Does not build with gcc 4.3.0 (Cosimo Cecchi)
 - Fixed #537249, Use function to check GTK+ version instead of mangling directly (Ross Burton)
 - Fixed #541431, Feature to save a contact's display picture (Guillaume Desmottes)
 - Fixed #542196, Reverse order of buttons on the dialog box to delete a contact (or a group) (Gaëtan Podevijn)
 - Fixed #542231, Tubes: memory freed with tp_g_value_slice_free instead of g_free() (Alban Crequy)

Translations:
 - Updated de translation  (Andre Klapper).
 - Updated Galician Translation. (icq).
 - Updated es translation  (Jorge Gonzalez).
 - Updated Norwegian bokmål translation. (kmaraas).
 - Updated Occitan translation (ymarcheg).
 - Updated sv translation  (Daniel Nylander).
 - Updated vi translation  (Clytie Siddall).
 - Updated Russian translation. (Il'ya Mertsalov).
 - Updated fr translation. (claudep).
 - Updated Arabic Translation. (Abou Manal).

NEW in 0.23.3
==============
 - Updated manual (Milo Casagrande).
 - Set a tooltip on contact list view showing EmpathyContactWidget information.
   Only enabled if running with GTK+ >= 2.12.10 because of
   bug #504087 (Xavier Claessens).
 - Move avatar cache to ~/.cache and don't mix avatar from different contacts,
   tokens are not garanteed to be different. (Xavier Claessens).

Bugs fixed:
 - Fixed #465928, The status icon keep blinking when opening a chat with the contact list (Xavier Claessens)
 - Fixed #527970, don't permit to call several time the same personn (Xavier Claessens)
 - Fixed #531414, The "menu" key doesn't work in the contact list (Baptiste Mille-Mathias)
 - Fixed #533541, Schema short description improved (Claude Paroz)
 - Fixed #533732, Help button missing from the Accounts dialog (Milo Casagrande)
 - Fixed #533840, BaconMessageConnection and D-Bus interaction (Xavier Claessens)

Translations:
 - Updated es translation  (Jorge Gonzalez).
 - Updated ja translation  (Takeshi AIHANA).
 - Updated Norwegian bokmål translation. (kmaraas).
 - Updated Arabic Translation by Abou Manal. (djihed).
 - Updated French translation (claudep).

NEW in 0.23.2
==============
 - Keep a priv pointer in the object struct instead of using
   G_TYPE_INSTANCE_GET_PRIVATE all the time. (Xavier Claessens).
 - If self presence message is "" do like if it was NULL. (Xavier Claessens).
 - Do not request video stream until the user click on the 'send video' box. (Xavier Claessens).
 - Implement DTMF and add a keypad on call window. (Xavier Claessens).
 - Make use of tp-glib debug system. (Xavier Claessens).
 - Rework call window: Use GtkVolumeButton, only one button to hang up calls,
   let s-e add black borders to keep good video ration and add a confirmation
   dialog to accept/reject incoming calls. (Xavier Claessens).
 - Remove conditional build of VOIP. (Xavier Claessens).
 - Do not apply different theme to chat and chatrooms (Xavier Claessens).

Bugs fixed:
 - Fixed #460624, Use enchant instead of aspell (Frederic Peters)
 - Fixed #523918, Empathy sometimes loose messages (Xavier Claessens)
 - Fixed #526926, "This call will be ended. Continue?" dialog should be rephrased (Elliot Fairweather, Xavier Claessens)
 - Fixed #529049, Empathy should know when an apt:// link appears (Gaëtan Podevijn)
 - Fixed #529436, Lacking string hyphenation (Baptiste Mille-Mathias)
 - Fixed #529437, Incorrect spacing in some strings (Baptiste Mille-Mathias)
 - Fixed #529439, Incorrect capitalisation in some strings (Baptiste Mille-Mathias)
 - Fixed #529552, Please incorporate the man pages written for Debian (Simon McVittie)
 - Fixed #529651, 0.23.1: Compilation (Linking) Failure (Xavier Claessens)
 - Fixed #530090, Stock ids marked for translation (Gabor Kelemen)

Translations:
 - Updated Galician Translation and POTFILES.in (icq).
 - Updated cs translation  (Lucas Lommer).
 - Updated Norwegian bokmål translation. (kmaraas).
 - updated he translation (yairhr).
 - Updated Slovenian translation (mateju).
 - Updated es translation  (Jorge Gonzalez).
 - Updated Slovenian translation (mateju).
 - Updated hu translation (kelemeng).
 - Updated sv translation  (Daniel Nylander).
 - Updated en_GB translation  (Philip Withnall).

NEW in 0.23.1
==============
 - Show contact list when a chat becomes a chatroom. (Xavier Claessens).
 - Dispatch each Tube to the application handling its service. (Elliot Fairweather, Xavier Claessens).
 - Added introduction and started the Getting Started section of help manual (Milo Casagrande).
 - Add build system for help manual (Xavier Claessens).
 - Some code cleanup (Xavier Claessens).
 - Already open channels are considered OUTGOING. (Xavier Claessens).
 - Drop Chandler and Filter, do not use MC for dispatching channels, do it ourself. Everything is now in the same process. (Xavier Claessens).
 - Remove libtelepathy dep and use telepathy-glib instead. (Xavier Claessens).
 - Remove Room menu, chatrooms will be handled in a dedicated program. (Xavier Claessens).
 - Unify EmpathyPrivateChat and EmpathyGroupChat. (Xavier Claessens).
 - Unify EmpathyTpChatroom and EmpathyTpChat. (Xavier Claessens).
 - Do not autoconnect if networkmanager says we are not connected at startup. (Xavier Claessens).
 - Move modules that make no sense to be used in other applicaton from libempathy-gtk/ to src/ (Xavier Claessens).
 - Convert all files to glade3 (Laurent Bigonville).

Bugs fixed:
 - Fixed #526145, crash in Empathy Instant Messenger: Tryint to persuade Zdra,... (Xavier Claessens)
 - Fixed #475789, Compact mode + avatars = bad padding (Marco Barisione)
 - Fixed #479697, no sounds (Frederic Peters)
 - Fixed #489978, Removing NotHere applet from panel (Frederic Peters)
 - Fixed #496309, empathy translation issues (Andre Klapper)
 - Fixed #513676, Need a widget to configure AIM accounts (Andreas Henriksson)
 - Fixed #513679, Need a widget to configure SIP accounts (Baptiste Mille-Mathias)
 - Fixed #514380, Drop gnome-vfs dependency (Cosimo Cecchi)
 - Fixed #517776, Groupwise profile (Vincent Untz)
 - Fixed #519946, Confirmation dialog on remove contact/group (Bruno Dusausoy)
 - Fixed #521554, Diplay all the favourite rooms in the favourite room dialog (Marco Barisione)
 - Fixed #521570, Set to unsensitive the 'show avatars' option when using compact mode (Marco Barisione)
 - Fixed #522297, libempathy-gtk Python binding: cannot create a ContactListStore (Juan Pizarro)
 - Fixed #522528, Missing files in POTFILES.in (nshmyrev)
 - Fixed #522780, Couldn't build latest Empathy trunk (rev. 807) (Xavier Claessens)
 - Fixed #522862, Need a GUI to configure groupwise account (Vincent Untz)
 - Fixed #523703, Deprecated glib symbols used. (Frederic Peters)
 - Fixed #525039, Should not be started automatically via /etc/xdg/autostart (Frederic Peters)
 - Fixed #525084, Crash at GNOME startup (Xavier Claessens)
 - Fixed #525562, Empathy should not require python-config (Frederic Peters)
 - Fixed #526374, Crash in EmpathyContactListStore (Xavier Claessens)
 - Fixed #526927, "This call will be ended. Continue?" has no purpose when call status is disconnected (Frederic Peters)
 - Fixed #527452, Too difficult SIP configure UI (Frederic Peters)
 - Fixed #527454, Better call dialog (Naba Kumar)
 - Fixed #527713, crash when opening a chat with the keyboard (Frederic Peters)
 - Fixed #527876, "registrar" misspelled (Frederic Peters)
 - Fixed #527924, NotHere applet doesn't find icons (Frederic Peters)
 - Fixed #528229, chat dialogs way too large (Xavier Claessens)
 - Fixed #528287, Contact not shown in the contact list when he comes online (Xavier Claessens)
 - Fixed #528529, escaping text in strings using Pango markup (Frederic Peters)
 - Fixed #528542, Help is displayed on stderr, but stderr may go to log file (Frederic Peters)
 - Fixed #528596, Missing l10n for strings in call window (Frederic Peters)

Translations:
 - Updated es translation (Jorge Gonzalez).
 - Updated el translation (Giannis Katsampirhs).
 - Updated ca translation (Gil Forcada).
 - Updated Basque translation (Inaki Larranaga Murgoitio).

NEW in 0.22.0
==============
 - Queue received messages until the sender got his alias. (Xavier Claessens).

Bugs fixed:
 - Fixed #466521, Add an advanced expander in the generic setting widget (Marco Barisione)
 - Fixed #479534, remember conversation window sizes (Marco Barisione)
 - Fixed #501805, empathy should prevent to run multiple instances (Marco Barisione)
 - Fixed #505616, linkability of URL broken on _ (Marco Barisione)
 - Fixed #520788, Wrong button order in the favourite rooms dialog (Marco Barisione)
 - Fixed #521051, empathy_main_window_show() should use empathy_window_present() (Marco Barisione)

Translations:
 - Updated Finnish translation (ituohela).
 - Updated en_GB translation  (Philip Withnall).
 - Updated sv translation  (Daniel Nylander).
 - Updated it translation  (Milo Casagrande).
 - Updated Spanish translation  (Jorge Gonzalez).
 - Updated fr translation  (Robert-André Mauchin).

NEW in 0.21.91
==============
 - Blink the status icon for new incoming calls. (Xavier Claessens).
 - Close the media channel if stream engine crashes. (Xavier Claessens).
 - Change status to closed if stream engine dies or if a call fails. (Xavier Claessens).
 - Make use of generated code for using stream engine. (Xavier Claessens).
 - Add a GUI to configure IRC accounts (Guillaume Desmottes).
 - accounts-dialog: swap the create and previous button (Guillaume Desmottes).
 - save when adding/removing networks (Guillaume Desmottes).
 - check if network !=  NULL before trying to set its charset (Guillaume Desmottes).
 - New call code, should be more usable (Elliot Fairweather).
 - Try to create salut account if getting the gconf key fails. (Xavier Claessens).
 - Add a generic UI to make easy building UI for protocol specific settings. (Xavier Claessens).
 - Fix setting avatar on salut.  (Sjoerd Simons).
 - Use EMPATHY_SRCDIR environment variable to load uninstalled glade/xml/dtd files (Xavier Claessens).

Bugs fixed:
 - Fixed #505585, Improve .gitignore (Guillaume Desmottes)
 - Fixed #505622, add "check" framework support (Guillaume Desmottes)
 - Fixed #507515, "has come online" is printed even if peer has been online the whole time (Xavier Claessens)
 - Fixed #507656, "make valgrind" broken (Guillaume Desmottes)
 - Fixed #513673, Need a GUI to configure ICQ accounts (Andreas Henriksson)
 - Fixed #513674, Need a GUI to configure Yahoo! accounts (Susana)
 - Fixed #516198, Thinks contacts come online each time a chat dialog is opened (Xavier Claessens)
 - Fixed #517098, Critical warnings viewing previous conversations (Xavier Claessens)

Translations:
 - Updated pt_BR translation  (Og Maciel).
 - Updated sv translation (Daniel Nylander).
 - Updated Spanish translation  (Jorge Gonzalez).
 - Updated Arabic Translation (Abou Manal).
 - Updated eu translation  (Inaki Larranaga Murgoitio).
 - Updated Occitan translation (ymarcheg).
 - Updated Basque translation. (dooteo).
 - Updated Finnish translation (ituohela).
 - Updated ja translation  (Takeshi AIHANA).
 - Updated Nepali Translation (pachimho).
 - Updated Finnish translation (ituohela).
 - Updated Galician Translation. (icq).
 - Added Hebrew translation (yairhr).

NEW in 0.21.90
==============
 - Change "new message" dialog to "new conversation" and make possible to do voip call. (Xavier Claessens).
 - Try to load dtd and glade files from the srcdir. (Xavier Claessens).
 - Add a property to have or not groups on EmpathyContactListStore (Xavier Claessens).
 - Add a features property on EmpathyContactListView to enable/disable each action. (Xavier Claessens).
 - Add a program to show chat logs (Xavier Claessens).
 - Add a cancel button on the custom message diaog (Xavier Claessens).
 - Unset account parameter if user gives an empthy value. (Xavier Claessens).
 - Show/Hide main window when changing corresponding gcong key. (Xavier Claessens).

Bugs fixed:
 - Fixed #501467, improve accounts dialog (Xavier Claessens)
 - Fixed #507840, New UI for Jabber accounts (Xavier Claessens)
 - Fixed #509906, empathy is showing off-line contacts before on-line ones (Xavier Claessens)
 - Fixed #511048, Ellipsize error button (Xavier Claessens)
 - Fixed #511841, account has to be selected to (un)check its checkbox (Carl-Anton Ingmarsson)
 - Fixed #515008, Nickname should be in the main section of the preferences for salut accounts (Marco Barisione)
 - Fixed #515010, Do not be automatically set published name for new salut accounts (Marco Barisione)
 - Fixed #511679, Empathy HEAD doesn't build (Guillaume Desmottes)

Translations:
 - Updated eu translation (Inaki Larranaga Murgoitio).
 - Updated Arabic Translation (Djihed Afifi).
 - Updated Galician Translation. (icq).
 - Updated Spanish translation (Jorge Gonzalez).

NEW in 0.21.5.2
==============
 - Update API documentation generator. (Xavier Claessens).
 - Update python binding for new API. (Xavier Claessens).
 - Rename BlockType to EMPATHY_CHAT_VIEW_BLOCK to respect namespace (Xavier Claessens).
 - Change EMPATHY_AVATAR_CHOOSER_TYPE to EMPATHY_TYPE_AVATAR_CHOOSER (Xavier Claessens).
 - Ignore ssl errors for gtalk profile by default otherwise it won't connect. (Xavier Claessens).

Bugs fixed:
 - Fixed #509656, crash in Empathy Instant Messenger: Nothing. I was viewing s... (Xavier Claessens)

Translations:
 - Updated ja Translation (Takeshi AIHANA).
 - Updated sv Translation (Daniel Nylander).

NEW in 0.21.5.1
==============
 - Fix release.py script to give correct author of fixed bug.
 - Fix NEWS file with correct authors
 - BUMP ABI version, forgot that for release 0.21.5

NEW in 0.21.5
==============
 - Adding a release.py script that uses git.
 - Add SIP icon picked from pidgin.
 - Cleanup icons: Regenerate icons from SVG at 16, 22, 24, 32 and 48 size.
   Change xmpp-link-local icon from apple's to the avahi icon. Still missing SVG
   for im-message, im-message-new and user-typing.
 - Add avatar token in logs and load avatar from cache when getting logs messages.
 - Reset status message when coming back from away and the status was manually
   set to away.
 - Update profiles based on N810's.
 - Remove ChangeLog and po/ChangeLog, new release script uses git logs and
   generates ChangeLog file from git.
 - Add .gitignore files.
 - Chandlers leaves when there is no more channels to handle.
 - Set call window title to contact name
 - Import Gossip's chat theme system and simplify it a bit.

Bugs fixed:
 - Fixed #466960, status icon tooltip doesn't change when status changes (Xavier Claessens)
 - Fixed #508520, :0 smiley conversion shouldn't happen for times (Xavier Claessens)
 - Fixed #499885, Automatically connect at session start (Carl-Anton Ingmarsson)
 - Fixed #507656, "make valgrind" broken (Guillaume Desmottes)
 - Fixed #459520, Can't remove a group (David Turner)
 - Fixed #447851, Wider list of participants in group chat/IRC channel (Rohit Agrawal)
 - Fixed #505622, add "check" framework support (Guillaume Desmottes)
 - Fixed #490153, Join _New... icon (Michael Monreal)
 - Fixed #502932, Text selection in Accounts window (Xavier Claessens)

Translations:
 - Updated Spanish Translation (jorgegonz).
 - Updated Norwegian bokmål Translation (kmaraas).
 - Updated Occitan Translation (ymarcheg).
 - Updated French Translation (claudep).
 - Updated Swedish Translation (dnylande).
 - Updated Brazilian Portuguese Translation (leonardof).
 - Updated Basque Translation (dooteo).
 - Updated Arabic Translation (djihed).

NEW in 0.21.4:
=============
 - Cache avatar pixbuf in EmpathyChatView to avoid having a new pixbuf in memory
   for each message a contact sends
 - Generate ChangeLog from svn commits. Copy generator from epiphany.
 - Correctly store/restore presence when NM state changes.
 - Split EmpathyContactFactory to have one EmpathyTpContactFactory per account.
 - When NM is in sleeping (=disabled) state, do just like if it was connected.
   Add a gconf key to disable NM support completely.

NEW in 0.21.3:
=============
 - Request new Text Channel if the contact is online again and CM don't support
   offline message or if account gets reconnected.
 - Depend on telepathy-glib and make use of his new API. Don't use deprecated
   functions of libtelepathy.
 - Better gtkdoc generator.

NEW in 0.21.2:
=============
 - Display error message when an account failed to connect.
 - Move chats to its own process.
 - Move chandlers in $libexecdir
 - Don't use the same bus name for filter and chandler programs. 

NEW in 0.21.1:
=============
 - Cleanup licences and copyrights, Modules with 100% collabora code are now
   relicenced to LGPL.
 - Hide main window with ALT-F4.
 - Set chat state to ACTIVE when receiving a message from a contact, avoid
   staying in COMPOSING state forever for protocols like MSN that do not notify
   when contact stoped writing.
 - Don't use deprecated Gtk/GLib API. Mainly replace GtkTooltips by new
   tooltip API from GTK 2.12.
 - Use g_timeout_add_seconds when appropriated to avoid weaking the process too
   much.
 - Implement EmpathyAvatarChooser and EmpathyAvatarImage and make use of them in
   contact information windows. That means we can now enlarge avatars when
   clicking on it and we can set our own avatar if we edit our own contact.
 - Implement edit personal information window, no vcard supported yet, but it's
   not possible to set our own alias/avatar.
 - Bump version to 0.21.1 for GNOME 2.21.1 release.

NEW in 0.14:
===========
 - Megaphone applet now uses avatar cache.

NEW in 0.13:
===========
 - Completely reworked ContactList API, new EmpathyContactFactory class.
 - Update to new Telepathy avatar spec.
 - Dynamic smiley managment and more efficient algorithm to detect smileys in
   messages. New EmpathySmileyManager class.
 - Adding capabilities contact property for Audio/Video.
 - Adding UI to start a VoIP call. Atm it only shows a microphone icon for
   contacts supporting voice or video but does not make the call. See
   EMPATHY_VOIP branch for more complete support.
 - "interactive" property on EmpathyContactListView to enable/disable context
   menu and action when double-click on a contact.
 - Add 2 properties to EmpathyIdle to activate auto-away and auto-disconnect,
   default to off. Only empathy main client will turn them on, like that if
   other processes are running with an EmpathyIdle instance they won't change
   presence in the same time than Empathy client.
 - Cache avatars in ~/.gnome2/Empathy/avatars.
 - Adding a test program, useful to use with valgrind.
 - Free return value for async DBus calls, they are not owned by dbus-glib.
   This fix big leaks.

NEW in 0.12:
===========
 - Only update the topic of it has really be changed, avoid diplaying many
   times "Topic set to:" message.
 - Some Jabber chatroom sends messages received before we joined the room, avoid
   displaying those messages if we already logged them last time we joined that
   room. Previous workaround prevented Empathy to log offline messages.

NEW in 0.11:
===========
 - Change main window's title to "Contact list".
 - Do not list profiles that don't have the corresponding CM installed when
   creating a new account.

NEW in 0.10:
===========
 - Align param names on the left in the generic account settings widget.
 - Try to guess the server from the jid if we are using the jabber profile.

NEW in 0.9:
===========
 - Initial room list support. It doesn't work yet but most of the code is ready.
 - Tell the user when a message can't be sent.
 - Set all contacts from salut protocol to the "Local Network" group.
 - Fix NetworkManager support.
 - Iconify main window to the status icon like in rhythmbox.
 - Show avatars in chatrooms.
 - Fix avatar not being requested when empathy starts.
 - Remove unused nickname entry and use a GtkTable for room information.
 - Set a window title and fix alignment of widgets for contact related dialogs
   (add, edit/view info).
 - Adding initial API documentation using gtk-doc.
 - Auto-accept to publish presence to contacts that are in our subscribe list.
   When accepting a pending contact add it to publish and subscribe list.
 - Filter incoming text channels and make status icon flash when there we
   receive a new message. Dispatch the channel only when we get a message and
   the user click on the icon.
 - Install libempathy and libempathy-gtk and make their API public. The API is
   NOT STABLE AT ALL !!!

NEW in 0.8:
===========
 - Fixed contact list handling.
 - Make use of NetworkManager to set presence to OFFILE when we are disconnected
   and restore presence once we are reconnected.
 - UI for searching in conversation history and to view all conversations with
   a given contact.
 - Do not use 2 different processes (empathy and empathy-chat), merge them
   into one client. This is easier for debugging and share data.
 - Do not create log directory for a chat if there is no messages to put in.
 - Do not set active contacts when creating the store, and when contact groups
   changed.
 - Fix warning when using command-line options.
 - Ignore ssl errors by default. This is needed to connect jabber accounts
   using ssl.
 - Adding spellcheck support using aspell.
 - Lots of bugs fixed.

NEW in 0.7:
===========
 - Adding new contacts.
 - Accept/Reject contacts who wants to get our presence.
 - Edit/View contacts information.
 - Get name and topic properties for chatrooms.
 - Log chats and display 10 last messages when opening a new chat.
 - Set presence to available for protocols that do not supports presence
   (SIP, IRC).
 - Lots of bugs fixed.

NEW in 0.6:
===========
 - Join room when clicking on favorite rooms.
 - Do not restore away presence message when coming back after the user set
   manually to away.
 - Set parent window when poping a new window/dialog.
 - Implement favorite chatroom menu.
 - Do not highlight contacts already known when creating the contact list.
 - Do not set status message to "Extended autoaway", let user's message
   unchanged.
 - Many bugs and leaks fixed.

NEW in 0.5:
===========
 - Do not highlight groups when adding them in the roster.
 - Do not create new GossipContact object in presence/avatar/alias changed
   signal if we don't already know that contact from a contact list channel.
   This should fix DBus max pending calls limit reached in some cases.
 - New icon for empathy-new-message, empathy-group-message and
   empathy-proto-irc.
 - Chatroom support. New objects: GossipNewChatroomDialog, GossipAccountChooser,
   GossipGroupChat
 - If we are offline do not set away on idle. If we are already away restore to
   available when we are no mode idle. Do no modify status message.
 - Fixed message displaying with fancy themes.
 - Many bugs fixed.

NEW in 0.4:
===========
 - contact list refactoring: EmpathyContactList is an iface implemented by
   EmpathyTpContactList, EmpathyContactManager and EmpathyTpChatroom.
   GossipContactList splitted into GossipContactListStore and
   GossipContactListView, it can display any object implementing the
   EmpathyContactList iface. Make possible to set custom functions to define
   the groups of a contact, by default it gets the "group" property of the
   GossipContact object. This make possible to reuse the contact list UI from
   the main window for chatrooms where groups are the role/affiliation of the
   contact on that room.
 - Auto away when gnome-screensaver says the session is idle and extended away
   30min after that.
 - Display ChatState when the contact is composing.
 - Bugbuddy now reports crashes to GNOME Bugzilla.
 - New program icon.
 - Setting i18n support and importing po files from gossip.
 - Add an example label for jid.
 - Do not open chat window twice for the same conversation.