-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1460 lines (1350 loc) · 73.9 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 2.27.2
==============
Bugs fixed:
- Fixed #569578, Lockdown patch
- Fixed #580922, Conversation menu is dead to me
- Fixed #582773, Empathy puts cheesy strings in my subscription requests
- Fixed #583391, Python binding for pyempathygtk are broken
- Fixed #583430, new editable status doesn't behave properly
- Fixed #583558, Rename OfferStreamTube and AcceptStreamTube to Offer and Accept
- Fixed #583566, Add View top level menu
- Fixed #583785, Display a summary at the end of configure
- Fixed #581871, "join chatroom" dialog doesn't report errors
Translations:
- Updated es Translation (Jorge Gonzalez)
- Updated ta Translation (drtvasudevan)
NEW in 2.27.1.1
===============
- Fix ABI version to not conflict with 2.26 branch
- Fix various coding style
Bugs fixed:
- Fixed #582589, Should allow users to initially have either audio or audio/video calls
Translations:
- Updated es Translation (Jorge Gonzalez)
Documentation translations:
- Updated el Documentation translation (Γιάννης Κατσαμπίρης)
NEW in 2.27.1
==============
Bugs fixed:
- Fixed #582641, crash in Empathy Instant Messenger: Making a call to a googl...
- Fixed #501519, Empathy API need documentation
- Fixed #504277, Empathy won't use 2nd and further protocols a connection manager provides
- Fixed #530119, display remote caller in the call window
- Fixed #539506, First message in conversation has no timestamp
- Fixed #544678, Can't change account photo/avatar
- Fixed #548704, "Add" button requires further action but lacks an ellipsis
- Fixed #549366, Should use SimplePresence
- Fixed #549641, Should use Contacts
- Fixed #561033, Work on the documentation
- Fixed #566905, avatar button is too tiny
- Fixed #568403, Add header file in documentation
- Fixed #568562, ghelp link broken in documentation
- Fixed #570346, EmpathyTpChat should use the Group SelfHandle if present
- Fixed #570545, Huge memory leak after opening some contacts discussion windows
- Fixed #574626, No obvious way to display FT manager
- Fixed #575090, Notifications of new messages stop working after closing the chat window
- Fixed #575415, Should switch from libglade to GtkBuilder
- Fixed #575442, "Call" string needs context for translation
- Fixed #575817, empathy_tp_tube_new_stream_tube should allow NULL as parameters
- Fixed #576384, "accept incoming call" dialog brings roster to current workspace
- Fixed #576394, "Send Video" button and "Call -> Send video" menu entry are not synced
- Fixed #577026, Sending slash-prefixed messages on IRC is a security risk.
- Fixed #577427, Port to latest tp-glib API
- Fixed #578356, Asserts when reconnecting to a chat room.
- Fixed #578399, Change to supplying spelling suggestions in submenu
- Fixed #579139, memleak in log_store_empathy_get_messages_for_file
- Fixed #579148, Improves the Join New room UI by adding columns, changing the UI
- Fixed #579553, Serveral memory leaks in empathy.
- Fixed #579735, add empathy_tp_tube_call_when_ready ()
- Fixed #579780, Several functions should be _dup_foo instead of _get_foo
- Fixed #579800, adding or removing an IRC account causes a dialog to pop up
- Fixed #579971, Try to access to a NULL GtkEntry when adding a new contact
- Fixed #580097, Dispaly transfer speed, and make remaining time more dynamic
- Fixed #580203, Theoretical race connecting to Received.
- Fixed #580771, Video playback should have a fullscreen mode
- Fixed #582751, No menu icon = no smiley
- Fixed #563222, Wrong "time remaining" estimation when sending a file
- Fixed #579484, New "join chatroom" dialog doesn't get list of rooms when room list is expanded
- Fixed #579485, "Join Room" dialog should allow sorting the list of rooms
- Fixed #571664, [1/3] Empathy should support Geolocation
Translations:
Updated ar Translation (Khaled Hosny)
Updated be Translation (Ihar Hrachyshka)
Updated bg Translation (Alexander Shopov)
Updated de Translation (Mario Blättermann)
Updated es Translation (Jorge Gonzalez, Jorge Gonzalez Gonzalez)
Updated gl Translation (Frco. Javier Rial, Ignacio Casal Quinteiro)
Updated it Translation (Milo Casagrande)
Updated kn Translation (Shankar Prasad)
Updated nl Translation (Wouter Bolsterlee)
Updated th Translation (Theppitak Karoonboonyanan)
Updated zh_CN Translation (Aron Xu)
NEW in 2.26.0
==============
- Fix various VoIP bugs
- Hook up audio mute button (Sjoerd Simons).
- Set the camera button sensitive while connected and there is a video input (Sjoerd Simons).
- Set empathy's media role to phone for so pulse can do policy on it.
For more information see:
http://pulseaudio.org/wiki/ApplicationProperties (Sjoerd Simons).
- Updated Greek tramslation by Jennie Petoumenou (pkst).
- Refactor log backend, it now make possible to implement other backends to
read logs from other clients, and it logs messages sooner to avoid losing
messages if empathy crash at any time (Jonny Lamb)
Translations:
- Updated British English manual translation (pwithnall).
- Updated Spanish translation (jorgegonz).
- Updated Czech translation (Martin Picek).
- Updated Marathi Translations (sandeeps).
- Updated Lithuanian translation (Gintautas Miliauskas).
- Updated French translation (Frédéric Peters, Bruno Brouard).
- Updated Portuguese translation (Duarte Loreto).
- Updated Russian translation (Nickolay V. Shmyrev).
- Updated Danish translation (kennethn).
- Updated assamese translations (amitakhya).
- Updated Bulgarian translation (Alexander Shopov).
- Updated Norwegian bokmål translation (Kjartan Maraas).
- Updated Oriya Translation (mgiri).
- Updated tamil translation (ifelix).
- Updated German translation (Mario Blättermann).
- Updated Telugu Translation (kkrothap).
- Updated Italian translation (miloc).
- Updated Slovenian translation (mateju).
NEW in 2.25.92
==============
- Hardcode some a default codec preferences
- Hook up the video input sidebar item (Sjoerd Simons).
- Hook up audio input panel (Sjoerd Simons).
- Use undrafted file transfer spec. (Jonny Lamb).
Bugs fixed:
- Fixed #572875, Missing translator comments (fpeters)
Translations:
- Added British English documentation. (Philip Withnall).
- Updated Czech translation (Lucas Lommer).
- Updated Slovenian translation (mateju).
- Updated Kannada translations (sprasad).
- Updated Polish translation (Tomasz Dominikowski).
- Updated German translation (joskulj).
- Updated Italian translation (Milo Casagrande).
- Updated Spanish translation (jorgegonz).
- Updated British English translation. (Philip Withnall).
- Updated th translation. (tkaroonb).
- Updated Malayalam translation (apravi).
- Updated German documentation (mariobl).
- Updated ja translation (Takeshi AIHANA).
- Updated Swedish translation (dnylande).
- Updated Catalan translation (gforcada).
- Updated Brazilian Portuguese translation. (ogmaciel).
- updated latvian translation (Raivis Dejus).
- Updated sv translation (Daniel Nylander).
- Updated Basque translation. (Inaki Larranaga Murgoitio).
- Updated Finnish translation (ituohela).
- Updated ko translation. (cwryu).
- Updated French translation (Laurent Coudeur, Claude Paroz).
- Updated ro translation (Adi Roiban).
- Updated Hungarian translation (kelemeng).
- Updated ca translation (Gil Forcada).
NEW in 2.25.91
==============
- Set the intial volume button level to a more correct one (Sjoerd Simons).
- Set the camera button insensitive after a call (Sjoerd Simons).
- Hook up the volume button (Sjoerd Simons).
- Hook up DTFM support (Sjoerd Simons).
- Notify when receiving an invitation to join a MUC (Guillaume Desmottes).
- Save status message on NetworkManager disconnect and restore on reconnect (Davyd Madeley).
Bugs fixed:
- Fixed #525559, Ignore muc invitations (Guillaume Desmottes)
- Fixed #562109, Spacing in contact information dialog (Frédéric Peters)
- Fixed #570357, make install fails on master (tkaroonb)
- Fixed #570397, Menu icon for 'Hang Up' is too large in call UI window (Jonathon Jongsma)
- Fixed #571184, Event toolip displayes (null) if no message was provided (Guillaume Desmottes)
- Fixed #571635, Minor string fixes (Bruce Cowan)
Translations:
- Updated Bulgarian translation (Alexander Shopov)
- Updated ro translation (Alexandru Szasz, Mișu Moldovan).
- Updated ja translation (Takeshi AIHANA).
- Updated Danish translation (Knneth Nielsen).
- Updated Polish translation (Tomasz Dominikowski).
- Updated sv translation (Daniel Nylander).
- Updated es translation (Jorge Gonzalez).
- Updated Vietnamese translation (Clytie Siddall).
- Updated Hungarian translation (kelemeng).
- Updated Basque translation (Inaki Larranaga Murgoitio).
- Updated Swedish translation (Daniel Nylander).
- Updated pt_BR translation (Andre Gondim).
- Updated Norwegian bokmål translation. (kmaraas).
NEW in 2.25.90
==============
- Rewrite Voice/Video call UI, and use farsight2 instead of stream-engine. (Sjoerd Simons).
- Add libnotify support (Jonny Lamb, Elliot Fairweather).
- Add EmpathyContactSelector (Jonny Lamb, Elliot Fairweather).
- Renamed G_STR_EMPTY to EMP_STR_EMPTY (Jonny Lamb).
- Update the user documentation (Milo Casagrande).
- Rename _new -> _dup_singleton. (Cosimo Cecchi).
- Remove usage of EmpathyTpGroup from EmpathyTpCall. (Xavier Claessens).
- Remove some usage of EmpathyTpGroup from EmpathyTpChat (Xavier Claessens).
- Rework internal dispatcher (Sjoerd Simons).
Bugs fixed:
- Fixed #548768, You can open several avatar file pickers for the same account (Frederic Peters)
- Fixed #562554, "Chat -> View Previous Conversations" should be disabled if no account (fpeters)
- Fixed #566549, Please remove trailing space (Leonardo Ferreira Fontenelle)
- Fixed #566676, There should not be any "gtk-ok", "gtk-cancel" etc. string in .pot (Lucas Lommer)
- Fixed #569884, no --version command-line option (Bruce Cowan)
- Fixed #569901, i18n problems in main() (Cosimo Cecchi)
- Fixed #570066, Missing file from POTFILES.in (Gabor Kelemen )
- Fixed #570080, empathy fails to build outside source tree (Theppitak Karoonboonyanan)
Translations:
- Updated pt_BR translation (Michel Recondo).
- Updated Hungarian translation (kelemeng).
- Updated es translation (Jorge Gonzalez).
- Updated ca translation (Gil Forcada).
- Updated Greek translation (Marios Zindilis).
- Updated Spanish translation (jorgegonz).
- Updated ko translation. (cwryu).
- updated hebrew translation (yairhr).
- Updated gr translation (Marios Zindilis).
- Updated Slovenian translation (mateju).
- Updated Norwegian bokmål translation. (kmaraas).
- Updated th translation (Theppitak Karoonboonyanan).
- Updated sv translation (Daniel Nylander).
NEW in 2.25.4
==============
- Add sound notifications using libcanberra-gtk (Cosimo Cecchi)
Bugs fixed:
Translations:
- Updated Norwegian bokmål translation. (kmaraas).
- Updated pt_BR translation (Taylon Silmer).
NEW in 2.25.3
==============
- Refactor EmpathyChatView to make possible to use other backends than
GtkTextView. Required to use Webkit and adium themes.
- Use gi18n-lib.h instead of gi18n.h for libraries. (Xavier Claessens).
- Add empathy_init(), empathy_gtk_init(). They have to be called by any process
using libempathy and libempathy-gtk. (Xavier Claessens).
- Do not make allow to add a contact to accounts that do not have contact list,
like IRC or SIP. (Guillaume Desmottes)
- Improve URI regex. (Xavier Claessens).
- Drop libgnomeui dependency (Cosimo Cecchi).
- Use GTK+ 2.14.0 and gtk_show_uri (Cosimo Cecchi).
Bugs fixed:
- Fixed #552296, Autocompletion on contact names for "new message" dialog box (Emmanuel Bretelle, Xavier Claessens)
- Fixed #562873, doesn't build with werror on x86_64 (Xavier Claessens)
- Fixed #563713, linkifies "@name", and captures the next word (Xavier Claessens)
Translations:
- Updated it translation (Milo Casagrande).
- Updated ca translation (Joan Duran).
- Added Catalan translation (Joan Duran).
NEW in 2.25.2
==============
- Use GRegex instead of custom code and use a new regex to detect URIs (Xavier Claessens).
- Replace Q_() with C_() for translation context. (Xavier Claessens).
- Add file transfer support (Xavier Claessens, Guillaume Desmottes, Jonny Lamb, Marco Barisione).
- Use markup for chat-window tooltips (hasselmm).
- Convert avatar to fit the resolution and size requirements (Xavier Claessens, Will Thompson).
Bugs fixed:
- Fixed #554938, Misspelled word in docs, help/C/empathy.xml:114 (fpeters)
- Fixed #496100, Invites to Chat Rooms unimplemented (Guillaume Desmottes)
- Fixed #541060, import accounts from Pidgin when first run (Xavier Claessens, Jonny Lamb)
- Fixed #542176, EmpathyChatroomManager doesn't contain active chat rooms (Guillaume Desmottes)
- Fixed #544029, empathy's configure.ac doesn't detect python 2.6 (fpeters)
- Fixed #553066, Some strings are not translatable in megaphone-applet (kelemeng)
- Fixed #554284, Bad email link (fpeters)
- Fixed #558370, empathy do not link on os x 10.5 (Michael Scherer)
- Fixed #560387, Crash when joining a chatroom (Guillaume Desmottes)
- Fixed #560611, Cannot distinguish IRC chats: They all have the label "Conversation". (Xavier Claessens)
- Fixed #560622, Show account name in conversation label. (hasselmm)
- Fixed #562071, Empathy logview crashes if no accout exitsts. (Xavier Claessens)
- Fixed #562588, Bugfix for the compile time libempathy/empathy-dispatcher.c (Stephane Wirtel)
Translations:
- Updated Turkish translation (Baris Cicek).
- Updated es translation (Jorge Gonzalez).
- Updated ps translation (Zabeeh Khan).
- Updated German translation. (Hendrik Richter).
- Updated Lithuanian translation (Gintautas Miliauskas).
- Updated ku translation (eronahi).
- Added Russian translation (Nikita Belobrov, aprokoudine).
- Updated Greek translation (Nick Agianniotis).
- Updated th translation (Theppitak Karoonboonyanan).
- Updated el translation (frolix68).
- Updated Danish translation (Kenneth Nielsen).
- Updated sv translation (Daniel Nylander).
- Updated cs translation (Martin Picek and Lucas Lommer).
- Updated Hungarian translation (kelemeng).
- Updated Galician Translation. (icq).
- Updated Finnish translation (ituohela).
- Updated Brazilian Portuguese translation. (ogmaciel).
- Updated Bulgarian translation (Alexander Shopov).
- Updated zh_CN translation. (fwang, zyang).
- Updated Arabic Translation (Anas Afif Emad).
- Updated sr translation (grakic).
NEW in 2.23.92
==============
Bugs fixed:
- Fixed #550556, IRC Network combo sometimes has wrong network selected (Guillaume Desmottes)
- Fixed #551096, Chat window has two close buttons (fpeters)
- Fixed #551113, windows lack WM_WINDOW_ROLE property (fpeters)
- Fixed #504154, Cleanup in *.pc files (Dafydd Harries)
Translations:
- Updated pt translation (Duarte Loreto).
- Updated nl translation (Vincent van Adrighem).
- Updated en_GB translation (Philip Withnall).
- Updated cs translation (Adrian Gunis).
- Updated Polish translation (Tomasz Dominikowski).
- Updated Bulgarian translation (Alexander Shopov).
- Updated sv translation (dnylande).
- Updated Vietnamese translation (Nguyễn Thái Ngọc Duy).
- Added th translation (Theppitak Karoonboonyanan).
NEW in 2.23.91
==============
- Add a menu item in chat window to set the room as favorite (Xavier Claessens).
- Make Chat the default in New Conversation… dialog (Xavier Claessens).
- Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
Bugs fixed:
- Fixed #546568, Account name in contact tootlip is shown as selected (fpeters)
- Fixed #548578, all protocols are listed twice in the accounts creation list (fpeters)
- Fixed #548632, don't use italic for status text in contact list (fpeters)
- Fixed #548693, Use Yahoo ID as label (fpeters)
- Fixed #548709, "Undo" button in Accounts window doesn't undo anything (fpeters)
- Fixed #549002, pygtk-codegen-2.0 got replaced by pygobject-codegen-2.0 (fpeters)
- Fixed #549280, Notifications when Contacts come online doesn't work (Xavier Claessens)
- Fixed #549545, empathy_contact_factory_get_tp_factory sometimes returns a new reference, sometimes not. (Xavier Claessens)
Translations:
- Updated Brazilian Portuguese translation (Vladimir Melo, Fábio Nogueira).
- Updated Finnish translation (ituohela).
- Updated cs translation (Adrian Gunis).
- Updated mk translation (Jovan Naumovski).
- Updated Basque translation (Larranaga Murgoitio).
- Updated Arabic Translation (Youssef Chahibi).
- Updated sv translation (Daniel Nylander).
- Updated es translation (Jorge Gonzalez).
- Updated Polish translation (Tomasz Dominikowski).
- Updated Galician translation (icq).
- Updated Brazilian Portuguese translation. (ogmaciel).
- Updated French translation (bobmauchin).
- Added Bengali India Translation (runab).
- Added gujarati translation (swkothar).
NEW in 2.23.91
==============
- Do not create a new EmpathyChatroom is it already exists. (Xavier Claessens).
- Add a menu item in chat window to set the room as favorite (Xavier Claessens).
- Reorder files in alphabetical order. (Xavier Claessens).
- Correct the xml indentation (Xavier Claessens).
- Update API doc and add a README to explain how to keep it updated. (Xavier Claessens).
- Make sure to not unref tooltop_widget more than once (Xavier Claessens).
- Keep a ref to the tooltip_widget so it is not recreated all the time. (Xavier Claessens).
- Update translation (kmaraas).
- Conversion from sr@Latn to sr@latin (grakic).
- Make Chat the default in New Conversation… dialog (Xavier Claessens).
- Give Chat and Call accelerators in New Conversation dialog. (Xavier Claessens).
- EmpathyContactWidget: correct typo, "hbow" -> "hbox" (Xavier Claessens).
- Added entry for the Bengali India translation addtion and addition to LINGUAS (runab).
- Added Bengali India (bn_IN) to the list of languages (runab).
- Added Bengali India Translation (runab).
- Added gujarati translation (swkothar).
- 2.23.91 (chliao).
- 2008-08-20 Leonardo Ferreira Fontenelle <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* eu.po: Updated Basque translation. (dooteo).
- Updated Translation (laurenti).
- 2008-08-19 Leonardo Ferreira Fontenelle <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* eu.po: Updated Basque translation. (dooteo).
- Updated Translation (laurenti).
- 2008-08-19 Leonardo Ferreira Fontenelle <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* eu.po: Updated Basque translation. (dooteo).
- Updated Translation (laurenti).
- 2008-08-19 Leonardo Ferreira Fontenelle <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* eu.po: Updated Basque translation. (dooteo).
- Updated Translation (laurenti).
- 2008-08-19 Leonardo Ferreira Fontenelle <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* eu.po: Updated Basque translation. (dooteo).
- Updated Translation (laurenti).
- 2008-08-19 Leonardo Ferreira Fontenelle <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* eu.po: Updated Basque translation. (dooteo).
- Updated Translation (laurenti).
- 2008-08-19 Leonardo Ferreira Fontenelle <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* eu.po: Updated Basque translation. (dooteo).
- Updated Translation (laurenti).
- 2008-08-19 Leonardo Ferreira Fontenelle <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* eu.po: Updated Basque translation. (dooteo).
- Updated Translation (laurenti).
- 2008-08-19 Leonardo Ferreira Fontenelle <[email protected]>
* 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 <[email protected]>
* 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).