| Commit message (Expand) | Author | Age | Files | Lines |
| * | Move CheckExemption::Call to CheckExemption::EventProvider.•••Now FirstResult not a macro there's no need for this to be a free
function.
| Sadie Powell | 2023-01-25 | 1 | -1/+1 |
| * | Replace InspIRCd::Format with fmt::format. | Sadie Powell | 2023-01-23 | 1 | -2/+2 |
| * | Merge branch 'insp3' into master. | Sadie Powell | 2023-01-01 | 1 | -1/+0 |
| |\ |
|
| | * | Update copyright headers. | InspIRCd Robot | 2022-12-30 | 1 | -1/+0 |
| * | | Abolish the infernal space before accessibility keywords. | Sadie Powell | 2022-01-25 | 1 | -2/+2 |
| * | | Mark all module classes as final. | Sadie Powell | 2021-10-01 | 1 | -1/+2 |
| * | | Rename Simple{Channel,User}ModeHandler to match other mode handlers. | Sadie Powell | 2021-06-01 | 1 | -1/+1 |
| * | | Switch simple iterator loops to use range-based for loops. | Sadie Powell | 2021-04-07 | 1 | -7/+5 |
| * | | Add first class support for extbans.•••This replaces the previous support which was pretty much a giant
hack and was not synchronised between servers.
| Sadie Powell | 2020-05-07 | 1 | -11/+5 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-04-11 | 1 | -1/+1 |
| |\| |
|
| | * | Update the module descriptions using mkversion. | Sadie Powell | 2020-04-10 | 1 | -1/+1 |
| * | | Improve storage of module description, flags, and link data. | Sadie Powell | 2020-04-11 | 1 | -6/+2 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-01-17 | 1 | -2/+8 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -2/+8 |
| * | | Move ISupport logic out of the core and into core_info. | Sadie Powell | 2020-01-05 | 1 | -3/+9 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-12-08 | 1 | -4/+4 |
| |\| |
|
| | * | Split the channel mode and extban replies.•••Tell the user when they are extbanned rather than incorrectly say
that the channel mode is set.
Refactored the logic in m_nonotice to match that of the others.
| Matt Schatz | 2019-11-18 | 1 | -4/+4 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-05-15 | 1 | -1/+1 |
| |\| |
|
| | * | Some more text fixes and improvements (#1618). | Robby | 2019-04-28 | 1 | -1/+1 |
| * | | Replace the override macro with the override keyword. | Sadie Powell | 2019-01-25 | 1 | -3/+3 |
| |/ |
|
| * | Use an oper priv instead of a config flag for overriding nonicks. | Peter Powell | 2018-04-16 | 1 | -7/+1 |
| * | Clarify error message when attempting to /NICK while banned | B00mX0r | 2017-12-19 | 1 | -1/+1 |
| * | Only subclass Simple{Channel,User}ModeHandler when necessary. | Peter Powell | 2017-11-13 | 1 | -8/+2 |
| * | Add a helper function for calling the OnCheckExemption event. | Peter Powell | 2017-10-21 | 1 | -2/+1 |
| * | Move the OnCheckExemption hook out of the core. | Peter Powell | 2017-03-20 | 1 | -2/+7 |
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ... | Attila Molnar | 2016-02-25 | 1 | -2/+2 |
| * | Rename UserChanList to User::ChanList, remove UCListIter | Attila Molnar | 2014-07-14 | 1 | -1/+1 |
| * | Change the type of the user parameter in the OnUserPreNick() hook from User t...•••No remote users were passed to this hook before.
Remove needless IS_LOCAL() checks.
| Attila Molnar | 2014-06-20 | 1 | -4/+1 |
| * | Convert UserChanList to an intrusively linked list | Attila Molnar | 2014-01-24 | 1 | -1/+1 |
| * | Use WriteNumeric() everywhere we send numerics and include the user's nick au... | Adam | 2013-11-12 | 1 | -2/+2 |
| * | Automatically register ServiceProviders created by modules | attilamolnar | 2013-09-08 | 1 | -5/+0 |
| * | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init()
| attilamolnar | 2013-08-30 | 1 | -2/+1 |
| * | Automatically attach modules to events | attilamolnar | 2013-08-04 | 1 | -2/+0 |
| * | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | 2013-07-04 | 1 | -2/+0 |
| * | Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() w... | attilamolnar | 2013-07-01 | 1 | -1/+1 |
| * | Get rid of the NICKForced extension•••Don't run OnUserPreNick when the nick change is forced
| attilamolnar | 2013-05-18 | 1 | -4/+0 |
| * | Tidy up keywords on module methods.•••- Remove virtual keyword from a ton of methods which don't need it.
- Add override keyword to a ton of methods which do need it.
| Peter Powell | 2013-05-15 | 1 | -5/+5 |
| * | Convert ISUPPORT to use a map instead of a string. | Peter Powell | 2013-04-11 | 1 | -2/+2 |
| * | Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper() | attilamolnar | 2013-04-10 | 1 | -1/+1 |
| * | Whitespace and empty destructor removal, minor coding style changes | attilamolnar | 2013-04-01 | 1 | -5/+0 |
| * | Register all commands, modes and extensions using AddService()•••AddService() throws an exception if an item cannot be registered, modules no longer need to worry about AddMode() etc. failing
| attilamolnar | 2012-12-02 | 1 | -1/+1 |
| * | Dynamically determine the size of the eventlist[] passed to Attach()•••m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove
| attilamolnar | 2012-12-02 | 1 | -1/+1 |
| * | Attach to events and register services in init() | attilamolnar | 2012-12-02 | 1 | -0/+4 |
| * | Remove usage of the deprecated ConfigReader | attilamolnar | 2012-11-12 | 1 | -2/+1 |
| * | m_nonicks Use SimpleChannelModeHandler | attilamolnar | 2012-06-30 | 1 | -24/+2 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+16 |
| * | Restore <options:exemptchanops> with long names•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12502 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-20 | 1 | -2/+1 |
| * | Allow nick locking to prevent voluntary changes to UID•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12322 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-01-24 | 1 | -3/+0 |
| * | Remove VF_COMMON from mode-provider modules (no longer needed due to better C...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12263 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-01-15 | 1 | -1/+1 |
| * | ...because every now and again, i have to do a massive commit.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7
| brain | 2010-01-11 | 1 | -1/+1 |