larvitar 1.2.9 → 1.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/imaging/imageParsing.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
## Dicom Image Toolkit for CornestoneJS
|
|
8
8
|
|
|
9
|
-
### Current version: 1.2.
|
|
9
|
+
### Current version: 1.2.10
|
|
10
10
|
|
|
11
|
-
### Latest Stable version: 1.2.
|
|
11
|
+
### Latest Stable version: 1.2.10
|
|
12
12
|
|
|
13
|
-
### Latest Published Release: 1.2.
|
|
13
|
+
### Latest Published Release: 1.2.10
|
|
14
14
|
|
|
15
15
|
This library provides common DICOM functionalities to be used in web-applications: it's wrapper that simplifies the use of cornestone-js environment.
|
|
16
16
|
Orthogonal multiplanar reformat is included as well as custom loader/exporter for nrrd files and [Vuex](https://vuex.vuejs.org/) custom integration.
|
package/imaging/imageParsing.js
CHANGED
|
@@ -155,7 +155,7 @@ let parseNextFile = function (parsingQueue, allSeriesStack, resolve, reject) {
|
|
|
155
155
|
let t1 = performance.now();
|
|
156
156
|
console.log(`Call to readFiles took ${t1 - t0} milliseconds.`);
|
|
157
157
|
file = null;
|
|
158
|
-
reject(
|
|
158
|
+
reject("Available memory is not enough");
|
|
159
159
|
return;
|
|
160
160
|
} else {
|
|
161
161
|
// parse the file and wait for results
|
|
@@ -292,7 +292,7 @@ let parseFile = function (file) {
|
|
|
292
292
|
}
|
|
293
293
|
}
|
|
294
294
|
} catch (err) {
|
|
295
|
-
console.
|
|
295
|
+
console.warn(err);
|
|
296
296
|
reject("can not read this file");
|
|
297
297
|
}
|
|
298
298
|
};
|
package/package.json
CHANGED