-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2000
2243 lines (1671 loc) · 94.7 KB
/
ChangeLog.2000
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
* 2000-12-31 19:45 Preston A. Elder <[email protected]>
include/version.h (1.112), include/version.h-release (1.25):
Upped to b7, release of which is imminant.
* 2000-12-31 19:43 Preston A. Elder <[email protected]>
src/nickserv.cpp (1.151):
Make services realise when they're +o
* 2000-12-31 13:17 Preston A. Elder <[email protected]>
src/memoserv.cpp (1.85):
Fixed MS reply
* 2000-12-31 12:55 Preston A. Elder <[email protected]>
src/magick.cpp (1.284):
Moved SIGALRM to the ignored signals.
* 2000-12-31 12:54 Preston A. Elder <[email protected]>
docs/en/index.info (1.35), src/chanserv.cpp (1.220), src/commserv.cpp
(1.85), src/nickserv.cpp (1.150), src/server.cpp (1.149):
Added checking to see if 'http://' was entered in the SET URL commands.
* 2000-12-31 07:00 Preston A. Elder <[email protected]>
src/server.cpp (1.148):
JOIN no longer uses PushMessage
* 2000-12-30 22:11 Preston A. Elder <[email protected]>
src/server.cpp (1.147):
some changes to the flushing users, etc.
* 2000-12-30 14:53 Preston A. Elder <[email protected]>
src/mconfig.cpp (1.26):
Fixed problem where it would create keys twice ...
* 2000-12-29 17:00 Preston A. Elder <[email protected]>
src/base.cpp (1.145):
Some changes to the message dequeing (using release now
* 2000-12-29 10:46 Preston A. Elder <[email protected]>
docs/en/index.info (1.34), include/magick.h (1.144), src/magick.cpp
(1.283):
fixed up log validation
* 2000-12-29 10:31 Preston A. Elder <[email protected]>
src/base.cpp (1.144), src/chanserv.cpp (1.219), src/commserv.cpp (1.84),
src/dccengine.cpp (1.36), src/magick.cpp (1.282), src/memoserv.cpp
(1.84), src/nickserv.cpp (1.149), src/operserv.cpp (1.111),
src/servmsg.cpp (1.76):
Added locking/checking for dcc/events threads. Also for ACE_Log_Msg
* 2000-12-29 09:00 Preston A. Elder <[email protected]>
include/pch.h (1.29):
needed to include ace/Version.h
* 2000-12-29 08:55 Preston A. Elder <[email protected]>
docs/en/index.info (1.33), include/lockable.h (1.50), include/pch.h
(1.28), src/magick.cpp (1.281):
Compiled with 5.1.11, some changes to accomodate (will work with older
versions of ace still).
* 2000-12-29 04:41 Preston A. Elder <[email protected]>
lang/french.hlp (1.3), lang/french.lfo (1.2), lang/french.lng (1.3),
lang/german.hlp (1.3), lang/german.lfo (1.2), lang/german.lng (1.3),
lang/italian.hlp (1.3), lang/italian.lfo (1.2), lang/italian.lng (1.3),
lang/spanish.hlp (1.3), lang/spanish.lfo (1.2), lang/spanish.lng (1.3):
Removed some lang files made by babelfish
* 2000-12-25 01:36 Preston A. Elder <[email protected]>
TODO (1.12), docs/en/index.info (1.32), include/mstring.h (1.62),
src/lockable.cpp (1.58), src/mconfig.cpp (1.25), src/mstring.cpp (1.90):
Added locking around the threadtoself map, and removed a bunch of defines
from mstring (while keeping it the same!)
* 2000-12-23 18:18 Preston A. Elder <[email protected]>
src/mconfig.cpp (1.24):
Fixed problem with it using default value always
* 2000-12-23 17:22 Preston A. Elder <[email protected]>
docs/en/index.info (1.31), include/ace_memory.h (1.4), include/base.h
(1.76), include/chanserv.h (1.50), include/commserv.h (1.43),
include/datetime.h (1.30), include/filesys.h (1.31), include/ircsocket.h
(1.44), include/lockable.h (1.49), include/magick.h (1.143),
include/mconfig.h (1.13), include/memoserv.h (1.36), include/nickserv.h
(1.53), include/operserv.h (1.46), include/server.h (1.55),
include/trace.h (1.68), lang/english.lng (1.70), src/base.cpp (1.143),
src/chanserv.cpp (1.218), src/commserv.cpp (1.83), src/datetime.cpp
(1.60), src/filesys.cpp (1.57), src/ircsocket.cpp (1.143),
src/lockable.cpp (1.57), src/magick.cpp (1.280), src/mconfig.cpp (1.23),
src/memoserv.cpp (1.83), src/nickserv.cpp (1.148), src/operserv.cpp
(1.110), src/server.cpp (1.146), src/servmsg.cpp (1.75), src/trace.cpp
(1.102):
'constified' all classes (ie. made all functions that did not need to
touch another non-const function const themselves, good for data
integrity).
* 2000-12-22 14:50 Preston A. Elder <[email protected]>
TODO (1.11), serviceschk (1.2), helper/serviceschk (1.1),
include/chanserv.h (1.49), include/commserv.h (1.42), include/magick.h
(1.142), include/nickserv.h (1.52), include/operserv.h (1.45),
include/servmsg.h (1.21), src/chanserv.cpp (1.217), src/commserv.cpp
(1.82), src/magick.cpp (1.279), src/nickserv.cpp (1.147),
src/operserv.cpp (1.109):
Made all config options const. Beginnings of securing all non-modifying
commands to const. also added serviceschk.
* 2000-12-22 12:50 Preston A. Elder <[email protected]>
serviceschk (1.1):
Added services check
* 2000-12-22 03:55 Preston A. Elder <[email protected]>
include/server.h (1.54), lang/english.lng (1.69), src/chanserv.cpp
(1.216), src/nickserv.cpp (1.146):
Made forbidden entries (chanserv or nickserv) show up as forbidden in a
list (rather than (nick!) or whatever)
* 2000-12-22 03:15 Preston A. Elder <[email protected]>
src/nickserv.cpp (1.145):
Fixed bug that created a blank entry in the stored nick list
* 2000-12-21 22:30 Preston A. Elder <[email protected]>
src/nickserv.cpp (1.144), src/operserv.cpp (1.108), src/server.cpp
(1.145):
Fixed bug in nickserv ident.
* 2000-12-21 09:18 Preston A. Elder <[email protected]>
docs/magick.ini (1.78), docs/en/index.info (1.30), include/chanserv.h
(1.48), include/commserv.h (1.41), include/magick.h (1.141),
include/memoserv.h (1.35), include/nickserv.h (1.51), include/operserv.h
(1.44), include/servmsg.h (1.20), lang/english.lng (1.68), src/base.cpp
(1.142), src/chanserv.cpp (1.215), src/commserv.cpp (1.81),
src/filesys.cpp (1.56), src/ircsocket.cpp (1.142), src/magick.cpp
(1.278), src/nickserv.cpp (1.143), src/operserv.cpp (1.107),
src/server.cpp (1.144), src/servmsg.cpp (1.74):
Fixed AKILL expiry, added limit for chanserv on-join messages and
commserv logon messages. Also added ability to clear stats and showing
of time stats are effective for (ie. time since clear). Also fixed
ordering of commands, anything with 2 commands (ie. a space in it) should
go before anything with 1.
* 2000-12-19 09:26 Preston A. Elder <[email protected]>
include/server.h (1.53), src/ircsocket.cpp (1.141), src/nickserv.cpp
(1.142), src/operserv.cpp (1.106), src/server.cpp (1.143),
src/servmsg.cpp (1.73):
Bahamut has changed SVSNICK -> MODNICK, so i_SVS has been changed into
several SVS command text strings, if blank, support isnt there.
* 2000-12-19 03:29 Preston A. Elder <[email protected]>
src/server.cpp (1.142):
Added EOB
* 2000-12-19 02:24 Preston A. Elder <[email protected]>
INSTALL (1.14), KNOWN-BUGS (1.15), acconfig.h (1.9), configure.in (1.25),
magick.kdevprj (1.22), docs/magick.ini (1.77), docs/en/index-2.html
(1.12), docs/en/index.info (1.29), docs/en/index.sgml (1.18),
include/Makefile.am (1.9), include/base.h (1.75), include/config.h.in
(1.12), include/language.h (1.24), include/lockable.h (1.48),
include/logfile.h (1.14), include/magick.h (1.140), include/mconfig.h
(1.12), include/mmemory.h (1.8), include/mstring.h (1.61),
include/operserv.h (1.43), include/pch.h (1.27), include/server.h (1.52),
lang/english.hlp (1.34), lang/english.lfo (1.24), lang/english.lng
(1.67), src/base.cpp (1.141), src/chanserv.cpp (1.214), src/commserv.cpp
(1.80), src/convert.cpp (1.22), src/datetime.cpp (1.59),
src/dccengine.cpp (1.35), src/filesys.cpp (1.55), src/ircsocket.cpp
(1.140), src/lockable.cpp (1.56), src/magick.cpp (1.277), src/mconfig.cpp
(1.22), src/memoserv.cpp (1.82), src/mstring.cpp (1.89), src/nickserv.cpp
(1.141), src/operserv.cpp (1.105), src/server.cpp (1.141),
src/servmsg.cpp (1.72), src/utils.cpp (1.55):
Massive updates. Linux works again, added akill reject threshold, and
lots of other stuff -- almost ready for b6 -- first beta after the
re-written strings class. Also now using log adapter!
* 2000-12-12 01:01 Preston A. Elder <[email protected]>
src/server.cpp (1.140):
Typos
* 2000-12-11 21:51 Preston A. Elder <[email protected]>
include/trace.h (1.67), include/mstring.h (1.60):
Moved the do_nothing function
* 2000-12-11 06:19 Preston A. Elder <[email protected]>
src/dccengine.cpp (1.34):
Use Occurance not occurance (because occurance could later be private)
* 2000-12-10 08:06 Preston A. Elder <[email protected]>
src/ircsocket.cpp (1.139), src/memoserv.cpp (1.81), src/nickserv.cpp
(1.140), src/server.cpp (1.139), src/servmsg.cpp (1.71), src/utils.cpp
(1.54):
Ditched alot of the *toa's since mstring can do it internally now.
* 2000-12-10 07:47 Preston A. Elder <[email protected]>
src/server.cpp (1.138):
Fixed it joining all forbidden channels on startup
* 2000-12-10 07:27 Preston A. Elder <[email protected]>
src/server.cpp (1.137):
Added SETHOST, and fixed possibility of servers being processed out of
order (causing a server to be missing!)
* 2000-12-10 02:49 Preston A. Elder <[email protected]>
include/version.h (1.111):
Upped to b6
* 2000-12-10 02:34 Preston A. Elder <[email protected]>
src/mstring.cpp (1.88):
Added a flush to the no memory error output.
* 2000-12-10 00:14 Preston A. Elder <[email protected]>
include/mmemory.h (1.7):
STL based memory clustering -- however it does NOT work currently -- so
it is disabled (it doesnt work due to STL being broken!)
* 2000-12-09 21:56 Preston A. Elder <[email protected]>
include/commserv.h (1.40), lang/english.hlp (1.33), lang/english.lng
(1.66), src/commserv.cpp (1.79):
Added ability to change DESCRIPTION field in committees.
* 2000-12-09 21:30 Preston A. Elder <[email protected]>
src/mstring.cpp (1.87):
More misc fixes on mstring ... one of them fixing single char 0 strings.
* 2000-12-09 15:16 Preston A. Elder <[email protected]>
include/mstring.h (1.59), src/commserv.cpp (1.78), src/mconfig.cpp
(1.21), src/memoserv.cpp (1.80), src/mstring.cpp (1.86):
Fixed SubString and Left to have correct count/end possitions. Also
adjusted rest of source to follow suit.
* 2000-12-09 11:45 Preston A. Elder <[email protected]>
include/mstring.h (1.58), src/mstring.cpp (1.85), src/nickserv.cpp
(1.139):
Fixed rfind in mstring.
* 2000-12-09 10:40 Preston A. Elder <[email protected]>
include/mstring.h (1.57), src/mstring.cpp (1.84), src/nickserv.cpp
(1.138):
Fixed some stuff with mstring (ie. Contains called find_first_of not
find, and the makeupper/makelower calls had != NULL not == NULL).
* 2000-12-09 07:53 Preston A. Elder <[email protected]>
include/mstring.h (1.56), src/mstring.cpp (1.83):
Forgot to add the 'return' to all find_first_of, find_last_of,
find_first_not_of and find_last_not_of calls ...
* 2000-12-09 06:24 Preston A. Elder <[email protected]>
include/base.h (1.74), src/base.cpp (1.140):
Changed all privmsg/notice/send/announce calls to have pszFormat as a
char *, to stop warnings from va_start.
* 2000-12-09 06:15 Preston A. Elder <[email protected]>
include/pch.h (1.26):
Changed string.h -> strings.h for sunos compliance.
* 2000-12-09 05:34 Preston A. Elder <[email protected]>
src/mstring.cpp (1.82):
Added ACE style alloc as an option -- COPY STILL HAS PRINTF's.
* 2000-12-09 05:33 Preston A. Elder <[email protected]>
include/mstring.h (1.55):
Added ACE style alloc as an option.
* 2000-12-09 05:17 Preston A. Elder <[email protected]>
include/variant.h (1.32), src/server.cpp (1.136), src/variant.cpp (1.42):
Added +h to unreal IRCD profile, and made variant more efficiant string
wise by cutting out many operator= calls.
* 2000-12-05 09:49 Preston A. Elder <[email protected]>
src/main.cpp (1.44):
Added fflush to exceptions.
* 2000-12-05 02:56 Preston A. Elder <[email protected]>
src/mstring.cpp (1.81):
OOps ... forgot to #if / #endif something ...
* 2000-12-05 02:49 Preston A. Elder <[email protected]>
src/mstring.cpp (1.80):
Added the ability (in the .h file) to chose what memory scheme to use.
This is necessary for testing to try and get mstring working!
* 2000-11-28 05:15 Preston A. Elder <[email protected]>
ChangeLog (1.6), docs/en/index-1.html (1.8), docs/en/index.info (1.26),
docs/en/index.sgml (1.17), include/mmemory.h (1.6), src/mstring.cpp
(1.79):
Trying to figure out why the free list doesnt work in mmemory. ALOT OF
PRINTF'S - YOU'VE BEEN WARNED, OUTPUT STDOUT TO A FILE!
* 2000-11-09 06:03 Preston A. Elder <[email protected]>
src/mstring.cpp (1.78):
OOps, forgot some printf's :)
* 2000-11-09 05:58 Preston A. Elder <[email protected]>
ChangeLog (1.5), TODO (1.10), docs/en/index-1.html (1.7),
docs/en/index.info (1.25), docs/en/index.sgml (1.16), helper/reset-ver
(1.3), include/ace_memory.h (1.3), include/mmemory.h (1.5),
src/chanserv.cpp (1.213), src/magick.cpp (1.276), src/mconfig.cpp (1.20),
src/mstring.cpp (1.77):
THINK I have it working again ... with the free list. Will check, still
thinking of sorting free list by size.
* 2000-10-26 03:59 Preston A. Elder <[email protected]>
docs/en/index.info (1.24), include/ace_memory.h (1.2), include/mmemory.h
(1.4), src/magick.cpp (1.275), src/mstring.cpp (1.76):
The goddamn memory system and mstring WORK! Well, so far ;)
* 2000-10-18 14:46 Preston A. Elder <[email protected]>
docs/en/index.info (1.23), include/ace_memory.h (1.1), include/lockable.h
(1.47), include/mmemory.h (1.3), include/pch.h (1.25), src/lockable.cpp
(1.55), src/mstring.cpp (1.75):
Well, mstring still coredumps, but it gets past the initial loading of
all the STATIC (or const) strings, etc -- now its coring on loading a
file (or possibly language.h or something). Still investigating.
* 2000-10-14 23:29 Preston A. Elder <[email protected]>
docs/en/index.info (1.22), include/mmemory.h (1.2), include/mstring.h
(1.53), src/mstring.cpp (1.74):
Mods to the memory system, LOTS of printf's to try and figure out why the
damn thing coredumps on init.
* 2000-10-14 00:25 Preston A. Elder <[email protected]>
magick.kdevprj (1.20), docs/en/index.info (1.21), include/Makefile.am
(1.8), include/lockable.h (1.46), include/mmemory.h (1.1),
include/mstring.h (1.52), include/trace.h (1.66), src/main.cpp (1.43),
src/mstring.cpp (1.73):
Added mmemory.h -- MemCluster and the MemoryManager are now in it. TODO
- make mstring use MemoryManager.
* 2000-10-11 04:38 Preston A. Elder <[email protected]>
docs/en/index.info (1.20), include/mstring.h (1.51), src/mstring.cpp
(1.72):
Changes so mstring works better ... kinda
* 2000-10-10 07:47 Preston A. Elder <[email protected]>
configure.in (1.24), docs/en/index.info (1.19), include/config.h.in
(1.11), include/mstring.h (1.50), include/xml/sxp.h (1.12),
include/xml/sxp_data.h (1.11), src/base.cpp (1.139), src/chanserv.cpp
(1.212), src/commserv.cpp (1.77), src/convert.cpp (1.21),
src/dccengine.cpp (1.33), src/filesys.cpp (1.54), src/ircsocket.cpp
(1.138), src/lockable.cpp (1.54), src/magick.cpp (1.274), src/mconfig.cpp
(1.19), src/memoserv.cpp (1.79), src/mstring.cpp (1.71), src/nickserv.cpp
(1.137), src/operserv.cpp (1.104), src/server.cpp (1.135),
src/servmsg.cpp (1.70), src/trace.cpp (1.101), src/utils.cpp (1.53),
src/xml/sxp.cpp (1.14):
mstring is re-written totally ... find or occurances or something has a
problem, but we can debug that :)
* 2000-10-07 07:01 Preston A. Elder <[email protected]>
README (1.13), magick.kdevprj (1.19), docs/magick.ini (1.76),
docs/en/index.info (1.18), include/lockable.h (1.45), src/lockable.cpp
(1.53):
Took out placement new's from lockable.cpp, now using derived classes.
* 2000-10-04 06:52 Preston A. Elder <[email protected]>
docs/en/index.info (1.17), include/lockable.h (1.44), src/base.cpp
(1.138), src/ircsocket.cpp (1.137), src/lockable.cpp (1.52):
Fixed the memory pool and removed printf's.
* 2000-10-04 03:39 Preston A. Elder <[email protected]>
TODO (1.9), docs/en/index.info (1.16), include/lockable.h (1.43),
include/utils.h (1.32), src/base.cpp (1.137), src/ircsocket.cpp (1.136),
src/lockable.cpp (1.51), src/utils.cpp (1.52):
Added MemCluster to speed up lockable, but it cores when we start getting
real messages -- seemingly in an alloc in the events. Lots of printf's
left in for debugging (so run as ./magick >output)
* 2000-10-03 01:36 Preston A. Elder <[email protected]>
Makefile.am (1.9), README (1.12), configure.in (1.23), magick.kdevprj
(1.18), docs/Makefile.am (1.5), docs/magick.ini (1.75),
docs/en/Makefile.am (1.5), docs/en/index.info (1.15),
docs/man/Makefile.am (1.4), helper/add-patch (1.5), helper/blank-patch
(1.1), helper/build-ver (1.5), helper/rem-patch (1.5),
include/Makefile.am (1.7), include/config.h.win (1.10), include/pch.h
(1.24), include/version.h (1.109), include/version.h-release (1.23),
lang/Makefile.am (1.3), src/Makefile.am (1.17), src/server.cpp (1.134),
src/xml/Makefile.am (1.7):
Updated some makefiles, helper stuff, and headers -- nothing too earth
shattering.
* 2000-09-30 06:48 Preston A. Elder <[email protected]>
configure.in (1.22), what.c (1.5), docs/en/index-4.html (1.6),
docs/en/index.info (1.14), include/config.h.in (1.10), include/convert.h
(1.5), include/filesys.h (1.30), include/mstring.h (1.48), include/pch.h
(1.23), src/chanserv.cpp (1.210), src/commserv.cpp (1.76),
src/convert.cpp (1.20), src/datetime.cpp (1.58), src/filesys.cpp (1.53),
src/genrankeys.c (1.3), src/ircsocket.cpp (1.135), src/magick.cpp
(1.273), src/mconfig.cpp (1.18), src/memoserv.cpp (1.78), src/mstring.cpp
(1.69), src/nickserv.cpp (1.136), src/operserv.cpp (1.102),
src/server.cpp (1.133), src/servmsg.cpp (1.69), src/utils.cpp (1.51),
src/xml/xmlparse.c (1.7), src/xml/xmltok_impl.c (1.4):
Some general code cleanups ... got rid of warnings, etc.
* 2000-09-27 07:21 Preston A. Elder <[email protected]>
FAQ (1.1), KNOWN-BUGS (1.13), TODO (1.8), rtfm (1.4), docs/magick.ini
(1.74), docs/en/index-4.html (1.5), docs/en/index.html (1.7),
docs/en/index.info (1.13), docs/en/index.sgml (1.15), helper/reset-ver
(1.2), include/ircsocket.h (1.43), include/server.h (1.51),
include/version.h (1.108), include/version.h-release (1.22),
lang/babel.pl (1.1), lang/checklang.pl (1.3), lang/french.hlp (1.2),
lang/french.lng (1.2), lang/german.hlp (1.2), lang/german.lng (1.2),
lang/italian.hlp (1.2), lang/italian.lng (1.2), lang/portuguese.hlp
(1.2), lang/spanish.hlp (1.2), lang/spanish.lng (1.2), src/chanserv.cpp
(1.209), src/ircsocket.cpp (1.134), src/server.cpp (1.132),
src/servmsg.cpp (1.68):
Added a BURST mode ...
* 2000-09-23 20:18 Preston A. Elder <[email protected]>
lang/italian.hlp (1.1), lang/portuguese.hlp (1.1), lang/portuguese.lfo
(1.1), lang/spanish.hlp (1.1), lang/spanish.lfo (1.1), lang/spanish.lng
(1.1):
Added some more babelfish'd languages
* 2000-09-22 20:23 Preston A. Elder <[email protected]>
docs/en/index.info (1.12), lang/french.hlp (1.1), lang/french.lfo (1.1),
lang/french.lng (1.1), lang/german.hlp (1.1), lang/german.lfo (1.1),
lang/german.lng (1.1), lang/italian.lfo (1.1), lang/italian.lng (1.1):
Babelfish'd some other languages ... part-way through ..
* 2000-09-22 08:26 Preston A. Elder <[email protected]>
docs/magick.ini (1.73), docs/en/index.info (1.11), docs/man/magick.pod
(1.3), docs/man/magick_keygen.pod (1.4), include/commserv.h (1.39),
include/filesys.h (1.29), lang/english.hlp (1.32), lang/english.lfo
(1.23), src/Makefile.am (1.16), src/chanserv.cpp (1.208),
src/commserv.cpp (1.75), src/filesys.cpp (1.52), src/ircsocket.cpp
(1.133), src/magick.cpp (1.272), src/nickserv.cpp (1.135), src/server.cpp
(1.131):
Fixed that pesky bug with chanserv not seeing modes *sigh*
* 2000-09-19 04:05 Preston A. Elder <[email protected]>
AUTHORS (1.4), COPYING (1.2), INSTALL (1.13), README (1.11), rtfm (1.3),
docs/magick.ini (1.72), docs/en/index-1.html (1.6), docs/en/index-2.html
(1.11), docs/en/index-3.html (1.7), docs/en/index-4.html (1.4),
docs/en/index-5.html (1.3), docs/en/index.html (1.6), docs/en/index.info
(1.10), docs/en/index.sgml (1.14), docs/man/magick.pod (1.2),
docs/man/magick_keygen.pod (1.3), include/language.h (1.23),
include/logfile.h (1.13), include/version.h (1.107),
include/version.h-release (1.21), lang/english.hlp (1.31),
lang/english.lfo (1.22), lang/english.lng (1.65):
Ran text files through spell checker.
* 2000-09-18 04:17 Preston A. Elder <[email protected]>
INSTALL (1.12), configure.in (1.21), magick.kdevprj (1.17),
docs/en/index-2.html (1.10), docs/en/index.info (1.9), docs/en/index.sgml
(1.13), include/pch.h (1.22), include/xml/Makefile.am (1.2),
include/xml/xmldef.h (1.2), src/.cvsignore (1.8), src/base.cpp (1.136),
src/filesys.cpp (1.51), src/memoserv.cpp (1.77), src/nickserv.cpp
(1.134), src/server.cpp (1.130), src/servmsg.cpp (1.67),
src/xml/hashtable.c (1.2), src/xml/xml.dsp (1.2), src/xml/xmlparse.c
(1.6), src/xml/xmlrole.c (1.2), src/xml/xmltok.c (1.3):
Intergrated mpatrol into the xml/des sublibs, and did some minor fixes as
a result of mpatrol.
* 2000-09-13 08:45 Preston A. Elder <[email protected]>
acconfig.h (1.8), configure.in (1.20), docs/en/index.info (1.8),
include/config.h.in (1.9), include/config.h.win (1.9), include/pch.h
(1.21), src/base.cpp (1.135), src/chanserv.cpp (1.207), src/convert.cpp
(1.19), src/filesys.cpp (1.50), src/ircsocket.cpp (1.132),
src/lockable.cpp (1.50), src/magick.cpp (1.271), src/server.cpp (1.129),
src/utils.cpp (1.50), src/xml/sxp.cpp (1.13):
Added intergration of mpatrol (memory leak finder). Default is set OFF,
must enable with --enable-mpatrol in configure (and have mpatrol in
system).
* 2000-09-12 17:17 Preston A. Elder <[email protected]>
include/nickserv.h (1.50), src/chanserv.cpp (1.206), src/commserv.cpp
(1.74), src/filesys.cpp (1.49), src/ircsocket.cpp (1.131),
src/nickserv.cpp (1.133), src/server.cpp (1.128):
Added IsLiveAll (IsLive now checks to see if user is SQUIT).
* 2000-09-11 08:52 Preston A. Elder <[email protected]>
docs/en/index.info (1.7):
Updated documentation
* 2000-09-11 06:58 Preston A. Elder <[email protected]>
include/chanserv.h (1.47), include/datetime.h (1.29),
include/xml/sxp_data.h (1.10), src/chanserv.cpp (1.205), src/datetime.cpp
(1.57):
Now saves in in GMT
* 2000-09-10 05:53 Preston A. Elder <[email protected]>
docs/en/index.info (1.6), include/chanserv.h (1.46), include/server.h
(1.50), src/chanserv.cpp (1.204), src/nickserv.cpp (1.132),
src/server.cpp (1.127):
Added functionality to ensure the order of messages is kept.
* 2000-09-08 22:17 Preston A. Elder <[email protected]>
docs/en/index.info (1.5), include/datetime.h (1.28), include/ircsocket.h
(1.42), include/language.h (1.22), include/logfile.h (1.12),
include/utils.h (1.31), lang/english.lng (1.64), src/chanserv.cpp
(1.203), src/commserv.cpp (1.73), src/datetime.cpp (1.56),
src/ircsocket.cpp (1.130), src/magick.cpp (1.270), src/memoserv.cpp
(1.76), src/nickserv.cpp (1.131), src/operserv.cpp (1.101),
src/server.cpp (1.126), src/servmsg.cpp (1.66), src/utils.cpp (1.49):
Changed time functions to actuallt accept the source nick as a param so
that the time values (minutes, etc) can be customized. Also added weeks
to the time output.
* 2000-09-07 04:13 Preston A. Elder <[email protected]>
INSTALL (1.11), TODO (1.7), docs/en/index-2.html (1.9),
docs/en/index.info (1.4), docs/en/index.sgml (1.12),
docs/man/magick_keygen.pod (1.2), include/lockable.h (1.42),
include/server.h (1.49), lang/english.hlp (1.30), lang/english.lng
(1.63), src/ircsocket.cpp (1.129), src/lockable.cpp (1.49),
src/operserv.cpp (1.100), src/server.cpp (1.125), src/servmsg.cpp (1.65):
Fixed some of the erronous messages (SVSHOST, SQLINE, etc). Also added
CPU statistics and fixed problem with socket deletions.
* 2000-09-06 08:10 Preston A. Elder <[email protected]>
docs/en/index.info (1.3), src/operserv.cpp (1.99):
OOps, fixed compile error with operserv
* 2000-09-06 07:27 Preston A. Elder <[email protected]>
README (1.10), docs/en/index-2.html (1.8), docs/en/index-3.html (1.6),
docs/en/index.info (1.2), docs/en/index.sgml (1.11), include/ircsocket.h
(1.41), lang/english.lfo (1.21), src/convert.cpp (1.18),
src/ircsocket.cpp (1.128), src/lockable.cpp (1.48), src/magick.cpp
(1.269), src/operserv.cpp (1.98), src/server.cpp (1.124):
Finished the T_Modify / T_Changing traces, fixed a bug in clone adding
(was adding clone liimt as the mask length), updated docos a little more,
and added a response to SIGINT to signon clients.
* 2000-09-05 07:45 Preston A. Elder <[email protected]>
docs/en/Makefile.am (1.4), docs/en/index-1.html (1.5),
docs/en/index-2.html (1.7), docs/en/index-3.html (1.5),
docs/en/index.info (1.1), docs/en/index.sgml (1.10), docs/en/index.txt
(1.1):
Updated documentation, and makefile -- added index.info and index.txt
* 2000-09-05 06:53 Preston A. Elder <[email protected]>
src/chanserv.cpp (1.202), src/commserv.cpp (1.72), src/filesys.cpp
(1.48), src/lockable.cpp (1.47), src/magick_keygen.c (1.7),
src/memoserv.cpp (1.75), src/mstring.cpp (1.68), src/nickserv.cpp
(1.130):
Only have operserv.cpp and server.cpp to go with T_Changing / T_Modify
tracing -- also modified keygen to allow for cmdline generation (ie.
specify 1 option and enter keys, or 2 options and the key is read from a
file). This allows for paragraphs with \n's in them, and helps so you do
not have to type out 1024 bytes :)
* 2000-09-02 03:20 Preston A. Elder <[email protected]>
include/base.h (1.73), include/chanserv.h (1.45), include/commserv.h
(1.38), include/filesys.h (1.28), include/magick.h (1.139),
include/memoserv.h (1.34), include/operserv.h (1.42), include/server.h
(1.48), src/base.cpp (1.134), src/chanserv.cpp (1.201), src/commserv.cpp
(1.71), src/filesys.cpp (1.47), src/magick.cpp (1.268), src/memoserv.cpp
(1.74), src/operserv.cpp (1.97), src/server.cpp (1.123):
Added the DumpB/DumpE functions to all major objects, and put in some
example T_Modify/T_Changing code in NickServ (set email).
* 2000-09-01 06:54 Preston A. Elder <[email protected]>
include/lockable.h (1.41), include/nickserv.h (1.49), include/trace.h
(1.65), include/variant.h (1.31), src/base.cpp (1.133), src/lockable.cpp
(1.46), src/nickserv.cpp (1.129), src/trace.cpp (1.100), src/variant.cpp
(1.41):
Added Changing and implemented Modify tracing, now just need to create
DumpB() and DumpE() functions in all classes, and put MCB() / MCE() calls
(or MB() / ME() or CB() / CE() where MCB() / MCE() not appropriate) in.
* 2000-08-31 02:25 Preston A. Elder <[email protected]>
ChangeLog (1.4), magick.kdevprj (1.16), docs/magick.ini (1.71),
docs/en/index-1.html (1.4), docs/en/index.sgml (1.9), include/filesys.h
(1.27), include/ircsocket.h (1.40), include/lockable.h (1.40),
include/trace.h (1.64), lang/english.lng (1.62), src/base.cpp (1.132),
src/filesys.cpp (1.46), src/ircsocket.cpp (1.127), src/lockable.cpp
(1.45), src/magick.cpp (1.267), src/mconfig.cpp (1.17), src/operserv.cpp
(1.96), src/trace.cpp (1.99), src/variant.cpp (1.40):
Added our own socket class (wrapper around ACE_SOCK_Stream,
ACE_SOCK_Connector and ACE_SOCK_Acceptor, with tracing).
* 2000-08-28 06:51 Preston A. Elder <[email protected]>
include/base.h (1.72), include/ircsocket.h (1.39), include/lockable.h
(1.39), include/trace.h (1.63), lang/english.lfo (1.20), src/base.cpp
(1.131), src/chanserv.cpp (1.200), src/commserv.cpp (1.70),
src/filesys.cpp (1.45), src/ircsocket.cpp (1.126), src/lockable.cpp
(1.44), src/magick.cpp (1.266), src/magick_keygen.c (1.6),
src/memoserv.cpp (1.73), src/nickserv.cpp (1.128), src/operserv.cpp
(1.95), src/server.cpp (1.122), src/servmsg.cpp (1.64):
Changes: Locking mechanism only allows one lock to be set at a time.
Activation_Queue removed, and use pure message queue now, mBase::init()
now resets us back to the stage where we havnt started threads, and is
called each time we re-connect. handle_close added to ircsvchandler.
Also added in locking for all accesses of ircsvchandler, and checking to
ensure it is not null.
* 2000-08-22 05:30 Preston A. Elder <[email protected]>
src/utils.cpp (1.48):
Modified md5 hash to always return non-binary characters
* 2000-08-22 04:43 Preston A. Elder <[email protected]>
Magick.spec (1.3), include/base.h (1.71), include/lockable.h (1.38),
include/trace.h (1.62), include/utils.h (1.30), include/version.h-release
(1.20), src/base.cpp (1.130), src/chanserv.cpp (1.199), src/ircsocket.cpp
(1.125), src/lockable.cpp (1.43), src/magick.cpp (1.265), src/server.cpp
(1.121), src/trace.cpp (1.98), src/utils.cpp (1.47):
Another re-write of locking stuff -- this time to essentially make all
locks re-entrant ourselves, without relying on implementations to do it.
Also stops us setting the same lock twice in the same thread.
* 2000-08-19 11:27 Preston A. Elder <[email protected]>
Magick-2.0.spec (1.1):
Added RPM Specification file.
* 2000-08-19 10:45 Preston A. Elder <[email protected]>
docs/magick.ini (1.70), src/chanserv.cpp (1.198), src/nickserv.cpp
(1.127), src/server.cpp (1.120):
Fixed mode settings upon commitee recognitition syntax checking
* 2000-08-19 06:59 Preston A. Elder <[email protected]>
docs/magick.ini (1.69), docs/en/Makefile.am (1.3), docs/man/Makefile.am
(1.3), include/chanserv.h (1.44), include/commserv.h (1.37),
include/lockable.h (1.37), include/memoserv.h (1.33), include/nickserv.h
(1.48), include/server.h (1.47), include/version.h (1.106),
include/version.h-release (1.19), lang/Makefile.am (1.2),
lang/english.lng (1.61), src/base.cpp (1.129), src/chanserv.cpp (1.197),
src/ircsocket.cpp (1.124), src/lockable.cpp (1.42), src/magick.cpp
(1.263), src/memoserv.cpp (1.72), src/nickserv.cpp (1.126),
src/server.cpp (1.119):
Added delays between nick/channel registering and memo sending, Added
limit of channels per reg'd nick Added setting of user modes when
recognized on hard-coded committees
* 2000-08-10 19:59 Preston A. Elder <[email protected]>
src/nickserv.cpp (1.125):
Fixed REC_FORNOTINCHAN
* 2000-08-10 19:55 Preston A. Elder <[email protected]>
Makefile.am (1.8), README (1.8), configure.in (1.19), magick.kdevprj
(1.15), magick.lsm (1.2), docs/Makefile.am (1.4), docs/magick.ini (1.68),
docs/en/Makefile.am (1.2), docs/en/index-3.html (1.4), lang/Makefile.am
(1.1):
Finished off the install procedures -- make install should be clean now.
* 2000-08-10 18:44 Preston A. Elder <[email protected]>
KNOWN-BUGS (1.12), docs/magick.ini (1.67), docs/man/Makefile.am (1.2),
include/chanserv.h (1.43), include/magick.h (1.138), src/chanserv.cpp
(1.196), src/ircsocket.cpp (1.123), src/magick.cpp (1.262),
src/nickserv.cpp (1.124), src/server.cpp (1.118):
Added 'binding to IP' options for shell servers, etc. Also added akick
triggers for when a user changes their nick and suddenly matches akick.
* 2000-08-09 08:14 Preston A. Elder <[email protected]>
README (1.7), configure.in (1.18), docs/Makefile.am (1.3),
docs/en/index.sgml (1.8), docs/man/Makefile.am (1.1), docs/man/magick.pod
(1.1), docs/man/magick_keygen.pod (1.1), src/chanserv.cpp (1.195),
src/magick.cpp (1.261), src/nickserv.cpp (1.123), src/operserv.cpp
(1.94):
Ensured chanserv infinate loops wont occur, added 2 new cmdline
paramaters, and added a manpage (you need to perl2pod it tho).
* 2000-08-08 05:58 Preston A. Elder <[email protected]>
docs/magick.ini (1.66), include/commserv.h (1.36), include/xml/sxp.h
(1.10), src/chanserv.cpp (1.194), src/commserv.cpp (1.69), src/magick.cpp
(1.260), src/nickserv.cpp (1.122), src/xml/sxp.cpp (1.12):
Added ModeO to 4 pre-defined committees. Also added back some deletes in
xml in the hope that it will free up some memory ...
* 2000-08-07 23:46 Preston A. Elder <[email protected]>
include/language.h (1.21), include/logfile.h (1.11), include/version.h
(1.105), src/filesys.cpp (1.44):
Fixed problem with dcc not connecting (eg. connection refused) crashing
services.
* 2000-08-07 18:38 Preston A. Elder <[email protected]>
KNOWN-BUGS (1.11), src/ircsocket.cpp (1.122):
Stopped the 'expiring nickname ()' messages.
* 2000-08-07 08:20 Preston A. Elder <[email protected]>
KNOWN-BUGS (1.10), include/memoserv.h (1.32), lang/dutch.lng (1.15),
lang/english.hlp (1.29), lang/english.lng (1.60), lang/portuguese.lng
(1.6), lang/turkish.lng (1.4), src/chanserv.cpp (1.193), src/commserv.cpp
(1.68), src/convert.cpp (1.17), src/filesys.cpp (1.43), src/ircsocket.cpp
(1.121), src/memoserv.cpp (1.71), src/nickserv.cpp (1.121):
Fixed akill and news expiry (flaw in logic), added transferral of memo
list when set new nick as host, and fixed problems with commserv caused
by becoming a new host (also made sadmin check all linked nicks).
* 2000-08-06 17:56 Preston A. Elder <[email protected]>
src/filesys.cpp (1.42), src/nickserv.cpp (1.120), src/server.cpp (1.117):
Fixed some small problems in akill/clone protection
* 2000-08-06 04:06 Preston A. Elder <[email protected]>
KNOWN-BUGS (1.9), docs/magick.ini (1.65), include/commserv.h (1.35),
src/commserv.cpp (1.67), src/ircsocket.cpp (1.120), src/nickserv.cpp
(1.119), src/server.cpp (1.116):
Fixed loading of logon messages in committee ..
* 2000-08-06 03:25 Preston A. Elder <[email protected]>
src/chanserv.cpp (1.192):
Fixed some minor channel bugs
* 2000-08-06 03:10 William King <[email protected]>
src/xml/xmlparse.c (1.4):
removed extraneous break
* 2000-08-06 01:55 Preston A. Elder <[email protected]>
src/server.cpp (1.115):
Added rudimentary UnderNet 2.8.10 support.
* 2000-08-06 01:27 Preston A. Elder <[email protected]>
INSTALL (1.10), KNOWN-BUGS (1.8), Makefile.am (1.7), TODO (1.6),
configure.in (1.17), docs/magick.ini (1.64), include/ircsocket.h (1.38),
include/language.h (1.20), include/lockable.h (1.36), include/logfile.h
(1.10), include/nickserv.h (1.47), include/operserv.h (1.41),
include/server.h (1.46), include/trace.h (1.61), lang/checklang.pl (1.1),
lang/english.lfo (1.19), lang/english.lng (1.59), src/chanserv.cpp
(1.191), src/ircsocket.cpp (1.119), src/lockable.cpp (1.41),
src/magick.cpp (1.259), src/main.cpp (1.42), src/nickserv.cpp (1.118),
src/operserv.cpp (1.93), src/server.cpp (1.114), src/servmsg.cpp (1.63),
src/trace.cpp (1.97), src/utils.cpp (1.46), src/xml/sxp.cpp (1.11):
Fixed akill, and a few other minor bugs. Also made trace TOTALLY
optional, and infact disabled by default due to it interfering
everywhere.
* 2000-08-03 09:06 Preston A. Elder <[email protected]>
KNOWN-BUGS (1.7), configure.in (1.16), include/config.h.in (1.8),
include/config.h.win (1.8), include/ircsocket.h (1.37), include/mstring.h
(1.47), include/nickserv.h (1.46), lang/english.hlp (1.28),
lang/english.lng (1.58), src/chanserv.cpp (1.190), src/ircsocket.cpp
(1.118), src/lockable.cpp (1.40), src/magick.cpp (1.258),
src/magick_keygen.c (1.5), src/mstring.cpp (1.67), src/nickserv.cpp
(1.117), src/server.cpp (1.113), src/servmsg.cpp (1.62):
Fixed a bunch of stuff in mstring (caused exceptions on FreeBSD
machines).
* 2000-08-02 16:33 Preston A. Elder <[email protected]>
INSTALL (1.9), docs/en/index-2.html (1.6), docs/en/index.sgml (1.7):
Updated ACE docos again.
* 2000-08-02 16:08 Preston A. Elder <[email protected]>
INSTALL (1.8), docs/en/index-2.html (1.5), docs/en/index.html (1.5),
docs/en/index.sgml (1.6), include/server.h (1.45), src/chanserv.cpp
(1.189), src/commserv.cpp (1.66), src/memoserv.cpp (1.70),
src/nickserv.cpp (1.116), src/operserv.cpp (1.92), src/server.cpp
(1.112):
Minor code cleanups, added ACE installation instructions, updated the
suggestions file and stopped people doing a whole bunch of stuff to
forbidden nicknames.
* 2000-07-30 14:57 Preston A. Elder <[email protected]>
src/Makefile.am.dist (1.3):
Darn it, forgot to update the distribution Makefile.am.dist
* 2000-07-30 08:40 Preston A. Elder <[email protected]>
magick.dsp (1.67), magick.dsw (1.9), magickbcc.bpr (1.18), magickbcc.cpp
(1.13), include/xml/sxp.h (1.9), src/xml/xml.dsp (1.1),
src/xml/xmltok_impl.c (1.3):
Updated windows project files.
* 2000-07-30 05:04 Preston A. Elder <[email protected]>
acconfig.h (1.7), configure.in (1.15), docs/magick.ini (1.63),
include/config.h.in (1.7), include/config.h.win (1.7), include/lockable.h
(1.35), include/trace.h (1.60), include/version.h (1.103),
src/chanserv.cpp (1.188), src/convert.cpp (1.16), src/filesys.cpp (1.41),
src/ircsocket.cpp (1.117), src/magick.cpp (1.257), src/nickserv.cpp
(1.115), src/xml/xmlparse.c (1.3):
All bugs fixed, however I've disabled COM(()) and CP(()) tracing on
linux, as it seems to corrupt the databases.
* 2000-07-29 17:58 Preston A. Elder <[email protected]>
docs/magick.ini (1.62), include/crypt.h.win (1.2), include/ircsocket.h
(1.36), include/language.h (1.19), include/logfile.h (1.9),
include/magick.h (1.137), include/mstring.h (1.46), include/xml/sxp.h
(1.8), lang/english.lng (1.57), src/chanserv.cpp (1.187), src/convert.cpp
(1.15), src/datetime.cpp (1.55), src/filesys.cpp (1.40),
src/ircsocket.cpp (1.116), src/magick.cpp (1.256), src/memoserv.cpp
(1.69), src/operserv.cpp (1.91), src/server.cpp (1.111), src/trace.cpp
(1.96), src/xml/sxp.cpp (1.10), src/xml/xmlparse.c (1.2),
src/xml/xmltok.c (1.2), src/xml/xmltok_impl.c (1.2):
Fixed XML loading of weird characters ... 2 known bugs now, 1) last_seen
dates are loaded incorrectly on alot of nicknames, which means we expire
lots of nicknames. 2) services wont rejoin a +i/+k channel when last
user exits.
* 2000-07-28 10:49 Preston A. Elder <[email protected]>
magick.kdevprj (1.14), docs/magick.ini (1.61), docs/en/index-4.html
(1.3), docs/en/index.html (1.4), docs/en/index.sgml (1.5),
include/Makefile.am (1.6), include/commserv.h (1.34), include/confbase.h
(1.18), include/datetime.h (1.27), include/fileconf.h (1.21),
include/language.h (1.18), include/magick.h (1.136), include/mconfig.h
(1.11), include/mstream.h (1.29), include/mstring.h (1.45),
include/nickserv.h (1.45), include/server.h (1.44), include/textfile.h
(1.15), include/trace.h (1.59), include/utils.h (1.29), include/variant.h
(1.30), include/version.h (1.102), include/version.h-release (1.17),
src/Makefile.am (1.15), src/Makefile.am.dist (1.2), src/confbase.cpp
(1.32), src/datetime.cpp (1.54), src/fileconf.cpp (1.45),
src/ircsocket.cpp (1.115), src/magick.cpp (1.255), src/mconfig.cpp
(1.15), src/mstream.cpp (1.64), src/mstring.cpp (1.66), src/nickserv.cpp
(1.114), src/server.cpp (1.110), src/textfile.cpp (1.25), src/utils.cpp
(1.45), src/variant.cpp (1.39):
Ditched the old wx stuff, mconfig now in use, we're now ready to release
(only got some conversion tests to do).
* 2000-07-24 13:50 William King <[email protected]>
include/mconfig.h (1.10), src/mconfig.cpp (1.14):
should be finished... not tested
* 2000-07-24 12:46 William King <[email protected]>
magickbcc.bpg (1.8), magickbcc.bpr (1.17), magickbcc.cpp (1.12):
fixing for cbuilder buildability again
* 2000-07-23 16:53 Preston A. Elder <[email protected]>
configure.in (1.14), include/version.h (1.101), include/version.h-release
(1.16):
removing of antlr
* 2000-07-23 14:47 Preston A. Elder <[email protected]>
include/Makefile.am (1.5), src/Makefile.am (1.14), src/Makefile.am.dist
(1.1), src/magick.cpp (1.254):
Removed antlr, I dont think we need it, we dont use it!
* 2000-07-20 21:10 Preston A. Elder <[email protected]>
src/xml/sxp.cpp (1.9):
Fixed the dbase corruption checking ...
* 2000-07-20 20:18 Preston A. Elder <[email protected]>
INSTALL (1.7), Makefile.am (1.6), TODO (1.5), acconfig.h (1.6),
docs/magick.ini (1.60), include/Makefile.am (1.4), include/base.h (1.70),
include/chanserv.h (1.42), include/commserv.h (1.33), include/filesys.h
(1.26), include/memoserv.h (1.31), include/nickserv.h (1.44),
include/operserv.h (1.40), include/xml/sxp.h (1.7), lang/english.lfo
(1.18), src/base.cpp (1.128), src/chanserv.cpp (1.186), src/commserv.cpp
(1.65), src/filesys.cpp (1.39), src/genrankeys.c (1.2), src/lockable.cpp
(1.39), src/magick.cpp (1.253), src/magick_keygen.c (1.4),
src/mconfig.cpp (1.13), src/memoserv.cpp (1.68), src/nickserv.cpp
(1.113), src/operserv.cpp (1.90), src/server.cpp (1.109), src/utils.cpp
(1.44), src/xml/sxp.cpp (1.8):
Fixed database loading, we can now load AND save databases...
Almost ready to release now :)
* 2000-07-13 13:35 Preston A. Elder <[email protected]>
src/xml/README (1.1):
Added readme's, just to say 'use the original one!'
* 2000-07-11 09:22 Preston A. Elder <[email protected]>
include/filesys.h (1.25), include/utils.h (1.27), include/version.h
(1.100), include/version.h-release (1.15), include/xml/sxp.h (1.6),
include/xml/sxp_data.h (1.9), lang/english.lfo (1.17), src/Makefile.am
(1.13), src/filesys.cpp (1.38), src/magick.cpp (1.252), src/utils.cpp
(1.43), src/xml/sxp.cpp (1.7):
Fixed loading/saving -- they now work with encryption and compression.
Tested, it works too! Now all we need to do is fix the loading, and
we're set ... :))
* 2000-06-29 02:30 Preston A. Elder <[email protected]>
.cvsignore (1.12), INSTALL (1.6), README (1.6), docs/en/index-2.html
(1.4), docs/en/index-3.html (1.3), docs/en/index.html (1.3),
docs/en/index.sgml (1.4), src/.cvsignore (1.7), src/magick.cpp (1.251),
src/magick_keygen.c (1.3), src/utils.cpp (1.42):
Added the support for the 'extra' chars (ie. at the end of a string) so
we support odd-length strings. Also updated documentation.
* 2000-06-28 14:52 Preston A. Elder <[email protected]>
src/utils.cpp (1.41):
OOps, forgot to #include des/spr.h
* 2000-06-28 08:20 Preston A. Elder <[email protected]>
.cvsignore (1.11), INSTALL (1.5), Makefile.am (1.5), acconfig.h (1.5),
configure.in (1.13), magick.kdevprj (1.13), scramble.c (1.2),
include/.cvsignore (1.9), include/Makefile.am (1.3), include/config.h.in
(1.6), include/config.h.win (1.6), include/crypt.h.win (1.1),
include/cryptstream.h (1.13), include/magick.h (1.135), include/utils.h
(1.26), src/.cvsignore (1.6), src/Makefile.am (1.12), src/chanserv.cpp
(1.185), src/cryptstream.cpp (1.19), src/genrankeys.c (1.1),
src/magick.cpp (1.250), src/magick_keygen.c (1.2), src/nickserv.cpp
(1.112), src/utils.cpp (1.40):
Lots of encryption stuff, but essentially, we now have random key
generation for the keyfile keys, and we can actually encrypt something,
and get it back as we sent it in (specifically, the keyfile itself).
* 2000-06-27 14:56 Preston A. Elder <[email protected]>
INSTALL (1.4), Makefile.am (1.4), acconfig.h (1.4), configure.in (1.12),
scramble.c (1.1), include/config.h.in (1.5), include/config.h.win (1.5),
include/utils.h (1.25), src/Makefile.am (1.11), src/magick_keygen.c
(1.1), src/operserv.cpp (1.89), src/servmsg.cpp (1.61), src/utils.cpp
(1.39):
Added choosing of keys to configure, also created the keygen, and
scrambler (so keys are not stored in clear text, even in the .h and
binary files). We should be set to do the decryption process now, as
encryption (except for encryption of db's) is all done :)
* 2000-06-26 07:23 Preston A. Elder <[email protected]>