Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gencapdefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@
),
CapDef(
identifier="SetName",
name="draft/setname",
url="https://github.com/ircv3/ircv3-specifications/pull/361",
standard="proposed IRCv3",
name="setname",
url="https://ircv3.net/specs/extensions/setname.html",
standard="IRCv3",
),
CapDef(
identifier="STS",
Expand Down
10 changes: 5 additions & 5 deletions irc/caps/defs.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ const (
// https://github.com/DanielOaks/ircv3-specifications/blob/master+resume/extensions/resume.md
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":
// https://ircv3.net/specs/extensions/echo-message-3.2.html
EchoMessage Capability = iota
Expand Down Expand Up @@ -101,6 +97,10 @@ const (
// https://ircv3.net/specs/extensions/server-time-3.2.html
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":
// https://ircv3.net/specs/extensions/sts.html
STS Capability = iota
Expand Down Expand Up @@ -133,7 +133,6 @@ var (
"draft/multiline",
"draft/rename",
"draft/resume-0.5",
"draft/setname",
"echo-message",
"extended-join",
"invite-notify",
Expand All @@ -143,6 +142,7 @@ var (
"oragono.io/nope",
"sasl",
"server-time",
"setname",
"sts",
"userhost-in-names",
"znc.in/playback",
Expand Down