-
Notifications
You must be signed in to change notification settings - Fork 7
/
ChangeLog
7827 lines (4588 loc) · 206 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
2006-12-14 Thursday 13:55 nick_voronin
* fidoconf/fidoconf.h (1.39): Fix mvc compilation issues
2006-12-14 Thursday 12:44 nick_voronin
* src/fidoconf.c (1.29): FIXME comment
2006-12-14 Thursday 12:42 nick_voronin
* src/cfg.c (1.8): add reinitialization of CommentChar on every
init_conf call
2006-12-14 Thursday 09:28 stas_degteff
* doc/: keywords.hpt (1.38), proposal.texi (1.159): Move
descriptions of the tokens 'readonly' and 'writeonly' into
fidoconfig manual
2006-12-12 Tuesday 10:52 stas_degteff
* fidoconf/fidoconf.h (1.38), src/line.c (1.53), src/tparser.c
(1.35): Default RO and default RW for areas
2006-11-25 Saturday 13:29 nick_voronin
* src/line.c (1.52): remove duplicated code
2006-09-06 Wednesday 01:06 nick_voronin
* src/: common.c (1.23), line.c (1.51): Bug with freeing s_link
twice fixed, warning comment added
2006-08-30 Wednesday 10:52 stas_degteff
* src/fidoconf.c (1.28): Fix warning: 'C++ style comments are not
allowed in ISO C90'
2006-08-16 Wednesday 19:17 stas_degteff
* src/fc2msged.c (1.4): Fix typo in previous patches
2006-08-16 Wednesday 19:07 stas_degteff
* src/fc2msged.c (1.3): Strong command-line parameters checking
2006-08-16 Wednesday 18:52 stas_degteff
* src/fc2msged.c (1.2): Fix: fidoconfig may be specified in command
line now
2006-08-16 Wednesday 11:42 stas_degteff
* src/fc2ged.c (1.2): Strong command-line options check; add option
'-c' (merge changes from fidoconfig-1.4)
2006-05-24 Wednesday 20:02 ssianky
* make/: FidoconfDll.8.vcproj (1.2), FidoconfDll.vcproj (1.4),
linked.8.vcproj (1.2), linked.vcproj (1.2), tparser.8.vcproj
(1.2), tparser.vcproj (1.3), FidoconfDll.70.vcproj (1.1),
FidoconfDll.71.vcproj (1.1), FidoconfDll.80.vcproj (1.1),
fconf2golded.80.vcproj (1.1), linked.70.vcproj (1.1),
linked.71.vcproj (1.1), linked.80.vcproj (1.1), tparser.70.vcproj
(1.1), tparser.71.vcproj (1.1), tparser.80.vcproj (1.1): Renamed
to projname.XX.vcproj, where XX is compiler version.
2006-05-24 Wednesday 20:01 ssianky
* src/tparser.c (1.34): Added parsing of config token
disableKludgeRescanned.
2006-05-15 Monday 21:39 ssianky
* doc/keywords.hpt (1.37), fidoconf/fidoconf.h (1.37),
fidoconf/tokens.h (1.21), src/line.c (1.50): new token
disableKludgeRescanned: do not add kludge @RESCANNED to messages
2006-04-18 Tuesday 08:01 stas_degteff
* src/line.c (1.49): Don't use Echoareadefaults for LocalArea
2006-03-01 Wednesday 17:25 stas_degteff
* doc/proposal.texi (1.158): Update seqdir description
2006-02-16 Thursday 18:48 stas_degteff
* README.TXT (1.6): Insert info about changes
2005-12-20 Tuesday 05:23 nick_voronin
* make/makefile.cyg (1.4): Fixed cygwin build
2005-11-26 Saturday 11:00 mche
* src/cfg.c (1.7): syntax fix
2005-11-06 Sunday 21:08 stas_degteff
* src/cfg.c (1.6): Prevent to call fopen(NULL,"rb")
2005-09-05 Monday 08:21 andr_lukyanov
* src/common.c (1.22): fixed rulesDir output
2005-06-20 Monday 08:41 val_khokhlov
* src/line.c (1.48): fix incorrect parsing of prefixed tokens w/o
prefix (fwdPriority, etc.)
2005-06-18 Saturday 19:23 val_khokhlov
* fidoconf/fidoconf.h (1.36), fidoconf/tokens.h (1.20), src/line.c
(1.47): logDateFormat token
2005-06-06 Monday 07:55 mche
* make/: FidoconfDll.8.vcproj (1.1), linked.8.vcproj (1.1),
tparser.8.vcproj (1.1): project files for MSVC 8.0 added
2005-05-07 Saturday 14:10 val_khokhlov
* fidoconf/fidoconf.h (1.35), src/fidoconf.c (1.27), src/tparser.c
(1.33): fix setting ReadOnly/WriteOnly permissions in tparser
2005-05-05 Thursday 22:29 nick_voronin
* src/line.c (1.46): bug fixed: *ReportsFlags were copied from
deflink by pointer, not by value.
2005-04-11 Monday 19:28 d_sergienko
* src/tparser.c (1.32): fixed uid/gid output
2005-03-13 Sunday 19:03 val_khokhlov
* src/afixcmd.c (1.12): fix a bug with duplicating some config
lines when updating a token from areafix (ex: passwords)
2005-03-03 Thursday 11:54 val_khokhlov
* src/tparser.c (1.31): typo: filefixAutoCreateFile
2005-02-25 Friday 00:12 nick_voronin
* src/tparser.c (1.30): DLLEXPORT define replaced with DLLIMPORT.
FIXME: tparser doesn't export anything, on the contrary it import
from dlls. Am I wrong?
2005-02-25 Friday 00:09 nick_voronin
* src/line.c (1.45): memory leak on parseAreaOption fixed
2005-02-25 Friday 00:06 nick_voronin
* src/fidoconf.c (1.26): several memory leaks fixed, mainly in
disposeConfig
2005-02-25 Friday 00:03 nick_voronin
* src/common.c (1.21): several small memory leaks in freeLink()
fixed
2005-02-25 Friday 00:01 nick_voronin
* src/afixcmn.c (1.7): hs_addr.domain now initialized with NULL on
cvtAddr
2005-02-02 Wednesday 16:59 val_khokhlov
* src/: line.c (1.44), tparser.c (1.29): new link token
'rescanLimit' - to limit max rescan msgs count
2005-02-02 Wednesday 16:27 val_khokhlov
* fidoconf/: fidoconf.h (1.34), tokens.h (1.19): new link token
'rescanLimit' - to limit max rescan msgs count
2005-02-02 Wednesday 15:41 val_khokhlov
* fidoconf/fidoconf.h (1.33), fidoconf/tokens.h (1.18),
src/fidoconf.c (1.25), src/line.c (1.43), src/tparser.c (1.28):
new token 'reportRequester' - if turned off, don't report who
requested area
2005-01-30 Sunday 20:12 i_zkh
* doc/: proposal.texi (1.157), rus/proposal.texi (1.7): Moved
RobotsArea description to fidoconfig doc
2005-01-13 Thursday 20:09 val_khokhlov
* fidoconf/fidoconf.h (1.32), fidoconf/tokens.h (1.17),
doc/keywords.hpt (1.36), src/line.c (1.42), src/tparser.c (1.27):
new token dailyBundles
2005-01-09 Sunday 17:27 val_khokhlov
* fidoconf/fidoconf.h (1.31), src/common.c (1.20), src/line.c
(1.41), src/tparser.c (1.26): move link baseDir to s_link_robot
2005-01-09 Sunday 16:45 val_khokhlov
* fidoconf/fidoconf.h (1.30), src/common.c (1.19), src/fidoconf.c
(1.24), src/line.c (1.40), src/tparser.c (1.25): enable sending
echo rules for filefix too
2005-01-09 Sunday 14:47 val_khokhlov
* src/line.c (1.39): fix: areafix/filefix prefix was not handled
correctly
2005-01-02 Sunday 16:44 val_khokhlov
* fidoconf/fidoconf.h (1.29), fidoconf/tokens.h (1.16),
src/fidoconf.c (1.23), src/line.c (1.38), src/tparser.c (1.24):
move some vars from s_link into s_link_robot
2004-12-31 Friday 20:24 val_khokhlov
* src/fidoconf.c (1.22): use correct token for filefix robot's strC
2004-12-30 Thursday 14:35 val_khokhlov
* fidoconf/fidoconf.h (1.28), fidoconf/tokens.h (1.15),
src/afixcmd.c (1.11), src/cfg.c (1.5), src/common.c (1.18),
src/fidoconf.c (1.21), src/line.c (1.37), src/tparser.c (1.23):
move all robot-dependent stuff from s_link to s_link_robot
2004-12-28 Tuesday 20:49 val_khokhlov
* fidoconf/fidoconf.h (1.27), fidoconf/tokens.h (1.14),
src/common.c (1.17), src/fidoconf.c (1.20), src/line.c (1.36),
src/tparser.c (1.22): move some vars from global into robot
structure
2004-12-26 Sunday 21:17 val_khokhlov
* fidoconf/fidoconf.h (1.26), src/fidoconf.c (1.19): add fields to
robot struct to contain strings for 'area', 'filearea' words
2004-12-26 Sunday 20:43 val_khokhlov
* src/common.c (1.16): use sstrdup() to fix a crash when free()'ing
robots
2004-12-25 Saturday 21:47 val_khokhlov
* fidoconf/common.h (1.7), fidoconf/fidoconf.h (1.25),
fidoconf/tokens.h (1.13), src/common.c (1.15), src/fidoconf.c
(1.18), src/line.c (1.35), src/tparser.c (1.21): multi-robot
support, global config parameters only
2004-12-19 Sunday 10:24 andrew_ladutsko
* src/line.c (1.34): fixed -nopause area option
2004-12-19 Sunday 00:44 nick_voronin
* src/line.c (1.33): Check for no link definitions before 'Pack'
keyword
2004-12-09 Thursday 12:17 mche
* src/afixcmd.c (1.10): fix for unclosed config files
2004-12-08 Wednesday 04:49 andr_lukyanov
* src/line.c (1.32): Fix check for no link definition. (patch by
Nick Voronin)
2004-11-03 Wednesday 10:33 mche
* fidoconf/common.h (1.6), src/common.c (1.14): added return codes
to string2addr function
2004-09-11 Saturday 07:36 pgul
* src/afixcmd.c (1.9): Check retcode of fseek() on config change
2004-07-31 Saturday 14:53 andrew_ladutsko
* HISTORY (1.27), fidoconf/fidoconf.h (1.24), fidoconf/tokens.h
(1.12), src/line.c (1.31), src/tparser.c (1.20): added denyRescan
and rescanGrp tokens, added function getLinkRescanAccess
2004-07-27 Tuesday 08:34 andrew_ladutsko
* src/tparser.c (1.19): fixed output of default value of
"sortEchoList" token by tparser
2004-07-13 Tuesday 06:41 andr_lukyanov
* doc/: proposal.texi (1.156), rus/proposal.texi (1.6): Fix syntax
to 'Nodelistformat' token
2004-05-12 Wednesday 17:17 andrew_ladutsko
* src/fidoconf.c (1.17): set default value for 'sysop' token
2004-05-09 Sunday 15:47 andrew_ladutsko
* fidoconf/common.h (1.5), src/common.c (1.13), src/line.c (1.30):
functions e_readCheck() and e_writeCheck() moved to htick, their
functionality is now carried out by setLinkAccess()
2004-04-13 Tuesday 10:25 sfpavel
* debian/compat (1.1): file compat was initially added on branch
fidoconf-1_4-stable.
2004-04-13 Tuesday 10:25 sfpavel
* debian/fidoconf-runtime.install (1.1): file
fidoconf-runtime.install was initially added on branch
fidoconf-1_4-stable.
2004-04-13 Tuesday 10:25 sfpavel
* debian/libfidoconf1-dev.install (1.1): file
libfidoconf1-dev.install was initially added on branch
fidoconf-1_4-stable.
2004-04-13 Tuesday 10:25 sfpavel
* debian/libfidoconf1.install (1.1): file libfidoconf1.install was
initially added on branch fidoconf-1_4-stable.
2004-03-27 Saturday 21:29 mche
* fidoconf/fidoconf.h (1.23), src/line.c (1.29): new option
DaysToKeepTics in SaveTic
2004-03-27 Saturday 21:09 mche
* src/fidoconf.c (1.16): fix memleak in freeSaveTic()
2004-03-04 Thursday 20:35 mche
* src/line.c (1.28): fix parsing AutoCreateDefaults
2004-02-17 Tuesday 09:29 mche
* src/line.c (1.27): fix parsing of SaveTic keyword
2004-02-06 Friday 03:11 andr_lukyanov
* src/: fidoconf.c (1.15), tparser.c (1.18): Set advisoryLock
'integer', by default 0 = off
2004-01-25 Sunday 17:45 d_sergienko
* doc/: proposal.texi (1.155), rus/proposal.texi (1.5): password is
case insensitive
2004-01-23 Friday 10:41 mche
* src/: fidoconf.c (1.14), tparser.c (1.17): some improvement on
fileDescription
2004-01-23 Friday 07:40 andr_lukyanov
* fidoconf/fidoconf.h (1.22), fidoconf/tokens.h (1.11), src/line.c
(1.26), src/tparser.c (1.16): Add new token: fileDescription, by
default - files.bbs
2004-01-21 Wednesday 04:02 andr_lukyanov
* make/makefile.mvcdll (1.2): Fix MSVC compilation
2004-01-14 Wednesday 22:18 i_zkh
* doc/rus/proposal.texi (1.4): Fixed doc about quoted strings
2004-01-11 Sunday 15:10 mche
* src/afixcmd.c (1.8): fix MSVC7 compilations and some warnings
2004-01-10 Saturday 17:35 andrew_ladutsko
* HISTORY (1.26), fidoconf/fidoconf.h (1.21), fidoconf/tokens.h
(1.10), src/line.c (1.25), src/tparser.c (1.15): added
unsubscribeOnAreaDelete token to s_link structure; updated
HISTORY to recent changes
2004-01-08 Thursday 16:02 andrew_ladutsko
* fidoconf/fidoconf.h (1.20), fidoconf/tokens.h (1.9), src/line.c
(1.24), src/tparser.c (1.14): added allowRemoteControl token to
s_link structure
2004-01-07 Wednesday 05:13 d_sergienko
* doc/proposal.texi (1.154): fix docs about quoted strings
2004-01-07 Wednesday 05:11 d_sergienko
* src/line.c (1.23): move back reporting that there is a parameter
missing after ...; ignore rounding quotes while copying string.
2004-01-06 Tuesday 13:44 andrew_ladutsko
* fidoconf/afixcmd.h (1.5), src/afixcmd.c (1.7): added option for
FindTokenPos4Link(): try to find the position after the
alternative token
2003-12-26 Friday 16:39 andrew_ladutsko
* src/afixcmd.c (1.6): Addlink() speedup: do not call slow
processPermissions() there, check a particular area - arealink
pair instead
2003-12-23 Tuesday 14:42 val_khokhlov
* src/fidoconf.c (1.13): ensure string is not null when stripping
comments (patch by Andrew Ladutsko)
2003-12-22 Monday 01:52 andr_lukyanov
* INSTALL (1.17), VERSION (1.8), INSTALL (1.18): Small Fix for
reguire modules
2003-12-16 Tuesday 08:35 val_khokhlov
* fidoconf/fidoconf.h (1.19), src/afixcmd.c (1.5): fix: use filefix
limit for htick (perviously areafix limit was used)
2003-12-16 Tuesday 08:22 val_khokhlov
* fidoconf/afixcmd.h (1.4), src/afixcmn.c (1.6): yet another common
function moved from hpt: cvtAddr()
2003-12-15 Monday 10:05 val_khokhlov
* fidoconf/: common.h (1.4), fidoconf.h (1.18): when detaching
areafix library, some new keywords added to fidoconfig struct
(still there's no support for them in parser and docs)
2003-12-11 Thursday 08:04 val_khokhlov
* Makefile (1.68): fix for incorrect commands while (un)installing
2003-12-10 Wednesday 08:15 val_khokhlov
* makefile.inc (1.44): small improvement for makefile.inc (.o ->
$_OBJ)
2003-12-04 Thursday 15:33 mche
* fidoconf/arealist.h (1.4), src/arealist.c (1.7): %list, %linked
command extension
patch by Andrew Ladutsko 2:450/210
2003-12-03 Wednesday 18:23 mche
* fidoconf/fidoconf.h (1.17), fidoconf/tokens.h (1.8), src/line.c
(1.22), src/tparser.c (1.13): added ability to automatically
pause area when all links but uplink (determined by "-def" flag)
are in pause (see description of "autoAreaPause" token in
documentation for details).
patch by Andrew Ladutsko 2:450/210
2003-11-24 Monday 15:52 val_khokhlov
* Makefile (1.67), makefile.in2 (1.9), makefile.inc (1.43): fix
makefiles to compile with huskymak.cfg (unix'es mostly)
2003-11-12 Wednesday 15:44 mche
* src/line.c (1.21): fixed core on empty origin
2003-11-11 Tuesday 20:10 i_zkh
* doc/config (1.20): Fixed link definations
2003-11-01 Saturday 22:06 i_zkh
* doc/: fidoconfig.texi (1.25), rus/fidoconfig.texi (1.4): Minor
fix
2003-10-21 Tuesday 01:17 andr_lukyanov
* makefile.mvc (1.31): Removed old makefiles
2003-10-21 Tuesday 01:12 andr_lukyanov
* make/makefile.mvc (1.1): Fix MSVC compilation
2003-10-20 Monday 03:31 andr_lukyanov
* makefile.mvcdll (1.31): Removed old makefiles
2003-10-20 Monday 03:28 andr_lukyanov
* make/makefile.mvcdll (1.1): Add new MSVC dinamic compilation
2003-10-17 Friday 07:27 andr_lukyanov
* makefile.cyg (1.15), makefile.emx (1.10): Removed old makefiles
2003-10-17 Friday 07:18 andr_lukyanov
* make/: makefile.cyg (1.3), makefile.djg (1.4), makefile.inc
(1.14): Fix compilation with huskymak.cfg.*
2003-10-17 Friday 07:16 andr_lukyanov
* make/makefile.emx (1.1): Added
2003-10-16 Thursday 07:16 mche
* src/fidoconf.c (1.12): add links for all our akas if it is not
defined in config
2003-10-07 Tuesday 12:03 stas_degteff
* src/fc2binkd.c (1.3): Fix version output. Thanks to Kostya Falkov
2003-10-05 Sunday 17:21 d_sergienko
* HISTORY (1.25), fidoconf/fidoconf.h (1.16), fidoconf/tokens.h
(1.7), src/line.c (1.20), src/tparser.c (1.12): added new token
sendNotifyMessages for hpt
2003-10-05 Sunday 14:50 d_sergienko
* src/line.c (1.19): prevent overriding group in EchoAreaDefaults
2003-10-05 Sunday 12:12 d_sergienko
* fidoconf/fidoconf.h (1.15), src/fidoconf.c (1.11): added new
function: getRobotsArea()
2003-09-02 Tuesday 21:10 i_zkh
* doc/rus/: fidoconfig.texi (1.3), proposal.texi (1.3): Fixed
including other files, plus few updates
2003-08-28 Thursday 21:18 i_zkh
* doc/rus/: fidoconfig.texi (1.2), proposal.texi (1.2): Almost
rewrited docs
2003-08-25 Monday 11:05 d_sergienko
* doc/proposal.texi (1.153), fidoconf/fidoconf.h (1.14),
fidoconf/tokens.h (1.6), src/line.c (1.18), src/tparser.c (1.11):
new token: delAppliedDiff
2003-08-24 Sunday 08:28 d_sergienko
* fidoconf/common.h (1.3), src/common.c (1.12): fillCmdStatement()
moved to huskylib
2003-08-21 Thursday 18:54 d_sergienko
* doc/rus/.cvsignore (1.1): added doc/rus/.cvsignore
2003-08-21 Thursday 18:51 d_sergienko
* doc/rus/: fidoconfig.texi (1.1), proposal.texi (1.1): added
russian doc translation from vadim s. sabinich (2:5070/264)
2003-08-18 Monday 18:27 d_sergienko
* src/fidoconf.c (1.10): add var configdir
2003-07-27 Sunday 15:27 d_sergienko
* src/line.c (1.17): remove debug message about carbonextern
parameters
2003-07-27 Sunday 12:21 d_sergienko
* doc/proposal.texi (1.152): missed keyword :)
2003-07-27 Sunday 12:19 d_sergienko
* doc/proposal.texi (1.151): added docs about zipInternal
2003-06-27 Friday 04:16 lmike
* fidoconfig.qpg (1.4): Fixed .so file name, after install.
2003-06-21 Saturday 11:03 mche
* make/tparser.vcproj (1.2): documentation build added
2003-06-21 Saturday 08:23 mche
* src/line.c (1.16): new area option -pass define area as
passthrough even if msgbase type or filename is defined
2003-06-18 Wednesday 19:50 d_sergienko
* src/line.c (1.15): make squish msgbtype as default
2003-06-17 Tuesday 04:25 lmike
* fidoconfig.qpg (1.3): Added lost config example.
2003-06-16 Monday 14:26 lmike
* make/makefile.qnx (1.4): Added proper library dependencies
2003-06-16 Monday 13:33 lmike
* fidoconfig.qpg (1.2): Oops, forget to change the name of library.
2003-06-16 Monday 13:32 lmike
* fidoconfig.qpg (1.1): Added packaging file for QNX6.
2003-06-16 Monday 13:13 lmike
* make/makefile.inc (1.13): Added "patch" version as variable
2003-06-16 Monday 12:56 lmike
* make/makefile.qnx (1.3): added versions to .so, proper cleaning.
2003-06-16 Monday 12:34 lmike
* make/makefile.qnx (1.2), src/line.c (1.14): continuing porting to
QNX. Just include files fixes.
2003-05-30 Friday 15:15 lmike
* src/fidoconf.c (1.9): Added path to config file for QNX 6, maybe
it will be changed in near future.
2003-05-30 Friday 07:40 mche
* src/: arealist.c (1.6), stat.c (1.2): fix compilation warnings
2003-05-30 Friday 04:26 d_sergienko
* HISTORY (1.24): update
2003-05-30 Friday 03:56 d_sergienko
* src/line.c (1.13): if link subscribed to area twice, just warn
about it and continue working
2003-05-29 Thursday 09:52 val_khokhlov
* fidoconf/fidoconf.h (1.13), fidoconf/tokens.h (1.5), src/line.c
(1.12): new token: createAddUplink to add auto-creating link as
uplink (-def)
2003-05-28 Wednesday 17:57 d_sergienko
* doc/proposal.texi (1.150): added info about CommentChar
2003-05-26 Monday 05:30 lmike
* src/tparser.c (1.10): Added support for QNX 6.x
2003-05-26 Monday 05:26 lmike
* src/: afixcmd.c (1.4), afixcmn.c (1.5), areatree.c (1.2), cfg.c
(1.4), common.c (1.11), fidoconf.c (1.8), grptree.c (1.2): Added
support for QNX 6.x
2003-05-25 Sunday 12:49 lmike
* fidoconf/syslogp.h (1.2): Added syslog.h file placement switch.
2003-05-25 Sunday 12:46 lmike
* doc/makefile.qnx (1.1), make/makefile.qnx (1.1): Added support
for QNX 6.x
2003-05-25 Sunday 12:35 lmike
* README.TXT (1.5): Added line about QNX
2003-05-22 Thursday 20:57 d_sergienko
* src/tparser.c (1.9): make remaps output more pretty
2003-05-15 Thursday 14:25 mche
* make/FidoconfDll.vcproj (1.3), fidoconf/stat.h (1.2): fix windows
build
2003-05-15 Thursday 09:47 val_khokhlov
* makefile.aix (1.12), makefile.bsd (1.21), makefile.in1 (1.5),
makefile.mvc (1.30), makefile.mvcdll (1.30), fidoconf/stat.h
(1.1), make/makefile.inc (1.12), src/stat.c (1.1): stat.c and
stat.h are moved here from hpt
2003-05-15 Thursday 07:07 nssoft
* doc/keywords.htick (1.11): Move keyword "RemoteFileRobotName" to
Link section.
2003-05-14 Wednesday 23:16 nssoft
* make/makefile.inc (1.11): Fix makefiles.
2003-05-14 Wednesday 20:39 d_sergienko
* HISTORY (1.23), fidoconf/fidoconf.h (1.12), fidoconf/tokens.h
(1.4), src/fidoconf.c (1.7), src/line.c (1.11), src/tparser.c
(1.8): add token recodeMsgBase
2003-05-12 Monday 04:44 d_sergienko
* src/fc2binkd.c (1.2): fix compiling after links reallocation
2003-05-11 Sunday 17:41 mche
* src/cfg.c (1.3), src/fidoconf.c (1.6), src/line.c (1.10),
src/tparser.c (1.7), fidoconf/fidoconf.h (1.11): fix reallocation
array of links
2003-05-07 Wednesday 17:11 mche
* src/afixcmd.c (1.3), src/fidoconf.c (1.5), fidoconf/afixcmd.h
(1.3): - common areafix function moved from htick & hpt to
fidoconfig
- process writeonly/readonly tokens for fileechos
2003-04-25 Friday 04:57 andr_lukyanov
* make/makefile.djg (1.3): Fixed DJGPP compilation.
2003-04-25 Friday 04:40 andr_lukyanov
* make/: makefile.cyg (1.2), makefile.djg (1.2): Fixed compilation.
Remark DEBUG mode.
2003-04-24 Thursday 05:13 andr_lukyanov
* makefile.djg (1.14): Removed old DJGPP makefile
2003-04-24 Thursday 05:04 andr_lukyanov
* make/makefile.djg (1.1): Added DJGPP makefile with support new
library structure
2003-04-21 Monday 08:40 mche
* fidoconf/fidoconf.h (1.10), src/line.c (1.9): Now it is possible
using internal zip compression to switch it on define this packer
pack zip zipInternal unpack zipInternal 0 504b0304
2003-04-19 Saturday 11:48 mche
* make/: linked.vcproj (1.1), tparser.vcproj (1.1): vcproj Project
File added for building fidoconf tools in Microsoft Visual Studio
.NET
2003-04-19 Saturday 11:17 mche
* src/tparser.c (1.6): fix some memory leaks
2003-04-17 Thursday 07:28 mche
* make/FidoconfDll.vcproj (1.2): change optimization
2003-04-12 Saturday 13:54 mche
* fidoconfDll.vcproj (1.3), make/FidoconfDll.vcproj (1.1): change
location
2003-04-11 Friday 07:11 mche
* fidoconfDll.vcproj (1.2): fix GUIDs of projects
2003-04-10 Thursday 21:17 i_zkh
* doc/proposal.texi (1.149): Fixed misprints
2003-04-08 Tuesday 10:27 val_khokhlov
* fidoconf/fidoconf.h (1.9), src/line.c (1.8), src/tparser.c (1.5):
areafixReportsAttr can be applied to individual links
2003-04-03 Thursday 09:44 mche
* src/afixcmn.c (1.4): fix freeMsgBuffers
2003-04-02 Wednesday 09:48 val_khokhlov
* make/makefile.inc (1.10): makefile fix (errors when linking
progs)
2003-03-31 Monday 21:17 d_sergienko
* fidoconf/fidoconf.h (1.8), src/common.c (1.10): fixed bug with
incorrect fill of cmd statements during executing packer/unpacker
(thanx to Alexander N. Skovpen)
2003-03-31 Monday 18:59 mche
* fidoconfDll.vcproj (1.1): vcproj Project File added for building
dynamyc fidoconfig library in Microsoft Visual Studio .NET
2003-03-30 Sunday 19:54 d_sergienko
* make/makefile.inc (1.9): make makefile.inc more comfortable and
less buggy
2003-03-29 Saturday 20:33 d_sergienko
* make/makefile.inc (1.8): add $(LIBDIR) to libraries search path
2003-03-28 Friday 09:57 sfpavel
* Makefile (1.66), debian/libfidoconf1-dev.files (1.2),
debian/libfidoconf1.files (1.2), debian/rules (1.15),
debian/shlibs (1.8), make/makefile.inc (1.7): Rewrite Makefile
for using with new makefile.inc
2003-03-28 Friday 07:05 sfpavel
* make/makefile.inc (1.6): Don't use 'ifdef' at common makefile -
this is not standart for all compilers
2003-03-27 Thursday 21:09 d_sergienko
* fidoconf/fidoconf.h (1.7), src/common.c (1.9): fix compiling
2003-03-27 Thursday 12:07 sfpavel
* make/makefile.inc (1.5): Use SHORTNAMES variable instead
LONGNAMES; change library name if need SHORTNAMES
2003-03-27 Thursday 11:52 sfpavel
* make/makefile.inc (1.4): Change EXENAMEOPT to EXENAMEFLAG
2003-03-27 Thursday 11:45 sfpavel
* make/makefile.inc (1.3): Add rule for support longnames for
utilities
2003-03-27 Thursday 08:55 stas_degteff
* src/common.c (1.8), fidoconf/common.h (1.2): Move copyString() &
copyStringUntilSep() from fidoconfig to huskylib
2003-03-27 Thursday 07:41 stas_degteff
* src/common.c (1.7): Prevent memory faults
2003-03-27 Thursday 06:33 stas_degteff
* src/common.c (1.6): Use __WIN32__ instead __NT__
2003-03-27 Thursday 06:32 stas_degteff
* src/common.c (1.5): Improve BSY checking
2003-03-27 Thursday 06:18 stas_degteff
* fidoconf/fidoconf.h (1.6): Set 'undef' flavour to zero
2003-03-27 Thursday 06:17 stas_degteff
* src/line.c (1.7): Fix compiler warnings
2003-03-26 Wednesday 12:16 stas_degteff
* src/: arealist.c (1.5), fidoconf.c (1.4): Fix cygwin-mingw build
2003-03-26 Wednesday 12:16 stas_degteff
* fidoconf/: afixcmd.h (1.2), fidoconf.h (1.5): Fix cygvin-mingw
build
2003-03-26 Wednesday 12:07 stas_degteff
* src/: afixcmn.c (1.3), common.c (1.4): Fix warnings
2003-03-26 Wednesday 11:45 val_khokhlov
* fidoconf/arealist.h (1.3), src/arealist.c (1.4): fix for
undefined extern "config" when compiling .dll
2003-03-26 Wednesday 11:22 val_khokhlov
* makefile.mvc (1.29): working makefile for msvc
2003-03-26 Wednesday 10:57 stas_degteff
* make/: makefile.cyg (1.1), makefile.inc (1.2): Cygwin-mingw
build: unify makefiles
2003-03-26 Wednesday 04:19 andr_lukyanov
* fidoconf/version.h (1.2), src/common.c (1.3), src/version.c
(1.2): Fixed GenVersionSTR error
2003-03-25 Tuesday 18:36 stas_degteff
* src/cfg.c (1.2): Move cmpfnames to huskylib/src/cmpfname.c
2003-03-25 Tuesday 13:43 stas_degteff
* fidoconf/fidoconf.h (1.4), src/afixcmd.c (1.2), src/afixcmn.c
(1.2), src/common.c (1.2), src/fidoconf.c (1.3), src/line.c
(1.6), src/tparser.c (1.4): Replace CHAR, UCHAR, INT, UINT,
UINT16, & etc with compiler-independed types declared in
huskylib/compiler.h
2003-03-25 Tuesday 12:09 sfpavel
* make/makefile.inc (1.1): Write 'new style' common makefile
2003-03-25 Tuesday 11:50 val_khokhlov
* src/arealist.c (1.3): group description for group '*' is used in
%list for groups w/o description
2003-03-25 Tuesday 11:44 val_khokhlov
* Makefile (1.65): undefined CFGNAME fix
2003-03-25 Tuesday 11:08 val_khokhlov
* Makefile (1.64), src/fidoconf.c (1.2): CFGNAME now defines config
file name (default: config), see huskymak.cfg
2003-03-24 Monday 12:44 val_khokhlov
* fidoconf/tokens.h (1.3), src/line.c (1.5): new token for link
'flavour' to set netmail, echomail and fileecho flavours
2003-03-24 Monday 12:06 val_khokhlov
* src/line.c (1.4): more verbose error message for route
2003-03-24 Monday 11:02 val_khokhlov
* fidoconf/fidoconf.h (1.3), src/line.c (1.3), src/tparser.c (1.3):
flavour in 'route' can be omitted, in this case link's
'netMailFlavour' is used
2003-03-21 Friday 11:54 val_khokhlov
* HISTORY (1.22), fidoconf/arealist.h (1.2), fidoconf/fidoconf.h
(1.2), fidoconf/tokens.h (1.2), src/arealist.c (1.2), src/line.c
(1.2), src/tparser.c (1.2): new token 'sortEchoList' and various
sort modes: by name, by group, by group and name, unsorted
2003-03-21 Friday 08:01 sfpavel
* Makefile (1.63), afixcmd.c (1.30), afixcmd.h (1.18), afixcmn.c
(1.31), arealist.c (1.10), arealist.h (1.4), areatree.c (1.15),
areatree.h (1.7), cfg.c (1.65), common.c (1.171), common.h
(1.89), fc2aed.c (1.9), fc2binkd.c (1.14), fc2fgate.c (1.9),
fc2ged.c (1.10), fc2msged.c (1.8), fc2sq.c (1.10), fc2tor.c
(1.11), fc2tor_g.c (1.4), fc2tor_g.h (1.4), fconf2areasbbs (1.4),
fconf2dir (1.2), fconf2fidogate.cfg.sample (1.3), fconf2na.pl
(1.2), fecfg146.c (1.6), fecfg146.h (1.11), fecfg2fc.c (1.23),
fidoInst (1.7), fidoconf.c (1.114), fidoconf.h (1.180),
fidoconf.pas (1.12), findtok.c (1.3), findtok.h (1.2), grptree.c
(1.12), grptree.h (1.5), line.c (1.389), linked.c (1.10),
linkedto (1.7), makefile.in1 (1.4), makefile.inc (1.42),
makefile.mvcdll (1.29), syslogp.h (1.9), tokens.h (1.63),
tparser.c (1.251), version.c (1.12), version.h (1.13),
debian/control (1.16), debian/fidoconf-runtime.examples (1.3),
debian/shlibs (1.7), fidoconf/afixcmd.h (1.1),
fidoconf/arealist.h (1.1), fidoconf/areatree.h (1.1),
fidoconf/common.h (1.1), fidoconf/fc2tor_g.h (1.1),
fidoconf/fecfg146.h (1.1), fidoconf/fidoconf.h (1.1),
fidoconf/fidoconf.pas (1.1), fidoconf/findtok.h (1.1),
fidoconf/grptree.h (1.1), fidoconf/syslogp.h (1.1),
fidoconf/tokens.h (1.1), fidoconf/version.h (1.1), man/Makefile
(1.7), src/afixcmd.c (1.1), src/afixcmn.c (1.1), src/arealist.c
(1.1), src/areatree.c (1.1), src/cfg.c (1.1), src/common.c (1.1),
src/fc2aed.c (1.1), src/fc2binkd.c (1.1), src/fc2fgate.c (1.1),
src/fc2ged.c (1.1), src/fc2msged.c (1.1), src/fc2sq.c (1.1),
src/fc2tor.c (1.1), src/fc2tor_g.c (1.1), src/fecfg146.c (1.1),
src/fecfg2fc.c (1.1), src/fidoconf.c (1.1), src/findtok.c (1.1),
src/grptree.c (1.1), src/line.c (1.1), src/linked.c (1.1),
src/tparser.c (1.1), src/version.c (1.1), util/fconf2areasbbs.pl
(1.1), util/fconf2dir.pl (1.1), util/fconf2fidogate.cfg.sample
(1.1), util/fconf2na.pl (1.1), util/fidoInst (1.1), util/linkedto
(1.1): Reorganize directory tree
2003-03-20 Thursday 12:46 val_khokhlov
* fidoconf.c (1.113), fidoconf.h (1.179), line.c (1.388), tokens.h
(1.62), tparser.c (1.250), doc/proposal.texi (1.148): new
keyword: grpDesc, to add descriptions for groups specified by -g
in echoArea
2003-03-20 Thursday 12:38 val_khokhlov
* fidoconf.h (1.178), line.c (1.387), tokens.h (1.61), tparser.c
(1.249), doc/keywords.hpt (1.35): new keyword for link: