Skip to content

Commit

Permalink
fix(deps): fixed dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
daron1337 committed Aug 26, 2020
1 parent 97ff0bd commit c492bef
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h3> </h3>
<section class="readme usertext">
<article><h1 id="larvitar">Larvitar</h1>
<h2 id="dicom-image-toolkit-for-cornestonejs">Dicom Image Toolkit for CornestoneJS</h2>
<h3 id="current-version%3A-0.4.3">Current version: 0.4.3</h3>
<h3 id="current-version%3A-0.5.1">Current version: 0.5.1</h3>
<p>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.</p>
<ul>
<li><code>index</code> main file</li>
Expand Down
3 changes: 3 additions & 0 deletions docs/loaders_nrrdLoader.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,9 @@ <h1 class="page-title">loaders/nrrdLoader.js</h1>
case "Int16":
pixelData = new Int16Array(sliceBuffer);
break;
case "Short":
pixelData = new Int16Array(sliceBuffer);
break;
case "Uint32":
pixelData = new Uint32Array(sliceBuffer);
break;
Expand Down
6 changes: 3 additions & 3 deletions docs/module-loaders_nrrdLoader.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ <h4 class="name" id="createCustomImage"><span class="type-signature"></span>crea

<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="loaders_nrrdLoader.js.html">loaders/nrrdLoader.js</a>, <a href="loaders_nrrdLoader.js.html#line513">line 513</a>
<a href="loaders_nrrdLoader.js.html">loaders/nrrdLoader.js</a>, <a href="loaders_nrrdLoader.js.html#line516">line 516</a>
</li></ul></dd>


Expand Down Expand Up @@ -1250,7 +1250,7 @@ <h4 class="name" id="initializeCmprViewport"><span class="type-signature"></span

<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="loaders_nrrdLoader.js.html">loaders/nrrdLoader.js</a>, <a href="loaders_nrrdLoader.js.html#line408">line 408</a>
<a href="loaders_nrrdLoader.js.html">loaders/nrrdLoader.js</a>, <a href="loaders_nrrdLoader.js.html#line411">line 411</a>
</li></ul></dd>


Expand Down Expand Up @@ -1684,7 +1684,7 @@ <h4 class="name" id="initializeReslicedViewport"><span class="type-signature"></

<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="loaders_nrrdLoader.js.html">loaders/nrrdLoader.js</a>, <a href="loaders_nrrdLoader.js.html#line460">line 460</a>
<a href="loaders_nrrdLoader.js.html">loaders/nrrdLoader.js</a>, <a href="loaders_nrrdLoader.js.html#line463">line 463</a>
</li></ul></dd>


Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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": {
Expand Down

0 comments on commit c492bef

Please sign in to comment.