Skip to content

Commit 123bd6b

Browse files
authored
Merge pull request #190 from LinkunGao/release/v1.13.24
Release/v1.13.24
2 parents 935ed30 + a74c19e commit 123bd6b

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'LinkunGao'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = 'v1.13.23'
25+
release = 'v1.13.24'
2626

2727

2828
# -- General configuration ---------------------------------------------------

index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ declare module "fflate";
88
declare module "dicom-parser";
99
declare module "copper3d_plugin_nrrd";
1010
declare module "copper3d_plugin_heart_k";
11-
declare module "copper3d_plugin_nrrd";

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "copper3d_visualisation",
33
"description": "A 3d visualisation package base on threejs provides multiple scenes and Nrrd image load funtion.",
4-
"version": "1.13.23",
4+
"version": "1.13.24",
55
"main": "dist/bundle.umd.js",
66
"moudle": "dist/bundle.esm.js",
77
"types": "dist/types/index.d.ts",

src/Utils/nrrd_tool.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -309,12 +309,12 @@ export class nrrd_tools {
309309
}
310310

311311
this.setEmptyCanvasSize();
312-
let imageData = this.emptyCtx.createImageData(
313-
this.nrrd_states.nrrd_x_centimeter,
314-
this.nrrd_states.nrrd_y_centimeter
315-
);
316312

317313
masksData.forEach((mask, index) => {
314+
let imageData = this.emptyCtx.createImageData(
315+
this.nrrd_states.nrrd_x_centimeter,
316+
this.nrrd_states.nrrd_y_centimeter
317+
);
318318
this.setEmptyCanvasSize();
319319

320320
for (let j = 0; j < mask.data.length; j++) {

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ import {
3636

3737
import "./css/style.css";
3838

39-
export const REVISION = "v1.13.23";
39+
export const REVISION = "v1.13.24";
4040

4141
console.log(
42-
"%cCopper3D Visualisation %cBeta:v1.13.23",
42+
"%cCopper3D Visualisation %cBeta:v1.13.24",
4343
"padding: 3px;color:white; background:#023047",
4444
"padding: 3px;color:white; background:#f50a25"
4545
);

0 commit comments

Comments
 (0)