-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog.cvs2cl
6916 lines (4550 loc) · 201 KB
/
ChangeLog.cvs2cl
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
2007-07-25 19:24 siddheshp
* configure.ac, gen, modules/aim-oscar/aim-oscar.c,
modules/msn2/libmsn2/msn_core.h (gtk2-port):
Cleaned up some warnings
2007-07-22 17:01 siddheshp
* sounds/: BuddyArrive.au, BuddyLeave.au, Receive.au, Send.au
(gtk2-port):
Converted audio files to Sun/NEXT format. The old ones were wma
audio files renamed to .au
2007-07-17 18:25 siddheshp
* configure.ac, gen, po/LINGUAS, po/hi.po,
src/gtk/html_text_buffer.c (gtk2-port):
Multiple changes and fixes: * Hindi translation by Ashish Jain
* Configure checks and warnings for Pspell, libxpm-dev, libssl,
libtool and more. * Fixes in HTML parsing. Added html,
title, pre and p tags to the parser. Also fixed case when
upper case </A> tag is ignored
2007-07-09 16:10 siddheshp
* src/gtk/html_text_buffer.c (gtk2-port):
Moved variable to start of block
2007-07-08 18:51 siddheshp
* src/chat_window.c (gtk2-port):
Chat Autocompletion updates: * Fixed broken tab completion * Use
Right and left arrows to stop the autocompletion without changing
cursor position
2007-07-05 18:17 siddheshp
* src/gtk/html_text_buffer.c (gtk2-port):
Fixes for multiple bugs in the html parser: * Strip only known
tags; simply write the others out as plain text * Apply unclosed
tags in the end * A stray < or > should not break the rest of
the html following it
2007-06-25 18:52 siddheshp
* configure.ac, src/browser.c (gtk2-port):
Look for installed browsers on ./configure instead of blindly
defaulting to mozilla.
2007-06-17 19:18 siddheshp
* modules/: aim-toc/aim-toc.c, aim-toc/libtoc/libtoc.c,
aycryption/aycryption.c, icq-toc/icq-toc.c,
icq-toc/libtoc/libtoc.c, image_filter/img2jpc.c,
importers/importicq.c, irc/irc.c, jabber/libjabber/jid.c,
yahoo2/libyahoo2/libyahoo2.c (gtk2-port):
Got rid of some build warnings
2007-06-17 19:10 siddheshp
* modules/yahoo2/yahoo.c (gtk2-port):
Logging out immediately after login would cause ayttm to lock up
with infinite "Account exists" messages.
2007-06-01 12:28 kartik_m
* debian/: README.Debian, changelog, compat, control, copyright,
dirs, docs, menu, postinst, rules: Removing dead debian/
directory
2007-06-01 12:13 kartik_m
* mkinstalldirs: Added missing mkinstalldirs needed to build po/
2007-05-29 18:27 siddheshp
* modules/aycryption/aycryption.c, src/contact.h (gtk2-port):
Removed dependency of core on gpgme.
2007-05-28 20:54 siddheshp
* src/gtk/html_text_buffer.c (gtk2-port):
Fixed bug where anything between a & and ; gets deleted in chat
text
2007-05-28 20:19 siddheshp
* modules/aycryption/Makefile.am, modules/aycryption/aycryption.c,
modules/aycryption/select-keys.c,
modules/aycryption/select-keys.h, src/contact.h, configure.ac
(gtk2-port):
GPGME port from 0.x to 1.x
2007-04-25 17:50 siddheshp
* src/charconv.c (gtk2-port):
Moved variable declarations to start of block
2007-04-24 22:08 siddheshp
* configure.ac, src/Makefile.am (gtk2-port):
Removed check for GDK_PIXBUF since its part of gtk now.
2007-04-24 21:57 siddheshp
* src/: Makefile.am, account_parser.y, charconv.c, charconv.h,
contact_parser.y (gtk2-port):
Convert non-utf8 buddy name strings to utf8. This will also
automatically import the old contact and account files if they're
in some other non-utf8 charset.
2007-04-24 21:50 siddheshp
* modules/msn2/msn.C (gtk2-port):
We don't need UTF-8 to native charset conversion -- gtk2 does
UTF-8
2007-04-19 18:45 siddheshp
* src/status.c (gtk2-port):
Sort contact list alphabetically -- patch by Philip Tellis
2007-04-15 21:42 siddheshp
* modules/msn2/libmsn2/msn_bittybits.C (gtk2-port):
Allow special characters in msn friendly names
2007-04-14 21:05 siddheshp
* src/gtk/prefs_window.C (gtk2-port):
The X should destroy the window; Joe user expects that.
2007-04-14 20:27 siddheshp
* src/: chat_window.c, status.c (gtk2-port):
Fixed keyboard shortcuts for the chat window and the main window
menu.
2007-04-12 18:05 siddheshp
* modules/smtp/smtp.c, src/about.c (gtk2-port):
* Corrected my email address
2007-04-12 12:12 bluesmoon
* src/about.c (gtk2-port): added siddhesh's name to developers list
2007-04-05 12:55 siddheshp
* src/: add_contact_window.c, away_window.c, chat_room.c,
chat_window.c, dialog.c, edit_account_window.c,
edit_contact_window.c, edit_list_window.c, edit_local_accounts.c,
status.c, gtk/gtk_tree_view_tooltip.c, gtk/gtkspell.c,
gtk/html_text_buffer.c (gtk2-port):
Moved variable declarations to start of code blocks
2007-04-03 21:37 siddheshp
* modules/importers/importicq.c (gtk2-port):
Fixed icqimport crash
2007-04-03 20:57 siddheshp
* modules/: aim-oscar/libfaim/src/rxhandlers.c,
importers/import_everybuddy.c, importers/importicq.c (gtk2-port):
More issues caught by -Wall and also by --enable-smtp
2007-04-02 20:41 siddheshp
* libproxy/proxy.c, modules/aycryption/select-keys.c,
modules/yahoo2/yahoo.c, src/add_contact_window.c,
src/chat_room.c, src/chat_window.c, src/console_session.c,
src/dialog.c, src/edit_contact_window.c, src/edit_list_window.c,
src/edit_local_accounts.c, src/info_window.c, src/plugin.c,
src/plugin_api.c, src/service.c, src/smileys.c, src/sound.c,
src/status.c, src/status.h, src/tcp_util.c, src/trigger.c,
src/usercount.c, src/gtk/about_window.c,
src/gtk/gtk_tree_view_tooltip.c, src/gtk/gtkspell.c,
src/gtk/gtkutils.c, src/gtk/html_text_buffer.c,
src/gtk/log_window.C, src/gtk/prefs_window.C (gtk2-port):
Mother of all Oops'es -- I was not building with -Wall. NOW most
of the port is done... I hope :)
2007-03-26 20:27 siddheshp
* ChangeLog, ChangeLog-0.4.6-35, README, README.LINUX, configure.ac
(gtk2-port):
Updated ChangeLog and corrected some references to gtk1.2
2007-03-24 17:28 siddheshp
* src/status.c (gtk2-port):
Fixed the 'Check latest version' check.
2007-03-23 20:30 siddheshp
* configure.ac (gtk2-port):
Thou shall now be called version 0.5.0 :)
2007-03-21 19:10 siddheshp
* modules/yahoo2/yahoo.c (gtk2-port):
Allow @ in yahoo usernames as well. See Feature Request #959812.
2007-03-20 20:33 siddheshp
* src/gtk/html_text_buffer.c (gtk2-port):
Parses " as ". Closes feature request #997779
2007-03-20 20:31 siddheshp
* modules/yahoo2/libyahoo2/libyahoo2.c (gtk2-port):
Changed printf to DEBUG_MSG
2007-03-18 20:24 siddheshp
* modules/yahoo2/libyahoo2/libyahoo2.c (gtk2-port):
Fixed status update for yahoo. Yahoo 6 introduces a new service
number 0xc6 for status updates instead of 3 and 4. Now sending
0xc6 results in reception of 3 or 4 depending on whether the user
is going "Away" or coming "(I'm) Back"
2007-03-18 20:21 siddheshp
* modules/yahoo2/yahoo.c (gtk2-port):
Applied patch #974493. Fixes incorrect comparison of EB_STATUSes
with YAHOO_STATUSes
2007-03-17 18:11 siddheshp
* configure.ac, src/chat_window.c, src/crash.c, src/smileys.c,
src/status.c, src/trigger.c, src/gtk/file_selection_dlg.C,
src/gtk/gtkutils.c, src/gtk/html_text_buffer.c,
src/gtk/prefs_window.C (gtk2-port):
* Removed XFT dependency * Cleaned up obsolete code
2007-03-15 19:34 siddheshp
* src/: account.h, status.c, gtk/Makefile.am, gtk/prefs_window.C
(gtk2-port):
Tooltips implemented in the status window
2007-03-15 19:29 siddheshp
* src/gtk/: gtk_tree_view_tooltip.c, gtk_tree_view_tooltip.h
(gtk2-port):
Custom tooltip widget
2007-03-08 19:11 siddheshp
* src/gtk/prefs_window.C (gtk2-port):
The "Edit Accounts" menu now works
2007-03-08 18:55 siddheshp
* configure.ac, doc/gtk2-porting.txt,
modules/aycryption/select-keys.c, src/activity_bar.C,
src/away_window.c, src/dialog.c, src/edit_list_window.c,
src/status.c, src/gtk/Makefile.am, src/gtk/about_window.c,
src/gtk/gtkutils.c, src/gtk/log_window.C, src/gtk/prefs_window.C
(gtk2-port):
Code now builds successfully with -DGTK_DISABLE_DEPRECATED
2007-03-03 20:18 siddheshp
* po/LINGUAS (gtk2-port):
po/LINGUAS now contains the full set of translations. ALL_LINGUAS
can force only a subset of those to be built for distribution
2007-03-03 20:14 siddheshp
* modules/importers/importicq.c, src/file_select.c (gtk2-port):
Replaced GtkFileSelection with GtkFileChooser
2007-03-01 21:36 siddheshp
* modules/msn2/msn.C, modules/yahoo2/yahoo.c,
src/contact_actions.c, src/file_select.c, src/file_select.h,
src/gtk/Makefile.am, src/gtk/file_selection_dlg.C (gtk2-port):
Replaced file_selection with file_chooser
2007-03-01 19:45 siddheshp
* src/: edit_account_window.c, edit_contact_window.c,
gtk/prefs_window.C (gtk2-port):
Replaced deprecated GtkOptionMenu and GtkCombo
2007-03-01 19:43 siddheshp
* src/: status.c, util.c (gtk2-port):
Added functions to refresh group and contact lines after editing
them
2007-02-28 02:43 siddheshp
* src/add_contact_window.c (gtk2-port):
Fixed crash when trying to add accounts with no services defined.
2007-02-28 02:33 siddheshp
* src/add_contact_window.c (gtk2-port):
Replaced deprecated GtkCombo with GtkComboBoxEntry
2007-02-24 11:57 siddheshp
* src/: chat_room.c, chat_window.h, edit_list_window.c, trigger.c
(gtk2-port):
Ported deprecated GtkCombo to GtkComboBox and GtkCList to
GtkTreeView
2007-02-23 22:25 siddheshp
* src/: image_window.c, info_window.c, smileys.c (gtk2-port):
Replace deprecated GtkPixmap with GtkImage
2007-02-23 21:51 siddheshp
* src/: add_contact_window.c, edit_contact_window.c (gtk2-port):
Ported deprecated GtkOptionMenu to GtkComboBox
2007-02-23 21:35 siddheshp
* src/edit_local_accounts.c (gtk2-port):
Ported deprecated GtkOptionMenu to GtkComboBox and GtkCList to
GtkTreeView
2007-02-22 19:37 siddheshp
* src/gtk/prefs_window.C (gtk2-port):
Corrected selection mode from Single to Browse to force atleast
one selection to persist.
2007-02-22 19:35 siddheshp
* src/messages.c (gtk2-port):
Replaced custom dialog boxes with GtkMessageDialog
2007-02-22 19:34 siddheshp
* src/: chat_room.c, chat_window.c, dialog.c, trigger.c,
gtk/about_window.c, gtk/html_text_buffer.c (gtk2-port):
Replaced deprecated GtkPixmap with GtkImage
2007-02-21 20:16 siddheshp
* src/gtk/: gtk_eb_html.c, gtk_eb_html.h (gtk2-port):
Old html parser -- not needed anymore
2007-02-21 20:00 siddheshp
* modules/aycryption/select-keys.c, src/chat_room.c,
src/chat_window.c, src/edit_list_window.c,
src/edit_local_accounts.c, src/status.c, src/gtk/prefs_window.C
(gtk2-port):
Replaced deprecated functions for toolbars and signals
2007-02-20 20:40 siddheshp
* src/: add_contact_window.c, away_window.c, chat_room.c,
chat_window.c, dialog.c, edit_account_window.c,
edit_contact_window.c, edit_group_window.c, edit_list_window.c,
edit_local_accounts.c, info_window.c, main.c, status.c,
trigger.c, gtk/about_window.c, gtk/gtkutils.c, gtk/gtkutils.h,
gtk/prefs_window.C (gtk2-port):
Multiple fixes: default window icon, replaced some deprecated
functions.
2007-02-18 19:47 siddheshp
* configure.ac, doc/gtk2-porting.txt, src/chat_window.c,
src/edit_list_window.c, src/status.c, src/gtk/html_text_buffer.c,
src/gtk/prefs_window.C (gtk2-port):
* Build without GTK_ENABLE_BROKEN * Auto-scroll during drag in
status window * Fixed resize of preferences window
2007-02-18 12:12 siddheshp
* src/dialog.c (gtk2-port):
Yet another gtktext becomes gtktextview
2007-02-18 09:50 siddheshp
* src/smileys.c (gtk2-port):
Fixed smiley selection. Yahoo showed MSN smileys when using the
Default Protocol Smileys
2007-02-17 07:35 siddheshp
* src/: away_window.c, edit_list_window.c (gtk2-port):
Widget port: gtktext to gtktextview
2007-02-17 06:21 siddheshp
* src/status.c (gtk2-port):
Fixed the autoresize bug in status window
2007-02-17 06:20 siddheshp
* src/gtk/gtkspell.c (gtk2-port):
Menu popup now comes up with the menu key (or Shift+F10) as well
2007-02-17 03:03 siddheshp
* configure.ac (gtk2-port):
We need GTK 2.6 or later for now.
2007-02-16 18:35 siddheshp
* src/gtk/Makefile.am (gtk2-port):
We don't need gtk_eb_html.[c|h] anymore
2007-02-16 18:34 siddheshp
* src/gtk/: gtkspell.c, gtkspell.h (gtk2-port):
Spell check is working now
2007-02-16 09:58 siddheshp
* src/gtk/html_text_buffer.c (gtk2-port):
don't delete text marks after they're done as bad html needs it
:)
2007-02-16 08:55 siddheshp
* src/gtk/html_text_buffer.c (gtk2-port):
Links now open on double click instead of single click
2007-02-14 19:15 bluesmoon
* src/Makefile.am (gtk2-port): comment at start of rule is
unportable
2007-02-10 18:32 siddheshp
* doc/gtk2-porting.txt, modules/aycryption/aycryption.c,
modules/aycryption/select-keys.c, src/add_contact_window.c,
src/away_window.c, src/edit_account_window.c,
src/edit_contact_window.c, src/edit_list_window.c,
src/edit_local_accounts.c, src/image_window.c, src/info_window.c,
src/smileys.c, src/trigger.c, src/usercount.c,
src/gtk/message_windows.c (gtk2-port):
replaced deprecated set_usize with set_size_request
2007-02-10 18:30 siddheshp
* src/gtk/html_text_buffer.c (gtk2-port):
Finally got a non-deprecated function to show pixmaps
2007-02-10 18:29 siddheshp
* src/: status.c, gtk/gtkutils.c (gtk2-port):
Ported menu and contact tree view in status window
2007-02-03 21:50 siddheshp
* modules/aycryption/aycryption.c,
modules/aycryption/select-keys.c,
modules/importers/import_everybuddy.c,
modules/importers/importicq.c, src/add_contact_window.c,
src/away_window.c, src/chat_room.c, src/crash.c, src/dialog.c,
src/edit_account_window.c, src/edit_contact_window.c,
src/edit_group_window.c, src/edit_list_window.c,
src/edit_local_accounts.c, src/image_window.c, src/info_window.c,
src/smileys.c, src/status.c, src/trigger.c, src/usercount.c,
src/gtk/about_window.c, src/gtk/gtkspell.c, src/gtk/gtkutils.c,
src/gtk/message_windows.c (gtk2-port):
Ported signal functions to their gtk2 equivalents
2007-02-03 20:32 siddheshp
* src/: edit_account_window.c, edit_contact_window.c (gtk2-port):
Fixed edit acount/contact windows. GtkDialog cannot have multiple
widgets
2007-02-03 19:45 siddheshp
* src/: chat_room.c, chat_window.c (gtk2-port):
Fixed autocomplete, ported chat window and room toolbars to gtk2
2007-02-02 19:54 siddheshp
* src/smileys.c (gtk2-port):
Fixed smiley window which was broken due to the text entry port
2007-02-02 18:06 siddheshp
* src/: chat_room.c, chat_window.c (gtk2-port):
Ported message entry widgets to gtktextview.
multi-line/single-line works now
2007-01-31 23:05 siddheshp
* src/: chat_window.c, gtk/html_text_buffer.c (gtk2-port):
ported chat window entry (gtk_text) to to gtk_text_view
2007-01-31 23:03 siddheshp
* src/crash.c (gtk2-port):
ported gtk_text to gtk_text_view
2007-01-30 19:25 siddheshp
* doc/gtk2-porting.txt, src/gtk/html_text_buffer.c (gtk2-port):
Fixed transparency issue with smileys and icons
2007-01-30 17:11 siddheshp
* doc/gtk2-porting.txt, modules/aim-oscar/aim-oscar.c,
modules/aycryption/aycryption.c, modules/irc/irc.c,
src/chat_room.c, src/chat_window.c, src/info_window.c,
src/status.c (gtk2-port):
Fixed broken html in chat adn log windows.
2007-01-30 17:09 siddheshp
* src/gtk/: Makefile.am, gtk_eb_html.c, html_text_buffer.c,
html_text_buffer.h, log_window.C (gtk2-port):
Fixed broken html in chat and log windows
2007-01-12 18:16 siddheshp
* src/chat_window.c (gtk2-port):
Reversed smiley window fix. Needs more testing.
2007-01-12 18:13 siddheshp
* src/chat_window.c:
Reversed smiley window fix. Needs more testing
2007-01-11 21:29 siddheshp
* doc/gtk2-porting.txt, src/gtk/prefs_window.C (gtk2-port):
Porting widgets to gtk2 - Tree to TreeView
2007-01-07 19:21 siddheshp
* src/chat_window.c (gtk2-port):
Smiley popup now shows up on first click as well
2007-01-07 19:18 siddheshp
* src/smileys.c (gtk2-port):
Fixed smiley popup
2007-01-07 19:09 siddheshp
* src/chat_window.c:
Smiley window now opens on the firt click as well
2007-01-06 16:34 siddheshp
* Makefile.am, doc/Makefile.am, doc/gtk2-porting.txt,
libproxy/Makefile.am, m4/Makefile.am, mingw32/Makefile.am,
modules/Makefile.am, modules/aim-oscar/Makefile.am,
modules/aim-oscar/libfaim/Makefile.am,
modules/aim-oscar/libfaim/include/Makefile.am,
modules/aim-oscar/libfaim/src/Makefile.am,
modules/aim-toc/Makefile.am, modules/aim-toc/aim-toc.c,
modules/aim-toc/libtoc/Makefile.am,
modules/aim-toc/libtoc/libtoc.h, modules/aycryption/Makefile.am,
modules/aycryption/select-keys.c, modules/icq/Makefile.am,
modules/icq/libicq/Makefile.am, modules/icq-toc/Makefile.am,
modules/icq-toc/icq-toc.c, modules/icq-toc/libtoc/Makefile.am,
modules/icq-toc/libtoc/libtoc.h,
modules/image_filter/Makefile.am, modules/image_filter/img2jpc.c,
modules/importers/Makefile.am, modules/importers/importicq.c,
modules/irc/Makefile.am, modules/jabber/Makefile.am,
modules/jabber/libjabber/Makefile.am,
modules/jabber/libjabber/include/Makefile.am,
modules/jabber/libjabber/include/jabber/Makefile.am,
modules/jabber/libxode/Makefile.am,
modules/jabber/libxode/include/Makefile.am,
modules/livejournal/Makefile.am, modules/msn2/Makefile.am,
modules/msn2/libmsn2/Makefile.am, modules/smileys/Makefile.am,
modules/smileys/console_smileys/Makefile.am,
modules/smileys/giles_smiles/Makefile.am,
modules/smtp/Makefile.am, modules/utility/Makefile.am,
modules/workwizu/Makefile.am, modules/yahoo2/Makefile.am,
modules/yahoo2/libyahoo2/Makefile.am, pixmaps/Makefile.am,
po/Makefile.in.in, po/de.po, po/en_GB.po, po/es.po, po/fr.po,
po/nl.po, po/pt_BR.po, po/sv.po, sounds/Makefile.am,
src/Makefile.am, src/gtk/Makefile.am (gtk2-port):
fixed build and configure warnings
2007-01-06 16:28 siddheshp
* src/: chat_room.c, status.c (gtk2-port):
Fixed toolbars
2007-01-05 21:00 siddheshp
* src/: main.c, status.c (gtk2-port):
Fixed error messages on program close
2007-01-05 20:58 siddheshp
* src/: chat_room.c, chat_window.c (gtk2-port):
UI fixes to chat window, many yet to come.
2007-01-05 19:15 siddheshp
* modules/irc/irc.c (gtk2-port):
Fixed compile time warnings
2007-01-05 19:09 siddheshp
* src/: add_contact_window.c, edit_account_window.c, util.c, util.h
(gtk2-port):
Cleaned up compiler warnings
2007-01-01 11:30 bluesmoon
* modules/smileys/: console_smileys/Makefile.am,
giles_smiles/Makefile.am: Makefile fix for spaces in directory
names - patch by Siddhesh Poyarekar
2007-01-01 11:23 bluesmoon
* doc/gtk2-porting.txt (gtk2-port): updated status
2007-01-01 11:19 bluesmoon
* src/: add_contact_window.c, edit_group_window.c,
edit_local_accounts.c, status.c (gtk2-port): UI fixes for gtk2 -
patch by Siddhesh Poyarekar
2007-01-01 11:17 bluesmoon
* modules/smileys/: console_smileys/Makefile.am,
giles_smiles/Makefile.am (gtk2-port): makefile fixes for space in
directory name - patch by Siddhesh Poyarekar
2007-01-01 10:59 bluesmoon
* modules/aycryption/: aycryption.c, select-keys.c (gtk2-port):
make aycryption work with gtk2 also - patch by Siddhesh Poyarekar
2007-01-01 10:38 bluesmoon
* src/activity_bar.C (gtk2-port): gtk2 progress bar is easier to
work with :)
2007-01-01 10:36 bluesmoon
* libproxy/proxy.c (gtk2-port): don't throw an error on connect
failure - let the calling lib fallback if possible and throw the
error if necessary. also fix indentation
2006-12-31 08:12 bluesmoon
* doc/gtk2-porting.txt (gtk2-port): document to decribe porting to
gtk2
2006-12-31 07:44 bluesmoon
* configure.ac, modules/importers/import_everybuddy.c,
modules/irc/irc.c, modules/jabber/jabber.c, modules/msn2/msn.C,
modules/smileys/smiley-themer.c,
modules/smileys/console_smileys/Makefile.am,
modules/smileys/giles_smiles/Makefile.am, modules/yahoo2/yahoo.c,
src/activity_bar.C, src/add_contact_window.c, src/chat_room.c,
src/chat_window.c, src/chat_window.h, src/dialog.c,
src/edit_account_window.c, src/edit_contact_window.c,
src/edit_group_window.c, src/edit_list_window.c,
src/edit_local_accounts.c, src/image_window.c, src/info_window.c,
src/nomodule.c, src/plugin_api.c, src/service.c, src/service.h,
src/smileys.c, src/status.c, src/trigger.c, src/gtk/Makefile.am,
src/gtk/extgtktext.c, src/gtk/extgtktext.h,
src/gtk/gtk_eb_html.c, src/gtk/gtk_eb_html.h, src/gtk/gtkutils.c,
src/gtk/log_window.C, src/gtk/prefs_window.C (gtk2-port): initial
gtk2 port (note binary compatibility breakage)
2006-12-28 16:19 bluesmoon
* ChangeLog, configure.ac: fix allocation issue with msn login
2006-12-24 22:16 bluesmoon
* modules/msn2/libmsn2/msn_core.C: initialise urlread to a single
byte string so that the strcat doesn't get confused by stray null
chars
2005-11-25 08:02 bluesmoon
* ChangeLog, configure.ac, modules/yahoo2/yahoo.c: fix to compile
with gcc 4 - from b.ghose
2005-11-20 14:27 bluesmoon
* ChangeLog, configure.ac, modules/irc/irc.c: add IRC commands
patch from Manish Malik
2005-10-23 15:15 bluesmoon
* configure.ac: forgot to bump patch number with last commit
2005-10-22 20:05 bluesmoon
* modules/jabber/: jabber.c, libEBjabber.c, libEBjabber.h,
libjabber/jconn.c, libjabber/include/jabber/jabber.h: allow
overriding of connect server
2005-10-22 19:48 bluesmoon
* modules/msn2/msn.C: show away message only when actually marked
away
2005-10-22 19:26 bluesmoon
* modules/msn2/libmsn2/msn_core.C: Basically applying the patch
from http://colino.net/tmp/msn-auth-fix.diff to CVS. It works
for me. If it doesn't work for others, I'm sorry, I'm not really
looking at the code here, just applying a patch that was mailed
in.
It may be worthwhile for someone to update libmsn2 to follow the
protocol docs that are on hypothetic.org or something:
http://www.hypothetic.org/docs/msn/index.php
2005-02-13 18:49 bluesmoon
* configure.ac: forgot to change core version. we changed away
message handling
2005-02-13 14:00 bluesmoon
* configure.ac, ChangeLog: up to 31
2005-02-13 13:44 bluesmoon
* modules/utility/: Makefile.am, custom_message.c: add plugin that
can set a custom message based on the contents of a text file
2005-02-13 13:41 bluesmoon
* po/nl.po: take out extra \n
2005-02-13 13:39 bluesmoon
* modules/yahoo2/yahoo.c: allow setting whether custom message is
away message or not
2005-02-13 13:36 bluesmoon
* modules/utility/notes.c: get rid of unused code
2005-02-13 13:36 bluesmoon
* modules/smtp/smtp.c: allow setting whether custom message is away
message or not
2005-02-13 13:34 bluesmoon
* modules/msn2/: msn.C, libmsn2/msn_core.C: allow setting whether
custom message is away message or not and get rid of unused
variables
2005-02-13 13:33 bluesmoon
* modules/irc/irc.c: send away message to chat rooms as well as PMs
2005-02-13 13:32 bluesmoon
* modules/jabber/jabber.c: clean up indentation and allow setting
whether custom message is away message or not
2005-02-13 13:31 bluesmoon
* modules/: aim-toc/aim-toc.c, aim-oscar/aim-oscar.c,
icq-toc/icq-toc.c: allow setting whether custom message is away
message or not
2005-02-13 13:28 bluesmoon
* src/: edit_local_accounts.c, message_parse.c, status.c,
gtk/extgtktext.c: get rid of unused variables, and put some vars
inside #ifdefs
2005-02-13 13:26 bluesmoon
* src/: chat_room.c, chat_room.h, edit_account_window.c, plugin.c:
remove gtk dependencies from headers
2005-02-13 13:23 bluesmoon
* src/: away_window.c, away_window.h, nomodule.c, service.h: allow
setting whether custom message is away message or not
2004-12-29 21:32 bluesmoon
* configure.ac, modules/utility/notes.c: use rename(2) to rename
log files
2004-12-29 21:13 bluesmoon
* configure.ac, modules/image_filter/video_capture.c: use 0 instead
of NULL
2004-12-29 21:09 bluesmoon
* configure.ac, src/mem_util.c, src/mem_util.h: ay_string_append
takes a const char * as the string to append so that we can pass
in constants as well
2004-12-29 21:03 bluesmoon
* configure.ac, modules/irc/irc.c: fix /me handling in irc module
2004-09-24 08:37 colinleroy
* configure.ac, AUTHORS, ChangeLog, po/sv.po: Add swedish
translation by Patrik Hermansson <patrik@paheco.nu>
2004-08-16 13:19 haggai
* debian/: changelog, control, rules: Debian packaging directory
update for 0.4.6+26-1
2004-08-10 20:43 elh
* ChangeLog, configure.ac, modules/utility/notes.c:
Fixed to notes to get rid of defunct processes
2004-08-06 18:18 elh
* ChangeLog, README.LINUX, configure.ac, po/nl.po:
Updates for LINUX
2004-07-13 16:05 elh
* ChangeLog, README.NETBSD, configure.ac, src/message_parse.c:
UPdates for NetBSD port.
2004-07-12 21:02 elh
* ChangeLog, README.LINUX, configure.ac:
Update to README.LINUX for Mandrake 10
2004-07-12 18:12 elh
* ChangeLog, configure.ac, src/chat_room.c, src/chat_window.c:
Updates for bug #980589 Right Arrow Key not avail
2004-07-12 14:27 elh
* ChangeLog, README, README.LINUX, acinclude.m4, configure.ac, gen,
m4/arts.m4, m4/esd.m4, po/nl.po, src/Makefile.am: Added support
for automake 1.8 (thanks Philip). Upgrades for Mandrake build
v9.2 Not many changes but a few.
2004-07-10 21:40 colinleroy
* ChangeLog, configure.ac, po/nl.po: added nl translation by Sander
Devrieze <s.devrieze@pandora.be>
2004-07-09 18:53 elh
* ChangeLog, Makefile.am, README, README.AIX, README.LINUX,
configure.ac, src/message_parse.c, src/platform_defs.h,
src/util.c:
Fixed #949977, $986853
2004-06-28 14:55 elh
* ChangeLog, README.WIN32, configure.ac, modules/utility/notes.c,
src/externs.h, src/util.c:
Fixed #929347
2004-06-27 09:36 tnhashmi
* configure.ac: new service release
2004-06-27 05:28 tnhashmi
* po/: de.po, en_GB.po, es.po, fr.po, pt_BR.po: making a service
release
2004-06-27 05:20 tnhashmi
* ChangeLog, modules/yahoo2/libyahoo2/libyahoo2.c,
modules/yahoo2/libyahoo2/yahoo_fn.c: fixed yahoo auth after
protocol change
2004-06-16 08:31 tnhashmi
* ChangeLog: added new yahoo smileys
2004-06-16 08:24 tnhashmi
* configure.ac, modules/yahoo2/yahoo.c: added new yahoo smileys
2004-05-18 18:55 colinleroy
* ChangeLog, modules/msn2/msn.C, src/crash.c: eat SIGPIPE, avoid a
segfault
2004-05-18 18:55 colinleroy
* configure.ac: jasper enabled by default
2004-03-23 14:42 elh
* ChangeLog, configure.ac, libproxy/proxy.c:
Updates for Win32
2004-03-03 05:45 bluesmoon
* ChangeLog, configure.ac, modules/yahoo2/yahoo.c,
modules/yahoo2/libyahoo2/libyahoo2.c: fix yahoo logging out on
send message after relogin (see ChangeLog for full description)
2004-03-02 19:57 bluesmoon
* ChangeLog, configure.ac, modules/image_filter/img2jpc.c:
receiving webcam broadcasts works again. When jasper encoding
was moved to a module, the calls to jas_image_strtofmt got
shifted to before the call to jas_init. I'm still not sure why
we need to call jas_init before every encode. Maybe soon I'll
figure it out.
2004-02-24 13:27 elh