-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2350 lines (1798 loc) · 79.8 KB
/
ChangeLog
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
2004-08-06 Julian Missig <[email protected]>
* po/pt_BR.po: Translation
* src/AddContactDlg.cc: Patch from goedson to fix compile issues
* src/FileTransferSendDlg.cc: same
* src/RegisterGateway.cc: same
* src/RosterController.cc: same
* src/RosterModel.cc: same
* src/Singleton.hh: same
* src/TCPTransmitter.cc: same
* src/gtkspell.c: (build_suggestion_menu),
(gtkspell_set_language_internal): same
* src/main.cc: same
2004-06-30 Julian Missig <[email protected]>
* po/LINGUAS: New translation
* po/it.po: same
* po/pt_BR.po: same
2004-06-28 Julian Missig <[email protected]>
* README: fixed typo
* src/Makefile.am: proper flags
* src/S10nRequestDlg.cc: Fixed bug with denying s10n requests
* src/linux/Makefile.am: proper flags
2004-06-22 Julian Missig <[email protected]>
* src/BaseGabberWindow.cc: Ok so this stuff is really broken
* src/BaseGabberWindow.hh: same
* src/modules/ChatViewManager.hh: same
* src/modules/GCViewManager.hh: same
2004-06-21 Julian Missig <[email protected]>
* src/BaseGabberWindow.cc: Really fix issues this time. I hope.
2004-06-20 Julian Missig <[email protected]>
* src/PlainTextView.cc: Fix scrolling issue with gtkmm 2.4
* src/PlainTextView.hh: same
2004-06-19 Julian Missig <[email protected]>
* Makefile.am: fix make dist
* src/BaseGabberWindow.cc: fix a crash! yey
* src/GabberWin.cc: temas might want some credit
* src/PlainTextView.cc: identify /where/ to fix the scroll bug
2004-06-18 Julian Missig <[email protected]>
* src/GabberUtility.cc: Patch from goedson to fix naming conflict
* src/GabberUtility.hh: same
2004-06-17 Julian Missig <[email protected]>
* acinclude.m4: get rid of gtkmm here
* configure.ac: fix the checks -- it's gconfmm
* src/ContactInfo.cc: change messagedialog structure
* src/GabberApp.cc: same
* src/GabberUtility.cc: same
* src/GabberUtility.hh: same
* src/RosterView.cc: same
* src/linux/Makefile.am: include DEPS_CFLAGS
* src/linux/StatusIcon.cc: SigC::
* src/modules/ChatView.cc: MessageDialog
* src/modules/GCView.cc: MessageDialog
* src/modules/RawInputDlg.cc: SigC::
* src/modules/RawViewManager.hh: SigC::
* src/osx/Makefile.am: include DEPS_CFLAGS
* src/win32/Makefile.am: same
2004-06-17 Thomas Muldowney <[email protected]>
* RosterController.cc: TreeModel::iterator doesn't seem to wrap as
expected.
* RosterController.hh: same
* GabberDialog.cc: use build_filename
2004-06-17 Julian Missig <[email protected]>
* src/osx/PlatformFuncs.cc: Finally got that symbol
2004-06-17 Julian Missig <[email protected]>
* src/osx/Makefile.am: Fix more platform stuff temas broke
* src/osx/PlatformFuncs.cc: same
* src/osx/StatusIcon.cc: same
* src/osx/StatusIcon.hh: same
2004-06-16 Julian Missig <[email protected]>
* gabber.schemas.in: new gconf keys
* src/BaseGabberWindow.cc: use the keys
* src/ConfigPaths.hh: temas made them
* src/GabberDialog.cc: don't blame me
* src/LogManager.cc: yeah
* src/Menus.cc: .
* src/ModuleManager.cc: .
* src/ResourceManager.cc: .
2004-06-16 Julian Missig <[email protected]>
reviewed by: <delete if not using a buddy>
* gabber.schemas.in:
* src/BaseGabberWindow.cc:
* src/ConfigPaths.hh:
* src/GabberDialog.cc:
* src/LogManager.cc:
* src/Menus.cc:
* src/ModuleManager.cc:
* src/ResourceManager.cc:
2004-06-16 Thomas Muldowney <[email protected]>
* src/GabberUtility.cc: new MessageDialogWrapper
* src/GabberUtility.hh: same
* src/ContactInfo.cc: Use the new MessageDialog wrapper
* src/GabberApp.cc: same
* src/modules/ChatView.cc: same
* src/modules/GCView.cc: same
* src/modules/StandaloneSendDlg.cc: same
* src/RosterView.cc: same
* src/JabberConnection.cc: need some function definitions
* src/PlainTextView.cc: Fix the #ifdef and use the config.h
* src/PlainTextView.hh: same
* src/RosterController.cc: same
* src/TextParser.cc: same
* src/Makefile.am: Remove StatusIcon stuff
2004-06-16 Julian Missig <[email protected]>
* acinclude.m4: ApplicationServices for OS X
* configure.ac: output platform
* src/AutoAway.cc: Platform-specific
* src/AutoAway.hh: same
* src/linux/PlatformFuncs.cc: move XSS here
* src/linux/PlatformFuncs.hh: same
* src/osx/Makefile.am: Use OS X's hidden API for idle time
* src/osx/PlatformFuncs.cc: same
* src/osx/PlatformFuncs.hh: same
* src/win32/PlatformFuncs.cc: Use the windows API for idle
* src/win32/PlatformFuncs.hh: same
2004-06-16 Thomas Muldowney <[email protected]>
* configure.ac: Check for gtkmm 2.4 or 2.0
* src/RosterController.hh: Fixed the #if to #ifdef
* src/modules/ChatView.cc: interface is not intrface for win32
2004-06-16 Julian Missig <[email protected]>
* Makefile.am: clean up /some/ of temas's mess
* acinclude.m4: same
* configure.ac: same
* src/BaseGabberWindow.hh: raise shouldn't be virtual
* src/Makefile.am: temas
* src/eggtrayicon.h: temas
* src/linux/Makefile.am: temas
2004-06-16 Thomas Muldowney <[email protected]>
* src/AddContactDlg.cc: Update for win32, sigc 2.0, gtkmm 2.4
* src/AutoAway.cc: same
* src/AutoAway.hh: same
* src/AvatarManager.cc: same
* src/BaseGabberWindow.cc: same
* src/BaseGabberWindow.hh: same
* src/ConfigPaths.hh: same
* src/ContactInfo.cc: same
* src/Environment.hh: same
* src/FileTransferManager.cc: same
* src/FileTransferRecvDlg.cc: same
* src/FileTransferSendDlg.cc: same
* src/GabberApp.cc: same
* src/GabberDialog.cc: same
* src/GabberDialog.hh: same
* src/GabberUtility.cc: same
* src/GabberWidgets.cc: same
* src/GabberWin.cc: same
* src/GroupsEditor.cc: same
* src/JabberConnection.cc: same
* src/JabberConnection.hh: same
* src/LogManager.cc: same
* src/LogViewer.cc: same
* src/Menus.cc: same
* src/ModuleManager.cc: same
* src/ModuleManager.hh: same
* src/PacketQueue.cc: same
* src/PlainTextView.cc: same
* src/PlainTextView.hh: same
* src/PrefsInterface.cc: same
* src/RegisterGateway.cc: same
* src/RegisterGateway.hh: same
* src/ResourceManager.cc: same
* src/RosterController.cc: same
* src/RosterController.hh: same
* src/RosterModel.hh: same
* src/RosterView.cc: same
* src/S10nRequestDlg.cc: same
* src/S5B.cc: same
* src/TCPTransmitter.cc: same
* src/TCPTransmitter.hh: same
* src/TextParser.cc: same
* src/TextParser.hh: same
* src/XPathLog.cc: same
* src/eggtrayicon.c: same
* src/eggtrayicon.h: same
* src/gtkspell.c: same
* src/intl.h: same
* src/main.cc: same
* src/linux/Makefile.am: same
* src/modules/ChatView.cc: same
* src/modules/ChatViewManager.cc: same
* src/modules/GCJoinDlg.cc: same
* src/modules/GCView.cc: same
* src/modules/GCViewManager.cc: same
* src/modules/StandaloneSendDlg.cc: same
* src/modules/StandaloneViewManager.cc: same
* src/win32/Makefile.am: same
* src/win32/PlatformFuncs.hh: same
* src/win32/Win32Configurator.cc: same
* src/win32/Win32Configurator.hh: same
2004-06-12 Julian Missig <[email protected]>
* configure.ac: 1.9.4.1
* src/GabberApp.cc: Use GabberDialog for password/unsubscribed dialogs
* src/GabberDialog.cc: Fresh New Easy-to-Use dialog class! woo
* src/GabberDialog.hh: same
* src/Makefile.am: same
* ui/Gabber_win.glade: Glade definitions of password/unsubscribed
2004-06-11 Julian Missig <[email protected]>
* src/GabberWidgets.cc: Make links actually clickable
* src/GabberWidgets.hh: same
2004-06-11 Julian Missig <[email protected]>
* configure.ac: 1.9.4!
* src/AddContactDlg.cc: remove some debugging code
* ui/GCJoin_dlg.glade: remove useless stuff
* ui/ViewInfo_dlg.glade: same
2004-06-11 Thomas Muldowney <[email protected]>
* src/RosterController.cc: Make the queue icon go away when it's read.
2004-06-06 Julian Missig <[email protected]>
* ui/ViewInfo_dlg.glade: Start re-arranging presence info
2004-06-05 Kenny Graunke <[email protected]>
* autogen.sh: require automake 1.6, as 1.4 doesn't work anymore
2004-06-05 Julian Missig <[email protected]>
* src/GabberWidgets.cc: Finally fix x:oob support
* src/GabberWidgets.hh: i think
2004-06-04 Julian Missig <[email protected]>
* Makefile.am: Add intltool compatibility. Yey
* autogen.sh: same
* configure.ac: Move to a newer autoconf style and such
* configure.in: same
* gabber.desktop.in: translation
* po/.cvsignore: intltool compatibility
* po/LINGUAS: same
* po/Makevars: same
* po/POTFILES.in: same
* src/GabberWin.cc: Translator credits
* src/Makefile.am: remove DISABLE_DEPRECATED. Little chance of that now
* src/modules/Makefile.am: same
2004-06-02 Julian Missig <[email protected]>
* src/modules/StandaloneView.cc: Hopefully fix a crash
2004-06-01 Thomas Muldowney <[email protected]>
* src/GabberApp.cc: use the new discoDB signal.
* src/RegisterGateway.cc: Use a ref instead of a copy
2004-05-30 Julian Missig <[email protected]>
* src/FileTransferManager.cc: note for temas
* src/StatusIcon.cc: re-enable message notification
2004-05-29 Julian Missig <[email protected]>
* src/GabberWidgets.cc: PrettyURI widget
* src/GabberWidgets.hh: same
* src/modules/StandaloneView.cc: use PrettyURI
2004-05-29 Julian Missig <[email protected]>
* src/GabberUtility.cc: openuri function moved here
* src/GabberUtility.hh: same
* src/RegisterGateway.cc: small fix (?)
* src/TextParser.cc: use Util::'s openuri
* src/fwd.h: add Gtk::Table
* src/modules/StandaloneView.cc: first-try x:oob support
* src/modules/StandaloneView.hh: same
* src/modules/StandaloneViewManager.hh: same
* ui/StandaloneMsgRecv_dlg.glade: same
2004-05-29 Julian Missig <[email protected]>
* src/AddContactDlg.cc: Correctly handle gateway registration
* src/GabberApp.cc: count jabber:iq:register as an "agent"
* src/RegisterGateway.cc: same
* src/RegisterGateway.hh: same
2004-05-28 Julian Missig <[email protected]>
* src/RegisterGateway.cc: fix kenny's fix
2004-05-28 Kenny Graunke <[email protected]>
* src/RegisterGateway.cc: fix compilation error...
2004-05-28 Julian Missig <[email protected]>
* src/ContactInfo.cc: Added group chat capabilities
* src/RegisterGateway.cc: basic registration! kinda!
* src/RegisterGateway.hh: same
* src/fwd.h: same
* ui/RegisterGateway_dlg.glade: same
2004-05-27 Julian Missig <[email protected]>
* src/AddContactDlg.cc: Fixed a crash when closing the dialog
* src/AddContactDlg.hh: same
* src/ContactInfo.cc: "Transfer" not "Trasnfer"!
* src/RegisterGateway.cc: Fixed a potential crash related to above
* src/RegisterGateway.hh: same
2004-05-25 Julian Missig <[email protected]>
* ui/GChat_win.glade: slightly fixed window
2004-05-22 Julian Missig <[email protected]>
* src/ContactInfo.cc: Display some basic client capabilities
* src/ContactInfo.hh: same
* src/GabberApp.cc: report more of our supported disco features
* ui/ViewInfo_dlg.glade: Display some basic client capabilities
2004-05-22 Julian Missig <[email protected]>
* gabber.schemas.in: Added values for contact list window size, pos
* src/AddContactDlg.cc: Working on register gateway
* src/AddContactDlg.hh: same
* src/ConfigPaths.hh: contact list window size, pos
* src/GabberApp.cc: Disco stuff for register gateway
* src/GabberWin.cc: contact list window size, pos saving
* src/JabberConnection.cc: disco stuff for register gateway
* src/JabberConnection.hh: same
* src/Makefile.am: added register gateway
* src/RegisterGateway.cc: beginnings of a register gateway dialog
* src/RegisterGateway.hh: same
* ui/Makefile.am: same
* ui/RegisterGateway_dlg.glade: same
2004-05-18 Thomas Muldowney <[email protected]>
* src/PubSubNode.cc: Beginning of the impl for pubsub nodes
* src/PubSubNode.hh: same
* src/AvatarManager.cc: Start of the avatar manager, pending some pubsub
issues.
* src/AvatarManager.hh: same
* src/osx: The OSX platform.
* acinclude.m4: same
* src/main.cc: Use the startup and shutdown as defined by the platform
2004-05-10 Thomas Muldowney <[email protected]>
* src/GabberApp.cc: Cleanup the handling of shutdowns
* src/RosterModel.cc: Correctly clear the node map, return after adding and
removing a node.
* src/RosterController.cc: Fixes for the fading handling.
2004-05-04 Thomas Muldowney <[email protected]>
* src/RosterModel.[cc|hh]: New design with a generic roster model class
* src/RosterController.[cc|hh]: same
2004-05-03 Kenny Graunke <[email protected]>
* src/RosterModel.hh: include jabberoo/JID.hh, not jid.hh
2004-04-22 Julian Missig <[email protected]>
* acinclude.m4: Silly temas. He didn't even include a ChangeLog entry
2004-02-27 Julian Missig <[email protected]>
* src/GabberApp.cc: Clear the list of gateways/agents on disconnect
* src/GabberApp.hh: same
2004-02-19 Thomas Muldowney <[email protected]>
* src/PlainTextView.cc: /me commands need to be faded.
2004-02-12 Thomas Muldowney <[email protected]>
* src/RosterModel.cc: Only update the rows after we've fixed up the model
* ui/GChat_win.glade: Don't force the position of the user sidebar, seems
to potentially cause a Gtk lockup, and looks weird.
2004-02-04 Kenny Graunke <[email protected]>
* ui/Gabber_win.glade: Ctrl+Q = Quit
2004-02-04 Thomas Muldowney <[email protected]>
* src/RosterModel.cc: WIP fixes for disabling group view
2004-02-03 Julian Missig <[email protected]>
* ui/OOOChat_win.glade: Moved status to the top of chatview
2004-02-03 Julian Missig <[email protected]>
* src/modules/ChatView.cc: Disable text input on disconnect
* src/modules/ChatView.hh: same
2004-02-01 Thomas Muldowney <[email protected]>
* src/LogManager.cc: Make sure we properly rebuild the log path
after rotating.
* src/LogManager.hh: same
2004-01-31 Thomas Muldowney <[email protected]>
* src/ConfigPaths.hh: Last rotation times and moved logs. Julian
add these to the default schemas.
* src/GabberApp.cc: Little bit of reodering
* src/GabberApp.hh: same
* src/GabberUtility.cc: timestamp building and parsing. Will
probably encapsulate this in a class later.
* src/GabberUtility.hh: same
* src/LogManager.cc: Move old logs into new dirs, log to the month dir
* src/LogManager.hh: same
* src/LogViewer.cc: Understand month dirs.
* src/LogViewer.hh: same
* src/PlainTextView.cc: Smarter timestamping, clearing, fun stuff
* src/PlainTextView.hh: same
* src/PrettyText.hh: same
* src/XPathLog.cc: We have to stamp here sometimes because jabberoo
sucks a bit. It'd be too hard to fix jabberoo right now.
* src/modules/ChatView.cc: Load previously 10 seen msgs.
* ui/LogViewer_win.glade: Month selector, tiny bit of padding.
2004-01-29 Julian Missig <[email protected]>
* ui/FTSend_dlg.glade: Slight UI fix
* ui/GChat_win.glade: Slight UI fix
2004-01-29 Julian Missig <[email protected]>
* NEWS: Patch from Luke Renn <[email protected]> to fix gcjoin dlg cancellation
* src/modules/GCJoinDlg.cc: same
* src/modules/GCJoinDlg.hh: same
* src/modules/GCViewManager.cc: same
* src/modules/GCViewManager.hh: same
2004-01-26 Julian Missig <[email protected]>
* src/FileTransferSendDlg.cc: Select resource for file transfer
* src/FileTransferSendDlg.hh: same
* src/ResourceManager.hh: #include <map>
* ui/FTTransfer_dlg.glade: Centered label = bad
* ui/LogViewer_win.glade: Set default size
2004-01-25 Thomas Muldowney <[email protected]>
* src/PlainTextView.cc: All timestamping is controlled here now
* src/PlainTextView.hh: timestamp vars and functions
* src/PrettyText.hh: same
* src/modules/ChatView.cc: Removed timestamping control
* src/modules/ChatView.hh: same
2004-01-23 Thomas Muldowney <[email protected]>
* src/PlainTextView.cc: remove_timestamp function, kind of broken
* src/PlainTextView.hh: same
* src/PrettyText.hh: same
* src/RosterModel.cc: Unselect the JID if it goes offline
* src/modules/ChatView.cc: smarter timestamps
* src/modules/ChatView.hh: same
2004-01-23 Julian Missig <[email protected]>
* ui/GChat_win.glade: Auto-resize input here too
* ui/MyInfo_dlg.glade: Lots of text view entry spacing/sizing changes
* ui/OOOChat_win.glade: same
* ui/StandaloneMsgRecv_dlg.glade: same
* ui/StandaloneMsgSend_dlg.glade: same
* ui/ViewInfo_dlg.glade: same
2004-01-23 Julian Missig <[email protected]>
* configure.in: upped
* src/modules/ChatView.cc: Add a "*" to the window title when messages are unviewed
* src/modules/ChatView.hh: same
2004-01-23 Thomas Muldowney <[email protected]>
* src/modules/ChatView.cc: Remove the pango extents madness
* src/modules/ChatView.hh: same
* ui/OOOChat_win.glade: Learned a bit from gossip and removed the glade
height settings so we auto resize the text entry area. No more vpane.
2004-01-23 Thomas Muldowney <[email protected]>
* src/PlainTextView.cc: Better behaved when resizing the window.
* src/PlainTextView.hh: same
2004-01-22 Julian Missig <[email protected]>
* NEWS: 1.9.3
* configure.in: 1.9.3
2004-01-22 Thomas Muldowney <[email protected]>
* src/ContactInfo.cc: Use the new jid-equals xpath function
* src/GabberUtility.hh: Moved the utility functions into here
* src/RosterModel.hh: use the JID comparison
* src/modules/ChatView.cc: Use the new jid-equals xpath function
* src/modules/ChatViewManager.hh: use the JID comparison
2004-01-22 Thomas Muldowney <[email protected]>
* src/RosterView.cc: Ensure we pull up the correct jid for right clicks
* src/RosterView.hh: Remove all the now unused variables
* src/StatusIcon.cc: Fixed cleanup, make sure we only show the first icon
* src/StatusIcon.hh: same
2004-01-21 Julian Missig <[email protected]>
* src/PrefsInterface.cc: Set connection settings dialog title properly
2004-01-21 Julian Missig <[email protected]>
* src/GabberWidgets.cc: Add : only when necessary
* src/PacketQueue.hh: empty()
* src/StatusIcon.cc: Message Queue tray
* src/StatusIcon.hh: Message Queue tray
2004-01-20 Thomas Muldowney <[email protected]>
* src/GabberWin.cc: Default to the proper hiding mode
* src/RosterModel.cc: Fixes for when hide offline is off at start, roster
icons now fade in with the text. Offline users are now lighter than
online users when hide offline is off.
* src/RosterModel.hh: same
* src/RosterView.cc: Base color is what we want rather than bg.
2004-01-16 Thomas Muldowney <[email protected]>
* src/GabberApp.cc: Roster properly maintains itself now
* src/GabberWin.cc: clear the roster on disconnects
* src/GabberWin.hh: clear_roster was stupid, gone
* src/PrefsInterface.cc: Put the manage back in, it's needed
* src/RosterModel.cc: Properly handle disconnections and clears
* src/RosterView.cc: removed stupid debug that's been in there forever
* src/modules/ChatView.cc: Fix a potential crash, and make sure the
presence query is always correct.
2004-01-16 Thomas Muldowney <[email protected]>
* src/LogManager.cc: Method to get a logs location
* src/LogManager.hh: same
* src/LogViewer.cc: First pass logviewer.
* src/LogViewer.hh: same
* src/Makefile.am: Build the log viewer
* src/Menus.cc: Don't unref the xml object. Causes stuff to go away before
it should
* src/PrefsInterface.cc: Only manage when we have a true parent.
* src/RosterView.cc: Remove some debug, hookup the log viewer
* src/RosterView.hh: read log menu callback
* src/modules/ChatView.cc: Fixes for outgoing logs
* ui/LogViewer_win.glade: Basic logviewer UI. I'm sure it'll change.
* ui/Makefile.am: Install the UI
2004-01-13 Thomas Muldowney <[email protected]>
* src/GabberApp.cc: Use the queue flushing event to show s10n requests
* src/GabberApp.hh: same
* src/PacketQueue.cc: queue flushing event, reworked how pops work
* src/PacketQueue.hh: same
* src/PacketQueueView.cc: Internal tracking of number of visible rows
* src/PacketQueueView.hh: same
* src/RosterModel.cc: Removed extraneous debug info
* src/modules/ChatViewManager.cc: Use the queue flushing
* src/modules/ChatViewManager.hh: same
* src/modules/StandaloneViewManager.cc: same
* src/modules/StandaloneViewManager.hh: same
2004-01-09 Thomas Muldowney <[email protected]>
* src/PacketQueueView.cc: Properly handle the queue changed event so we
show the first icon only.
* src/RosterModel.cc: same
* src/RosterModel.hh: same
2004-01-09 Julian Missig <[email protected]>
* pixmaps/Makefile.am: queuing for s10n and standalone
* src/GabberApp.cc: same
* src/RosterModel.cc: same
* src/modules/ChatViewManager.cc: same
* src/modules/StandaloneView.cc: same
* src/modules/StandaloneView.hh: same
* src/modules/StandaloneViewManager.cc: same
2004-01-08 Thomas Muldowney <[email protected]>
* src/GabberWin.cc: clear the packet view when we log out
* src/PacketQueue.cc: fixed removing entries from the ordered queue
* src/PacketQueueView.cc: clear functionality, hooked to change event
* src/PacketQueueView.hh: same
* src/RosterModel.cc: hooked up to the changed event and handle icons from
the queue
* src/RosterModel.hh: same
* src/modules/ChatView.cc: properly iterate the queue
2004-01-08 Julian Missig <[email protected]>
* src/GabberApp.cc: Fix issue with password dialog
* src/JabberConnection.cc: same
2004-01-08 Julian Missig <[email protected]>
* src/ContactInfo.cc: only display "Update" button after vCard is downloaded
2004-01-08 Julian Missig <[email protected]>
* src/GabberWin.cc: open messages on set_back
* src/PacketQueue.hh: change comments slightly (for docs)
2004-01-08 Thomas Muldowney <[email protected]>
* src/PacketQueue.cc: New iterator interface, maintains overall order,
event for when the ordered queue changes, queued items get an icon
* src/PacketQueue.hh: same
* src/PacketQueueView.cc: Update to new interfaces
* src/PacketQueueView.hh: same
* src/RosterModel.cc: same
* src/RosterModel.hh: same
* src/modules/ChatView.cc: same
* src/modules/ChatViewManager.cc: same
2004-01-07 Julian Missig <[email protected]>
* gabber.schemas.in: Hide Offline key
* src/ConfigPaths.hh: same
* src/GabberApp.cc: autoconnect
* src/GabberApp.hh: same
* src/GabberWin.cc: clear_roster
* src/GabberWin.hh: same
2004-01-07 Julian Missig <[email protected]>
* src/GabberWin.cc: Implement the autodisplay preference
* src/JabberConnection.cc: get_my_presence()
* src/JabberConnection.hh: same
* src/modules/ChatViewManager.cc: Implement the autodisplay preference
2004-01-07 Thomas Muldowney <[email protected]>
* src/PacketQueue.cc: Stupid me, element has an empty() call
* src/RosterModel.cc: Use the default theme colors
* src/RosterModel.hh: same
* src/RosterView.cc: same
2004-01-07 Julian Missig <[email protected]>
* configure.in: Upped version, added flag for gtkspell
* gabber.schemas.in: added keys for spellcheck pref and queue pref
* src/ConfigPaths.hh: same
* src/GabberWin.cc: clear roster on disconnect, not only on logout
* src/Makefile.am: conditionally compile gtkspell
* src/PacketQueueView.cc: Make it Pretty!
* src/PrefsInterface.cc: preferences for spelling and queuing
* src/PrefsInterface.hh: same
* src/modules/ChatView.cc: conditional gtkspell
* src/modules/GCView.cc: same
* src/modules/StandaloneSendDlg.cc: same
* ui/Gabber_win.glade: enable Connection Settings dialog
* ui/Login_dlg.glade: same
* ui/Prefs_win.glade: preferences for spelling and queuing
2004-01-06 Thomas Muldowney <[email protected]>
* src/GabberWin.cc: Create the Packet Queue View "Incoming Messages"
* src/GabberWin.hh: same
* src/JabberConnection.cc: Load the current packet queue from disk
* src/Makefile.am: Build the PQV
* src/PacketQueue.cc: Reworked much of the internal order of events
* src/RosterModel.cc: Actually process the roster after we're connected.
Better interaction with the queue. Make sure we have the roster item
before processing it. Other small fixes.
* src/fwd.h: New classes defined
* src/modules/ChatView.cc: Pull out all our msgs from the queue
* src/modules/ChatViewManager.cc: Use the packet queue
* ui/Gabber_win.glade: Add the "Incoming Messages" view
2004-01-06 Julian Missig <[email protected]>
* src/ContactInfo.cc: URL parsing in Contact Info About message
* src/modules/RawInputDlg.cc: server label
2004-01-05 Julian Missig <[email protected]>
* configure.in: Upped version
* src/ContactInfo.cc: Edit My Information
* src/ContactInfo.hh: same
* src/GabberWin.cc: same
* ui/Gabber_win.glade: same
* ui/Makefile.am: same
* ui/MyInfo_dlg.glade: same
* ui/Roster_Action_menu.glade: No more Add Group
2004-01-05 Thomas Muldowney <[email protected]>
* src/RosterModel.cc: Roster updates properly on presence changes.
2004-01-05 Julian Missig <[email protected]>
* src/TextParser.cc: URLs -> purple after clicked
* src/TextParser.hh: same
2004-01-04 Julian Missig <[email protected]>
* README: Talk about Raw XML Input
* src/modules/GCView.cc: Don't display private messages
* src/modules/Makefile.am: Raw XML Input
* src/modules/RawInputDlg.cc: same
* src/modules/RawInputDlg.hh: same
* src/modules/RawViewManager.cc: same
* src/modules/RawViewManager.hh: same
* ui/Makefile.am: same
* ui/RawInput_dlg.glade: same
2004-01-02 Julian Missig <[email protected]>
* gabber.desktop.in: Fixed Gabber menu entry. Thanks Goedson.
2004-01-02 Julian Missig <[email protected]>
* src/S10nRequestDlg.cc: Fix a crash. Sorry Ralph
2004-01-01 Julian Missig <[email protected]>
* src/Menus.cc: Fixed a bug viewing info for agents
2003-12-31 Kenny Graunke <[email protected]>
* src/GabberWidgets.cc: it's _jid not jid, julian :D
* src/modules/GCView.cc: set window title
2004-01-01 Julian Missig <[email protected]>
* src/GabberWin.cc: Display online/offline messages more sanely
2003-12-31 Kenny Graunke <[email protected]>
* src/modules/GCView.cc: No PrettyJID for you
* src/modules/GCView.hh: same
* ui/GChat_win.glade: same
2003-12-31 Julian Missig <[email protected]>
* NEWS: 1.9.2
* configure.in: same
* src/GabberWidgets.cc: same
* src/RosterView.cc: same
* src/modules/ChatView.cc: same
* src/modules/ChatViewManager.cc: same
2003-12-31 Julian Missig <[email protected]>
* src/GabberWin.cc: Patch for About dialog from Goedson Teixeira Paixao <[email protected]>
2003-12-31 Julian Missig <[email protected]>
* src/Makefile.am: Moved the URI/Smiley parser into its own class
* src/PlainTextView.cc: same
* src/PlainTextView.hh: same
* src/modules/StandaloneView.cc: same
* src/modules/StandaloneView.hh: same
2003-12-31 Julian Missig <[email protected]>
* configure.in: Upped version
* src/PlainTextView.cc: URL parsing. You heard me right
* src/PlainTextView.hh: same
* ui/Makefile.am: Mock-up for a dialog we'll use later
* ui/Resources_dlg.glade: same
2003-12-30 Thomas Muldowney <[email protected]>
* src/GabberWin.cc: clear the roster before the underlying data is gone
* src/JabberConnection.cc: queue is explicitly used now
* src/JabberConnection.hh: access to the queue
* src/PacketQueue.cc: The packet queue in all its regal glory, bow down
* src/PacketQueue.hh: Same, plus docu, go me
* src/RosterModel.cc: Basic interaction with the queue
* src/RosterModel.hh: Some more info items related to the queue
* src/RosterView.cc: Pop queue packets if they are waiting.
* src/modules/ChatViewManager.cc: Use the queue as a demonstration
2003-12-17 Thomas Muldowney <[email protected]>
* src/FileTransferDlg.cc: Hide the details expander until started.
* src/JabberConnection.cc: Create and delete the PacketQueue
* src/JabberConnection.hh: same
* ui/FTTransfer_dlg.glade: Default the details expander to not visible.
2003-12-15 Julian Missig <[email protected]>
* src/PrettyText.hh: include changes. Compiles on FreeBSD.
* src/RosterModel.hh: same
* src/S5B.cc: same
* src/modules/ChatView.hh: same
2003-12-15 Thomas Muldowney <[email protected]>
* src/S5B.[cc|hh]: proxy support
* src/TCPTransmitter.cc: When using a proxy, don't say we're connected
until the proxy handshaking has completed.
2003-12-15 Julian Missig <[email protected]>
* src/AgentsWindow.cc: No more agents window
* src/AgentsWindow.hh: same
* src/GabberWin.cc: same
* src/GabberWin.hh: same
* src/Makefile.am: same
* src/PlainTextView.cc: same
* src/RosterView.cc: same
* ui/Agents_win.glade: same
* ui/Makefile.am: same
* ui/Roster_Action_menu.glade: same
2003-12-14 Thomas Muldowney <[email protected]>
* src/FileTransferDlg.cc: Only show the progress bar when we're actually
transferring.
* src/FileTransferManager.[cc|hh]: Proxy support.
* src/FileTransferSendDlg.[cc|hh]: Proxy support.
* src/S5B.[cc|hh]: Ability to add more streamhosts.
2003-12-13 Julian Missig <[email protected]>
* NEWS: basic spell-checking support via gtkspell
* configure.in: same
* src/GabberWidgets.cc: same
* src/Makefile.am: same
* src/modules/ChatView.cc: same
* src/modules/GCView.cc: same
* src/modules/StandaloneSendDlg.cc: same
2003-12-13 Julian Missig <[email protected]>
* src/modules/ChatViewManager.cc: present chat windows if already open
2003-12-13 Julian Missig <[email protected]>
* src/GabberWidgets.cc: PrettyJID now has a right-click menu!
* src/GabberWidgets.hh: same
* src/Menus.cc: same
* src/Menus.hh: same
* src/RosterView.cc: same
* src/RosterView.hh: same
* src/modules/ChatViewManager.cc: same
2003-12-12 Julian Missig <[email protected]>
* src/GroupsEditor.cc: remove Unfiled group
* src/modules/GCJoinDlg.cc: new group chat join dialog
* src/modules/GCJoinDlg.hh: same
* ui/GCJoin_dlg.glade: same
2003-12-12 Thomas Muldowney <[email protected]>
* src/RosterModel.hh: If nicknames will potentially collide, fallback to
sorting by jid.
* src/RosterModel.cc: Few cleanups, remove debug.
2003-12-12 Julian Missig <[email protected]>
* src/modules/GCView.cc: Fixed groupchat. dunno how that broke
2003-12-11 Thomas Muldowney <[email protected]>
* src/RosterModel.cc: Don't return in get_iter if it's actually invalid.
2003-12-09 Julian Missig <[email protected]>
* src/S10nRequestDlg.cc: Don't assume we accepted if we didn't reject.
2003-12-01 Julian Missig <[email protected]>
* configure.in: upped version
* src/ContactInfo.cc: size group... please work? no? ok, fine.
* src/GroupsEditor.cc: Basic group editing like Gabber 1
* src/GroupsEditor.hh: same
* src/Makefile.am: same
* src/RosterView.cc: same
* src/RosterView.hh: same
* ui/EditGroups_dlg.glade: same
* ui/Makefile.am: same
* ui/Roster_menu_user.glade: same
2003-11-24 Julian Missig <[email protected]>
* src/AddContactDlg.cc: Add roster items properly
* src/S10nRequestDlg.cc: same
2003-11-21 Julian Missig <[email protected]>
* gabber.schemas.in: Save group chat join nick
* src/ConfigPaths.hh: same
* src/modules/GCJoinDlg.cc: same
* src/modules/GCJoinDlg.hh: same
* ui/Roster_menu_user.glade: Change order of items in rt-click menu
2003-11-17 Thomas Muldowney <[email protected]>
* src/GabberApp.cc: init _winMain to NULL so we can check it clearly
2003-11-17 Julian Missig <[email protected]>
* gabber.schemas.in: Place connect options under account
2003-11-15 Julian Missig <[email protected]>
* configure.in: Fix check for GLIB_MUTEX
2003-10-29 Thomas Muldowney <[email protected]>
* gabber.schemas.in: Added the closed groups key
* src/ConfigPaths.hh: same
* src/Configurator.hh: const list
* src/GabberApp.cc: actually clean up before killing the signal loop
* src/GabberWin.cc: Don't immediately close the window
* src/RosterModel.cc: debug for a possible bug scenario
* src/RosterView.cc: Remember collapsed groups
* src/RosterView.hh: same
* src/main.cc: properly destroy everything
* src/linux/GConfConfigurator.cc: Fixes for saving string lists, constness
* src/linux/GConfConfigurator.hh: same
2003-10-26 Julian Missig <[email protected]>
* src/Makefile.am: Cleaning up temas's mess
* src/linux/Makefile.am: same
* src/win32/Makefile.am: same
* ui/FTSend_dlg.glade: no gnome
* ui/FTTransfer_dlg.glade: same
* ui/GCJoin_dlg.glade: same
* ui/OOOChat_win.glade: same
* ui/Prefs_win.glade: same
* ui/Roster_Action_menu.glade: same
* ui/Roster_menu_user.glade: same
* ui/S10nRequest_dlg.glade: same
* ui/StandaloneMsgSend_dlg.glade: same
* ui/ViewInfo_dlg.glade: same
2003-10-22 Thomas Muldowney <[email protected]>
* configure.in: Respect passed in flags.
* src/FileTransferDlg.cc: Cleanups and fixes
* src/FileTransferDlg.hh: same
* src/FileTransferManager.cc: same
* src/FileTransferManager.hh: same
* src/TCPTransmitter.cc: Too much debug
2003-10-17 Julian Missig <[email protected]>
* src/AddContactDlg.cc: Yummy yummy gateway support
* src/AddContactDlg.hh: same
* ui/AddContact_dlg.glade: same
* ui/Gabber_win.glade: same
2003-10-01 Thomas Muldowney <[email protected]>
* src/GabberApp.cc: use the passed in password
* src/JabberConnection.hh: same
* src/PrefsInterface.cc: store password works properly
2003-09-17 Thomas Muldowney <[email protected]>