mirror of
https://github.com/anope/anope.git
synced 2026-07-01 18:06:39 +02:00
BUILD : 1.7.6 (500) BUGS : 259 NOTES : Added support for hybrid TBURST -- merry xmas :)
git-svn-id: svn://svn.anope.org/anope/trunk@500 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@354 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
250a9f71cf
commit
53d288cf9d
@@ -15,8 +15,8 @@ Provided by Anope Dev. <dev@anope.org> - 2004
|
||||
11/18 A NSAddAccessOnReg to control access list on registration. [ #00]
|
||||
12/23 F Several compiler errors under make strict. [ #00]
|
||||
12/21 F Unsetting away would not trigger checking of memos. [#258]
|
||||
12/21 F Dreamforge compile [ #00]
|
||||
12/21 F Moved global about del of non-existant session inside debug() if [ #00]
|
||||
12/21 F Dreamforge compile. [ #00]
|
||||
12/21 F Moved global about del of non-existant session inside debug() if. [ #00]
|
||||
12/19 F Fixed LogUser messages where the nickip is 0. [#253]
|
||||
12/19 F Segfault if USERDB enabled and tables don't exist. [#255]
|
||||
12/18 F Now only builds the ircd you selected. [ #00]
|
||||
@@ -61,7 +61,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
|
||||
11/16 F NickTracking could allow usage of forbidden nick in some cases. [ #00]
|
||||
|
||||
Provided by DrStein <gacevedo@anope.org> - 2004
|
||||
12/10 F Extra tab in language files, causing bad answer in !seen [#243]
|
||||
12/10 F Extra tab in language files, causing bad answer in !seen. [#243]
|
||||
11/28 F Fixes RSEND oddity. [#237]
|
||||
11/26 F Memos sent as notification of receipt can't be cancelled. [#192]
|
||||
11/23 F Moving Services Operators to Services Admins and vice-versa. [#230]
|
||||
@@ -74,9 +74,10 @@ Provided by mitch{Xy} <mitch@bondage.com> - 2004.
|
||||
12/20 F Removed unclear email text from language files. [ #00]
|
||||
|
||||
Provided by ThaPrince <jon@vile.com> - 2004.
|
||||
12/25 A Support for Hybrid TBURST. [#259]
|
||||
12/21 A Support for Hybrid IRCDs QS (Quit Storm). [#256]
|
||||
12/22 F Updated the plexus support. [ #00]
|
||||
12/20 A Added plexus ircd support. [ #00]
|
||||
12/22 F Updated the plexus support. [ #00]
|
||||
|
||||
Anope Version 1.7.6
|
||||
-------------------
|
||||
|
||||
+1
-1
@@ -741,7 +741,7 @@ void load_cs_dbase(void)
|
||||
ci->levels = scalloc(2 * CA_SIZE, 1);
|
||||
reset_levels(ci);
|
||||
for (j = 0; j < n_levels; j++) {
|
||||
SAFE(read_int16(&tmp16));
|
||||
SAFE(read_int16(&tmp16, f));
|
||||
if (j < CA_SIZE)
|
||||
ci->levels[j] = (int16) tmp16;
|
||||
}
|
||||
|
||||
@@ -589,6 +589,18 @@ int anope_event_topic(char *source, int ac, char **av)
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
int anope_event_tburst(char *source, int ac, char **av)
|
||||
{
|
||||
if (ac != 5)
|
||||
return MOD_CONT;
|
||||
|
||||
av[0] = av[1];
|
||||
av[1] = av[3];
|
||||
av[3] = av[4];
|
||||
do_topic(source, 4, av);
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
int anope_event_436(char *source, int ac, char **av)
|
||||
{
|
||||
if (ac < 1)
|
||||
@@ -623,6 +635,7 @@ void moduleAddIRCDMsgs(void) {
|
||||
m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m);
|
||||
m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m);
|
||||
m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m);
|
||||
m = createMessage("TBURST", anope_event_tburst); addCoreMessage(IRCD,m);
|
||||
m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m);
|
||||
m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m);
|
||||
m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m);
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="6"
|
||||
VERSION_BUILD="499"
|
||||
VERSION_BUILD="500"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.6 (500)
|
||||
# BUGS : 259
|
||||
# NOTES : Added support for hybrid TBURST -- merry xmas :)
|
||||
#
|
||||
# BUILD : 1.7.6 (499)
|
||||
# BUGS :
|
||||
# NOTES : Fixed several compiler warnings with make strict, removed 2 deprecated config vars.
|
||||
|
||||
Reference in New Issue
Block a user