3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-21 19:39:43 +01:00

rename oragono.io/nope to ergo.chat/nope

This commit is contained in:
Shivaram Lingamneni 2021-09-10 13:05:09 -04:00
parent bce3d643bc
commit b8009c4a07
2 changed files with 8 additions and 8 deletions

View File

@ -155,9 +155,9 @@ CAPDEFS = [
), ),
CapDef( CapDef(
identifier="Nope", identifier="Nope",
name="oragono.io/nope", name="ergo.chat/nope",
url="https://oragono.io/nope", url="https://ergo.chat/nope",
standard="Oragono vendor", standard="Ergo vendor",
), ),
CapDef( CapDef(
identifier="Multiline", identifier="Multiline",

View File

@ -73,6 +73,10 @@ const (
// https://ircv3.net/specs/extensions/echo-message-3.2.html // https://ircv3.net/specs/extensions/echo-message-3.2.html
EchoMessage Capability = iota EchoMessage Capability = iota
// Nope is the Ergo vendor capability named "ergo.chat/nope":
// https://ergo.chat/nope
Nope Capability = iota
// ExtendedJoin is the IRCv3 capability named "extended-join": // ExtendedJoin is the IRCv3 capability named "extended-join":
// https://ircv3.net/specs/extensions/extended-join-3.1.html // https://ircv3.net/specs/extensions/extended-join-3.1.html
ExtendedJoin Capability = iota ExtendedJoin Capability = iota
@ -93,10 +97,6 @@ const (
// https://ircv3.net/specs/extensions/multi-prefix-3.1.html // https://ircv3.net/specs/extensions/multi-prefix-3.1.html
MultiPrefix Capability = iota MultiPrefix Capability = iota
// Nope is the Oragono vendor capability named "oragono.io/nope":
// https://oragono.io/nope
Nope Capability = iota
// SASL is the IRCv3 capability named "sasl": // SASL is the IRCv3 capability named "sasl":
// https://ircv3.net/specs/extensions/sasl-3.2.html // https://ircv3.net/specs/extensions/sasl-3.2.html
SASL Capability = iota SASL Capability = iota
@ -144,12 +144,12 @@ var (
"draft/multiline", "draft/multiline",
"draft/relaymsg", "draft/relaymsg",
"echo-message", "echo-message",
"ergo.chat/nope",
"extended-join", "extended-join",
"invite-notify", "invite-notify",
"labeled-response", "labeled-response",
"message-tags", "message-tags",
"multi-prefix", "multi-prefix",
"oragono.io/nope",
"sasl", "sasl",
"server-time", "server-time",
"setname", "setname",