summaryrefslogtreecommitdiff
path: root/src/coremods/core_info
AgeCommit message (Collapse)Author
2018-12-10Fix overly escaping MOTDs if they are in more than one connect class.Peter Powell
2018-08-22Send the 001-004 numerics and MOTD/LUSERS from core_info.Peter Powell
Co-authored-by: Attila Molnar <attilamolnar@hush.com>
2018-08-14Remove the OnInfo event.Peter Powell
This is not used by anything and On{Post,Pre}Command hooks can be used if people really want to add stuff to INFO.
2018-07-31Remove support for static modules.Peter Powell
This has been frequently broken in the past and as far as I know is used by literally nobody. Also, even if all modules are compiled into the core any libraries linked against are and have always been linked dynamically making this unusable on platforms without dynamic libraries.
2018-07-26Use CommandBase::Params instead of std::vector<std::string>.Peter Powell
This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters.
2017-11-21Add the override keyword in places that it is missing.Peter Powell
GCCs warnings for this are much better than Clangs.
2017-11-17Fix a ton of -Wsign-conversion warnings.Peter Powell
2017-10-22Move Shutter to former contributors & thank genius3000, Sheogorath.Peter Powell
2017-10-21Tweak the module flags in MODULES slightly.Peter Powell
Using unique letters for each flag makes it easier to read when using fonts which have similar glyphs for upper and lower case characters.
2017-09-06Change the numerics used by /COMMANDS to avoid a collision.Peter Powell
2017-09-06Improve the /MODULES output.Peter Powell
2016-04-04Rename PURE_STATIC to INSPIRCD_STATIC.Peter Powell
2016-03-29Ensure server names passed to some commands are really server namesAttila Molnar
2016-03-29core_info Deduplicate code by inheriting some commands from ServerTargetCommandAttila Molnar
2016-03-29core_info Add class ServerTargetCommandAttila Molnar
2016-02-25cmd_commands Send the RPL_COMMANDS numeric with User::WriteNumeric()Attila Molnar
2016-02-25Add User::WriteRemoteNumeric() and switch code using SendText() to send ↵Attila Molnar
numerics to it
2016-02-25Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵Attila Molnar
parameters
2015-11-09info: Move ChrisTX and Shawn to former contributors section.Robin Burchell
2015-11-09info: Update my copyright since I've touched this rather extensively.Robin Burchell
2015-11-09info: Move SaberUK to Core Developers.Robin Burchell
Reflects reality, he's done a fair chunk of work. :)
2015-11-09info: Reflect reality, and move everyone who hasn't committed since 2010 to ↵Robin Burchell
"Former Developers" Self-explanatory, I hope.
2015-11-09info: Merge "Regular Contributors" and "Other Contributors" into "Active ↵Robin Burchell
Contributors" Neither of the two other titles were really informative, and this now gels with "Former Contributors".
2015-11-09info: Remove searchirc.com (now defunct), change irc-junkie credits to Asmo.Robin Burchell
Asmo was the guy who deserves thanks, not the site, per-se.
2015-11-09info: Move the early three of us to a "founding developers" section.Robin Burchell
Reflecting the reality that we are of some kind of importance, even if we aren't really doing much nowdays except sipping cocktails on the beach.
2015-11-09info: Move jackmcbarn from developers back to contributors.Robin Burchell
His last contribution was moving his name here, which doesn't seem to quite gel.
2015-05-12Remove support for non-unloadable (VF_STATIC) modulesAttila Molnar
No module we ship uses this flag and new modules should not use it either to make hotfixing possible
2015-05-12cmd_modules Don't show the memory addresses of Module objects to opersAttila Molnar
2015-04-20Merge insp20Attila Molnar
2014-10-27Merge insp20Attila Molnar
2014-06-25Add formatting to InspIRCd::TimeString; switch all code to use it.Peter Powell
m_httpd also now uses the correct timestamp format. Windows-specific fixes by @attilamolnar, original PR #849
2014-06-22Change all occurrences of plain sort() to std::sort()Attila Molnar
2014-06-13Change allocation of InspIRCd::Parser to be physically part of the object ↵Attila Molnar
containing it
2014-06-13Add CommandParser::GetCommands() and typedef CommandMap and use it instead ↵Attila Molnar
of directly accessing cmdlist
2014-03-07Move admin settings into core_infoAttila Molnar
2014-03-05Create the core_info moduleAttila Molnar
2014-03-05Move src/commands/cmd_*.cpp to src/coremods[/core_*]/Attila Molnar