# HG changeset patch # User Sebastien Jodogne <s.jodogne@gmail.com> # Date 1745393519 -7200 # Node ID 900fb75351cd2e60870df4ce49bb0083e23bd188 # Parent a10b7a6ec86900011d44f5eac99007bf7929ed38 NEWS diff -r a10b7a6ec869 -r 900fb75351cd Applications/StoneWebViewer/NEWS --- a/Applications/StoneWebViewer/NEWS Tue Apr 22 18:18:30 2025 +0200 +++ b/Applications/StoneWebViewer/NEWS Wed Apr 23 09:31:59 2025 +0200 @@ -1,7 +1,7 @@ Pending changes in the mainline =============================== -* Experimental support for DICOM SR "Measurement Report" (TID 1500) +* Experimental support for DICOM SR "Measurement Report" (TID 1500 - only polylines) * Added "Print" and "Download" buttons in the PDF viewer toolbar * New configuration "ScreenshotTemplate" to define the filename generated by the "Download as JPEG" button. New default value is: diff -r a10b7a6ec869 -r 900fb75351cd Applications/StoneWebViewer/WebAssembly/ParseWebAssemblyExports.py --- a/Applications/StoneWebViewer/WebAssembly/ParseWebAssemblyExports.py Tue Apr 22 18:18:30 2025 +0200 +++ b/Applications/StoneWebViewer/WebAssembly/ParseWebAssemblyExports.py Wed Apr 23 09:31:59 2025 +0200 @@ -172,7 +172,7 @@ arg['type'] = "'string'" elif argType == 'double': arg['type'] = "'double'" - elif argType == 'size_t': + elif argType in [ 'size_t', 'std::size_t' ]: arg['type'] = "'int'" elif argType in [ 'const void *', 'void *' ]: arg['type'] = "'int'"