Merge pull request #1001 from slingamn/ratify_setname

ratify SETNAME
This commit is contained in:
Shivaram Lingamneni 2020-05-11 15:13:43 -07:00 committed by GitHub
commit b951546b77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -119,9 +119,9 @@ CAPDEFS = [
), ),
CapDef( CapDef(
identifier="SetName", identifier="SetName",
name="draft/setname", name="setname",
url="https://github.com/ircv3/ircv3-specifications/pull/361", url="https://ircv3.net/specs/extensions/setname.html",
standard="proposed IRCv3", standard="IRCv3",
), ),
CapDef( CapDef(
identifier="STS", identifier="STS",

View File

@ -61,10 +61,6 @@ const (
// https://github.com/DanielOaks/ircv3-specifications/blob/master+resume/extensions/resume.md // https://github.com/DanielOaks/ircv3-specifications/blob/master+resume/extensions/resume.md
Resume Capability = iota Resume Capability = iota
// SetName is the proposed IRCv3 capability named "draft/setname":
// https://github.com/ircv3/ircv3-specifications/pull/361
SetName Capability = iota
// EchoMessage is the IRCv3 capability named "echo-message": // EchoMessage is the IRCv3 capability named "echo-message":
// 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
@ -101,6 +97,10 @@ const (
// https://ircv3.net/specs/extensions/server-time-3.2.html // https://ircv3.net/specs/extensions/server-time-3.2.html
ServerTime Capability = iota ServerTime Capability = iota
// SetName is the IRCv3 capability named "setname":
// https://ircv3.net/specs/extensions/setname.html
SetName Capability = iota
// STS is the IRCv3 capability named "sts": // STS is the IRCv3 capability named "sts":
// https://ircv3.net/specs/extensions/sts.html // https://ircv3.net/specs/extensions/sts.html
STS Capability = iota STS Capability = iota
@ -133,7 +133,6 @@ var (
"draft/multiline", "draft/multiline",
"draft/rename", "draft/rename",
"draft/resume-0.5", "draft/resume-0.5",
"draft/setname",
"echo-message", "echo-message",
"extended-join", "extended-join",
"invite-notify", "invite-notify",
@ -143,6 +142,7 @@ var (
"oragono.io/nope", "oragono.io/nope",
"sasl", "sasl",
"server-time", "server-time",
"setname",
"sts", "sts",
"userhost-in-names", "userhost-in-names",
"znc.in/playback", "znc.in/playback",