Browse Source

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

tags/v2.8.0-rc1
Shivaram Lingamneni 2 years ago
parent
commit
b8009c4a07
2 changed files with 8 additions and 8 deletions
  1. 3
    3
      gencapdefs.py
  2. 5
    5
      irc/caps/defs.go

+ 3
- 3
gencapdefs.py View File

155
     ),
155
     ),
156
     CapDef(
156
     CapDef(
157
         identifier="Nope",
157
         identifier="Nope",
158
-        name="oragono.io/nope",
159
-        url="https://oragono.io/nope",
160
-        standard="Oragono vendor",
158
+        name="ergo.chat/nope",
159
+        url="https://ergo.chat/nope",
160
+        standard="Ergo vendor",
161
     ),
161
     ),
162
     CapDef(
162
     CapDef(
163
         identifier="Multiline",
163
         identifier="Multiline",

+ 5
- 5
irc/caps/defs.go View File

73
 	// https://ircv3.net/specs/extensions/echo-message-3.2.html
73
 	// https://ircv3.net/specs/extensions/echo-message-3.2.html
74
 	EchoMessage Capability = iota
74
 	EchoMessage Capability = iota
75
 
75
 
76
+	// Nope is the Ergo vendor capability named "ergo.chat/nope":
77
+	// https://ergo.chat/nope
78
+	Nope Capability = iota
79
+
76
 	// ExtendedJoin is the IRCv3 capability named "extended-join":
80
 	// ExtendedJoin is the IRCv3 capability named "extended-join":
77
 	// https://ircv3.net/specs/extensions/extended-join-3.1.html
81
 	// https://ircv3.net/specs/extensions/extended-join-3.1.html
78
 	ExtendedJoin Capability = iota
82
 	ExtendedJoin Capability = iota
93
 	// https://ircv3.net/specs/extensions/multi-prefix-3.1.html
97
 	// https://ircv3.net/specs/extensions/multi-prefix-3.1.html
94
 	MultiPrefix Capability = iota
98
 	MultiPrefix Capability = iota
95
 
99
 
96
-	// Nope is the Oragono vendor capability named "oragono.io/nope":
97
-	// https://oragono.io/nope
98
-	Nope Capability = iota
99
-
100
 	// SASL is the IRCv3 capability named "sasl":
100
 	// SASL is the IRCv3 capability named "sasl":
101
 	// https://ircv3.net/specs/extensions/sasl-3.2.html
101
 	// https://ircv3.net/specs/extensions/sasl-3.2.html
102
 	SASL Capability = iota
102
 	SASL Capability = iota
144
 		"draft/multiline",
144
 		"draft/multiline",
145
 		"draft/relaymsg",
145
 		"draft/relaymsg",
146
 		"echo-message",
146
 		"echo-message",
147
+		"ergo.chat/nope",
147
 		"extended-join",
148
 		"extended-join",
148
 		"invite-notify",
149
 		"invite-notify",
149
 		"labeled-response",
150
 		"labeled-response",
150
 		"message-tags",
151
 		"message-tags",
151
 		"multi-prefix",
152
 		"multi-prefix",
152
-		"oragono.io/nope",
153
 		"sasl",
153
 		"sasl",
154
 		"server-time",
154
 		"server-time",
155
 		"setname",
155
 		"setname",

Loading…
Cancel
Save