aboutsummaryrefslogtreecommitdiff
path: root/src/common/Utilities
AgeCommit message (Collapse)Author
2025-11-15Core/Misc: Add missing includesShauren
2025-10-11Dep/fmt: Update to 12.0.0Shauren
2025-07-13Core/Misc: Move large functions out of header filesShauren
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-06-23Core/Misc: Remove StringFormat exception handling code from the headerShauren
2025-06-17Core/Misc: Remove extremely forgettable tiny utility functionShauren
2025-06-13Core/Misc: Remove a bunch of code from headersShauren
2025-06-11Core/Common: Update PCH content to include most commonly used headersShauren
2025-06-08Core/Misc: Remove boost/algorithm dependencyShauren
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-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-13Dep/Boost: Support boost 1.88Shauren
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-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-16Fix codestyleShauren
2024-12-16Fix buildShauren
2024-12-16Core/Misc: Fixed build with c++23 enabledShauren
Closes #30511
2024-12-15Core/Utils: Mark Trinity::HashFnv1a as constexprShauren
2024-12-01Fix nopch buildShauren
2024-12-01Core/Misc: Port std::ranges::contains from c++23Shauren
2024-11-27Adjust previous commit to compile with clang on systems that have gcc 12 ↵Shauren
installed
2024-11-26Core/Misc: Modernize and improve GetMainPartOfNameShauren
2024-11-23Core/Misc: Remove non-portable hack of including `<__msvc_chrono.hpp>` - ↵Stephan T. Lavavej
will break in future MSVC release (#30460)
2024-10-16Core/Misc: Replace std::ostringstream based formatting with ↵Shauren
Trinity::StringFormat where possible in common and database projects
2024-10-05Core/Chat: Improve ingame language translation (#30298)Meji
2024-10-01Core/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-23Core/Common: Catch and log child process creation errorsShauren
2024-09-14Core/Common: Output stdout/stderr from child process without waiting for it ↵Shauren
to finish
2024-09-14Core: Remove boost iostreams dependencyShauren
2024-07-16Core/Logging: Minor internal refactorShauren
* Avoid formatting to output with fprintf * Use vector instead of unordered_map to store appenders in Logger
2024-07-14Core/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)
2024-05-07Core/Misc: Minor change to make_unique_ptr_with_deleter to make it accept ↵Shauren
only pointers
2024-05-03Dep/fmt: Upgrade to 10.2.1Shauren
2024-05-02Core/Misc: Minor fixes in preparation to support fmt v10Shauren
2024-03-27Build: Fix Linux aarch64 GCC build (#29831)lee
(cherry picked from commit 370685457e83c9657c1337ea5a2dc2f07e01af62)
2024-03-13Core/Utils: unique_trackable_ptr improvementsShauren
* Added comparison operators * Added type casting helper functions
2024-03-12Core/Utils: Added missing member access in unique_trackable_ptr move ↵Shauren
assignment operator