# HG changeset patch # User Alain Mazy # Date 1752502402 -7200 # Node ID 02c3f861b6e6aa6257145240abcafb9a831b55d5 # Parent e64c3ae969e4d331f5dbecd059c8d6df72321a4f# Parent d70e4de0c84743d77e33220d2c736c21e3eda3c1 merged default -> sql-opti diff -r d70e4de0c847 -r 02c3f861b6e6 OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h --- a/OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h Mon Jul 14 16:10:24 2025 +0200 +++ b/OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h Mon Jul 14 16:13:22 2025 +0200 @@ -52,7 +52,7 @@ // This transfers the ownership of the message void Enqueue(IDynamicObject* message); - // The caller is responsible to delete the dequeud message! + // The caller is responsible to delete the dequeued message! IDynamicObject* Dequeue(int32_t millisecondsTimeout); bool WaitEmpty(int32_t millisecondsTimeout); diff -r d70e4de0c847 -r 02c3f861b6e6 OrthancServer/Sources/ServerEnumerations.cpp --- a/OrthancServer/Sources/ServerEnumerations.cpp Mon Jul 14 16:10:24 2025 +0200 +++ b/OrthancServer/Sources/ServerEnumerations.cpp Mon Jul 14 16:13:22 2025 +0200 @@ -64,6 +64,8 @@ dictMetadataType_.Add(MetadataType_MainDicomTagsSignature, "MainDicomTagsSignature"); dictMetadataType_.Add(MetadataType_MainDicomSequences, "MainDicomSequences"); dictMetadataType_.Add(MetadataType_Instance_PixelDataVR, "PixelDataVR"); + dictMetadataType_.Add(MetadataType_Patient_IsProtected, "IsProtected"); + dictMetadataType_.Add(MetadataType_Patient_PatientRecyclingOrder, "PatientRecyclingOrder"); dictContentType_.Add(FileContentType_Dicom, "dicom"); dictContentType_.Add(FileContentType_DicomAsJson, "dicom-as-json"); diff -r d70e4de0c847 -r 02c3f861b6e6 OrthancServer/Sources/ServerEnumerations.h --- a/OrthancServer/Sources/ServerEnumerations.h Mon Jul 14 16:10:24 2025 +0200 +++ b/OrthancServer/Sources/ServerEnumerations.h Mon Jul 14 16:13:22 2025 +0200 @@ -210,6 +210,8 @@ MetadataType_MainDicomTagsSignature = 15, // New in Orthanc 1.11.0 MetadataType_MainDicomSequences = 16, // New in Orthanc 1.11.1 MetadataType_Instance_PixelDataVR = 17, // New in Orthanc 1.12.1 + MetadataType_Patient_IsProtected = 18, // New in Orthanc 1.12.99 (used only by DB plugins) + MetadataType_Patient_PatientRecyclingOrder = 19, // New in Orthanc 1.12.99 (used only by DB plugins) // Make sure that the value "65535" can be stored into this enumeration MetadataType_StartUser = 1024,