-
Notifications
You must be signed in to change notification settings - Fork 22
/
NEWS
6117 lines (5394 loc) · 302 KB
/
NEWS
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
NEW in 3.10.0 (24/09/2013)
=============
Bugs fixed:
- Fixed #708403, empathy-debugger crashes on start (Igor Gnatenko)
- Fixed #707781, new messages don't cause scroll
- Fixed #708616, Theme previews are not displayed (Guillaume Desmottes)
Translations:
- Updated ar Translation (Khaled Hosny)
- Updated ca Translation (Josep Sànchez)
- Updated da Translation (Kenneth Nielsen)
- Updated et Translation (Mattias Põldaru)
- Updated eu Translation (Inaki Larranaga Murgoitio)
- Updated ja Translation (victory, Jiro Matsuzawa)
- Updated pa Translation (A S Alam)
- Updated sk Translation (Peter Mráz)
- Updated uk Translation (Daniel Korostil)
- Updated zh_HK Translation (Chao-Hsiung Liao)
- Updated zh_TW Translation (Chao-Hsiung Liao)
Documentation translations:
- Updated pt_BR Documentation translation (Enrico Nicoletto)
NEW in 3.9.92 (16/09/2013)
=============
Dependencies:
• Folks ≥ 0.9.5
• GTK+ ≥ 3.9.4
• Geoclue ≥ 1.99.3 (optional)
• libsignon-glib ≥ 1.8 (optional)
Bugs fixed:
- Fixed #696328, empathy-debugger crashed with SIGSEGV (Guillaume Desmottes)
- Fixed #706988, Port to GtkListBox (Guillaume Desmottes)
- Fixed #707781, new messages don't cause scroll (Guillaume Desmottes)
Translations:
- Updated as Translation (Nilamdyuti Goswami)
- Updated be Translation (Ihar Hrachyshka)
- Updated cs Translation (Marek Černocký)
- Updated de Translation (Benjamin Steinwender)
- Updated fi Translation (Ville-Pekka Vainio)
- Updated fr Translation (Alexandre Franke)
- Updated ga Translation (Seán de Búrca)
- Updated hu Translation (Gabor Kelemen)
- Updated id Translation (Andika Triwidada)
- Updated it Translation (Milo Casagrande)
- Updated ko Translation (Changwoo Ryu)
- Updated lt Translation (Aurimas Černius)
- Updated lv Translation (Rūdolfs Mazurs)
- Updated nb Translation (Kjartan Maraas)
- Updated pl Translation (Piotr Drąg)
- Updated ru Translation (Yuri Myasoedov)
- Updated sk Translation (Pavol Klačanský)
- Updated sr@latin Translation (Мирослав Николић)
- Updated sr Translation (Мирослав Николић)
- Updated zh_HK Translation (Chao-Hsiung Liao)
- Updated zh_TW Translation (Chao-Hsiung Liao)
Documentation translations:
- Updated hu Documentation translation (Gabor Kelemen)
NEW in 3.9.91 (03/09/2013)
=============
Dependencies:
• GLib ≥ 2.37.6
• Geoclue-2.0 (optional)
Bugs fixed:
- Fixed #643183, Stop live search when an action is started (Chandni Verma)
- Fixed #701392, Empathy does not honor disabled "Automatically connect on startup"
- Fixed #706627, Port to Geoclue2 (Guillaume Desmottes)
- Fixed #706829, build fails due to outdated egg-list-box submodule (Guillaume Desmottes)
- Fixed #706830, build fails due to misnamed macro (Seán de Búrca)
- Fixed #707104, Interface should consistently use typographical ellipsis (Seán de Búrca)
- Fixed #707208, menu does not appear translated (Marco Barisione)
- Fixed #707265, Stop using GtkHBox (Guillaume Desmottes)
- Fixed #707291, Warning when opening preferences dialog (Guillaume Desmottes)
- Fixed #707338, UOA: Fix build failure (Tim Lunn)
- Fixed #706801, tp-aw ships files in a path that cannot be configured (Marco Barisione)
- Fixed #706881, Avatar file chooser unusable if avatar chooser button is in a modal dialog
Translations:
- Updated es Translation (Daniel Mustieles)
- Updated ga Translation (Seán de Búrca)
- Updated gl Translation (Fran Diéguez)
- Updated he Translation (Yaron Shahrabani)
- Updated it Translation (Milo Casagrande)
- Updated lt Translation (Aurimas Černius)
- Updated nb Translation (Kjartan Maraas)
- Updated pl Translation (Piotr Drąg)
- Updated pt_BR Translation (Rafael Ferreira, Enrico Nicoletto)
- Updated sk Translation (Pavol Klačanský)
- Updated sl Translation (Matej Urbančič)
Documentation translations:
- Updated fr Documentation translation (Alexandre Franke)
NEW in 3.9.90 (20/08/2013)
=============
Bugs fixed:
- Fixed #585440, deleting a contact in multiple groups (Chandni Verma)
- Fixed #643755, Create Join Chat and Leave chat menu items for the conversation menu in MUCs (Chandni Verma)
- Fixed #698530, adding contact to group does not cause them to leave Ungrouped until Empathy restart (Chandni Verma)
- Fixed #701649, empathy will give user information after the account was deleted (Travis Reitter)
- Fixed #703487, Show typing icon against composing members of a MUC (Chandni Verma)
- Fixed #704452, No sound played when salut contact gets online (Xavier Claessens)
- Fixed #704454, No sound played when account goes online (Xavier Claessens)
- Fixed #704469, Crash when deleting a non-chat GOA account (Marco Barisione)
- Fixed #705618, Outgoing VoIP windows aren't always front end (Guillaume Desmottes)
- Fixed #705668, Some labels does not update correctly when changing account's identifier (Xavier Claessens)
- Fixed #706020, Finish geocode-glib 0.99.1 porting (Andreas Henriksson)
- Fixed #706125, password prompt dialog has no title (Emilio Pozuelo Monfort)
- Fixed #699492, Move the account widget code to a git submodule (Emanuele Aina)
Translations:
- Updated cs Translation (Marek Černocký)
- Updated de Translation (Christian Kirbach)
- Updated es Translation (Daniel Mustieles)
- Updated gl Translation (Fran Diéguez)
- Updated he Translation (Yaron Shahrabani)
- Updated hu Translation (Gabor Kelemen)
- Updated it Translation (Milo Casagrande)
- Updated lt Translation (Aurimas Černius)
- Updated nb Translation (Kjartan Maraas)
- Updated pt_BR Translation (Rafael Ferreira)
- Updated sk Translation (Pavol Klačanský)
- Updated sl Translation (Matej Urbančič)
- Updated zh_CN Translation (Wylmer Wang)
Documentation translations:
- Updated de Documentation translation (Christian Kirbach)
NEW in 3.9.4 (09/07/2013)
============
Bugs fixed:
- Fixed #702095, System crash when typing a long string in empathy (Xavier Claessens)
- Fixed #703453, correctly sort contacts and groups (Frédéric Péters)
- Fixed #703775, ContactSearch is not clear when it is no supported (Xavier Claessens)
Translations:
- Updated cs Translation (Marek Černocký)
- Updated es Translation (Daniel Mustieles)
- Updated gl Translation (Fran Diéguez)
- Updated it Translation (Milo Casagrande)
- Updated nb Translation (Kjartan Maraas)
- Updated sk Translation (Pavol Klačanský)
Documentation translations:
- Updated es Documentation translation (Daniel Mustieles)
NEW in 3.9.3 (17/06/2013)
============
Bugs fixed:
- Fixed #680778, Stop using empathy-accounts
- Fixed #698742, Crash when joining an IRC channel (Xavier Claessens)
- Fixed #701281, empathy-sanity-checker: Include empathy-keyring.h when HAVE_UOA is defined. (Iain Lane)
- Fixed #701891, New account dialog title is incorrect (Sindhu S)
- Fixed #701914, Return value of tp_debug_client_get_messages_finish() is leaked (Guillaume Desmottes)
Translations:
- Updated gl Translation (Fran Diéguez)
NEW in 3.9.2 (29/05/2013)
============
Bugs fixed:
- Fixed #692746, history uses wrong encoding to show utf8 logs (Guillaume Desmottes)
- Fixed #696151, empathy crashed with SIGSEGV in listing_failed_cb() (Guillaume Desmottes)
- Fixed #699333, online-accounts-preferences crashes when accounts need access granted (Xavier Claessens)
- Fixed #700084, new *.page added not recognized by git due to commit eb8eb761 (Sindhu S)
Translations:
- Updated cs Translation (Marek Černocký)
- Updated es Translation (Daniel Mustieles)
- Updated he Translation (Yaron Shahrabani)
- Updated nb Translation (Kjartan Maraas)
- Updated sk Translation (Pavol Klačanský)
- Updated sl Translation (Matej Urbančič)
Documentation translations:
- Updated ca Documentation translation (Gil Forcada, Manel Vidal)
- Updated es Documentation translation (Daniel Mustieles)
NEW in 3.9.1 (03/05/2013)
============
Bugs fixed:
- Fixed #692160, Updated Icon Names (B.Prathibha)
- Fixed #697214, call-window: Remember that the audio output has been added (Olivier Crête)
- Fixed #697302, Spelling mistake: "You need to setup an account..." (SandipTiwari)
- Fixed #699017, libempathy: Fix build by adding missing math.h header (Stef Walter)
- Fixed #673775, The icon for audio call in the help is wrong. (Ekaterina Gerasimova)
- Fixed #677549, "Link Contacts" user documentation is wrong (Shobha Tyagi)
Translations:
- Updated crh Translation (Reşat SABIQ)
- Updated it Translation (Milo Casagrande)
Documentation translations:
- Updated de Documentation translation (Christian Kirbach)
- Updated el Documentation translation (Dimitris Spingos)
- Updated es Documentation translation (Daniel Mustieles)
- Updated zh_CN Documentation translation (Wylmer Wang)
NEW in 3.8.1 (15/04/2013)
============
Bugs fixed:
- Fixed #696544, goa-mc-plugin: Fix deprecation warnings (Emanuele Aina)
- Fixed #696718, Cleanup unused and redundant #include directives (Emanuele Aina)
- Fixed #697076, Cleanup #includes, second round (Emanuele Aina)
- Fixed #697254, Launching Empathy -p opens both the preferences and the main window (Marco Trevisan (Treviño))
Translations:
- Updated crh Translation (Reşat SABIQ)
- Updated en_GB Translation (Bruce Cowan)
- Updated fi Translation (Ville-Pekka Vainio)
- Updated kn Translation (Shankar Prasad)
- Updated uk Translation (Daniel Korostil)
Documentation translations:
- Updated de Documentation translation (Christian Kirbach)
NEW in 3.8.0 (25/03/2013)
============
Bugs fixed:
- Fixed #604975, Lack of overview for those new to IM (Aruna)
Translations:
- Updated el Translation (Piotr Drąg)
- Updated fa Translation (Arash Mousavi)
- Updated fi Translation (Ville-Pekka Vainio)
- Updated gu Translation (Sweta Kothari)
- Updated hi Translation (Rajesh Ranjan)
- Updated mr Translation (Sandeep Sheshrao Shedmake)
- Updated or Translation (ManojKumar Giri)
- Updated ru Translation (Yuri Myasoedov)
- Updated sk Translation (Pavol Klačanský)
- Updated sl Translation (Andrej Žnidaršič)
- Updated ta Translation (Dr.T.Vasudevan)
- Updated te Translation (Krishnababu Krothapalli)
Documentation translations:
- Updated fr Documentation translation (Alexandre Franke)
- Updated hu Documentation translation (Gabor Kelemen)
NEW in 3.7.92 (20/03/2013)
=============
Dependencies:
• cogl-1.0 (used to be an implicit dependency)
• folks ≥ 0.9.0
Bugs fixed:
- Fixed #692105, empathy-3.6.2-1.fc18: items_delete_cb: Process /usr/bin/empathy-accounts was killed by signal 11 (Guillaume Desmottes)
- Fixed #695556, empathy-3.7.91 missing include and dependency for cogl (Guillaume Desmottes)
Translations:
- Updated be Translation (Ihar Hrachyshka)
- Updated ca Translation (Gil Forcada)
- Updated ca@valencia Translation (Carles Ferrando)
- Updated da Translation (KennethNielsen)
- Updated et Translation (Mattias Põldaru)
- Updated fr Translation (Alexandre Franke)
- Updated hu Translation (Gabor Kelemen)
- Updated id Translation (Andika Triwidada)
- Updated it Translation (Milo Casagrande)
- Updated kn Translation (Shankar Prasad)
- Updated ko Translation (Changwoo Ryu)
- Updated pt_BR Translation (Rafael Ferreira)
- Updated pt Translation (Duarte Loreto)
- Updated sk Translation (Pavol Klačanský)
- Updated tg Translation (Victor Ibragimov)
Documentation translations:
- Updated el Documentation translation (Dimitris Spingos)
NEW in 3.7.91 (04/03/2013)
=============
Translations:
- Updated cs Translation (Adam Matoušek)
- Updated el Translation (Dimitris Spingos)
- Updated lv Translation (Rūdolfs Mazurs)
- Updated pa Translation (A S Alam)
- Updated ug Translation (Gheyret Kenji)
Documentation translations:
- Updated de Documentation translation (Tobias Endrigkeit)
NEW in 3.7.90 (19/02/2013)
=============
Dependencies:
• gee-0.8
Bugs fixed:
- Fixed #680152, build with libgee 0.8 (Guillaume Desmottes)
- Fixed #693190, re-enable empathy-tls-test (Stef Walter)
Translations:
- Updated an Translation (Daniel Martinez)
- Updated de Translation (Tobias Endrigkeit)
- Updated pl Translation (Piotr Drąg)
- Updated sk Translation (Pavol Klačanský)
- Updated ug Translation (Gheyret Kenji)
NEW in 3.7.5 (04/02/2013)
============
Thanks to Debarshi Ray, Empathy's chat window will now automatically display
more logs when scrolling up.
Dependencies:
• telepathy-logger ≥ 0.8.0
Bugs fixed:
- Fixed #639877, Retrieve all the past history when scrolling back on a chat window (Debarshi Ray)
- Fixed #678983, Favorite rooms are not saved (Guillaume Desmottes)
- Fixed #691085, Backslash escapes applied in the chat log (Guillaume Desmottes)
- Fixed #691457, Warning when building HTML using yelp-build (Sindhu S)
Translations:
- Updated eu Translation (Inaki Larranaga Murgoitio)
- Updated ml Translation (Anish A)
- Updated sr@latin Translation (Мирослав Николић)
- Updated sr Translation (Мирослав Николић)
- Updated zh_HK Translation (Cheng-Chia Tseng)
- Updated zh_TW Translation (Cheng-Chia Tseng)
NEW in 3.7.4 (16/01/2013)
============
Dependencies:
• telepathy-farstream ≥ 0.6.0
• WebKitGTK+ ≥ 1.9.1
• libaccounts-glib ≥ 1.4 (optional)
Bugs fixed:
- Fixed #657634, 'i' button on video preview looks weird (Guillaume Desmottes)
- Fixed #670048, Display a message if no contact is displayed because they are offline (Guillaume Desmottes)
- Fixed #684357, Improve context menu in chat window (Guillaume Desmottes)
- Fixed #687450, Initial window is very small (Guillaume Desmottes)
- Fixed #687616, [GNOME goal] Port to Python 3 (Guillaume Desmottes)
- Fixed #687629, Empathy shortcut bug Shift + F (Guillaume Desmottes)
- Fixed #688132, code generation during build has a race due to unintended concurrency (Guillaume Desmottes)
- Fixed #688174, RTL languages (e.g. Hebrew) are no longer aligned to right (Guillaume Desmottes)
- Fixed #688860, Clearly label the message in Error presences as from the server (Guillaume Desmottes)
- Fixed #690733, Assertion when trying to add contacts with only a SIP account connnected (Guillaume Desmottes)
- Fixed #691006, empathy-CRITICAL **: empathy_contact_dup_from_tp_contact: assertion `TP_IS_CONTACT (tp_contact)' failed (Guillaume Desmottes)
- Fixed #691043, support notification filtering (Guillaume Desmottes)
- Fixed #691085, Backslash escapes applied in the chat log (Guillaume Desmottes)
- Fixed #691137, Empathy contact list window resizes automatically when connections are lost (Guillaume Desmottes)
- Fixed #691195, Rakia / SIP "Use this account to call landlines and mobile phones" checkbox does nothing (Guillaume Desmottes)
- Fixed #691418, Use a shared plugin for all empathy providers (Alberto Mardegan)
- Fixed #691469, UOA: use the new libaccounts-glib APIs (Alberto Mardegan)
- Fixed #668464, Use correct +/- buttons (Guillaume Desmottes)
Translations:
- Updated as Translation (Nilamdyuti Goswami)
- Updated de Translation (Hendrik Knackstedt)
- Updated el Translation (Dimitris Spingos)
- Updated es Translation (Daniel Mustieles)
- Updated et Translation (Mattias Põldaru)
- Updated gl Translation (Fran Diéguez)
- Updated he Translation (Yaron Shahrabani)
- Updated hi Translation (Rajesh Ranjan)
- Updated it Translation (Milo Casagrande)
- Updated lt Translation (Aurimas Černius)
- Updated nb Translation (Kjartan Maraas)
- Updated pl Translation (Piotr Drąg)
- Updated sl Translation (Matej Urbančič)
- Updated te Translation (Krishnababu Krothapalli)
- Updated ug Translation (Gheyret Kenji)
Documentation translations:
- Updated ca Documentation translation (Gil Forcada)
NEW in 3.7.3 (18/12/2012)
============
Dependencies:
• geocode-glib ≥ 0.99.1 (optional)
Bugs fixed:
- Fixed #688988, [PATCH] add more protocolname<->displayname (Gabriele Giacone)
- Fixed #689056, Port EmpathyContact to geocode-glib >= 0.99.1 (Bastien Nocera)
- Fixed #689122, org.gnome.empathy.notifications.notification-focus should default to true (Guillaume Desmottes)
Translations:
- Updated as Translation (Nilamdyuti Goswami)
- Updated gl Translation (Fran Diéguez)
- Updated ml Translation (Ani Peter)
- Updated or Translation (ManojKumar Giri)
- Updated pl Translation (Piotr Drąg)
- Updated ru Translation (Yuri Myasoedov)
Documentation translations:
- Updated es Documentation translation (Daniel Mustieles)
NEW in 3.7.2 (22/11/2012)
============
Bugs fixed:
- Fixed #592995, Debug: tell user about bug report and potential privacy violation (Guillaume Desmottes)
- Fixed #681445, Display UOA specific auth error (Xavier Claessens)
- Fixed #685793, EmpathyChatWindow should be a GtkWindow (Guillaume Desmottes)
- Fixed #685888, Add a debug option to show the GStreamer pipeline (Debarshi Ray)
- Fixed #686067, typo in string "developpers" (Guillaume Desmottes)
- Fixed #687361, Irc account edit dialog improvements (Michael Wood)
- Fixed #687338, Resizeable "edit connection parameters" (Michael Wood)
- Fixed #684979, inhibit going idle when doing a call (Guillaume Desmottes)
- Fixed #686969, add keywords to the desktop file (Matthias Clasen)
Translations:
- Updated da Translation (Ask H. Larsen)
- Updated de Translation (Tobias Endrigkeit)
- Updated en_GB Translation (Bruce Cowan)
- Updated es Translation (Daniel Mustieles)
- Updated et Translation (Mattias Põldaru)
- Updated fa Translation (Arash Mousavi)
- Updated ga Translation (Seán de Búrca)
- Updated he Translation (Yaron Shahrabani)
- Updated id Translation (Andika Triwidada)
- Updated kn Translation (Shankar Prasad)
- Updated ko Translation (Changwoo Ryu)
- Updated mr Translation (Sandeep Sheshrao Shedmake)
- Updated nb Translation (Kjartan Maraas)
- Updated nn Translation (Andreas N)
- Updated ru Translation (Yuri Myasoedov)
- Updated sk Translation (Pavol Klačanský)
- Updated sl Translation (Matej Urbančič)
- Updated ta Translation (Dr.T.Vasudevan)
NEW in 3.6.2 (13/11/2012)
============
This stable release improves GNOME Online Account integration and fixes a
bunch of call related bugs thanks to Debarshi Ray's awesome work.
Bugs fixed:
- Fixed #687690, Support X-TELEPATHY-PASSWORD for GOA accounts (Debarshi Ray)
- Fixed #652546, Add X-GOOGLE-PLATFORM support (Giovanni Campagna)
- Fixed #687449, switch video input is sensitive even though I only have one camera (Debarshi Ray)
- Fixed #687762, Don't unref properties before creating the certificate (Debarshi Ray)
- Fixed #686314, Unref the list of FsElementAddedNotifiers on fs-conference-removed (Debarshi Ray)
- Fixed #686311, Tries to remove fsrtpconference element from wrong pipeline (Debarshi Ray)
Translations:
- Updated de Translation (Tobias Endrigkeit)
- Updated et Translation (Mattias Põldaru)
- Updated fa Translation (Arash Mousavi)
- Updated ga Translation (Seán de Búrca)
- Updated gu Translation (Sweta Kothari)
- Updated kn Translation (Shankar Prasad)
- Updated nn Translation (Andreas N)
- Updated or Translation (ManojKumar Giri)
- Updated pa Translation (A S Alam)
- Updated pt_BR Translation (Rafael Ferreira)
NEW in 3.6.1 (15/10/2012)
============
Translations:
- Updated da Translation (Ask H. Larsen)
- Updated en_GB Translation (Bruce Cowan)
- Updated hu Translation (Gabor Kelemen)
- Updated ko Translation (Changwoo Ryu)
- Updated mr Translation (Sandeep Sheshrao Shedmake)
- Updated nb Translation (Kjartan Maraas)
- Updated sk Translation (Pavol Klačanský)
- Updated th Translation (Theppitak Karoonboonyanan)
NEW in 3.6.0.3 (08/10/2012)
==============
Brown paper bag release fixing build errors in the Ubuntu Online Accounts
plugin.
Translations:
- Updated gu Translation (Sweta Kothari)
NEW in 3.6.0.2 (08/10/2012)
==============
This new stable release fixes a crash when approving a chat from the contact
list.
Bugs fixed:
- Fixed #681725, empathy crashed with SIGSEGV in g_slist_remove() (Guillaume Desmottes)
- Fixed #684898, empathy-chat is very slow to start (Guillaume Desmottes)
- Fixed #685498, Aborts if accounts database can't be read (Guillaume Desmottes)
- Fixed #685652, memory leak fixes (Pavel Vasin)
- Fixed #685663, Chat themes don't follow system font configuration (Sjoerd Simons)
Translations:
- Updated ar Translation (Khaled Hosny)
- Updated fr Translation (Alexandre Franke)
- Updated he Translation (Yaron Shahrabani)
- Updated km Translation (Khoem Sokhem)
- Updated lv Translation (Rūdolfs Mazurs)
- Updated zh_HK Translation (Chao-Hsiung Liao)
- Updated zh_TW Translation (Chao-Hsiung Liao)
NEW in 3.6.0.1 (03/10/2012)
==============
This new stable release fixes a bug preventing Empathy to connect an IM
account having an invalid certificate.
It also improves the performance of roster live search and should reduce the
startup time of the chat window as well.
Bugs fixed:
- Fixed #684528, Wrong status message when call is disconnected (Guillaume Desmottes)
- Fixed #684675, private-chat-$UUID rooms are created with default (i.e. public) settings (Guillaume Desmottes)
- Fixed #684783, Fail to popup wrong certificate dialog (Guillaume Desmottes)
- Fixed #684971, empathy-chat: loses multi personas in the the contact menu (Guillaume Desmottes)
- Fixed #685203, Crash when resuming from sleep (Guillaume Desmottes)
- Fixed #685278, Live search is pretty slow when groups are enabled (Guillaume Desmottes)
Translations:
- Updated an Translation (Daniel Martinez Cucalon)
- Updated as Translation (Nilamdyuti Goswami)
- Updated be Translation (Ihar Hrachyshka)
- Updated bg Translation (Alexander Shopov)
- Updated ca Translation (Gil Forcada)
- Updated ca@valencia Translation (Carles Ferrando)
- Updated cs Translation (Marek Černocký)
- Updated el Translation (Tom Tryfonidis)
- Updated es Translation (Daniel Mustieles)
- Updated gl Translation (Fran Diéguez)
- Updated he Translation (Yaron Shahrabani)
- Updated hu Translation (Gabor Kelemen)
- Updated id Translation (Andika Triwidada)
- Updated it Translation (Milo Casagrande)
- Updated lt Translation (Žygimantas Beručka, Aurimas Černius)
- Updated pl Translation (Piotr Drąg)
- Updated pt Translation (Duarte Loreto)
- Updated ru Translation (Yuri Myasoedov)
- Updated sl Translation (Matej Urbančič)
- Updated sr@latin Translation (Мирослав Николић)
- Updated sr Translation (Мирослав Николић)
NEW in 3.6.0 (25/09/2012)
============
Here is the first release of the new stable 3.6 series. Not many code change
since 3.5.92, most of of the credits goes to translators who did an amazing
job localizing this new release.
Bugs fixed:
- Fixed #674179, Port to GStreamer 0.11/1.0 (Sjoerd Simons)
- Fixed #684281, description in empathy.application should be translatable (Guillaume Desmottes)
- Fixed #684475, Potential infinite loop in migrate_account_to_uoa (Guillaume Desmottes)
- Fixed #684531, Mic is muted when recalling (Guillaume Desmottes)
Translations:
- Updated ar Translation (Ibrahim Saed)
- Updated as Translation (Nilamdyuti Goswami)
- Updated be Translation (Ihar Hrachyshka)
- Updated bg Translation (Alexander Shopov)
- Updated ca Translation (Gil Forcada)
- Updated ca@valencia Translation (Carles Ferrando)
- Updated cs Translation (Marek Černocký)
- Updated de Translation (Mario Blättermann)
- Updated el Translation (Tom Tryfonidis)
- Updated en_GB Translation (Chris Leonard)
- Updated es Translation (Daniel Mustieles)
- Updated et Translation (Mattias Põldaru)
- Updated fr Translation (Alexandre Franke)
- Updated gl Translation (Fran Diéguez)
- Updated gu Translation (Sweta Kothari)
- Updated he Translation (Yaron Shahrabani)
- Updated hi Translation (Rajesh Ranjan)
- Updated hu Translation (Gabor Kelemen)
- Updated id Translation (Andika Triwidada)
- Updated it Translation (Milo Casagrande)
- Updated ja Translation (Jiro Matsuzawa, Noriko Mizumoto)
- Updated kn Translation (Shankar Prasad)
- Updated ko Translation (Changwoo Ryu)
- Updated lt Translation (Aurimas Černius)
- Updated lv Translation (Rūdolfs Mazurs)
- Updated ml Translation (Ani Peter)
- Updated mr Translation (Sandeep Sheshrao Shedmake)
- Updated or Translation (ManojKumar Giri)
- Updated pa Translation (A S Alam)
- Updated pl Translation (Piotr Drąg)
- Updated pt_BR Translation (Antonio Fernandes C. Neto, Rafael Ferreira)
- Updated pt Translation (Duarte Loreto)
- Updated ru Translation (Yuri Myasoedov)
- Updated sl Translation (Matej Urbančič)
- Updated sr@latin Translation (Мирослав Николић)
- Updated sr Translation (Мирослав Николић)
- Updated ta Translation (Dr.T.Vasudevan)
- Updated te Translation (Krishnababu Krothapalli)
- Updated th Translation (Theppitak Karoonboonyanan)
- Updated uk Translation (Daniel Korostil)
- Updated zh_CN Translation (Cheng Lu)
Documentation translations:
- Updated el Documentation translation (Tom Tryfonidis)
NEW in 3.5.92 (17/09/2012)
=============
Dependencies:
• telepathy-glib ≥ 0.19.9
• folks ≥ 0.7.3
Bugs fixed:
- Fixed #675220, Avoid repeatedly reloading icons in list views (Guillaume Desmottes)
- Fixed #683699, Crash when closing test-empathy-roster-model-aggregator (Guillaume Desmottes)
- Fixed #683827, GST 1.0 enabled build fails without gst 0.10 installed (Olivier Crête)
- Fixed #683854, empathy-utils.c:568: empathy_account_manager_get_accounts_connected called before AccountManager ready (Guillaume Desmottes)
- Fixed #683864, Memory leak fixes (Guillaume Desmottes)
- Fixed #684194, Selection not visible with some themes (Guillaume Desmottes)
Translations:
- Updated ar Translation (Ibrahim Saed)
- Updated as Translation (Nilamdyuti Goswami)
- Updated be Translation (Ihar Hrachyshka)
- Updated cs Translation (Marek Černocký)
- Updated da Translation (Kenneth Nielsen)
- Updated de Translation (Mario Blättermann)
- Updated el Translation (Tom Tryfonidis)
- Updated es Translation (Daniel Mustieles)
- Updated fi Translation (Ville-Pekka Vainio)
- Updated he Translation (Yaron Shahrabani)
- Updated hi Translation (Rajesh Ranjan)
- Updated ko Translation (Changwoo Ryu)
- Updated lt Translation (Aurimas Černius)
- Updated mr Translation (Sandeep Sheshrao Shedmake)
- Updated pt Translation (Duarte Loreto)
- Updated ru Translation (Yuri Myasoedov)
- Updated uk Translation (Daniel Korostil)
- Updated zh_HK Translation (Cheng-Chia Tseng)
- Updated zh_TW Translation (Cheng-Chia Tseng)
Documentation translations:
- Updated el Documentation translation (Tom Tryfonidis)
- Updated es Documentation translation (Daniel Mustieles)
NEW in 3.5.91.1 (07/09/2012)
===============
Dependencies:
• mission-control-plugins ≥ 5.13.1 (optional)
Bugs fixed:
- Fixed #683326, Misleading message when our presence is offline (Guillaume Desmottes)
- Fixed #683397, "Remember password" option is not always saved (Guillaume Desmottes)
- Fixed #683409, Should reconnect account when credentials have been re-entered (Guillaume Desmottes)
- Fixed #683415, UOA provider plugins should each return a unique GType (Guillaume Desmottes)
- Fixed #683442, empathy-accounts: add button insensitive after removing all accounts (Guillaume Desmottes)
- Fixed #683453, Don't show "Topic: " in tooltips if there is none (Will Thompson)
- Fixed #683501, Should display the 'loading' page when manually reconnecting accounts (Guillaume Desmottes)
Translations:
- Updated en_GB Translation (Bruce Cowan)
- Updated es Translation (Daniel Mustieles)
- Updated fa Translation (Arash Mousavi)
- Updated fr Translation (Alexandre Franke)
- Updated gl Translation (Fran Diéguez)
- Updated id Translation (Andika Triwidada)
- Updated it Translation (Milo Casagrande)
- Updated nb Translation (Kjartan Maraas)
- Updated pl Translation (Piotr Drąg)
- Updated pt_BR Translation (Fábio Nogueira)
- Updated sl Translation (Matej Urbančič)
- Updated sr@latin Translation (Мирослав Николић)
- Updated sr Translation (Мирослав Николић)
- Updated ta Translation (Dr.T.Vasudevan)
NEW in 3.5.91 (04/09/2012)
=============
Empathy can now be built with GStreamer 1.0 support (--enable-gst-1.0=yes).
This is currently very experimental and requires not yet released versions of
Farstream and telepathy-farstream. See bgo#674179 for known issues and current
blockers.
Bugs fixed:
- Fixed #679259, [new roster] no longer remember expanded status of groups (Guillaume Desmottes)
- Fixed #680776, Store passwords in libaccounts (Xavier Claessens)
- Fixed #682802, Try installing missing UOA plugin when migrating (Guillaume Desmottes)
- Fixed #682926, After all groups are collapsed, Empathy indicates that there are no users online and all groups disappeared (Guillaume Desmottes)
- Fixed #682938, Crash when disconnecting account (Guillaume Desmottes)
- Fixed #683022, Only favorite top contact should be displayed when offline (Guillaume Desmottes)
- Fixed #683025, Contacts in groups are duplicated (Guillaume Desmottes)
- Fixed #683258, Can't make audio calls with master (Sjoerd Simons)
- Fixed #683275, [new roster] Crash when disabling groups (Guillaume Desmottes)
- Fixed #683314, [new roster] top contacts not displayed on top in non group mode (Guillaume Desmottes)
Translations:
- Updated as Translation (Nilamdyuti Goswami)
- Updated el Translation (Tom Tryfonidis)
- Updated es Translation (Daniel Mustieles)
- Updated gl Translation (Fran Diéguez)
- Updated he Translation (Yaron Shahrabani)
- Updated hu Translation (Gabor Kelemen)
- Updated id Translation (Andika Triwidada)
- Updated it Translation (Milo Casagrande)
- Updated lt Translation (Aurimas Černius)
- Updated nb Translation (Kjartan Maraas)
- Updated pl Translation (Piotr Drąg)
- Updated pt Translation (Duarte Loreto)
- Updated ru Translation (Yuri Myasoedov)
- Updated ta Translation (Dr.T.Vasudevan)
- Updated vi Translation (Nguyễn Thái Ngọc Duy)
- Updated zh_HK Translation (Chao-Hsiung Liao)
- Updated zh_TW Translation (Chao-Hsiung Liao)
NEW in 3.5.90 (20/08/2012)
=============
Bugs fixed:
- Fixed #656097, Empathy should show an informative text inside the contact list when no contacts are online (Xavier Claessens)
- Fixed #658858, Hide offline contacts by default (Xavier Claessens)
- Fixed #662986, Messaging and VoIP Accounts in Applications list (Guillaume Desmottes)
- Fixed #680302, Move model logic out of EmpathyRosterView (Laurent Contzen)
- Fixed #680774, Migrate existing accounts into libaccounts (Xavier Claessens)
- Fixed #680775, Be able to edit params of non SSO accounts (Guillaume Desmottes)
- Fixed #680778, Stop using empathy-accounts (Guillaume Desmottes)
- Fixed #681444, Wrong Service for GTalk accounts (Xavier Claessens)
- Fixed #681598, FTBFS: account plugins linking (Guillaume Desmottes)
Translations:
- Updated as Translation (Nilamdyuti Goswami)
- Updated el Translation (Tom Tryfonidis)
- Updated gl Translation (Fran Diéguez)
- Updated he Translation (Yaron Shahrabani)
- Updated it Translation (Milo Casagrande)
- Updated kn Translation (Shankar Prasad)
- Updated mr Translation (Sandeep Sheshrao Shedmake)
- Updated sr@latin Translation (Мирослав Николић)
- Updated sr Translation (Мирослав Николић)
NEW in 3.5.5 (06/08/2012)
============
Ubuntu Oncline Accounts support has been greatly improved as Empathy can now
provides plugins to create any kind of IM account using UOA's panel.
Empathy also migrated to libsecret [0].
[0] https://live.gnome.org/GnomeGoals/LibsecretMigration
Dependencies:
• telepathy-glib ≥ 0.19.6
• libsecret ≥ 0.5
Bugs fixed:
- Fixed #679884, libsecret migration (Stef Walter)
- Fixed #680448, Generate UOA plugins (Guillaume Desmottes)
- Fixed #680449, Add UOA app plugin (Xavier Claessens)
- Fixed #680646, UOA: Web authentificated accounts shouldn't be modifiable (Xavier Claessens)
- Fixed #680952, empathy-auth-client crashed with SIGSEGV in auth_data_free() (Guillaume Desmottes)
- Fixed #681079, Claim that Windows Live certificate isn't valid (Guillaume Desmottes)
Translations:
- Updated el Translation (Tom Tryfonidis)
- Updated es Translation (Daniel Mustieles)
- Updated gl Translation (Fran Diéguez)
- Updated gu Translation (Sweta Kothari)
- Updated he Translation (Yaron Shahrabani)
- Updated hu Translation (Gabor Kelemen)
- Updated id Translation (Andika Triwidada)
- Updated ja Translation (Jiro Matsuzawa)
- Updated nb Translation (Kjartan Maraas)
- Updated sl Translation (Matej Urbančič)
NEW in 3.5.4.1 (24/07/2012)
==============
Empathy gains support for the Ubuntu Online Accounts framework. If built
with --enable-ubuntu-online-accounts Empathy will be able to connect (using
SSO) to GTalk, Facebook and Windows Live accounts configured in the Ubuntu
Online Accounts pane.
Dependencies:
• telepathy-glib ≥ 0.19.4
• mission-control-plugins ≥ 5.13.0 (optional)
• libaccounts-glib ≥ 1.1 (optional)
• libsignon-glib ≥ 1.1 (optional)
• account-plugin (optional)
Bugs fixed:
- Fixed #677180, Doesn't save updated password (Guillaume Desmottes)
- Fixed #679786, Turn libempathy(-gtk) to private public libs (Guillaume Desmottes)
- Fixed #679868, [New roster] The Top Contacts group name isn't displayed above the top contacts if all of them are offline (Laurent Contzen)
- Fixed #680076, Fail to join password protected room (Guillaume Desmottes)
- Fixed #680160, Auth client code should make easier to add other account storages (Xavier Claessens)
NEW in 3.5.4 (16/07/2012)
============
Legacy chat themes from Gossip have been removed and re-implemented using the
Adium theme format.
Dependencies:
• GLib ≥ 2.33.3
• telepathy-glib ≥ 0.19.3
Bugs fixed:
- Fixed #645921, Drop old chat themes and make Adium theme mandatory (Danielle Madeley)
- Fixed #627948, Avatar option for irc superfous (Will Thompson)
- Fixed #678331, Sending a file from the conversation window silently fails (Guillaume Desmottes)
- Fixed #678524, [new roster] Re-Implement sending files using DnD (Guillaume Desmottes)
- Fixed #678807, empathy-chat crashed with SIGSEGV in _tp_base_client_handle_channels() (Guillaume Desmottes)
- Fixed #678845, Strip %senderPrefix% in Adium themes (Will Thompson)
- Fixed #678875, empathy-nautilus-sendto should use RosterView (Laurent Contzen)
- Fixed #679136, Stop using EmpathyContactWidget in the subscription request dialog (Guillaume Desmottes)
- Fixed #679255, Remove EmpathyChatView (Guillaume Desmottes)
- Fixed #679332, Handle Adium themes that use .AdiumMessagestyle (Guillaume Desmottes)
- Fixed #679396, Bind keyboard keys on DTMF events (Guillaume Desmottes)
- Fixed #679532, Contact names not aligned (Guillaume Desmottes)
Translations:
- Updated be Translation (Ihar Hrachyshka)
- Updated el Translation (Tom Tryfonidis)
- Updated es Translation (Daniel Mustieles)
- Updated he Translation (Yaron Shahrabani)
- Updated lt Translation (Žygimantas Beručka)
- Updated nb Translation (Kjartan Maraas)
- Updated pa Translation (A S Alam)
- Updated zh_HK Translation (Cheng-Chia Tseng)
- Updated zh_TW Translation (Cheng-Chia Tseng)
Documentation translations:
- Updated el Documentation translation (Tom Tryfonidis)
NEW in 3.5.3 (26/06/2012)
============
The contact list has been completely redesigned, see [0] for details; please
test it and report any regression you may experience.
[0] http://blog.desmottes.be/post/2012/06/15/New-Empathy-contact-list
Dependencies:
• folks ≥ 0.7.1
• telepathy-glib ≥ 0.19.1
• libebook no longer needed
Bugs fixed:
- Fixed #669484, [design] New contact list view (Guillaume Desmottes)
- Fixed #675214, Contacts not in groups after a restart (Guillaume Desmottes)
- Fixed #676634, Use TpAccountRequest (Guillaume Desmottes)
- Fixed #677465, Use TpProtocol more (Guillaume Desmottes)
- Fixed #677533, doesn't build with latest evolution-data-server (Guillaume Desmottes)
- Fixed #677545, Build with tp-glib GSEAL (Guillaume Desmottes)
- Fixed #677641, Use a weak reference while loading the logs asynchronously to detect when the object has been destroyed (Debarshi Ray)
- Fixed #677940, [new roster] Individual manager: track more popular contacts (Guillaume Desmottes)
- Fixed #677947, [new roster] Add EmpathyRosterView (Guillaume Desmottes)
- Fixed #677948, [new roster] Use EmpathyRosterView (Guillaume Desmottes)
- Fixed #677949, [new roster] Remove old preferences (Guillaume Desmottes)
- Fixed #678083, Find a better heuristic to compute contacts popularity (Seif Lotfy)
- Fixed #678091, [new roster] Display favorites in the top of the roster (Guillaume Desmottes)
- Fixed #678156, [new roster] People nearby group (Laurent Contzen)
- Fixed #678167, Not clear if mic is muted or not (Guillaume Desmottes)
- Fixed #678205, Contact gets displayed in the wrong group (Guillaume Desmottes)
- Fixed #678294, [new roster] Bring back individual tooltips (Guillaume Desmottes)
- Fixed #678307, irc connection parameters dialog: "apply" button stays unsensitive (Guillaume Desmottes)
- Fixed #678376, [new roster] Ungroupped contact should be displayed at the bottom of the roster (Laurent Contzen)
Translations:
- Updated be Translation (Ihar Hrachyshka)
- Updated el Translation (Tom Tryfonidis)
- Updated es Translation (Daniel Mustieles)
- Updated gl Translation (Fran Diéguez)
- Updated sl Translation (Andrej Žnidaršič)
NEW in 3.5.2 (05/06/2012)
============
The contact list menu bar has been removed and replaced by the application
global menu. empathy-av, the legacy audio/video client has been removed,
empathy-call replaces it completely.
Dependencies:
• GTK+ ≥ 3.5.1
• clutter-gtk ≥ 1.1.2
• telepathy-glib ≥ 0.19.0
• GOA ≥ 3.5.1 (optional)
• cheese-gtk ≥ 3.4.0 (optional)
Bugs fixed:
- Fixed #667619, Port to GtkApplication and GtkApplicationWindow (Danielle Madeley)
- Fixed #672043, Remove ':' from labels (Danielle Madeley)
- Fixed #640417, EmpathyAccountWidget should be a proper GtkWidget (Guillaume Desmottes)
- Fixed #669473, Use CSS for style properties (Guillaume Desmottes)
- Fixed #670874, floating toolbar not working (Sjoerd Simons)
- Fixed #673263, goa-mc-plugin: support enabling or disabling accounts (Debarshi Ray)
- Fixed #673846, Use tp_capabilities_supports_sms() (Guillaume Desmottes)
- Fixed #673989, Use TpRoomList (Guillaume Desmottes)
- Fixed #674182, Use TpDebugClient (Guillaume Desmottes)
- Fixed #674318, Use TpTLSCertificate (Guillaume Desmottes)
- Fixed #674553, Take picture button in image change doesn't work. (Guillaume Desmottes)
- Fixed #674774, tp-chat: use the GVariant version of TpCapabilities classes (Guillaume Desmottes)
- Fixed #674860, Modernize EmpathyNewChatroomDialog (Guillaume Desmottes)
- Fixed #674864, Missing tp-chat signals (Guillaume Desmottes)
- Fixed #675229, Stop using deprecated tp-glib API (Guillaume Desmottes)
- Fixed #675246, Strings appear untranslated (Gabor Kelemen)
- Fixed #675296, Remove empathy-av (Guillaume Desmottes)
- Fixed #675590, [patch] Use gst_object_ref_sink() (Javier Jardón)
- Fixed #675597, Consider removing EmpathyTpContactFactory (Guillaume Desmottes)
- Fixed #675647, video-widget: Remove as it is now unused (Olivier Crête)
- Fixed #675667, Crash when trying to add an account (Guillaume Desmottes)
- Fixed #675803, EmpathyContactWidget should be a proper GtkWidget (Guillaume Desmottes)
- Fixed #675807, use new TpTextChannel chat state API (Guillaume Desmottes)
- Fixed #675808, Stop using tp_connection_get_contacts_by_id() (Guillaume Desmottes)
- Fixed #676027, Spelling error Authentification → Authentication (Guillaume Desmottes)
- Fixed #676569, Use GTK_STYLE_CLASS_OSD (Cosimo Cecchi)
- Fixed #676637, Crash when account is connecting (Guillaume Desmottes)
Translations:
- Updated es Translation (Daniel Mustieles)
- Updated fr Translation (Bruno Brouard)
- Updated gl Translation (Fran Diéguez)
- Updated he Translation (Yaron Shahrabani)
- Updated nb Translation (Kjartan Maraas)
- Updated ru Translation (Yuri Myasoedov)
- Updated zh_HK Translation (Cheng-Chia Tseng)
- Updated zh_TW Translation (Cheng-Chia Tseng)
NEW in 3.5.1 (30/04/2012)
============
Dependencies:
• GLib ≥ 2.32.0
• telepathy-glib ≥ 0.17.6
• Intltool ≥ 0.50.0
Bugs fixed:
- Fixed #501065, Can't rename group (Guillaume Desmottes)
- Fixed #668186, make check does not run the test suite (which doesn't pass when it is run) (Guillaume Desmottes)
- Fixed #668261, empathy-tls-test (Stef Walter)
- Fixed #669134, SIP widget: add local IP widgets (Laurent Contzen)
- Fixed #669177, Show who changed the subject.
- Fixed #672619, Drop org.gnome.Empathy.gschema.xml.in (Guillaume Desmottes)
- Fixed #672976, Use GNetworkMonitor (Guillaume Desmottes)
- Fixed #673159, Add 'Rename' entry to accounts context menu (Guillaume Desmottes)
- Fixed #673410, Tooltip text when editing should be translatable (Laurent)
- Fixed #673821, Remove old contact list code (Guillaume Desmottes)
- Fixed #674432, The buddy list window is very small by default (Guillaume Desmottes)
- Fixed #640846, No tooltips in status picker (Laurent Contzen)
Translations:
- Updated an Translation (Daniel Martinez Cucalon)
- Updated ar Translation (Ibrahim Saed)
- Updated ca Translation (Jordi Serratosa)
- Updated ca@valencia Translation (Carles Ferrando)
- Updated en_CA Translation (Tiffany Antopolski)
- Updated es Translation (Daniel Mustieles)
- Updated eu Translation (Inaki Larranaga Murgoitio)
- Updated fa Translation (Arash Mousavi)
- Updated gl Translation (Fran Diéguez)
- Updated he Translation (Yaron Shahrabani)
- Updated hi Translation (Chandan Kumar)
- Updated id Translation (Andika Triwidada)
- Updated ja Translation (Mako N)
- Updated ko Translation (Changwoo Ryu)
- Updated nb Translation (Kjartan Maraas)
- Updated or Translation (ManojKumar Giri)
- Updated sk Translation (Pavol Klačanský)
- Updated sl Translation (Matej Urbančič, Andrej Žnidaršič)
- Updated te Translation (Sasi Bhushan)
- Updated zh_CN Translation (Automatic Mirroring)
Documentation translations:
- Updated fr Documentation translation (Bruno Brouard)
- Updated ja Documentation translation (Mako N)
NEW in 3.4.2 (14/05/2012)
============
Dependencies:
• telepathy-glib ≥ 0.18.0
Bugs fixed:
- Fixed #674432, The buddy list window is very small by default
- Fixed #675767, IRC Edit Connection Parameters text alignment
Translations:
- Updated an Translation (Daniel Martinez Cucalon)
- Updated sk Translation (Pavol Klačanský)
NEW in 3.4.1 (16/04/2012)
============
Bugs fixed:
- Fixed #673691, empathy -h should not present existing roster window (Guillaume Desmottes)
Translations:
- Updated ar Translation (Ibrahim Saed)
- Updated ca Translation (Jordi Serratosa)
- Updated ca@valencia Translation (Carles Ferrando)
- Updated hi Translation (Chandan Kumar)
- Updated zh_CN Translation (Automatic Mirroring)
Documentation translations: