Skip to content

Commit

Permalink
Merge pull request #288 from LinkunGao/feat/v2.0.2
Browse files Browse the repository at this point in the history
Feat/v2.0.2
  • Loading branch information
LinkunGao authored Nov 5, 2023
2 parents 005faf5 + f88b18b commit 7a39878
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

# The full version, including alpha/beta/rc tags

release = 'v2.0.1'
release = 'v2.0.2'



Expand Down
4 changes: 4 additions & 0 deletions docs/source/release/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -1929,3 +1929,7 @@ Huge update:
- apidocs
- segmentation functions
- bug fix

## Release v2.0.2

Fixed cursor not switch issue when user click eraser and pencil buttons.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "copper3d",
"description": "A 3d visualisation package base on threejs provides multiple scenes and Nrrd image load funtion.",
"version": "2.0.1",
"version": "2.0.2",
"main": "dist/bundle.umd.js",
"moudle": "dist/bundle.esm.js",
"types": "dist/types/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/Utils/segmentation/coreTools/gui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ function setupGui(configs: IConfigGUI) {
configs.drawingPrameters.handleOnDrawingBrushCricleMove
);
}
configs.drawingCanvas.style.cursor = configs.gui_states.defaultPaintCursor;
};

const updateGuiEraserState = () => {
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ import { IPaintImage } from "./Utils/segmentation/coreTools/coreType";

import "./css/style.css";

export const REVISION = "v2.0.1";
export const REVISION = "v2.0.2";

console.log(
"%cCopper3D Visualisation %cBeta:v2.0.1",
"%cCopper3D Visualisation %cBeta:v2.0.2",
"padding: 3px;color:white; background:#023047",
"padding: 3px;color:white; background:#f50a25"
);
Expand Down

0 comments on commit 7a39878

Please sign in to comment.