diff --git a/gencapdefs.py b/gencapdefs.py index b1d2ebf2..4a2007c1 100644 --- a/gencapdefs.py +++ b/gencapdefs.py @@ -155,9 +155,9 @@ CAPDEFS = [ ), CapDef( identifier="Nope", - name="oragono.io/nope", - url="https://oragono.io/nope", - standard="Oragono vendor", + name="ergo.chat/nope", + url="https://ergo.chat/nope", + standard="Ergo vendor", ), CapDef( identifier="Multiline", diff --git a/irc/caps/defs.go b/irc/caps/defs.go index 7eea8867..0179db34 100644 --- a/irc/caps/defs.go +++ b/irc/caps/defs.go @@ -73,6 +73,10 @@ const ( // https://ircv3.net/specs/extensions/echo-message-3.2.html 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": // https://ircv3.net/specs/extensions/extended-join-3.1.html ExtendedJoin Capability = iota @@ -93,10 +97,6 @@ const ( // https://ircv3.net/specs/extensions/multi-prefix-3.1.html 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": // https://ircv3.net/specs/extensions/sasl-3.2.html SASL Capability = iota @@ -144,12 +144,12 @@ var ( "draft/multiline", "draft/relaymsg", "echo-message", + "ergo.chat/nope", "extended-join", "invite-notify", "labeled-response", "message-tags", "multi-prefix", - "oragono.io/nope", "sasl", "server-time", "setname",