| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2024-06-07 | 1 | -1/+1 | |
| * | Move extension types to their own header to speed up build times. | 2022-12-19 | 1 | -313/+2 | |
| * | Use auto instead of type names where the type is obvious. | 2022-09-29 | 1 | -1/+1 | |
| * | Rip out the extensible/user serialisation system.•••This was part of a failed attempt to implement zero downtime restarts in v3. This can be implemented in a better way but for now its just slowing down build times so lets kill it. | 2022-09-01 | 1 | -7/+0 | |
| * | Refuse to set an extension on the wrong type of extensible. | 2022-01-31 | 1 | -2/+10 | |
| * | Make extension names case insensitive. | 2022-01-31 | 1 | -1/+1 | |
| * | Add the type to the Extensible class. | 2022-01-31 | 1 | -1/+4 | |
| * | Rename the ExtensionItem::type field to extype to avoid collisions. | 2022-01-31 | 1 | -1/+1 | |
| * | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -14/+14 | |
| * | Fix the doxygen documentation and style of the extension classes. | 2022-01-22 | 1 | -137/+175 | |
| * | Fix various edge cases in extensible synchronisation.•••- Fix not forwarding the accountid extensible if it is set. - Rename the variadic Set() overload to SetFwd(). - Re-add the `const T&` overload of Set(). - Move `bool synced` to SimpleExtItem from StringExtItem. - Only sync extensibles if their instance is marked as syncable. | 2022-01-21 | 1 | -13/+23 | |
| * | Revert "Allow setting extension data on connect classes".•••This can't reasonably be implemented safely with the current way that extensibles work. This reverts commit b867007d201b1a3b130186c54e41481c0374a7f6. | 2022-01-16 | 1 | -3/+0 | |
| * | Allow setting extension data on connect classes. | 2022-01-16 | 1 | -0/+3 | |
| * | Promote ExtensionItem::ExtensibleType to a top level enum class. | 2021-12-23 | 1 | -19/+19 | |
| * | Add the final keyword to all remaining classes that can have it. | 2021-12-20 | 1 | -5/+9 | |
| * | Replace some references to ssl with tls. | 2021-12-08 | 1 | -5/+5 | |
| * | Merge branch 'insp3' into master. | 2021-07-01 | 1 | -1/+1 | |
| |\ | |||||
| | * | Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> | 2021-06-21 | 1 | -1/+1 | |
| * | | Remove usecountbase from ExtensionItem and refer to using pointers.•••At one point (1.2?) this was actually useful but nowadays its not. | 2021-04-09 | 1 | -5/+4 | |
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -16/+1 | |
| * | | Add a subclass of ExtensionItem exclusively for booleans. | 2021-03-17 | 1 | -0/+56 | |
| * | | Implement support for automatically syncing extension items. | 2021-03-17 | 1 | -6/+18 | |
| * | | Mark {From,To}{Human,Internal,Network} as noexcept. | 2021-03-17 | 1 | -13/+13 | |
| * | | Add a forwarding overload of SimpleExtItem#Set. | 2021-03-17 | 1 | -6/+5 | |
| * | | Pascalize Unset in extension item classes. | 2021-03-17 | 1 | -2/+2 | |
| * | | Pascalize Set in extension item classes. | 2021-03-17 | 1 | -3/+3 | |
| * | | Pascalize Get in extension item classes. | 2021-03-17 | 1 | -2/+2 | |
| * | | Refactor classbase/CullResult into Cullable/Cullable::Result. | 2021-03-02 | 1 | -2/+2 | |
| * | | Replace defaultdeleter with the C++11 one and rename culldeleter. | 2021-01-30 | 1 | -1/+1 | |
| * | | Rename Extensible::doUnhookExtensions to UnhookExtensions. | 2021-01-30 | 1 | -1/+1 | |
| * | | Pascalize ExtensionItem::{get,set,unset}_raw. | 2020-07-20 | 1 | -9/+11 | |
| * | | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -2/+2 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-04-24 | 1 | -1/+1 | |
| | * | Fixes by misspell-fixer | 2020-04-21 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2020-04-09 | 1 | -2/+2 | |
| |\| | |||||
| | * | Fix various documentation and formatting issues. | 2020-03-30 | 1 | -3/+3 | |
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -0/+3 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -0/+3 | |
| * | | Merge branch 'insp3' into master. | 2019-11-13 | 1 | -1/+9 | |
| |\| | |||||
| | * | Implement serialisation of users.•••This allows for various things which will be coming in the future. e.g. Transferring users to another server on upgrade. | 2019-10-14 | 1 | -1/+9 | |
| * | | Replace LocalIntExt with IntExtItem. | 2019-08-13 | 1 | -8/+46 | |
| * | | Rewrite and merge LocalStringExt, StringExtItem. | 2019-08-13 | 1 | -17/+27 | |
| * | | Move the Module parameter of ExtensionItem et al to the start.•••This matches what other ServiceProvider types do. | 2019-08-13 | 1 | -11/+16 | |
| * | | Rename ExtensionItem::free to ExtensionItem::Delete. | 2019-08-13 | 1 | -7/+7 | |
| * | | Merge branch 'insp3' into master. | 2019-08-13 | 1 | -6/+3 | |
| |\| | |||||
| | * | Free StringExtItem and SimpleExtItem values correctly. | 2019-08-13 | 1 | -6/+3 | |
| | * | Convert LocalExtItem to a typedef and deprecate it. | 2019-08-13 | 1 | -11/+5 | |
| * | | Remove remnants of the old ExtensionItem serialisation system.•••Also rm LocalExtItem whilst we are at it as it is now obsolete. | 2019-08-09 | 1 | -27/+3 | |
| * | | Merge branch 'insp3' into master. | 2019-08-09 | 1 | -35/+80 | |
| |\| | |||||
| | * | Convert all core ExtensionItem code away from {un,}serialize. | 2019-08-07 | 1 | -8/+6 | |
