aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
blob: 87f6a5d44060c1991ed2987a06025a83d40290ad (plain) (blame)
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
NEW in 2.24.1
==============

Bugs fixed:
 - 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)

Translations:
 - Updated Arabic Translation (Anas Afif Emad).
 - Updated th translation  (Theppitak Karoonboonyanan).
 - Updated de.po translation (aklapper).
 - Updated el translation (frolix68).
 - Updated Danish translation  (Kenneth Nielsen).
 - Updated es translation  (Jorge Gonzalez).
 - Updated ca translation  (Gil Forcada).
 - Updated Norwegian bokmål translation (kmaraas).
 - Updated it translation  (Milo Casagrande).
 - Updated cs translation (Martin Picek and Lucas Lommer).
 - Updated Hungarian translation (kelemeng).
 - Updated Portuguese translation. (Duarte Loreto).
 - Updated Finnish translation (ituohela).
 - Updated French translation. (Claude Paroz).
 - Updated Swedish translation (dnylande).
 - Updated Slovenian translation (mateju).
 - Updated Brazilian Portuguese translation. (ogmaciel).
 - Updated Galician Translation. (icq).
 - Updated Bulgarian translation (Alexander Shopov)
 - Updated Macedonian translation. (Jovan Naumovski).
 - Updated Turkish translation. (bcicek).

NEW in 2.24.0
==============
 - Fix for GTK+ adjustment policy enforcement (vuntz).

Bugs fixed:
 - Fixed #548668, crash in Empathy Instant Messenger: talking to somebody whil... (Xavier Claessens)
 - Fixed #550652, crash in Empathy Instant Messenger: joining favourite rooms (Xavier Claessens)

Translations:
 - Updated hindi Translations. (Rajesh Ranjan).
 - Updated Gujarati Translations. (ankitp).
 - Updated zh_CN translation (zyang).
 - updated Russian translation (aprokoudine).
 - Updated Danish translation (kennethn).
 - Updated sr translation (grakic).
 - Updated Japanese translation. (Takeshi AIHANA).
 - Updated German translation (Mario Blättermann).
 - Updated Arabic Translation (Youssef Chahibi).
 - Updated Lithuanian translation. (Gintautas Miliauskas).
 - Updated Catalan translation (gforcada).
 - Updated Malayalam translation (Ashik Salhudeen, apravi).
 - Updated ko translation  (Changwoo Ryu).
 - Updated Finnish translation (ituohela).
 - Updated de translation  (Jochen Skulj).
 - Updated Hungarian translation  (Gabor Kelemen).
 - Updated Slovenian translation (mateju).
 - Updated it translation  (Milo Casagrande).

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.