| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -4/+4 | |
| | | |||||
| * | Fix various edge cases in extensible synchronisation. | 2022-01-21 | 1 | -1/+1 | |
| | | | | | | | | | - Fix not forwarding the accountid extensible if it is set. - Rename the variadic Set() overload to SetFwd(). - Re-add the `const T&` overload of Set(). - Move `bool synced` to SimpleExtItem from StringExtItem. - Only sync extensibles if their instance is marked as syncable. | ||||
| * | Apply the final keyword to all module classes where appropriate. | 2021-10-04 | 1 | -1/+1 | |
| | | |||||
| * | Mark more mode classes as final. | 2021-10-01 | 1 | -1/+1 | |
| | | |||||
| * | Mark all mode classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2021-08-28 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2021-08-27 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-06-18 | 1 | -3/+4 | |
| |\| | |||||
| | * | Fix joinflood overwriting the bootwait timer on split. | 2021-06-18 | 1 | -1/+1 | |
| | | | |||||
| | * | Fix joinflood applying the bootwait timeout to rehashes. | 2021-06-18 | 1 | -2/+3 | |
| | | | |||||
| * | | Added -Wshorten-64-to-32 and fixed all warnings. | 2021-05-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Fire OnUserPreJoin regardless of whether the join is an override. | 2021-05-23 | 1 | -2/+2 | |
| | | | |||||
| * | | Add a forwarding overload of SimpleExtItem#Set. | 2021-03-17 | 1 | -1/+1 | |
| | | | |||||
| * | | Pascalize Set in extension item classes. | 2021-03-17 | 1 | -1/+1 | |
| | | | |||||
| * | | Pascalize Get in extension item classes. | 2021-03-17 | 1 | -2/+2 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-11-01 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-10-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Convert ConfigTag from reference<> to std::shared_ptr<>. | 2020-10-31 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-10-27 | 1 | -2/+21 | |
| |\| | |||||
| | * | Add an option to allow disengaging joinflood on initial boot. | 2020-10-12 | 1 | -0/+4 | |
| | | | |||||
| | * | Add an option to allow disengaging joinflood after a netsplit. | 2020-10-12 | 1 | -3/+21 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-04-11 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| | | | |||||
| * | | Improve storage of module description, flags, and link data. | 2020-04-11 | 1 | -6/+2 | |
| | | | |||||
| * | | Use C++11 inline initialisation for class members. | 2020-02-06 | 1 | -3/+4 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -3/+5 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -3/+5 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2019-07-16 | 1 | -0/+1 | |
| |\| | |||||
| | * | Show the mode syntax in ERR_INVALIDMODEPARAM. | 2019-06-12 | 1 | -0/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2019-05-15 | 1 | -2/+2 | |
| |\| | |||||
| | * | Some more text fixes and improvements (#1618). | 2019-04-28 | 1 | -2/+2 | |
| | | | |||||
| * | | Replace the override macro with the override keyword. | 2019-01-25 | 1 | -5/+5 | |
| |/ | |||||
| * | Fix conversion issues by replacing ConvToInt with ConvToNum<T>. | 2018-12-12 | 1 | -2/+2 | |
| | | | | | | | | The former was a thin wrapper around atol and brought with it all of the weird parsing logic of atol which is almost never what is actually wanted. It also almost never returned the numeric type which is actually wanted which can cause weird issues when casting. | ||||
| * | Fix a bunch more conflicting/unnamed numerics. | 2018-08-14 | 1 | -1/+7 | |
| | | |||||
| * | Add ERR_INVALIDMODEPARAM for responding to invalid mode params. | 2018-01-29 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | Currently on invalid modes we do a combination of different things: 1. Send a custom mode-specific numeric (which often collides with other modes). 2. Send a server notice. 3. Do absolutely nothing. This new numeric is a generic way of handling invalid parameters when setting a mode that avoids all of the mistakes of the previous behaviour. | ||||
| * | Add the override keyword in places that it is missing. | 2017-11-21 | 1 | -1/+1 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Make the duration of nickflood and joinflood configurable. | 2016-09-16 | 1 | -2/+11 | |
| | | |||||
| * | Send NOTICEs to local channel members with Channel::WriteNotice() | 2016-03-05 | 1 | -1/+1 | |
| | | |||||
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -3/+3 | |
| | | | | | parameters | ||||
| * | Add ParamModeBase and ParamMode, change all parameter modes to inherit from ↵ | 2014-02-15 | 1 | -38/+26 | |
| | | | | | | | | | | | ParamMode - Type of the extension used to store data is a template parameter - The extension is automatically unset when the mode is unset - Handlers inheriting from ParamMode have to provide OnSet() and SerializeParam(); may optionally provide OnUnset() - Transparently handle the case when OnSet() modifies the mode parameter - Remove Channel::custom_mode_params map; ask the mode handlers to serialize their parameters instead | ||||
| * | Merge insp20 | 2014-01-21 | 1 | -7/+3 | |
| |\ | |||||
| | * | m_joinflood Unset the mode on unload | 2014-01-21 | 1 | -2/+1 | |
| | | | |||||
| | * | Fix some logically dead code which was found by Coverity. | 2014-01-21 | 1 | -11/+4 | |
| | | | |||||
| | * | m_joinflood Fix remote joins affecting local joinflood state when the ↵ | 2014-01-19 | 1 | -1/+1 | |
| | | | | | | | | | | | | | channel is locked Fixes issue #694 reported by @TurkDesk | ||||
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -3/+3 | |
| | | | | | | | | | automatically | ||||
| * | | Automatically register ServiceProviders created by modules | 2013-09-08 | 1 | -6/+0 | |
| | | | |||||
| * | | Automatically attach modules to events | 2013-08-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Call Channel::SetModeParam() from the mode parser when needed instead of ↵ | 2013-06-13 | 1 | -2/+0 | |
| | | | | | | | | | requiring mode handlers to do it | ||||
| * | | m_joinflood Make the code friendlier, unset +j when the module is unloaded | 2013-05-16 | 1 | -89/+41 | |
| | | | | | | | | | See 21c3232b8e0bb41727f2d65a0b2d5304587cf6be and fae560cddc389b88c9cd34afdccf9035f4d11c5b | ||||
