| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-05-05 | 1 | -2/+2 |
| |\| |
|
| | * | Fixes by misspell-fixer | InspIRCd Robot | 2020-04-21 | 1 | -2/+2 |
| * | | 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 |
| * | | Use C++11 inline initialisation for class members. | Sadie Powell | 2020-02-06 | 1 | -4/+2 |
| * | | In C++11 [io]fstream has std::string constructors; use them. | Sadie Powell | 2020-02-06 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-01-17 | 1 | -0/+7 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -0/+7 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-07-16 | 1 | -4/+11 |
| |\| |
|
| | * | Switch permchannels and xline_db from OnBackgroundTimer to a Timer. | Peter Powell | 2019-06-25 | 1 | -3/+11 |
| | * | permchannels: remove an unused ChanModeReference. | Peter Powell | 2019-06-25 | 1 | -1/+0 |
| * | | 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 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-03-30 | 1 | -2/+2 |
| |\| |
|
| | * | m_permchannels: validate channel names properly. | Peter Powell | 2019-03-25 | 1 | -2/+2 |
| * | | SnomaskManager: remove fakederef. | Sadie Powell | 2019-02-07 | 1 | -3/+3 |
| * | | ModeParser: remove fakederef. | Sadie Powell | 2019-02-07 | 1 | -2/+2 |
| * | | LogManager: remove fakederef. | Sadie Powell | 2019-02-07 | 1 | -6/+6 |
| * | | Remove all 2.0 config compatibility code. | Sadie Powell | 2019-01-25 | 1 | -1/+1 |
| * | | Replace the override macro with the override keyword. | Sadie Powell | 2019-01-25 | 1 | -8/+8 |
| |/ |
|
| * | Add ConfigTag::getUInt for reading unsigned config values. | Peter Powell | 2018-04-16 | 1 | -1/+1 |
| * | Remove the default value in ConfigTag::get{Duration,Float,Int}. | Peter Powell | 2018-04-16 | 1 | -1/+1 |
| * | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs.
| Peter Powell | 2017-11-21 | 1 | -1/+1 |
| * | Add CXX11_OVERRIDE to overridden members that lack it.•••This fixes a ton of warnings when building on compilers that
default to C++11 or newer.
| Peter Powell | 2017-07-12 | 1 | -1/+1 |
| * | Automatically apply +P to all permanent channels. | Peter Powell | 2017-04-14 | 1 | -0/+4 |
| * | Convert ModeHandler::GetNumParams() to NeedsParam() that returns a bool | Attila Molnar | 2016-08-29 | 1 | -1/+1 |
| * | Refactor topic setting logic to go through Channel::SetTopic() in all cases•••- Pass topic set time and optionally the setter to SetTopic()
- Don't do anything if the topic is changed by a local user to what it is currently
| Attila Molnar | 2016-04-11 | 1 | -6/+6 |
| * | Differ database error messages for m_permchannels and m_xline_db•••m_permchannels and m_xline_db both have the same error messages as well as not
informing the server operator what file is at fault for the error. This makes it
hard to find which module is causing the error and what file the module is referring
to. The new messages explain which database is trying to be written and the path
used to write the file.
| Justin Crawford | 2014-07-29 | 1 | -6/+6 |
| * | Merge insp20 | Attila Molnar | 2014-07-25 | 1 | -6/+1 |
| |\ |
|
| | * | Fix m_permchannels and m_xline_db on Windows•••The call to remove() can fail if the database doesn't already exist. Just
ignore the error, which effectively makes the rename() call below work as
it does on nix
| Adam | 2014-05-08 | 1 | -6/+1 |
| * | | Add InspIRCd::GetChans(), remove ChannelCount() | Attila Molnar | 2014-03-14 | 1 | -1/+2 |
| * | | m_permchannels Remove pointless cleanup ceremony in cull() | Attila Molnar | 2014-03-14 | 1 | -26/+0 |
| * | | Fix m_permchannels not prepending the path when reading the config. | Peter Powell | 2014-03-07 | 1 | -0/+3 |
| * | | Replace mode letter parameter of OnRawMode() with a ModeHandler*, remove pcnt | Attila Molnar | 2014-02-21 | 1 | -2/+2 |
| * | | Remove whitespace and minor style changes | Attila Molnar | 2014-01-23 | 1 | -2/+2 |
| * | | Merge insp20 | Attila Molnar | 2014-01-21 | 1 | -3/+3 |
| |\| |
|
| | * | Work around STB_GNU_UNIQUE symbols not allowing module unmap | attilamolnar | 2013-09-15 | 1 | -3/+3 |
| * | | Send ListModeBase modes implicitly on channel sync•••Remove Module::ProtoSendMode() and ListModeBase::DoSyncChannel()
| attilamolnar | 2013-09-12 | 1 | -38/+25 |
| * | | 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 | -3/+1 |
| * | | Merge insp20 | attilamolnar | 2013-08-30 | 1 | -19/+87 |
| |\| |
|
| | * | m_permchannels Fix empty topic setby | attilamolnar | 2013-08-28 | 1 | -0/+2 |
| | * | m_permchannels Add the ability to save listmodes | attilamolnar | 2013-08-27 | 1 | -4/+70 |
| | * | m_permchannels Save channel TS, topic set time and set by information•••When loading, ignore and log channels with a name longer than Limits.MaxChan
| attilamolnar | 2013-08-27 | 1 | -15/+20 |
| | * | m_permchannels Construct the final line that will be saved in a std::string i... | attilamolnar | 2013-08-27 | 1 | -7/+10 |
| * | | Clean up the protocol interface | attilamolnar | 2013-08-25 | 1 | -1/+1 |
| * | | Automatically attach modules to events | attilamolnar | 2013-08-04 | 1 | -2/+0 |
| * | | Change the syntax of FOREACH macros to be less dumb. | Adam | 2013-08-04 | 1 | -1/+1 |
| * | | Modify the log message to contain the log type. | Peter Powell | 2013-08-04 | 1 | -4/+4 |