Mercurial > hg > orthanc
changeset 3542:25126912aa2c
back to mainline
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 16 Oct 2019 14:33:06 +0200 |
parents | 096c827cbf9e (current diff) 4beabcea3a5c (diff) |
children | cac5a3ddd441 |
files | Resources/CMake/OrthancFrameworkParameters.cmake Resources/DownloadOrthancFramework.cmake |
diffstat | 3 files changed, 11 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/NEWS Tue Oct 15 13:01:14 2019 +0200 +++ b/NEWS Wed Oct 16 14:33:06 2019 +0200 @@ -1,13 +1,16 @@ Pending changes in the mainline =============================== + +Version 1.5.8 (2019-10-16) +========================== + REST API -------- * API version has been upgraded to 4 -* in /ordered-slices route, ignore instances without position/normal/seriesIndex - unless there are only such instances in the series. - +* In /ordered-slices route, ignore instances without position/normal/seriesIndex, + unless there are only such instances in the series Maintenance ----------- @@ -27,6 +30,7 @@ transmitted into HTTP headers. * Fix lost relationships between CT and RT-STRUCT during anonymization + Version 1.5.7 (2019-06-25) ==========================
--- a/Resources/DownloadOrthancFramework.cmake Tue Oct 15 13:01:14 2019 +0200 +++ b/Resources/DownloadOrthancFramework.cmake Wed Oct 16 14:33:06 2019 +0200 @@ -110,6 +110,8 @@ set(ORTHANC_FRAMEWORK_MD5 "3c29de1e289b5472342947168f0105c0") elseif (ORTHANC_FRAMEWORK_VERSION STREQUAL "1.5.7") set(ORTHANC_FRAMEWORK_MD5 "e1b76f01116d9b5d4ac8cc39980560e3") + elseif (ORTHANC_FRAMEWORK_VERSION STREQUAL "1.5.8") + set(ORTHANC_FRAMEWORK_MD5 "82323e8c49a667f658a3639ea4dbc336") endif() endif() endif()
--- a/UnitTestsSources/DicomMapTests.cpp Tue Oct 15 13:01:14 2019 +0200 +++ b/UnitTestsSources/DicomMapTests.cpp Wed Oct 16 14:33:06 2019 +0200 @@ -381,10 +381,10 @@ // "800\0" in US COLMUNS tag m.SetValue(DICOM_TAG_COLUMNS, "800\0", false); ASSERT_TRUE(m.GetValue(DICOM_TAG_COLUMNS).ParseFirstUnsignedInteger(ui)); - ASSERT_EQ(800, ui); + ASSERT_EQ(800u, ui); m.SetValue(DICOM_TAG_COLUMNS, "800", false); ASSERT_TRUE(m.GetValue(DICOM_TAG_COLUMNS).ParseFirstUnsignedInteger(ui)); - ASSERT_EQ(800, ui); + ASSERT_EQ(800u, ui); }