<feed xmlns='http://www.w3.org/2005/Atom'>
<title>~steering/inspircd++.git/src/coremods, branch v4.0.0a17</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>https://www.cgit.space/~steering/inspircd++.git/atom/src/coremods?h=v4.0.0a17</id>
<link rel='self' href='https://www.cgit.space/~steering/inspircd++.git/atom/src/coremods?h=v4.0.0a17'/>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/'/>
<updated>2022-12-01T05:39:24Z</updated>
<entry>
<title>Avoid copying a shared_ptr where not actually necessary.</title>
<updated>2022-12-01T05:39:24Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-12-01T05:39:24Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=d1301063741b3544342e10fcc02f72417000b50e'/>
<id>urn:sha1:d1301063741b3544342e10fcc02f72417000b50e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Yet more stylistic fixes.</title>
<updated>2022-12-01T05:25:01Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-12-01T05:14:58Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=45e56e5ee1bdb9e169be957e21a4f7b536e417ff'/>
<id>urn:sha1:45e56e5ee1bdb9e169be957e21a4f7b536e417ff</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add stats tags for `/STATS O` and `/STATS o`.</title>
<updated>2022-11-30T04:57:11Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-11-30T04:57:11Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=a3fedf513aee59bebd5d5cd8f97a28f8f8034372'/>
<id>urn:sha1:a3fedf513aee59bebd5d5cd8f97a28f8f8034372</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Allow attaching tags with extra info to stats rows.</title>
<updated>2022-11-30T04:08:30Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-11-30T04:08:30Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=5dd3629f12603d5d69e59f678b4abe5a81209652'/>
<id>urn:sha1:5dd3629f12603d5d69e59f678b4abe5a81209652</id>
<content type='text'>
Stats responses are incredibly non-standard and no clients render
them correctly. This makes using /STATS a massive pain in the ass
for users.

However, now we have message tags we have a way to fix this. We can
send a &lt;trailing&gt; with the message details and for clients (probably
bots) that need to parse the response we can include the specific
details in message tags enabled by the new inspircd.org/stats-tags
capability.

The average user will get this:

    :&lt;server&gt; 210 &lt;nick&gt; &lt;stats-char&gt; :&lt;stats-message&gt;

If however they enable the newcapability they will get this instead:

    @inspircd.org/stats-foo=bar;inspircd.org/stats-baz=bax :&lt;server&gt; 210 &lt;nick&gt; &lt;stats-char&gt; :&lt;stats-message&gt;
</content>
</entry>
<entry>
<title>Fix a typo in core_oper.</title>
<updated>2022-11-29T05:54:36Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-11-28T13:48:01Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=c6d798cf08c9c515d55440f863d41337443c0130'/>
<id>urn:sha1:c6d798cf08c9c515d55440f863d41337443c0130</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move the oper statistics to core_oper and rewrite.</title>
<updated>2022-11-29T04:52:42Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-11-29T04:52:42Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=f9ef385b890756e31871426502e52ebc66622894'/>
<id>urn:sha1:f9ef385b890756e31871426502e52ebc66622894</id>
<content type='text'>
The numerics we used previously were not being used according to
the RFC and every implementation has their own behaviour here which
makes it hard for clients to do anything reasonable. Instead of this
using the generic stats numeric makes a lot more sense.
</content>
</entry>
<entry>
<title>Refactor the internals of the oper system.</title>
<updated>2022-11-28T02:57:50Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-11-27T07:32:42Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=ee44af8d04f23b4a16c9b377764f930d69e575f7'/>
<id>urn:sha1:ee44af8d04f23b4a16c9b377764f930d69e575f7</id>
<content type='text'>
- Allow overriding privileges from the &lt;class&gt; blocks in the &lt;type&gt;
  and &lt;oper&gt; blocks.
- Separate oper types from oper accounts in the code. This enables
  moving some core stuff out of the config tag later.
- Merge the config tags together to make a synthetic tag that can
  have getXXX called on it instead of using getConfig and then
  converting it.
- Move the details of Have*Permission into the oper type class.
- Improve oper events to allow modules to easily hook into the oper
  system.
</content>
</entry>
<entry>
<title>Rename session registration to connection to avoid a semantic conflict.</title>
<updated>2022-10-29T14:54:59Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-10-29T14:44:01Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=6fc111ccb6650a67f014977b2e7ebc2fb5b16790'/>
<id>urn:sha1:6fc111ccb6650a67f014977b2e7ebc2fb5b16790</id>
<content type='text'>
We previously referred to both session registration and user registration
as "registration" which is confusing for users who aren't familiar with
how IRC works.
</content>
</entry>
<entry>
<title>Use User::IsFullyConnected instead of checking for REG_ALL.</title>
<updated>2022-10-29T12:43:11Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-10-29T12:30:39Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=5a508c19ff3dec65bb4148883d38127d7c0be79e'/>
<id>urn:sha1:5a508c19ff3dec65bb4148883d38127d7c0be79e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Allow UserManager::Find{Nick,UUID,} to ignore unregistered users.</title>
<updated>2022-10-29T12:01:42Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-10-29T12:01:42Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=a46b8b8edea0caf94350895acd02f0c90a1027de'/>
<id>urn:sha1:a46b8b8edea0caf94350895acd02f0c90a1027de</id>
<content type='text'>
</content>
</entry>
</feed>
