# HG changeset patch # User Sebastien Jodogne # Date 1410182541 -7200 # Node ID 514492f61eadd9a591949dc1419fbd3aa2214f49 # Parent f4e65808ea586d5af23941d89843ac492d572a38 fix issue 17 diff -r f4e65808ea58 -r 514492f61ead NEWS --- a/NEWS Fri Sep 05 17:12:08 2014 +0200 +++ b/NEWS Mon Sep 08 15:22:21 2014 +0200 @@ -1,12 +1,20 @@ Pending changes in the mainline =============================== +General +------- + * Creation of ZIP archives for media storage, with DICOMDIR * Refactoring of HttpOutput ("Content-Length" header is now always sent) + +Minor +----- + +* Configuration option to enable HTTP Keep-Alive * "/tools/create-dicom" now accepts the "PatientID" DICOM tag (+ updated sample) +* Upgrade to Mongoose 3.8 * Fixes for Visual Studio 2013 and Windows 64bit -* Upgrade to Mongoose 3.8 -* Experimental "KeepAlive" configuration option to enable HTTP Keep-Alive +* Fix issue 17 Version 0.8.2 (2014/08/07) diff -r f4e65808ea58 -r 514492f61ead OrthancServer/ServerIndex.cpp --- a/OrthancServer/ServerIndex.cpp Fri Sep 05 17:12:08 2014 +0200 +++ b/OrthancServer/ServerIndex.cpp Mon Sep 08 15:22:21 2014 +0200 @@ -601,9 +601,9 @@ } // Mark the parent resources of this instance as unstable - MarkAsUnstable(patient, ResourceType_Patient); + MarkAsUnstable(series, ResourceType_Series); MarkAsUnstable(study, ResourceType_Study); - MarkAsUnstable(series, ResourceType_Series); + MarkAsUnstable(patient, ResourceType_Patient); t.Commit(instanceSize);