| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2023-04-28 | 1 | -1/+1 | |
| | | |||||
| * | Fix the nicklock module sending a notice instead of ERR_NOSUCHNICK. | 2023-01-18 | 1 | -2/+2 | |
| | | |||||
| * | Update copyright headers. | 2022-12-30 | 1 | -2/+1 | |
| | | |||||
| * | Update copyright headers. | 2021-03-05 | 1 | -1/+1 | |
| | | |||||
| * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| | | |||||
| * | Update copyright headers. | 2020-01-11 | 1 | -2/+6 | |
| | | |||||
| * | Various text improvements: consistency, syntax, help and doc updates/fixes. | 2019-02-18 | 1 | -2/+2 | |
| | | |||||
| * | Use CommandBase::Params instead of std::vector<std::string>. | 2018-07-26 | 1 | -4/+4 | |
| | | | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. | ||||
| * | Add the override keyword in places that it is missing. | 2017-11-21 | 1 | -4/+4 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Convert uncontroversial anonymous numerics to use constants. | 2017-09-06 | 1 | -3/+11 | |
| | | |||||
| * | Add CXX11_OVERRIDE to overridden members that lack it. | 2017-07-12 | 1 | -1/+1 | |
| | | | | | | This fixes a ton of warnings when building on compilers that default to C++11 or newer. | ||||
| * | Simplify GetRouting() methods doing unicast | 2016-03-29 | 1 | -8/+2 | |
| | | |||||
| * | Add User::WriteRemoteNumeric() and switch code using SendText() to send ↵ | 2016-02-25 | 1 | -4/+2 | |
| | | | | | numerics to it | ||||
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -2/+2 | |
| | | | | | parameters | ||||
| * | Convert mods calling the old compat wrapper of ModuleManager::SetPriority() ↵ | 2015-02-15 | 1 | -1/+1 | |
| | | | | | to use the current method, remove wrapper | ||||
| * | Specify which Extensible subclass an ExtensionItem is valid for | 2015-01-18 | 1 | -1/+3 | |
| | | |||||
| * | Remove now needless User::ForceNickChange() | 2014-07-03 | 1 | -1/+1 | |
| | | | | | Change call sites to call ChangeNick() | ||||
| * | Change the type of the user parameter in the OnUserPreNick() hook from User ↵ | 2014-06-20 | 1 | -4/+1 | |
| | | | | | | | | | to LocalUser No remote users were passed to this hook before. Remove needless IS_LOCAL() checks. | ||||
| * | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -2/+2 | |
| | | | | | automatically | ||||
| * | Automatically register ServiceProviders created by modules | 2013-09-08 | 1 | -7/+0 | |
| | | |||||
| * | Automatically attach modules to events | 2013-08-04 | 1 | -1/+0 | |
| | | |||||
| * | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| | | |||||
| * | Remove TR_END, remove TRANSLATEx() from commands that do not need it | 2013-06-13 | 1 | -2/+2 | |
| | | |||||
| * | Merge insp20 | 2013-06-06 | 1 | -1/+1 | |
| |\ | |||||
| | * | m_nicklock Fix wrong hook in SetPriority() | 2013-05-23 | 1 | -1/+1 | |
| | | | |||||
| * | | Change the signature of User::ForceNickChange() to accept const std::string& ↵ | 2013-05-18 | 1 | -1/+1 | |
| | | | | | | | | | instead of const char* | ||||
| * | | Get rid of the NICKForced extension | 2013-05-18 | 1 | -3/+0 | |
| | | | | | | | | | Don't run OnUserPreNick when the nick change is forced | ||||
| * | | Remove the size argument from IsChannel and IsNick. | 2013-05-18 | 1 | -1/+1 | |
| | | | | | | | | | | | There was only one case (which was probably an error) where these methods were not set to their ServerLimits value. | ||||
| * | | Tidy up keywords on module methods. | 2013-05-15 | 1 | -3/+3 | |
| | | | | | | | | | | | - 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. | ||||
| * | | Add method for writing server notices. | 2013-05-14 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | This allows us to send a server notice to a user without worrying about whether they are registered or not. If a user receives a server notice and they are not registered then the nickname field will contain an asterisk instead of their nick name. | ||||
| * | | Whitespace and empty destructor removal, minor coding style changes | 2013-04-01 | 1 | -5/+0 | |
| | | | |||||
| * | | Change IsNickHandler()/IsIdentHandler()/IsChannelHandler() to use C++ ↵ | 2013-04-01 | 1 | -1/+1 | |
| |/ | | | | strings as arguments instead of C strings | ||||
| * | Add IS_SERVER() and REG_ALL checks to (mostly oper only) commands taking a ↵ | 2012-12-15 | 1 | -1/+1 | |
| | | | | | | | target nickname If a SID was passed as the target user parameter or when it's an unregistered user reply with the "no such nick" (or the moral equivalent) message | ||||
| * | Register all commands, modes and extensions using AddService() | 2012-12-02 | 1 | -3/+3 | |
| | | | | | AddService() throws an exception if an item cannot be registered, modules no longer need to worry about AddMode() etc. failing | ||||
| * | Attach to events and register services in init() | 2012-12-02 | 1 | -0/+4 | |
| | | |||||
| * | m_nicklock Fix typo | 2012-10-23 | 1 | -2/+2 | |
| | | |||||
| * | Replace copyright headers with headers granting specific authors copyright | 2012-04-19 | 1 | -8/+17 | |
| | | |||||
| * | Fix NICKLOCK/SANICK errors with Q:lined nicks | 2010-02-05 | 1 | -31/+16 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12378 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Allow nick locking to prevent voluntary changes to UID | 2010-01-24 | 1 | -3/+0 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12322 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Change more modules to VF_OPTCOMMON and assert identical charsets in ↵ | 2010-01-17 | 1 | -1/+1 | |
| | | | | | | | m_nationalchars git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12277 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | ...because every now and again, i have to do a massive commit. | 2010-01-11 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Remove dummy API_VERSION from Version constructor | 2009-10-17 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11887 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Move static map of extensions into ServerInstance, add const-correctness | 2009-10-14 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11873 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Move 2 static extensibles from user class to inspircd class for global ↵ | 2009-10-11 | 1 | -1/+1 | |
| | | | | | | | access in an attempt to further fix windows build. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11838 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Remove InspIRCd* parameters and fields | 2009-09-26 | 1 | -2/+2 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Describe module purpose in /MODULES output | 2009-09-22 | 1 | -1/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11757 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Clean up Command constructor | 2009-09-13 | 1 | -2/+4 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11707 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Remove redundant ServerInstance* fields | 2009-09-13 | 1 | -2/+2 | |
| | | | | | | | | | It has been impossible to have more than one InspIRCd* object in the same address space for some time now, and this feature was never used. This formalizes class InspIRCd as a singleton object. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11703 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Change Extensible to use strongly typed entries | 2009-09-13 | 1 | -31/+17 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11696 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | ModResult conversion: Change return type of all module functions | 2009-09-02 | 1 | -6/+6 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11634 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
