summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2024-02-22Rework SendNumericInternal to be usable with Uplink::Send.Sadie Powell
2024-02-22Convert most core protocol handlers to use Uplink::Send.Sadie Powell
2024-02-22Add Uplink::Send, rework message formatting.Sadie Powell
This is the new way of sending messages to the uplink inspired by the work done in the old git master. This will allow us to do new things involving tags in the future.
2024-02-22Inline, constify, and document GetProtocolName.Sadie Powell
2024-02-22Include tags in OnMessage.Sadie Powell
2024-02-21Move IRCDProto member initializers to the header.Sadie Powell
2024-02-20Make ModuleManager::SetPriority more readable.Sadie Powell
2024-02-17Mark as 2.0.16-git.Sadie Powell
2024-02-17Release 2.0.15.2.0.15Sadie Powell
2024-02-17Update the copyright headers for 2024.Sadie Powell
2024-02-17Bump for 2.1.3-git.Sadie Powell
2024-02-17Release 2.1.2.2.1.2Sadie Powell
2024-02-11Merge branch '2.0' into 2.1.Sadie Powell
2024-02-11Update the Windows dependencies.Sadie Powell
2024-02-11Switch Thread to use the C++11 equivalent, remove win32/pthread.Sadie Powell
2024-02-11Replace Condition and Mutex with the C++11 standard equivalents.Sadie Powell
2024-02-11Remove the time_t parameter from Tick and TickTimers.Sadie Powell
Most uses of Tick do not use the parameter and even when it is used it is always the same as CurTime.
2024-02-11Consistently use time_t for the timer duration.Sadie Powell
2024-02-11Remove the now parameter from the Timer class.Sadie Powell
This was never actually changed from the default.
2024-01-23Mark types that have no inheritors as final.Sadie Powell
2024-01-23Improve the layout of types that inherit from another type.Sadie Powell
2024-01-09Use native file extensions on macOS and Windows.Sadie Powell
2024-01-08Add a string overload of Channel::Kick.Sadie Powell
2024-01-08Add a string overload of User::SetModes.Sadie Powell
2024-01-08Add a string overload of Channel::SetModes.Sadie Powell
2024-01-08Fix various format string issues.Sadie Powell
2024-01-08Add a non-formatting overload of User::SetModesInternal.Sadie Powell
2024-01-06Use auto in places where the type is unambiguous.Sadie Powell
2024-01-05Use normal exit codes when exiting the process.Sadie Powell
2024-01-04Update the copyright headers for 2024.Sadie Powell
2024-01-04Bump for 2.1.2-git.Sadie Powell
2024-01-04Release 2.1.1.2.1.1Sadie Powell
2024-01-04Fix a typo in GetCommandLineArgument.Sadie Powell
2023-12-22Move privilege descriptions to the example configs.Sadie Powell
2023-12-20Merge branch '2.0' into 2.1.Sadie Powell
2023-12-17Misc grammar fixes.Sadie Powell
2023-12-17Merge branch '2.0' into 2.1.Sadie Powell
2023-12-17Remove some unnecessary spaces that break editor indentation.Sadie Powell
2023-12-08messages: fix incorrect format specifierMingjie Shen
Calling a printf-like function with the wrong type of arguments causes unpredictable behavior. Signed-off-by: Mingjie Shen <shen497@purdue.edu>
2023-11-24Bump for 2.1.1-git.Sadie Powell
2023-11-24Release 2.1.0.2.1.0Sadie Powell
2023-11-16Avoid needing to cast CurrentUplink by changing it to a size_t.Sadie Powell
2023-11-14Implement support for the ANONYMOUS SASL mechanism.Sadie Powell
2023-10-12Use a more human readable datetime format.Sadie Powell
2023-10-11Start migrating to range-based for loops.Sadie Powell
2023-08-06Merge branch 2.0 into 2.1.Sadie Powell
2023-08-06Mark as 2.0.15-git.Sadie Powell
2023-08-06Release 2.0.14.2.0.14Sadie Powell
2023-07-11Allow Anope to look up multiple DNS results.Sadie Powell
For fixing bug 1756.
2023-07-11Fix sending log messages from a renamed pseudoclient.Sadie Powell
If a command is named e.g. nickserv/wibble it previously tried to look up the nickserv service and if this service didn't exist then it would fall back to sending from the first available service. This caused problems if the NickServ service had been renamed to something else. Reported by @AndrioCelos on IRC.