# HG changeset patch # User Alain Mazy # Date 1751029233 -7200 # Node ID e64c3ae969e4d331f5dbecd059c8d6df72321a4f # Parent 0290cf80dd93884499340436a65a8e72dfed884c# Parent 3a974dbf47406042ab02d642c4005a2e66c5f8dd merged default -> sql-opti diff -r 3a974dbf4740 -r e64c3ae969e4 OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h --- a/OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h Wed Jun 25 15:08:50 2025 +0200 +++ b/OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h Fri Jun 27 15:00:33 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 3a974dbf4740 -r e64c3ae969e4 OrthancServer/Sources/ServerEnumerations.cpp --- a/OrthancServer/Sources/ServerEnumerations.cpp Wed Jun 25 15:08:50 2025 +0200 +++ b/OrthancServer/Sources/ServerEnumerations.cpp Fri Jun 27 15:00:33 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 3a974dbf4740 -r e64c3ae969e4 OrthancServer/Sources/ServerEnumerations.h --- a/OrthancServer/Sources/ServerEnumerations.h Wed Jun 25 15:08:50 2025 +0200 +++ b/OrthancServer/Sources/ServerEnumerations.h Fri Jun 27 15:00:33 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,