aboutsummaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2023-05-13Core/Misc: Replace string to int conversion functions from Common.h with ↵Shauren
c++17 std::from_chars based ones Trinity::StringTo
2023-05-06Core/Misc: TaskScheduler cleanup (#28862)Gosha
-Pass std::chrono types by value, they are small enough to not be passed around by const& -Same applied to Optional<group_t> -Replace EmptyCallback with nullptr Co-authored-by: Shauren <shauren.trinity@gmail.com>
2023-05-05Core/DataStores: Remove temporary 10.0.7 workraroundShauren
2023-05-04Core: Update to 10.1Shauren
2023-04-27Core/DataStores: Optimized DB2Storage::begin to remove searching for lowest ↵Shauren
id on every call
2023-04-26Core/DataStores: Changed empty string checks in db2 loaders to not rely on ↵Shauren
undefined behavior (comparing pointers to different objects/arrays with greater/less)
2023-04-18Core/DataStores: Added temporary workaround for buggy db2 metadata in build ↵Shauren
10.0.7.48999
2023-04-18Core/DataStores: Minor db2 loader cleanupShauren
2023-04-13Core/Misc: Fixed IpLocation crashes on invalid ip inputShauren
2023-04-10Core/Misc: Fix build with libc++Shauren
Closes #28909
2023-04-08Core/Misc: Fix typos in bannerMeji
2023-04-06Core/Misc: Modernize code a bit by replacing std::tie with either structured ↵Shauren
bindings or operator<=>
2023-03-11Core/DataStores: Fixed loading CommonData when IdTable is present (#28853)Ghaster
2023-02-03Core/DataStores: Fixed string fields containing empty strings in some 10.0.5 ↵Shauren
db2 files Closes #28805
2023-01-31Core/Misc: Fixed clang 15 warningsShauren
2023-01-10Core/Logging: Fixed remaining uses of STRING_VIEW_FMT in log statementsShauren
2023-01-08Dep/fmt: Upgrade to 9.1.0Shauren
2023-01-08Core/Logging: Switch from fmt::sprintf to fmt::format (c++20 standard ↵Shauren
compatible api)
2023-01-07Core/Misc: Include cleanup, 2023 editionShauren
2023-01-07Core/Misc: Replace enable_if overload selection with if constexprShauren
2023-01-07Core/Misc: Migrate our c++20 advstd to standard featuresShauren
2023-01-06Core/Misc: Remove boost::container::small_vector from header filesShauren
2023-01-06Core/Misc: Remove boost::heap::fibonacci_heap from header filesShauren
2023-01-06Core/Misc: Replaced boost::container::static_vector in packet classes with ↵Shauren
plain vector with custom static storage allocatlr
2023-01-06Core/Utils: Replace boost flat_set with our ownShauren
2023-01-05Core/Misc: Added a include hack for msvc <chrono> to use only c++17 bits from itShauren
2022-12-30Core/Vmaps: Fix inconsistency of hitInstance and hitModel to cause wrong ↵ModoX
area ids (#28632) Closes #28326 Co-authored-by: Gosha <284210+Lordron@users.noreply.github.com>
2022-12-20Core/vmaps: Stop worldserver startup when gameobject models cannot be loadedShauren
2022-12-20Core/Threading: Modernize ProducerConsumerQueue a bit to fix GCC buildShauren
Closes #28607
2022-12-14Core/DataStores: Fixed loading empty db2 filesShauren
2022-12-14Core/DataStores: Made DB2LoadInfo constexprShauren
2022-11-20Core/Misc: Switch GetLocaleByName to use string_viewShauren
2022-11-06Core/Misc: Added noexcept to move constructors and move assignment operatorsShauren
2022-11-05Build: Cleanup boost CMakeLists from pre-c++11 flag checksShauren
2022-10-13Core/Threading: Create ThreadPool classShauren
(cherry picked from commit d82b2b1a6712df685b989911e3e519809935de03)
2022-10-01Core/Misc: Fix *BSD compile errors (#28287)Lloyd Dilley
(cherry picked from commit 2b8fc95fdec69ca5c057c2e63a1313d8165d44ea)
2022-09-19Core/Misc: Changed string formatting functions to accept std::string_view as ↵Shauren
format argument instead being templated on it to slightly improve compile times and reduce executable size
2022-09-06Core/Crypto: Remove support for OpenSSL 1.0Shauren
2022-09-05Core/Debugging: Improve SymInitialize fail message (#28206)ihm-tswow
* clarify that this is not the crash error, but an error with the crash report itself * improve formatting and message boundaries * warn the reader that this means the call stack symbols may be inaccurate (cherry picked from commit 6e37438e5dadd30dc2ce36e468045e0be4d26c83)
2022-09-05Core/Crypto: Fixed build with openssl 1.1daMaex
(cherry picked from commit 9368823c8dfa0587ef915d2f1e0aa443355d7854)
2022-09-05Core/Crypto: Fixed loading legacy openssl provider for RC4 on windowsShauren
2022-09-05Core/Crypto: Updated ARC4 code with openssl 3.0 supportdaMaex
(cherry picked from commit 9fca5e9117317d6706fdf7d09fb86acaa3361129)
2022-09-02Core/Misc: Minor refactor to std::hash specialization for std::pair to avoid ↵Shauren
showing incorrect documentation in IDEs on entire std namespace
2022-08-18Core/Misc: Dynamic build fix (add missing TC_COMMON_API)Shauren
2022-08-16Core/DataStores: Sprinkle some constexpr on db2 metaShauren
2022-08-01Core/Crypto: Removed unneccessary std::reverse in Ed25519::SignShauren
2022-08-01Core/Crypto: Added Ed25519 implementationShauren
2022-07-23Core/Maps: Move terrain data handling out of Map classShauren
Partial port of cmangos/mangos-wotlk@ff5232c64809207b5fa59d62e9870f58a36b6f3f
2022-06-17Core/Crypto: Fixed openssl 3.0 compatibility for custom hmac_sha256 digest ↵Shauren
for RSA
2022-06-17Core/Utils: Added helper function to make creating unique_ptr with custom ↵Shauren
deleters more convenient