changeset 1128:514492f61ead

author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 08 Sep 2014 15:22:21 +0200
parents f4e65808ea58
children 8dabdc0d3007
files NEWS OrthancServer/ServerIndex.cpp
diffstat 2 files changed, 12 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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)
--- 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);