<feed xmlns='http://www.w3.org/2005/Atom'>
<title>~steering/inspircd++.git/src/command_parse.cpp, branch v4.0.0a20</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>https://www.cgit.space/~steering/inspircd++.git/atom/src/command_parse.cpp?h=v4.0.0a20</id>
<link rel='self' href='https://www.cgit.space/~steering/inspircd++.git/atom/src/command_parse.cpp?h=v4.0.0a20'/>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/'/>
<updated>2023-02-28T14:38:44Z</updated>
<entry>
<title>Refactor the password checking API.</title>
<updated>2023-02-28T14:38:44Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2023-02-28T14:30:35Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=1c6d20e73c9369eb57b255188b59d784d0f2730e'/>
<id>urn:sha1:1c6d20e73c9369eb57b255188b59d784d0f2730e</id>
<content type='text'>
- Rename from (On)PassCompare to (On)CheckPassword.

- Fix the order of the arguments to be password, hash, value. This
  makes more sense than what it was previously.

- Fix the code documentation to not be complete nonsense and not
  reference ancient outdated APIs.
</content>
</entry>
<entry>
<title>Replace InspIRCd::Format with fmt::format.</title>
<updated>2023-01-23T13:07:53Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2023-01-23T07:42:07Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=5c4badf8ea3ba775854f0d26d3f2e0e119584faa'/>
<id>urn:sha1:5c4badf8ea3ba775854f0d26d3f2e0e119584faa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Qualify auto correctly in all cases.</title>
<updated>2023-01-10T23:30:34Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2023-01-10T23:02:45Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=b2d86bb8a1bc965ad72d00ba5ef98d0e4bbfb155'/>
<id>urn:sha1:b2d86bb8a1bc965ad72d00ba5ef98d0e4bbfb155</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'insp3' into master.</title>
<updated>2023-01-01T13:19:45Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2023-01-01T13:16:48Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=d048778f789e8977506668631dab649426ca01ce'/>
<id>urn:sha1:d048778f789e8977506668631dab649426ca01ce</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update copyright headers.</title>
<updated>2022-12-30T11:31:28Z</updated>
<author>
<name>InspIRCd Robot</name>
</author>
<published>2022-12-30T11:31:28Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=2b810b412aeee2d9c79d97fa54a80e317981a6d8'/>
<id>urn:sha1:2b810b412aeee2d9c79d97fa54a80e317981a6d8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove the unused Extensible* parameter to PassCompare/OnPassCompare.</title>
<updated>2022-12-10T15:22:15Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-12-10T15:22:15Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=86b4a0853e41f02d1b004a94cc64749b0a3a0ff4'/>
<id>urn:sha1:86b4a0853e41f02d1b004a94cc64749b0a3a0ff4</id>
<content type='text'>
</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>Use auto instead of type names where the type is obvious.</title>
<updated>2022-09-29T11:54:24Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-09-29T11:41:07Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=44986c79769d4efc2badc5b9c3df2e75e81ac28e'/>
<id>urn:sha1:44986c79769d4efc2badc5b9c3df2e75e81ac28e</id>
<content type='text'>
</content>
</entry>
</feed>
