aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* IoRunner join error fixzousar2022-01-181-1/+4
| | | | Fix crash on shutdown if m_IoRunner was not joinable. Experienced when running windows service.
* Support chunk requests with no ValueId, and interpret them as requested for ↵mattpetersepic2022-01-172-23/+34
| | | | values put with the PutValue API, which sends a package with RawHash and RawSize on the root object. (#35)
* Disabled mimalloc on Mac-Arm64 as vcpkg doesn't support itMartin Ridgers2022-01-142-8/+13
|
* Fixed up compile errors if mimalloc use is disabledMartin Ridgers2022-01-143-2/+7
|
* Disabled Sentry on Arm as vcpkg does not support itMartin Ridgers2022-01-142-8/+20
|
* Blake3 for Mac Arm64Martin Ridgers2022-01-132-1/+5
|
* Added ZEN_ prefix to define for consistencyMartin Ridgers2022-01-132-6/+6
|
* Do not try to define USE_SENTRY if it's already definedMartin Ridgers2022-01-131-1/+3
|
* Updated Linux section of README.mdMartin Ridgers2022-01-131-7/+29
|
* Added instructions for building on MacMartin Ridgers2022-01-131-8/+27
|
* Be explicit about what platforms a block implements for grepabilityMartin Ridgers2022-01-131-3/+3
|
* Use SysV semaphores to implement NamedEvent on LinuxMartin Ridgers2022-01-131-100/+7
|
* Issue warning if xmake bundle is run on non-WindowsMartin Ridgers2022-01-131-0/+4
|
* Fixed 'xmake test' using the wrong architecture value on non-WindowsMartin Ridgers2022-01-131-1/+8
|
* More complete toolchain and C++ library version checksMartin Ridgers2022-01-131-9/+24
|
* The "operator << (CbWriter, size_t)" is only required when using libc++Martin Ridgers2022-01-131-1/+1
|
* Missing includeMartin Ridgers2022-01-131-0/+1
|
* Format string had more tags than given parametersMartin Ridgers2022-01-131-1/+1
|
* Added missing std:: namespace to nullptr_t useMartin Ridgers2022-01-132-6/+6
|
* Moved "concepts" include to zencore.h as toolchain support is spottyMartin Ridgers2022-01-136-6/+1
|
* Handle PartialOnError cache policy when using z$ rest endpoint.Per Larsson2022-01-121-63/+71
|
* Changed DDC namespace on Jupiter dev.Per Larsson2022-01-111-2/+2
|
* Merge branch 'main' of https://github.com/EpicGames/zenPer Larsson2022-01-115-12/+40
|\
| * Linker flags for zen target on MacMartin Ridgers2022-01-111-0/+7
| |
| * Fixed fmt::format() compile errorMartin Ridgers2022-01-111-1/+1
| |
| * Added an implementation of task_group::run() on POSIXMartin Ridgers2022-01-111-2/+9
| |
| * Required linker frameworks on Mac for zenserverMartin Ridgers2022-01-111-0/+10
| |
| * Sorted packages as sorted lists merge more reliablyMartin Ridgers2022-01-111-5/+5
| |
| * Consolidated two add_packages() callsMartin Ridgers2022-01-111-4/+2
| |
| * Added required linker flags on Mac for zenserver-testMartin Ridgers2022-01-111-0/+6
| |
* | Fixed missing content type when storing cache values.Per Larsson2022-01-111-7/+7
|/
* Merged main.Per Larsson2022-01-1139-440/+247
|\
| * Not all toolchains support C++20's atomic<double>::fetch_add()Martin Ridgers2022-01-112-18/+17
| |
| * Apple Clang issues fmt::format compile errors for enum class-type argsMartin Ridgers2022-01-101-2/+2
| |
| * std::jthread is not supported on Apple ClangMartin Ridgers2022-01-101-2/+3
| |
| * Moving a temporary prevents copy elision optimizationMartin Ridgers2022-01-101-1/+1
| |
| * Two missing override keywordsMartin Ridgers2022-01-101-2/+2
| |
| * Unused lambda capture compile errorMartin Ridgers2022-01-101-1/+1
| |
| * LLVM-12 C++ lib's emplace_back() doesn't like classes all that muchMartin Ridgers2022-01-101-1/+4
| |
| * Added a CbWriter stream operator for size_t-type valuesMartin Ridgers2022-01-101-0/+9
| |
| * Fixed unused-lambda-capture compile errorsMartin Ridgers2022-01-101-3/+3
| |
| * Removed ZEN_UNUSED() statement that is unnecessaryMartin Ridgers2022-01-101-1/+0
| |
| * Compiler support for C++20's using-enum is wildly incompleteMartin Ridgers2022-01-101-18/+10
| |
| * Unused lambda capture compile fixesMartin Ridgers2022-01-102-11/+11
| |
| * Deleted two unused include statementsMartin Ridgers2022-01-101-2/+0
| |
| * Fixed fmt::format() undefined-user-type errorMartin Ridgers2022-01-101-1/+1
| |
| * Converted use of _format UDL to fmt::formatMartin Ridgers2022-01-1029-257/+172
| |
| * Vcpkg's manifest mode is no longer in useMartin Ridgers2022-01-105-118/+0
| |
| * LLVM's libc++ cannot emplace_back(x,y,z) without a ctor(x,y,z)Martin Ridgers2022-01-071-0/+8
| |
| * Added missing vector includeMartin Ridgers2022-01-071-0/+1
| |