# HG changeset patch # User Sebastien Jodogne # Date 1608198932 -3600 # Node ID 79ef2b6d8e767f6f141958f744e1cb102758b698 # Parent c601f48c7c8016e87f024c5652e5c5e765722c29 there will be a 1.8.2 release before 1.9.0 diff -r c601f48c7c80 -r 79ef2b6d8e76 OrthancServer/Plugins/Engine/OrthancPlugins.cpp --- 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_; diff -r c601f48c7c80 -r 79ef2b6d8e76 OrthancServer/Sources/OrthancInitialization.cpp --- 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) diff -r c601f48c7c80 -r 79ef2b6d8e76 OrthancServer/Sources/OrthancRestApi/OrthancRestApi.cpp --- 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 reader(ZipReader::CreateFromMemory(call.GetBodyData(), call.GetBodySize())); Json::Value answer = Json::arrayValue; diff -r c601f48c7c80 -r 79ef2b6d8e76 OrthancServer/Sources/OrthancWebDav.cpp --- 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 reader(ZipReader::CreateFromMemory(content)); std::string filename, content;