1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 16:43:12 +02:00

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
This commit is contained in:
drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b
2007-08-29 04:13:44 +00:00
parent b89cfa30e8
commit 53fbcea421
4 changed files with 13 additions and 14 deletions
+2
View File
@@ -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
--------------------
+1 -1
View File
@@ -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.
+4 -12
View File
@@ -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)
+6 -1
View File
@@ -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