Mercurial > hg > orthanc
changeset 6447:e18fdcbeebbf
upgrade libpng to 1.6.50 to hopefully fix a MacOS build
| author | Alain Mazy <am@orthanc.team> |
|---|---|
| date | Wed, 19 Nov 2025 09:58:45 +0100 |
| parents | f288ceb2a131 |
| children | 78c09f68c29c |
| files | NEWS OrthancFramework/Resources/CMake/LibPngConfiguration.cmake |
| diffstat | 2 files changed, 6 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/NEWS Tue Nov 18 17:44:13 2025 +0100 +++ b/NEWS Wed Nov 19 09:58:45 2025 +0100 @@ -50,6 +50,7 @@ * Upgraded dependencies for static builds: - civetweb 1.16, including patch for CVE-2025-55763 - SQLite 3.50.4 + - libpng 1.6.50 Version 1.12.9 (2025-08-11) @@ -343,7 +344,7 @@ an outgoing SCU connection if "DicomTlsRemoteCertificateRequired" is set to "false" * Fix C-Find queries not returning computed tags such as ModalitiesInStudy, NumberOfStudyRelatedSeries,... in very specific use cases -* Fix C-Find queries not returning private tags in the modality worklist plugin +* Fix C-Find queries not returning private tags in the sample modality worklist plugin * Fix an extremely rare error when 2 threads are trying to create the same folder in the File Storage at the same time * Fix crashes if handling very large images @@ -602,7 +603,7 @@ * Fix decoding of YBR_FULL RLE images for which the "Planar Configuration" tag (0028,0006) equals 1 * Made Orthanc more resilient to common spelling errors in SpecificCharacterSet -* Modality worklists plugin: Allow searching on private tags (exact match only) +* Sample Modality worklists plugin: Allow searching on private tags (exact match only) * Fix orphan files remaining in storage when working with MaximumStorageSize (https://discourse.orthanc-server.org/t/issue-with-deleting-incoming-dicoms-when-maximumstoragesize-is-reached/3510) * When deleting a resource, the "LastUpdate" metadata of its parents are now updated
--- a/OrthancFramework/Resources/CMake/LibPngConfiguration.cmake Tue Nov 18 17:44:13 2025 +0100 +++ b/OrthancFramework/Resources/CMake/LibPngConfiguration.cmake Wed Nov 19 09:58:45 2025 +0100 @@ -21,9 +21,9 @@ if (STATIC_BUILD OR NOT USE_SYSTEM_LIBPNG) - SET(LIBPNG_SOURCES_DIR ${CMAKE_BINARY_DIR}/libpng-1.6.40) - SET(LIBPNG_URL "https://orthanc.uclouvain.be/downloads/third-party-downloads/libpng-1.6.40.tar.gz") - SET(LIBPNG_MD5 "ec4b597c3a9b1f8d2826575f530367b7") + SET(LIBPNG_SOURCES_DIR ${CMAKE_BINARY_DIR}/libpng-1.6.50) + SET(LIBPNG_URL "https://orthanc.uclouvain.be/downloads/third-party-downloads/libpng-1.6.50.tar.gz") + SET(LIBPNG_MD5 "eef2d3da281ae83ac8a8f5fd9fa9d325") DownloadPackage(${LIBPNG_MD5} ${LIBPNG_URL} "${LIBPNG_SOURCES_DIR}")
