# HG changeset patch # User Alain Mazy # Date 1737049111 -3600 # Node ID 0709b334484b1979f646c756d3ce9e5b85700a05 # Parent cadc2ec2eb9e5e1e775aac3c31a6d56ad83a5237 fix pdf display diff -r cadc2ec2eb9e -r 0709b334484b NEWS --- a/NEWS Thu Jan 16 18:37:42 2025 +0100 +++ b/NEWS Thu Jan 16 18:38:31 2025 +0100 @@ -2,6 +2,8 @@ =============================== * Updated OHIF to 3.9.2 +* In "dicom-web" DataSource, fixed the default app-config.js configuration + to enable display of PDFs. * Updated cached "dicom-json" version to 2. This means that, when using the "dicom-json" source, the cached metadata must be recomputed the first time you open a study. diff -r cadc2ec2eb9e -r 0709b334484b Sources/app-config-system.js --- a/Sources/app-config-system.js Thu Jan 16 18:37:42 2025 +0100 +++ b/Sources/app-config-system.js Thu Jan 16 18:38:31 2025 +0100 @@ -27,8 +27,11 @@ supportsFuzzyMatching: false, supportsWildcard: true, staticWado: true, - singlepart: 'bulkdata,pdf,video', - acceptHeader: [ 'multipart/related; type=application/octet-stream; transfer-syntax=*'] + singlepart: 'bulkdata', + acceptHeader: [ 'multipart/related; type=application/octet-stream; transfer-syntax=*'], + bulkDataURI: { // to remove once 3.9.2+ is released (https://github.com/OHIF/Viewers/issues/4256) + enabled: true + } } } ];