diff options
author | drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-08-29 04:13:44 +0000 |
---|---|---|
committer | drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-08-29 04:13:44 +0000 |
commit | 53fbcea42156d8196c06177966f59afbbcbe0925 (patch) | |
tree | b4cae6e76cf9a024ecb73e53ecf803934dcb9653 | |
parent | b89cfa30e80c30cadb9a355f3e550bad89687794 (diff) |
BUILD : 1.7.19 (1285) BUGS : 684, 772 NOTES : [1] Added InspIRCd11 vIdent support [2] InspIRCD11 protocol now uses SVSJOIN/PART instead of SAJOIN/PART
git-svn-id: svn://svn.anope.org/anope/trunk@1285 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1003 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | include/version.sh | 2 | ||||
-rw-r--r-- | src/protocol/inspircd11.c | 16 | ||||
-rw-r--r-- | version.log | 7 |
4 files changed, 13 insertions, 14 deletions
@@ -1,5 +1,6 @@ Anope Version S V N -------------------- +08/29 A Added InspIRCd11 vIdent support. [#684] 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] @@ -26,6 +27,7 @@ Anope Version S V N 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] Anope Version 1.7.19 -------------------- diff --git a/include/version.sh b/include/version.sh index 75dd68be1..1a6b6fb3a 100644 --- a/include/version.sh +++ b/include/version.sh @@ -30,7 +30,7 @@ cat >version.h <<EOF * (C) 2003-2007 Anope Team * Contact us at info@anope.org * - * Please read COPYING and CREDITS for furhter details. + * Please read COPYING and CREDITS for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index a69c515b0..37d2eb653 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -90,7 +90,7 @@ IRCDVar myIrcd[] = { 1, /* Reverse */ 1, /* Chan Reg */ CMODE_r, /* Channel Mode */ - 0, /* vidents */ + 1, /* vidents */ 0, /* svshold */ 0, /* time stamp on mode */ 0, /* NICKIP */ @@ -944,7 +944,7 @@ void inspircd_cmd_chghost(char *nick, char *vhost) /* CHGIDENT */ void inspircd_cmd_chgident(char *nick, char *vIdent) { - if (has_chgidentmod ==1) { + if (has_chgidentmod == 1) { if (!nick || !vIdent) { return; } @@ -1699,20 +1699,12 @@ void inspircd_cmd_svid_umode3(User * u, char *ts) void inspircd_cmd_svsjoin(char *source, char *nick, char *chan) { - if (has_sajoinmod == 1) { - send_cmd(source, "SAJOIN %s %s", nick, chan); - } else { - anope_cmd_global(s_OperServ, "WARNING! m_sajoin not loaded!, Please fix this!"); - } + send_cmd(source, "SVSJOIN %s %s", nick, chan); } void inspircd_cmd_svspart(char *source, char *nick, char *chan) { - if (has_sapartmod == 1) { - send_cmd(source, "SAPART %s %s", nick, chan); - } else { - anope_cmd_global(s_OperServ, "WARNING! m_sapart not loaded!, Please fix this!"); - } + send_cmd(source, "SVSPART %s %s", nick, chan); } void inspircd_cmd_swhois(char *source, char *who, char *mask) diff --git a/version.log b/version.log index b49c689ae..da28b60c3 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,15 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="19" VERSION_EXTRA="-svn" -VERSION_BUILD="1284" +VERSION_BUILD="1285" # $Log$ # +# BUILD : 1.7.19 (1285) +# BUGS : 684, 772 +# NOTES : [1] Added InspIRCd11 vIdent support [2] InspIRCD11 protocol now uses SVSJOIN/PART instead of +# SAJOIN/PART +# # BUILD : 1.7.19 (1284) # BUGS : 770 # NOTES : SuperAdmins now have a higher channel level than channel founders so they will always win from founders |