Mercurial > hg > orthanc
changeset 4374:79ef2b6d8e76
there will be a 1.8.2 release before 1.9.0
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 17 Dec 2020 10:55:32 +0100 |
parents | c601f48c7c80 |
children | 208029732d51 4770ac7287ec |
files | OrthancServer/Plugins/Engine/OrthancPlugins.cpp OrthancServer/Sources/OrthancInitialization.cpp OrthancServer/Sources/OrthancRestApi/OrthancRestApi.cpp OrthancServer/Sources/OrthancWebDav.cpp |
diffstat | 4 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancServer/Plugins/Engine/OrthancPlugins.cpp Thu Dec 17 10:46:11 2020 +0100 +++ b/OrthancServer/Plugins/Engine/OrthancPlugins.cpp Thu Dec 17 10:55:32 2020 +0100 @@ -930,7 +930,7 @@ boost::mutex refreshMetricsMutex_; boost::mutex storageCommitmentScpMutex_; boost::recursive_mutex invokeServiceMutex_; - boost::shared_mutex incomingHttpRequestFilterMutex_; // New in Orthanc 1.9.0 + boost::shared_mutex incomingHttpRequestFilterMutex_; // New in Orthanc 1.8.2 Properties properties_; int argc_;
--- a/OrthancServer/Sources/OrthancInitialization.cpp Thu Dec 17 10:46:11 2020 +0100 +++ b/OrthancServer/Sources/OrthancInitialization.cpp Thu Dec 17 10:55:32 2020 +0100 @@ -284,7 +284,7 @@ lock.GetConfiguration().RegisterFont(ServerResources::FONT_UBUNTU_MONO_BOLD_16); #if HAVE_MALLOPT == 1 - // New in Orthanc 1.9.0 + // New in Orthanc 1.8.2 // https://book.orthanc-server.com/faq/scalability.html#controlling-memory-usage unsigned int maxArena = lock.GetConfiguration().GetUnsignedIntegerParameter(MALLOC_ARENA_MAX, 5); if (maxArena != 0)
--- a/OrthancServer/Sources/OrthancRestApi/OrthancRestApi.cpp Thu Dec 17 10:46:11 2020 +0100 +++ b/OrthancServer/Sources/OrthancRestApi/OrthancRestApi.cpp Thu Dec 17 10:55:32 2020 +0100 @@ -132,7 +132,7 @@ if (ZipReader::IsZipMemoryBuffer(call.GetBodyData(), call.GetBodySize())) { - // New in Orthanc 1.9.0 + // New in Orthanc 1.8.2 std::unique_ptr<ZipReader> reader(ZipReader::CreateFromMemory(call.GetBodyData(), call.GetBodySize())); Json::Value answer = Json::arrayValue;
--- a/OrthancServer/Sources/OrthancWebDav.cpp Thu Dec 17 10:46:11 2020 +0100 +++ b/OrthancServer/Sources/OrthancWebDav.cpp Thu Dec 17 10:55:32 2020 +0100 @@ -1271,7 +1271,7 @@ if (ZipReader::IsZipMemoryBuffer(content)) { - // New in Orthanc 1.9.0 + // New in Orthanc 1.8.2 std::unique_ptr<ZipReader> reader(ZipReader::CreateFromMemory(content)); std::string filename, content;