This repository has been archived by the owner on Feb 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
1434 lines (1318 loc) · 96.4 KB
/
Changes
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
Anope Version 1.8 - GIT
-------------------
06/05 F Fixed modules being loaded regardless of the load abort signal. [#1527]
08/16 F Fixed hs_request to show requested ident in memos [#1545]
08/16 F Fix kick reason in cs_suspend/cs_forbid if no reason is given [#1544]
Provided by Michael Wobst - 2013
05/25 U Update Hybrid protocol module to support Hybrid 8.1
06/21 U Update Hybrid protocol module to support vhosts
Anope Version 1.8.8
-------------------
01/29 F Fixed user modes on BotServ bots on Unreal3.2.10 [#1474]
02/13 F Do not allow invalid nicknames to be forbidden in ns_forbid [ #00]
Provided by Ryuunosuke Ayanokouzi - 2013
02/17 A Added Japanese language support [ #00]
Provided by Anope Dev. <[email protected]> - 2012
02/22 F Fixed several grammar errors in docs/ (patch provided by Simba) [ #00]
02/25 F Do not allow akill masks to end in @ [#1380]
07/14 F Fixed crash with cs_enforce and empty permanent channels [ #00]
12/23 A Added Hybrid 8.0 support. (Patch provided by Hybrid Team) [ #00]
12/23 R Removed experimental Hybrid 7.0 support. [ #00]
Provided by Anope Dev. <[email protected]> - 2011
12/31 F Fixed os_svsnick to allow changing the case of a users' nick [#1369]
Anope Version 1.8.7
-------------------
08/18 A Added support for Hybrid's channel mode +S [#1319]
08/18 A Added support for Hybrid's channel mode +O [#1320]
08/21 A Added internal event when a nickcore is dropped. [ #00]
08/21 A Added internal event when a nickcore gets a new display nick. [ #00]
08/18 R Removed support for Hybrid's (old) channel mode +a [#1318]
12/15 C Added API support for SVSJOIN and SVSPART on UltimateIRCd 3. [ #00]
05/30 F Fixed removing vhosts on InspIRCd when m_cloaking is unloaded [#1273]
07/23 F Fixed a potential crash in the badwords kicker [ #00]
08/09 F Fixed deopping the first user to join a channel during a burst [#1287]
08/10 F Fixed loading bs_fantasy_owner on InspIRCd 2.0 on startup [ #00]
08/21 F Send DROP event when forbidding nicks and channels. [ #00]
11/16 F Fixed ident being used instead of vident in some comparisons. [ #00]
11/20 F Fixed ignore not matching against users' real host or IP. [ #00]
12/06 F Fixed some typos in the spanish language file [ #00]
Anope Version 1.8.6
-------------------
10/31 A Added support for plexus3's channel mode +z [#1202]
02/23 A Added account tracking support to ratbox protocol module [ #00]
03/21 A Added support for Hybrid's m_services and m_change [ #00]
03/28 A Added internal events called when a module is loaded/unloaded. [ #00]
03/28 A Added internal events called when a command is added/deleted. [ #00]
09/11 F Fixed db-convert handling some vhost collisions [ #00]
09/14 F Fixed ./configure failing with partial SQL installations [ #00]
09/28 F Fixed ForkForMail to always work [ #00]
09/28 F Fixed /nickserv saset display to use nicktracking if enabled [#1193]
09/28 F Fixed /nickserv group to use nicktracking if enabled [#1194]
12/12 F Remove vhost requests from nicks that expire [ #00]
12/15 F Fixed /cs enforce #channel to say SET was enforced not (null) [#1213]
12/23 F Fixed /cs (un)ban and akick from matching users real hosts/IP [#1079]
01/19 F Fixed 'make install' recompiling src/tools [#1227]
01/21 F Fixed many incorrect apostrophe usages [#1223]
01/28 F Fixed not introducing our clients with usermode k on InspIRCd2.0[ #00]
01/29 F Updated german language file. [ #00]
02/05 F Fixed wiki URLs in Windows configure script [ #00]
02/11 F Fixed build on Mac [ #00]
02/23 F Fixed rejoining our clients if they are kicked on a TS6 IRCd [ #00]
03/02 F Fixed showing SENDPASS in HELP to users who can't use it [ #00]
03/03 F Fixed opping our clients on ratbox when not using TS6 [ #00]
03/04 F Fixed setting a users host in InspIRCd when vhost is turned off [ #00]
03/24 F Fixed groups display nick showing in HS req memos for aliases. [#1252]
04/28 F Fixed missing NS REGISTER reply when ns_register is not loaded. [#1263]
05/02 F Fixed crash in enc_md5 on Mac [#1236]
Anope Version 1.8.5
-------------------
05/05 A Added an internal event called when a nick is requested [ #00]
05/09 A Added an Atheme to Anope database converter [ #00]
05/12 A Added logging for stateful commands [ #00]
05/22 A Added an internal event called when a nick is ghosted [ #00]
05/22 A Added an internal event called when a nick is recovered [ #00]
05/23 A Added old nick parameter to EVENT_CHANGE_NICK [ #00]
08/13 A Added forking for mail sending on supporting operating systems [ #00]
09/05 A Added InspIRCd 2.0 support [ #00]
10/31 A Added support for Plexus3's channel mode +z [#1202]
04/15 F Fixed os_info to backup its database on Windows [ #00]
04/15 F Fixed a potential crash in cs_clear ops when using UnrealIRCd [#1154]
04/16 F Fixed missing TS6SID on FJOIN in inspircd12 [ #00]
04/19 F Fixed ns_info to show nick expire times to opers not only admins[ #00]
04/28 F Fixed a bug that could make some nick requests disappear [ #00]
05/18 F Fixed English and grammar in e-mail messages [ #00]
05/23 F Fixed SQUITing juped servers on InspIRCd 1.2 [#1165]
06/15 F Fixed ./Config to correctly load config.cache [ #00]
06/24 F Fixed pseudo-client kills not being detected on some TS6 IRCDs. [ #00]
07/01 F Fixed encrypting very long passwords when registering [#1172]
08/03 F Fixed tracking users vhosts when there is no vhost mode [#1178]
08/05 F Fixed tracking of our clients after nick changing on InspIRCd [#1180]
09/10 F Fixed pseudo-clients always getting oper on InspIRCd. [ #00]
Provided by Han` <[email protected]> - 2010
08/14 F Updated german language file. [ #00]
Anope Version 1.8.4
-------------------
03/10 A Added support for tracking permanent channels [ #00]
03/24 A Added logging of deleting and clearing XOP access lists [ #00]
02/09 F Fixed marking halfops as deopped, stops unsetting modes by them [#1136]
02/18 F Fixed listing unconfirmed nicks with suspended nicks to SA+ [ #00]
03/02 F Fixed a bug that could cause access entries to disappear [ #00]
03/13 F Fixed maximum hostname checking in HS SET and HS REQUEST [#1138]
03/13 F Fixed deleting force dropped nicks from the hs_waiting list [#1139]
03/13 F Fixed backing up 3rd party module DBs more than once a day [#1140]
03/16 F Fixed os_info to display syntax errors if no command is entered [ #00]
03/29 F Fixed defcon to only apply its mode parameters when it's on [#1146]
03/29 F Fixed numbering of memos when saved in SQL [#1149]
03/30 F Fixed module demos to work correctly on TS6 IRCDs [ #00]
04/03 F Fixed saving databases in readonly mode when using anoperc [ #00]
Anope Version 1.8.3
-------------------
Provided by Anope Dev. <[email protected]> - 2009
10/05 A Added InspIRCd 1.2 support. [ #00]
07/31 F Fixed anope sending umode change using channels' syntax. [ #00]
07/31 F Fixed TS6 UUID issue while parsing modechanges. [ #00]
08/01 F Fixed several memory leaks in HostServ. [ #00]
08/01 F Fixed several memory leaks in HostServ. [ #00]
08/03 F Fixed TS6 SID issue when introducing new servers. [ #00]
08/19 F Fixed NS SASET displaying wrong language. [#1094]
08/24 F Fixed entry_match() failing when given no username. [ #00]
08/27 F Fixed NS SUSPEND not being shown to services opers. [#1099]
08/27 F Fixed NS UNSUSPEND not being shown to services opers. [#1100]
08/27 F Fixed services sending no or wrong help to opers. [#1102]
08/27 F Fixed services sending no or wrong help to opers. [#1103]
08/27 F Fixed services sending no or wrong help to opers. [#1104]
08/29 F Fixed defcon failing to set and remove modes. [#1101]
08/30 F Fixed MLOCK superseding DEFCON mode lock. [ #00]
09/09 F Fixed number of TS6 compatibility issues. [#1096]
10/06 F Fixed CS FORBID not clearing excepts & invites. [#1097]
11/25 F Fixed a number of major XOP related issues. [ #00]
11/25 F Fixed a bug in CLEAR OPS causing incorrect mode removal. [#1114]
12/01 F Fixed tracking of users host when they disable their vhost [#1106]
12/20 F Fixed nickcores access list being loaded from SQL with RDB [ #00]
01/15 F Fixed BotServ from kicking and banning ULined clients [#1135]
Provided by Han` <[email protected]> - 2009
07/28 F Updated german language file. [ #00]
07/28 F Added german language support to hs_request.c. [ #00]
Provided by Yusuf Kurekci <[email protected]> - 2009
08/11 F Updated Turkish language file. [ #00]
Provided by Christopher N. <[email protected]> - 2009
09/20 F Updated French language file. [ #00]
Anope Version 1.8.2
-------------------
07/06 F Fix unsetting founder_chans when logging out other users [ #00]
07/07 F Fix a crash when mysql is used without MysqlSecure defined. [ #00]
Anope Version 1.8.1
-------------------
Provided by Anope Dev. <[email protected]> - 2009
03/30 R Removed InspIRCd 1.0 support. [ #00]
01/03 F Updated install.js url for windows build help. [ #00]
01/17 F Fixed MySQL DB saving failing due to unsafe queries. [ #994]
01/18 F Fixed check for backtrace() in configure. [ #00]
01/22 F Do not allow invalied nicks to be grouped. [#1000]
01/26 F Do not allow empty vIdent when loading from MySQL. [ #00]
01/26 F Readonly/noexpire are now checked before saving on shutdown. [ #00]
02/12 F Fixed timestamps blowing away on JOIN in InspIRCd 1.1. [ #00]
02/12 F Fixed dropped mode changes coming from Anope on TS6 IRCds. [ #00]
02/23 F Added missing FD_ZERO() call before FD_SET(). [ #00]
02/23 F Send correct akill timestamp on InspIRCd 1.1. [ #00]
03/10 F MLOCK +f parameter isn't correctly read on DB load. [#1020]
03/10 F Buggy message when deleting invalid number from ACCESS/XOP list. [#1025]
03/18 F Hide password for ignored users in log/logchan. [#1054]
03/23 F Some BS cmds no longer send error msgs to users without access. [#1062]
03/23 F Fixed NS RECOVER sending "(null)" in some places. [#1064]
03/23 F Force a user off a nick when it is suspended. [#1065]
03/23 F Fixed CS SET MLOCK requiring a param to allow clearing. [#1044]
03/30 F Fantasy commands in CTCP ACTIONs will now be ignored. [#1073]
04/03 F SECUREOPS now igores modechanges from ulined servers. [#1004]
04/06 F Patch to update documentation on CS RESTRICTED... [#1039]
04/18 F Don't enforce akicks/forbidden/.. on clients on ulined servers. [ #00]
06/02 F Fixing CS HELP output to not imply you can invite anyone... [#1081]
06/11 F Remove check for NSModeOnID from NS UPDATE. [#1082]
06/26 F Fixed several bugs in parsing TS6 encoded commands. [ #00]
Provided by Adam <[email protected]> - 2009
01/28 F Added internal support for +j channelmodes. [#1001]
02/07 F CS OP/PROTECT/etc now enforced SECUREOPS setting. [#1006]
03/07 F Channel list re-ordering. [#1024]
03/22 F Log message about the deleting from channel access list. [#1030]
05/08 F Allow jupe on all bar uplink and self. [#1076]
05/10 F MySQL query should no longer fail when password/salt are long [#1078]
06/11 F Fixed potential crash in Charybdis protocol module. [ #00]
06/15 F Fix memory leak in NS SUSPEND. [ #00]
Provided by mooncup <[email protected]> - 2009
02/04 F Automatically reapply vhost on hs off for unreal32. [ #00]
04/03 F MS STAFF sends wrong syntax error. [#1050]
Provided by DukePyrolator <> - 2009
03/15 F Log error when NSMemoReceipt isn't defined in config. [ #00]
03/22 F Fixed memleak in channels.c. [ #00]
05/06 F CS founder status not always correctly removed on LOGOUT. [ #00]
05/17 F Change sizeof() to strlen() in db_mysql_secure(). [ #00]
Provided by Szymek <> - 2009
03/30 F Fix HS OFF to work in all cases on InspIRCd. [#1075]
Anope Version 1.8.0
-------------------
10/19 F Updated Anope Credits [ #00]
11/12 F Fixed a potential problem with NS ACCESS and UseRDB [ #00]
11/14 F Fixed two potential format vulnerabilities. [ #00]
11/15 F Fixed ns resending of passcode issue. [#964]
12/05 F Fixed session count being decremented twice on GHOST. [#969]
12/05 F Fixed CS setting +i when akicking a user from an empty channel. [#973]
12/07 F Fixed improper detection of 'd' usermode on UnrealIRCd. [#966]
12/20 F Fixed crashbug in db-merger. [ #00]
12/29 F Fixed incorrect merging when db-merger is given arguments. [#976]
12/29 F Fixed akicklist not being reordered after a nickcore is dropped. [#983]
Provided by Julien S. <[email protected]> - 2008
11/14 F Fixed BotInfo::chancount not being set properly with UseRDB [#965]
Provided by Szymek <[email protected]> - 2008
10/25 F Updated Polish language file translation. [ #00]
Provided by Kein <[email protected]> - 2008
10/25 F Updated Russian language file translation [#959]
Anope Version 1.7.24
--------------------
10/14 F Fixed minor error in German language file. [#958]
10/12 F Fixed language error in saset help. [ #00]
10/12 F Fixed MySQL DB routines not storing passwords properly. [#940]
10/12 F Fixed OS STATS missing HS and showing disabled clients. [#956]
10/19 F Added warning regarding combined use of MySQL and skeleton mode. [#957]
Provided by Szymek <[email protected]> - 2008
10/14 F Updated Polish language file translation. [ #00]
Provided by Han` <[email protected]> - 2008
10/19 F Updated German language file. [ #00]
Anope Version 1.7.23b
--------------------
10/06 F Fixed issue with encrypted nick databases. [ #00]
Anope Version 1.7.23
--------------------
10/01 A Added modular database back-end for IGNORE. [#948]
09/18 R Removed password truncating. [ #00]
09/15 F Dealt with the nss_dns.so.1 issue on freebsd 7. [ #00]
09/23 F Fixed numerous possible buffer overflows in NS and CS. [ #00]
09/25 F Fixed UnRestrictSAdmin on Unreal and Inspircd. [#942]
09/25 F Fixed menu not properly removed after uninstall on windows. [#944]
09/27 F Fixed a buffer overflow in enc_sha1. [#947]
09/30 F Fixed error in OPER help. [#943]
09/30 F Fixed OS IGNORE behaviour. [#941]
09/30 F Fixed error in the SASET help. [#950]
10/01 F Fixed an error in the OS IGNORE documentation. [#948]
10/01 F Fixed DB routines not storing nick passwords properly. [#940]
10/04 F Fixed errors in CS LOGOUT documentation. [#941]
10/04 F Fixed missing optional params in MODLIST help. [#951]
Provided by Robin Burchell <[email protected]> - 2008
09/22 F Enabled UMODE functionality for InspIRCd 1.1 [ #00]
09/22 F Fix pointer comparison on non-ptr in CS CLEAR. [ #00]
09/23 F Possible buffer overflow in NS/CS REGISTER. [ #00]
09/27 F Incorrect maths in strnrepl(), from atheme/denora. [ #00]
Anope Version 1.7.22
--------------------
01/24 A Added a check for hosts too long in BotServs bots. [ #00]
02/12 A Added SUSPENDED to NS LIST keywords. [#869]
02/20 A Added NS SASET LANGUAGE. [#872]
09/03 A Added CIDR support in channel bans/excepts. [#876]
09/03 A Anope on windows now has advanced startup options. [#931]
01/15 F BOT_NOT_ASSIGNED language string error. [#828]
01/15 F listchans now shows if a channel is suspended. [#825]
01/15 F listnicks now shows if a nickname is suspended. [#825]
01/15 F Re-assigned access to OS CHANLIST to Services Opers. [#827]
01/24 F Several language errors. [ #00]
01/26 F Various oddities in moduleAddData(). [#833]
01/26 F Various oddities in ChanServ suspend code. [#834]
01/26 F Channel walking for mass modes and restoring topics. [#835]
01/26 F Memory leaks in OperServ CLEARMODES. [#836]
01/26 F Check for LogChannel when running with -logchan option. [#837]
01/26 F Enough LogChannel checks for bs_say and bs_act with LogBot on. [#838]
01/26 F Memory leak and old code in ChanServ CLEAR. [#839]
01/26 F Memory leak in ChanServ LIST. [#840]
01/26 F Memory leaks in HostServ SETALL. [#841]
01/26 F Memory leak in ChanServ AKICK. [#842]
01/26 F Removed broken detection of Windows MCE/Tablet edition. [#845]
02/04 F Memleak in botchanmsgs(), botserv.c [#850]
02/04 F Memleak in bs_fantasy_seen.c [#851]
02/04 F Memleak in bs_fantasy_unban.c [#852]
02/04 F No variable for NSReleaseTimeout in NICK_RECOVERED message. [#848]
02/04 F Added missed NickServ HELP for RESEND command. [#847]
02/05 F Updated config.guess and config.sub from upstream. [#853]
02/05 F Various small compiler warnings. [#685]
02/05 F Updated docs/WIN32.txt. [#846]
02/05 F Removed bs_fantasy_unban from core modules. [#854]
02/05 F Defcon mode parsing breaking when fed with modes with parameters. [#855]
02/05 F do_cmode() called without passing TS. [#820]
02/07 F do_sjoin() looking for NULL-nick sometimes with TS6. [#858]
02/07 F Oddity in do_cmode(). [#859]
02/07 F findchan() debug messages not being logical. [#857]
02/07 F NickServ replying to SVSNICK command when OperServ must. [#861]
02/11 F Fixed configure script so it will complain about args. [#864]
02/11 F Fixed memory leak in add_akill(). [#868]
02/11 F Fixed memory leak in cs_akick(). [#870]
02/11 F Added missed debug message when HostServ is disabled. [#863]
02/12 F rdb_close() where rdb_open() is used in rdb_dbase() functions. [#862]
02/12 F Removed extra loop when parsing defcon modes. [#867]
02/21 F Fixed errors in lang files related to NS SASET LANGUAGE [#881]
04/30 F Operators can now also use NickServ INFO ALL. [ #00]
05/12 F install.js now works properly on x64 machines [#897]
05/12 F anope_cmd_notice_ops for unreal now includes source. [ #00]
05/12 F moduleNoticeLang() now calls notice_user instead of notice(). [ #00]
08/11 F Updated os_raw.c to show up as a 3rd party module. [ #00]
08/15 F CS OP now correctly works if there is only 1 user in the channel. [#922]
08/16 F Forbidden channels no longer appear in /list when inhabited. [#924]
08/17 F Various InspIRCd issues. [#832]
08/18 F CS GETKEY response. [#880]
08/21 F Potential issues caused by not setting SO_REUSEADDR on socket. [ #00]
08/28 F Fixed several language & help related errors. [#875]
08/28 F Replaced static count in login/opernews help. [#882]
08/28 F Updated help on ChanServ AKICK. [#879]
09/01 F Fixed crashbug in cs_access. [#932]
09/02 F Fixed bug in enc_none in combination with truncated pass. [#934]
09/03 F Fixed variables not correctly shown in help. [#873]
09/04 F Rewrote the ignore system to fix several issues. [#930]
09/13 F AKICK now respects the PEACE setting. [#935]
09/13 F Fixed bug in ratbox RESV support. [#937]
09/14 F Fixed CLEAR not always sending correct modes. [#938]
09/14 F Fixed compile warning in os_clearmodes.c. [#939]
Provided by Robin Burchell <[email protected]> - 2008
08/08 F Strict warnings in send.c from comparing address of non-ptr [ #00]
08/08 F Removed sa-commands from inspircd protocol support. [ #00]
08/24 F InspIRCd FMODE timestamp issue. [#927]
Provided by Christian Schroer <[email protected]> - 2008
07/20 F Updated Deutch language file. [#892]
Provided by Trystan <[email protected]> - 2008
02/11 F Last part of memory leak in cs_akick() [#870]
Provided by Johno Crawford <[email protected]> - 2008
02/08 F x86_64 generating improper SHA1 hash values. [#856]
Provided by Jan Milants <[email protected]> - 2008
01/16 F Server traversion with next_server() failed to list all servers. [#831]
02/08 F Removed excessive free in ChanServ AKICK code. [#849]
07/20 F make install now runs install routine for modules subdirs also. [#917]
07/20 F Fixes weird hs_setall behaviour (memory issues). [#916]
07/20 F DEFCON was akilling ulined servers clients. [#899]
07/20 F Botserv replying with /(null). [#894]
07/20 F Anope will not limit sessions for ulined servers. [#909]
07/20 F EVENT_BOT_KICK not being send under all circumstances [#910]
08/17 F Changes.conf updated with forgotten deleted directives. [#905]
Provided by Martin J. Green <[email protected]> - 2008
08/17 A SQLINE and SGLINE support for Hybrid. [#887]
Provided by Twitch <[email protected]> - 2008
08/17 F Warnings in users.c. [#925]
Provided by Hal9000 <[email protected]> - 2008
04/29 F Potential crash in channels.c. [ #00]
04/29 F TS handling on incoming FMODE with InspIRCd 1.1. [ #00]
05/20 F Possible crash in new TS handling for InspIRCd 1.1. [#904]
Anope Version 1.7.21
--------------------
12/30 F Grouped root nicks could result in loss of power when using MySQL.[#812]
01/01 F Databases not being saved on quit caused by connection error. [#811]
01/05 F Re-idenficiation after netsplit on InspIRCd. [#817]
01/05 F Founder channelmode (+q) not correctly parsed in FJOIN. [ #00]
01/06 F Updated documentation where needed. [ #00]
01/06 F InspIRCD +q and +a prefixes were swapped. [ #00]
01/09 F InspIRCd crash on certain FMODE sends. [#821]
01/12 F Nonsensical data appended to some bans. [#824]
Provided by Trystan <[email protected]> - 2008
01/04 F Detection of Windows Vista and Windows Server 2008. [#815]
Provided by Jan Milants <[email protected]> - 2008
01/04 F EVENT_ACCESS_DEL being sent with NULL-param when using XOP. [#816]
Provided by Kein <[email protected]> - 2008
01/04 A Russian translation for bundled modules. [ #00]
01/04 F Updated Russian language file. [ #00]
Anope Version 1.7.20
--------------------
12/28 F Some silly logic errors in anope_event_capab() in inspircd11.c [ #00]
12/28 F RSQUIT support for InspIRCd 1.1 [#692]
12/24 F inspircd11 module now uses FMODE instead of MODE [#724]
08/29 A Session limit exceptions now support IP numbers as hostmask. [#723]
08/29 A Added InspIRCd11 vIdent support. [#684]
08/30 A Added support for channel keys to UnrealIRCd 3.2 SVSJOIN command. [#774]
08/31 A Added hostip member to user_ struct so we can now use users' IPs. [ #00]
12/03 A Support for MS VC++ 2008 Express. [#802]
06/15 F Non-existing servers being SQUIT'd when they were juped. [#726]
06/15 F Back online notice being sent to juped servers. [#726]
06/15 F Not informing opers a SQUIT for a juped server was received. [#718]
06/18 F OperServ MODINFO giving misleading errors. [#732]
07/09 F Various access levels for oper-commands. [#729]
07/09 F GlobalOnCycle notices being sent to Anope itself or juped servers.[#737]
07/09 F Possible buffer overflow in inspircd10.c [#741]
07/09 F Various compile errors with `make strict`. [#743]
07/14 F No longer displaying commands on add/remove in debug mode 1. [ #00]
08/05 F ChanServ access level AUTODEOP works again. [#750]
08/08 F Wrong debug notice when killing people due to the session limit. [#734]
08/08 F DefCon modes being re-set after mass-unset when leaving DefCon. [#727]
08/11 F CAPAB tokens for InspIRCd 1.1 never parsed. [#742]
08/21 F Updated the WIN32.txt document a bit. [ #00]
08/21 F Re-worded the CHAN_LEVELS_XOP string in en_us. [ #00]
08/27 F Functions firstuser and first_uid now don't collide when used. [#764]
08/27 F Is not posible to use CS SET XOP when cs_xop is not loaded. [#747]
08/27 F Services administrators and opers can be kicked by ChanServ now. [#753]
08/27 F Added missing help for NS CONFIRM. [#759]
08/27 F Fixed typo in English language file. [#767]
08/27 F Protocol for InspIRCd 1.1 now uses SVSHOLD. [#683]
08/28 F Bug when truncating passwords to PASSMAX with enc_none. [#765]
08/28 F Bug in PTLink protocol where topic time was not being sent. [#763]
08/28 F Automatic displaying of 'Limited to ...' lines in help. [#729]
08/28 F We now check required commands existance on inspircd11 protocol. [#773]
08/28 F SuperAdmin now always overrules channel founder. [#770]
08/29 F InspIRCD11 protocol now uses SVSJOIN/PART instead of SAJOIN/PART. [#772]
08/29 F OperServ SGLINE ADD now strips a trailing space from the mask. [#761]
08/29 F TS6 UID generation for all supported TS6 IRCDs. [#731]
08/31 F is_excepted() now uses match_userip() also. [#778]
08/31 F Wrong reply when deleting entries by number (akick, badwords) [#776]
09/01 F Added a note in WIN32.txt about pre-compiled installers [# 00]
09/02 F Created MySQL indexes to decrease load on the database. [# 00]
09/05 F Removed Limited to... message from os_akill.c and os_modload.c [#780]
09/05 F Removed extra bolded commands in OS HELP SET [#781]
09/08 F User being able to set modes on empty channels without permission.[#703]
09/09 F Undeclared identifiers in module cleaning code on windows. [#782]
09/09 F Missing test to check mysql_config sanity in ./configure. [#757]
09/24 F Polish language reported itself as English when switching to it. [#789]
09/24 F OperServ HELP OPER showing incorrect access levels. [#788]
10/05 F Typo in inspircd11.c checking for m_chgident.so loaded. [#793]
10/07 F Segfault on missing required InspIRCd11 modules. [#794]
12/02 F Fixed a typo in en_us.l. [#806]
12/02 F Fixed a typo in install.js. [#804]
12/02 F Fixed the protect commands in inspircd11.c. [#805]
12/03 F Unregistered users now have access level 0 instead of -1. [#796]
12/03 F Malformed command for InspIRCd 1.1. [#797]
12/03 F Updates to various documentation. [ #00]
12/15 F Inconsistent use of ACESS events. [#791]
12/27 F Module error strings were outdated. [#810]
Provided by Trystan <[email protected]> - 2007
08/29 F Module runtime directory not always properly cleaned up. [#768]
09/24 F ModuleGetConfigDirective having issues with CRLF line-ends. [#787]
Provided by nenolod <[email protected]> - 2007
08/29 F TS6 UID generation for Charybdis. [#731]
Provided by Jilles Tjoelker <[email protected]> - 2007
12/28 F Wrong TS sometimes sent in SJOIN. [#685]
Anope Version 1.7.19
--------------------
01/01 A Support for InspIRCd 1.1. [ #00]
01/02 F Issues with both InspIRCd protocol modules. [ #00]
01/02 F Error reporting on LIST commands accepting ranges. [#622]
01/02 F ChanServ LIST now searches for '#chan' if only 'chan' is given. [#622]
01/06 F Missing backtick in SQL query for saving news items. [ #00]
01/06 F Some OperServ commands not respecting OSOpersOnly when disabled. [#657]
01/06 F MySQL code not always reporting Services Root flags correctly. [#659]
01/10 F Minor syntax error in anoperc. [#665]
01/10 F CHAN_SYMBOL_REQUIRED claimed one can register local (&) channels. [#666]
01/10 F BotServ kicks now obeys the channel's SignKick option. [#663]
01/15 F Only send PONG during MySQL save when we're not syncing. [#669]
01/15 F InspIRCD 1.1 protocol module used windows incompatible strtok_r. [#667]
01/22 F Crash during first save when MySQL is enabled. [#672]
03/03 F SAs can no longer move other SAs down to ServicesOpers. [#690]
03/03 F We now send out UNKLINE on hybrid when /os akill del is issued. [#656]
03/14 F /os modunload dosnt clear moduleData before calling AnopeFini. [ #00]
03/18 F DefCon's AKILL will now honor the server's sync flag. [#643]
03/18 F Password length checking in some cases was out. [ #00]
04/21 F DefCon did not force DefCon modes while in DefCon mode. [#661]
04/21 F Event ACCESS_DEL not sent on mass-deleted in cs_xop. [#706]
06/04 F prenick database was not backed up. [#713]
06/04 F Typo in SQL query in rdb.c [#719]
06/04 F remove_backups() did not check that s_Bot/HostServ != NULL. [ #00]
06/09 F NSDefMsg can now only be enabled when UsePrivmsg is enabled. [#671]
06/09 F NSDefMsg now controls send behaviour for unregistered users. [#671]
Provided by Jan Milants <[email protected]> - 2007
04/21 F Array count decremention in the ChanServ access lists. [#662]
04/21 F Swapped ACCESS_ADD and ACCESS_CHANGE events in cs_xop. [#705]
Provided by Jilles Tjoelker <[email protected]> - 2007
04/21 F Various Charybdis and TS6 related fixes. [#707]
Anope Version 1.7.18
--------------------
12/09 A Ability to see if AutoOp is enabled in NickServ INFO displays. [#621]
12/12 A EVENT_BOT_KICK and EVENT_BOT_BAN added for modules. [ #00]
10/17 F Encryption, users can now pick none, old, md5 or sha1. [ #00]
10/18 F MLock support for +c was missing on ultimate3. [ #00]
10/20 F Error message when unable to register due to NSRegDelay. [#616]
10/21 F SVSPART sends SVSPART instead of EOB. [#617]
11/02 F HostServ REQUEST module no longer returns MOD_STOP. [ #00]
11/02 F AnopeRC sends correct signals. [#623]
12/07 F BotServ KICK incorrectly reported assigned status of bots. [#632]
12/07 F Windows install.js script is now able to check multiple drives. [#634]
12/09 F Reviewed and updated all of the MySQL code. [ #00]
12/09 F Langfiles had CHANAKILL instead of CHANKILL in syntax lines. [#640]
12/10 F NickServ ALIST not accepting Founder as level param. [#629]
12/10 F EVENT_TOPIC_UPDATES was not always sent when it should be. [#641]
12/24 F anoperc sends SIGTERM for restart and uses command line params. [#645]
12/24 F Nickname changes were not recognised on TS6-based IRCd's. [#646]
12/24 F Small typo in CHAN_REGISTER_NONE_CHANNEL. [#647]
12/24 F Display error messages when RDB functions fail. [ #00]
12/27 F ModuleNoticeLang was printf'ing twice. [#650]
12/27 F Module (un)loading was only giving error numbers, not messages. [#652]
12/29 F Channel joins logged twice on some IRCd's with debug mode on. [#651]
12/29 F Botserv incorrectly attempted to remove bans with BSSmartJoin [#653]
Anope Version 1.7.17
--------------------
10/15 F MySQL detection now checks for valid values from mysql_config. [ #00]
10/15 F Correctly compiling mod_version with module options now. [ #00]
10/16 F MySQL functions did not always escape all values correctly. [#612]
10/16 F Made anoperc restart to accepts arguments like anoperc start. [#611]
10/16 F MySQL query debug quoted displayed queries just a tad too much. [ #00]
10/16 F MySQL query error in RDB functions. [ #00]
10/17 F Erroneous code caused MySQL to store all passwords as blank. [#614]
10/17 F Saving of ttb-data when using MySQL. [ #00]
Anope Version 1.7.16
--------------------
Provided by Anope Dev. <[email protected]> - 2006
09/10 A Added SASET AUTOOP to NickServ to match SET AUTOOP. [#588]
09/11 A Added detection in install.js for the latest PlatformSDK. [#596]
09/29 A Ability for modules to backup their databases. [#604]
10/07 A IRCDs supporting SVSMODE now have it parsed as MODE. [#603]
08/09 F Fixed port checking when using command line switches. [#575]
08/14 F Fixed db_mysql_query for better robustness. [#585]
08/27 F Fixed mod_current_module being incorrect resulting in segfault. [#593]
09/10 F Issues with make strict for the src/tools dir. [#579]
09/10 F Help for NickServ SET AUTOOP was missing. [#587]
09/10 F Added HOP to the /CS ACCESS error when XOP is enabled. [#598]
09/10 F MySQL no longer connects again on each query. [#595]
09/10 F Nick Enforcers can now be whois'd on services. [#601]
09/10 F Corrected valid nick characters for /OS SVSNICK. [#599]
09/17 F Small mistakes in Dutch language file. [ #00]
09/23 F Restarting under Windows now works correctly [#589]
09/25 F Make now works with multiple threads. [ #00]
09/28 F We will now process UnrealIRCd's SVS(2)MODE messages. [#603]
09/29 F The 'nmake clean' on Windows now uses 'spotless' instead [ #00]
09/29 F Fixed a typo in Makefile.win32 [ #00]
10/07 F BotServ KICK CAPS now only counts alphabetic chars for percentage.[#607]
10/09 F Removed LANGUAGE from the SASET help in most languages. [#609]
Provided by Trystan <[email protected]> - 2006
08/20 F Fixed several compiler warnings. [#586]
08/20 F Fixed several compiler warnings. [#584]
08/20 F log.c rewrite. [#582]
08/20 F Fixed bsd compier warning. [#578]
09/10 F Fixed mass compiler warnings on FC5 with make strict. [#583]
Provided by ThaPrince <[email protected]> - 2006
08/22 F Plexus3 svid_mode3 support fixed. [ #00]
08/23 F Plexus3 syncing after remote netjoins issue. [ #00]
09/08 F Plexus3 noop support. [ #00]
Anope Version 1.7.15
--------------------
Provided by Anope Dev. <[email protected]> - 2006
06/14 A Indication in the version string if we're running on win32. [ #00]
06/20 A Added support for Visual Studio 2005. [#408]
06/22 A Ability for ircd modules to set extra modes on id. [ #00]
06/22 A Support startup flag. [ #00]
06/21 A Module version check. [ #00]
06/25 A Optional strict privmsg format. [ #00]
07/15 A Added BOT_LONG_IDENT for too long idents. [#538]
07/10 A Moved ns_noop into core and assigned an NI_ flag. [#423]
08/06 A Option to modules_unload_all() to say if we should unload proto. [#552]
07/22 R Removed clone stuff. [ #00]
04/08 F Fixed Charybdis support on win32. [#487]
04/08 F Fixed thread stuff on windows. [#488]
04/08 F Fixed SGLine stuff on inspircd (not supported). [#489]
04/20 F Fixed index of backtrace(). [#499]
04/29 F Added is_on_chan() check for fantasy kick commands. [#501]
05/13 F Fixed memleak in moduleGetConfigDirective(). [#504]
05/16 F Suspended nicks and chans won't expire from now on. [ #00]
05/25 F NICKIP/NICKv2 support on unreal32. [#507]
05/25 F src/bin/register being too case sensitive on YES. [#500]
05/25 F src/bin/register still said ./configured instead of ./Config . [ #00]
05/25 F Q:Line not added for bots when only changing nicks. [#493]
06/03 F Removed INTTYPE_WORKAROUND stuff which could cause warnings. [#509]
06/03 F Fixed compiler warnings. [#511]
06/10 F Win32 Makefile for plexus3 support. [#520]
06/11 F Two pointers in modules.c weren't NULL-ified by default. [ #00]
06/11 F Updated InspIRCd protocol support module. [ #00]
06/11 F Module Clear Error macro was broken on *BSD. [#515]
06/13 F Walking memory using wrong pointer in moduleGetConfigDirective. [#516]
06/13 F Added cleanup code to tools/anopesmtp. [#464]
06/13 F Fixed a lot of redundant function declarations. [#510]
06/14 F Removed last traces of threading support. [#498]
06/14 F Changed mysql detection to use mysql_config. [ #00]
06/15 F OpenBSD Config issue. [#519]
06/15 F langcomp with _GNU_SOURCES defined. [ #00]
06/16 F Fixed several memleaks in ns_noop.c. [ #00]
06/16 F Fixed typo in function name. [#524]
06/18 F Removed legacy my_vsnprintf code. [#496]
06/18 F HOP cannot remove VOPs anymore to be consitent with adding. [#525]
06/18 F Moduledata was cleared before calling AnopeFini. [#523]
06/20 F Make does not recompile everything even on no change anymore. [ #00]
06/20 F Versions in win32.rc are now updated correctly. [#526]
06/21 F Syntax for NickServ SET MSG showed syntax for SET PRIVATE. [ #00]
06/26 F A few small bugs with module configure scripts. [ #00]
07/02 F Fixed readonly stuff on memoserv del. [#529]
07/13 F Fixed socket buffering, hopefully should make inspircd play nice. [ #00]
07/14 F Removed old HAS_RTLD_LOCAL check. [#541]
07/20 F Removed bold chars from botserv langauge files. [#530]
07/20 F Fixed win32 versions of db-merger.c and epona2anope.c. [#536]
07/20 F db-merger.c and epona2anope.c will now properly delete old dbs. [ #00]
08/02 F Fixed very nasty typecast. GCC Hardened should now work. [#557]
08/03 F Corrected usermodes for ratbox and shadow. [#558]
08/04 F Various small fixes for Charybdis. [#561]
08/04 F Autovoice for unregistered users works again. [#569]
08/05 F Support for SVSJOIN/SVSPART/SWHOIS in protocol modules. [#566]
08/05 F os_info save on unload. [#523]
08/05 F Externed doValidHost call for modules to use. [#570]
08/05 F Lang files now support %R for use with StrictPrivMsg. [#565]
08/06 F Segfault when shuting down anope. [#491]
08/06 F Fixed typos in cs_appendtopic.c. [#571]
08/06 F TSMode support for ratbox; TS6 works for ratbox now. [#563]
08/07 F Increased langauge buffer size. [#572]
08/08 F Fixed integer types in db-merger.c. [#573]
Provided by ThaPrince <[email protected]> - 2006
05/19 A Plexus 3 support. [ #00]
08/07 F Plexus 2/3 updates, registered nick format. [ #00]
06/25 F root/admin/oper mode now honours secure. [ #00]
Provided by Trystan <[email protected]> - 2006
06/15 F NS Resend delay. [ #00]
07/02 F Fixed module version stuff. [#531]
07/14 F Another version fix. [#545]
07/15 F Fixed max param count for SJOINs. [#549]
07/15 F Fixed !halfop fantasy stuff. [#534]
07/25 F Fixed /newmask stuff for ptlink. [#560]
07/14 A Added anope_cmd_action() and new param for EVENT_PART_CHANNEL. [#550]
Anope Version 1.7.14
--------------------
Provided by Anope Dev. <[email protected]> - 2006
02/04 A Events for channel kicks and NickServ logout. [ #00]
03/02 A Added support for TS6 Save (FNC) on ratbox, shadow and charybdis. [#424]
03/07 F Counting issue in /os stats uplink. [#468]
03/02 F BotServ/HostServ are no longer loaded when they are disabled. [#440]
03/01 F Added ircd module support for valid_chan. [ #00]
03/01 F Minor issues in ns_saset. [#455]
02/13 F Yet anotehr 64bit issue. [ #00]
01/14 F SGLines will now be removed correctly. [ #00]
01/26 F Export buildStringList() for modules. [#425]
02/11 F Fixed a few memleaks. [#420]
02/17 F cs_getpass will now unload if encryption is enaled. [ #00]
02/19 F Fixed position of EVENT_ACCESS_DEL. [ #00]
03/01 F Fixed ident check on /bs bot change. [#463]
03/01 F Fixed # prefix check on /cs forbid. [#461]
03/01 F Fixed events on /join 0. [#417]
03/01 F Added NULL checks to add_invite and add_exception. [#419]
03/01 F Fixed suspend check on /cs invite. [#429]
03/01 F Fixed memleaks in some protocol files. [#434]
03/01 F Fixed bot check on /bs unassign. [#446]
03/01 F Fixed wasteful finduser() call in os_oline.c. [#457]
03/01 F Fixed memleak in runDefCon(). [#451]
03/01 F Fixed function type of get_xop_level. [#459]
03/01 F Prevented registration of UnrealIRCd's "local" channels. [#456]
03/01 F Fixed bug in moduleNoticeLang(). [#421]
03/01 F Made should_mode_change() extern. [#436]
03/01 F Made add_ns_timeout() static. [#438]
03/01 F Fixed memleak in os_mode.c. [#444]
03/01 F Fixed memleak in do_mass_mode(). [#450]
03/01 F Fixed memleaks in cs_list.c, hs_list.c and ns_list.c. [#447]
03/01 F Fixed memleaks in hs_set.c. [#441]
03/02 F Fixed missing TS6 functionality in channels.c. [#418]
03/02 F Fixed possible overflow in process(). [#445]
03/02 F Fixed memleak in do_cmode(). [#430]
03/03 F Rage, Bahamut and Viagra will now use the correct server desc. [#467]
03/03 F Fixed botserv's mode behaviour with protect umode. [#333]
03/18 F Fixed sstrdup() with NULL argument in cs_akick.c. [#460]
03/18 F Fixed charybdis umodes. [#471]
03/19 F Fixed a gcc4 compiling issue. [#453]
03/21 F Fixed bot check on /bs kick. [ #00]
03/23 F Fixed some obsolete defines. [#390]
Provided by nenolod. <[email protected]> - 2006
02/03 A Support for Charybdis IRCd. [ #00]
02/12 F more va_list issues for 64bit platforms. [ #00]
01/15 F va_arg issue on various 64bit platforms. [#415]
Provided by illu. <[email protected]> - 2006
01/25 F Updated the french language file. [ #00]
Provided by Trystan <[email protected]> - 2006
03/18 A New icon file for anope win32. [#472]
03/14 A Anope will now terminate on Win98. Added version check. [#473]
03/01 A Clarity on module loading status numbers. [#435]
03/24 F Fixed segfault on /bs change. [#483]
03/22 F Fixed distclean in all Makefiles. [#481]
03/19 F Fixed some gcc4 compiling issues. [#453]
03/18 F Fixed closing of file pointer in langtool.c. [#478]
03/14 F Fixed gcc switches for modules. [#474]
03/12 F moduleGetLastBuffer() returning NULL on alias and pseudo clients [#476]
03/12 F nickIsServices() returns correctly for aliases [ #00]
03/05 F Fixed moduleNoteiceLang() issue. [#469]
03/01 F Applied ultiamte3 chan sqline patch. [#412]
03/01 F Crash when not giving user for moduleGetLangString. [#454]
02/23 F Usermatching possible null arg on sstrdup. [ #00]
02/20 F Fixed some TS6 issues with do_cmode() and do_nick() [#396]
02/12 F Double unbanning of in certain conditions. [ #00]
01/25 F va_copy issue for various platforms. [ #00]
Provided by ThaPrince <[email protected]> - 2006
02/28 F fantasy kick now honours protected, just like cs versions. [ #00]
Provided by Brain <[email protected]> - 2006
03/01 F Updated inspircd protocol files. [#422]
Provided by Monk <[email protected]> - 2006
03/22 U Updated de.l. [#482]
Anope Version 1.7.13
--------------------
Provided by Anope Dev. <[email protected]> - 2005
12/26 F Generating language.h failed on certain setups. [ #00]
12/11 F First user on HelpChannel always got +h, even without access. [#405]
12/02 F Missing quitmessage when catching unknown signals. [ #00]
11/14 F Added a check for nickchars before trying to use them in /os stats[ #00]
11/08 F Remove tmp modules from runtime folder when we can. [ #00]
11/02 F !protect/!deprotect no longer work for a number of ircds. [#403]
11/02 F segfault when os modloading a non-existing module. [ #00]
11/01 F /os reload - BSFantasyChar was not sstrduped if not defined. [ #00]
10/30 F Updated docs/FAQ. [ #00]
Provided by Trystan <[email protected]> - 2005
11/19 F find_byuid for ircds which didnt give us a uid. [ #00]
01/22 F Updated config.guess and config.sub [ #00]
Provided by Vladimir K. <[email protected]> - 2005
12/11 F Enforcers had incorrect user when only user specified. [#410]
Provided by Brain <[email protected]> - 2005
12/26 A InspIRCd 1.0 Beta 6+ support module to replace old (b3) support. [ #00]
Anope Version 1.7.12
--------------------
Provided by Anope Dev. <[email protected]> - 2005
10/01 A Information on uplink server can be displayed via OperServ STATS. [ #00]
09/29 A Configuration option to change fantasy command prefix character. [ #00]
09/28 A Event for fantasy commands triggered without channel access. [ #00]
10/25 F Memleaks and not removing tempfiles on failed module loading. [ #00]
10/25 F Help response for os random news was using opernews text. [ #00]
10/05 F Changed NickLen and BSFantasyChar into recommended and optional. [ #00]
10/04 F Added missing hs_request to win32 modules makefile. [ #00]
10/03 F Changed error on identical userkeys into a warning. [ #00]
10/02 F Added check in OperServ stats to avoid segfault without param. [ #00]
10/02 F Numeric 219 didn't give correct letter for STATS u. [ #00]
10/02 F ChanServ HOP was available on IRCDs without halfop support. [ #00]
10/01 F Placed capab tokens and flags into a table for easier handling. [ #00]
10/01 F Capab parsing on hybrid/plexus/ratbox failed. [ #00]
10/01 F Typo in example.conf (DevNullAlias was called DevNullName). [ #00]
10/01 F UserKeys gave an error without message when missing. [ #00]
09/30 F Stripping fantasy character from fantasy commands. [ #00]
09/28 F Made module (un)loading code more friendly for modularized core. [ #00]
09/28 F NickServ SASET didn't fill the nick in the 'not registered' line. [ #00]
Provided by Hal9000 <[email protected]> - 2005
09/28 F Updated Italian language file. [ #00]
Provided by Cloud <[email protected]> - 2005
09/28 F Updated German translation for cs_appendtopic. [ #00]
Anope Version 1.7.11
---------------------
Provided by Anope Dev. <[email protected]> - 2005
09/01 A Function to retrieve a module language string. [ #00]
08/21 A NickServ SASET to set options on other nicks (split from SET). [ #00]
08/10 A New Windows installation files. [ #00]
07/04 A Warning when running Anope as root (DON'T DO THAT! :)). [ #00]
07/01 A Events for channel access/xop updates. [ #00]
06/26 A New module pack module: hs_request. [ #00]
06/03 A Protocol files can now fill mod_current_buffer with custom code. [#389]
09/25 F Missing End If in install.vbs. [ #00]
09/24 F Typo in English language file. [ #00]
09/21 F Segfault when find_byuid() was called with a NULL argument. [ #00]
09/20 F Ident length checking when adding a bot was broken. [ #00]
09/20 F No response was giving when trying to load a non-existing module. [ #00]
09/18 F Last host was not always correctly set to a vHost if applied. [ #00]
09/14 F Various issues with handling the version identifiers. [ #00]
09/13 F make strict/profile now work for core and protocol files. [ #00]
09/13 F Unused variables removed from modules.c. [ #00]
09/11 F Disallow botnicks longer than the net's max nick length. [ #00]
09/09 F Giving some more error output when opening a database fails. [ #00]
09/04 F Protocol module for plexus called wrong UNSGLINE function. [ #00]
08/31 F Help for /os modlist had faulty 'limited to' information. [ #00]
08/30 F Changed UserKeys to RECOMMENDED instead of REQUIRED. [ #00]
08/29 F Pseudo-clients can now part with no instead of an empty reason. [ #00]
08/29 F Memory leak when using mysql to save data. [ #00]
08/29 F Organised docs/FAQ a bit more and slightly restyled it. [ #00]
08/25 F Compiler warnings in tools with gcc4. [ #00]
08/21 F Default config location in example.conf was wrong. [ #00]
08/10 F Few memleaks in bundled os_info module. [ #00]
08/07 F NS SET sometimes seeing options as nicks. [ #00]
08/05 F Bot max nick length limited by NICKMAX now. [ #00]
07/07 F Typing mistake in module error message. [ #00]
07/07 F Clarified comments for SendmailPath regarding -t option. [ #00]
07/02 F Module languages now default to NSDefLanguage, not English. [ #00]
07/02 F Various compile warnings when using AMD64. [ #00]
07/01 F Modules will now be properly unloaded on shutdown. [ #00]
07/01 F Modules now use a more random filename in the runtime folder. [#400]
07/01 F Most core compile warnings when using make strict. [ #00]
07/01 F Requesting a -version on startup doesn't require a valid config. [ #00]
06/04 F Register script now works again. [#394]
06/04 F Finishing sync for Ultimate3 was not done correctly. [#398]
06/03 F Moved checks for UseTokens, UseTS6, and Numeric. [#385]
06/03 F Load protocol module before launching listnicks/listchans. [#391]
05/29 F operserv opernews dispalys the correct help now. [#386]
05/27 F Updated docs/FAQ. [ #00]
05/25 F Segfault when clearing non-existing nick '0' from ignore list. [#383]
05/25 F Removed a double extern definition of rdb_tag_table. [#381]
05/25 F Fixed mydbgen so it sends the pass and installs in the data dir. [ #00]
05/25 F Not all nick options were displayed in listnicks. [#380]
Provided by Ricardo <[email protected]> - 2005
06/25 A Portugese translation for hs_request. [ #00]
05/30 F Updated Portuguese language file. And bundled modules language. [ #00]
Provided by Trystan <[email protected]> - 2005
09/21 F Various fixes in hs_request. [ #00]
09/21 F NormalizeBuffer() strips CR/LF as well now. [ #00]
09/18 F Removed color codes for tools on win32. [ #00]
09/18 F MySQL detection for win32 in install.vbs had issues. [ #00]
09/18 F Memleak when AddAkiller was enabled. [ #00]
09/13 F Reduntant IRCD defines removed. [ #00]
09/13 F Double Makedile generation. [ #00]
09/06 F Memory for vHosts/vIdents was not (always) being freed. [ #00]
06/04 F Removed ircd-file related code from configure(.in) [#384]
Provided by DrStein <[email protected]> - 2005
08/30 A anoperc is now configured by the Config script [ #00]
Provided by Hal9000 <[email protected]> - 2005
06/27 A Italian translations for modpack modules. [ #00]
06/25 F Updated Italian language file. [ #00]
Provided by ThaPrince <[email protected]> - 2005
09/06 A SGLINE support for plexus. [ #00]
09/10 F Sending XLINEs with plexus was broken. [ #00]
09/06 F Missing sources and other minor issues with plexus. [ #00]
09/04 F SGLINE/SQLINE for ratbox/plexus/etc needs a valid nick. [ #00]
Provided by Certus <> - 2005
09/11 F Took care of an overflow and data corruption. [ #00]
Anope Version 1.7.10
--------------------
Provided by Anope Dev. <[email protected]> - 2005
05/23 F Updated install.vbs to detect SDK paths. [ #00]
05/22 F Removed trailing space for whois output. [ #00]
05/17 F Compiling on solaris and amd64 systems. [ #00]
05/13 F Possible segfault with do_part by using freed memory. [#379]
05/13 F Long hosts got cut off when setting topic and host was recorded. [#377]
05/12 F NSListOpersOnly works correctly. [#375]
05/12 F Using variable for EVENT_PART_CHANNEL after freeing it. [#374]
05/11 F Unable to make when using an old shell. [#369]
05/10 F AnopeFini was called without mod_current_module_name set. [#371]
05/10 F Unidentified users now have level -1 instead of 0 again. [#372]
05/09 F Segfault in ns_maxemail when user's email not set. [ #00]
05/06 F Compiler warnings when using make strict. [ #00]
05/06 F Segfault in os_clearmodes when chan had invites (+I) set. [#357]
05/06 F Identified founders are now logged out if the channel is dropped. [#364]
05/06 F Founders identified by pass can get founder chanmode again. [#358]
05/05 F Segfault in ns_maxemail when passing wrong param count. [ #00]
05/05 F ULined servers still got their modes removed with SecureOps on. [ #00]
05/05 F Missing access checks when removing modes due to SecureOps. [#366]
Provided by crazytoon <[email protected]> - 2005
05/08 A Updated German language file. [ #00]
05/08 A German translation for all modulepack modules [ #00]
05/08 F Removed "IRCDFILE" from the Makefile's [ #00]
05/10 F Removed BOT LIST from BOT_BOT_SYNTAX [ #00]
Provided by Sascha Just <[email protected]> - 2005
05/13 F Nicer used of fgets, dont free the buffer. [#378]
Anope Version 1.7.9
-------------------
Provided by Anope Dev. <[email protected]> - 2005
05/03 A Dutch translation for all modulepack modules, where needed. [ #00]
04/30 A Modulepack with a few useful modules which are loaded by default. [ #00]
04/30 A Modularized all BotServ fantasy commands. [ #00]
04/30 A Event EVENT_PART_CHANNEL for when users part a channel. [ #00]
04/30 A Event EVENT_JOIN_CHANNEL for when users join a channel. [ #00]
04/25 A Support for multiple lines in module language texts. [ #00]
04/25 A Multi language module support. [ #00]
04/22 A Option to make OperServ configurable oper-only or not. [ #00]
04/21 A Events now accept argc/argv making them more useful/expandable. [ #00]
04/20 A Fully modular core now in place, including dynamic help. [ #00]
04/16 A Module subfolders now check configure executed if it exists. [ #00]
04/14 A Added EVENT_BOT_CMD for !commands in a botserv fantasy channel. [ #00]
04/14 A Added EVENT_RELOAD for config reloads. [ #00]
04/13 A moduleGetConfigDirective to allow config files access to the conf.[ #00]
04/12 A IRCD Protocol Module support. [ #00]
03/25 A Added nickserv suspend/unsuspend command. [ #00]
03/25 A Added check for UID in anoperc. Stops running as root. [ #00]
03/11 A Event for database backups. [ #00]
03/09 A Documentation on the proxy detector in docs/PROXY. [ #00]
03/03 A ShadowIRCD 4.0 beta 7 support added. [ #00]
02/27 A Added multi-file module support. [ #00]
02/13 A Internal Event support, see EVENTS in the doc folder for help [ #00]
02/05 A Support for Unreal 3.2 +I channel mode. [ #00]
02/03 A Merged anope-win32 branch into the main, now Win32 ready. [ #00]
05/04 F vHost handling with PTlink was broken in a subtle way. [#352]
05/04 F Missing check for valid ChannelInfo in topic handling. [#363]
05/04 F Module language texts sometimes being mixed. [ #00]
05/04 F Wrong datatype in the config parser for OSInfoDBName. [ #00]
05/03 F Wrong variable checking in anope_event_away(). [ #00]
05/02 F Wrong use of anope_cmd_mode() for dreamforge and ultimate2. [#332]
05/02 F Usermode +R instead of +Z used for services roots with Ultimate3. [#361]
05/02 F Getting op if you had access to protect and not op on a channel. [#355]
05/01 F Typo in include/extern.h with restore_unsynced_topics. [#354]
05/01 F Modes with no arguments where required no longer set with OS mode.[#316]
05/01 F Update win32 documentation and files so it works again. [ #00]
04/30 F Removed newline after BOT_SEEN_UNKNOWN in most languages. [ #00]
04/30 F Updated docs/EVENTS for change to argc/argv and new events. [ #00]
04/27 F Rob's spelling mistakes. It's language, not langauge! [ #00]
04/25 F Displaying help texts with module language system. [ #00]
04/24 F Call to sstrdup() with NULL-args if empty topic was set. [ #00]
04/24 F Event for topic changes only being sent for registered channels. [ #00]
04/24 F Buffer normalization not checking allocated memory for errors. [ #00]
04/21 F Updated example modules to use id strings as versions. [ #00]
04/21 F Renamed EVENT_BOT_CMD to EVENT_BOT_FANTASY. [ #00]
04/19 F Updated docs/FAQ. [ #00]
04/19 F Case sensitive tokens for ircd modules actaully work now. [ #00]
04/16 F Events no longer cause a segfault after being modunload-ed. [ #00]
04/14 F When setting multiple ops, SecureOps will check each user. [#342]
04/12 F Users channel modes are correctly set on join. [#342]
04/11 F Make sure nick isn't in use on nickserv collide. [#341]
04/07 F Added channel names to XOP/ACCESS/AKICK CLEAR [#346]
04/07 F Only users with vHost/vIdent can /hostserv off [#351]
04/01 F Sync state for leaf-servers not updated correctly. [ #00]
03/30 F ChanServ now sets topic again when channel is re-created. [#339]
03/29 F Changed anoperc script to use kill numerics for compliance. [ #00]
03/28 F Moved where GlobalOnCycleUP is located so it now works. [#336]
03/28 F Fixed the change display name function to update correct db table.[#337]
03/28 F Changed the ultimate3 usermode for SRA. [#326]
03/28 F Segfault on joining unregistered channels in some cases. [#327]
03/28 F Adding and removing modes are now merged per user while syncing. [#329]
03/28 F Modes not being correctly removed from all users. [#335]
03/28 F Topics not always set on channel creation. [#334]
03/26 F stripModePrefix not checking if it was stripping a mode prefix. [ #00]
03/26 F Memleak in nickIsServices() [ #00]
03/22 F Wrong behaviour of /ns update for channel founders. [#323]
03/21 F Topics being set too often during bursts. [ #00]
03/16 F Send the correct numeric for a missing MOTD file. [#315]
03/16 F Wrong modes being set in certain cases with SJOIN. [#320]
03/14 F Two normalized strings not being freed. [#314]
03/14 F Various minor mistakes (see bugreport for full list). [#313]
03/14 F Sync state of servers was not recorded reliable enough. [ #00]
03/12 F Services setting already set channel modes. [ #00]
03/12 F Not displaying entrymessage/greets on (re-)sync of uplink anymore.[ #00]
03/12 F Sync state for uplink server not being set correctly. [ #00]
03/11 F EVENT_BOT_ASSIGN now reports channel name instead of bot nick. [ #00]
03/08 F Display of real host instead of vhost on alog(). [ #00]
03/07 F tolower/toupper compiler errors on Win32. [ #00]
03/06 F Services not remove modes correct in some cases. [#308]
03/06 F Protected Umode users are protected from bans. [#311]
03/05 F Added UPDATE to ns help menu [ #00]
03/05 F Updated Unreal 3.2 token support. [#310]
03/03 F Numeric in the config is now a string not an int [ #00]
03/02 F Fixed LogUser message, normalizes the "realname" on nick change. [#306]
03/02 F ircd protocol support for owner and admin taken from proto. files.[ #00]
03/02 F /ns alist output. [#288]
02/28 F normalizeBuffer() now strips two digit color codes [#303]
02/28 F nickIsServices() no longer alters the buffer [#304]
02/22 F Uninitialized variable in NickServ DROP. [ #00]
02/22 F Remote whois sending incorrect numeric back. [#301]
02/22 F Several OperServ commands not respecting NickServ SET MSG. [#302]
02/21 F Updated documentation for one style and small fixes. [ #00]
02/13 F nickIsServices() works if format is nick@services [ #00]
02/12 F Win32 builds can now build with encryption [ #00]
02/10 F mod_current_buffer was not set in all possible cases [#296]
02/07 F Updated userkey information in example.conf. [ #00]