diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-04 01:57:15 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-04 01:57:15 +0000 |
commit | 8a5b74dfcc14382a13858e69f47e98e26e59a8fe (patch) | |
tree | a4f4a9ad2bea0213dc3fe85246c9c67c5207a377 | |
parent | 51500715c08a7b07c1a79da5411bb9d1e5ac3fed (diff) |
BUILD : 1.7.6 (472) BUGS : N/A NOTES : 1. Bahamut +I support 2. Changes file updated (merged my items under the dev banner)
git-svn-id: svn://svn.anope.org/anope/trunk@472 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@326 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 15 | ||||
-rw-r--r-- | src/bahamut.c | 2 | ||||
-rw-r--r-- | version.log | 7 |
3 files changed, 14 insertions, 10 deletions
@@ -1,13 +1,6 @@ Anope Version S V N ------------------- Provided by Anope Dev. <dev@anope.org> - 2004 -11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00] -11/18 A NSAddAccessOnReg to control access list on registration. [ #00] -11/30 F Fixed ircd->chanmodes (pointed to freed memory). [ #00] -11/21 F Fixed session decrease on /NS GHOST. [#229] -11/19 F Wrong string and missing registered nick check in bot change. [#221] - -Provided by Trystan <trystan@nomadirc.net> - 2004 12/02 A Support for other Ulines Servers (NeoStats/SolarStats) [ #00] 11/28 A Support for Unreal's version of SVSHOLD [ #00] 11/28 A /OS SET LIST to list the set options [ #00] @@ -18,9 +11,13 @@ Provided by Trystan <trystan@nomadirc.net> - 2004 11/21 A Opened SGLINE to all ircd that support GEOS bans [ #00] 11/21 A Opened SZLINE to all ircd that support ZLINE's [ #00] 11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00] +11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00] +11/18 A NSAddAccessOnReg to control access list on registration. [ #00] +12/03 F Bahamut support +I channel modes [ #00] 12/02 F Ultimate3 botserv bots were getting wrong modes [ #00] 12/01 F ChanServ AKICK DEL (reordering) (pointed to freed memory) [ #00] 12/01 F del_session() warning messages when LimitSessions is disabled [ #00] +11/30 F Fixed ircd->chanmodes (pointed to freed memory). [ #00] 11/28 F NSSecureAdmins now restricts /NS SET EMAIL [#218] 11/27 F Compiles and Runs under CYGWIN again [ #00] 11/27 F bot_raw_mode() would cause a TSMODE warning [#234] @@ -29,12 +26,14 @@ Provided by Trystan <trystan@nomadirc.net> - 2004 11/27 F Removed +d references from the PTlink protocol file [ #00] 11/23 F Rage 2 updated to support BETA 7 [#226] 11/23 F PTLink anope_cmd_server() message [ #00] +11/21 F Fixed session decrease on /NS GHOST. [#229] 11/20 F Disables UseRDB if there is an error duing SQL init [ #00] 11/20 F MS CHECK now checks if the nick is forbidden. [#225] 11/20 F Removing Sqline on bot nicks change if the nick was registered. [#224] 11/19 F normalizeBuffer() now strips control character 1. [ #00] 11/19 F CTCP Ping replies when UsePrivmsg is enabled. [ #00] -11/19 F Some config options could overflow strtol(). [ #00] +11/19 F Some config options could overflow strtol(). [ #00] +11/19 F Wrong string and missing registered nick check in bot change. [#221] 11/16 F NickTracking could allow usage of forbidden nick in some cases. [ #00] Provided by DrStein <gacevedo@anope.org> - 2004 diff --git a/src/bahamut.c b/src/bahamut.c index 14a7b7b65..d4a2d1a30 100644 --- a/src/bahamut.c +++ b/src/bahamut.c @@ -99,7 +99,7 @@ IRCDVar ircd[] = { 0, /* We support TOKENS */ 1, /* TOKENS are CASE inSensitive */ 0, /* TIME STAMPS are BASE64 */ - 0, /* +I support */ + 1, /* +I support */ 0, /* SJOIN ban char */ 0, /* SJOIN except char */ 0, /* Services Client mode */ diff --git a/version.log b/version.log index e621b55fa..fd47ed118 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,15 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="6" -VERSION_BUILD="471" +VERSION_BUILD="472" # $Log$ # +# BUILD : 1.7.6 (472) +# BUGS : N/A +# NOTES : 1. Bahamut +I support +# 2. Changes file updated (merged my items under the dev banner) +# # BUILD : 1.7.6 (471) # BUGS : N/A # NOTES : Redid Services Mode stuff to be config option called UlineServers this allows you to state what servers can set |