Skip to content

Commit

Permalink
Merge pull request #180 from LinkunGao/release/v1.13.16
Browse files Browse the repository at this point in the history
Release/v1.13.16
  • Loading branch information
LinkunGao authored Feb 20, 2023
2 parents e3989ab + 4874985 commit 21305c6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions docs/source/release/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -1433,3 +1433,7 @@ const resetMainAreaSize = (factor: number) => {
baseRenderer.setClearColor(clearColor?: number, alpha?: number): void
```
- the default value is clearColor: 0x000000, alpha: 0

## Release v1.13.16 - version for Nuxt - heart app

- fixed the gui bug
2 changes: 1 addition & 1 deletion 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_visualisation",
"description": "A 3d visualisation package base on threejs provides multiple scenes and Nrrd image load funtion.",
"version": "1.13.15",
"version": "1.13.16",
"main": "dist/bundle.umd.js",
"moudle": "dist/bundle.esm.js",
"types": "dist/types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/Renderer/baseRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default class baseRenderer {
);
}

gui.add(this.state, "exportGltf");
// gui.add(this.state, "exportGltf");
}

updateGui() {
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ import {

import "./css/style.css";

export const REVISION = "v1.13.15";
export const REVISION = "v1.13.16";

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

0 comments on commit 21305c6

Please sign in to comment.