| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'insp4' into master. | 2026-03-31 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2026-03-31 | 1 | -1/+1 | |
| * | | Move service types to their own namespace.•••- ServiceProvider is now Service::Provider - DataProvider is now Service::SimpleProvider (the old name does not really make sense now we don't have SERVICE_DATA and the only difference is automatic registration. - Some members of ModuleManager have been elevated to the Service namespace in case other code wants to use them. | 2026-03-29 | 1 | -1/+1 | |
| * | | Switch modules from reference<> to shared_ptr<> and weak_ptr<>. | 2026-03-29 | 1 | -3/+3 | |
| * | | Rewrite sepstream and move to stringutils. | 2026-03-14 | 1 | -4/+5 | |
| * | | Clean up the casemapping checking and comparison code. | 2026-03-13 | 1 | -1/+1 | |
| * | | Rework sending server protocol messages.•••- Replace CmdBuilder with MessageBuilder. This has a less footgun API. All message building has to go through this now so we can implement other message formats in the future. - Replace the message parsing in WriteLine with an analogue to PreProcessOldProtocolMessage. This should be much faster. - Move parameter translation from the core to spanningtree. - Change EncodeParameter to return the value instead of updating in place. - Replace the OnBuild*Message events with one OnServerMessage that can now access all parts of the message and change them. | 2026-03-12 | 1 | -63/+2 | |
| * | | Merge branch 'insp4' into master. | 2026-03-08 | 1 | -3/+3 | |
| |\| | |||||
| | * | Allow Command::IsUsableBy to be used for server-originated messages. | 2026-03-08 | 1 | -2/+2 | |
| | * | Deduplicate command usability checks into Command::IsUsableBy. | 2026-03-06 | 1 | -22/+18 | |
| * | | Replace IS_* with member functions.•••- All user types get an Is* function. - Only local users are cast using the old function so only local users get an As* function. | 2026-03-08 | 1 | -2/+2 | |
| * | | Convert TranslateType to an enum class. | 2026-03-06 | 1 | -4/+4 | |
| * | | Deduplicate command usability checks into Command::IsUsableBy. | 2026-03-05 | 1 | -22/+18 | |
| * | | Switch parameter count fields to use size_t. | 2026-03-02 | 1 | -10/+10 | |
| * | | Rename ServiceProvider::creator to service_creator and add GetSource. | 2026-03-02 | 1 | -1/+1 | |
| * | | Massive rework of how internal service providers work.•••- ServiceType is dead. All modules use RegisterService now. - Modules can implement UnregisterService which is called from DelService now. - Split the service type prefix into its own field. - Renamed Service::name to Service::service_name. This revealed a few bugs. | 2026-03-02 | 1 | -1/+6 | |
| * | | Rename ServiceProvider methods to avoid shadowing issues. | 2026-03-02 | 1 | -8/+9 | |
| * | | Merge branch 'insp4' into master. | 2026-02-28 | 1 | -0/+2 | |
| |\| | |||||
| | * | Fix RPL_ENDOFNAMES for real this time. | 2026-02-28 | 1 | -0/+2 | |
| * | | Implement support for per-command maximum targets.•••Closes #2157. | 2026-02-27 | 1 | -1/+21 | |
| * | | Add a numeric helper for ERR_NOPRIVILEGES. | 2026-02-26 | 1 | -10/+3 | |
| * | | Merge branch 'insp4' into master. | 2024-11-01 | 1 | -10/+0 | |
| |\| | |||||
| | * | All core numerics should be in numeric.h not in .cpp files. | 2024-10-26 | 1 | -10/+0 | |
| * | | Merge branch 'insp4' into master. | 2024-09-09 | 1 | -16/+16 | |
| |\| | |||||
| | * | Update copyright headers. | 2024-09-07 | 1 | -1/+1 | |
| | * | Check the connection state of a command before the parameter count.•••Works around a bug in irssi. Closes #2103. | 2024-09-03 | 1 | -7/+7 | |
| | * | Normalise the case of MOD_RESULT variables. | 2024-08-31 | 1 | -8/+8 | |
| * | | Use C++20 <format> instead of fmtlib when available. | 2024-08-22 | 1 | -1/+1 | |
| * | | Always use fmtlib directly. | 2024-06-07 | 1 | -1/+1 | |
| |/ | |||||
| * | Update copyright headers. | 2024-06-07 | 1 | -1/+1 | |
| * | Normalise the case of ServerStats. | 2023-07-13 | 1 | -2/+2 | |
| * | Make MaxTargets a size_t. | 2023-07-03 | 1 | -1/+1 | |
| * | Rename command_parse to commands. | 2023-05-08 | 1 | -0/+503 | |
| * | Move the contents of commands to command_parse. | 2023-05-08 | 1 | -121/+0 | |
| * | Convert log calls to use fmtlib format strings | 2023-01-24 | 1 | -2/+2 | |
| * | Qualify auto correctly in all cases. | 2023-01-10 | 1 | -1/+1 | |
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| * | | Rework the levels things are logged at to make more sense. | 2022-12-18 | 1 | -1/+1 | |
| * | | Rename session registration to connection to avoid a semantic conflict.•••We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works. | 2022-10-29 | 1 | -2/+2 | |
| * | | Use User::IsFullyConnected instead of checking for REG_ALL. | 2022-10-29 | 1 | -1/+3 | |
| * | | Move numerics to the source files where they are actually used. | 2022-06-26 | 1 | -0/+10 | |
| * | | Rewrite logging calls to use the new APIs. | 2022-05-01 | 1 | -1/+1 | |
| * | | Refactor CoreException and ModuleException. | 2022-01-07 | 1 | -1/+1 | |
| * | | Convert UserType to be a uint8_t and move inside User. | 2020-11-10 | 1 | -5/+5 | |
| * | | Clean up a bunch of contructors and destructors. | 2020-11-01 | 1 | -4/+0 | |
| * | | Convert CmdResult to an 8-bit strongly typed enum. | 2020-10-27 | 1 | -4/+4 | |
| * | | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-04-24 | 1 | -1/+1 | |
| * | | Revert "Convert UserType to an enum class".•••There's a bug in GCC with bitfields and enum class. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51242 This reverts commit 44834a66a7e92c8979ae16421286c581a9cffbe9. | 2020-04-21 | 1 | -5/+5 | |
