Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-03-02 | Core: Updated to 11.1.0 | Shauren | |
2025-03-02 | Core/DataStores: Support non-uint32 ID fields | Shauren | |
2025-02-23 | Core/Utils: Added map key/value utility projections for std::ranges algorithms | Shauren | |
2025-01-21 | Core/Utils: Allow using Trinity::IteratorPair with SelectRandomContainerElement | Shauren | |
2025-01-19 | Core/Misc: Added float chrono typedefs | Shauren | |
2025-01-17 | Core/Misc: Remove return type std::enable_if based SFINAE | Shauren | |
2025-01-07 | Core/Network: Simplify worldserver port configuration: removed ↵ | Shauren | |
InstanceServerPort | |||
2024-12-31 | Core/Misc: Include cleanup - remove MapUtils.h from Containers.h | Shauren | |
2024-12-31 | Core/Misc: Add concepts restrictions on container utilities for better ↵ | Shauren | |
compiler error messages | |||
2024-12-18 | Core: Updated to 11.0.7 | Shauren | |
2024-12-18 | Core/Crypto: Added HMAC_SHA512 definition | Shauren | |
2024-12-18 | Core/Crypto: Allow different AES key lengths | Shauren | |
2024-12-16 | Fix codestyle | Shauren | |
2024-12-16 | Fix build | Shauren | |
2024-12-16 | Core/Misc: Fixed build with c++23 enabled | Shauren | |
Closes #30511 | |||
2024-12-15 | Core/Utils: Mark Trinity::HashFnv1a as constexpr | Shauren | |
2024-12-11 | Core/Vmaps: Minor cleanup (formatting) and documentation updates for ↵ | Shauren | |
BIH::build copy vs move choice | |||
2024-12-09 | Dep: Replace basic_deadline_timer with std::chrono based basic_waitable_timer | Shauren | |
2024-12-01 | Fix nopch build | Shauren | |
2024-12-01 | Core/Misc: Port std::ranges::contains from c++23 | Shauren | |
2024-11-28 | Core/Vmaps: Don't ignore model rotation when calculating liquid level | Shauren | |
Closes #30205 | |||
2024-11-27 | Adjust previous commit to compile with clang on systems that have gcc 12 ↵ | Shauren | |
installed | |||
2024-11-26 | Core/Misc: Modernize and improve GetMainPartOfName | Shauren | |
2024-11-23 | Core/Misc: Remove non-portable hack of including `<__msvc_chrono.hpp>` - ↵ | Stephan T. Lavavej | |
will break in future MSVC release (#30460) | |||
2024-11-14 | Core/Misc: Support IPv6 ip2location | Shauren | |
2024-11-12 | Core/Networking: Support IPv6 | Shauren | |
2024-10-16 | Core/Misc: Replace std::ostringstream based formatting with ↵ | Shauren | |
Trinity::StringFormat where possible in common and database projects | |||
2024-10-09 | Core/Crypto: Respect OPENSSL_MODULES environment variable if set by user ↵ | Shauren | |
that points to where legacy.dll should be found | |||
2024-10-05 | Core/Chat: Improve ingame language translation (#30298) | Meji | |
2024-10-01 | Core/Utilities: Extend make_unique_ptr_with_deleter functionality to allow ↵ | Shauren | |
it to create deleters with compile time constant functions (reduces its size to just sizeof(void*)) | |||
2024-09-27 | Core/DataStores: Removed overriding field sign type based on db2 column ↵ | Shauren | |
compression | |||
2024-09-23 | Core/Common: Catch and log child process creation errors | Shauren | |
2024-09-23 | Core/CrashHandler: Output inlined stack frames | Shauren | |
2024-09-23 | Core/CrashHandler: Make WheatyExceptionReport fields not static to ensure ↵ | Shauren | |
consistent destruction order | |||
2024-09-20 | Build: Add WITH_WARNINGS_AS_ERRORS cmake option that turns compile warnings ↵ | Shauren | |
into compile errors | |||
2024-09-15 | Build: Automatically include WindowsSettings.manifest in all executables ↵ | Shauren | |
instead of listing it separately as source file in every target | |||
2024-09-15 | Core/Common: Compile ServiceWin32 as part of common project instead of ↵ | Shauren | |
directly adding its source files to both server executables | |||
2024-09-15 | Core/CrashHandler: Compile WheatyExceptionReport only once and moved its ↵ | Shauren | |
global variable initializer to all projects using it | |||
2024-09-14 | Core/Common: Output stdout/stderr from child process without waiting for it ↵ | Shauren | |
to finish | |||
2024-09-14 | Core: Remove boost iostreams dependency | Shauren | |
2024-09-10 | Core/Misc: Fix GitRevision::GetHostOSVersion compilation on arch linux, ↵ | Shauren | |
TRINITY_BUILD_HOST_DISTRO_VERSION_ID is not defined there | |||
2024-09-03 | Core/Misc: CompilerDefs/GitRevision improvements | Shauren | |
* Removed INTEL as a separate platform (it does not belong there) * Removed BORLAND from known compilers list (it was never supported) * Simplified TRINITY_PLATFORM_WINDOWS detection (_WIN32 is always defined) * Rename revision_data.h macros that begin with a underscore * Added processor architecture to --version string * Added Linux distribution name to .server debug * Fixed some revision_data.h macros missing/wrong values when regenerated during compilation * Removed manual adding of _WIN64 macro from cmake (it is predefined internally by compiler) | |||
2024-08-17 | Core/Utils: Unwrap non-copyable pointers (unique_ptr) from ↵ | Shauren | |
Trinity::Containers::MapGetValuePtr | |||
2024-07-31 | Core/Logging: fixed nopch build for msvc compilers (#30126) | Ovahlord | |
2024-07-18 | Build: Fixed CMake 3.30 FindBoost deprecation warning | Shauren | |
2024-07-17 | Added missing GameObjectModel::iLosBlockingDisabled initialization in ↵ | Shauren | |
constructor | |||
2024-07-17 | Core/GameObject: Implemented NotLOSBlocking door property | Shauren | |
2024-07-16 | Core/Logging: Minor internal refactor | Shauren | |
* Avoid formatting to output with fprintf * Use vector instead of unordered_map to store appenders in Logger | |||
2024-07-15 | Build: CMake cleanup | Shauren | |
* Migrate all add_definitions to target_compile_definitions * Remove -D from preprocessor definitions added by target_compile_definitions (unneccessary, cmake strips it anyway) * Fixed NO_BUFFERPOOL not being set on g3d if jemalloc is used * Moved library/compiler specific compile flag settings spread all over various CMakeLists to their related library/compiler file * Remove ancient manual link flag settings for worldserver | |||
2024-07-14 | Core/Utils: Transform char toUpper/toLower functions into callable function ↵ | Shauren | |
objects to better integrate with std algorithms (not calling through a function pointer allows inlining) |