This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2918 lines (1957 loc) · 92.7 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
2003-01-02 gettextize <[email protected]>
* configure.in (AC_OUTPUT): Add intl/Makefile.
2003-01-02 gettextize <[email protected]>
* Makefile.am (SUBDIRS): Remove intl.
2003-01-02 gettextize <[email protected]>
* Makefile.am (SUBDIRS): Remove intl.
* configure.in (AC_OUTPUT): Remove intl/Makefile.
2003-01-02 gettextize <[email protected]>
* Makefile.am (SUBDIRS): Add intl.
* configure.in (AC_OUTPUT): Add intl/Makefile.
2003-01-02 gettextize <[email protected]>
* Makefile.am (SUBDIRS): Remove intl.
2003-01-02 gettextize <[email protected]>
* Makefile.am (SUBDIRS): Remove intl.
* configure.in (AC_OUTPUT): Remove intl/Makefile.
2003-01-02 gettextize <[email protected]>
* Makefile.am (SUBDIRS): Add intl.
* configure.in (AC_OUTPUT): Add intl/Makefile.
2003-01-02 gettextize <[email protected]>
* Makefile.am (SUBDIRS): Add m4.
(ACLOCAL_AMFLAGS): New variable.
(EXTRA_DIST): Add config.rpath.
* configure.in (AC_OUTPUT): Add po/Makefile.in,
(AM_GNU_GETTEXT_VERSION): Bump to 0.11.5.
2002-07-20 03:41 bugcreator
* ickle/IckleApplet.cpp: Work around some evil #defines in the
gnome headers which caused problems elsewhere. Yes, in theory the
order of the #includes shouldn't matter, but unfortunately this is
practice... :/
2002-07-14 16:39 barnabygray
* ickle/EventSubstituter.cpp: More gcc 3.xx fixes.. thanks
Christian for picking these up
2002-07-14 13:57 barnabygray
* ickle/EventSubstituter.cpp: Fix for g++ 3.xx
2002-07-11 23:06 barnabygray
* ickle/ResendDialog.cpp: namespace fix
2002-07-10 20:28 bugcreator
* control/: CommandLineParser.cpp, CommandLineParser.h,
IckleControl.cpp: Okay, I'm finally convinced that deriving from
STL containers is a bad idea (Although it wasn't really a problem
in this case)
2002-07-06 13:16 barnabygray
* scripts/gnomeicu2ickle.pl: Updated gnomeicu conversion scripts
(thanks Leo)
2002-07-03 21:18 bugcreator
* control/: CommandLineParser.cpp, IckleControl.cpp: Minor fixes
2002-07-03 02:06 bugcreator
* ickle/MessageBox.cpp: A small nasty fix to avoid resizing of
controls (and messing up the position of the history scrollbar)
after the window has been shown
2002-07-03 01:58 bugcreator
* ctrlsocket/ControlCommands.h, control/CommandLineParser.cpp,
control/CommandLineParser.h, control/IckleControl.cpp,
control/IckleControl.h, ickle/ControlHandler.cpp,
ickle/ControlHandler.h: Added an option to ickle_control to let it
change any configuration setting
2002-06-25 19:08 barnabygray
* THANKS, ickle/IckleClient.cpp, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/StatusMenu.cpp, ickle/StatusMenu.h: Nils
Björklund <[email protected]> - 'connecting...' status
message
2002-06-20 15:37 barnabygray
* Makefile.am, configure.in, pixmaps/Makefile.am: DIST stuff for
new pixmaps
2002-06-20 15:07 barnabygray
* configure.in: Fix so libtoolize will actually be run.
2002-06-16 01:01 barnabygray
* ickle/MessageBox.cpp, ickle/MessageBox.h, pixmaps/delivery.xpm,
pixmaps/info.xpm: Couple of little icons for message box. Toggling
of visibility delivery status part.
2002-06-15 14:44 barnabygray
* THANKS, ickle/MessageBox.cpp, ickle/MessageBox.h: Nils Bj|rklund
<[email protected]> - workaround for gtk+ table bug in
message box
2002-06-08 14:51 barnabygray
* ickle/: History.cpp, IckleClient.cpp, IckleGUI.cpp, Icons.cpp,
MessageBox.cpp, MessageEvent.cpp, MessageEvent.h: Support for Web
Pager messages (sync with library req.)
2002-06-08 12:58 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h, SettingsDialog.cpp,
main.cpp: Fix duplicate instance check which was *ehum* majorly
borked.
2002-06-04 23:32 barnabygray
* ickle/MessageBox.cpp: Uhem, ignore that last commit :-)
2002-06-04 21:40 barnabygray
* ickle/MessageBox.cpp: Can't be arsed to revise for finals atm.
2002-06-01 22:03 barnabygray
* ickle/AwayMessageDialog.cpp: Small away message fix.
2002-05-21 21:52 barnabygray
* THANKS, ickle/IckleClient.cpp, ickle/IdleTimer.cpp,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h: Vladimir Klebanov
<[email protected]> - option to keep the automatically set
away status when returning from idle state.
2002-05-11 13:29 barnabygray
* ickle/: IckleGUI.cpp, Makefile.am, ResendDialog.cpp,
ResendDialog.h: Resend dialog, so messages don't have to be retyped
when they need to be redelivered.
2002-05-07 18:48 barnabygray
* ctrlsocket/: ControlSocket.cpp, ControlSocket.h: Tweaked header
includes, couple of code cleanups
2002-05-06 01:15 barnabygray
* FAQ, ickle/IckleClient.cpp, ickle/IckleClient.h: Retry with same
status
2002-04-30 01:02 barnabygray
* configure.in: By default compile without -g flag, as discussed on
mailing list
2002-04-29 00:38 barnabygray
* ickle/ContactListView.cpp: Keyseeking fix - ignore keypresses
only if Ctrl/Alt are pressed, also allow seeking by number too (for
weird people)
2002-04-28 23:37 barnabygray
* Makefile.am, debian/README, debian/changelog, debian/control,
debian/copyright, debian/ickle-common.README.Debian,
debian/ickle-common.docs, debian/ickle-common.files,
debian/ickle-control.dirs, debian/ickle-control.files,
debian/ickle-control.links, debian/ickle-control.manpages,
debian/ickle-gnome.dirs, debian/ickle-gnome.files,
debian/ickle-gnome.links, debian/ickle-gnome.manpages,
debian/ickle-gnome.menu, debian/ickle.dirs, debian/ickle.files,
debian/ickle.links, debian/ickle.manpages, debian/ickle.menu,
debian/rules: Removed debian related stuff
2002-04-27 19:50 barnabygray
* autogen.sh: Pick up alternate forms of libtool macro
2002-04-27 11:22 bugcreator
* ickle/IckleGUI.cpp: This works more reliably. hopefully... I hate
Sawfish...
2002-04-26 17:01 barnabygray
* configure.in: Increment version number.
2002-04-26 17:00 barnabygray
* ChangeLog, NEWS, README: Stuff what need to be done for 0.3.1
2002-04-26 14:10 barnabygray
* ickle/IckleClient.cpp: Oops.. that'll teach me to blindly cut and
paste
2002-04-25 21:31 barnabygray
* ickle/MessageBox.cpp: No need for this now then.
2002-04-25 21:09 bugcreator
* ickle/MessageBox.cpp: - Make sure we really scroll down to the
end of the history initially (scroll *after* the pane position
has been set!) - Call show_all() in c'tor (fixing the display
errors with the blueHeart theme)
2002-04-25 20:36 barnabygray
* ickle/IckleClient.cpp: Missed catching some exceptions on bad
history files
2002-04-25 17:21 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h: Fixes to remember mobile
history
2002-04-25 10:26 barnabygray
* ickle/MessageBox.cpp: Oops.. no even I can't get it right
2002-04-25 10:20 barnabygray
* ickle/MessageBox.cpp: History table size was incorrect -
surprisingly this didn't cause any particularly noticeable
problems!
2002-04-23 02:08 barnabygray
* ickle/IckleClient.cpp: Port binding should be set on startup -
thanks Tobias for pointing this out
2002-04-22 10:07 barnabygray
* ctrlsocket/ControlSocket.h: This header should have been
explicitly included. (fixes make error on FreeBSD)
2002-04-22 00:12 barnabygray
* ickle/MessageBox.cpp: Fix for when sent offline through server
(status wouldn't be updated properly)
2002-04-21 15:56 barnabygray
* ickle/: IckleClient.cpp, SettingsDialog.cpp, SettingsDialog.h:
Port binding ranges. For all you poor firewalled people out there.
2002-04-20 17:47 barnabygray
* ickle/IckleClient.cpp: Don't want to frighten users..
2002-04-20 16:06 barnabygray
* ickle/: EventSubstituter.cpp, EventSubstituter.h,
EventSystem.cpp, EventSystem.h, IckleClient.cpp, MessageBox.cpp,
MessageBox.h, SettingsDialog.cpp: Fixed %m pending messages
substitution to work again. Added %o substitution for when contact
went online.
2002-04-19 16:52 bugcreator
* ickle/MessageBox.cpp: Message box fix... If you moved the pane
separator too far up or down, it was hidden by other controls, and
there was no way to move it back (short of manually editing
ickle.conf)
2002-04-19 16:46 bugcreator
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h: Also remember
the window's size when hiding it. Sawfish sometimes (randomly?)
forgot it otherwise. (It's probably Sawfish's fault, but this
workaround shouldn't hurt... hopefully...)
2002-04-18 23:07 bugcreator
* ickle/: SettingsDialog.cpp, UserInfoDialog.cpp: Yet another
cosmetic operation
2002-04-18 23:00 bugcreator
* ickle/IckleApplet.cpp: Slightly more reasonable behaviour of the
applet menu with classic inivisibility.
2002-04-18 18:32 nordman
* ickle/IdleTimer.h: include Xlib.h as well.
2002-04-18 18:30 nordman
* ickle/IdleTimer.cpp: The code was getting to hairy, straighten it
out somewhat and document it proper.
2002-04-18 17:33 barnabygray
* ickle/: IdleTimer.cpp, SettingsDialog.cpp, SettingsDialog.h: Fix
for auto away/NA when only one is disabled.
2002-04-18 15:00 barnabygray
* ickle/IckleClient.cpp: Changed defaults to something more
sensible hopefully.
2002-04-17 23:17 barnabygray
* FAQ, Makefile.am, ickle/IckleGUI.cpp: Added FAQ to dist. oops.
Fixed title bar showing pending messages.
2002-04-17 12:49 barnabygray
* autogen.sh: Fix to use autoconf2.50 preferentially (mostly for my
debian system), otherwise it uses the out of date autoconf2.13
which doesn't play nicely with gcc 3.0.
2002-04-16 22:17 barnabygray
* AUTHORS, NEWS, README, TODO, configure.in: Final stuff for the
release
2002-04-16 22:05 barnabygray
* ickle/: ControlHandler.cpp, ControlHandler.h,
EventSubstituter.cpp, History.h, IckleClient.cpp, IckleClient.h:
gcc 3.0 fixes
2002-04-16 21:46 barnabygray
* ChangeLog: Changelog updated
2002-04-16 20:58 barnabygray
* ickle/WizardDialog.cpp: Tweak to Wizard
2002-04-16 20:41 barnabygray
* ickle/: AddUserDialog.cpp, SettingsDialog.cpp: Fetch userinfo on
connect. Go on.. I dare you.
2002-04-15 15:30 barnabygray
* Makefile.am, configure.in, share/icons/Makefile.am,
share/icons/kit/Makefile.am, share/icons/kit/away.xpm,
share/icons/kit/chat.xpm, share/icons/kit/dnd.xpm,
share/icons/kit/ffc.xpm, share/icons/kit/file.xpm,
share/icons/kit/invisible.xpm, share/icons/kit/message.xpm,
share/icons/kit/na.xpm, share/icons/kit/occ.xpm,
share/icons/kit/offline.xpm, share/icons/kit/online.xpm,
share/icons/kit/sms.xpm, share/icons/kit/sysmsg.xpm,
share/icons/kit/url.xpm: Kit icons set added, with improvements
from CB'ke. Thanks.
2002-04-15 15:29 barnabygray
* debian/: changelog, control: More fixed to debian stuff
2002-04-14 23:49 barnabygray
* ickle/: IckleGUI.cpp, IckleGUI.h: Woohoo.. finally put this bug
to rest. (segfaults on receiving Auth reqs, Added to list, etc..)
2002-04-14 21:21 barnabygray
* debian/: control, ickle-control.dirs, ickle-control.files,
ickle-control.links, ickle-control.manpages, ickle.files: Debian
packaging stuff
2002-04-14 21:17 barnabygray
* share/icons/Makefile.am: make dist fix
2002-04-14 20:09 barnabygray
* ickle/: IckleClient.cpp, UserInfoDialog.cpp, UserInfoDialog.h:
Added some time statistics (library update required)
2002-04-13 22:21 barnabygray
* ickle/MessageEvent.h: This might have caused problems.
2002-04-11 12:14 barnabygray
* ickle/SearchDialog.cpp: Oops, should be plural :-)
2002-04-11 12:09 barnabygray
* ickle/: SearchDialog.cpp, SearchDialog.h: One last feature before
0.3: Whitepage keyword searching
2002-04-11 12:08 barnabygray
* share/icons/: doors/sysmsg.xpm, eureka/sysmsg.xpm,
gnomeicu/sysmsg.xpm, ickle/sysmsg.xpm, icq/sysmsg.xpm,
new/sysmsg.xpm: hohum, I knew I'd end up having to design them
2002-04-10 20:57 barnabygray
* ickle/Icons.cpp, ickle/Icons.h, share/icons/doors/Makefile.am,
share/icons/eureka/Makefile.am, share/icons/gnomeicu/Makefile.am,
share/icons/ickle/Makefile.am, share/icons/icq/Makefile.am,
share/icons/new/Makefile.am, share/icons/icons.conf: System icons
code. Oh, still need some icons.
2002-04-10 17:51 barnabygray
* configure.in, control/Makefile.am, control/ickle_control.1,
debian/ickle.files: All admin changes. A manpage for ickle_control
2002-04-10 14:27 barnabygray
* ickle/: SettingsDialog.cpp, SettingsDialog.h: More tidying/fixing
to Settings Dialog
2002-04-09 00:20 barnabygray
* FAQ: We have an FAQ now! Woohoo. Needs a few more Q/As tho.
2002-04-08 00:28 barnabygray
* ickle/MessageBox.cpp: Express delivery status more expressively
2002-04-07 16:03 bugcreator
* ickle/: IckleClient.cpp, IckleGUI.cpp, MessageBox.cpp,
SettingsDialog.cpp, SettingsDialog.h: Added option to disable
window icons
2002-04-07 12:50 barnabygray
* ickle/: IckleClient.cpp, MessageBox.cpp, MessageBox.h: Couple of
keybindings for history scrolling
2002-04-05 16:29 bugcreator
* ickle/UserInfoDialog.cpp: [no log message]
2002-04-05 16:27 bugcreator
* ickle/: ContactListView.cpp, ContactListView.h: Disable popup
menu items which are not available
2002-04-05 01:09 bugcreator
* ickle/PromptDialog.cpp: a single missing letter can mess up a
whole dialog...
2002-04-05 00:47 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h: Actually, a
prompt would be nicer (and required for those that don't run from
command-line).
2002-04-05 00:21 barnabygray
* ickle/IckleClient.cpp: Improve lock file behaviour a bit
2002-04-04 22:45 bugcreator
* ickle/: EventSystem.cpp, SettingsDialog.cpp, SettingsDialog.h:
added system event to event system (uhm, well...)
2002-04-04 21:08 bugcreator
* ickle/: AboutDialog.cpp, AddUserDialog.cpp, AuthRespDialog.cpp,
IckleGUI.cpp, PromptDialog.cpp, SearchDialog.cpp,
SendAuthReqDialog.cpp, SetAutoResponseDialog.cpp,
SettingsDialog.cpp, UserInfoDialog.cpp: some dialog
beautifications. only aesthetic changes really :)
2002-04-04 19:03 bugcreator
* AUTHORS, THANKS: you don't want me to put a detailed list of all
changes I made into the thanks file, do you? ;-)
2002-04-04 19:00 bugcreator
* ickle/WizardDialog.cpp: that window should be transient too...
2002-04-04 18:59 bugcreator
* ickle/: EventSubstituter.cpp, EventSubstituter.h,
EventSystem.cpp, EventSystem.h, IckleClient.cpp,
SettingsDialog.cpp, SettingsDialog.h: improved the event system by
adding an option to filter out events occuring more or less at the
same time
2002-04-04 11:40 bugcreator
* ickle/ContactListView.cpp: re-sort contact list if message queue
changes
2002-04-04 00:04 barnabygray
* ickle/: AboutDialog.cpp, AddUserDialog.cpp, AuthRespDialog.cpp,
PromptDialog.cpp, SendAuthReqDialog.cpp, UserInfoDialog.cpp:
Tidying up dialogs
2002-04-02 23:28 barnabygray
* ickle/: IckleClient.cpp, SettingsDialog.cpp, SettingsDialog.h: -
Added some tooltip explanations for settings - Added SMTP server
settings to Settings Dialog
2002-04-02 22:26 bugcreator
* ickle/EventSystem.cpp: this makes more sense really...
2002-04-02 22:11 bugcreator
* control/IckleControl.cpp, ickle/AboutDialog.cpp,
ickle/AboutDialog.h, ickle/AddUserDialog.cpp,
ickle/AddUserDialog.h, ickle/AuthRespDialog.cpp,
ickle/AuthRespDialog.h, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/ControlHandler.cpp,
ickle/ControlHandler.h, ickle/EventSystem.cpp, ickle/EventSystem.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/MessageBox.cpp, ickle/PromptDialog.cpp,
ickle/PromptDialog.h, ickle/SearchDialog.cpp, ickle/SearchDialog.h,
ickle/SendAuthReqDialog.cpp, ickle/SendAuthReqDialog.h,
ickle/SetAutoResponseDialog.cpp, ickle/SetAutoResponseDialog.h,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h,
ickle/WizardDialog.cpp: - made dialogs transient - fixed & improved
user online event - added a menu item to open the auto response
dialog, and made the auto-popup on status change configurable -
bugfix: don't set the main window's icon if the window is about to
be destroyed anyway (for some reason this used to crash my gnome
tasklist applet, and sometimes ickle as well) - other changes which
I have forgotten ;)
2002-04-01 15:26 bugcreator
* ctrlsocket/ControlSocket.h: And it should actually be implemented
as operator<< really ;-)
2002-04-01 14:20 barnabygray
* ctrlsocket/ControlSocket.h: operator<< should have been defined
explicitly really.
2002-04-01 14:18 barnabygray
* THANKS, control/IckleControl.cpp, control/IckleControl.h,
ctrlsocket/ControlCommands.h, ctrlsocket/ControlSocket.h,
ickle/ControlHandler.cpp: Patch for ickle_control to support sms
sending, from Plutonski. Thanks.
2002-04-01 12:25 barnabygray
* ickle/: History.cpp, History.h, IckleClient.cpp, IckleGUI.cpp,
MessageBox.cpp: - Sync with library - Urgent messages tagging
2002-04-01 01:46 barnabygray
* control/IckleControl.cpp, ickle/IckleClient.cpp,
ickle/IckleGUI.cpp: - Couple of small bugs caught - Tidying up
disconnection dialogs
2002-04-01 00:15 barnabygray
* ickle/: IckleGUI.cpp, SettingsDialog.cpp: Neatening up the
Settings Dialog a bit
2002-03-31 23:01 barnabygray
* ickle/: MessageBox.cpp, MessageQueue.h: Apparently these caused
compilation errors on some systems
2002-03-31 21:35 barnabygray
* ickle/: AddMobileUserDialog.cpp, AddMobileUserDialog.h,
AddUserDialog.cpp, AddUserDialog.h, IckleClient.cpp, IckleClient.h,
IckleGUI.cpp, IckleGUI.h, Makefile.am, MessageEvent.cpp,
MessageEvent.h, MobileNoEntry.cpp, MobileNoEntry.h: - Merged Add
Contact/Add Mobile Contact into one dialog - Tidied up Add Contact
dialog - Added Alerting Contact when adding - User Added messages
support
2002-03-31 21:26 barnabygray
* ickle/: AuthRespDialog.cpp, AuthRespDialog.h,
SendAuthReqDialog.cpp, SendAuthReqDialog.h: Added files for auth
stuff
2002-03-31 18:00 barnabygray
* ickle/: ContactListView.cpp, ContactListView.h, History.cpp,
IckleClient.cpp, IckleGUI.cpp, IckleGUI.h, Makefile.am,
MessageBox.cpp, MessageQueue.cpp, MessageQueue.h, PromptDialog.cpp:
Added GUI support for Auth requests/responses. Sync with library
required.
2002-03-30 23:09 nordman
* ickle/IckleClient.cpp: Remove unwanted debug cout.
2002-03-30 18:00 nordman
* ctrlsocket/ControlSocket.cpp: Add missing includes.
2002-03-30 14:48 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h, MessageQueue.cpp,
MessageQueue.h: Restore the applet to its former glory. Add
iterators to MessageQueue to assist with this.
2002-03-29 23:52 barnabygray
* ickle/IckleClient.cpp: Add contacts not on list messaging you to
list for now
2002-03-28 21:51 barnabygray
* ickle/: IckleApplet.cpp, IckleApplet.h, IckleClient.cpp: Fixed
Applet so it mostly works now
2002-03-28 19:33 barnabygray
* ickle/ControlHandler.cpp: Fix to ControlHandler
2002-03-28 18:29 barnabygray
* configure.in, ickle/AwayMessageDialog.cpp,
ickle/AwayMessageDialog.h, ickle/ContactListView.cpp,
ickle/ContactListView.h, ickle/ControlHandler.cpp,
ickle/ControlHandler.h, ickle/EventSubstituter.cpp,
ickle/EventSubstituter.h, ickle/EventSystem.cpp,
ickle/EventSystem.h, ickle/History.cpp, ickle/History.h,
ickle/IckleClient.cpp, ickle/IckleClient.h, ickle/IckleGUI.cpp,
ickle/IckleGUI.h, ickle/Icons.cpp, ickle/Icons.h,
ickle/Makefile.am, ickle/MessageBox.cpp, ickle/MessageBox.h,
ickle/MessageEvent.cpp, ickle/MessageEvent.h,
ickle/MessageQueue.cpp, ickle/MessageQueue.h,
ickle/PromptDialog.cpp, ickle/PromptDialog.h,
ickle/SearchDialog.cpp, ickle/SearchDialog.h,
ickle/UserInfoDialog.cpp, ickle/UserInfoDialog.h: Major changes to
sync with library. - Message queueing done in ickle now. - Start
of some general event wrappers to break away from libicq2000
dependance
2002-03-16 18:10 barnabygray
* ickle/ContactListView.cpp: ContactListView behaviour tweaks
2002-03-12 21:39 barnabygray
* THANKS, ickle/IckleClient.cpp, ickle/IckleGUI.cpp,
ickle/SettingsDialog.cpp, ickle/SettingsDialog.h: Patch contributed
by Christian Bornträger to allow changing of the dictionary ispell
uses.
2002-03-12 19:43 barnabygray
* ickle/: History.cpp, IckleClient.cpp, MessageBox.cpp: Fixed up
EmailExpress message receiving.. and virtual contacts too
2002-03-08 17:53 barnabygray
* ickle/ContactListView.cpp: Tweaked behaviour of key seek on
ContactList
2002-03-06 22:18 barnabygray
* ickle/: IckleClient.cpp, Settings.cpp, Settings.h,
UserInfoDialog.cpp: Fixed up settings saving so it's a bit more
reliable when you hit no space left on your filesystem.
2002-03-05 12:54 barnabygray
* ickle/SettingsDialog.cpp: Bit of tidying up on SettingsDialog.
2002-03-02 18:42 barnabygray
* ickle/UserInfoDialog.cpp: Nicefy IPs
2002-03-02 15:21 bugcreator
* ickle/StatusMenu.cpp: Small invisibility fix
2002-03-01 21:53 bugcreator
* ickle/: Icons.cpp, StatusMenu.cpp: Wow Barnaby, that's great, how
can I thank you? :-) But I'm still not satisfied :-p
2002-03-01 19:39 barnabygray
* ickle/IdleTimer.cpp: Related change to last commit
2002-03-01 19:36 barnabygray
* ickle/: ControlHandler.cpp, IckleClient.cpp, IckleGUI.cpp,
IckleGUI.h, SettingsDialog.cpp, SettingsDialog.h, StatusMenu.cpp,
StatusMenu.h: Added the option of 'classic' invisibility if you
want invisible to just be any other status, similar to how the
official client works. (There you go Dominik, don't say I'm not
good to you :-)
2002-03-01 18:38 bugcreator
* ickle/: ContactListView.cpp, ContactListView.h, IckleClient.cpp:
Improved contact list sorting
2002-02-28 17:29 barnabygray
* scripts/licq2ickle.pl: Patch from Sergey Pinaev to fix up missing
off last message from licq history. Cheers.
2002-02-27 21:25 bugcreator
* control/IckleControl.cpp, ctrlsocket/ControlSocket.cpp,
ctrlsocket/ControlSocket.h: Fixed some embarrassing bugs in
ickle_control. I'm wondering if that code ever worked...
2002-02-27 17:00 barnabygray
* configure.in, share/icons/Makefile.am,
share/icons/eureka/Makefile.am, share/icons/eureka/away.xpm,
share/icons/eureka/chat.xpm, share/icons/eureka/dnd.xpm,
share/icons/eureka/ffc.xpm, share/icons/eureka/file.xpm,
share/icons/eureka/invisible.xpm, share/icons/eureka/message.xpm,
share/icons/eureka/na.xpm, share/icons/eureka/occ.xpm,
share/icons/eureka/offline.xpm, share/icons/eureka/online.xpm,
share/icons/eureka/sms.xpm, share/icons/eureka/url.xpm: Added
Dominic's eureka icons to the build process
2002-02-26 17:30 barnabygray
* ickle/ContactListView.cpp: Added some autosize calls to fix up
scroll bar when text might change.
2002-02-26 17:21 barnabygray
* ickle/IckleGUI.cpp: Suggestion from Cb'ke. Cheers.
2002-02-26 13:48 barnabygray
* ickle/: ContactListView.cpp, MessageBox.cpp: - Syncing with
library changes
2002-02-23 20:06 barnabygray
* ickle/: IckleGUI.cpp, IckleGUI.h, SetAutoResponseDialog.cpp,
SetAutoResponseDialog.h: Fixed up other away predefined response
stuff.
2002-02-23 19:44 barnabygray
* ickle/: SettingsDialog.cpp, SettingsDialog.h: Fixed up predefined
away messages in SettingsDialog.
2002-02-20 23:48 nordman
* ickle/: IckleApplet.cpp, IckleApplet.h: fix bug occuring when you
removed a user from the contactlist that had pending messages. Also
style-changes and better icon handling.
2002-02-20 17:45 barnabygray
* ickle/gtkspell.cpp: Tidied up gtkspell message
2002-02-20 17:35 barnabygray
* THANKS: And we give thanks to all those who have contributed
2002-02-20 17:34 barnabygray
* ickle/: IckleClient.cpp, IckleClient.h, main.cpp, main.h: Thanks
to CB'ke for patch to implement run-only-once pid lockfile
behaviour.
2002-02-20 02:17 barnabygray
* ickle/: SettingsDialog.cpp, SettingsDialog.h: Partial
implementation of my alternative settings widget setup for
predefined away message setting.
2002-02-18 19:28 barnabygray
* ickle/MessageBox.cpp: Not necessary after I changed my mind
2002-02-18 19:15 barnabygray
* ickle/: MessageBox.cpp, MessageBox.h: Catch attempts to send
blank messages nicely
2002-02-13 15:09 barnabygray
* THANKS: [no log message]
2002-02-13 14:50 barnabygray
* ickle/: IckleClient.cpp, SetAutoResponseDialog.cpp,
SetAutoResponseDialog.h, SettingsDialog.cpp, SettingsDialog.h:
Predefined away messages patch from Daniel. Thanks.
2002-02-13 13:27 barnabygray
* control/IckleControl.cpp, ctrlsocket/ControlSocket.cpp,
ickle/ControlHandler.cpp: Small fix
2002-02-12 17:15 barnabygray
* ickle/WizardDialog.cpp: Not setting password meant the wizard
wouldn't logon straight after finishing.
2002-02-12 17:09 barnabygray
* ickle/IckleGUI.cpp: Small mistake.
2002-02-12 16:46 barnabygray
* ickle/WizardDialog.cpp: Shouldn't really be setting the size
2002-02-09 17:33 oizoken
* control/CommandLineParser.cpp, control/CommandLineParser.h,
control/IckleControl.cpp, control/IckleControl.h,
ctrlsocket/ControlSocket.cpp, ctrlsocket/ControlSocket.h: gcc 3.0
namespaces fixes for the otherwise excellent ickle_control
2002-02-05 20:03 nordman
* control/IckleControl.o, ctrlsocket/ControlSocket.o: remove object
files.
2002-02-05 19:40 barnabygray
* Makefile.am, configure.in, ickle/IckleClient.cpp,
ickle/IckleClient.h, ickle/Makefile.am: Oops, patch wasn't applied
to that. Should work now.
2002-02-05 19:30 barnabygray
* ickle/: ControlHandler.cpp, ControlHandler.h: And a copy more
files
2002-02-05 19:29 barnabygray
* control/CommandLineParser.cpp, control/CommandLineParser.h,
control/IckleControl.cpp, control/IckleControl.h,
control/IckleControl.o, control/Makefile.am, control/main.cpp,
ctrlsocket/ControlCommands.h, ctrlsocket/ControlSocket.cpp,
ctrlsocket/ControlSocket.h, ctrlsocket/ControlSocket.o,
ctrlsocket/Makefile.am: Added the excellent ickle_control
contributed by Dominic Sacré
2002-02-05 18:54 barnabygray
* ickle/AddUserDialog.cpp: Modal dialogs fix
2002-02-05 18:49 barnabygray
* ickle/: AboutDialog.cpp, AddMobileUserDialog.cpp,
AddMobileUserDialog.h, AddUserDialog.cpp, AddUserDialog.h,
IckleGUI.cpp, PromptDialog.cpp, SettingsDialog.cpp,
SettingsDialog.h: Fixed various buggy modal dialogs, not exiting
their Gtk::Main loops when window manager close is clicked.
2002-02-05 17:30 barnabygray
* ickle/: SearchDialog.cpp, SearchDialog.h: Inherited fix to Age
searching from library (should be done as ranges)
2002-02-05 17:30 barnabygray
* README: Noise info added to README
2002-02-02 16:26 barnabygray
* ickle/: MessageBox.cpp, MessageBox.h: Fix to counting as read
behaviour
2002-02-02 12:50 nordman
* ickle/IdleTimer.cpp: Only let auto-{away,na} kick in the user
hasn't already set the status explicitly.
2002-02-01 20:30 nordman
* ickle/: IckleApplet.h, IckleApplet.cpp: The applet now correctly
tracks the number of online users, even when an online user is
removed.
2002-01-30 22:13 barnabygray
* ickle/: IckleGUI.cpp, MessageBox.cpp, MessageBox.h: Pending
message behavioural changes for MessageBox: - Count a message as
'read' when the box is focussed - Show Status and Pending message
indication on title of MessageBox - Show Status/next pending
message for icon of window
2002-01-30 15:35 nordman
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h: Add popups for
the rest of the disconnected reasons and modify the logic somewhat.
2002-01-29 18:39 nordman
* ickle/: SearchDialog.cpp, SearchDialog.h: Dynamically update
search button as status changes.
2002-01-29 17:06 nordman
* ickle/: IckleGUI.cpp, IckleGUI.h, UserInfoDialog.cpp,
UserInfoDialog.h: Dynamically enable and disable menu entries for
the ickle menu. Redo userinfo dlg to do the same.
2002-01-29 16:00 nordman
* ickle/: UserInfoDialog.cpp, UserInfoDialog.h: Disable upload and
fetch buttons when disconnected. Accidently also fixes a minor
memory leak.
2002-01-27 23:56 nordman
* ickle/AboutDialog.cpp: Add my UIN.
2002-01-27 23:51 nordman
* ickle/AwayMessageDialog.cpp: mouse wheel support for the
away-messages text.
2002-01-27 23:11 nordman
* ickle/: IckleClient.cpp, Makefile.am, WizardDialog.cpp,
WizardDialog.h: First stab at a startup wizard. Needs more work but
should work without any major problems. Don't be suprised when the
userinfo dialog pops up next time you restart ickle ;P
2002-01-27 12:43 oizoken
* ickle/UserInfoDialog.cpp: gcc 3.0 port
2002-01-26 14:26 barnabygray
* THANKS: Thanks for Dominic
2002-01-26 14:24 barnabygray
* ickle/: ContactListView.cpp, ContactListView.h, IckleClient.cpp,
IckleClient.h, SettingsDialog.cpp, SettingsDialog.h: Patch from
Dominic Sacré: - Added User Online Event - Sorting by clicking on
columns of contact list
2002-01-25 18:01 nordman
* ickle/History.cpp: Fix error introduced with the gcc 3 fixes.
Always make sure the semantics of the code is retained with the
fixes.
2002-01-25 15:03 barnabygray
* ickle/: AwayMessageDialog.cpp, MessageBox.cpp: Use Contexts for
the Text boxes so we don't temper with foreground/background font
colours that might be set in a theme.
2002-01-25 14:25 nordman
* ickle/IdleTimer.cpp: auto-status should of course also take the
current state of invisibility into account.
2002-01-25 14:04 barnabygray
* ickle/ContactListView.cpp: Don't check away message on
offline/online contacts.
2002-01-25 13:29 nordman
* ickle/UserInfoDialog.cpp: Fix compability bug with get_chars(),
pointed out by various people.
2002-01-25 11:55 barnabygray
* ickle/: UserInfoDialog.cpp, UserInfoDialog.h: Editability of age
field in user info
2002-01-25 11:35 barnabygray
* ickle/: IckleClient.cpp, IckleGUI.cpp, IckleGUI.h: Fixed not
limiting position to screen size on startup. Applet users - plz
check that show/hide still works for you.
2002-01-25 01:36 barnabygray
* ickle/: UserInfoDialog.cpp, UserInfoDialog.h: Timezone setting
working in UserInfo now