mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
commit
b951546b77
@ -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",
|
||||||
|
@ -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",
|
||||||
|
Loading…
Reference in New Issue
Block a user