mirror of
https://github.com/anope/anope.git
synced 2026-07-10 04:43:13 +02:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3acf74483c | |||
| a3ec8329f4 | |||
| 31bc597c81 | |||
| 2de0dddb1c | |||
| 41ea346551 | |||
| 439ad3e736 |
+1
-1
@@ -259,7 +259,7 @@ serverinfo
|
|||||||
* - hybrid
|
* - hybrid
|
||||||
* - inspircd12
|
* - inspircd12
|
||||||
* - inspircd20
|
* - inspircd20
|
||||||
* - inspircd3
|
* - inspircd3 (for 3.x and 4.x)
|
||||||
* - ngircd
|
* - ngircd
|
||||||
* - plexus
|
* - plexus
|
||||||
* - ratbox
|
* - ratbox
|
||||||
|
|||||||
@@ -256,7 +256,7 @@ serverinfo
|
|||||||
* - hybrid
|
* - hybrid
|
||||||
* - inspircd12
|
* - inspircd12
|
||||||
* - inspircd20
|
* - inspircd20
|
||||||
* - inspircd3
|
* - inspircd3 (for 3.x and 4.x)
|
||||||
* - ngircd
|
* - ngircd
|
||||||
* - plexus
|
* - plexus
|
||||||
* - ratbox
|
* - ratbox
|
||||||
|
|||||||
+24
-3
@@ -1,6 +1,27 @@
|
|||||||
Anope Version 2.0.16-git
|
Anope Version 2.0.16
|
||||||
------------------------
|
--------------------
|
||||||
No significant changes.
|
Added a workaround for users matching expired sqlines.
|
||||||
|
Fixed a copy/paste error in webcpanel.
|
||||||
|
Fixed a crash in db_flatfile caused by trying to serialize data without a type.
|
||||||
|
Fixed duplicate messages when synconset/syncongroup is set.
|
||||||
|
Fixed expiring channel suspensions.
|
||||||
|
Fixed expiring forbids.
|
||||||
|
Fixed expiring nick suspensions.
|
||||||
|
Fixed feature detection on InspIRCd.
|
||||||
|
Fixed InspIRCd account cloaks causing CHGHOST spam when a user also has a services vhost.
|
||||||
|
Fixed joining users to channels with a key set on InspIRCd.
|
||||||
|
Fixed logging users out fully when their nick gets suspended.
|
||||||
|
Fixed marking boolean columns in SQL as TEXT instead of INT.
|
||||||
|
Fixed matching extbans on InspIRCd and implement missing matchers.
|
||||||
|
Fixed operserv/sqline expiry on UnrealIRCd
|
||||||
|
Fixed respecting --noexpire in cs_suspend and ns_suspend.
|
||||||
|
Fixed sending emails to nicks ending with a backslash.
|
||||||
|
Fixed sending SVSTOPIC when topiclock is loaded on InspIRCd.
|
||||||
|
Fixed some SQL tables taking up too much space on disk.
|
||||||
|
Fixed the default config for channel suspensions.
|
||||||
|
Fixed the TIME message on InspIRCd.
|
||||||
|
Fixed trying to escape SQL data when not connected to MySQL.
|
||||||
|
Fixed {ldap,sql}_authentication creating zombie accounts on expiry.
|
||||||
|
|
||||||
Anope Version 2.0.15
|
Anope Version 2.0.15
|
||||||
--------------------
|
--------------------
|
||||||
|
|||||||
+2
-2
@@ -1,5 +1,5 @@
|
|||||||
Anope Version 2.0.16-git
|
Anope Version 2.0.16
|
||||||
------------------------
|
--------------------
|
||||||
No significant changes.
|
No significant changes.
|
||||||
|
|
||||||
Anope Version 2.0.15
|
Anope Version 2.0.15
|
||||||
|
|||||||
@@ -394,9 +394,12 @@ class InspIRCd3Proto : public IRCDProto
|
|||||||
SendAddLine("Z", x->GetHost(), timeleft, x->by, x->GetReason());
|
SendAddLine("Z", x->GetHost(), timeleft, x->by, x->GetReason());
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendSVSJoin(const MessageSource &source, User *u, const Anope::string &chan, const Anope::string &other) anope_override
|
void SendSVSJoin(const MessageSource &source, User *u, const Anope::string &chan, const Anope::string &key) anope_override
|
||||||
{
|
{
|
||||||
UplinkSocket::Message(source) << "SVSJOIN " << u->GetUID() << " " << chan;
|
if (key.empty())
|
||||||
|
UplinkSocket::Message(source) << "SVSJOIN " << u->GetUID() << " " << chan;
|
||||||
|
else
|
||||||
|
UplinkSocket::Message(source) << "SVSJOIN " << u->GetUID() << " " << chan << " :" << key;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendSVSPart(const MessageSource &source, User *u, const Anope::string &chan, const Anope::string ¶m) anope_override
|
void SendSVSPart(const MessageSource &source, User *u, const Anope::string &chan, const Anope::string ¶m) anope_override
|
||||||
@@ -442,6 +445,7 @@ class InspIRCd3Proto : public IRCDProto
|
|||||||
if (na->nc->HasExt("UNCONFIRMED"))
|
if (na->nc->HasExt("UNCONFIRMED"))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
IRCD->SendVhost(u, na->GetVhostIdent(), na->GetVhostHost());
|
||||||
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountid :" << na->nc->GetId();
|
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountid :" << na->nc->GetId();
|
||||||
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :" << na->nc->display;
|
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :" << na->nc->display;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -3,4 +3,4 @@
|
|||||||
VERSION_MAJOR=2
|
VERSION_MAJOR=2
|
||||||
VERSION_MINOR=0
|
VERSION_MINOR=0
|
||||||
VERSION_PATCH=16
|
VERSION_PATCH=16
|
||||||
VERSION_EXTRA="-git"
|
VERSION_EXTRA=""
|
||||||
|
|||||||
Reference in New Issue
Block a user