forked from eggheads/eggdrop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
834 lines (752 loc) · 21.4 KB
/
ChangeLog
File metadata and controls
834 lines (752 loc) · 21.4 KB
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
- - - - - - - - - - - - - - -
Commit 1762fe9 (2017-02-26 22:56:39 -0500) by Geo
Geo-proof misc/newversion
misc/newversion
- - - - - - - - - - - - - - -
Commit 2cb92e1 (2017-02-27 00:28:28 +0100) by thommey
Add indention to genchanges.
misc/genchanges
- - - - - - - - - - - - - - -
Commit b2a54ea (2017-02-27 00:25:41 +0100) by thommey
Add misc/genchanges to generate doc/Changes file entries.
misc/genchanges
- - - - - - - - - - - - - - -
Commit 12a1478 (2017-02-26 22:59:52 +0100) by thommey
Add comment about .su command in -nt
Add comment about .su command in -nt, because it's very useful and not
commonly known.
src/main.c
- - - - - - - - - - - - - - -
Commit c39175a (2017-02-26 01:05:31 -0500) by Geo
* Update releaseprep with setpatch usage * Update patch.h reference to
version.h * Don't change version in releaseprep, it is done in newversion *
Fix missing quotes generating version.h * Add missing quotes to version.h
string version
misc/newversion
misc/releaseprep
src/Makefile.in
- - - - - - - - - - - - - - -
Commit ca5179f (2017-02-26 11:04:52 -0500) by Geo
Update patch.h reference to version.h
src/Makefile.in
- - - - - - - - - - - - - - -
Commit 55166da (2017-02-25 21:29:12 -0500) by Geo
* Use setpatch vice addpatch * Use 'none' to remove patchlevel from
version.h
misc/newversion
misc/setpatch
- - - - - - - - - - - - - - -
Commit 0948058 (2017-02-25 20:05:22 -0600) by Geo
Update Eggdrop versioning system. Fixes #337
Found by: maimizuno
* Display 'none' in summary if no configure flags used
* Replace hard-coded version numbers with version.h references
* Introduce version.h for version assignments
* Use misc/setpatch to generate version.h
* Update misc/newversion to use version.h
* Update docs to reflect new global var version output
* Remove patch.h and misc/addpatch
* Replace patch.h with version.h in docs
* use misc/setpatch to give patchlevel to misc/getcommit
aclocal.m4
configure
doc/PATCH-HOWTO
doc/html/mainDocs/patch.html
doc/html/mainDocs/tcl-commands.html
doc/sphinx_source/mainDocs/patch.rst
doc/sphinx_source/mainDocs/tcl-commands.rst
doc/tcl-commands.doc
misc/addpatch
misc/getcommit
misc/newversion
misc/setpatch
src/main.c
src/patch.h
src/version.h
- - - - - - - - - - - - - - -
Commit 14f0718 (2017-02-18 20:56:46 -0500) by Geo
Update newversion with sphinx doc paths
misc/newversion
- - - - - - - - - - - - - - -
Commit bb27466 (2017-02-18 10:36:39 -0500) by Geo
Update ChangeLog
ChangeLog
- - - - - - - - - - - - - - -
Commit 6bc613a (2017-02-17 18:37:12 +0100) by thommey
Fix safe_write prototype to equal write.
src/net.c
src/proto.h
- - - - - - - - - - - - - - -
Commit b8c1e42 (2017-02-17 08:23:56 +0100) by Cizzle
Don't use pointer after freeing w/o explicit setting to NULL.
src/patch.h
src/userent.c
- - - - - - - - - - - - - - -
Commit afdd3a5 (2017-02-13 21:06:31 -0600) by Geo
Variety of long-needed code clean-up & fixes (coverity branch)
* Tons of small fixes, return value checks, etc
* Move logfile_suffix declaration to misc.c.
* Set botnetnick through accessor function so its size is known.
* Avoid repetition and alter u_addinvite and u_addban as well.
* Clean up TCL_PATCH_LEVEL usage.
src/botcmd.c
src/botnet.c
src/chanprog.c
src/cmds.c
src/dcc.c
src/language.c
src/main.c
src/main.h
src/mem.c
src/misc.c
src/mod/channels.mod/channels.c
src/mod/channels.mod/cmdschan.c
src/mod/channels.mod/userchan.c
src/mod/console.mod/console.c
src/mod/dns.mod/coredns.c
src/mod/dns.mod/dns.c
src/mod/filesys.mod/files.c
src/mod/filesys.mod/filesys.c
src/mod/irc.mod/chan.c
src/mod/irc.mod/irc.c
src/mod/irc.mod/msgcmds.c
src/mod/irc.mod/tclirc.c
src/mod/notes.mod/notes.c
src/mod/seen.mod/seen.c
src/mod/server.mod/server.c
src/mod/server.mod/servmsg.c
src/mod/share.mod/share.c
src/mod/share.mod/uf_features.c
src/mod/transfer.mod/transfer.c
src/mod/transfer.mod/transferqueue.c
src/net.c
src/proto.h
src/tcl.c
src/tcldcc.c
src/tclhash.c
src/tclmisc.c
src/userent.c
src/userrec.c
src/users.c
- - - - - - - - - - - - - - -
Commit 9bd9d1b (2017-02-12 21:51:17 -0600) by Geo
Clean up some compile warnings (#330)
* Change releaseprep patch version string to "" for stable release. Fixes
#303
* Check return value for fgets calls
* Check return value for write calls
* Check return value for freopen calls
* Check return value of ftruncate calls
* Revisit fgets occurrences.
* Properly check freopen.
* Check for write errors as well.
* Fix ftruncate errorchecking
* Properly output freopen errors.
* Add missing fclose and correct printf.
* Use version of write() that doesn't ignore its return value.
* Have language file reading errors output to MISC.
* Change write to safe_write.
* Replace LOG_DEBUG with LOG_MISC for errors.
src/botcmd.c
src/dcc.c
src/language.c
src/main.c
src/misc.c
src/mod/filesys.mod/dbcompat.c
src/mod/filesys.mod/filedb3.c
src/mod/notes.mod/notes.c
src/net.c
src/patch.h
src/proto.h
src/users.c
- - - - - - - - - - - - - - -
Commit d6165e2 (2017-02-12 20:37:04 -0600) by Geo
Fixes for autobotchk. Fixes #239
Found by: Cizzle, StephenS Patch by: Cizzle, Geo
* adds possibilty for multiple confs if settings are split
* fixes nick or botnet-nick with \\[ \\] in creating botchk file not
findable by cron
* fixes multiple cron entries added when \\[ \\] is in filename
* fixes cases where botnet-nick="$nick" or pidfile="pid.${botnet-nick}" or
any of the other vars nick, userfile, pidfile and botnet-nick having one
of the other vars in conf
* fixes cases where botnet-nick or nick has handlen > defined handlen and
pidfile uses this botnet-nick or nick
* Prevent \s from being used in filenames
* Fix addt'l handlen, {}, and pidfile autobotchk issues
* Update copyright info
scripts/autobotchk
src/patch.h
- - - - - - - - - - - - - - -
Commit 283cee6 (2017-02-07 19:27:48 -0500) by Geo
Update AUTHORS file
AUTHORS
- - - - - - - - - - - - - - -
Commit a278043 (2017-02-07 19:21:06 -0500) by Geo
Update THANKS file
THANKS
- - - - - - - - - - - - - - -
Commit eab7bea (2017-02-06 21:46:54 -0500) by Geo
Update copyright to 2017
AUTHORS
CONTENTS
FEATURES
INSTALL
NEWS-1.8.0
README
aclocal.m4
config.h.in
configure
configure.ac
doc/ABOUT
doc/BANS
doc/BOTNET
doc/COMPILE-GUIDE
doc/CONTENTS
doc/FIRST-SCRIPT
doc/IPV6
doc/KNOWN-PROBLEMS
doc/MODULES
doc/PARTYLINE
doc/PATCH-HOWTO
doc/TEXT-SUBSTITUTIONS
doc/TLS
doc/TRICKS
doc/USERS
doc/WEIRD-MESSAGES
doc/html/ABOUT.html
doc/html/BANS.html
doc/html/BOTNET.html
doc/html/COMPILE-GUIDE.html
doc/html/INSTALL.html
doc/html/KNOWN-PROBLEMS.html
doc/html/README.html
doc/html/TEXT-SUBSTITUTIONS.html
doc/html/TRICKS.html
doc/html/WEIRD-MESSAGES.html
doc/html/appendices/first-script.html
doc/html/appendices/index.html
doc/html/appendices/known-probs.html
doc/html/appendices/text-sub.html
doc/html/appendices/tricks.html
doc/html/appendices/weird-msg.html
doc/html/appendices/weird-msgs.html
doc/html/coreDocs/assoc.html
doc/html/coreDocs/blowfish.html
doc/html/coreDocs/channels.html
doc/html/coreDocs/compress.html
doc/html/coreDocs/console.html
doc/html/coreDocs/core.html
doc/html/coreDocs/ctcp.html
doc/html/coreDocs/dns.html
doc/html/coreDocs/filesys.html
doc/html/coreDocs/index.html
doc/html/coreDocs/irc.html
doc/html/coreDocs/modules.html
doc/html/coreDocs/notes.html
doc/html/coreDocs/seen.html
doc/html/coreDocs/server.html
doc/html/coreDocs/share.html
doc/html/coreDocs/transfer.html
doc/html/coreDocs/uptime.html
doc/html/coreDocs/woobie.html
doc/html/genindex.html
doc/html/index.html
doc/html/installAndSetup/faq.html
doc/html/installAndSetup/index.html
doc/html/installAndSetup/install.html
doc/html/installAndSetup/readme.html
doc/html/mainDocs/about.html
doc/html/mainDocs/bans.html
doc/html/mainDocs/botnet.html
doc/html/mainDocs/features.html
doc/html/mainDocs/index.html
doc/html/mainDocs/ipv6.html
doc/html/mainDocs/partyline.html
doc/html/mainDocs/patch.html
doc/html/mainDocs/tcl-commands.html
doc/html/mainDocs/tls.html
doc/html/mainDocs/users.html
doc/html/search.html
doc/html/searchindex.js
doc/html/tcl-commands.html
doc/html/toc_installAndSetup.html
doc/man1/eggdrop.1
doc/settings/CONTENTS
doc/settings/core.settings
doc/settings/mod.assoc
doc/settings/mod.blowfish
doc/settings/mod.channels
doc/settings/mod.compress
doc/settings/mod.console
doc/settings/mod.ctcp
doc/settings/mod.dns
doc/settings/mod.filesys
doc/settings/mod.irc
doc/settings/mod.notes
doc/settings/mod.seen
doc/settings/mod.server
doc/settings/mod.share
doc/settings/mod.transfer
doc/settings/mod.uptime
doc/settings/mod.woobie
doc/sphinx_source/appendices/first-script.rst
doc/sphinx_source/appendices/known-probs.rst
doc/sphinx_source/appendices/text-sub.rst
doc/sphinx_source/appendices/tricks.rst
doc/sphinx_source/appendices/weird-msgs.rst
doc/sphinx_source/conf.py
doc/sphinx_source/coreDocs/assoc.rst
doc/sphinx_source/coreDocs/blowfish.rst
doc/sphinx_source/coreDocs/channels.rst
doc/sphinx_source/coreDocs/compress.rst
doc/sphinx_source/coreDocs/console.rst
doc/sphinx_source/coreDocs/core.rst
doc/sphinx_source/coreDocs/ctcp.rst
doc/sphinx_source/coreDocs/dns.rst
doc/sphinx_source/coreDocs/filesys.rst
doc/sphinx_source/coreDocs/irc.rst
doc/sphinx_source/coreDocs/modules.rst
doc/sphinx_source/coreDocs/notes.rst
doc/sphinx_source/coreDocs/seen.rst
doc/sphinx_source/coreDocs/server.rst
doc/sphinx_source/coreDocs/share.rst
doc/sphinx_source/coreDocs/transfer.rst
doc/sphinx_source/coreDocs/uptime.rst
doc/sphinx_source/coreDocs/woobie.rst
doc/sphinx_source/installAndSetup/install.rst
doc/sphinx_source/installAndSetup/readme.rst
doc/sphinx_source/mainDocs/about.rst
doc/sphinx_source/mainDocs/bans.rst
doc/sphinx_source/mainDocs/botnet.rst
doc/sphinx_source/mainDocs/features.rst
doc/sphinx_source/mainDocs/ipv6.rst
doc/sphinx_source/mainDocs/partyline.rst
doc/sphinx_source/mainDocs/patch.rst
doc/sphinx_source/mainDocs/tcl-commands.rst
doc/sphinx_source/mainDocs/tls.rst
doc/sphinx_source/mainDocs/users.rst
doc/tcl-commands.doc
logs/CONTENTS
misc/addpatch
misc/genChangelog
misc/generatedocs
misc/getcommit
misc/killwhitespace
misc/makedepend
misc/modconfig
misc/newversion
misc/releaseprep
misc/runautotools
scripts/CONTENTS
scripts/action.fix.tcl
scripts/compat.tcl
scripts/ques5.tcl
src/bg.c
src/bg.h
src/botcmd.c
src/botmsg.c
src/botnet.c
src/chan.h
src/chanprog.c
src/cmds.c
src/cmdt.h
src/compat/compat.h
src/compat/gethostbyname2.c
src/compat/gethostbyname2.h
src/compat/in6.h
src/compat/inet_aton.c
src/compat/inet_aton.h
src/compat/inet_ntop.c
src/compat/inet_ntop.h
src/compat/inet_pton.c
src/compat/inet_pton.h
src/compat/memcpy.c
src/compat/memcpy.h
src/compat/memset.c
src/compat/memset.h
src/compat/snprintf.c
src/compat/snprintf.h
src/compat/strcasecmp.c
src/compat/strcasecmp.h
src/compat/strftime.c
src/compat/strftime.h
src/dcc.c
src/dccutil.c
src/dns.c
src/dns.h
src/eggdrop.h
src/flags.c
src/flags.h
src/lang.h
src/language.c
src/main.c
src/main.h
src/mem.c
src/misc.c
src/misc_file.c
src/misc_file.h
src/mod/assoc.mod/assoc.c
src/mod/assoc.mod/assoc.h
src/mod/blowfish.mod/bf_tab.h
src/mod/blowfish.mod/blowfish.c
src/mod/blowfish.mod/blowfish.h
src/mod/channels.mod/channels.c
src/mod/channels.mod/channels.h
src/mod/channels.mod/cmdschan.c
src/mod/channels.mod/tclchan.c
src/mod/channels.mod/udefchan.c
src/mod/channels.mod/userchan.c
src/mod/compress.mod/compress.c
src/mod/compress.mod/compress.h
src/mod/compress.mod/configure
src/mod/compress.mod/configure.ac
src/mod/compress.mod/tclcompress.c
src/mod/console.mod/console.c
src/mod/console.mod/console.h
src/mod/ctcp.mod/ctcp.c
src/mod/ctcp.mod/ctcp.h
src/mod/dns.mod/configure
src/mod/dns.mod/configure.ac
src/mod/dns.mod/coredns.c
src/mod/dns.mod/dns.c
src/mod/dns.mod/dns.h
src/mod/filesys.mod/dbcompat.c
src/mod/filesys.mod/dbcompat.h
src/mod/filesys.mod/filedb3.c
src/mod/filesys.mod/filedb3.h
src/mod/filesys.mod/filelist.c
src/mod/filesys.mod/filelist.h
src/mod/filesys.mod/files.c
src/mod/filesys.mod/files.h
src/mod/filesys.mod/filesys.c
src/mod/filesys.mod/filesys.h
src/mod/filesys.mod/tclfiles.c
src/mod/irc.mod/chan.c
src/mod/irc.mod/cmdsirc.c
src/mod/irc.mod/irc.c
src/mod/irc.mod/irc.h
src/mod/irc.mod/mode.c
src/mod/irc.mod/msgcmds.c
src/mod/irc.mod/tclirc.c
src/mod/module.h
src/mod/modvals.h
src/mod/notes.mod/cmdsnote.c
src/mod/notes.mod/notes.c
src/mod/notes.mod/notes.h
src/mod/seen.mod/seen.c
src/mod/server.mod/cmdsserv.c
src/mod/server.mod/server.c
src/mod/server.mod/server.h
src/mod/server.mod/servmsg.c
src/mod/server.mod/tclserv.c
src/mod/share.mod/share.c
src/mod/share.mod/share.h
src/mod/share.mod/uf_features.c
src/mod/transfer.mod/tcltransfer.c
src/mod/transfer.mod/transfer.c
src/mod/transfer.mod/transfer.h
src/mod/transfer.mod/transferfstat.c
src/mod/transfer.mod/transferqueue.c
src/mod/uptime.mod/uptime.c
src/mod/uptime.mod/uptime.h
src/mod/woobie.mod/woobie.c
src/modules.c
src/modules.h
src/net.c
src/patch.h
src/proto.h
src/rfc1459.c
src/stat.h
src/tandem.h
src/tcl.c
src/tcldcc.c
src/tclegg.h
src/tclhash.c
src/tclhash.h
src/tclmisc.c
src/tcluser.c
src/tls.c
src/userent.c
src/userrec.c
src/users.c
src/users.h
text/CONTENTS
text/banner
- - - - - - - - - - - - - - -
Commit dc9227f (2017-02-06 00:49:25 -0500) by Geo
Add main.c to search path
misc/updatecopyright
- - - - - - - - - - - - - - -
Commit e0de5ac (2017-02-06 00:32:09 -0500) by Geo
update updatecopyright help
misc/updatecopyright
- - - - - - - - - - - - - - -
Commit 8cd27d8 (2017-02-06 00:30:47 -0500) by Geo
Update docs copyright as part of updatecopyright script
misc/updatecopyright
- - - - - - - - - - - - - - -
Commit d6420e9 (2017-02-04 03:49:50 +0100) by thommey
Simplify sockgets line parsing
This simplifies the line parsing of sockets, and fixes the bug where
s[strlen(s)-1] accesses invalid memory in case of an empty line (s = "\n"
and it looks behind to find '\r').
src/net.c
src/patch.h
- - - - - - - - - - - - - - -
Commit 66f6d87 (2017-02-03 18:54:07 +0100) by Cizzle
Fix channels output for ".who linkedbot"
* Fix channels output for .who linkedbot
* Output of channels on multiple lines instead of truncating.
* Fix output when no channels are present
src/botcmd.c
src/patch.h
- - - - - - - - - - - - - - -
Commit 1017d96 (2017-02-02 22:23:48 -0600) by Geo
Zero memory after nmalloc() to initialize memberlist. Fixes #326
* Call bzero() after nmalloc() when initializing a new channel to properly
zero all data since channel_malloc() isn't available.
src/mod/channels.mod/tclchan.c
src/patch.h
- - - - - - - - - - - - - - -
Commit 1fb2777 (2017-02-02 15:37:29 -0500) by Geo
Specify what 1 and 0 do for prefer-ipv6 in conf
eggdrop.conf
- - - - - - - - - - - - - - -
Commit 299a763 (2017-01-29 22:37:06 -0500) by Geo
Update BUG-REPORT with GitHub info
doc/BUG-REPORT
- - - - - - - - - - - - - - -
Commit 4cae981 (2017-01-28 17:25:28 +0100) by Cizzle
Detect newer OpenSSL function names. Fixes #323
* Checks for newer OpenSSL function names when old ones aren't found.
aclocal.m4
config.h.in
configure
src/patch.h
- - - - - - - - - - - - - - -
Commit 39ee2eb (2017-01-27 03:27:08 +0100) by Cizzle
Fix minutely hook to be called for all missed minutes. Fixes #308
Found by: maimizuno / Patch by: Cizzle
* Minutely hook now able to display minutes > 60 (previously only displayed
mod 60)
src/main.c
src/patch.h
- - - - - - - - - - - - - - -
Commit 20eb6a8 (2017-01-25 21:43:52 -0500) by Geo
Update patchlevel to vhostreply
src/patch.h
- - - - - - - - - - - - - - -
Commit 5e35eb6 (2017-01-26 03:33:30 +0100) by Cizzle
Return more user-friendly message with incorrect vhost4/6 setting in
config. Closes #316
* Return more user-friendly message when vhost4/6 (or the deprecated
my-ip/hostname) are incorrectly set in config.
* Update language files (where possible) with error translations (TODO -
finnish and danish)
language/core.danish.lang
language/core.english.lang
language/core.finnish.lang
language/core.french.lang
language/core.german.lang
src/lang.h
src/mod/server.mod/servmsg.c
- - - - - - - - - - - - - - -
Commit 571975b (2017-01-25 04:56:51 +0100) by Cizzle
Add summary with tcl, tls and ipv6 info to configure output. Closes #264
Patch by: Cizzle
* Add summary with tcl, tls and ipv6 info to configure output.
* Improve tcl info gathering.
* Show output with yes/no and add some safeguards for getting openssl
version.
* Display OpenSSL version and TCL threading, if available
aclocal.m4
configure
configure.ac
- - - - - - - - - - - - - - -
Commit 6d98a07 (2017-01-19 20:08:31 -0600) by Geo
Fix patch() compilation warning. Fixes #303
* Change releaseprep patch version string to "" for stable release to
prevent compile warning.
* Update patchlevel
misc/releaseprep
src/main.c
src/patch.h
- - - - - - - - - - - - - - -
Commit d5c8cd3 (2017-01-15 22:27:04 +0100) by Cizzle
Address cppcheck mods. Fixes #69
Found by: vBm Patch by: Cizzle
* Fix uninit var in rare case where af != AF_INET and IPV6 is disabled
* Fix res leak where f wasn't closed with full dcc send queue
* Fix res leaks when compressing a file fails
src/mod/compress.mod/compress.c
src/mod/transfer.mod/transfer.c
src/net.c
- - - - - - - - - - - - - - -
Commit 12eba6d (2017-01-01 16:51:45 -0500) by Geo
Update docs version as part of releaseprep
misc/generatedocs
misc/releaseprep
- - - - - - - - - - - - - - -
Commit 1ff9451 (2016-12-31 02:14:21 -0600) by Geo
Fix pandoc rendering. Fixes #302
Found by: Geo Patch by: Geo
* Update docs to work with new pandoc rendering. Fixes #302 Created a
pandoc filter (docsfilter.py) to elevate every heading to level 1,
rendering the resulting text in all caps (for text docs only).
* Update filter to remove Strong tag from emphasized text
* Regenerate documentation
* Add panflute to generatedocs tool search
* Update patch string
FEATURES
INSTALL
README
doc/ABOUT
doc/BANS
doc/BOTNET
doc/FAQ
doc/FIRST-SCRIPT
doc/IPV6
doc/KNOWN-PROBLEMS
doc/MODULES
doc/PARTYLINE
doc/PATCH-HOWTO
doc/TEXT-SUBSTITUTIONS
doc/TLS
doc/TRICKS
doc/USERS
doc/WEIRD-MESSAGES
doc/html/_static/basic.css
doc/html/_static/doctools.js
doc/html/_static/down-pressed.png
doc/html/_static/down.png
doc/html/_static/file.png
doc/html/_static/jquery.js
doc/html/_static/minus.png
doc/html/_static/plus.png
doc/html/_static/pygments.css
doc/html/_static/searchtools.js
doc/html/_static/underscore.js
doc/html/_static/up-pressed.png
doc/html/_static/up.png
doc/html/_static/websupport.js
doc/html/appendices/first-script.html
doc/html/appendices/index.html
doc/html/appendices/known-probs.html
doc/html/appendices/text-sub.html
doc/html/appendices/tricks.html
doc/html/appendices/weird-msgs.html
doc/html/coreDocs/assoc.html
doc/html/coreDocs/blowfish.html
doc/html/coreDocs/channels.html
doc/html/coreDocs/compress.html
doc/html/coreDocs/console.html
doc/html/coreDocs/core.html
doc/html/coreDocs/ctcp.html
doc/html/coreDocs/dns.html
doc/html/coreDocs/filesys.html
doc/html/coreDocs/index.html
doc/html/coreDocs/irc.html
doc/html/coreDocs/modules.html
doc/html/coreDocs/notes.html
doc/html/coreDocs/seen.html
doc/html/coreDocs/server.html
doc/html/coreDocs/share.html
doc/html/coreDocs/transfer.html
doc/html/coreDocs/uptime.html
doc/html/coreDocs/woobie.html
doc/html/index.html
doc/html/installAndSetup/faq.html
doc/html/installAndSetup/index.html
doc/html/installAndSetup/install.html
doc/html/installAndSetup/readme.html
doc/html/mainDocs/about.html
doc/html/mainDocs/bans.html
doc/html/mainDocs/botnet.html
doc/html/mainDocs/features.html
doc/html/mainDocs/index.html
doc/html/mainDocs/ipv6.html
doc/html/mainDocs/partyline.html
doc/html/mainDocs/patch.html
doc/html/mainDocs/tcl-commands.html
doc/html/mainDocs/tls.html
doc/html/mainDocs/users.html
doc/html/objects.inv
doc/html/search.html
doc/html/searchindex.js
doc/settings/core.settings
doc/settings/mod.assoc
doc/settings/mod.blowfish
doc/settings/mod.channels
doc/settings/mod.compress
doc/settings/mod.console
doc/settings/mod.ctcp
doc/settings/mod.dns
doc/settings/mod.filesys
doc/settings/mod.irc
doc/settings/mod.notes
doc/settings/mod.seen
doc/settings/mod.server
doc/settings/mod.share
doc/settings/mod.transfer
doc/settings/mod.uptime
doc/settings/mod.woobie
doc/tcl-commands.doc
misc/docsfilter.py
misc/generateDocs
misc/generatedocs
misc/releaseprep
src/patch.h
- - - - - - - - - - - - - - -
Commit 2523474 (2016-12-28 01:11:22 -0500) by Geo
Update config server comments. Fixes #237
Found by: andy5995
Add text to alert users that placing a # in front of a server inside the
brace list will not comment out that server but rather cause it to fail on
the hostname lookup.
eggdrop.conf
- - - - - - - - - - - - - - -
Commit eb72426 (2016-12-27 18:04:31 +0100) by Cizzle
Fix misleading indentation warnings from gcc
Found by: Cizzle Patch by: Cizzle
src/tclmisc.c
src/tcluser.c
src/userent.c
- - - - - - - - - - - - - - -
Commit 7be507c (2016-12-27 09:58:57 -0600) by Geo
Remove CVS references from Eggdrop. Fixes #149
CONTENTS
doc/sphinx_source/installAndSetup/readme.rst
misc/releaseprep
- - - - - - - - - - - - - - -
Commit a5c1e9b (2016-12-25 13:03:08 -0500) by Geo
Update patchlevel string to configdefaults
src/patch.h
- - - - - - - - - - - - - - -
Commit 58ec3a1 (2016-12-25 00:43:14 -0500) by Geo
Reorganize commit.template
misc/commit.template
- - - - - - - - - - - - - - -
Commit f492377 (2016-12-24 23:41:42 -0600) by Geo
Update mod.channels src/docs to match defaults to eggdrop.conf. Fixes #243
Found by: Geo Patch by: Cizzle
* Update code with config defaults
* Update docs with config defaults
doc/html/coreDocs/channels.html
doc/settings/mod.channels
doc/sphinx_source/coreDocs/channels.rst
src/mod/channels.mod/channels.c
- - - - - - - - - - - - - - -
Commit 791c072 (2016-12-19 03:49:04 -0600) by thommey
Add git commit template to misc/.
misc/commit.template
- - - - - - - - - - - - - - -
Commit 3b65bfc (2016-12-19 03:20:57 -0600) by thommey
Make genChangelog executable.
misc/genChangelog