diff --git a/Orthanc-1.11.0.tar.gz b/Orthanc-1.11.0.tar.gz deleted file mode 100644 index 199a345..0000000 --- a/Orthanc-1.11.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:23949a70562487fd6e79d6f3f13c71a0fc90aa25e492fb3a99575fee0722c5af -size 1899829 diff --git a/Orthanc-1.11.2.tar.gz b/Orthanc-1.11.2.tar.gz new file mode 100644 index 0000000..d48d0a6 --- /dev/null +++ b/Orthanc-1.11.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd3a855f181db25db1baa9f94b2841b611dc623fb01c559f55be88502c6784a7 +size 1920624 diff --git a/orthanc b/orthanc new file mode 100644 index 0000000..473a0f4 diff --git a/orthanc.changes b/orthanc.changes index 3d4d513..1e6c986 100644 --- a/orthanc.changes +++ b/orthanc.changes @@ -1,3 +1,51 @@ +------------------------------------------------------------------- +Tue Sep 27 10:52:42 UTC 2022 - Axel Braun + +- version 1.11.2 + * Added support for RGBA64 images in tools/create-dicom and /preview + * New configuration "MaximumStorageMode" to choose between recyling of + old patients (default behavior) and rejection of new incoming data when + the MaximumStorageSize has been reached. + * New sample plugin: "DelayedDeletion" that will delete files from disk + asynchronously to speed up deletion of large studies. + * Lua: new "SetHttpTimeout" function + * Lua: new "OnHeartBeat" callback called at regular interval provided that + you have configured "LuaHeartBeatPeriod" > 0. + * "ExtraMainDicomTags" configuration now accepts Dicom Sequences. Sequences are + stored in a dedicated new metadata "MainDicomSequences". This should improve + DicomWeb QIDO-RS and avoid warnings like "Accessing Dicom tags from storage when + accessing series : 0040,0275". + Main dicom sequences can now be returned in "MainDicomTags" and in "RequestedTags". + + * Fix the "Never" option of the "StorageAccessOnFind" that was sill accessing + files (bug introduced in 1.11.0). + * Fix the Storage Cache for compressed files (bug introduced in 1.11.1). + * Fix the storage cache that was not used by the Plugin SDK. This fixes the + DicomWeb plugin "/rendered" route performance issues. + + * DelayedDeletion plugin: Fix leaking of symbols + * SQLite now closes and deletes WAL and SHM files on exit. This should improve + handling of SQLite DB over network drives. + * Fix static compilation of boost 1.69 on Ubuntu 22.04 + * Upgraded dependencies for static builds: + - boost 1.80.0 + - dcmtk 3.6.7 (fixes CVE-2022-2119 and CVE-2022-2120) + - openssl 3.0.5 + * Housekeeper plugin: Fix resume of previous processing + * Added missing MOVEPatientRootQueryRetrieveInformationModel in + DicomControlUserConnection::SetupPresentationContexts() + * Improved HttpClient error logging (add method + url) + + * API version upgraded to 18 + * /system is now reporting "DatabaseServerIdentifier" + * Added an Asynchronous mode to /modalities/../move. + * "RequestedTags" option can now include DICOM sequences. + + * New function in the SDK: "OrthancPluginGetDatabaseServerIdentifier" + + * DicomMap::ParseMainDicomTags has been deprecated -> retrieve "full" tags + and use DicomMap::FromDicomAsJson instead + ------------------------------------------------------------------- Tue May 10 19:36:27 UTC 2022 - Axel Braun diff --git a/orthanc.spec b/orthanc.spec index 55ad2cd..1828c7c 100644 --- a/orthanc.spec +++ b/orthanc.spec @@ -18,7 +18,7 @@ Name: orthanc -Version: 1.11.0 +Version: 1.11.2 Release: 0 Summary: RESTful DICOM server for healthcare and medical research License: GPL-3.0-or-later @@ -153,9 +153,9 @@ help2man ./Orthanc -N -n "Lightweight, RESTful DICOM server for healthcare and m %check # we disable one test for i586 %ifarch != ix86 -build/UnitTests + build/UnitTests %else -build/UnitTests --gtest_filter=-ImageProcessing.Convolution --gtest_filter=-Version.CivetwebCompression --gtest_filter=-SharedLibrary.Basic + build/UnitTests --gtest_filter=-ImageProcessing.Convolution --gtest_filter=-Version.CivetwebCompression --gtest_filter=-SharedLibrary.Basic %endif %install @@ -220,12 +220,19 @@ ln -s ../../../..%{_libdir}/%{name}/libModalityWorklists.so.%{version} \ %{buildroot}%{_prefix}/share/%{name}/plugins/libModalityWorklists.so ln -s ../../../..%{_libdir}/%{name}/libConnectivityChecks.so.%{version} \ %{buildroot}%{_prefix}/share/%{name}/plugins/libConnectivityChecks.so - +ln -s ../../../..%{_libdir}/%{name}/libDelayedDeletion.so.%{version} \ + %{buildroot}%{_prefix}/share/%{name}/plugins/libDelayedDeletion.so + # Prepare documentation: "index.html", Doxygen of plugin SDK, and sample codes cp -r %{S:5} %{buildroot}%{_docdir}/%{name}/ cp -r OrthancServer/Resources/Samples/ %{buildroot}%{_docdir}/%{name}/Samples cp -r OrthancServer/Plugins/Samples/ %{buildroot}%{_docdir}/%{name}/OrthancPluginSamples +# some libs appear under buildroot/home...for whatever reason... +rm -rf %{buildroot}/home* + +echo 'ldconfig -v | grep libcrypto.so' + %pre getent group orthanc >/dev/null || groupadd -r orthanc getent passwd orthanc >/dev/null || \