aboutsummaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2025-07-18Core/Misc: Add splice/pop_front/pop_back to LinkedListHeadShauren
2025-07-13Core/Misc: Move large functions out of header filesShauren
2025-07-13Core/CrashHandler: Fix nopch buildShauren
2025-07-09Core/Database: Add Empty and CancelAll functions to AsyncCallbackProcessor ↵Shauren
and enable callback concept check
2025-07-09Core/Random: Use standard aligned operator new and remove RandomEngine ↵Shauren
singleton instance (it is trivially constructible)
2025-07-06Core/CrashHandler: Remove MAX_PATH limitShauren
2025-06-23Core/Misc: Remove StringFormat exception handling code from the headerShauren
2025-06-17Core/Misc: Remove extremely forgettable tiny utility functionShauren
2025-06-17Core/Calendar: MSVC nopch fixShauren
2025-06-13Core/Misc: Remove a bunch of code from headersShauren
2025-06-11Core/Network: Enable PCHShauren
2025-06-11Core/Common: Update PCH content to include most commonly used headersShauren
2025-06-11Core/Misc: Fix revision_data.h and boost/predef preprocessor macro conflictShauren
2025-06-10Core/Misc: Kill copy/move constructors for singleton classesShauren
2025-06-08Core/Misc: Remove boost/algorithm dependencyShauren
2025-06-07Tools/Extractors: Skip extracting visual only liquids (determined by ↵Shauren
LiquidMaterial flags)
2025-06-02Core/Network: Make ip address formattable with fmtShauren
2025-06-02Core/Misc: Add end iterator/sentinel to make `char const*` work with ↵Shauren
std::ranges algorithms
2025-06-02Core/Misc: Move fmt::formatter forward declaration to a common header to ↵Shauren
reduce number of replacements needed when upgrading fmt to new major version
2025-05-23Core/PacketIO: Remove ByteBuffer constructor from MessageBufferShauren
2025-05-22Core/Network: Fix typo in AsyncAcceptor function name (#30975)An-Zheng
2025-05-19Core/Misc: Add support for non-copyable types in LockedQueueShauren
2025-05-19Core/Misc: Fixed some uninitialized variablesShauren
2025-05-19Core/Misc: Silence some statis analysis false positive warningsShauren
2025-05-13Core/Misc: Make string and string_view literal suffixes globally availableShauren
2025-05-07Core/Config: Use std::string_view instead of std::string to lookup config valuesShauren
2025-04-26Core/Utils: Added nullptr_t assignment operator to unique_weak_ptr (alias ↵Shauren
for .reset())
2025-04-19Core/Conditions: Added conditions for automatic learning spells with ↵Shauren
SkillLineAbility::AcquireMethod = 4
2025-04-14Core/Utilities: Added boost asio callback that transforms callback ↵Shauren
signatures from (error_code + other) to (boost::outcome)
2025-04-13Dep/Boost: Support boost 1.88Shauren
2025-04-13Core/Network: Minor include cleanup and add more required functions and ↵Shauren
typdefs to SslStream and BoostBeastSocketWrapper
2025-04-10Core/Misc: Port C++23 std::forward_likeShauren
2025-04-09Core/Network: Move to separate projectShauren
2025-04-08Core/Network: Socket refactorsShauren
* Devirtualize calls to Read and Update by marking concrete implementations as final * Removed derived class template argument * Specialize boost::asio::basic_stream_socket for boost::asio::io_context instead of type-erased any_io_executor * Make socket initialization easier composable (before entering Read loop) * Remove use of deprecated boost::asio::null_buffers and boost::beast::ssl_stream
2025-04-02Core/Misc: Simplify Trinity::invocable_r conceptShauren
2025-03-02Core: Updated to 11.1.0Shauren
2025-03-02Core/DataStores: Support non-uint32 ID fieldsShauren
2025-02-23Core/Utils: Added map key/value utility projections for std::ranges algorithmsShauren
2025-01-21Core/Utils: Allow using Trinity::IteratorPair with SelectRandomContainerElementShauren
2025-01-19Core/Misc: Added float chrono typedefsShauren
2025-01-17Core/Misc: Remove return type std::enable_if based SFINAEShauren
2025-01-07Core/Network: Simplify worldserver port configuration: removed ↵Shauren
InstanceServerPort
2024-12-31Core/Misc: Include cleanup - remove MapUtils.h from Containers.hShauren
2024-12-31Core/Misc: Add concepts restrictions on container utilities for better ↵Shauren
compiler error messages
2024-12-18Core: Updated to 11.0.7Shauren
2024-12-18Core/Crypto: Added HMAC_SHA512 definitionShauren
2024-12-18Core/Crypto: Allow different AES key lengthsShauren
2024-12-16Fix codestyleShauren
2024-12-16Fix buildShauren
2024-12-16Core/Misc: Fixed build with c++23 enabledShauren
Closes #30511