| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Release v5.0.0 development snapshot 4. v5.0.0dev4 | 2026-05-01 | 1 | -1/+1 | |
| | | |||||
| * | Remove the remaining function in utility/string to utility/container. | 2026-04-30 | 6 | -7/+2 | |
| | | |||||
| * | Switch ascii comparisons over to our own casemap functions. | 2026-04-30 | 7 | -47/+49 | |
| | | |||||
| * | Move CommandLine from ServerConfig to InspIRCd. | 2026-04-30 | 3 | -23/+22 | |
| | | | | | | | There's no need for this to be in ServerConfig. Although it is configuration it applies more to the cli interface which is part of the InspIRCd class. | ||||
| * | Improve support for unity builds. | 2026-04-29 | 1 | -0/+6 | |
| | | |||||
| * | Fix some paths in generated files not being absolute. | 2026-04-28 | 6 | -18/+18 | |
| | | |||||
| * | Add an interactive mode to `./modulemanager extra`. | 2026-04-28 | 1 | -0/+23 | |
| | | |||||
| * | Fix invalidation of the CMake module glob after enabling modules. | 2026-04-27 | 1 | -1/+1 | |
| | | |||||
| * | Add the common Python module to deduplicate some code. | 2026-04-27 | 2 | -3/+68 | |
| | | |||||
| * | Switch the build system to CMake. | 2026-04-27 | 26 | -4/+3008 | |
| | | |||||
| * | Fix some minor Python issues. | 2026-04-19 | 2 | -2/+0 | |
| | | |||||
| * | Default the fake pointer methods to ssize_t. | 2026-04-16 | 1 | -2/+2 | |
| | | |||||
| * | Merge branch 'insp4' into master. | 2026-04-16 | 1 | -1/+5 | |
| |\ | |||||
| | * | Add support for getentropy() on macOS. | 2026-04-16 | 1 | -1/+5 | |
| | | | |||||
| | * | Release v4.10.1. v4.10.1 | 2026-04-11 | 1 | -1/+1 | |
| | | | |||||
| | * | Whitelist the recently ratified +channel-context tag. | 2026-04-09 | 1 | -0/+1 | |
| | | | |||||
| | * | Truncate overly-long usernames in USER. | 2026-04-08 | 1 | -1/+7 | |
| | | | |||||
| | * | Release v4.10.0. v4.10.0 | 2026-04-04 | 1 | -1/+1 | |
| | | | |||||
| | * | Update module descriptions. | 2026-04-04 | 1 | -1/+1 | |
| | | | |||||
| * | | Add the new module manager. | 2026-04-16 | 2 | -0/+207 | |
| | | | |||||
| * | | Rename DLL_EXTENSION to INSPIRCD_MODULE_EXT. | 2026-04-07 | 3 | -9/+9 | |
| | | | | | | | | | | | This will be in config.h when we switch to CMake so I'm renaming it now to reduce the diff size of the CMake commit. | ||||
| * | | Define NDEBUG when not building in debug mode. | 2026-04-06 | 2 | -14/+14 | |
| | | | |||||
| * | | Add insp::find_value, insp::to_ptr and switch code to use them. | 2026-04-04 | 5 | -25/+9 | |
| | | | |||||
| * | | Add an easier way to get the local Server* object. | 2026-04-04 | 3 | -3/+5 | |
| | | | |||||
| * | | Remove the remaining bits of stdalgo to utility/container. | 2026-04-04 | 4 | -4/+7 | |
| | | | |||||
| * | | Rename utility/map to container and prefix the difference method. | 2026-04-04 | 1 | -2/+2 | |
| | | | |||||
| * | | Add support for multiple I/O hooks per socket. | 2026-04-04 | 1 | -16/+33 | |
| | | | |||||
| * | | Move query string code from spanningtree to stringutils. | 2026-04-03 | 1 | -0/+35 | |
| | | | |||||
| * | | Release v5.0.0 development snapshot 3. v5.0.0dev3 | 2026-04-01 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp4' into master. | 2026-03-31 | 6 | -6/+6 | |
| |\| | |||||
| | * | Update copyright headers. | 2026-03-31 | 45 | -49/+48 | |
| | | | |||||
| | * | Add support for the IRCv3 UTF8ONLY specification. | 2026-03-19 | 1 | -0/+306 | |
| | | | |||||
| * | | Kill the remaining uses of intptr_t. | 2026-03-30 | 1 | -6/+6 | |
| | | | |||||
| * | | Replace some C-style array usage with Modern C++. | 2026-03-29 | 2 | -11/+6 | |
| | | | |||||
| * | | Move dynref code to be alongside the service code. | 2026-03-29 | 2 | -83/+83 | |
| | | | |||||
| * | | Move service types to their own namespace. | 2026-03-29 | 10 | -76/+95 | |
| | | | | | | | | | | | | | | | | | | | | | | | - 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. | ||||
| * | | Move some functions from stdalgo to utility/pointer. | 2026-03-29 | 3 | -4/+4 | |
| | | | |||||
| * | | Switch modules from reference<> to shared_ptr<> and weak_ptr<>. | 2026-03-29 | 10 | -62/+77 | |
| | | | |||||
| * | | Remove the now unused refcountbase. | 2026-03-27 | 1 | -65/+0 | |
| | | | |||||
| * | | Switch the extensible system to using shared pointers. | 2026-03-27 | 1 | -37/+52 | |
| | | | |||||
| * | | Move CUList to be declared inside User. | 2026-03-26 | 2 | -8/+8 | |
| | | | |||||
| * | | Switch typedefs to using statements. | 2026-03-26 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp4' into master. | 2026-03-19 | 1 | -0/+1 | |
| |\| | |||||
| | * | Allow overriding the oper restrictions on the fingerprint extban. | 2026-03-19 | 1 | -2/+3 | |
| | | | |||||
| | * | Expose the maximum channel key length to services. | 2026-03-19 | 6 | -7/+5 | |
| | | | |||||
| | * | Improve config compatibility with previous releases. | 2026-03-19 | 1 | -13/+7 | |
| | | | |||||
| | * | Implement the IRCv3 no-implicit-names specification. | 2026-03-18 | 1 | -0/+25 | |
| | | | |||||
| | * | Implement support for the IRCv3 ACCOUNTEXTBAN isupport token. | 2026-03-18 | 1 | -1/+11 | |
| | | | |||||
| | * | Backport the fix of copying dynamic references from git master. | 2026-03-17 | 1 | -0/+6 | |
| | | | |||||
| | * | Fix cap notifications to comply with ircv3/ircv3-specifications#480. | 2026-03-14 | 1 | -2/+2 | |
| | | | |||||
