# HG changeset patch # User Sebastien Jodogne # Date 1614089980 -3600 # Node ID 8262ffb393ffe4919aaf081f44f1e498572df159 # Parent f8660649ae964960d9cdf16969f0b9413005795c The numbering of sequences in Orthanc Explorer now uses the DICOM convention (starts at 1) diff -r f8660649ae96 -r 8262ffb393ff NEWS --- a/NEWS Tue Feb 23 15:05:55 2021 +0100 +++ b/NEWS Tue Feb 23 15:19:40 2021 +0100 @@ -37,6 +37,7 @@ * Improved precision of floating-point numbers in DICOM-as-JSON and DICOM summary * Optimization in C-STORE SCP by avoiding an unnecessary DICOM parsing * Fix build on big-endian architectures +* The numbering of sequences in Orthanc Explorer now uses the DICOM convention (starts at 1) * Possibility to generate a static library containing the Orthanc Framework diff -r f8660649ae96 -r 8262ffb393ff OrthancServer/OrthancExplorer/explorer.js --- a/OrthancServer/OrthancExplorer/explorer.js Tue Feb 23 15:05:55 2021 +0100 +++ b/OrthancServer/OrthancExplorer/explorer.js Tue Feb 23 15:19:40 2021 +0100 @@ -856,7 +856,7 @@ c = []; for (var j = 0; j < dicom[i]["Value"].length; j++) { c.push({ - label: 'Item ' + j, + label: 'Item ' + (j + 1), children: ConvertForTree(dicom[i]["Value"][j]) }); }