From c492bef2230d3f03576cc5113189c7576e88beab Mon Sep 17 00:00:00 2001 From: daron1337 Date: Wed, 26 Aug 2020 14:19:22 +0200 Subject: [PATCH] fix(deps): fixed dependencies --- README.md | 2 +- docs/index.html | 2 +- docs/loaders_nrrdLoader.js.html | 3 +++ docs/module-loaders_nrrdLoader.html | 6 +++--- package.json | 4 ++-- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 536f03b92..77ceddcfc 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Dicom Image Toolkit for CornestoneJS -### Current version: 0.5.0 +### Current version: 0.5.1 This library provides common dicom functionalities to be used in web-applications. Multiplanar reformat on axial, sagittal and coronal viewports is included as well as custom loader/exporter for nrrd files and orthogonal reslice. diff --git a/docs/index.html b/docs/index.html index 6d2175874..9bf3d9748 100644 --- a/docs/index.html +++ b/docs/index.html @@ -67,7 +67,7 @@

Larvitar

Dicom Image Toolkit for CornestoneJS

-

Current version: 0.4.3

+

Current version: 0.5.1

This library provides common dicom functionalities to be used in web-applications. Multiplanar reformat on axial, sagittal and coronal viewports is included as well as custom loader/exporter for nrrd files and orthogonal reslice.

  • index main file
  • diff --git a/docs/loaders_nrrdLoader.js.html b/docs/loaders_nrrdLoader.js.html index 05875dc07..aec569886 100644 --- a/docs/loaders_nrrdLoader.js.html +++ b/docs/loaders_nrrdLoader.js.html @@ -422,6 +422,9 @@

    loaders/nrrdLoader.js

    case "Int16": pixelData = new Int16Array(sliceBuffer); break; + case "Short": + pixelData = new Int16Array(sliceBuffer); + break; case "Uint32": pixelData = new Uint32Array(sliceBuffer); break; diff --git a/docs/module-loaders_nrrdLoader.html b/docs/module-loaders_nrrdLoader.html index 7be5de83c..38272081f 100644 --- a/docs/module-loaders_nrrdLoader.html +++ b/docs/module-loaders_nrrdLoader.html @@ -190,7 +190,7 @@

    crea
    Source:
    @@ -1250,7 +1250,7 @@

    Source:
    @@ -1684,7 +1684,7 @@

    Source:
    diff --git a/package.json b/package.json index a72692838..77a3bfc78 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "dicom", "imaging" ], - "version": "0.5.0", + "version": "0.5.1", "description": "javascript library for loading, rendering and interact with DICOM images", "main": "index.js", "repository": { @@ -28,7 +28,7 @@ "docdash": "^1.2.0", "hammerjs": "^2.0.8", "lodash": "^4.17.15", - "nrrd-js": "^0.2.1", + "@jonathanlurie/nrrdjs": "^0.1.1", "pako": "^1.0.10" }, "devDependencies": {